From a2c7af69dec25c77333a2a2d19ba0587677aa68a Mon Sep 17 00:00:00 2001 From: Kamil Jakubus Date: Tue, 16 Apr 2024 14:38:43 +0200 Subject: [PATCH] parser: band-aid repeat_tuning --- grammar.js | 3 + src/grammar.json | 53 + src/node-types.json | 23 + src/parser.c | 179094 +++++++++++++++++++++-------------------- 4 files changed, 91042 insertions(+), 88131 deletions(-) diff --git a/grammar.js b/grammar.js index 6fa90f6..6cf39ad 100644 --- a/grammar.js +++ b/grammar.js @@ -370,6 +370,8 @@ module.exports = grammar({ while_phrase: ($) => seq(kw("WHILE"), field("condition", $._expression)), + repeat_tuning: ($) => choice(seq(kw("WITH"), kw("FRAME"), $.identifier)), + repeat_statement: ($) => seq( optional($.label), @@ -379,6 +381,7 @@ module.exports = grammar({ optional($.on_error_phrase), optional($.on_quit_phrase), optional($.on_stop_phrase), + repeat($.repeat_tuning), ":", optional($.body), $._block_terminator diff --git a/src/grammar.json b/src/grammar.json index fd29849..ced00c5 100644 --- a/src/grammar.json +++ b/src/grammar.json @@ -2840,6 +2840,52 @@ } ] }, + "repeat_tuning": { + "type": "CHOICE", + "members": [ + { + "type": "SEQ", + "members": [ + { + "type": "ALIAS", + "content": { + "type": "TOKEN", + "content": { + "type": "PREC", + "value": 1, + "content": { + "type": "PATTERN", + "value": "[wW][iI][tT][hH]" + } + } + }, + "named": false, + "value": "WITH" + }, + { + "type": "ALIAS", + "content": { + "type": "TOKEN", + "content": { + "type": "PREC", + "value": 1, + "content": { + "type": "PATTERN", + "value": "[fF][rR][aA][mM][eE]" + } + } + }, + "named": false, + "value": "FRAME" + }, + { + "type": "SYMBOL", + "name": "identifier" + } + ] + } + ] + }, "repeat_statement": { "type": "SEQ", "members": [ @@ -2931,6 +2977,13 @@ } ] }, + { + "type": "REPEAT", + "content": { + "type": "SYMBOL", + "name": "repeat_tuning" + } + }, { "type": "STRING", "value": ":" diff --git a/src/node-types.json b/src/node-types.json index 45f2109..e5dc5c1 100644 --- a/src/node-types.json +++ b/src/node-types.json @@ -2606,6 +2606,10 @@ "type": "on_stop_phrase", "named": true }, + { + "type": "repeat_tuning", + "named": true + }, { "type": "to_phrase", "named": true @@ -2617,6 +2621,21 @@ ] } }, + { + "type": "repeat_tuning", + "named": true, + "fields": {}, + "children": { + "multiple": false, + "required": true, + "types": [ + { + "type": "identifier", + "named": true + } + ] + } + }, { "type": "return_statement", "named": true, @@ -3992,6 +4011,10 @@ "type": "WHILE", "named": false }, + { + "type": "WITH", + "named": false + }, { "type": "WORD-INDEX", "named": false diff --git a/src/parser.c b/src/parser.c index e778014..86ccd83 100644 --- a/src/parser.c +++ b/src/parser.c @@ -14,11 +14,11 @@ #endif #define LANGUAGE_VERSION 14 -#define STATE_COUNT 4751 -#define LARGE_STATE_COUNT 299 -#define SYMBOL_COUNT 427 +#define STATE_COUNT 4832 +#define LARGE_STATE_COUNT 304 +#define SYMBOL_COUNT 430 #define ALIAS_COUNT 0 -#define TOKEN_COUNT 238 +#define TOKEN_COUNT 239 #define EXTERNAL_TOKEN_COUNT 4 #define FIELD_COUNT 24 #define MAX_ALIAS_SEQUENCE_LENGTH 16 @@ -135,322 +135,325 @@ enum { 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, - aux_sym_sort_order_token4 = 191, - aux_sym_sort_clause_token1 = 192, - aux_sym_sort_clause_token2 = 193, - aux_sym_for_phrase_token1 = 194, - aux_sym_for_phrase_token2 = 195, - aux_sym_for_phrase_token3 = 196, - aux_sym__find_type_token1 = 197, - aux_sym__find_type_token2 = 198, - aux_sym_find_statement_token1 = 199, - aux_sym_can_find_expression_token1 = 200, - aux_sym_of_token1 = 201, - aux_sym__using_and_token1 = 202, - aux_sym_assign_statement_token1 = 203, - aux_sym_catch_statement_token1 = 204, - aux_sym_finally_statement_token1 = 205, - aux_sym_accumulate_aggregate_token1 = 206, - aux_sym_accumulate_aggregate_token2 = 207, - aux_sym_accumulate_aggregate_token3 = 208, - aux_sym_accumulate_aggregate_token4 = 209, - aux_sym_accumulate_aggregate_token5 = 210, - aux_sym_accumulate_aggregate_token6 = 211, - aux_sym_accumulate_aggregate_token7 = 212, - aux_sym_accumulate_aggregate_token8 = 213, - aux_sym_accumulate_aggregate_token9 = 214, - aux_sym_accumulate_aggregate_token10 = 215, - aux_sym_accumulate_statement_token1 = 216, - anon_sym_ = 217, - aux_sym_accumulate_expression_token1 = 218, - aux_sym_available_expression_token1 = 219, - aux_sym_available_expression_token2 = 220, - anon_sym_ROUTINE_DASHLEVEL = 221, - anon_sym_BLOCK_DASHLEVEL = 222, - aux_sym_temp_table_tuning_token1 = 223, - anon_sym_LIKE = 224, - aux_sym_field_definition_token1 = 225, - aux_sym_index_tuning_token1 = 226, - aux_sym_index_tuning_token2 = 227, - aux_sym_index_tuning_token3 = 228, - aux_sym_index_tuning_token4 = 229, - aux_sym_index_definition_token1 = 230, - aux_sym_widget_field_token1 = 231, - aux_sym_on_statement_token1 = 232, - aux_sym_data_source_definition_token1 = 233, - sym__namedot = 234, - sym__namecolon = 235, - sym__or_operator = 236, - sym__and_operator = 237, - sym_source_code = 238, - sym_body = 239, - sym_comment = 240, - sym_constant = 241, - sym_qualified_name = 242, - sym__block_terminator = 243, - sym_boolean_literal = 244, - sym__decimal_literal = 245, - sym_number_literal = 246, - sym__string_literal = 247, - sym_double_quoted_string = 248, - sym_single_quoted_string = 249, - sym_parenthesized_expression = 250, - sym__logical_operator = 251, - sym_logical_expression = 252, - sym__unary_minus_expressions = 253, - sym_unary_expression = 254, - sym_ambiguous_expression = 255, - sym_current_changed_expression = 256, - sym_locked_expression = 257, - sym_input_expression = 258, - sym__additive_operator = 259, - sym_additive_expression = 260, - sym__multiplicative_operator = 261, - sym_multiplicative_expression = 262, - sym__comparison_operator = 263, - sym_comparison_expression = 264, - sym__binary_expression = 265, - sym_include_argument = 266, - sym_include = 267, - sym_primitive_type = 268, - sym_assignment = 269, - sym_variable_tuning = 270, - sym_scope_tuning = 271, - sym_access_tuning = 272, - sym_serialization_tuning = 273, - sym_variable_definition = 274, - sym_variable_assignment = 275, - sym_buffer_definition = 276, - sym_query_definition_tuning = 277, - sym_query_fields = 278, - sym_query_definition = 279, - sym_function_call_statement = 280, - sym__function_call_arguments = 281, - sym_argument_mode = 282, - sym__function_argument_with_mode = 283, - sym_function_call_argument = 284, - sym_function_call = 285, - sym_if_statement = 286, - sym_else_if_statement = 287, - sym_else_statement = 288, - sym_ternary_expression = 289, - sym_label = 290, - sym_while_phrase = 291, - sym_repeat_statement = 292, - sym__procedure_terminator = 293, - sym_procedure_statement = 294, - sym_procedure_parameter_definition = 295, - sym__function_terminator = 296, - sym_function_parameter_mode = 297, - sym_function_parameter = 298, - sym_function_statement = 299, - sym_return_statement = 300, - sym_interface_body = 301, - sym_interface_statement = 302, - sym_property_type = 303, - sym_property_tuning = 304, - sym_getter = 305, - sym_setter = 306, - sym_property_definition = 307, - sym_event_definition = 308, - sym_method_tuning = 309, - sym_method_definition = 310, - sym_data_relation = 311, - sym_dataset_definition = 312, - sym_using_statement = 313, - sym_class_body = 314, - sym_constructor_definition = 315, - sym_class_statement = 316, - sym_inherits = 317, - sym_implements = 318, - sym_use_widget_pool = 319, - sym_abstract = 320, - sym_final = 321, - sym_serializable = 322, - sym_new_expression = 323, - sym_object_access = 324, - sym_stream_definition = 325, - sym_input_close_statement = 326, - sym_output_close_statement = 327, - sym__stream_statement = 328, - sym_input_stream_tuning = 329, - sym_input_stream_statement = 330, - sym_output_stream_tuning = 331, - sym_output_stream_statement = 332, - sym_on_error_phrase = 333, - sym_on_stop_phrase = 334, - sym_on_quit_phrase = 335, - sym_stop_after_phrase = 336, - sym_do_tuning = 337, - sym_to_phrase = 338, - sym_do_block = 339, - sym__case_terminator = 340, - sym__case_branch_body = 341, - sym_case_when_branch = 342, - sym_case_otherwise_branch = 343, - sym_case_body = 344, - sym_case_statement = 345, - sym_where_clause = 346, - sym__pre_tuning = 347, - sym_query_tuning = 348, - sym_sort_order = 349, - sym_sort_column = 350, - sym_sort_clause = 351, - sym_for_phrase = 352, - sym_for_statement = 353, - sym__find_type = 354, - sym_find_statement = 355, - sym_can_find_expression = 356, - sym_of = 357, - sym__using_first = 358, - sym__using_and = 359, - sym_abl_statement = 360, - sym_assign_statement = 361, - sym_catch_statement = 362, - sym_finally_statement = 363, - sym_accumulate_aggregate = 364, - sym_accumulate_statement = 365, - sym_accumulate_expression = 366, - sym_available_expression = 367, - sym_undo_statement = 368, - sym_error_scope_statement = 369, - sym_temp_table_tuning = 370, - sym_field_option = 371, - sym_field_definition = 372, - sym_index_tuning = 373, - sym_index_definition = 374, - sym_temp_table_definition = 375, - sym_widget_field = 376, - sym_widget_phrase = 377, - sym_on_statement = 378, - sym_data_source_definition = 379, - sym__expression = 380, - sym__statement = 381, - sym__terminated_statement = 382, - aux_sym_source_code_repeat1 = 383, - aux_sym_qualified_name_repeat1 = 384, - aux_sym_double_quoted_string_repeat1 = 385, - aux_sym_single_quoted_string_repeat1 = 386, - aux_sym_include_repeat1 = 387, - aux_sym_include_repeat2 = 388, - aux_sym_variable_definition_repeat1 = 389, - aux_sym_variable_definition_repeat2 = 390, - aux_sym_buffer_definition_repeat1 = 391, - aux_sym_query_fields_repeat1 = 392, - aux_sym_query_definition_repeat1 = 393, - aux_sym__function_call_arguments_repeat1 = 394, - aux_sym_if_statement_repeat1 = 395, - aux_sym_function_statement_repeat1 = 396, - aux_sym_interface_body_repeat1 = 397, - aux_sym_property_definition_repeat1 = 398, - aux_sym_property_definition_repeat2 = 399, - aux_sym_property_definition_repeat3 = 400, - aux_sym_method_definition_repeat1 = 401, - aux_sym_data_relation_repeat1 = 402, - aux_sym_class_body_repeat1 = 403, - aux_sym_class_statement_repeat1 = 404, - aux_sym_inherits_repeat1 = 405, - aux_sym_object_access_repeat1 = 406, - aux_sym_input_stream_statement_repeat1 = 407, - aux_sym_output_stream_statement_repeat1 = 408, - aux_sym_do_block_repeat1 = 409, - aux_sym_case_body_repeat1 = 410, - aux_sym_sort_clause_repeat1 = 411, - aux_sym_for_phrase_repeat1 = 412, - aux_sym_for_phrase_repeat2 = 413, - aux_sym_for_statement_repeat1 = 414, - aux_sym_can_find_expression_repeat1 = 415, - aux_sym_can_find_expression_repeat2 = 416, - aux_sym_abl_statement_repeat1 = 417, - aux_sym_assign_statement_repeat1 = 418, - aux_sym_accumulate_statement_repeat1 = 419, - aux_sym_field_definition_repeat1 = 420, - aux_sym_index_definition_repeat1 = 421, - aux_sym_temp_table_definition_repeat1 = 422, - aux_sym_temp_table_definition_repeat2 = 423, - aux_sym_widget_phrase_repeat1 = 424, - aux_sym_on_statement_repeat1 = 425, - aux_sym_on_statement_repeat2 = 426, + aux_sym_repeat_tuning_token1 = 111, + aux_sym_repeat_statement_token1 = 112, + aux_sym__procedure_terminator_token1 = 113, + aux_sym_procedure_parameter_definition_token1 = 114, + aux_sym_procedure_parameter_definition_token2 = 115, + aux_sym__function_terminator_token1 = 116, + aux_sym_function_parameter_token1 = 117, + aux_sym_function_parameter_token2 = 118, + aux_sym_function_statement_token1 = 119, + aux_sym_interface_statement_token1 = 120, + aux_sym_property_type_token1 = 121, + aux_sym_property_type_token2 = 122, + aux_sym_property_tuning_token1 = 123, + aux_sym_getter_token1 = 124, + aux_sym_setter_token1 = 125, + aux_sym_property_definition_token1 = 126, + aux_sym_event_definition_token1 = 127, + aux_sym_event_definition_token2 = 128, + aux_sym_method_tuning_token1 = 129, + aux_sym_method_definition_token1 = 130, + anon_sym_METHOD = 131, + aux_sym_data_relation_token1 = 132, + aux_sym_data_relation_token2 = 133, + aux_sym_using_statement_token1 = 134, + aux_sym_using_statement_token2 = 135, + aux_sym_using_statement_token3 = 136, + aux_sym_using_statement_token4 = 137, + aux_sym_constructor_definition_token1 = 138, + aux_sym_inherits_token1 = 139, + aux_sym_implements_token1 = 140, + aux_sym_use_widget_pool_token1 = 141, + anon_sym_NO_DASHERROR = 142, + aux_sym_stream_definition_token1 = 143, + aux_sym_input_close_statement_token1 = 144, + aux_sym_input_close_statement_token2 = 145, + aux_sym_input_stream_tuning_token1 = 146, + aux_sym_input_stream_tuning_token2 = 147, + aux_sym_input_stream_tuning_token3 = 148, + aux_sym_input_stream_tuning_token4 = 149, + aux_sym_input_stream_tuning_token5 = 150, + aux_sym_input_stream_tuning_token6 = 151, + aux_sym_input_stream_tuning_token7 = 152, + aux_sym_input_stream_tuning_token8 = 153, + aux_sym_input_stream_tuning_token9 = 154, + aux_sym_input_stream_tuning_token10 = 155, + aux_sym_input_stream_tuning_token11 = 156, + aux_sym_output_stream_tuning_token1 = 157, + aux_sym_output_stream_tuning_token2 = 158, + aux_sym_output_stream_tuning_token3 = 159, + aux_sym_output_stream_tuning_token4 = 160, + aux_sym_output_stream_tuning_token5 = 161, + aux_sym_output_stream_tuning_token6 = 162, + aux_sym_output_stream_tuning_token7 = 163, + aux_sym_output_stream_tuning_token8 = 164, + aux_sym_output_stream_statement_token1 = 165, + aux_sym_on_error_phrase_token1 = 166, + aux_sym_on_error_phrase_token2 = 167, + aux_sym_on_error_phrase_token3 = 168, + aux_sym_on_error_phrase_token4 = 169, + aux_sym_on_error_phrase_token5 = 170, + aux_sym_on_error_phrase_token6 = 171, + aux_sym_on_error_phrase_token7 = 172, + aux_sym_on_error_phrase_token8 = 173, + aux_sym_on_stop_phrase_token1 = 174, + aux_sym_on_quit_phrase_token1 = 175, + aux_sym_stop_after_phrase_token1 = 176, + aux_sym_do_tuning_token1 = 177, + anon_sym_BY = 178, + aux_sym_do_block_token1 = 179, + aux_sym__case_terminator_token1 = 180, + aux_sym_case_when_branch_token1 = 181, + aux_sym_case_otherwise_branch_token1 = 182, + aux_sym_where_clause_token1 = 183, + aux_sym_query_tuning_token1 = 184, + aux_sym_query_tuning_token2 = 185, + aux_sym_query_tuning_token3 = 186, + aux_sym_query_tuning_token4 = 187, + aux_sym_query_tuning_token5 = 188, + aux_sym_sort_order_token1 = 189, + aux_sym_sort_order_token2 = 190, + aux_sym_sort_order_token3 = 191, + aux_sym_sort_order_token4 = 192, + aux_sym_sort_clause_token1 = 193, + aux_sym_sort_clause_token2 = 194, + aux_sym_for_phrase_token1 = 195, + aux_sym_for_phrase_token2 = 196, + aux_sym_for_phrase_token3 = 197, + aux_sym__find_type_token1 = 198, + aux_sym__find_type_token2 = 199, + aux_sym_find_statement_token1 = 200, + aux_sym_can_find_expression_token1 = 201, + aux_sym_of_token1 = 202, + aux_sym__using_and_token1 = 203, + aux_sym_assign_statement_token1 = 204, + aux_sym_catch_statement_token1 = 205, + aux_sym_finally_statement_token1 = 206, + aux_sym_accumulate_aggregate_token1 = 207, + aux_sym_accumulate_aggregate_token2 = 208, + aux_sym_accumulate_aggregate_token3 = 209, + aux_sym_accumulate_aggregate_token4 = 210, + aux_sym_accumulate_aggregate_token5 = 211, + aux_sym_accumulate_aggregate_token6 = 212, + aux_sym_accumulate_aggregate_token7 = 213, + aux_sym_accumulate_aggregate_token8 = 214, + aux_sym_accumulate_aggregate_token9 = 215, + aux_sym_accumulate_aggregate_token10 = 216, + aux_sym_accumulate_statement_token1 = 217, + anon_sym_ = 218, + aux_sym_accumulate_expression_token1 = 219, + aux_sym_available_expression_token1 = 220, + aux_sym_available_expression_token2 = 221, + anon_sym_ROUTINE_DASHLEVEL = 222, + anon_sym_BLOCK_DASHLEVEL = 223, + aux_sym_temp_table_tuning_token1 = 224, + anon_sym_LIKE = 225, + aux_sym_field_definition_token1 = 226, + aux_sym_index_tuning_token1 = 227, + aux_sym_index_tuning_token2 = 228, + aux_sym_index_tuning_token3 = 229, + aux_sym_index_tuning_token4 = 230, + aux_sym_index_definition_token1 = 231, + aux_sym_widget_field_token1 = 232, + aux_sym_on_statement_token1 = 233, + aux_sym_data_source_definition_token1 = 234, + sym__namedot = 235, + sym__namecolon = 236, + sym__or_operator = 237, + sym__and_operator = 238, + sym_source_code = 239, + sym_body = 240, + sym_comment = 241, + sym_constant = 242, + sym_qualified_name = 243, + sym__block_terminator = 244, + sym_boolean_literal = 245, + sym__decimal_literal = 246, + sym_number_literal = 247, + sym__string_literal = 248, + sym_double_quoted_string = 249, + sym_single_quoted_string = 250, + sym_parenthesized_expression = 251, + sym__logical_operator = 252, + sym_logical_expression = 253, + sym__unary_minus_expressions = 254, + sym_unary_expression = 255, + sym_ambiguous_expression = 256, + sym_current_changed_expression = 257, + sym_locked_expression = 258, + sym_input_expression = 259, + sym__additive_operator = 260, + sym_additive_expression = 261, + sym__multiplicative_operator = 262, + sym_multiplicative_expression = 263, + sym__comparison_operator = 264, + sym_comparison_expression = 265, + sym__binary_expression = 266, + sym_include_argument = 267, + sym_include = 268, + sym_primitive_type = 269, + sym_assignment = 270, + sym_variable_tuning = 271, + sym_scope_tuning = 272, + sym_access_tuning = 273, + sym_serialization_tuning = 274, + sym_variable_definition = 275, + sym_variable_assignment = 276, + sym_buffer_definition = 277, + sym_query_definition_tuning = 278, + sym_query_fields = 279, + sym_query_definition = 280, + sym_function_call_statement = 281, + sym__function_call_arguments = 282, + sym_argument_mode = 283, + sym__function_argument_with_mode = 284, + sym_function_call_argument = 285, + sym_function_call = 286, + sym_if_statement = 287, + sym_else_if_statement = 288, + sym_else_statement = 289, + sym_ternary_expression = 290, + sym_label = 291, + sym_while_phrase = 292, + sym_repeat_tuning = 293, + sym_repeat_statement = 294, + sym__procedure_terminator = 295, + sym_procedure_statement = 296, + sym_procedure_parameter_definition = 297, + sym__function_terminator = 298, + sym_function_parameter_mode = 299, + sym_function_parameter = 300, + sym_function_statement = 301, + sym_return_statement = 302, + sym_interface_body = 303, + sym_interface_statement = 304, + sym_property_type = 305, + sym_property_tuning = 306, + sym_getter = 307, + sym_setter = 308, + sym_property_definition = 309, + sym_event_definition = 310, + sym_method_tuning = 311, + sym_method_definition = 312, + sym_data_relation = 313, + sym_dataset_definition = 314, + sym_using_statement = 315, + sym_class_body = 316, + sym_constructor_definition = 317, + sym_class_statement = 318, + sym_inherits = 319, + sym_implements = 320, + sym_use_widget_pool = 321, + sym_abstract = 322, + sym_final = 323, + sym_serializable = 324, + sym_new_expression = 325, + sym_object_access = 326, + sym_stream_definition = 327, + sym_input_close_statement = 328, + sym_output_close_statement = 329, + sym__stream_statement = 330, + sym_input_stream_tuning = 331, + sym_input_stream_statement = 332, + sym_output_stream_tuning = 333, + sym_output_stream_statement = 334, + sym_on_error_phrase = 335, + sym_on_stop_phrase = 336, + sym_on_quit_phrase = 337, + sym_stop_after_phrase = 338, + sym_do_tuning = 339, + sym_to_phrase = 340, + sym_do_block = 341, + sym__case_terminator = 342, + sym__case_branch_body = 343, + sym_case_when_branch = 344, + sym_case_otherwise_branch = 345, + sym_case_body = 346, + sym_case_statement = 347, + sym_where_clause = 348, + sym__pre_tuning = 349, + sym_query_tuning = 350, + sym_sort_order = 351, + sym_sort_column = 352, + sym_sort_clause = 353, + sym_for_phrase = 354, + sym_for_statement = 355, + sym__find_type = 356, + sym_find_statement = 357, + sym_can_find_expression = 358, + sym_of = 359, + sym__using_first = 360, + sym__using_and = 361, + sym_abl_statement = 362, + sym_assign_statement = 363, + sym_catch_statement = 364, + sym_finally_statement = 365, + sym_accumulate_aggregate = 366, + sym_accumulate_statement = 367, + sym_accumulate_expression = 368, + sym_available_expression = 369, + sym_undo_statement = 370, + sym_error_scope_statement = 371, + sym_temp_table_tuning = 372, + sym_field_option = 373, + sym_field_definition = 374, + sym_index_tuning = 375, + sym_index_definition = 376, + sym_temp_table_definition = 377, + sym_widget_field = 378, + sym_widget_phrase = 379, + sym_on_statement = 380, + sym_data_source_definition = 381, + sym__expression = 382, + sym__statement = 383, + sym__terminated_statement = 384, + aux_sym_source_code_repeat1 = 385, + aux_sym_qualified_name_repeat1 = 386, + aux_sym_double_quoted_string_repeat1 = 387, + aux_sym_single_quoted_string_repeat1 = 388, + aux_sym_include_repeat1 = 389, + aux_sym_include_repeat2 = 390, + aux_sym_variable_definition_repeat1 = 391, + aux_sym_variable_definition_repeat2 = 392, + aux_sym_buffer_definition_repeat1 = 393, + aux_sym_query_fields_repeat1 = 394, + aux_sym_query_definition_repeat1 = 395, + aux_sym__function_call_arguments_repeat1 = 396, + aux_sym_if_statement_repeat1 = 397, + aux_sym_repeat_statement_repeat1 = 398, + aux_sym_function_statement_repeat1 = 399, + aux_sym_interface_body_repeat1 = 400, + aux_sym_property_definition_repeat1 = 401, + aux_sym_property_definition_repeat2 = 402, + aux_sym_property_definition_repeat3 = 403, + aux_sym_method_definition_repeat1 = 404, + aux_sym_data_relation_repeat1 = 405, + aux_sym_class_body_repeat1 = 406, + aux_sym_class_statement_repeat1 = 407, + aux_sym_inherits_repeat1 = 408, + aux_sym_object_access_repeat1 = 409, + aux_sym_input_stream_statement_repeat1 = 410, + aux_sym_output_stream_statement_repeat1 = 411, + aux_sym_do_block_repeat1 = 412, + aux_sym_case_body_repeat1 = 413, + aux_sym_sort_clause_repeat1 = 414, + aux_sym_for_phrase_repeat1 = 415, + aux_sym_for_phrase_repeat2 = 416, + aux_sym_for_statement_repeat1 = 417, + aux_sym_can_find_expression_repeat1 = 418, + aux_sym_can_find_expression_repeat2 = 419, + aux_sym_abl_statement_repeat1 = 420, + aux_sym_assign_statement_repeat1 = 421, + aux_sym_accumulate_statement_repeat1 = 422, + aux_sym_field_definition_repeat1 = 423, + aux_sym_index_definition_repeat1 = 424, + aux_sym_temp_table_definition_repeat1 = 425, + aux_sym_temp_table_definition_repeat2 = 426, + aux_sym_widget_phrase_repeat1 = 427, + aux_sym_on_statement_repeat1 = 428, + aux_sym_on_statement_repeat2 = 429, }; static const char * const ts_symbol_names[] = { @@ -565,6 +568,7 @@ static const char * const ts_symbol_names[] = { [aux_sym_else_if_statement_token1] = "ELSE", [anon_sym_COLON] = ":", [aux_sym_while_phrase_token1] = "WHILE", + [aux_sym_repeat_tuning_token1] = "WITH", [aux_sym_repeat_statement_token1] = "REPEAT", [aux_sym__procedure_terminator_token1] = "PROCEDURE", [aux_sym_procedure_parameter_definition_token1] = "RETURN", @@ -746,6 +750,7 @@ static const char * const ts_symbol_names[] = { [sym_ternary_expression] = "ternary_expression", [sym_label] = "label", [sym_while_phrase] = "while_phrase", + [sym_repeat_tuning] = "repeat_tuning", [sym_repeat_statement] = "repeat_statement", [sym__procedure_terminator] = "_procedure_terminator", [sym_procedure_statement] = "procedure_statement", @@ -850,6 +855,7 @@ static const char * const ts_symbol_names[] = { [aux_sym_query_definition_repeat1] = "query_definition_repeat1", [aux_sym__function_call_arguments_repeat1] = "_function_call_arguments_repeat1", [aux_sym_if_statement_repeat1] = "if_statement_repeat1", + [aux_sym_repeat_statement_repeat1] = "repeat_statement_repeat1", [aux_sym_function_statement_repeat1] = "function_statement_repeat1", [aux_sym_interface_body_repeat1] = "interface_body_repeat1", [aux_sym_property_definition_repeat1] = "property_definition_repeat1", @@ -995,6 +1001,7 @@ static const TSSymbol ts_symbol_map[] = { [aux_sym_else_if_statement_token1] = aux_sym_else_if_statement_token1, [anon_sym_COLON] = anon_sym_COLON, [aux_sym_while_phrase_token1] = aux_sym_while_phrase_token1, + [aux_sym_repeat_tuning_token1] = aux_sym_repeat_tuning_token1, [aux_sym_repeat_statement_token1] = aux_sym_repeat_statement_token1, [aux_sym__procedure_terminator_token1] = aux_sym__procedure_terminator_token1, [aux_sym_procedure_parameter_definition_token1] = aux_sym_procedure_parameter_definition_token1, @@ -1176,6 +1183,7 @@ static const TSSymbol ts_symbol_map[] = { [sym_ternary_expression] = sym_ternary_expression, [sym_label] = sym_label, [sym_while_phrase] = sym_while_phrase, + [sym_repeat_tuning] = sym_repeat_tuning, [sym_repeat_statement] = sym_repeat_statement, [sym__procedure_terminator] = sym__procedure_terminator, [sym_procedure_statement] = sym_procedure_statement, @@ -1280,6 +1288,7 @@ static const TSSymbol ts_symbol_map[] = { [aux_sym_query_definition_repeat1] = aux_sym_query_definition_repeat1, [aux_sym__function_call_arguments_repeat1] = aux_sym__function_call_arguments_repeat1, [aux_sym_if_statement_repeat1] = aux_sym_if_statement_repeat1, + [aux_sym_repeat_statement_repeat1] = aux_sym_repeat_statement_repeat1, [aux_sym_function_statement_repeat1] = aux_sym_function_statement_repeat1, [aux_sym_interface_body_repeat1] = aux_sym_interface_body_repeat1, [aux_sym_property_definition_repeat1] = aux_sym_property_definition_repeat1, @@ -1758,6 +1767,10 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = false, }, + [aux_sym_repeat_tuning_token1] = { + .visible = true, + .named = false, + }, [aux_sym_repeat_statement_token1] = { .visible = true, .named = false, @@ -2482,6 +2495,10 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = true, }, + [sym_repeat_tuning] = { + .visible = true, + .named = true, + }, [sym_repeat_statement] = { .visible = true, .named = true, @@ -2901,6 +2918,10 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = false, .named = false, }, + [aux_sym_repeat_statement_repeat1] = { + .visible = false, + .named = false, + }, [aux_sym_function_statement_repeat1] = { .visible = false, .named = false, @@ -3350,811 +3371,811 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [48] = 48, [49] = 49, [50] = 50, - [51] = 47, - [52] = 48, + [51] = 51, + [52] = 52, [53] = 53, - [54] = 50, - [55] = 49, - [56] = 53, + [54] = 54, + [55] = 55, + [56] = 56, [57] = 57, [58] = 58, [59] = 59, [60] = 60, [61] = 61, - [62] = 62, - [63] = 63, - [64] = 64, - [65] = 65, - [66] = 66, - [67] = 59, + [62] = 59, + [63] = 58, + [64] = 57, + [65] = 61, + [66] = 60, + [67] = 67, [68] = 68, - [69] = 60, + [69] = 69, [70] = 70, [71] = 71, [72] = 72, [73] = 73, [74] = 74, [75] = 75, - [76] = 70, + [76] = 76, [77] = 77, - [78] = 62, + [78] = 78, [79] = 79, [80] = 80, [81] = 81, - [82] = 66, + [82] = 82, [83] = 83, [84] = 84, - [85] = 80, - [86] = 59, - [87] = 72, - [88] = 75, + [85] = 85, + [86] = 67, + [87] = 87, + [88] = 88, [89] = 89, [90] = 90, [91] = 91, [92] = 92, - [93] = 91, - [94] = 84, + [93] = 68, + [94] = 94, [95] = 95, - [96] = 83, - [97] = 89, - [98] = 65, - [99] = 62, - [100] = 64, + [96] = 96, + [97] = 97, + [98] = 98, + [99] = 99, + [100] = 100, [101] = 101, - [102] = 77, - [103] = 71, - [104] = 64, - [105] = 90, - [106] = 106, - [107] = 107, - [108] = 107, - [109] = 63, - [110] = 83, - [111] = 60, - [112] = 68, - [113] = 70, - [114] = 71, - [115] = 79, - [116] = 73, - [117] = 117, - [118] = 81, - [119] = 58, - [120] = 63, - [121] = 121, - [122] = 83, - [123] = 91, - [124] = 95, - [125] = 84, - [126] = 79, - [127] = 95, - [128] = 128, - [129] = 129, - [130] = 101, - [131] = 131, - [132] = 90, - [133] = 133, - [134] = 66, - [135] = 90, - [136] = 68, - [137] = 137, - [138] = 138, - [139] = 65, - [140] = 117, - [141] = 95, + [102] = 102, + [103] = 74, + [104] = 99, + [105] = 102, + [106] = 96, + [107] = 101, + [108] = 91, + [109] = 100, + [110] = 87, + [111] = 111, + [112] = 75, + [113] = 72, + [114] = 98, + [115] = 71, + [116] = 97, + [117] = 95, + [118] = 69, + [119] = 94, + [120] = 70, + [121] = 68, + [122] = 92, + [123] = 90, + [124] = 73, + [125] = 74, + [126] = 73, + [127] = 89, + [128] = 88, + [129] = 67, + [130] = 85, + [131] = 76, + [132] = 84, + [133] = 83, + [134] = 77, + [135] = 78, + [136] = 82, + [137] = 79, + [138] = 81, + [139] = 80, + [140] = 80, + [141] = 81, [142] = 79, - [143] = 143, - [144] = 77, - [145] = 71, - [146] = 128, - [147] = 60, - [148] = 74, - [149] = 131, - [150] = 107, - [151] = 106, - [152] = 133, - [153] = 92, - [154] = 72, - [155] = 80, - [156] = 68, - [157] = 89, - [158] = 128, - [159] = 133, - [160] = 131, - [161] = 128, - [162] = 63, - [163] = 62, - [164] = 117, - [165] = 117, - [166] = 80, - [167] = 59, - [168] = 65, - [169] = 77, - [170] = 81, - [171] = 101, - [172] = 101, - [173] = 61, - [174] = 64, - [175] = 95, - [176] = 101, - [177] = 90, - [178] = 131, - [179] = 133, - [180] = 75, - [181] = 117, - [182] = 73, - [183] = 81, - [184] = 61, - [185] = 66, - [186] = 106, - [187] = 61, - [188] = 84, - [189] = 89, - [190] = 91, - [191] = 75, - [192] = 58, - [193] = 72, - [194] = 74, - [195] = 107, - [196] = 70, - [197] = 74, - [198] = 70, - [199] = 58, - [200] = 72, - [201] = 84, - [202] = 133, - [203] = 106, - [204] = 204, - [205] = 205, - [206] = 83, - [207] = 81, - [208] = 73, - [209] = 64, - [210] = 75, - [211] = 92, - [212] = 212, - [213] = 77, - [214] = 73, - [215] = 65, - [216] = 59, - [217] = 217, - [218] = 91, - [219] = 131, - [220] = 62, - [221] = 128, - [222] = 63, - [223] = 89, - [224] = 66, - [225] = 74, - [226] = 61, - [227] = 79, - [228] = 58, - [229] = 71, - [230] = 60, - [231] = 68, - [232] = 107, - [233] = 106, - [234] = 92, - [235] = 92, - [236] = 80, - [237] = 237, - [238] = 238, - [239] = 239, - [240] = 240, - [241] = 241, + [143] = 82, + [144] = 78, + [145] = 77, + [146] = 83, + [147] = 76, + [148] = 84, + [149] = 85, + [150] = 67, + [151] = 88, + [152] = 89, + [153] = 90, + [154] = 74, + [155] = 73, + [156] = 92, + [157] = 68, + [158] = 94, + [159] = 95, + [160] = 70, + [161] = 69, + [162] = 97, + [163] = 98, + [164] = 111, + [165] = 100, + [166] = 101, + [167] = 102, + [168] = 71, + [169] = 72, + [170] = 75, + [171] = 99, + [172] = 96, + [173] = 91, + [174] = 87, + [175] = 75, + [176] = 87, + [177] = 91, + [178] = 72, + [179] = 96, + [180] = 71, + [181] = 99, + [182] = 69, + [183] = 70, + [184] = 73, + [185] = 74, + [186] = 102, + [187] = 101, + [188] = 100, + [189] = 111, + [190] = 98, + [191] = 97, + [192] = 95, + [193] = 94, + [194] = 92, + [195] = 90, + [196] = 89, + [197] = 88, + [198] = 85, + [199] = 84, + [200] = 83, + [201] = 82, + [202] = 81, + [203] = 80, + [204] = 79, + [205] = 78, + [206] = 77, + [207] = 76, + [208] = 99, + [209] = 111, + [210] = 76, + [211] = 77, + [212] = 78, + [213] = 79, + [214] = 80, + [215] = 81, + [216] = 82, + [217] = 83, + [218] = 84, + [219] = 85, + [220] = 67, + [221] = 88, + [222] = 89, + [223] = 90, + [224] = 92, + [225] = 68, + [226] = 94, + [227] = 95, + [228] = 97, + [229] = 98, + [230] = 111, + [231] = 100, + [232] = 101, + [233] = 102, + [234] = 96, + [235] = 91, + [236] = 87, + [237] = 75, + [238] = 72, + [239] = 71, + [240] = 69, + [241] = 70, [242] = 242, [243] = 243, - [244] = 244, + [244] = 243, [245] = 245, [246] = 246, [247] = 247, - [248] = 248, - [249] = 249, + [248] = 246, + [249] = 245, [250] = 250, [251] = 251, [252] = 252, - [253] = 250, - [254] = 248, - [255] = 249, + [253] = 253, + [254] = 254, + [255] = 255, [256] = 256, [257] = 257, [258] = 258, - [259] = 249, + [259] = 246, [260] = 260, - [261] = 249, + [261] = 246, [262] = 262, - [263] = 249, - [264] = 247, + [263] = 263, + [264] = 264, [265] = 265, [266] = 266, [267] = 267, - [268] = 265, - [269] = 269, - [270] = 265, - [271] = 269, - [272] = 265, - [273] = 269, - [274] = 265, - [275] = 266, + [268] = 255, + [269] = 246, + [270] = 270, + [271] = 271, + [272] = 271, + [273] = 273, + [274] = 274, + [275] = 273, [276] = 276, - [277] = 269, - [278] = 269, - [279] = 269, - [280] = 265, - [281] = 265, - [282] = 269, - [283] = 283, - [284] = 284, - [285] = 285, - [286] = 285, - [287] = 287, - [288] = 287, - [289] = 287, - [290] = 287, - [291] = 285, - [292] = 285, - [293] = 285, - [294] = 285, - [295] = 287, - [296] = 287, - [297] = 287, - [298] = 285, - [299] = 299, - [300] = 299, - [301] = 299, - [302] = 299, - [303] = 299, + [277] = 271, + [278] = 276, + [279] = 276, + [280] = 276, + [281] = 276, + [282] = 282, + [283] = 276, + [284] = 271, + [285] = 271, + [286] = 286, + [287] = 271, + [288] = 271, + [289] = 276, + [290] = 290, + [291] = 290, + [292] = 290, + [293] = 290, + [294] = 294, + [295] = 294, + [296] = 294, + [297] = 294, + [298] = 294, + [299] = 294, + [300] = 290, + [301] = 294, + [302] = 290, + [303] = 290, [304] = 304, - [305] = 305, - [306] = 306, - [307] = 305, + [305] = 304, + [306] = 304, + [307] = 304, [308] = 304, - [309] = 304, - [310] = 305, - [311] = 305, - [312] = 304, - [313] = 304, - [314] = 305, - [315] = 304, - [316] = 305, - [317] = 304, - [318] = 305, - [319] = 304, - [320] = 304, - [321] = 304, - [322] = 305, - [323] = 305, - [324] = 324, - [325] = 325, - [326] = 326, - [327] = 327, - [328] = 325, - [329] = 7, + [309] = 309, + [310] = 310, + [311] = 310, + [312] = 309, + [313] = 309, + [314] = 309, + [315] = 309, + [316] = 310, + [317] = 310, + [318] = 318, + [319] = 310, + [320] = 310, + [321] = 309, + [322] = 309, + [323] = 310, + [324] = 309, + [325] = 309, + [326] = 310, + [327] = 310, + [328] = 309, + [329] = 329, [330] = 330, - [331] = 9, + [331] = 330, [332] = 332, [333] = 333, - [334] = 333, - [335] = 333, - [336] = 336, - [337] = 336, - [338] = 333, - [339] = 333, - [340] = 332, - [341] = 341, - [342] = 341, - [343] = 341, - [344] = 341, - [345] = 341, - [346] = 12, - [347] = 347, - [348] = 348, - [349] = 349, - [350] = 350, - [351] = 351, - [352] = 351, - [353] = 348, + [334] = 334, + [335] = 8, + [336] = 4, + [337] = 337, + [338] = 338, + [339] = 334, + [340] = 340, + [341] = 334, + [342] = 334, + [343] = 334, + [344] = 337, + [345] = 340, + [346] = 346, + [347] = 346, + [348] = 346, + [349] = 346, + [350] = 12, + [351] = 346, + [352] = 352, + [353] = 353, [354] = 354, [355] = 355, [356] = 356, [357] = 357, [358] = 358, [359] = 359, - [360] = 348, - [361] = 361, - [362] = 350, - [363] = 363, - [364] = 357, - [365] = 365, + [360] = 360, + [361] = 360, + [362] = 362, + [363] = 356, + [364] = 364, + [365] = 364, [366] = 366, - [367] = 367, - [368] = 351, - [369] = 369, - [370] = 356, - [371] = 349, - [372] = 348, - [373] = 373, - [374] = 357, + [367] = 362, + [368] = 368, + [369] = 366, + [370] = 370, + [371] = 353, + [372] = 372, + [373] = 355, + [374] = 353, [375] = 375, - [376] = 369, + [376] = 376, [377] = 377, - [378] = 378, - [379] = 361, - [380] = 361, - [381] = 358, - [382] = 348, - [383] = 383, - [384] = 357, - [385] = 367, - [386] = 355, - [387] = 354, - [388] = 361, - [389] = 348, + [378] = 352, + [379] = 362, + [380] = 380, + [381] = 381, + [382] = 382, + [383] = 356, + [384] = 384, + [385] = 385, + [386] = 386, + [387] = 359, + [388] = 357, + [389] = 389, [390] = 390, - [391] = 391, - [392] = 358, - [393] = 356, - [394] = 355, - [395] = 369, - [396] = 358, - [397] = 375, - [398] = 351, - [399] = 373, - [400] = 378, - [401] = 383, - [402] = 355, - [403] = 354, - [404] = 404, - [405] = 354, + [391] = 382, + [392] = 353, + [393] = 366, + [394] = 394, + [395] = 384, + [396] = 368, + [397] = 384, + [398] = 353, + [399] = 375, + [400] = 353, + [401] = 381, + [402] = 382, + [403] = 372, + [404] = 375, + [405] = 357, [406] = 355, - [407] = 361, - [408] = 408, - [409] = 350, + [407] = 407, + [408] = 356, + [409] = 385, [410] = 410, - [411] = 411, - [412] = 369, - [413] = 357, - [414] = 414, - [415] = 415, - [416] = 411, - [417] = 365, - [418] = 415, - [419] = 408, - [420] = 390, - [421] = 347, - [422] = 355, - [423] = 375, - [424] = 411, - [425] = 348, - [426] = 408, - [427] = 415, - [428] = 415, - [429] = 348, - [430] = 430, - [431] = 351, - [432] = 354, - [433] = 349, - [434] = 378, - [435] = 373, - [436] = 369, - [437] = 357, - [438] = 355, - [439] = 430, - [440] = 347, - [441] = 358, - [442] = 391, - [443] = 443, - [444] = 354, - [445] = 411, + [411] = 359, + [412] = 412, + [413] = 413, + [414] = 407, + [415] = 386, + [416] = 357, + [417] = 381, + [418] = 390, + [419] = 375, + [420] = 358, + [421] = 421, + [422] = 357, + [423] = 360, + [424] = 364, + [425] = 364, + [426] = 426, + [427] = 362, + [428] = 372, + [429] = 412, + [430] = 407, + [431] = 381, + [432] = 366, + [433] = 364, + [434] = 360, + [435] = 385, + [436] = 381, + [437] = 358, + [438] = 368, + [439] = 364, + [440] = 412, + [441] = 353, + [442] = 359, + [443] = 407, + [444] = 390, + [445] = 394, [446] = 446, - [447] = 356, + [447] = 375, [448] = 448, - [449] = 369, - [450] = 358, - [451] = 351, - [452] = 367, - [453] = 373, - [454] = 357, - [455] = 430, - [456] = 408, - [457] = 347, - [458] = 458, - [459] = 350, - [460] = 355, - [461] = 354, - [462] = 358, + [449] = 390, + [450] = 394, + [451] = 352, + [452] = 384, + [453] = 390, + [454] = 407, + [455] = 390, + [456] = 359, + [457] = 412, + [458] = 394, + [459] = 364, + [460] = 357, + [461] = 358, + [462] = 368, [463] = 375, - [464] = 375, - [465] = 465, - [466] = 415, - [467] = 354, - [468] = 349, - [469] = 383, - [470] = 470, - [471] = 351, - [472] = 356, - [473] = 411, - [474] = 391, - [475] = 349, - [476] = 366, - [477] = 367, - [478] = 391, - [479] = 375, - [480] = 378, - [481] = 361, - [482] = 391, - [483] = 483, - [484] = 408, - [485] = 361, - [486] = 383, - [487] = 358, - [488] = 375, - [489] = 373, - [490] = 415, - [491] = 491, - [492] = 411, - [493] = 347, - [494] = 408, - [495] = 347, - [496] = 369, - [497] = 351, - [498] = 357, - [499] = 350, - [500] = 361, - [501] = 375, - [502] = 347, - [503] = 408, - [504] = 383, - [505] = 446, - [506] = 411, - [507] = 347, - [508] = 408, - [509] = 509, - [510] = 411, - [511] = 511, - [512] = 512, - [513] = 430, - [514] = 415, - [515] = 415, - [516] = 367, - [517] = 378, - [518] = 470, + [464] = 372, + [465] = 412, + [466] = 466, + [467] = 360, + [468] = 356, + [469] = 381, + [470] = 390, + [471] = 384, + [472] = 353, + [473] = 355, + [474] = 382, + [475] = 380, + [476] = 384, + [477] = 382, + [478] = 355, + [479] = 356, + [480] = 382, + [481] = 357, + [482] = 482, + [483] = 362, + [484] = 355, + [485] = 358, + [486] = 356, + [487] = 362, + [488] = 488, + [489] = 368, + [490] = 381, + [491] = 375, + [492] = 412, + [493] = 352, + [494] = 362, + [495] = 426, + [496] = 362, + [497] = 356, + [498] = 355, + [499] = 499, + [500] = 390, + [501] = 381, + [502] = 352, + [503] = 412, + [504] = 372, + [505] = 372, + [506] = 506, + [507] = 412, + [508] = 421, + [509] = 375, + [510] = 510, + [511] = 382, + [512] = 384, + [513] = 357, + [514] = 482, + [515] = 384, + [516] = 372, + [517] = 382, + [518] = 366, [519] = 519, - [520] = 377, - [521] = 430, - [522] = 212, - [523] = 143, - [524] = 57, - [525] = 138, - [526] = 137, - [527] = 129, - [528] = 3, - [529] = 121, - [530] = 2, + [520] = 520, + [521] = 385, + [522] = 370, + [523] = 385, + [524] = 394, + [525] = 355, + [526] = 372, + [527] = 50, + [528] = 2, + [529] = 56, + [530] = 55, [531] = 531, - [532] = 204, - [533] = 205, - [534] = 217, - [535] = 6, - [536] = 7, - [537] = 9, - [538] = 8, - [539] = 5, + [532] = 54, + [533] = 53, + [534] = 52, + [535] = 51, + [536] = 47, + [537] = 3, + [538] = 48, + [539] = 49, [540] = 4, - [541] = 11, - [542] = 542, - [543] = 542, - [544] = 45, - [545] = 545, - [546] = 10, - [547] = 542, - [548] = 545, - [549] = 18, - [550] = 542, - [551] = 545, - [552] = 284, - [553] = 283, - [554] = 542, - [555] = 545, - [556] = 12, - [557] = 545, - [558] = 42, - [559] = 44, - [560] = 26, - [561] = 13, - [562] = 28, - [563] = 30, - [564] = 36, - [565] = 21, - [566] = 25, - [567] = 37, - [568] = 27, - [569] = 38, - [570] = 34, - [571] = 17, - [572] = 572, - [573] = 20, - [574] = 24, - [575] = 35, - [576] = 15, - [577] = 33, - [578] = 31, - [579] = 23, - [580] = 41, - [581] = 40, - [582] = 39, - [583] = 22, - [584] = 46, - [585] = 29, - [586] = 14, - [587] = 43, - [588] = 19, - [589] = 16, - [590] = 32, - [591] = 591, - [592] = 592, - [593] = 593, - [594] = 594, - [595] = 594, - [596] = 594, + [541] = 9, + [542] = 6, + [543] = 8, + [544] = 7, + [545] = 5, + [546] = 546, + [547] = 546, + [548] = 15, + [549] = 546, + [550] = 546, + [551] = 11, + [552] = 552, + [553] = 282, + [554] = 552, + [555] = 12, + [556] = 546, + [557] = 552, + [558] = 552, + [559] = 22, + [560] = 552, + [561] = 10, + [562] = 274, + [563] = 34, + [564] = 35, + [565] = 23, + [566] = 20, + [567] = 21, + [568] = 38, + [569] = 46, + [570] = 25, + [571] = 30, + [572] = 43, + [573] = 40, + [574] = 28, + [575] = 16, + [576] = 41, + [577] = 37, + [578] = 27, + [579] = 26, + [580] = 18, + [581] = 24, + [582] = 42, + [583] = 32, + [584] = 584, + [585] = 19, + [586] = 45, + [587] = 29, + [588] = 44, + [589] = 36, + [590] = 17, + [591] = 39, + [592] = 33, + [593] = 13, + [594] = 31, + [595] = 14, + [596] = 596, [597] = 597, - [598] = 597, - [599] = 2, - [600] = 594, - [601] = 594, - [602] = 594, - [603] = 594, - [604] = 3, - [605] = 597, - [606] = 597, - [607] = 597, - [608] = 597, - [609] = 597, - [610] = 121, - [611] = 205, - [612] = 612, - [613] = 143, - [614] = 57, - [615] = 138, - [616] = 137, - [617] = 217, - [618] = 129, - [619] = 212, - [620] = 204, - [621] = 8, - [622] = 4, - [623] = 2, + [598] = 598, + [599] = 599, + [600] = 600, + [601] = 600, + [602] = 599, + [603] = 600, + [604] = 599, + [605] = 600, + [606] = 599, + [607] = 2, + [608] = 599, + [609] = 600, + [610] = 600, + [611] = 3, + [612] = 600, + [613] = 599, + [614] = 599, + [615] = 55, + [616] = 49, + [617] = 47, + [618] = 54, + [619] = 53, + [620] = 52, + [621] = 56, + [622] = 48, + [623] = 51, [624] = 624, - [625] = 11, - [626] = 624, - [627] = 6, - [628] = 628, - [629] = 628, - [630] = 628, - [631] = 5, - [632] = 628, - [633] = 624, - [634] = 624, - [635] = 9, - [636] = 628, - [637] = 3, - [638] = 7, - [639] = 624, - [640] = 143, - [641] = 137, - [642] = 38, - [643] = 205, - [644] = 18, - [645] = 212, - [646] = 45, - [647] = 217, - [648] = 284, - [649] = 283, - [650] = 205, - [651] = 212, - [652] = 121, - [653] = 129, - [654] = 138, - [655] = 57, - [656] = 143, - [657] = 204, + [625] = 50, + [626] = 9, + [627] = 7, + [628] = 4, + [629] = 629, + [630] = 8, + [631] = 629, + [632] = 2, + [633] = 629, + [634] = 634, + [635] = 629, + [636] = 634, + [637] = 5, + [638] = 629, + [639] = 634, + [640] = 6, + [641] = 634, + [642] = 3, + [643] = 11, + [644] = 634, + [645] = 56, + [646] = 54, + [647] = 49, + [648] = 10, + [649] = 15, + [650] = 22, + [651] = 274, + [652] = 282, + [653] = 12, + [654] = 654, + [655] = 51, + [656] = 50, + [657] = 41, [658] = 658, - [659] = 10, - [660] = 217, - [661] = 204, - [662] = 57, - [663] = 138, - [664] = 137, - [665] = 129, - [666] = 12, - [667] = 121, - [668] = 14, - [669] = 669, - [670] = 669, - [671] = 31, - [672] = 29, - [673] = 41, - [674] = 46, - [675] = 675, + [659] = 48, + [660] = 55, + [661] = 51, + [662] = 658, + [663] = 53, + [664] = 50, + [665] = 49, + [666] = 47, + [667] = 52, + [668] = 29, + [669] = 52, + [670] = 53, + [671] = 54, + [672] = 48, + [673] = 47, + [674] = 56, + [675] = 55, [676] = 676, - [677] = 40, - [678] = 23, - [679] = 675, - [680] = 675, - [681] = 17, - [682] = 676, - [683] = 39, - [684] = 676, - [685] = 30, - [686] = 686, - [687] = 19, - [688] = 4, - [689] = 13, - [690] = 686, - [691] = 20, - [692] = 692, - [693] = 686, - [694] = 44, - [695] = 43, - [696] = 37, - [697] = 42, - [698] = 8, - [699] = 36, - [700] = 21, - [701] = 16, - [702] = 702, - [703] = 675, - [704] = 28, - [705] = 686, - [706] = 25, - [707] = 707, - [708] = 686, - [709] = 22, - [710] = 15, - [711] = 33, - [712] = 676, - [713] = 26, - [714] = 35, - [715] = 34, - [716] = 32, - [717] = 675, - [718] = 676, - [719] = 24, - [720] = 27, - [721] = 11, - [722] = 6, - [723] = 7, + [677] = 32, + [678] = 28, + [679] = 679, + [680] = 46, + [681] = 42, + [682] = 25, + [683] = 27, + [684] = 20, + [685] = 685, + [686] = 679, + [687] = 687, + [688] = 24, + [689] = 36, + [690] = 687, + [691] = 685, + [692] = 679, + [693] = 687, + [694] = 45, + [695] = 26, + [696] = 685, + [697] = 687, + [698] = 31, + [699] = 13, + [700] = 33, + [701] = 679, + [702] = 39, + [703] = 679, + [704] = 14, + [705] = 685, + [706] = 706, + [707] = 35, + [708] = 19, + [709] = 21, + [710] = 16, + [711] = 44, + [712] = 38, + [713] = 23, + [714] = 34, + [715] = 43, + [716] = 30, + [717] = 685, + [718] = 37, + [719] = 18, + [720] = 720, + [721] = 40, + [722] = 9, + [723] = 687, [724] = 7, - [725] = 725, - [726] = 9, - [727] = 9, - [728] = 5, - [729] = 283, - [730] = 12, - [731] = 38, - [732] = 14, - [733] = 12, - [734] = 734, - [735] = 284, - [736] = 283, - [737] = 10, - [738] = 284, - [739] = 16, - [740] = 33, - [741] = 741, - [742] = 13, - [743] = 30, - [744] = 37, - [745] = 42, - [746] = 43, - [747] = 46, - [748] = 40, - [749] = 25, - [750] = 32, + [725] = 17, + [726] = 11, + [727] = 727, + [728] = 4, + [729] = 8, + [730] = 4, + [731] = 6, + [732] = 8, + [733] = 5, + [734] = 12, + [735] = 29, + [736] = 10, + [737] = 282, + [738] = 282, + [739] = 274, + [740] = 41, + [741] = 12, + [742] = 742, + [743] = 274, + [744] = 30, + [745] = 38, + [746] = 20, + [747] = 21, + [748] = 24, + [749] = 17, + [750] = 34, [751] = 751, - [752] = 34, - [753] = 17, - [754] = 45, - [755] = 41, - [756] = 18, - [757] = 35, - [758] = 24, - [759] = 27, - [760] = 15, - [761] = 20, - [762] = 23, - [763] = 39, - [764] = 29, - [765] = 28, - [766] = 22, - [767] = 44, - [768] = 31, - [769] = 26, - [770] = 19, - [771] = 21, - [772] = 36, - [773] = 3, - [774] = 2, - [775] = 775, - [776] = 205, - [777] = 137, - [778] = 3, - [779] = 779, - [780] = 780, + [752] = 39, + [753] = 40, + [754] = 14, + [755] = 42, + [756] = 46, + [757] = 37, + [758] = 45, + [759] = 36, + [760] = 44, + [761] = 19, + [762] = 15, + [763] = 31, + [764] = 764, + [765] = 16, + [766] = 766, + [767] = 22, + [768] = 32, + [769] = 18, + [770] = 23, + [771] = 43, + [772] = 25, + [773] = 26, + [774] = 35, + [775] = 27, + [776] = 28, + [777] = 13, + [778] = 33, + [779] = 3, + [780] = 2, [781] = 10, - [782] = 2, - [783] = 783, - [784] = 612, - [785] = 779, - [786] = 129, - [787] = 787, - [788] = 217, - [789] = 212, + [782] = 50, + [783] = 56, + [784] = 784, + [785] = 785, + [786] = 44, + [787] = 47, + [788] = 624, + [789] = 789, [790] = 790, - [791] = 790, - [792] = 204, - [793] = 121, - [794] = 783, - [795] = 143, - [796] = 57, - [797] = 138, - [798] = 121, - [799] = 799, - [800] = 143, - [801] = 36, - [802] = 129, - [803] = 803, - [804] = 803, - [805] = 8, - [806] = 137, - [807] = 31, - [808] = 803, - [809] = 57, - [810] = 803, - [811] = 811, - [812] = 803, - [813] = 138, - [814] = 3, - [815] = 4, - [816] = 217, - [817] = 2, - [818] = 204, - [819] = 205, - [820] = 212, - [821] = 217, - [822] = 6, - [823] = 11, - [824] = 212, - [825] = 205, - [826] = 204, - [827] = 5, - [828] = 8, + [791] = 785, + [792] = 53, + [793] = 3, + [794] = 51, + [795] = 52, + [796] = 23, + [797] = 49, + [798] = 48, + [799] = 55, + [800] = 784, + [801] = 2, + [802] = 802, + [803] = 54, + [804] = 804, + [805] = 789, + [806] = 48, + [807] = 807, + [808] = 52, + [809] = 2, + [810] = 810, + [811] = 3, + [812] = 7, + [813] = 47, + [814] = 810, + [815] = 51, + [816] = 55, + [817] = 9, + [818] = 810, + [819] = 810, + [820] = 50, + [821] = 49, + [822] = 54, + [823] = 56, + [824] = 810, + [825] = 53, + [826] = 47, + [827] = 52, + [828] = 828, [829] = 829, - [830] = 143, - [831] = 57, - [832] = 138, - [833] = 137, - [834] = 129, - [835] = 835, - [836] = 4, - [837] = 121, - [838] = 9, - [839] = 780, - [840] = 840, - [841] = 841, - [842] = 7, - [843] = 843, - [844] = 6, - [845] = 845, - [846] = 846, - [847] = 847, + [830] = 7, + [831] = 51, + [832] = 56, + [833] = 53, + [834] = 50, + [835] = 55, + [836] = 54, + [837] = 837, + [838] = 838, + [839] = 5, + [840] = 8, + [841] = 9, + [842] = 790, + [843] = 11, + [844] = 48, + [845] = 6, + [846] = 4, + [847] = 49, [848] = 848, - [849] = 849, + [849] = 9, [850] = 850, [851] = 851, [852] = 852, [853] = 853, - [854] = 4, - [855] = 840, + [854] = 854, + [855] = 855, [856] = 856, [857] = 857, [858] = 858, @@ -4167,15 +4188,15 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [865] = 865, [866] = 866, [867] = 867, - [868] = 848, + [868] = 868, [869] = 869, [870] = 870, - [871] = 9, + [871] = 871, [872] = 872, [873] = 873, - [874] = 7, - [875] = 875, - [876] = 5, + [874] = 874, + [875] = 15, + [876] = 876, [877] = 877, [878] = 878, [879] = 879, @@ -4187,3326 +4208,3326 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [885] = 885, [886] = 886, [887] = 887, - [888] = 870, + [888] = 888, [889] = 889, [890] = 890, - [891] = 869, - [892] = 865, + [891] = 891, + [892] = 892, [893] = 893, [894] = 894, [895] = 895, - [896] = 10, + [896] = 896, [897] = 897, - [898] = 38, + [898] = 22, [899] = 899, [900] = 900, [901] = 901, - [902] = 864, + [902] = 902, [903] = 903, [904] = 904, [905] = 905, - [906] = 861, + [906] = 906, [907] = 907, [908] = 908, [909] = 909, [910] = 910, [911] = 911, - [912] = 859, - [913] = 853, + [912] = 912, + [913] = 913, [914] = 914, - [915] = 851, + [915] = 915, [916] = 916, [917] = 917, [918] = 918, [919] = 919, - [920] = 920, - [921] = 14, + [920] = 282, + [921] = 921, [922] = 922, [923] = 923, [924] = 924, [925] = 925, - [926] = 845, + [926] = 926, [927] = 927, [928] = 928, [929] = 929, - [930] = 850, - [931] = 849, - [932] = 846, - [933] = 933, + [930] = 930, + [931] = 931, + [932] = 932, + [933] = 4, [934] = 934, [935] = 935, [936] = 936, - [937] = 937, + [937] = 8, [938] = 938, [939] = 939, [940] = 940, [941] = 941, - [942] = 942, - [943] = 943, - [944] = 944, - [945] = 945, - [946] = 946, - [947] = 947, - [948] = 843, - [949] = 949, - [950] = 950, - [951] = 951, + [942] = 941, + [943] = 940, + [944] = 938, + [945] = 925, + [946] = 923, + [947] = 939, + [948] = 936, + [949] = 935, + [950] = 904, + [951] = 903, [952] = 952, [953] = 953, [954] = 954, [955] = 955, [956] = 956, - [957] = 905, - [958] = 925, - [959] = 919, - [960] = 917, - [961] = 961, - [962] = 858, - [963] = 963, - [964] = 964, - [965] = 956, - [966] = 8, + [957] = 902, + [958] = 907, + [959] = 901, + [960] = 900, + [961] = 934, + [962] = 899, + [963] = 11, + [964] = 897, + [965] = 896, + [966] = 895, [967] = 967, - [968] = 968, - [969] = 954, + [968] = 883, + [969] = 882, [970] = 970, [971] = 971, - [972] = 972, - [973] = 973, - [974] = 974, - [975] = 975, - [976] = 976, - [977] = 977, - [978] = 978, - [979] = 979, + [972] = 880, + [973] = 879, + [974] = 878, + [975] = 932, + [976] = 931, + [977] = 10, + [978] = 919, + [979] = 930, [980] = 980, - [981] = 981, - [982] = 982, - [983] = 983, - [984] = 984, - [985] = 985, + [981] = 929, + [982] = 874, + [983] = 928, + [984] = 873, + [985] = 926, [986] = 986, [987] = 987, [988] = 988, [989] = 989, [990] = 990, [991] = 991, - [992] = 856, - [993] = 993, - [994] = 857, - [995] = 875, - [996] = 863, - [997] = 867, + [992] = 992, + [993] = 924, + [994] = 994, + [995] = 995, + [996] = 996, + [997] = 997, [998] = 998, - [999] = 284, + [999] = 999, [1000] = 1000, [1001] = 1001, - [1002] = 1002, + [1002] = 871, [1003] = 1003, - [1004] = 1004, + [1004] = 868, [1005] = 1005, [1006] = 1006, - [1007] = 1007, - [1008] = 1008, - [1009] = 1009, - [1010] = 1010, - [1011] = 1011, - [1012] = 1012, - [1013] = 1013, - [1014] = 1014, + [1007] = 865, + [1008] = 864, + [1009] = 863, + [1010] = 862, + [1011] = 861, + [1012] = 860, + [1013] = 859, + [1014] = 858, [1015] = 1015, [1016] = 1016, [1017] = 1017, - [1018] = 1018, - [1019] = 1018, - [1020] = 1014, - [1021] = 1013, - [1022] = 1010, - [1023] = 1007, - [1024] = 1006, - [1025] = 1005, - [1026] = 967, - [1027] = 1004, - [1028] = 882, - [1029] = 1017, - [1030] = 866, - [1031] = 946, - [1032] = 1016, - [1033] = 1015, - [1034] = 1012, - [1035] = 1011, - [1036] = 998, - [1037] = 993, - [1038] = 991, - [1039] = 1009, - [1040] = 1008, - [1041] = 283, + [1018] = 857, + [1019] = 1019, + [1020] = 1020, + [1021] = 1021, + [1022] = 1022, + [1023] = 1022, + [1024] = 1020, + [1025] = 1017, + [1026] = 1021, + [1027] = 1019, + [1028] = 1016, + [1029] = 856, + [1030] = 854, + [1031] = 853, + [1032] = 837, + [1033] = 29, + [1034] = 1034, + [1035] = 852, + [1036] = 1001, + [1037] = 997, + [1038] = 996, + [1039] = 995, + [1040] = 851, + [1041] = 991, [1042] = 990, [1043] = 988, - [1044] = 1002, - [1045] = 1000, - [1046] = 11, - [1047] = 989, - [1048] = 986, - [1049] = 982, - [1050] = 976, - [1051] = 972, - [1052] = 987, - [1053] = 971, - [1054] = 970, - [1055] = 985, - [1056] = 12, - [1057] = 984, - [1058] = 903, - [1059] = 983, - [1060] = 981, - [1061] = 968, - [1062] = 980, - [1063] = 979, - [1064] = 933, - [1065] = 978, - [1066] = 977, - [1067] = 975, - [1068] = 974, - [1069] = 973, - [1070] = 45, - [1071] = 964, - [1072] = 963, - [1073] = 953, - [1074] = 952, - [1075] = 961, - [1076] = 951, - [1077] = 950, - [1078] = 949, - [1079] = 942, - [1080] = 940, - [1081] = 947, - [1082] = 1001, - [1083] = 938, - [1084] = 937, - [1085] = 928, - [1086] = 945, - [1087] = 927, - [1088] = 944, - [1089] = 943, - [1090] = 941, - [1091] = 939, - [1092] = 936, - [1093] = 872, - [1094] = 929, - [1095] = 924, - [1096] = 923, - [1097] = 935, - [1098] = 955, - [1099] = 922, - [1100] = 920, - [1101] = 918, - [1102] = 916, - [1103] = 911, - [1104] = 910, - [1105] = 847, - [1106] = 909, - [1107] = 908, - [1108] = 907, - [1109] = 899, - [1110] = 897, - [1111] = 895, - [1112] = 914, - [1113] = 904, - [1114] = 901, - [1115] = 900, - [1116] = 934, - [1117] = 887, - [1118] = 881, - [1119] = 889, - [1120] = 877, - [1121] = 890, - [1122] = 894, - [1123] = 878, - [1124] = 879, - [1125] = 880, - [1126] = 893, - [1127] = 883, - [1128] = 18, - [1129] = 884, - [1130] = 885, + [1044] = 987, + [1045] = 986, + [1046] = 1046, + [1047] = 855, + [1048] = 867, + [1049] = 850, + [1050] = 921, + [1051] = 869, + [1052] = 876, + [1053] = 1006, + [1054] = 1005, + [1055] = 1055, + [1056] = 1003, + [1057] = 1057, + [1058] = 1058, + [1059] = 870, + [1060] = 1060, + [1061] = 1055, + [1062] = 1062, + [1063] = 1063, + [1064] = 999, + [1065] = 998, + [1066] = 1066, + [1067] = 1067, + [1068] = 274, + [1069] = 1034, + [1070] = 971, + [1071] = 1015, + [1072] = 1000, + [1073] = 980, + [1074] = 956, + [1075] = 955, + [1076] = 918, + [1077] = 954, + [1078] = 953, + [1079] = 952, + [1080] = 994, + [1081] = 1060, + [1082] = 917, + [1083] = 970, + [1084] = 992, + [1085] = 1067, + [1086] = 916, + [1087] = 872, + [1088] = 881, + [1089] = 1046, + [1090] = 989, + [1091] = 1091, + [1092] = 1092, + [1093] = 1093, + [1094] = 1094, + [1095] = 1095, + [1096] = 1096, + [1097] = 1097, + [1098] = 41, + [1099] = 1099, + [1100] = 1099, + [1101] = 915, + [1102] = 914, + [1103] = 1057, + [1104] = 913, + [1105] = 912, + [1106] = 911, + [1107] = 910, + [1108] = 922, + [1109] = 927, + [1110] = 891, + [1111] = 12, + [1112] = 909, + [1113] = 908, + [1114] = 5, + [1115] = 1097, + [1116] = 1063, + [1117] = 1058, + [1118] = 1096, + [1119] = 6, + [1120] = 1091, + [1121] = 905, + [1122] = 7, + [1123] = 1095, + [1124] = 892, + [1125] = 884, + [1126] = 1094, + [1127] = 885, + [1128] = 848, + [1129] = 1093, + [1130] = 1092, [1131] = 886, - [1132] = 1003, - [1133] = 934, - [1134] = 870, - [1135] = 978, - [1136] = 1136, - [1137] = 979, - [1138] = 916, - [1139] = 980, - [1140] = 981, - [1141] = 14, - [1142] = 983, - [1143] = 984, - [1144] = 1144, - [1145] = 1145, - [1146] = 983, - [1147] = 1010, - [1148] = 1007, - [1149] = 19, - [1150] = 1006, - [1151] = 985, - [1152] = 984, - [1153] = 1153, - [1154] = 1000, - [1155] = 987, - [1156] = 989, - [1157] = 856, - [1158] = 21, - [1159] = 857, - [1160] = 875, - [1161] = 863, - [1162] = 867, - [1163] = 1163, - [1164] = 1005, - [1165] = 1000, - [1166] = 1002, - [1167] = 1167, - [1168] = 1168, - [1169] = 881, + [1132] = 887, + [1133] = 1062, + [1134] = 894, + [1135] = 893, + [1136] = 888, + [1137] = 890, + [1138] = 906, + [1139] = 889, + [1140] = 1140, + [1141] = 871, + [1142] = 880, + [1143] = 1143, + [1144] = 879, + [1145] = 878, + [1146] = 1146, + [1147] = 44, + [1148] = 1146, + [1149] = 895, + [1150] = 896, + [1151] = 897, + [1152] = 899, + [1153] = 900, + [1154] = 1154, + [1155] = 897, + [1156] = 896, + [1157] = 1157, + [1158] = 1158, + [1159] = 876, + [1160] = 37, + [1161] = 971, + [1162] = 40, + [1163] = 43, + [1164] = 1164, + [1165] = 1140, + [1166] = 1166, + [1167] = 926, + [1168] = 924, + [1169] = 922, [1170] = 1170, - [1171] = 1171, - [1172] = 1172, - [1173] = 1168, - [1174] = 1171, - [1175] = 1175, - [1176] = 918, - [1177] = 981, - [1178] = 920, - [1179] = 6, - [1180] = 851, - [1181] = 853, - [1182] = 859, - [1183] = 1008, - [1184] = 922, - [1185] = 1009, - [1186] = 1011, - [1187] = 980, - [1188] = 923, - [1189] = 947, - [1190] = 979, - [1191] = 911, - [1192] = 9, - [1193] = 1012, - [1194] = 1013, - [1195] = 1195, - [1196] = 1015, - [1197] = 1197, - [1198] = 1198, - [1199] = 910, - [1200] = 1016, - [1201] = 1201, - [1202] = 26, - [1203] = 1017, - [1204] = 1018, - [1205] = 1205, - [1206] = 1206, - [1207] = 1014, - [1208] = 909, - [1209] = 924, - [1210] = 908, - [1211] = 1211, - [1212] = 1212, - [1213] = 1172, - [1214] = 907, - [1215] = 1003, - [1216] = 1195, - [1217] = 1014, + [1171] = 907, + [1172] = 850, + [1173] = 19, + [1174] = 870, + [1175] = 921, + [1176] = 869, + [1177] = 1158, + [1178] = 1178, + [1179] = 851, + [1180] = 1034, + [1181] = 1181, + [1182] = 852, + [1183] = 886, + [1184] = 1140, + [1185] = 902, + [1186] = 1186, + [1187] = 1067, + [1188] = 853, + [1189] = 927, + [1190] = 956, + [1191] = 1178, + [1192] = 1006, + [1193] = 1005, + [1194] = 1003, + [1195] = 1181, + [1196] = 45, + [1197] = 41, + [1198] = 895, + [1199] = 887, + [1200] = 1200, + [1201] = 955, + [1202] = 954, + [1203] = 1057, + [1204] = 1143, + [1205] = 953, + [1206] = 867, + [1207] = 17, + [1208] = 11, + [1209] = 1140, + [1210] = 1210, + [1211] = 1058, + [1212] = 952, + [1213] = 46, + [1214] = 1214, + [1215] = 903, + [1216] = 904, + [1217] = 1217, [1218] = 1218, - [1219] = 1205, - [1220] = 1013, - [1221] = 929, - [1222] = 44, - [1223] = 28, - [1224] = 27, - [1225] = 24, - [1226] = 1144, - [1227] = 23, - [1228] = 41, - [1229] = 1168, - [1230] = 1002, - [1231] = 1231, - [1232] = 978, - [1233] = 850, - [1234] = 974, - [1235] = 849, - [1236] = 846, - [1237] = 933, - [1238] = 1010, - [1239] = 967, - [1240] = 935, - [1241] = 1007, - [1242] = 1242, - [1243] = 32, - [1244] = 34, - [1245] = 35, - [1246] = 1006, - [1247] = 936, - [1248] = 39, - [1249] = 975, - [1250] = 1018, - [1251] = 1153, - [1252] = 17, - [1253] = 5, - [1254] = 974, - [1255] = 1005, - [1256] = 967, - [1257] = 1004, - [1258] = 882, - [1259] = 866, - [1260] = 946, - [1261] = 977, - [1262] = 1262, - [1263] = 1172, - [1264] = 18, - [1265] = 7, - [1266] = 1017, - [1267] = 1145, - [1268] = 1268, - [1269] = 1269, - [1270] = 943, + [1219] = 918, + [1220] = 1220, + [1221] = 1060, + [1222] = 880, + [1223] = 1062, + [1224] = 1224, + [1225] = 1225, + [1226] = 1146, + [1227] = 1063, + [1228] = 29, + [1229] = 885, + [1230] = 1230, + [1231] = 879, + [1232] = 917, + [1233] = 998, + [1234] = 874, + [1235] = 916, + [1236] = 873, + [1237] = 1237, + [1238] = 928, + [1239] = 854, + [1240] = 10, + [1241] = 1178, + [1242] = 1186, + [1243] = 1140, + [1244] = 915, + [1245] = 914, + [1246] = 1146, + [1247] = 986, + [1248] = 1248, + [1249] = 923, + [1250] = 925, + [1251] = 1158, + [1252] = 913, + [1253] = 987, + [1254] = 14, + [1255] = 1158, + [1256] = 912, + [1257] = 39, + [1258] = 929, + [1259] = 988, + [1260] = 930, + [1261] = 931, + [1262] = 25, + [1263] = 938, + [1264] = 941, + [1265] = 940, + [1266] = 1146, + [1267] = 888, + [1268] = 939, + [1269] = 936, + [1270] = 935, [1271] = 1271, - [1272] = 29, - [1273] = 1273, - [1274] = 1016, - [1275] = 22, - [1276] = 1206, - [1277] = 1277, - [1278] = 861, - [1279] = 1279, - [1280] = 998, - [1281] = 864, - [1282] = 939, - [1283] = 941, - [1284] = 1284, - [1285] = 985, - [1286] = 943, - [1287] = 899, - [1288] = 944, - [1289] = 993, - [1290] = 1271, - [1291] = 991, - [1292] = 1015, - [1293] = 1293, - [1294] = 945, + [1272] = 856, + [1273] = 934, + [1274] = 990, + [1275] = 991, + [1276] = 995, + [1277] = 1016, + [1278] = 1278, + [1279] = 1017, + [1280] = 1164, + [1281] = 932, + [1282] = 1020, + [1283] = 1022, + [1284] = 932, + [1285] = 1140, + [1286] = 36, + [1287] = 1158, + [1288] = 1021, + [1289] = 996, + [1290] = 997, + [1291] = 999, + [1292] = 1001, + [1293] = 1019, + [1294] = 998, [1295] = 1295, - [1296] = 1001, - [1297] = 1012, - [1298] = 900, - [1299] = 897, - [1300] = 1300, - [1301] = 895, - [1302] = 990, - [1303] = 988, - [1304] = 1273, - [1305] = 986, - [1306] = 982, - [1307] = 973, - [1308] = 894, - [1309] = 893, - [1310] = 1310, - [1311] = 1009, - [1312] = 25, - [1313] = 1271, + [1296] = 1248, + [1297] = 870, + [1298] = 869, + [1299] = 35, + [1300] = 1067, + [1301] = 1301, + [1302] = 857, + [1303] = 868, + [1304] = 1295, + [1305] = 867, + [1306] = 1034, + [1307] = 1307, + [1308] = 934, + [1309] = 1309, + [1310] = 855, + [1311] = 865, + [1312] = 1146, + [1313] = 1015, [1314] = 1314, - [1315] = 284, - [1316] = 976, - [1317] = 1004, - [1318] = 31, - [1319] = 972, - [1320] = 882, - [1321] = 843, - [1322] = 1262, - [1323] = 973, - [1324] = 952, - [1325] = 866, - [1326] = 1326, - [1327] = 953, - [1328] = 971, - [1329] = 970, - [1330] = 903, - [1331] = 954, - [1332] = 946, - [1333] = 45, - [1334] = 16, - [1335] = 968, - [1336] = 1271, - [1337] = 1168, - [1338] = 1172, - [1339] = 1172, - [1340] = 40, - [1341] = 1168, - [1342] = 904, - [1343] = 46, - [1344] = 914, - [1345] = 15, - [1346] = 1269, - [1347] = 1269, - [1348] = 1011, - [1349] = 1206, - [1350] = 1314, - [1351] = 1269, - [1352] = 867, - [1353] = 955, - [1354] = 43, - [1355] = 951, - [1356] = 956, - [1357] = 865, - [1358] = 869, - [1359] = 42, - [1360] = 1206, - [1361] = 905, - [1362] = 1279, - [1363] = 950, - [1364] = 890, - [1365] = 998, - [1366] = 987, - [1367] = 949, - [1368] = 942, - [1369] = 1369, - [1370] = 993, - [1371] = 889, - [1372] = 925, - [1373] = 20, - [1374] = 919, - [1375] = 917, - [1376] = 961, - [1377] = 858, - [1378] = 989, - [1379] = 991, - [1380] = 1380, - [1381] = 940, - [1382] = 938, - [1383] = 11, - [1384] = 37, - [1385] = 937, - [1386] = 36, - [1387] = 33, - [1388] = 928, - [1389] = 1206, - [1390] = 927, - [1391] = 990, - [1392] = 988, - [1393] = 1273, + [1315] = 1000, + [1316] = 999, + [1317] = 1317, + [1318] = 864, + [1319] = 863, + [1320] = 862, + [1321] = 1271, + [1322] = 24, + [1323] = 980, + [1324] = 861, + [1325] = 931, + [1326] = 860, + [1327] = 1295, + [1328] = 930, + [1329] = 1329, + [1330] = 859, + [1331] = 929, + [1332] = 1146, + [1333] = 882, + [1334] = 15, + [1335] = 23, + [1336] = 928, + [1337] = 1295, + [1338] = 858, + [1339] = 859, + [1340] = 857, + [1341] = 927, + [1342] = 926, + [1343] = 935, + [1344] = 1329, + [1345] = 924, + [1346] = 922, + [1347] = 921, + [1348] = 970, + [1349] = 908, + [1350] = 1350, + [1351] = 860, + [1352] = 861, + [1353] = 862, + [1354] = 936, + [1355] = 939, + [1356] = 863, + [1357] = 940, + [1358] = 941, + [1359] = 1359, + [1360] = 1140, + [1361] = 864, + [1362] = 1301, + [1363] = 938, + [1364] = 925, + [1365] = 923, + [1366] = 858, + [1367] = 883, + [1368] = 1314, + [1369] = 1019, + [1370] = 911, + [1371] = 994, + [1372] = 992, + [1373] = 910, + [1374] = 1186, + [1375] = 1200, + [1376] = 21, + [1377] = 1377, + [1378] = 872, + [1379] = 918, + [1380] = 865, + [1381] = 1164, + [1382] = 1382, + [1383] = 1383, + [1384] = 20, + [1385] = 881, + [1386] = 1021, + [1387] = 884, + [1388] = 1022, + [1389] = 4, + [1390] = 1099, + [1391] = 1046, + [1392] = 1307, + [1393] = 1020, [1394] = 1394, - [1395] = 30, - [1396] = 13, - [1397] = 1271, - [1398] = 963, - [1399] = 38, - [1400] = 1171, - [1401] = 877, - [1402] = 878, - [1403] = 879, - [1404] = 880, - [1405] = 883, - [1406] = 986, - [1407] = 982, - [1408] = 884, - [1409] = 885, - [1410] = 1269, - [1411] = 886, - [1412] = 887, - [1413] = 870, - [1414] = 1269, - [1415] = 1171, - [1416] = 1416, - [1417] = 889, - [1418] = 1369, - [1419] = 890, - [1420] = 887, - [1421] = 869, - [1422] = 927, - [1423] = 865, - [1424] = 886, - [1425] = 893, - [1426] = 928, - [1427] = 1269, - [1428] = 894, - [1429] = 895, - [1430] = 1300, - [1431] = 897, - [1432] = 1295, - [1433] = 863, - [1434] = 1293, - [1435] = 899, - [1436] = 864, - [1437] = 861, - [1438] = 907, - [1439] = 1212, - [1440] = 1277, - [1441] = 1211, - [1442] = 908, - [1443] = 1171, - [1444] = 909, - [1445] = 283, - [1446] = 937, - [1447] = 1008, - [1448] = 964, - [1449] = 1201, - [1450] = 910, - [1451] = 1314, - [1452] = 911, - [1453] = 859, - [1454] = 12, - [1455] = 856, - [1456] = 853, - [1457] = 1314, - [1458] = 851, - [1459] = 964, - [1460] = 916, - [1461] = 885, - [1462] = 1136, - [1463] = 1310, - [1464] = 884, - [1465] = 963, - [1466] = 1175, - [1467] = 1416, - [1468] = 918, - [1469] = 920, - [1470] = 977, - [1471] = 922, - [1472] = 923, - [1473] = 938, - [1474] = 1197, - [1475] = 901, - [1476] = 914, - [1477] = 1198, - [1478] = 924, - [1479] = 929, - [1480] = 850, - [1481] = 976, - [1482] = 849, - [1483] = 972, - [1484] = 846, - [1485] = 933, - [1486] = 904, - [1487] = 1271, - [1488] = 901, - [1489] = 934, - [1490] = 975, - [1491] = 900, - [1492] = 883, - [1493] = 1314, - [1494] = 880, - [1495] = 935, - [1496] = 857, - [1497] = 1242, - [1498] = 1269, - [1499] = 936, - [1500] = 971, - [1501] = 939, - [1502] = 941, - [1503] = 1284, - [1504] = 940, - [1505] = 1380, - [1506] = 944, - [1507] = 945, - [1508] = 1001, - [1509] = 947, - [1510] = 843, - [1511] = 10, - [1512] = 1273, - [1513] = 1394, - [1514] = 879, - [1515] = 878, - [1516] = 1273, - [1517] = 970, - [1518] = 952, - [1519] = 953, - [1520] = 1314, - [1521] = 1271, - [1522] = 903, - [1523] = 954, - [1524] = 955, - [1525] = 1218, - [1526] = 877, - [1527] = 875, - [1528] = 956, - [1529] = 1314, - [1530] = 905, - [1531] = 925, - [1532] = 919, - [1533] = 917, - [1534] = 961, - [1535] = 1163, - [1536] = 1167, - [1537] = 881, - [1538] = 1170, - [1539] = 968, - [1540] = 1003, - [1541] = 1271, - [1542] = 942, - [1543] = 951, - [1544] = 858, - [1545] = 950, - [1546] = 949, - [1547] = 21, - [1548] = 42, - [1549] = 43, - [1550] = 14, - [1551] = 28, - [1552] = 44, - [1553] = 38, - [1554] = 30, - [1555] = 13, - [1556] = 39, - [1557] = 32, - [1558] = 10, - [1559] = 34, - [1560] = 23, - [1561] = 35, - [1562] = 16, - [1563] = 1563, - [1564] = 40, - [1565] = 46, - [1566] = 20, - [1567] = 12, - [1568] = 26, - [1569] = 19, - [1570] = 15, - [1571] = 29, - [1572] = 27, - [1573] = 22, - [1574] = 18, - [1575] = 1575, - [1576] = 24, - [1577] = 36, - [1578] = 31, - [1579] = 17, - [1580] = 25, - [1581] = 45, - [1582] = 37, - [1583] = 33, - [1584] = 41, - [1585] = 17, - [1586] = 39, - [1587] = 1587, - [1588] = 43, - [1589] = 42, - [1590] = 15, - [1591] = 1268, - [1592] = 37, - [1593] = 1593, - [1594] = 21, - [1595] = 1593, - [1596] = 36, - [1597] = 33, - [1598] = 284, - [1599] = 1599, - [1600] = 283, - [1601] = 30, - [1602] = 13, - [1603] = 41, - [1604] = 1599, - [1605] = 1593, - [1606] = 16, - [1607] = 44, - [1608] = 1599, - [1609] = 46, - [1610] = 34, - [1611] = 40, - [1612] = 1587, - [1613] = 1593, - [1614] = 26, - [1615] = 23, - [1616] = 1599, - [1617] = 1617, - [1618] = 31, - [1619] = 28, - [1620] = 25, - [1621] = 20, - [1622] = 27, - [1623] = 32, - [1624] = 22, - [1625] = 24, - [1626] = 19, - [1627] = 29, - [1628] = 1628, - [1629] = 1629, - [1630] = 1599, - [1631] = 35, - [1632] = 1593, - [1633] = 1633, - [1634] = 1634, - [1635] = 1635, - [1636] = 1636, - [1637] = 1637, - [1638] = 1637, - [1639] = 1639, - [1640] = 1640, - [1641] = 1641, + [1395] = 1097, + [1396] = 868, + [1397] = 1017, + [1398] = 878, + [1399] = 1096, + [1400] = 1095, + [1401] = 1278, + [1402] = 1016, + [1403] = 917, + [1404] = 856, + [1405] = 854, + [1406] = 871, + [1407] = 916, + [1408] = 848, + [1409] = 915, + [1410] = 914, + [1411] = 909, + [1412] = 913, + [1413] = 912, + [1414] = 1220, + [1415] = 1218, + [1416] = 904, + [1417] = 853, + [1418] = 903, + [1419] = 855, + [1420] = 852, + [1421] = 1093, + [1422] = 1092, + [1423] = 851, + [1424] = 1424, + [1425] = 1001, + [1426] = 12, + [1427] = 997, + [1428] = 952, + [1429] = 1394, + [1430] = 1317, + [1431] = 989, + [1432] = 282, + [1433] = 996, + [1434] = 953, + [1435] = 1091, + [1436] = 995, + [1437] = 954, + [1438] = 991, + [1439] = 1092, + [1440] = 274, + [1441] = 955, + [1442] = 8, + [1443] = 1094, + [1444] = 911, + [1445] = 850, + [1446] = 910, + [1447] = 989, + [1448] = 1158, + [1449] = 34, + [1450] = 1170, + [1451] = 1063, + [1452] = 6, + [1453] = 32, + [1454] = 1046, + [1455] = 1166, + [1456] = 909, + [1457] = 908, + [1458] = 906, + [1459] = 881, + [1460] = 905, + [1461] = 990, + [1462] = 988, + [1463] = 987, + [1464] = 956, + [1465] = 986, + [1466] = 1383, + [1467] = 1309, + [1468] = 1237, + [1469] = 872, + [1470] = 33, + [1471] = 873, + [1472] = 1186, + [1473] = 13, + [1474] = 18, + [1475] = 902, + [1476] = 1093, + [1477] = 31, + [1478] = 906, + [1479] = 848, + [1480] = 876, + [1481] = 1210, + [1482] = 992, + [1483] = 1295, + [1484] = 994, + [1485] = 1006, + [1486] = 1377, + [1487] = 907, + [1488] = 1178, + [1489] = 1005, + [1490] = 883, + [1491] = 1181, + [1492] = 38, + [1493] = 42, + [1494] = 1003, + [1495] = 1057, + [1496] = 894, + [1497] = 980, + [1498] = 900, + [1499] = 1000, + [1500] = 1058, + [1501] = 893, + [1502] = 890, + [1503] = 1214, + [1504] = 1164, + [1505] = 889, + [1506] = 889, + [1507] = 1094, + [1508] = 1178, + [1509] = 1095, + [1510] = 874, + [1511] = 22, + [1512] = 905, + [1513] = 1225, + [1514] = 899, + [1515] = 901, + [1516] = 1158, + [1517] = 1146, + [1518] = 1060, + [1519] = 1382, + [1520] = 901, + [1521] = 1521, + [1522] = 888, + [1523] = 5, + [1524] = 30, + [1525] = 1015, + [1526] = 28, + [1527] = 894, + [1528] = 1186, + [1529] = 1096, + [1530] = 1097, + [1531] = 887, + [1532] = 886, + [1533] = 885, + [1534] = 1164, + [1535] = 884, + [1536] = 890, + [1537] = 27, + [1538] = 893, + [1539] = 1157, + [1540] = 26, + [1541] = 1099, + [1542] = 1154, + [1543] = 16, + [1544] = 1181, + [1545] = 1091, + [1546] = 1158, + [1547] = 882, + [1548] = 1062, + [1549] = 1224, + [1550] = 1217, + [1551] = 1230, + [1552] = 970, + [1553] = 1350, + [1554] = 1181, + [1555] = 971, + [1556] = 26, + [1557] = 15, + [1558] = 37, + [1559] = 38, + [1560] = 17, + [1561] = 30, + [1562] = 19, + [1563] = 34, + [1564] = 32, + [1565] = 1565, + [1566] = 31, + [1567] = 16, + [1568] = 12, + [1569] = 18, + [1570] = 10, + [1571] = 25, + [1572] = 1572, + [1573] = 36, + [1574] = 43, + [1575] = 41, + [1576] = 42, + [1577] = 13, + [1578] = 33, + [1579] = 20, + [1580] = 21, + [1581] = 23, + [1582] = 24, + [1583] = 14, + [1584] = 39, + [1585] = 28, + [1586] = 46, + [1587] = 35, + [1588] = 27, + [1589] = 45, + [1590] = 44, + [1591] = 22, + [1592] = 40, + [1593] = 29, + [1594] = 14, + [1595] = 37, + [1596] = 1596, + [1597] = 1597, + [1598] = 1521, + [1599] = 1596, + [1600] = 1600, + [1601] = 39, + [1602] = 1600, + [1603] = 1603, + [1604] = 1604, + [1605] = 1597, + [1606] = 46, + [1607] = 45, + [1608] = 1600, + [1609] = 1597, + [1610] = 1610, + [1611] = 44, + [1612] = 282, + [1613] = 1600, + [1614] = 42, + [1615] = 274, + [1616] = 24, + [1617] = 43, + [1618] = 19, + [1619] = 1597, + [1620] = 40, + [1621] = 17, + [1622] = 1597, + [1623] = 30, + [1624] = 34, + [1625] = 32, + [1626] = 18, + [1627] = 36, + [1628] = 35, + [1629] = 20, + [1630] = 23, + [1631] = 28, + [1632] = 38, + [1633] = 27, + [1634] = 26, + [1635] = 16, + [1636] = 33, + [1637] = 13, + [1638] = 31, + [1639] = 21, + [1640] = 1600, + [1641] = 25, [1642] = 1642, [1643] = 1643, - [1644] = 1639, + [1644] = 1644, [1645] = 1645, - [1646] = 1646, + [1646] = 1645, [1647] = 1647, [1648] = 1648, [1649] = 1649, [1650] = 1650, [1651] = 1651, - [1652] = 1637, + [1652] = 1648, [1653] = 1653, - [1654] = 1650, - [1655] = 1646, + [1654] = 1654, + [1655] = 1653, [1656] = 1656, - [1657] = 1653, - [1658] = 1637, - [1659] = 1639, + [1657] = 1657, + [1658] = 1658, + [1659] = 1659, [1660] = 1660, - [1661] = 1646, + [1661] = 1661, [1662] = 1662, - [1663] = 1646, + [1663] = 1663, [1664] = 1664, - [1665] = 1653, + [1665] = 1663, [1666] = 1666, - [1667] = 1639, - [1668] = 1668, - [1669] = 1646, + [1667] = 1667, + [1668] = 1663, + [1669] = 1663, [1670] = 1653, - [1671] = 1639, - [1672] = 1672, - [1673] = 1653, + [1671] = 1663, + [1672] = 1645, + [1673] = 1645, [1674] = 1674, - [1675] = 1656, - [1676] = 1637, - [1677] = 1677, - [1678] = 1677, - [1679] = 1679, - [1680] = 1677, + [1675] = 1660, + [1676] = 1653, + [1677] = 1660, + [1678] = 1660, + [1679] = 1660, + [1680] = 1645, [1681] = 1681, [1682] = 1682, [1683] = 1683, - [1684] = 1683, - [1685] = 1681, - [1686] = 1683, - [1687] = 1681, - [1688] = 1681, - [1689] = 1683, - [1690] = 1683, - [1691] = 1679, - [1692] = 1679, - [1693] = 1681, - [1694] = 1677, - [1695] = 1679, - [1696] = 1677, - [1697] = 1679, - [1698] = 1698, - [1699] = 1699, - [1700] = 1700, - [1701] = 1700, - [1702] = 1700, - [1703] = 1698, - [1704] = 1698, - [1705] = 1705, - [1706] = 1706, + [1684] = 1653, + [1685] = 1682, + [1686] = 1686, + [1687] = 1687, + [1688] = 1688, + [1689] = 1688, + [1690] = 1687, + [1691] = 1687, + [1692] = 1692, + [1693] = 1688, + [1694] = 1694, + [1695] = 1687, + [1696] = 1686, + [1697] = 1686, + [1698] = 1686, + [1699] = 1687, + [1700] = 1688, + [1701] = 1694, + [1702] = 1694, + [1703] = 1686, + [1704] = 1694, + [1705] = 1694, + [1706] = 1688, [1707] = 1707, [1708] = 1708, - [1709] = 1698, + [1709] = 1708, [1710] = 1710, - [1711] = 1700, + [1711] = 1711, [1712] = 1712, [1713] = 1713, [1714] = 1714, [1715] = 1715, [1716] = 1716, [1717] = 1717, - [1718] = 1700, - [1719] = 1715, - [1720] = 1715, - [1721] = 1721, - [1722] = 1715, - [1723] = 1698, - [1724] = 1724, + [1718] = 1707, + [1719] = 1719, + [1720] = 1708, + [1721] = 1707, + [1722] = 1722, + [1723] = 1707, + [1724] = 1713, [1725] = 1725, [1726] = 1726, - [1727] = 1727, + [1727] = 1708, [1728] = 1728, - [1729] = 1715, - [1730] = 1730, + [1729] = 1729, + [1730] = 1713, [1731] = 1731, [1732] = 1732, - [1733] = 1733, + [1733] = 1713, [1734] = 1734, [1735] = 1735, [1736] = 1736, [1737] = 1737, - [1738] = 1738, - [1739] = 1739, - [1740] = 1733, + [1738] = 1713, + [1739] = 1707, + [1740] = 1708, [1741] = 1741, - [1742] = 1738, + [1742] = 1742, [1743] = 1743, [1744] = 1744, - [1745] = 1743, - [1746] = 1741, - [1747] = 1735, - [1748] = 1744, - [1749] = 1741, - [1750] = 1739, - [1751] = 1739, - [1752] = 1744, - [1753] = 1743, - [1754] = 1735, + [1745] = 1745, + [1746] = 37, + [1747] = 1747, + [1748] = 1748, + [1749] = 1742, + [1750] = 1744, + [1751] = 1745, + [1752] = 17, + [1753] = 1753, + [1754] = 1753, [1755] = 1755, - [1756] = 1738, + [1756] = 1747, [1757] = 1757, - [1758] = 1737, - [1759] = 1735, - [1760] = 1734, - [1761] = 1737, - [1762] = 1736, - [1763] = 1733, - [1764] = 1741, - [1765] = 1739, - [1766] = 1734, - [1767] = 1767, - [1768] = 1768, - [1769] = 1769, - [1770] = 1755, - [1771] = 1741, - [1772] = 1739, - [1773] = 1734, - [1774] = 1733, - [1775] = 1743, - [1776] = 1733, - [1777] = 1744, - [1778] = 1757, - [1779] = 1744, - [1780] = 1769, - [1781] = 1736, - [1782] = 1743, - [1783] = 1736, - [1784] = 1755, - [1785] = 1769, - [1786] = 1768, - [1787] = 1768, - [1788] = 1757, - [1789] = 1769, - [1790] = 1768, - [1791] = 1736, - [1792] = 1735, - [1793] = 1769, - [1794] = 1738, - [1795] = 1768, - [1796] = 1734, - [1797] = 1755, - [1798] = 1737, - [1799] = 1755, - [1800] = 1738, - [1801] = 1757, - [1802] = 1737, - [1803] = 1757, - [1804] = 44, - [1805] = 1805, - [1806] = 1806, - [1807] = 1807, - [1808] = 15, - [1809] = 19, - [1810] = 20, - [1811] = 1811, - [1812] = 21, - [1813] = 1813, - [1814] = 1814, - [1815] = 1815, - [1816] = 1816, - [1817] = 1817, + [1758] = 1758, + [1759] = 1759, + [1760] = 1760, + [1761] = 1745, + [1762] = 1744, + [1763] = 1743, + [1764] = 1757, + [1765] = 16, + [1766] = 1766, + [1767] = 1742, + [1768] = 1758, + [1769] = 18, + [1770] = 1770, + [1771] = 1745, + [1772] = 1770, + [1773] = 1747, + [1774] = 1770, + [1775] = 1775, + [1776] = 1744, + [1777] = 1742, + [1778] = 1775, + [1779] = 1747, + [1780] = 1753, + [1781] = 1770, + [1782] = 1757, + [1783] = 1753, + [1784] = 1758, + [1785] = 1758, + [1786] = 1766, + [1787] = 1770, + [1788] = 1758, + [1789] = 1748, + [1790] = 1760, + [1791] = 1748, + [1792] = 1775, + [1793] = 1742, + [1794] = 1757, + [1795] = 1766, + [1796] = 1753, + [1797] = 1743, + [1798] = 1755, + [1799] = 1760, + [1800] = 1748, + [1801] = 1760, + [1802] = 1748, + [1803] = 1755, + [1804] = 1743, + [1805] = 42, + [1806] = 1755, + [1807] = 1743, + [1808] = 1744, + [1809] = 1745, + [1810] = 1775, + [1811] = 1747, + [1812] = 1757, + [1813] = 1766, + [1814] = 1755, + [1815] = 1766, + [1816] = 1775, + [1817] = 1760, [1818] = 1818, [1819] = 1819, [1820] = 1820, - [1821] = 1819, - [1822] = 1820, - [1823] = 1820, + [1821] = 1821, + [1822] = 1822, + [1823] = 1823, [1824] = 1824, - [1825] = 1824, + [1825] = 1825, [1826] = 1826, - [1827] = 1824, - [1828] = 1826, - [1829] = 1819, - [1830] = 1826, - [1831] = 1824, - [1832] = 1824, - [1833] = 1826, - [1834] = 1820, - [1835] = 1819, - [1836] = 1836, - [1837] = 1826, - [1838] = 1819, - [1839] = 1820, - [1840] = 1840, - [1841] = 1841, - [1842] = 1840, - [1843] = 1843, - [1844] = 1844, - [1845] = 1840, - [1846] = 1846, - [1847] = 1840, - [1848] = 1848, + [1827] = 1827, + [1828] = 1828, + [1829] = 1828, + [1830] = 1830, + [1831] = 1831, + [1832] = 1832, + [1833] = 1833, + [1834] = 1828, + [1835] = 1833, + [1836] = 1833, + [1837] = 1830, + [1838] = 1830, + [1839] = 1832, + [1840] = 1832, + [1841] = 1830, + [1842] = 1833, + [1843] = 1828, + [1844] = 1832, + [1845] = 1828, + [1846] = 1832, + [1847] = 1833, + [1848] = 1830, [1849] = 1849, [1850] = 1850, [1851] = 1851, - [1852] = 1852, - [1853] = 1850, - [1854] = 1846, - [1855] = 1852, + [1852] = 1850, + [1853] = 1853, + [1854] = 1854, + [1855] = 1851, [1856] = 1856, [1857] = 1850, - [1858] = 1852, - [1859] = 1850, - [1860] = 1852, - [1861] = 1846, - [1862] = 1862, - [1863] = 1846, - [1864] = 1852, - [1865] = 1840, - [1866] = 1866, - [1867] = 1846, - [1868] = 1850, + [1858] = 1858, + [1859] = 1853, + [1860] = 1850, + [1861] = 1861, + [1862] = 1851, + [1863] = 1853, + [1864] = 1864, + [1865] = 1850, + [1866] = 1853, + [1867] = 1867, + [1868] = 1856, [1869] = 1869, - [1870] = 1870, - [1871] = 1871, - [1872] = 1872, - [1873] = 1869, - [1874] = 1870, - [1875] = 1871, - [1876] = 1876, - [1877] = 1872, - [1878] = 1871, - [1879] = 1869, - [1880] = 1870, - [1881] = 1870, - [1882] = 1882, - [1883] = 1872, - [1884] = 1871, - [1885] = 1872, - [1886] = 1870, - [1887] = 1869, - [1888] = 1888, - [1889] = 1871, - [1890] = 1870, - [1891] = 1872, - [1892] = 1869, - [1893] = 1893, - [1894] = 1872, - [1895] = 1869, - [1896] = 1872, - [1897] = 1870, - [1898] = 1869, - [1899] = 1871, - [1900] = 1871, - [1901] = 1901, - [1902] = 1902, - [1903] = 1903, + [1870] = 1851, + [1871] = 1856, + [1872] = 1856, + [1873] = 1851, + [1874] = 1874, + [1875] = 1856, + [1876] = 1853, + [1877] = 1877, + [1878] = 1878, + [1879] = 1879, + [1880] = 1880, + [1881] = 1881, + [1882] = 1881, + [1883] = 1883, + [1884] = 1884, + [1885] = 1885, + [1886] = 1886, + [1887] = 1880, + [1888] = 1880, + [1889] = 1886, + [1890] = 1884, + [1891] = 1891, + [1892] = 1886, + [1893] = 1879, + [1894] = 1881, + [1895] = 1881, + [1896] = 1883, + [1897] = 1883, + [1898] = 1886, + [1899] = 1879, + [1900] = 1883, + [1901] = 1884, + [1902] = 1880, + [1903] = 1884, [1904] = 1904, - [1905] = 1905, - [1906] = 1906, - [1907] = 1907, - [1908] = 1908, - [1909] = 1909, - [1910] = 1901, - [1911] = 1907, - [1912] = 1906, - [1913] = 1913, - [1914] = 1914, - [1915] = 1906, - [1916] = 1916, - [1917] = 1901, - [1918] = 1906, - [1919] = 1919, - [1920] = 1916, + [1905] = 1879, + [1906] = 1879, + [1907] = 1881, + [1908] = 1886, + [1909] = 1880, + [1910] = 1881, + [1911] = 1884, + [1912] = 1880, + [1913] = 1880, + [1914] = 1879, + [1915] = 1881, + [1916] = 1879, + [1917] = 1886, + [1918] = 1883, + [1919] = 1886, + [1920] = 1920, [1921] = 1921, - [1922] = 1906, - [1923] = 1849, - [1924] = 1916, + [1922] = 1922, + [1923] = 1923, + [1924] = 1924, [1925] = 1925, - [1926] = 1901, + [1926] = 1926, [1927] = 1927, - [1928] = 1916, - [1929] = 1907, + [1928] = 1854, + [1929] = 1920, [1930] = 1930, - [1931] = 1907, - [1932] = 1901, + [1931] = 1931, + [1932] = 1932, [1933] = 1933, - [1934] = 1907, + [1934] = 1921, [1935] = 1935, - [1936] = 1936, + [1936] = 1921, [1937] = 1937, [1938] = 1938, [1939] = 1939, - [1940] = 1916, - [1941] = 1941, - [1942] = 1942, + [1940] = 1940, + [1941] = 1920, + [1942] = 1921, [1943] = 1943, [1944] = 1944, - [1945] = 1945, - [1946] = 1946, + [1945] = 1932, + [1946] = 1939, [1947] = 1947, [1948] = 1948, - [1949] = 1949, - [1950] = 1950, - [1951] = 1951, - [1952] = 1952, - [1953] = 1953, + [1949] = 1932, + [1950] = 1920, + [1951] = 1921, + [1952] = 1939, + [1953] = 1939, [1954] = 1954, - [1955] = 1954, - [1956] = 1952, - [1957] = 1951, - [1958] = 1958, - [1959] = 1959, + [1955] = 1920, + [1956] = 1956, + [1957] = 1932, + [1958] = 1939, + [1959] = 1932, [1960] = 1960, - [1961] = 1952, - [1962] = 1954, - [1963] = 9, + [1961] = 1961, + [1962] = 1962, + [1963] = 1963, [1964] = 1964, [1965] = 1965, [1966] = 1966, [1967] = 1967, - [1968] = 1954, - [1969] = 1950, - [1970] = 1951, - [1971] = 1964, + [1968] = 1968, + [1969] = 1969, + [1970] = 1970, + [1971] = 1971, [1972] = 1972, [1973] = 1973, - [1974] = 1973, - [1975] = 1950, - [1976] = 1960, - [1977] = 1960, - [1978] = 1967, - [1979] = 1966, - [1980] = 1965, - [1981] = 1965, - [1982] = 1964, - [1983] = 1983, - [1984] = 1983, - [1985] = 1960, - [1986] = 1952, - [1987] = 1972, - [1988] = 1973, - [1989] = 1967, - [1990] = 1964, - [1991] = 1958, - [1992] = 1965, - [1993] = 1952, - [1994] = 1994, - [1995] = 1972, - [1996] = 1951, - [1997] = 1964, - [1998] = 1967, - [1999] = 1965, - [2000] = 1950, - [2001] = 2001, - [2002] = 1966, - [2003] = 1966, - [2004] = 2004, - [2005] = 1967, - [2006] = 1983, - [2007] = 1951, - [2008] = 1958, - [2009] = 1954, - [2010] = 1958, - [2011] = 1972, - [2012] = 1966, - [2013] = 1973, - [2014] = 1960, - [2015] = 7, - [2016] = 1973, - [2017] = 1983, - [2018] = 1983, + [1974] = 1974, + [1975] = 4, + [1976] = 8, + [1977] = 1977, + [1978] = 1978, + [1979] = 1973, + [1980] = 1980, + [1981] = 1970, + [1982] = 1973, + [1983] = 1970, + [1984] = 1974, + [1985] = 1977, + [1986] = 1978, + [1987] = 1980, + [1988] = 1971, + [1989] = 1989, + [1990] = 1990, + [1991] = 1991, + [1992] = 1992, + [1993] = 1990, + [1994] = 1974, + [1995] = 1969, + [1996] = 1992, + [1997] = 1990, + [1998] = 1969, + [1999] = 1970, + [2000] = 1971, + [2001] = 1969, + [2002] = 1980, + [2003] = 1992, + [2004] = 1992, + [2005] = 2005, + [2006] = 1978, + [2007] = 1977, + [2008] = 1989, + [2009] = 1989, + [2010] = 2010, + [2011] = 2011, + [2012] = 1971, + [2013] = 1974, + [2014] = 1989, + [2015] = 1973, + [2016] = 1990, + [2017] = 1971, + [2018] = 1977, [2019] = 2019, - [2020] = 1972, - [2021] = 1950, - [2022] = 1958, - [2023] = 2023, - [2024] = 45, - [2025] = 2025, - [2026] = 2026, - [2027] = 2027, - [2028] = 2028, - [2029] = 2029, - [2030] = 2030, - [2031] = 2031, + [2020] = 1989, + [2021] = 1973, + [2022] = 1974, + [2023] = 1977, + [2024] = 1990, + [2025] = 1978, + [2026] = 1970, + [2027] = 1980, + [2028] = 1978, + [2029] = 1992, + [2030] = 1980, + [2031] = 1969, [2032] = 2032, - [2033] = 2031, + [2033] = 2033, [2034] = 2034, [2035] = 2035, - [2036] = 2028, + [2036] = 2036, [2037] = 2037, [2038] = 2038, [2039] = 2039, [2040] = 2040, - [2041] = 2029, - [2042] = 2042, + [2041] = 2033, + [2042] = 15, [2043] = 2043, - [2044] = 2034, + [2044] = 2044, [2045] = 2045, - [2046] = 2032, - [2047] = 2023, - [2048] = 2030, + [2046] = 2046, + [2047] = 2039, + [2048] = 22, [2049] = 2049, - [2050] = 2040, - [2051] = 2045, + [2050] = 2050, + [2051] = 2032, [2052] = 2052, - [2053] = 2026, - [2054] = 2049, - [2055] = 2043, - [2056] = 2039, - [2057] = 2025, - [2058] = 2026, - [2059] = 2040, - [2060] = 2042, - [2061] = 2061, - [2062] = 2028, - [2063] = 2031, - [2064] = 2052, - [2065] = 2039, - [2066] = 2049, - [2067] = 2067, - [2068] = 2040, - [2069] = 18, - [2070] = 2030, - [2071] = 2034, - [2072] = 2023, - [2073] = 2039, - [2074] = 2074, - [2075] = 2075, - [2076] = 2076, - [2077] = 2077, - [2078] = 2029, - [2079] = 2042, - [2080] = 2080, - [2081] = 2032, - [2082] = 2025, - [2083] = 2023, - [2084] = 2042, - [2085] = 2031, - [2086] = 2086, - [2087] = 2027, - [2088] = 2045, - [2089] = 2043, + [2053] = 2053, + [2054] = 2054, + [2055] = 2055, + [2056] = 2033, + [2057] = 2039, + [2058] = 2058, + [2059] = 2059, + [2060] = 2060, + [2061] = 2034, + [2062] = 2055, + [2063] = 2059, + [2064] = 2064, + [2065] = 2065, + [2066] = 2044, + [2067] = 2034, + [2068] = 2036, + [2069] = 2069, + [2070] = 2043, + [2071] = 2053, + [2072] = 2072, + [2073] = 2073, + [2074] = 2043, + [2075] = 12, + [2076] = 2040, + [2077] = 2034, + [2078] = 2055, + [2079] = 2043, + [2080] = 2040, + [2081] = 2039, + [2082] = 2053, + [2083] = 2046, + [2084] = 2059, + [2085] = 2085, + [2086] = 2033, + [2087] = 2052, + [2088] = 2088, + [2089] = 2089, [2090] = 2090, - [2091] = 2025, - [2092] = 2039, + [2091] = 2058, + [2092] = 2058, [2093] = 2093, - [2094] = 2027, - [2095] = 2032, - [2096] = 2049, - [2097] = 2067, - [2098] = 2052, - [2099] = 2052, - [2100] = 2052, - [2101] = 2023, - [2102] = 2067, - [2103] = 2029, - [2104] = 2104, - [2105] = 2030, - [2106] = 2026, - [2107] = 2107, - [2108] = 2028, - [2109] = 2067, - [2110] = 2049, - [2111] = 2043, - [2112] = 2027, - [2113] = 2025, - [2114] = 2067, - [2115] = 2031, - [2116] = 2045, - [2117] = 2032, - [2118] = 2042, - [2119] = 2119, - [2120] = 2120, - [2121] = 2027, - [2122] = 12, + [2094] = 2094, + [2095] = 2036, + [2096] = 2044, + [2097] = 2058, + [2098] = 2055, + [2099] = 2064, + [2100] = 2033, + [2101] = 2052, + [2102] = 2060, + [2103] = 2036, + [2104] = 2046, + [2105] = 2059, + [2106] = 2060, + [2107] = 2064, + [2108] = 2088, + [2109] = 2033, + [2110] = 2090, + [2111] = 2032, + [2112] = 2064, + [2113] = 2032, + [2114] = 2058, + [2115] = 2033, + [2116] = 2055, + [2117] = 2090, + [2118] = 2088, + [2119] = 2053, + [2120] = 2044, + [2121] = 2060, + [2122] = 2090, [2123] = 2040, [2124] = 2043, - [2125] = 2125, - [2126] = 2067, - [2127] = 2045, - [2128] = 2067, - [2129] = 2067, - [2130] = 2030, - [2131] = 2034, - [2132] = 2028, - [2133] = 2026, - [2134] = 2029, - [2135] = 2034, - [2136] = 2136, - [2137] = 2137, - [2138] = 2138, - [2139] = 2139, - [2140] = 2140, - [2141] = 2141, - [2142] = 2136, - [2143] = 2143, - [2144] = 2144, + [2125] = 2052, + [2126] = 2040, + [2127] = 2088, + [2128] = 2088, + [2129] = 2090, + [2130] = 2034, + [2131] = 2036, + [2132] = 2052, + [2133] = 2133, + [2134] = 2134, + [2135] = 2046, + [2136] = 2060, + [2137] = 2039, + [2138] = 2059, + [2139] = 2033, + [2140] = 2032, + [2141] = 2044, + [2142] = 2053, + [2143] = 2046, + [2144] = 2064, [2145] = 2145, [2146] = 2146, - [2147] = 2146, + [2147] = 2147, [2148] = 2148, [2149] = 2149, [2150] = 2150, - [2151] = 2151, - [2152] = 2152, - [2153] = 9, - [2154] = 7, - [2155] = 2136, - [2156] = 2141, + [2151] = 2150, + [2152] = 2150, + [2153] = 2150, + [2154] = 2154, + [2155] = 2155, + [2156] = 2156, [2157] = 2157, - [2158] = 2152, + [2158] = 2154, [2159] = 2159, - [2160] = 2141, + [2160] = 2154, [2161] = 2161, - [2162] = 2137, - [2163] = 2137, - [2164] = 2137, - [2165] = 2152, - [2166] = 2166, - [2167] = 2138, + [2162] = 2162, + [2163] = 2163, + [2164] = 2164, + [2165] = 38, + [2166] = 2164, + [2167] = 2155, [2168] = 2168, - [2169] = 2148, - [2170] = 2149, - [2171] = 2171, - [2172] = 2159, - [2173] = 2173, - [2174] = 17, - [2175] = 41, - [2176] = 2148, - [2177] = 2159, - [2178] = 2149, - [2179] = 2173, - [2180] = 2180, - [2181] = 2171, - [2182] = 2171, - [2183] = 2138, - [2184] = 2141, - [2185] = 2173, - [2186] = 2159, - [2187] = 2159, - [2188] = 2149, + [2169] = 2169, + [2170] = 2170, + [2171] = 2157, + [2172] = 2147, + [2173] = 2159, + [2174] = 32, + [2175] = 2159, + [2176] = 2157, + [2177] = 2170, + [2178] = 2146, + [2179] = 2154, + [2180] = 2148, + [2181] = 2154, + [2182] = 2148, + [2183] = 2155, + [2184] = 2149, + [2185] = 2185, + [2186] = 2146, + [2187] = 2187, + [2188] = 2188, [2189] = 2189, - [2190] = 2148, - [2191] = 2171, - [2192] = 2137, - [2193] = 2173, - [2194] = 2152, - [2195] = 2173, - [2196] = 2196, - [2197] = 2171, - [2198] = 2198, - [2199] = 2199, - [2200] = 2136, - [2201] = 2138, - [2202] = 2138, - [2203] = 2203, - [2204] = 2146, - [2205] = 2205, - [2206] = 2159, - [2207] = 2148, - [2208] = 2136, - [2209] = 2209, - [2210] = 2146, - [2211] = 2159, - [2212] = 2146, - [2213] = 2141, - [2214] = 2214, - [2215] = 2149, - [2216] = 2152, - [2217] = 2217, - [2218] = 12, - [2219] = 45, - [2220] = 2220, - [2221] = 2221, + [2190] = 2190, + [2191] = 2146, + [2192] = 2164, + [2193] = 2193, + [2194] = 2194, + [2195] = 2195, + [2196] = 2170, + [2197] = 2169, + [2198] = 2164, + [2199] = 2149, + [2200] = 2200, + [2201] = 2169, + [2202] = 2146, + [2203] = 2155, + [2204] = 2204, + [2205] = 2148, + [2206] = 4, + [2207] = 2157, + [2208] = 2159, + [2209] = 8, + [2210] = 2159, + [2211] = 2154, + [2212] = 2155, + [2213] = 2164, + [2214] = 2190, + [2215] = 2190, + [2216] = 2147, + [2217] = 2157, + [2218] = 2190, + [2219] = 2219, + [2220] = 2149, + [2221] = 2148, [2222] = 2222, - [2223] = 2221, - [2224] = 2224, + [2223] = 2170, + [2224] = 2147, [2225] = 2225, - [2226] = 2226, - [2227] = 2227, + [2226] = 2169, + [2227] = 2147, [2228] = 2228, - [2229] = 2229, - [2230] = 2230, - [2231] = 2231, - [2232] = 2232, + [2229] = 2190, + [2230] = 2150, + [2231] = 2149, + [2232] = 2170, [2233] = 2233, - [2234] = 2228, - [2235] = 2233, - [2236] = 2226, - [2237] = 2227, - [2238] = 2229, + [2234] = 2234, + [2235] = 2169, + [2236] = 2154, + [2237] = 2237, + [2238] = 2238, [2239] = 2239, [2240] = 2240, - [2241] = 2239, - [2242] = 2225, + [2241] = 2241, + [2242] = 2237, [2243] = 2243, - [2244] = 2244, - [2245] = 2232, - [2246] = 2231, + [2244] = 2241, + [2245] = 2245, + [2246] = 2246, [2247] = 2247, - [2248] = 2248, + [2248] = 2065, [2249] = 2249, [2250] = 2250, - [2251] = 2247, - [2252] = 2224, - [2253] = 2249, - [2254] = 2248, - [2255] = 2226, - [2256] = 2222, - [2257] = 2230, - [2258] = 2221, - [2259] = 2227, - [2260] = 2093, - [2261] = 2250, - [2262] = 2229, - [2263] = 2263, - [2264] = 2264, - [2265] = 2244, + [2251] = 2251, + [2252] = 2250, + [2253] = 2253, + [2254] = 2241, + [2255] = 2239, + [2256] = 2245, + [2257] = 2257, + [2258] = 2258, + [2259] = 2259, + [2260] = 2246, + [2261] = 2247, + [2262] = 2243, + [2263] = 2239, + [2264] = 2249, + [2265] = 2253, [2266] = 2266, - [2267] = 2247, + [2267] = 2267, [2268] = 2268, - [2269] = 2264, - [2270] = 2270, - [2271] = 2229, - [2272] = 2227, - [2273] = 2226, - [2274] = 2274, - [2275] = 2221, - [2276] = 2226, - [2277] = 2227, - [2278] = 2229, - [2279] = 2230, - [2280] = 2264, - [2281] = 2233, - [2282] = 2248, - [2283] = 2249, - [2284] = 2250, - [2285] = 2248, - [2286] = 2231, - [2287] = 2268, - [2288] = 2076, - [2289] = 2233, - [2290] = 2249, - [2291] = 2244, - [2292] = 2222, - [2293] = 2264, - [2294] = 2248, - [2295] = 2224, - [2296] = 2249, - [2297] = 2268, - [2298] = 2233, - [2299] = 2299, - [2300] = 2250, - [2301] = 2244, - [2302] = 2268, - [2303] = 2225, - [2304] = 2228, - [2305] = 2243, - [2306] = 2231, - [2307] = 2274, - [2308] = 18, - [2309] = 2222, - [2310] = 2250, - [2311] = 2311, - [2312] = 2231, - [2313] = 2313, - [2314] = 2222, - [2315] = 2232, - [2316] = 2224, - [2317] = 2225, - [2318] = 2224, - [2319] = 2243, - [2320] = 2225, - [2321] = 2244, - [2322] = 2268, - [2323] = 2228, - [2324] = 2228, - [2325] = 2232, - [2326] = 2232, - [2327] = 2327, - [2328] = 2328, - [2329] = 2220, - [2330] = 2330, + [2269] = 2238, + [2270] = 2250, + [2271] = 2239, + [2272] = 2240, + [2273] = 2249, + [2274] = 2243, + [2275] = 2240, + [2276] = 2276, + [2277] = 2277, + [2278] = 2276, + [2279] = 2277, + [2280] = 2276, + [2281] = 12, + [2282] = 2277, + [2283] = 2283, + [2284] = 2284, + [2285] = 2285, + [2286] = 2286, + [2287] = 2287, + [2288] = 2245, + [2289] = 2258, + [2290] = 2259, + [2291] = 2240, + [2292] = 22, + [2293] = 2293, + [2294] = 2276, + [2295] = 2243, + [2296] = 15, + [2297] = 2237, + [2298] = 2241, + [2299] = 2268, + [2300] = 2243, + [2301] = 2240, + [2302] = 2249, + [2303] = 2237, + [2304] = 2245, + [2305] = 2246, + [2306] = 2247, + [2307] = 2237, + [2308] = 2238, + [2309] = 2258, + [2310] = 2259, + [2311] = 2268, + [2312] = 2285, + [2313] = 2245, + [2314] = 2246, + [2315] = 2247, + [2316] = 2268, + [2317] = 2285, + [2318] = 2238, + [2319] = 2284, + [2320] = 2284, + [2321] = 2283, + [2322] = 2283, + [2323] = 2249, + [2324] = 2239, + [2325] = 2277, + [2326] = 2287, + [2327] = 2259, + [2328] = 2258, + [2329] = 2329, + [2330] = 2259, [2331] = 2331, - [2332] = 2221, - [2333] = 2247, - [2334] = 2240, - [2335] = 2239, - [2336] = 2243, - [2337] = 2230, - [2338] = 2243, - [2339] = 2339, + [2332] = 2332, + [2333] = 2268, + [2334] = 2258, + [2335] = 2238, + [2336] = 2246, + [2337] = 2251, + [2338] = 2338, + [2339] = 2267, [2340] = 2340, - [2341] = 2240, - [2342] = 2239, - [2343] = 2343, - [2344] = 2239, - [2345] = 2264, - [2346] = 2247, - [2347] = 2240, - [2348] = 2240, - [2349] = 2230, - [2350] = 2350, - [2351] = 2351, - [2352] = 2352, - [2353] = 2353, - [2354] = 2353, - [2355] = 2350, - [2356] = 2353, - [2357] = 2350, - [2358] = 2352, - [2359] = 2350, - [2360] = 2360, - [2361] = 2353, + [2341] = 2253, + [2342] = 2342, + [2343] = 2285, + [2344] = 2284, + [2345] = 2134, + [2346] = 2283, + [2347] = 2250, + [2348] = 2348, + [2349] = 2250, + [2350] = 2331, + [2351] = 2267, + [2352] = 2267, + [2353] = 2285, + [2354] = 2253, + [2355] = 2284, + [2356] = 2241, + [2357] = 2251, + [2358] = 2251, + [2359] = 2277, + [2360] = 2283, + [2361] = 2267, [2362] = 2362, [2363] = 2363, - [2364] = 2362, + [2364] = 2276, [2365] = 2365, - [2366] = 41, - [2367] = 17, - [2368] = 2365, - [2369] = 2369, + [2366] = 2251, + [2367] = 2253, + [2368] = 2247, + [2369] = 38, [2370] = 2370, - [2371] = 2369, - [2372] = 2365, - [2373] = 2369, + [2371] = 2371, + [2372] = 2372, + [2373] = 2373, [2374] = 2374, - [2375] = 2362, - [2376] = 2376, - [2377] = 2352, - [2378] = 2369, - [2379] = 2365, - [2380] = 2352, - [2381] = 2365, - [2382] = 2369, + [2375] = 2375, + [2376] = 32, + [2377] = 2372, + [2378] = 2370, + [2379] = 2379, + [2380] = 2370, + [2381] = 2375, + [2382] = 2382, [2383] = 2383, - [2384] = 2384, - [2385] = 2350, - [2386] = 2353, - [2387] = 2362, - [2388] = 2352, - [2389] = 2389, - [2390] = 2362, - [2391] = 857, + [2384] = 2374, + [2385] = 2385, + [2386] = 2385, + [2387] = 2383, + [2388] = 2379, + [2389] = 2372, + [2390] = 2379, + [2391] = 2374, [2392] = 2392, - [2393] = 2393, - [2394] = 2394, - [2395] = 2395, + [2393] = 2383, + [2394] = 2375, + [2395] = 2372, [2396] = 2396, - [2397] = 2397, + [2397] = 2385, [2398] = 2398, [2399] = 2399, - [2400] = 2400, - [2401] = 2401, - [2402] = 2402, + [2400] = 2382, + [2401] = 2375, + [2402] = 2382, [2403] = 2403, - [2404] = 2404, - [2405] = 2405, - [2406] = 2406, - [2407] = 2395, - [2408] = 2408, + [2404] = 2398, + [2405] = 2385, + [2406] = 2383, + [2407] = 2375, + [2408] = 2382, [2409] = 2409, - [2410] = 2399, - [2411] = 2403, - [2412] = 2412, - [2413] = 2413, - [2414] = 2414, - [2415] = 2415, - [2416] = 2403, - [2417] = 2417, - [2418] = 2404, + [2410] = 2398, + [2411] = 2374, + [2412] = 2379, + [2413] = 2370, + [2414] = 2370, + [2415] = 2374, + [2416] = 2379, + [2417] = 2398, + [2418] = 2372, [2419] = 2419, - [2420] = 2404, - [2421] = 2417, - [2422] = 2419, - [2423] = 2408, - [2424] = 2395, - [2425] = 2412, - [2426] = 2399, + [2420] = 2382, + [2421] = 2385, + [2422] = 2383, + [2423] = 2423, + [2424] = 2398, + [2425] = 906, + [2426] = 2426, [2427] = 2427, [2428] = 2428, - [2429] = 903, - [2430] = 2414, - [2431] = 2405, - [2432] = 2414, - [2433] = 2409, - [2434] = 2406, - [2435] = 2401, - [2436] = 2400, - [2437] = 2401, + [2429] = 2429, + [2430] = 2430, + [2431] = 2431, + [2432] = 2432, + [2433] = 999, + [2434] = 998, + [2435] = 2426, + [2436] = 2436, + [2437] = 2426, [2438] = 2438, - [2439] = 2398, + [2439] = 994, [2440] = 2440, - [2441] = 2441, - [2442] = 2442, + [2441] = 2438, + [2442] = 992, [2443] = 2443, - [2444] = 870, + [2444] = 2444, [2445] = 2445, - [2446] = 2446, - [2447] = 2447, - [2448] = 2448, - [2449] = 2399, - [2450] = 2393, - [2451] = 2412, - [2452] = 2400, - [2453] = 869, - [2454] = 2454, - [2455] = 865, - [2456] = 2412, - [2457] = 2428, - [2458] = 2403, - [2459] = 2459, - [2460] = 2398, + [2446] = 989, + [2447] = 1003, + [2448] = 2445, + [2449] = 2444, + [2450] = 2450, + [2451] = 2428, + [2452] = 2445, + [2453] = 2453, + [2454] = 2426, + [2455] = 2455, + [2456] = 2456, + [2457] = 2429, + [2458] = 1005, + [2459] = 2444, + [2460] = 1006, [2461] = 2461, - [2462] = 2400, - [2463] = 864, + [2462] = 2462, + [2463] = 997, [2464] = 2464, - [2465] = 861, - [2466] = 2419, - [2467] = 967, - [2468] = 2404, - [2469] = 2401, - [2470] = 2419, - [2471] = 2471, + [2465] = 2465, + [2466] = 2466, + [2467] = 2456, + [2468] = 2428, + [2469] = 2455, + [2470] = 2436, + [2471] = 2430, [2472] = 2472, - [2473] = 2417, - [2474] = 2428, - [2475] = 1848, - [2476] = 2476, - [2477] = 2477, - [2478] = 2478, - [2479] = 2479, - [2480] = 2417, - [2481] = 2393, + [2473] = 996, + [2474] = 995, + [2475] = 2475, + [2476] = 991, + [2477] = 2438, + [2478] = 2428, + [2479] = 990, + [2480] = 2480, + [2481] = 2445, [2482] = 2482, - [2483] = 859, - [2484] = 2419, - [2485] = 2412, - [2486] = 2404, - [2487] = 2398, - [2488] = 2427, + [2483] = 2444, + [2484] = 2466, + [2485] = 2485, + [2486] = 2438, + [2487] = 2487, + [2488] = 2466, [2489] = 2489, - [2490] = 853, - [2491] = 2395, - [2492] = 2393, - [2493] = 867, - [2494] = 2406, - [2495] = 2495, - [2496] = 2393, - [2497] = 851, - [2498] = 2406, - [2499] = 2409, - [2500] = 2441, - [2501] = 2405, - [2502] = 2403, - [2503] = 863, - [2504] = 2405, - [2505] = 875, - [2506] = 850, - [2507] = 849, - [2508] = 846, - [2509] = 933, - [2510] = 2395, - [2511] = 856, - [2512] = 2428, - [2513] = 934, - [2514] = 935, - [2515] = 2427, - [2516] = 2417, - [2517] = 2427, - [2518] = 2398, - [2519] = 2519, - [2520] = 2520, - [2521] = 2427, - [2522] = 2406, - [2523] = 2428, - [2524] = 925, - [2525] = 2401, - [2526] = 2400, - [2527] = 954, - [2528] = 955, - [2529] = 956, - [2530] = 2409, - [2531] = 2414, - [2532] = 905, - [2533] = 2408, - [2534] = 2408, - [2535] = 2405, - [2536] = 919, - [2537] = 917, - [2538] = 961, - [2539] = 858, - [2540] = 2414, - [2541] = 2409, - [2542] = 2542, - [2543] = 2543, - [2544] = 2399, - [2545] = 2408, - [2546] = 2546, + [2490] = 2432, + [2491] = 2431, + [2492] = 2492, + [2493] = 2480, + [2494] = 2494, + [2495] = 2427, + [2496] = 2443, + [2497] = 2475, + [2498] = 988, + [2499] = 2492, + [2500] = 2489, + [2501] = 2443, + [2502] = 2502, + [2503] = 2426, + [2504] = 2443, + [2505] = 2427, + [2506] = 2429, + [2507] = 2466, + [2508] = 987, + [2509] = 2431, + [2510] = 2432, + [2511] = 2492, + [2512] = 2512, + [2513] = 2480, + [2514] = 2514, + [2515] = 2438, + [2516] = 2444, + [2517] = 2445, + [2518] = 2455, + [2519] = 2456, + [2520] = 2485, + [2521] = 2432, + [2522] = 2428, + [2523] = 2431, + [2524] = 1016, + [2525] = 1017, + [2526] = 2432, + [2527] = 1020, + [2528] = 2455, + [2529] = 2456, + [2530] = 2431, + [2531] = 1022, + [2532] = 2475, + [2533] = 2533, + [2534] = 1021, + [2535] = 2535, + [2536] = 2536, + [2537] = 2537, + [2538] = 2489, + [2539] = 1019, + [2540] = 2540, + [2541] = 2436, + [2542] = 2485, + [2543] = 2430, + [2544] = 2544, + [2545] = 2427, + [2546] = 986, [2547] = 2547, - [2548] = 2548, - [2549] = 2549, - [2550] = 2550, - [2551] = 2550, - [2552] = 2552, - [2553] = 2553, - [2554] = 2554, - [2555] = 2555, - [2556] = 2553, + [2548] = 956, + [2549] = 2489, + [2550] = 2492, + [2551] = 2551, + [2552] = 2453, + [2553] = 955, + [2554] = 2429, + [2555] = 2430, + [2556] = 2436, [2557] = 2557, - [2558] = 2558, + [2558] = 2430, [2559] = 2559, [2560] = 2560, - [2561] = 2558, - [2562] = 2553, - [2563] = 2546, - [2564] = 2547, - [2565] = 2555, - [2566] = 2560, + [2561] = 954, + [2562] = 2436, + [2563] = 2427, + [2564] = 2466, + [2565] = 2485, + [2566] = 2475, [2567] = 2567, - [2568] = 2568, - [2569] = 2557, - [2570] = 2549, + [2568] = 953, + [2569] = 952, + [2570] = 927, [2571] = 2571, - [2572] = 2572, - [2573] = 2573, - [2574] = 2555, - [2575] = 2550, - [2576] = 2576, - [2577] = 2548, - [2578] = 2558, - [2579] = 2554, - [2580] = 2580, - [2581] = 2548, + [2572] = 2480, + [2573] = 1001, + [2574] = 2492, + [2575] = 2485, + [2576] = 2475, + [2577] = 2429, + [2578] = 2480, + [2579] = 2443, + [2580] = 1849, + [2581] = 2581, [2582] = 2582, - [2583] = 2552, - [2584] = 2584, - [2585] = 2559, + [2583] = 2455, + [2584] = 2456, + [2585] = 2585, [2586] = 2586, [2587] = 2587, - [2588] = 2550, - [2589] = 2589, + [2588] = 2588, + [2589] = 2489, [2590] = 2590, [2591] = 2591, [2592] = 2592, [2593] = 2593, - [2594] = 2594, - [2595] = 2593, - [2596] = 2548, + [2594] = 2590, + [2595] = 2595, + [2596] = 2596, [2597] = 2597, - [2598] = 2573, - [2599] = 2587, - [2600] = 2557, + [2598] = 2598, + [2599] = 2599, + [2600] = 2600, [2601] = 2601, - [2602] = 2590, - [2603] = 2568, - [2604] = 2571, - [2605] = 2552, + [2602] = 2602, + [2603] = 2603, + [2604] = 2604, + [2605] = 2605, [2606] = 2606, - [2607] = 2549, + [2607] = 2607, [2608] = 2608, - [2609] = 2601, + [2609] = 2609, [2610] = 2610, - [2611] = 2611, - [2612] = 2589, - [2613] = 2568, - [2614] = 2547, - [2615] = 2568, - [2616] = 2616, + [2611] = 2597, + [2612] = 2612, + [2613] = 2613, + [2614] = 2614, + [2615] = 2615, + [2616] = 2612, [2617] = 2617, - [2618] = 2546, - [2619] = 2593, - [2620] = 2592, - [2621] = 2567, - [2622] = 2589, - [2623] = 2592, - [2624] = 2547, - [2625] = 2611, + [2618] = 2598, + [2619] = 2612, + [2620] = 2620, + [2621] = 2621, + [2622] = 2609, + [2623] = 2623, + [2624] = 2602, + [2625] = 2625, [2626] = 2626, - [2627] = 2552, - [2628] = 2611, - [2629] = 2589, - [2630] = 2601, - [2631] = 2631, - [2632] = 2560, - [2633] = 2559, - [2634] = 2567, - [2635] = 2572, + [2627] = 2627, + [2628] = 2608, + [2629] = 2629, + [2630] = 2605, + [2631] = 2607, + [2632] = 2632, + [2633] = 2606, + [2634] = 2634, + [2635] = 2591, [2636] = 2636, - [2637] = 2606, - [2638] = 2546, - [2639] = 2616, - [2640] = 2611, - [2641] = 2572, - [2642] = 2642, - [2643] = 2553, - [2644] = 2555, - [2645] = 2616, - [2646] = 2606, - [2647] = 2606, - [2648] = 2610, - [2649] = 2590, - [2650] = 2571, - [2651] = 2587, - [2652] = 2652, - [2653] = 2558, - [2654] = 2555, - [2655] = 2572, - [2656] = 2567, - [2657] = 2572, - [2658] = 2552, - [2659] = 2559, - [2660] = 2559, - [2661] = 2573, - [2662] = 2586, - [2663] = 2553, + [2637] = 2637, + [2638] = 2614, + [2639] = 2613, + [2640] = 2636, + [2641] = 2610, + [2642] = 2632, + [2643] = 2607, + [2644] = 2613, + [2645] = 2605, + [2646] = 2629, + [2647] = 2614, + [2648] = 2648, + [2649] = 2603, + [2650] = 2617, + [2651] = 2620, + [2652] = 2610, + [2653] = 2597, + [2654] = 2654, + [2655] = 2626, + [2656] = 2656, + [2657] = 2627, + [2658] = 2606, + [2659] = 2600, + [2660] = 2654, + [2661] = 2590, + [2662] = 2648, + [2663] = 2663, [2664] = 2601, - [2665] = 2582, - [2666] = 2554, - [2667] = 2558, - [2668] = 2573, - [2669] = 2669, - [2670] = 2560, - [2671] = 2582, - [2672] = 2573, - [2673] = 2586, - [2674] = 2567, - [2675] = 2549, - [2676] = 2592, - [2677] = 2548, - [2678] = 2582, - [2679] = 2679, - [2680] = 2560, - [2681] = 2550, - [2682] = 2586, - [2683] = 2571, - [2684] = 2587, - [2685] = 2610, - [2686] = 2593, - [2687] = 2589, - [2688] = 2611, - [2689] = 2554, - [2690] = 2586, - [2691] = 2616, - [2692] = 2692, - [2693] = 2557, - [2694] = 2582, - [2695] = 2610, - [2696] = 2610, - [2697] = 2592, + [2665] = 2609, + [2666] = 2666, + [2667] = 2595, + [2668] = 2632, + [2669] = 2617, + [2670] = 2608, + [2671] = 2636, + [2672] = 2636, + [2673] = 2632, + [2674] = 2599, + [2675] = 2591, + [2676] = 2676, + [2677] = 2620, + [2678] = 2609, + [2679] = 2591, + [2680] = 2680, + [2681] = 2681, + [2682] = 2626, + [2683] = 2680, + [2684] = 2600, + [2685] = 2627, + [2686] = 2608, + [2687] = 2595, + [2688] = 2688, + [2689] = 2666, + [2690] = 2623, + [2691] = 2621, + [2692] = 2654, + [2693] = 2654, + [2694] = 2656, + [2695] = 2695, + [2696] = 2680, + [2697] = 2648, [2698] = 2698, - [2699] = 2546, - [2700] = 2587, + [2699] = 2627, + [2700] = 2656, [2701] = 2590, - [2702] = 2606, - [2703] = 2593, - [2704] = 2616, - [2705] = 2554, - [2706] = 2706, - [2707] = 2547, + [2702] = 2623, + [2703] = 2621, + [2704] = 2704, + [2705] = 2626, + [2706] = 2629, + [2707] = 2606, [2708] = 2708, - [2709] = 2590, - [2710] = 2710, - [2711] = 2601, - [2712] = 2557, - [2713] = 2571, - [2714] = 2568, - [2715] = 2549, - [2716] = 2716, - [2717] = 2717, - [2718] = 2718, - [2719] = 2719, - [2720] = 2720, - [2721] = 2720, - [2722] = 2722, - [2723] = 2723, - [2724] = 2724, - [2725] = 2725, - [2726] = 2726, - [2727] = 2727, - [2728] = 2728, - [2729] = 2729, - [2730] = 2730, - [2731] = 2722, - [2732] = 2720, - [2733] = 2733, - [2734] = 2719, - [2735] = 2735, - [2736] = 2736, - [2737] = 2723, - [2738] = 2738, + [2709] = 2620, + [2710] = 2617, + [2711] = 2592, + [2712] = 2599, + [2713] = 2625, + [2714] = 2648, + [2715] = 2601, + [2716] = 2597, + [2717] = 2590, + [2718] = 2680, + [2719] = 2621, + [2720] = 2623, + [2721] = 2614, + [2722] = 2603, + [2723] = 2613, + [2724] = 2610, + [2725] = 2599, + [2726] = 2625, + [2727] = 2666, + [2728] = 2601, + [2729] = 2607, + [2730] = 2602, + [2731] = 2605, + [2732] = 2592, + [2733] = 2592, + [2734] = 2603, + [2735] = 2629, + [2736] = 2656, + [2737] = 2625, + [2738] = 2666, [2739] = 2739, - [2740] = 2740, - [2741] = 2741, - [2742] = 2722, - [2743] = 2743, - [2744] = 2744, - [2745] = 2745, - [2746] = 2746, - [2747] = 2747, - [2748] = 2748, - [2749] = 2749, - [2750] = 2750, - [2751] = 2740, - [2752] = 2752, + [2740] = 2654, + [2741] = 2602, + [2742] = 2598, + [2743] = 2609, + [2744] = 2656, + [2745] = 2597, + [2746] = 2666, + [2747] = 2592, + [2748] = 2612, + [2749] = 2598, + [2750] = 2601, + [2751] = 2595, + [2752] = 2602, [2753] = 2753, - [2754] = 2754, - [2755] = 2733, - [2756] = 2756, + [2754] = 2603, + [2755] = 2629, + [2756] = 2600, [2757] = 2757, - [2758] = 2758, - [2759] = 2759, - [2760] = 2760, - [2761] = 2759, - [2762] = 2759, - [2763] = 2740, - [2764] = 2733, - [2765] = 2759, - [2766] = 2766, - [2767] = 2767, - [2768] = 2768, - [2769] = 2733, - [2770] = 2754, + [2758] = 2605, + [2759] = 2607, + [2760] = 2600, + [2761] = 2680, + [2762] = 2595, + [2763] = 2610, + [2764] = 2632, + [2765] = 2613, + [2766] = 2636, + [2767] = 2591, + [2768] = 2614, + [2769] = 2606, + [2770] = 2608, [2771] = 2771, - [2772] = 2772, - [2773] = 2754, - [2774] = 2774, - [2775] = 2775, - [2776] = 2776, - [2777] = 2729, - [2778] = 2778, - [2779] = 2754, - [2780] = 2780, - [2781] = 2739, - [2782] = 2782, + [2772] = 2625, + [2773] = 2599, + [2774] = 2617, + [2775] = 2612, + [2776] = 2620, + [2777] = 2777, + [2778] = 2648, + [2779] = 2626, + [2780] = 2627, + [2781] = 2621, + [2782] = 2598, [2783] = 2783, - [2784] = 2775, - [2785] = 2743, - [2786] = 2723, + [2784] = 2623, + [2785] = 2785, + [2786] = 2786, [2787] = 2787, [2788] = 2788, - [2789] = 2743, - [2790] = 2738, + [2789] = 2789, + [2790] = 2790, [2791] = 2791, [2792] = 2792, - [2793] = 2729, - [2794] = 2778, - [2795] = 2726, - [2796] = 2735, + [2793] = 2793, + [2794] = 2794, + [2795] = 2795, + [2796] = 2787, [2797] = 2797, - [2798] = 2771, - [2799] = 2738, + [2798] = 2795, + [2799] = 2797, [2800] = 2800, [2801] = 2801, - [2802] = 2720, - [2803] = 2792, + [2802] = 2797, + [2803] = 2803, [2804] = 2804, - [2805] = 2760, - [2806] = 2800, + [2805] = 2805, + [2806] = 2806, [2807] = 2807, - [2808] = 2792, - [2809] = 2729, - [2810] = 2800, - [2811] = 2722, - [2812] = 2760, - [2813] = 2719, - [2814] = 2800, - [2815] = 2749, - [2816] = 2767, - [2817] = 2738, - [2818] = 2739, - [2819] = 2819, - [2820] = 2820, - [2821] = 2792, - [2822] = 2719, + [2808] = 2808, + [2809] = 2809, + [2810] = 2810, + [2811] = 2811, + [2812] = 2812, + [2813] = 2806, + [2814] = 2809, + [2815] = 2815, + [2816] = 2806, + [2817] = 2817, + [2818] = 2818, + [2819] = 2815, + [2820] = 2806, + [2821] = 2810, + [2822] = 2788, [2823] = 2823, - [2824] = 2778, - [2825] = 2825, - [2826] = 2723, + [2824] = 2808, + [2825] = 2806, + [2826] = 2826, [2827] = 2827, - [2828] = 2828, - [2829] = 2775, - [2830] = 2771, - [2831] = 2831, - [2832] = 2778, + [2828] = 2809, + [2829] = 2829, + [2830] = 2812, + [2831] = 2788, + [2832] = 2832, [2833] = 2833, [2834] = 2834, - [2835] = 2735, - [2836] = 2767, - [2837] = 2726, - [2838] = 2838, - [2839] = 2807, - [2840] = 2735, + [2835] = 2835, + [2836] = 2787, + [2837] = 2837, + [2838] = 2794, + [2839] = 2839, + [2840] = 2840, [2841] = 2841, - [2842] = 2842, - [2843] = 2745, + [2842] = 2810, + [2843] = 2833, [2844] = 2844, - [2845] = 2845, - [2846] = 2758, - [2847] = 2847, + [2845] = 2790, + [2846] = 2846, + [2847] = 2808, [2848] = 2848, - [2849] = 2760, - [2850] = 2750, - [2851] = 2851, - [2852] = 2750, - [2853] = 2853, - [2854] = 2730, - [2855] = 2745, + [2849] = 2849, + [2850] = 2850, + [2851] = 2800, + [2852] = 2841, + [2853] = 2803, + [2854] = 2854, + [2855] = 2812, [2856] = 2856, [2857] = 2857, - [2858] = 2738, - [2859] = 2776, - [2860] = 2775, - [2861] = 2745, - [2862] = 2771, - [2863] = 2863, - [2864] = 2743, - [2865] = 2719, - [2866] = 2740, - [2867] = 2758, - [2868] = 2807, - [2869] = 2869, - [2870] = 2807, - [2871] = 2754, - [2872] = 2720, - [2873] = 2733, - [2874] = 2874, - [2875] = 2750, - [2876] = 2876, - [2877] = 2722, - [2878] = 2760, + [2858] = 2803, + [2859] = 2859, + [2860] = 2860, + [2861] = 2800, + [2862] = 2795, + [2863] = 2835, + [2864] = 2864, + [2865] = 2865, + [2866] = 2866, + [2867] = 2809, + [2868] = 2808, + [2869] = 2807, + [2870] = 2841, + [2871] = 2787, + [2872] = 2872, + [2873] = 2873, + [2874] = 2805, + [2875] = 2875, + [2876] = 2807, + [2877] = 2811, + [2878] = 2878, [2879] = 2879, - [2880] = 2758, - [2881] = 2729, - [2882] = 2750, - [2883] = 2723, - [2884] = 2758, - [2885] = 2735, - [2886] = 2739, - [2887] = 2887, - [2888] = 2792, - [2889] = 2889, - [2890] = 2890, - [2891] = 2767, - [2892] = 2800, - [2893] = 2893, - [2894] = 2807, - [2895] = 2895, + [2880] = 2880, + [2881] = 2881, + [2882] = 2882, + [2883] = 2883, + [2884] = 2884, + [2885] = 2812, + [2886] = 2856, + [2887] = 2800, + [2888] = 2888, + [2889] = 2809, + [2890] = 2803, + [2891] = 2865, + [2892] = 2860, + [2893] = 2856, + [2894] = 2833, + [2895] = 2808, [2896] = 2896, - [2897] = 2897, - [2898] = 2898, - [2899] = 2767, - [2900] = 2745, - [2901] = 2740, - [2902] = 2778, - [2903] = 2903, - [2904] = 2904, - [2905] = 2905, - [2906] = 2906, - [2907] = 2771, - [2908] = 2908, - [2909] = 2909, - [2910] = 2759, - [2911] = 2739, - [2912] = 2726, - [2913] = 2743, - [2914] = 2914, + [2897] = 2841, + [2898] = 2790, + [2899] = 2794, + [2900] = 2900, + [2901] = 2901, + [2902] = 2856, + [2903] = 2800, + [2904] = 2797, + [2905] = 2865, + [2906] = 2815, + [2907] = 2907, + [2908] = 2788, + [2909] = 2795, + [2910] = 2910, + [2911] = 2911, + [2912] = 2805, + [2913] = 2811, + [2914] = 2837, [2915] = 2915, - [2916] = 2726, - [2917] = 2775, - [2918] = 2918, - [2919] = 2919, - [2920] = 2920, + [2916] = 2833, + [2917] = 2807, + [2918] = 2790, + [2919] = 2915, + [2920] = 2833, [2921] = 2921, - [2922] = 2922, - [2923] = 2922, - [2924] = 2924, - [2925] = 20, - [2926] = 2920, + [2922] = 2865, + [2923] = 2797, + [2924] = 2811, + [2925] = 2860, + [2926] = 2926, [2927] = 2927, - [2928] = 2928, + [2928] = 2795, [2929] = 2929, - [2930] = 2930, - [2931] = 2584, + [2930] = 2803, + [2931] = 2931, [2932] = 2932, [2933] = 2933, [2934] = 2934, - [2935] = 2935, - [2936] = 2936, + [2935] = 2841, + [2936] = 2810, [2937] = 2937, [2938] = 2938, - [2939] = 2922, - [2940] = 2919, - [2941] = 2922, - [2942] = 2919, - [2943] = 2919, - [2944] = 2944, - [2945] = 2945, - [2946] = 2922, + [2939] = 2856, + [2940] = 2940, + [2941] = 2941, + [2942] = 2815, + [2943] = 2790, + [2944] = 2865, + [2945] = 2794, + [2946] = 2946, [2947] = 2947, [2948] = 2948, - [2949] = 2936, + [2949] = 2949, [2950] = 2950, - [2951] = 2951, - [2952] = 2938, - [2953] = 2924, - [2954] = 2920, - [2955] = 2919, - [2956] = 2956, - [2957] = 2957, - [2958] = 2947, - [2959] = 8, - [2960] = 16, - [2961] = 2922, - [2962] = 15, + [2951] = 2807, + [2952] = 2952, + [2953] = 2953, + [2954] = 2915, + [2955] = 2955, + [2956] = 2835, + [2957] = 2860, + [2958] = 2958, + [2959] = 2959, + [2960] = 2811, + [2961] = 2860, + [2962] = 2962, [2963] = 2963, - [2964] = 2932, - [2965] = 2933, - [2966] = 2966, - [2967] = 2924, - [2968] = 2934, + [2964] = 2964, + [2965] = 2787, + [2966] = 2812, + [2967] = 2835, + [2968] = 2968, [2969] = 2969, - [2970] = 2970, - [2971] = 2920, + [2970] = 2815, + [2971] = 2794, [2972] = 2972, [2973] = 2973, - [2974] = 2963, - [2975] = 2936, - [2976] = 2963, + [2974] = 2974, + [2975] = 2788, + [2976] = 2835, [2977] = 2977, - [2978] = 2947, + [2978] = 2978, [2979] = 2979, - [2980] = 2938, + [2980] = 2810, [2981] = 2981, - [2982] = 2947, - [2983] = 2919, - [2984] = 2922, - [2985] = 2933, - [2986] = 2936, - [2987] = 2919, - [2988] = 2937, - [2989] = 2924, - [2990] = 2932, - [2991] = 2937, - [2992] = 2920, - [2993] = 2934, - [2994] = 2994, + [2982] = 2982, + [2983] = 37, + [2984] = 2984, + [2985] = 40, + [2986] = 2986, + [2987] = 2987, + [2988] = 2988, + [2989] = 2989, + [2990] = 2990, + [2991] = 2991, + [2992] = 2992, + [2993] = 2988, + [2994] = 2990, [2995] = 2995, [2996] = 2996, [2997] = 2997, - [2998] = 2998, - [2999] = 2999, - [3000] = 2938, - [3001] = 2922, + [2998] = 2991, + [2999] = 2981, + [3000] = 3000, + [3001] = 2981, [3002] = 3002, - [3003] = 2934, - [3004] = 4, - [3005] = 2963, - [3006] = 2710, - [3007] = 2924, + [3003] = 3003, + [3004] = 2996, + [3005] = 3005, + [3006] = 3006, + [3007] = 3007, [3008] = 3008, - [3009] = 2937, - [3010] = 3010, - [3011] = 3011, - [3012] = 2937, - [3013] = 2924, - [3014] = 2920, - [3015] = 2934, + [3009] = 2984, + [3010] = 2988, + [3011] = 3002, + [3012] = 19, + [3013] = 3013, + [3014] = 3014, + [3015] = 3015, [3016] = 3016, - [3017] = 2920, + [3017] = 3017, [3018] = 3018, - [3019] = 2924, - [3020] = 2950, - [3021] = 2920, - [3022] = 2924, - [3023] = 2920, - [3024] = 2922, - [3025] = 2938, - [3026] = 3026, - [3027] = 2919, - [3028] = 2947, + [3019] = 3016, + [3020] = 3015, + [3021] = 3021, + [3022] = 2981, + [3023] = 3014, + [3024] = 3013, + [3025] = 3025, + [3026] = 2984, + [3027] = 3027, + [3028] = 3016, [3029] = 3029, - [3030] = 3030, - [3031] = 2947, - [3032] = 2999, - [3033] = 2963, + [3030] = 3002, + [3031] = 3016, + [3032] = 3032, + [3033] = 3033, [3034] = 3034, [3035] = 3035, - [3036] = 3036, - [3037] = 2642, + [3036] = 2988, + [3037] = 3013, [3038] = 3038, - [3039] = 3039, - [3040] = 3016, - [3041] = 33, - [3042] = 2933, - [3043] = 2933, - [3044] = 2932, + [3039] = 2982, + [3040] = 3040, + [3041] = 17, + [3042] = 3033, + [3043] = 3021, + [3044] = 3015, [3045] = 3045, - [3046] = 2936, - [3047] = 3047, - [3048] = 3048, - [3049] = 3049, - [3050] = 3050, - [3051] = 3051, - [3052] = 2932, - [3053] = 2966, + [3046] = 3046, + [3047] = 3025, + [3048] = 2996, + [3049] = 2995, + [3050] = 2995, + [3051] = 2663, + [3052] = 2753, + [3053] = 3013, [3054] = 3054, [3055] = 3055, - [3056] = 2597, - [3057] = 2947, - [3058] = 920, - [3059] = 3059, - [3060] = 3060, - [3061] = 3061, - [3062] = 3062, + [3056] = 3033, + [3057] = 3021, + [3058] = 3014, + [3059] = 3014, + [3060] = 3007, + [3061] = 2982, + [3062] = 3034, [3063] = 3063, - [3064] = 3064, - [3065] = 3061, - [3066] = 3062, - [3067] = 3067, - [3068] = 3068, - [3069] = 3061, - [3070] = 3062, - [3071] = 3061, - [3072] = 3072, + [3064] = 3014, + [3065] = 2990, + [3066] = 3066, + [3067] = 2704, + [3068] = 3013, + [3069] = 2708, + [3070] = 7, + [3071] = 3071, + [3072] = 2989, [3073] = 3073, [3074] = 3074, - [3075] = 3075, + [3075] = 3008, [3076] = 3076, - [3077] = 3062, + [3077] = 2997, [3078] = 3078, - [3079] = 3062, - [3080] = 3061, - [3081] = 3081, - [3082] = 11, - [3083] = 3083, - [3084] = 3074, - [3085] = 3085, - [3086] = 3086, - [3087] = 3087, - [3088] = 3074, - [3089] = 3089, - [3090] = 3074, - [3091] = 3091, - [3092] = 3092, - [3093] = 3089, - [3094] = 3094, - [3095] = 3095, - [3096] = 3059, - [3097] = 3074, - [3098] = 3072, - [3099] = 3087, - [3100] = 3063, + [3079] = 3079, + [3080] = 3080, + [3081] = 3018, + [3082] = 3082, + [3083] = 3034, + [3084] = 2981, + [3085] = 2997, + [3086] = 3021, + [3087] = 2991, + [3088] = 2990, + [3089] = 2991, + [3090] = 3090, + [3091] = 2990, + [3092] = 3021, + [3093] = 3007, + [3094] = 3033, + [3095] = 2989, + [3096] = 3033, + [3097] = 3018, + [3098] = 2988, + [3099] = 3099, + [3100] = 3016, [3101] = 3101, - [3102] = 3067, - [3103] = 3087, - [3104] = 3068, - [3105] = 3063, - [3106] = 3087, - [3107] = 3063, - [3108] = 3075, - [3109] = 3087, - [3110] = 3063, - [3111] = 3111, - [3112] = 3112, + [3102] = 3102, + [3103] = 3000, + [3104] = 3104, + [3105] = 3033, + [3106] = 3106, + [3107] = 2990, + [3108] = 2991, + [3109] = 3102, + [3110] = 3102, + [3111] = 3080, + [3112] = 3080, [3113] = 3113, - [3114] = 3114, - [3115] = 3115, - [3116] = 3116, + [3114] = 3007, + [3115] = 2990, + [3116] = 3033, [3117] = 3117, [3118] = 3118, - [3119] = 3119, - [3120] = 3120, + [3119] = 3021, + [3120] = 2990, [3121] = 3121, - [3122] = 3122, + [3122] = 2991, [3123] = 3123, - [3124] = 3124, - [3125] = 3125, - [3126] = 3126, - [3127] = 3127, - [3128] = 3128, - [3129] = 3129, - [3130] = 3130, - [3131] = 3131, - [3132] = 3132, + [3124] = 2989, + [3125] = 3034, + [3126] = 3080, + [3127] = 3021, + [3128] = 3015, + [3129] = 2995, + [3130] = 3102, + [3131] = 2989, + [3132] = 2997, [3133] = 3133, - [3134] = 3134, + [3134] = 2989, [3135] = 3135, - [3136] = 3136, - [3137] = 3137, - [3138] = 3138, - [3139] = 3139, + [3136] = 3021, + [3137] = 3021, + [3138] = 3033, + [3139] = 3018, [3140] = 3140, [3141] = 3141, [3142] = 3142, - [3143] = 3143, - [3144] = 3089, - [3145] = 3145, - [3146] = 3146, - [3147] = 3147, - [3148] = 3148, + [3143] = 3007, + [3144] = 3040, + [3145] = 9, + [3146] = 2982, + [3147] = 3118, + [3148] = 3040, [3149] = 3149, - [3150] = 3150, - [3151] = 3151, - [3152] = 3152, - [3153] = 3153, - [3154] = 3154, - [3155] = 3155, - [3156] = 3156, - [3157] = 3157, - [3158] = 3092, + [3150] = 3008, + [3151] = 2991, + [3152] = 3015, + [3153] = 3008, + [3154] = 3080, + [3155] = 3102, + [3156] = 2990, + [3157] = 2991, + [3158] = 2984, [3159] = 3159, - [3160] = 3159, - [3161] = 3147, - [3162] = 3141, - [3163] = 3163, - [3164] = 3140, - [3165] = 3133, + [3160] = 3018, + [3161] = 3161, + [3162] = 3162, + [3163] = 3008, + [3164] = 2995, + [3165] = 3034, [3166] = 3166, - [3167] = 3123, - [3168] = 3059, - [3169] = 3155, - [3170] = 3087, - [3171] = 3154, - [3172] = 3068, - [3173] = 3153, - [3174] = 3067, - [3175] = 3175, - [3176] = 3073, - [3177] = 3177, - [3178] = 3063, - [3179] = 3152, + [3167] = 2984, + [3168] = 2982, + [3169] = 3162, + [3170] = 3090, + [3171] = 3076, + [3172] = 2997, + [3173] = 2989, + [3174] = 3066, + [3175] = 2992, + [3176] = 1000, + [3177] = 912, + [3178] = 3178, + [3179] = 3179, [3180] = 3180, - [3181] = 3111, - [3182] = 3112, - [3183] = 3113, - [3184] = 3123, - [3185] = 3114, - [3186] = 3115, - [3187] = 3116, - [3188] = 3117, - [3189] = 3118, - [3190] = 3119, - [3191] = 3120, - [3192] = 3121, - [3193] = 3122, + [3181] = 3181, + [3182] = 3182, + [3183] = 3179, + [3184] = 3180, + [3185] = 3185, + [3186] = 3186, + [3187] = 3179, + [3188] = 3180, + [3189] = 3179, + [3190] = 3190, + [3191] = 3191, + [3192] = 3192, + [3193] = 3180, [3194] = 3194, - [3195] = 3124, - [3196] = 3125, - [3197] = 3127, - [3198] = 3128, - [3199] = 3091, - [3200] = 3129, - [3201] = 3130, - [3202] = 3131, - [3203] = 3132, - [3204] = 3151, - [3205] = 3150, - [3206] = 3148, - [3207] = 3134, - [3208] = 3135, - [3209] = 3137, - [3210] = 3138, - [3211] = 3139, - [3212] = 3142, - [3213] = 3123, - [3214] = 3143, - [3215] = 3145, - [3216] = 3146, - [3217] = 3101, - [3218] = 3148, - [3219] = 3219, - [3220] = 3220, - [3221] = 3150, - [3222] = 3101, - [3223] = 3095, - [3224] = 3151, - [3225] = 3152, - [3226] = 3146, - [3227] = 3145, + [3195] = 3180, + [3196] = 3179, + [3197] = 3197, + [3198] = 11, + [3199] = 3199, + [3200] = 3191, + [3201] = 3201, + [3202] = 3202, + [3203] = 3203, + [3204] = 3186, + [3205] = 3185, + [3206] = 3191, + [3207] = 3207, + [3208] = 3191, + [3209] = 3190, + [3210] = 3210, + [3211] = 3211, + [3212] = 3212, + [3213] = 3207, + [3214] = 3191, + [3215] = 3190, + [3216] = 3203, + [3217] = 3181, + [3218] = 3203, + [3219] = 3181, + [3220] = 3203, + [3221] = 3221, + [3222] = 3192, + [3223] = 3181, + [3224] = 3203, + [3225] = 3181, + [3226] = 3226, + [3227] = 3227, [3228] = 3228, - [3229] = 3153, - [3230] = 3095, + [3229] = 3229, + [3230] = 3230, [3231] = 3231, - [3232] = 3154, - [3233] = 3155, - [3234] = 3076, + [3232] = 3232, + [3233] = 3233, + [3234] = 3234, [3235] = 3235, - [3236] = 3159, + [3236] = 3236, [3237] = 3237, - [3238] = 3147, - [3239] = 3141, + [3238] = 3238, + [3239] = 3239, [3240] = 3240, - [3241] = 3140, - [3242] = 3133, + [3241] = 3241, + [3242] = 3242, [3243] = 3243, - [3244] = 3143, - [3245] = 3142, - [3246] = 3139, - [3247] = 3059, - [3248] = 3087, + [3244] = 3244, + [3245] = 3245, + [3246] = 3246, + [3247] = 3247, + [3248] = 3248, [3249] = 3249, - [3250] = 3073, - [3251] = 3095, - [3252] = 3076, - [3253] = 3063, - [3254] = 3101, - [3255] = 3138, - [3256] = 3137, - [3257] = 3111, - [3258] = 3112, - [3259] = 3113, - [3260] = 3114, - [3261] = 3076, - [3262] = 3115, - [3263] = 3116, - [3264] = 3117, - [3265] = 3118, - [3266] = 3266, - [3267] = 3119, - [3268] = 3120, - [3269] = 3121, - [3270] = 3122, - [3271] = 3271, + [3250] = 3250, + [3251] = 3251, + [3252] = 3252, + [3253] = 3253, + [3254] = 3254, + [3255] = 3255, + [3256] = 3207, + [3257] = 3257, + [3258] = 3258, + [3259] = 3259, + [3260] = 3260, + [3261] = 3261, + [3262] = 3262, + [3263] = 3263, + [3264] = 3264, + [3265] = 3265, + [3266] = 3259, + [3267] = 3264, + [3268] = 3268, + [3269] = 3269, + [3270] = 3270, + [3271] = 3212, [3272] = 3272, - [3273] = 3124, - [3274] = 3125, - [3275] = 3127, - [3276] = 3068, - [3277] = 3128, + [3273] = 3273, + [3274] = 3274, + [3275] = 3275, + [3276] = 3276, + [3277] = 3272, [3278] = 3278, - [3279] = 3129, - [3280] = 3130, - [3281] = 3131, - [3282] = 3132, - [3283] = 3283, - [3284] = 3134, - [3285] = 3135, - [3286] = 3135, - [3287] = 3134, - [3288] = 3137, - [3289] = 3138, - [3290] = 3139, + [3279] = 3255, + [3280] = 3221, + [3281] = 3252, + [3282] = 3245, + [3283] = 3275, + [3284] = 3274, + [3285] = 3273, + [3286] = 3286, + [3287] = 3287, + [3288] = 3221, + [3289] = 3289, + [3290] = 3203, [3291] = 3291, - [3292] = 3292, - [3293] = 3142, - [3294] = 3143, - [3295] = 3145, - [3296] = 3146, - [3297] = 3148, - [3298] = 3298, - [3299] = 3299, - [3300] = 3300, - [3301] = 3150, - [3302] = 3151, - [3303] = 3303, - [3304] = 3152, - [3305] = 3132, - [3306] = 3131, - [3307] = 3153, - [3308] = 3154, - [3309] = 3155, - [3310] = 3310, - [3311] = 3311, - [3312] = 3159, - [3313] = 3313, - [3314] = 3314, - [3315] = 3147, - [3316] = 3141, - [3317] = 3130, - [3318] = 3140, - [3319] = 3129, - [3320] = 3133, - [3321] = 3321, - [3322] = 3322, - [3323] = 3323, - [3324] = 3324, - [3325] = 3325, - [3326] = 3087, - [3327] = 3327, + [3292] = 3210, + [3293] = 3268, + [3294] = 3181, + [3295] = 3265, + [3296] = 3263, + [3297] = 3226, + [3298] = 3250, + [3299] = 3227, + [3300] = 3228, + [3301] = 3229, + [3302] = 3230, + [3303] = 3231, + [3304] = 3232, + [3305] = 3233, + [3306] = 3234, + [3307] = 3235, + [3308] = 3236, + [3309] = 3237, + [3310] = 3238, + [3311] = 3239, + [3312] = 3241, + [3313] = 3242, + [3314] = 3243, + [3315] = 3244, + [3316] = 3259, + [3317] = 3246, + [3318] = 3247, + [3319] = 3319, + [3320] = 3320, + [3321] = 3249, + [3322] = 3251, + [3323] = 3264, + [3324] = 3262, + [3325] = 3253, + [3326] = 3254, + [3327] = 3261, [3328] = 3328, - [3329] = 3329, - [3330] = 3330, - [3331] = 3073, - [3332] = 3067, - [3333] = 3128, - [3334] = 3068, - [3335] = 3127, - [3336] = 3063, - [3337] = 3337, - [3338] = 3111, - [3339] = 3112, - [3340] = 3113, - [3341] = 3067, - [3342] = 3114, - [3343] = 3115, - [3344] = 3116, - [3345] = 3117, - [3346] = 3118, - [3347] = 3119, - [3348] = 3120, - [3349] = 7, - [3350] = 9, - [3351] = 3124, - [3352] = 3121, - [3353] = 1012, - [3354] = 3122, - [3355] = 877, - [3356] = 878, - [3357] = 3124, - [3358] = 3125, - [3359] = 879, - [3360] = 3127, - [3361] = 3128, - [3362] = 880, - [3363] = 883, - [3364] = 884, - [3365] = 885, - [3366] = 886, - [3367] = 887, - [3368] = 889, - [3369] = 890, - [3370] = 3370, - [3371] = 3371, - [3372] = 3129, - [3373] = 893, - [3374] = 894, - [3375] = 895, - [3376] = 897, - [3377] = 3130, - [3378] = 3378, - [3379] = 3379, - [3380] = 899, - [3381] = 907, - [3382] = 908, - [3383] = 909, - [3384] = 3384, - [3385] = 3131, - [3386] = 910, - [3387] = 3132, - [3388] = 911, - [3389] = 3134, - [3390] = 916, - [3391] = 3135, - [3392] = 3278, - [3393] = 3393, - [3394] = 3394, - [3395] = 918, - [3396] = 922, - [3397] = 923, - [3398] = 924, - [3399] = 929, - [3400] = 936, - [3401] = 939, - [3402] = 941, - [3403] = 3137, - [3404] = 943, - [3405] = 944, - [3406] = 945, - [3407] = 1001, - [3408] = 947, - [3409] = 843, - [3410] = 3138, - [3411] = 3139, - [3412] = 952, - [3413] = 953, - [3414] = 3123, - [3415] = 3125, - [3416] = 963, - [3417] = 964, - [3418] = 973, - [3419] = 974, - [3420] = 975, - [3421] = 3142, - [3422] = 977, - [3423] = 978, - [3424] = 3122, - [3425] = 979, - [3426] = 3143, - [3427] = 3121, - [3428] = 980, - [3429] = 981, - [3430] = 983, - [3431] = 984, - [3432] = 3237, + [3329] = 3257, + [3330] = 3258, + [3331] = 3186, + [3332] = 3332, + [3333] = 3185, + [3334] = 3261, + [3335] = 3262, + [3336] = 3336, + [3337] = 3263, + [3338] = 3338, + [3339] = 3265, + [3340] = 3258, + [3341] = 3268, + [3342] = 3257, + [3343] = 3273, + [3344] = 3274, + [3345] = 3275, + [3346] = 3272, + [3347] = 3347, + [3348] = 3348, + [3349] = 3250, + [3350] = 3255, + [3351] = 3254, + [3352] = 3253, + [3353] = 3252, + [3354] = 3354, + [3355] = 3245, + [3356] = 3356, + [3357] = 3357, + [3358] = 3358, + [3359] = 3359, + [3360] = 3251, + [3361] = 3249, + [3362] = 3203, + [3363] = 3363, + [3364] = 3364, + [3365] = 3181, + [3366] = 3366, + [3367] = 3367, + [3368] = 3368, + [3369] = 3369, + [3370] = 3226, + [3371] = 3185, + [3372] = 3227, + [3373] = 3186, + [3374] = 3228, + [3375] = 3229, + [3376] = 3230, + [3377] = 3231, + [3378] = 3232, + [3379] = 3233, + [3380] = 3234, + [3381] = 3235, + [3382] = 3247, + [3383] = 3236, + [3384] = 3237, + [3385] = 3246, + [3386] = 3386, + [3387] = 3387, + [3388] = 3238, + [3389] = 3239, + [3390] = 3241, + [3391] = 3242, + [3392] = 3392, + [3393] = 3243, + [3394] = 3244, + [3395] = 3395, + [3396] = 3246, + [3397] = 3247, + [3398] = 3244, + [3399] = 3243, + [3400] = 3249, + [3401] = 3251, + [3402] = 3253, + [3403] = 3254, + [3404] = 3404, + [3405] = 3405, + [3406] = 3250, + [3407] = 3407, + [3408] = 3257, + [3409] = 3258, + [3410] = 3410, + [3411] = 3411, + [3412] = 3261, + [3413] = 3262, + [3414] = 3414, + [3415] = 3263, + [3416] = 3416, + [3417] = 3417, + [3418] = 3265, + [3419] = 3268, + [3420] = 3242, + [3421] = 3241, + [3422] = 3422, + [3423] = 3273, + [3424] = 3239, + [3425] = 3264, + [3426] = 3274, + [3427] = 3275, + [3428] = 3238, + [3429] = 3259, + [3430] = 3272, + [3431] = 3431, + [3432] = 3432, [3433] = 3433, - [3434] = 3120, - [3435] = 985, - [3436] = 3145, - [3437] = 987, - [3438] = 989, - [3439] = 1000, - [3440] = 1002, - [3441] = 1008, - [3442] = 3146, - [3443] = 1009, - [3444] = 1011, - [3445] = 998, - [3446] = 1015, - [3447] = 1016, - [3448] = 3119, + [3434] = 3434, + [3435] = 3435, + [3436] = 3255, + [3437] = 3252, + [3438] = 3245, + [3439] = 3439, + [3440] = 3237, + [3441] = 3236, + [3442] = 3442, + [3443] = 3235, + [3444] = 3234, + [3445] = 3445, + [3446] = 3446, + [3447] = 3447, + [3448] = 3203, [3449] = 3449, - [3450] = 1017, - [3451] = 1018, - [3452] = 3101, - [3453] = 3148, - [3454] = 1014, - [3455] = 1013, - [3456] = 1010, - [3457] = 1007, - [3458] = 1006, - [3459] = 1005, - [3460] = 3095, - [3461] = 3461, - [3462] = 1004, - [3463] = 3463, - [3464] = 882, - [3465] = 866, - [3466] = 3466, - [3467] = 946, - [3468] = 3150, - [3469] = 3469, - [3470] = 881, - [3471] = 993, - [3472] = 991, - [3473] = 3157, - [3474] = 3151, - [3475] = 990, - [3476] = 988, - [3477] = 3477, - [3478] = 986, + [3450] = 3450, + [3451] = 3221, + [3452] = 3452, + [3453] = 3221, + [3454] = 3454, + [3455] = 3455, + [3456] = 3456, + [3457] = 3181, + [3458] = 3233, + [3459] = 3232, + [3460] = 3226, + [3461] = 3227, + [3462] = 3228, + [3463] = 3229, + [3464] = 3231, + [3465] = 3230, + [3466] = 3231, + [3467] = 3232, + [3468] = 3233, + [3469] = 3230, + [3470] = 3234, + [3471] = 3235, + [3472] = 3472, + [3473] = 3236, + [3474] = 3237, + [3475] = 3475, + [3476] = 3476, + [3477] = 3238, + [3478] = 3239, [3479] = 3479, - [3480] = 3152, - [3481] = 982, - [3482] = 976, - [3483] = 3153, - [3484] = 972, - [3485] = 971, - [3486] = 970, - [3487] = 968, - [3488] = 951, - [3489] = 950, - [3490] = 949, - [3491] = 3076, - [3492] = 3154, - [3493] = 942, - [3494] = 3155, - [3495] = 940, - [3496] = 3496, - [3497] = 938, - [3498] = 3159, - [3499] = 937, - [3500] = 928, - [3501] = 927, - [3502] = 3118, - [3503] = 914, - [3504] = 904, - [3505] = 3117, - [3506] = 901, - [3507] = 900, - [3508] = 1003, - [3509] = 3116, - [3510] = 3147, - [3511] = 3141, - [3512] = 3512, + [3480] = 3241, + [3481] = 3242, + [3482] = 3482, + [3483] = 3483, + [3484] = 3243, + [3485] = 3244, + [3486] = 3246, + [3487] = 3247, + [3488] = 3249, + [3489] = 3251, + [3490] = 3358, + [3491] = 3259, + [3492] = 3229, + [3493] = 3253, + [3494] = 3254, + [3495] = 3228, + [3496] = 3227, + [3497] = 3497, + [3498] = 3257, + [3499] = 3264, + [3500] = 3500, + [3501] = 3258, + [3502] = 3332, + [3503] = 3503, + [3504] = 3504, + [3505] = 3261, + [3506] = 3262, + [3507] = 3263, + [3508] = 3265, + [3509] = 3186, + [3510] = 3185, + [3511] = 3226, + [3512] = 3268, [3513] = 3513, [3514] = 3514, - [3515] = 3515, - [3516] = 3140, - [3517] = 3133, - [3518] = 3157, - [3519] = 1218, - [3520] = 3157, - [3521] = 3521, - [3522] = 848, - [3523] = 3523, - [3524] = 3524, - [3525] = 2995, - [3526] = 3115, - [3527] = 3433, - [3528] = 3059, - [3529] = 3114, - [3530] = 3337, - [3531] = 3313, - [3532] = 3087, - [3533] = 3113, - [3534] = 3112, + [3515] = 4, + [3516] = 8, + [3517] = 3517, + [3518] = 3273, + [3519] = 3274, + [3520] = 1057, + [3521] = 1099, + [3522] = 3275, + [3523] = 1097, + [3524] = 1096, + [3525] = 1095, + [3526] = 1094, + [3527] = 848, + [3528] = 1093, + [3529] = 1092, + [3530] = 3250, + [3531] = 3272, + [3532] = 1091, + [3533] = 3533, + [3534] = 1046, [3535] = 3535, - [3536] = 3047, - [3537] = 3537, - [3538] = 3073, - [3539] = 3539, - [3540] = 3540, - [3541] = 3063, - [3542] = 3111, - [3543] = 3543, - [3544] = 1563, - [3545] = 3545, - [3546] = 3180, - [3547] = 3547, - [3548] = 3548, - [3549] = 3068, - [3550] = 3067, - [3551] = 3157, - [3552] = 3552, - [3553] = 3068, - [3554] = 3149, - [3555] = 3067, - [3556] = 3556, - [3557] = 3557, - [3558] = 3558, - [3559] = 3559, - [3560] = 3560, - [3561] = 3561, - [3562] = 3562, - [3563] = 3563, - [3564] = 3564, - [3565] = 3565, - [3566] = 3566, - [3567] = 3567, - [3568] = 3568, - [3569] = 3569, - [3570] = 3570, - [3571] = 3571, - [3572] = 3559, - [3573] = 3573, - [3574] = 3574, - [3575] = 3575, - [3576] = 3576, - [3577] = 3577, - [3578] = 3576, - [3579] = 3579, - [3580] = 3580, - [3581] = 3581, - [3582] = 3559, - [3583] = 3583, - [3584] = 3584, - [3585] = 3585, - [3586] = 3586, - [3587] = 3587, - [3588] = 3563, - [3589] = 2969, - [3590] = 3590, - [3591] = 3558, - [3592] = 3592, - [3593] = 3593, - [3594] = 3594, - [3595] = 3586, - [3596] = 3596, - [3597] = 3568, - [3598] = 3598, - [3599] = 3599, - [3600] = 3600, - [3601] = 3601, - [3602] = 3602, - [3603] = 3603, - [3604] = 3604, - [3605] = 3605, - [3606] = 3606, - [3607] = 3575, - [3608] = 3575, - [3609] = 3575, - [3610] = 3575, - [3611] = 3559, - [3612] = 3612, - [3613] = 3613, - [3614] = 3614, - [3615] = 3615, - [3616] = 3616, - [3617] = 3617, - [3618] = 3618, - [3619] = 3618, - [3620] = 3584, - [3621] = 18, - [3622] = 3615, - [3623] = 3575, - [3624] = 3559, - [3625] = 3592, - [3626] = 3615, - [3627] = 3565, - [3628] = 3628, - [3629] = 3612, - [3630] = 3613, - [3631] = 3631, - [3632] = 3632, - [3633] = 3559, - [3634] = 3634, - [3635] = 3617, - [3636] = 3559, - [3637] = 3559, - [3638] = 3592, - [3639] = 3639, - [3640] = 3640, - [3641] = 3564, - [3642] = 3584, - [3643] = 3643, - [3644] = 3566, - [3645] = 3645, - [3646] = 3616, - [3647] = 3617, - [3648] = 3575, - [3649] = 3565, - [3650] = 3650, - [3651] = 3563, - [3652] = 1660, - [3653] = 3604, - [3654] = 3612, - [3655] = 3613, - [3656] = 3002, - [3657] = 3602, - [3658] = 3590, - [3659] = 3617, - [3660] = 3586, - [3661] = 3557, - [3662] = 3584, - [3663] = 3663, - [3664] = 3054, + [3536] = 881, + [3537] = 3255, + [3538] = 872, + [3539] = 980, + [3540] = 1015, + [3541] = 3541, + [3542] = 1034, + [3543] = 1067, + [3544] = 3252, + [3545] = 1063, + [3546] = 1062, + [3547] = 1060, + [3548] = 1058, + [3549] = 3270, + [3550] = 3245, + [3551] = 876, + [3552] = 3260, + [3553] = 850, + [3554] = 851, + [3555] = 852, + [3556] = 3270, + [3557] = 3289, + [3558] = 853, + [3559] = 854, + [3560] = 856, + [3561] = 857, + [3562] = 1572, + [3563] = 858, + [3564] = 3090, + [3565] = 859, + [3566] = 3328, + [3567] = 860, + [3568] = 861, + [3569] = 3066, + [3570] = 862, + [3571] = 863, + [3572] = 3354, + [3573] = 864, + [3574] = 3203, + [3575] = 865, + [3576] = 3392, + [3577] = 868, + [3578] = 3422, + [3579] = 871, + [3580] = 1210, + [3581] = 873, + [3582] = 919, + [3583] = 874, + [3584] = 3270, + [3585] = 878, + [3586] = 3442, + [3587] = 879, + [3588] = 3270, + [3589] = 880, + [3590] = 971, + [3591] = 855, + [3592] = 882, + [3593] = 867, + [3594] = 3181, + [3595] = 869, + [3596] = 883, + [3597] = 895, + [3598] = 3185, + [3599] = 896, + [3600] = 3186, + [3601] = 897, + [3602] = 870, + [3603] = 884, + [3604] = 899, + [3605] = 900, + [3606] = 885, + [3607] = 901, + [3608] = 970, + [3609] = 894, + [3610] = 907, + [3611] = 902, + [3612] = 903, + [3613] = 889, + [3614] = 904, + [3615] = 923, + [3616] = 925, + [3617] = 938, + [3618] = 941, + [3619] = 940, + [3620] = 939, + [3621] = 936, + [3622] = 935, + [3623] = 911, + [3624] = 910, + [3625] = 934, + [3626] = 932, + [3627] = 3185, + [3628] = 931, + [3629] = 3186, + [3630] = 930, + [3631] = 909, + [3632] = 888, + [3633] = 929, + [3634] = 928, + [3635] = 893, + [3636] = 926, + [3637] = 908, + [3638] = 905, + [3639] = 924, + [3640] = 922, + [3641] = 921, + [3642] = 890, + [3643] = 918, + [3644] = 917, + [3645] = 916, + [3646] = 886, + [3647] = 915, + [3648] = 914, + [3649] = 887, + [3650] = 913, + [3651] = 3651, + [3652] = 3652, + [3653] = 3653, + [3654] = 3654, + [3655] = 3655, + [3656] = 3656, + [3657] = 3657, + [3658] = 3658, + [3659] = 3659, + [3660] = 3660, + [3661] = 3661, + [3662] = 3662, + [3663] = 3654, + [3664] = 3664, [3665] = 3665, - [3666] = 3596, - [3667] = 3593, - [3668] = 3668, - [3669] = 3618, - [3670] = 3614, - [3671] = 3575, - [3672] = 3587, - [3673] = 3565, - [3674] = 3585, - [3675] = 3640, - [3676] = 3645, - [3677] = 3616, - [3678] = 3678, + [3666] = 3666, + [3667] = 3667, + [3668] = 3654, + [3669] = 3669, + [3670] = 3654, + [3671] = 3671, + [3672] = 3672, + [3673] = 3673, + [3674] = 3653, + [3675] = 3654, + [3676] = 3676, + [3677] = 3654, + [3678] = 3654, [3679] = 3679, [3680] = 3680, - [3681] = 3557, - [3682] = 3663, - [3683] = 3680, - [3684] = 3684, - [3685] = 3576, - [3686] = 3583, - [3687] = 3687, - [3688] = 3612, - [3689] = 3581, + [3681] = 3681, + [3682] = 3657, + [3683] = 3669, + [3684] = 3669, + [3685] = 3659, + [3686] = 3669, + [3687] = 3669, + [3688] = 3654, + [3689] = 3689, [3690] = 3690, - [3691] = 3613, + [3691] = 3691, [3692] = 3692, - [3693] = 3693, + [3693] = 3662, [3694] = 3694, - [3695] = 3695, - [3696] = 3617, - [3697] = 3697, - [3698] = 3690, - [3699] = 3559, - [3700] = 3584, + [3695] = 282, + [3696] = 3696, + [3697] = 274, + [3698] = 3698, + [3699] = 3699, + [3700] = 3673, [3701] = 3701, - [3702] = 3693, + [3702] = 3662, [3703] = 3703, [3704] = 3704, - [3705] = 3575, - [3706] = 3580, - [3707] = 3707, - [3708] = 3565, - [3709] = 3577, + [3705] = 3705, + [3706] = 3706, + [3707] = 3671, + [3708] = 3680, + [3709] = 2992, [3710] = 3710, - [3711] = 3694, - [3712] = 3712, - [3713] = 3574, - [3714] = 284, - [3715] = 3614, + [3711] = 3652, + [3712] = 3694, + [3713] = 15, + [3714] = 3714, + [3715] = 3669, [3716] = 3716, - [3717] = 3573, - [3718] = 3614, - [3719] = 283, - [3720] = 3571, - [3721] = 3703, + [3717] = 3717, + [3718] = 3718, + [3719] = 3076, + [3720] = 3658, + [3721] = 3721, [3722] = 3722, [3723] = 3723, [3724] = 3724, - [3725] = 3614, - [3726] = 3726, - [3727] = 3703, - [3728] = 3707, - [3729] = 3604, + [3725] = 3725, + [3726] = 3162, + [3727] = 3727, + [3728] = 3728, + [3729] = 3689, [3730] = 3730, [3731] = 3731, - [3732] = 3732, - [3733] = 3570, - [3734] = 3569, - [3735] = 3614, - [3736] = 3602, + [3732] = 3690, + [3733] = 3733, + [3734] = 3734, + [3735] = 3703, + [3736] = 3736, [3737] = 3737, [3738] = 3738, - [3739] = 3739, - [3740] = 3740, - [3741] = 3613, + [3739] = 3654, + [3740] = 3662, + [3741] = 3717, [3742] = 3742, - [3743] = 3743, - [3744] = 3562, - [3745] = 3745, - [3746] = 3561, + [3743] = 3671, + [3744] = 3744, + [3745] = 1659, + [3746] = 3718, [3747] = 3747, - [3748] = 45, - [3749] = 3749, - [3750] = 3750, - [3751] = 3580, - [3752] = 3752, - [3753] = 3665, + [3748] = 3703, + [3749] = 3669, + [3750] = 3658, + [3751] = 3689, + [3752] = 3690, + [3753] = 3753, [3754] = 3754, - [3755] = 3755, - [3756] = 3756, - [3757] = 3568, - [3758] = 3703, - [3759] = 3704, - [3760] = 3606, + [3755] = 3703, + [3756] = 3723, + [3757] = 3757, + [3758] = 3671, + [3759] = 3724, + [3760] = 3655, [3761] = 3761, - [3762] = 3712, - [3763] = 3763, - [3764] = 3764, - [3765] = 3710, - [3766] = 3707, - [3767] = 3601, - [3768] = 3634, - [3769] = 3769, - [3770] = 3770, - [3771] = 3678, - [3772] = 3687, - [3773] = 3773, - [3774] = 3612, - [3775] = 3775, + [3762] = 3669, + [3763] = 3691, + [3764] = 3664, + [3765] = 3765, + [3766] = 3766, + [3767] = 3767, + [3768] = 3768, + [3769] = 3658, + [3770] = 3691, + [3771] = 3692, + [3772] = 3698, + [3773] = 3699, + [3774] = 3689, + [3775] = 3690, [3776] = 3776, - [3777] = 3716, - [3778] = 3778, + [3777] = 3651, + [3778] = 3725, [3779] = 3779, - [3780] = 3780, + [3780] = 3730, [3781] = 3781, - [3782] = 3782, - [3783] = 3568, - [3784] = 3761, - [3785] = 3738, - [3786] = 3593, - [3787] = 3722, + [3782] = 3692, + [3783] = 3698, + [3784] = 3784, + [3785] = 3703, + [3786] = 3734, + [3787] = 3701, [3788] = 3788, [3789] = 3789, - [3790] = 3723, - [3791] = 3791, - [3792] = 3775, - [3793] = 3568, - [3794] = 3782, - [3795] = 3740, - [3796] = 3781, - [3797] = 3745, - [3798] = 3747, - [3799] = 3587, - [3800] = 3780, - [3801] = 3779, - [3802] = 3560, - [3803] = 3803, - [3804] = 3749, - [3805] = 3761, - [3806] = 3778, - [3807] = 3776, - [3808] = 3808, - [3809] = 3809, - [3810] = 3763, - [3811] = 3811, - [3812] = 3773, + [3790] = 3790, + [3791] = 3704, + [3792] = 3671, + [3793] = 3737, + [3794] = 3656, + [3795] = 3738, + [3796] = 3669, + [3797] = 3797, + [3798] = 3798, + [3799] = 3658, + [3800] = 3705, + [3801] = 3694, + [3802] = 3802, + [3803] = 3706, + [3804] = 3694, + [3805] = 3710, + [3806] = 3747, + [3807] = 3807, + [3808] = 3694, + [3809] = 3652, + [3810] = 3714, + [3811] = 12, + [3812] = 3747, [3813] = 3813, - [3814] = 3814, - [3815] = 3712, - [3816] = 3730, - [3817] = 3770, - [3818] = 3773, - [3819] = 3770, + [3814] = 3721, + [3815] = 3815, + [3816] = 3654, + [3817] = 3694, + [3818] = 3699, + [3819] = 3701, [3820] = 3820, - [3821] = 3731, - [3822] = 3822, - [3823] = 3704, - [3824] = 3763, - [3825] = 3743, - [3826] = 3764, - [3827] = 3775, - [3828] = 3742, - [3829] = 3707, - [3830] = 3761, - [3831] = 3665, - [3832] = 3775, - [3833] = 3568, - [3834] = 3773, - [3835] = 3600, - [3836] = 3731, - [3837] = 3837, - [3838] = 3755, - [3839] = 3712, - [3840] = 3704, - [3841] = 3730, - [3842] = 3842, - [3843] = 3665, - [3844] = 3770, + [3821] = 3821, + [3822] = 3690, + [3823] = 3722, + [3824] = 3824, + [3825] = 3825, + [3826] = 3727, + [3827] = 3827, + [3828] = 3828, + [3829] = 3829, + [3830] = 3830, + [3831] = 3831, + [3832] = 3728, + [3833] = 3731, + [3834] = 3834, + [3835] = 3835, + [3836] = 3836, + [3837] = 3679, + [3838] = 3838, + [3839] = 3839, + [3840] = 3840, + [3841] = 3676, + [3842] = 3736, + [3843] = 3742, + [3844] = 3753, [3845] = 3845, - [3846] = 3585, - [3847] = 3583, + [3846] = 3757, + [3847] = 22, [3848] = 3848, - [3849] = 12, - [3850] = 3850, - [3851] = 3763, - [3852] = 3710, - [3853] = 3703, - [3854] = 3581, - [3855] = 3707, - [3856] = 3749, - [3857] = 3559, - [3858] = 3694, - [3859] = 3693, - [3860] = 3742, - [3861] = 3861, - [3862] = 3663, - [3863] = 3557, - [3864] = 3743, - [3865] = 3645, - [3866] = 3640, - [3867] = 3867, - [3868] = 3614, - [3869] = 3566, + [3849] = 3849, + [3850] = 3660, + [3851] = 3761, + [3852] = 3852, + [3853] = 3747, + [3854] = 3665, + [3855] = 3855, + [3856] = 3856, + [3857] = 3802, + [3858] = 3779, + [3859] = 3704, + [3860] = 3781, + [3861] = 3706, + [3862] = 3862, + [3863] = 3863, + [3864] = 3864, + [3865] = 3754, + [3866] = 3866, + [3867] = 3655, + [3868] = 3656, + [3869] = 3797, [3870] = 3870, - [3871] = 3594, + [3871] = 3689, [3872] = 3872, - [3873] = 3596, - [3874] = 3747, - [3875] = 3580, - [3876] = 3876, - [3877] = 3755, - [3878] = 3559, - [3879] = 3879, - [3880] = 3745, - [3881] = 3566, - [3882] = 3576, - [3883] = 3749, - [3884] = 3586, + [3873] = 3815, + [3874] = 3874, + [3875] = 3856, + [3876] = 3863, + [3877] = 3877, + [3878] = 3855, + [3879] = 3877, + [3880] = 3824, + [3881] = 3881, + [3882] = 3705, + [3883] = 3883, + [3884] = 3766, [3885] = 3885, - [3886] = 3559, - [3887] = 3563, - [3888] = 3596, - [3889] = 3889, - [3890] = 3740, - [3891] = 3614, - [3892] = 3592, - [3893] = 3615, - [3894] = 3618, - [3895] = 3895, - [3896] = 3640, - [3897] = 3645, - [3898] = 3616, - [3899] = 3604, - [3900] = 3900, - [3901] = 3901, - [3902] = 3557, - [3903] = 3663, - [3904] = 3747, - [3905] = 3602, - [3906] = 3593, - [3907] = 3907, - [3908] = 3745, - [3909] = 3587, - [3910] = 3738, - [3911] = 3693, - [3912] = 3694, - [3913] = 3740, - [3914] = 3576, - [3915] = 3585, - [3916] = 3678, - [3917] = 3917, - [3918] = 3918, - [3919] = 3755, - [3920] = 3703, - [3921] = 3583, - [3922] = 3581, - [3923] = 3764, - [3924] = 3924, - [3925] = 3738, - [3926] = 3586, - [3927] = 3710, + [3886] = 3813, + [3887] = 3767, + [3888] = 3768, + [3889] = 3852, + [3890] = 3660, + [3891] = 3666, + [3892] = 3744, + [3893] = 3838, + [3894] = 3894, + [3895] = 3665, + [3896] = 3896, + [3897] = 3667, + [3898] = 3845, + [3899] = 3830, + [3900] = 3666, + [3901] = 3849, + [3902] = 3829, + [3903] = 3828, + [3904] = 3827, + [3905] = 3894, + [3906] = 3896, + [3907] = 3667, + [3908] = 3776, + [3909] = 3839, + [3910] = 3696, + [3911] = 3696, + [3912] = 3835, + [3913] = 3651, + [3914] = 3802, + [3915] = 3710, + [3916] = 3831, + [3917] = 3802, + [3918] = 3652, + [3919] = 3919, + [3920] = 3659, + [3921] = 3877, + [3922] = 3662, + [3923] = 3845, + [3924] = 3681, + [3925] = 3925, + [3926] = 3926, + [3927] = 3927, [3928] = 3928, - [3929] = 3563, - [3930] = 3665, - [3931] = 3592, - [3932] = 3577, - [3933] = 3933, - [3934] = 3574, - [3935] = 3577, - [3936] = 3574, - [3937] = 3704, - [3938] = 3938, - [3939] = 3939, - [3940] = 3615, - [3941] = 3712, - [3942] = 3933, - [3943] = 3943, - [3944] = 3944, - [3945] = 3730, - [3946] = 3731, - [3947] = 3776, - [3948] = 3948, - [3949] = 3618, - [3950] = 3778, - [3951] = 3668, - [3952] = 3952, - [3953] = 3573, - [3954] = 3616, - [3955] = 3943, - [3956] = 3742, - [3957] = 3743, - [3958] = 3958, - [3959] = 3716, - [3960] = 3604, - [3961] = 3573, - [3962] = 3571, - [3963] = 3963, - [3964] = 3602, - [3965] = 3965, - [3966] = 3568, - [3967] = 3782, - [3968] = 3571, + [3929] = 3929, + [3930] = 3824, + [3931] = 3931, + [3932] = 3789, + [3933] = 3877, + [3934] = 3788, + [3935] = 3935, + [3936] = 3849, + [3937] = 3937, + [3938] = 3926, + [3939] = 3927, + [3940] = 3680, + [3941] = 3651, + [3942] = 3926, + [3943] = 3694, + [3944] = 3776, + [3945] = 3839, + [3946] = 3660, + [3947] = 3926, + [3948] = 3717, + [3949] = 3718, + [3950] = 3815, + [3951] = 3788, + [3952] = 3831, + [3953] = 3953, + [3954] = 3723, + [3955] = 3724, + [3956] = 3725, + [3957] = 3835, + [3958] = 3714, + [3959] = 3754, + [3960] = 3835, + [3961] = 3721, + [3962] = 3789, + [3963] = 3839, + [3964] = 3964, + [3965] = 3737, + [3966] = 3738, + [3967] = 3831, + [3968] = 3747, [3969] = 3969, - [3970] = 3781, - [3971] = 3593, - [3972] = 3780, - [3973] = 3779, - [3974] = 3764, - [3975] = 3570, - [3976] = 3976, - [3977] = 3587, - [3978] = 3978, - [3979] = 3761, - [3980] = 3980, - [3981] = 3716, - [3982] = 3585, + [3970] = 3722, + [3971] = 3971, + [3972] = 3972, + [3973] = 3831, + [3974] = 3747, + [3975] = 3975, + [3976] = 3738, + [3977] = 3737, + [3978] = 3797, + [3979] = 3979, + [3980] = 3849, + [3981] = 3754, + [3982] = 3926, [3983] = 3983, - [3984] = 3779, - [3985] = 3583, - [3986] = 3780, + [3984] = 3835, + [3985] = 3724, + [3986] = 3986, [3987] = 3987, - [3988] = 3988, - [3989] = 3779, - [3990] = 3780, - [3991] = 3781, - [3992] = 3782, - [3993] = 3581, - [3994] = 3775, - [3995] = 3781, - [3996] = 3996, - [3997] = 3997, - [3998] = 3791, - [3999] = 3999, - [4000] = 3782, - [4001] = 3569, - [4002] = 3808, - [4003] = 4003, - [4004] = 3580, - [4005] = 3809, - [4006] = 3773, + [3988] = 3723, + [3989] = 3989, + [3990] = 3718, + [3991] = 3717, + [3992] = 3992, + [3993] = 3766, + [3994] = 3768, + [3995] = 3839, + [3996] = 3694, + [3997] = 3680, + [3998] = 3660, + [3999] = 3849, + [4000] = 3802, + [4001] = 3659, + [4002] = 3776, + [4003] = 3660, + [4004] = 3696, + [4005] = 3667, + [4006] = 4006, [4007] = 4007, - [4008] = 3562, - [4009] = 3561, - [4010] = 3687, - [4011] = 3743, - [4012] = 3778, - [4013] = 3776, - [4014] = 3770, - [4015] = 3742, - [4016] = 4016, - [4017] = 3577, - [4018] = 3574, - [4019] = 3570, - [4020] = 3678, - [4021] = 3763, - [4022] = 3958, - [4023] = 3983, - [4024] = 3997, - [4025] = 4025, - [4026] = 3573, - [4027] = 3731, - [4028] = 3730, - [4029] = 3764, - [4030] = 4030, - [4031] = 3571, - [4032] = 3569, - [4033] = 3606, - [4034] = 3634, - [4035] = 3842, - [4036] = 3634, - [4037] = 3601, - [4038] = 4003, - [4039] = 4039, + [4008] = 3666, + [4009] = 3781, + [4010] = 4010, + [4011] = 3727, + [4012] = 4012, + [4013] = 3788, + [4014] = 3789, + [4015] = 3696, + [4016] = 3779, + [4017] = 3667, + [4018] = 3838, + [4019] = 4019, + [4020] = 3666, + [4021] = 3664, + [4022] = 3728, + [4023] = 3664, + [4024] = 3660, + [4025] = 3761, + [4026] = 3665, + [4027] = 3705, + [4028] = 3852, + [4029] = 4029, + [4030] = 3656, + [4031] = 3731, + [4032] = 3655, + [4033] = 3877, + [4034] = 3757, + [4035] = 3863, + [4036] = 4036, + [4037] = 3838, + [4038] = 3679, + [4039] = 3753, [4040] = 4040, - [4041] = 3755, - [4042] = 3749, - [4043] = 3570, - [4044] = 4044, - [4045] = 3562, - [4046] = 4039, - [4047] = 3747, - [4048] = 3569, - [4049] = 3745, - [4050] = 4050, - [4051] = 3710, - [4052] = 3601, - [4053] = 4053, + [4041] = 3852, + [4042] = 3665, + [4043] = 3827, + [4044] = 3828, + [4045] = 3742, + [4046] = 3830, + [4047] = 4047, + [4048] = 3824, + [4049] = 3827, + [4050] = 3828, + [4051] = 3829, + [4052] = 3830, + [4053] = 3815, [4054] = 4054, - [4055] = 3740, - [4056] = 4056, - [4057] = 3562, - [4058] = 3634, - [4059] = 3561, - [4060] = 3703, - [4061] = 3606, - [4062] = 4062, - [4063] = 3738, - [4064] = 3601, - [4065] = 3678, - [4066] = 3694, - [4067] = 3693, - [4068] = 3716, - [4069] = 3561, - [4070] = 4070, - [4071] = 3776, - [4072] = 3566, - [4073] = 4073, - [4074] = 3778, - [4075] = 4075, - [4076] = 3687, - [4077] = 3663, - [4078] = 3687, - [4079] = 4079, - [4080] = 3640, - [4081] = 3596, - [4082] = 3606, - [4083] = 3645, - [4084] = 4084, - [4085] = 3614, - [4086] = 4086, + [4055] = 4055, + [4056] = 3845, + [4057] = 4057, + [4058] = 3736, + [4059] = 4059, + [4060] = 4060, + [4061] = 3698, + [4062] = 3856, + [4063] = 3855, + [4064] = 4064, + [4065] = 4065, + [4066] = 3797, + [4067] = 4067, + [4068] = 3838, + [4069] = 4069, + [4070] = 3840, + [4071] = 3679, + [4072] = 4072, + [4073] = 3855, + [4074] = 3856, + [4075] = 3781, + [4076] = 3779, + [4077] = 4077, + [4078] = 4078, + [4079] = 3731, + [4080] = 4080, + [4081] = 4081, + [4082] = 4082, + [4083] = 3728, + [4084] = 3705, + [4085] = 3656, + [4086] = 3736, [4087] = 4087, - [4088] = 4088, - [4089] = 4089, - [4090] = 4090, - [4091] = 4091, - [4092] = 4092, - [4093] = 4093, - [4094] = 4094, - [4095] = 4095, - [4096] = 4096, - [4097] = 4097, + [4088] = 3824, + [4089] = 3815, + [4090] = 3654, + [4091] = 3863, + [4092] = 3845, + [4093] = 3655, + [4094] = 3742, + [4095] = 3830, + [4096] = 3829, + [4097] = 3828, [4098] = 4098, [4099] = 4099, [4100] = 4100, [4101] = 4101, - [4102] = 4102, - [4103] = 4103, - [4104] = 4104, + [4102] = 3827, + [4103] = 3716, + [4104] = 3852, [4105] = 4105, - [4106] = 4106, + [4106] = 3761, [4107] = 4107, - [4108] = 4108, - [4109] = 4109, - [4110] = 4090, - [4111] = 4111, - [4112] = 4112, + [4108] = 3753, + [4109] = 3727, + [4110] = 3757, + [4111] = 3753, + [4112] = 4054, [4113] = 4113, - [4114] = 4114, - [4115] = 4087, - [4116] = 4116, - [4117] = 4117, - [4118] = 4118, - [4119] = 4119, + [4114] = 4099, + [4115] = 3797, + [4116] = 3742, + [4117] = 3722, + [4118] = 3691, + [4119] = 3757, [4120] = 4120, - [4121] = 4121, - [4122] = 4122, - [4123] = 4123, - [4124] = 4124, - [4125] = 4125, - [4126] = 4092, + [4121] = 3721, + [4122] = 4087, + [4123] = 3736, + [4124] = 3679, + [4125] = 3863, + [4126] = 3692, [4127] = 4127, - [4128] = 4128, + [4128] = 3731, [4129] = 4129, - [4130] = 4130, + [4130] = 3714, [4131] = 4131, - [4132] = 4132, + [4132] = 3728, [4133] = 4133, - [4134] = 4134, - [4135] = 4135, - [4136] = 4092, - [4137] = 4137, + [4134] = 3654, + [4135] = 3659, + [4136] = 3698, + [4137] = 3652, [4138] = 4138, - [4139] = 4139, - [4140] = 4140, - [4141] = 4120, + [4139] = 3789, + [4140] = 3788, + [4141] = 3829, [4142] = 4142, - [4143] = 4120, - [4144] = 4129, - [4145] = 4114, - [4146] = 4146, - [4147] = 4147, + [4143] = 4143, + [4144] = 3699, + [4145] = 4145, + [4146] = 3651, + [4147] = 3776, [4148] = 4148, - [4149] = 4149, - [4150] = 4150, + [4149] = 3710, + [4150] = 3701, [4151] = 4151, - [4152] = 4088, - [4153] = 4153, - [4154] = 4154, - [4155] = 4155, + [4152] = 3727, + [4153] = 3706, + [4154] = 3855, + [4155] = 3680, [4156] = 4156, - [4157] = 4157, - [4158] = 4158, - [4159] = 4151, - [4160] = 4160, - [4161] = 4090, - [4162] = 4162, - [4163] = 4149, - [4164] = 4164, - [4165] = 4123, - [4166] = 4103, - [4167] = 4167, - [4168] = 4168, - [4169] = 4169, - [4170] = 4170, - [4171] = 4129, - [4172] = 4121, - [4173] = 4173, + [4157] = 3704, + [4158] = 3694, + [4159] = 3856, + [4160] = 3722, + [4161] = 4161, + [4162] = 3781, + [4163] = 3717, + [4164] = 3718, + [4165] = 3721, + [4166] = 3704, + [4167] = 3691, + [4168] = 3761, + [4169] = 3723, + [4170] = 3724, + [4171] = 3706, + [4172] = 4105, + [4173] = 4098, [4174] = 4174, - [4175] = 4175, - [4176] = 4176, - [4177] = 4103, - [4178] = 4178, - [4179] = 4137, - [4180] = 4154, - [4181] = 4155, - [4182] = 4182, - [4183] = 4183, - [4184] = 4184, + [4175] = 3714, + [4176] = 3664, + [4177] = 3701, + [4178] = 3710, + [4179] = 3737, + [4180] = 3738, + [4181] = 3754, + [4182] = 3692, + [4183] = 4082, + [4184] = 3699, [4185] = 4185, [4186] = 4186, - [4187] = 4187, - [4188] = 4188, - [4189] = 4087, - [4190] = 4088, + [4187] = 3779, + [4188] = 3747, + [4189] = 4189, + [4190] = 4190, [4191] = 4191, - [4192] = 4178, - [4193] = 4176, - [4194] = 4175, - [4195] = 4173, + [4192] = 4192, + [4193] = 4193, + [4194] = 4194, + [4195] = 4195, [4196] = 4196, [4197] = 4197, - [4198] = 4164, - [4199] = 4087, + [4198] = 4198, + [4199] = 4199, [4200] = 4200, [4201] = 4201, [4202] = 4202, - [4203] = 4155, - [4204] = 4137, - [4205] = 4162, + [4203] = 4190, + [4204] = 4189, + [4205] = 4205, [4206] = 4206, - [4207] = 4119, + [4207] = 4207, [4208] = 4208, [4209] = 4209, [4210] = 4210, @@ -7514,542 +7535,623 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [4212] = 4212, [4213] = 4213, [4214] = 4214, - [4215] = 4158, + [4215] = 4215, [4216] = 4216, [4217] = 4217, - [4218] = 4150, + [4218] = 4218, [4219] = 4219, [4220] = 4220, - [4221] = 4142, + [4221] = 4221, [4222] = 4222, [4223] = 4223, - [4224] = 4213, - [4225] = 4217, + [4224] = 4224, + [4225] = 4225, [4226] = 4226, - [4227] = 4122, + [4227] = 4227, [4228] = 4228, - [4229] = 4131, - [4230] = 4151, - [4231] = 4149, - [4232] = 4128, - [4233] = 4124, - [4234] = 4127, - [4235] = 4119, - [4236] = 4127, + [4229] = 4229, + [4230] = 4230, + [4231] = 4231, + [4232] = 4232, + [4233] = 4233, + [4234] = 4234, + [4235] = 4235, + [4236] = 4236, [4237] = 4237, [4238] = 4238, - [4239] = 4149, - [4240] = 4125, + [4239] = 4239, + [4240] = 4240, [4241] = 4241, - [4242] = 4122, - [4243] = 4178, + [4242] = 4242, + [4243] = 4243, [4244] = 4244, [4245] = 4245, [4246] = 4246, - [4247] = 4116, - [4248] = 4124, - [4249] = 4130, + [4247] = 4247, + [4248] = 4248, + [4249] = 4249, [4250] = 4250, - [4251] = 4139, + [4251] = 4225, [4252] = 4252, - [4253] = 4176, + [4253] = 4253, [4254] = 4254, - [4255] = 4123, - [4256] = 4256, - [4257] = 4109, + [4255] = 4255, + [4256] = 4232, + [4257] = 4257, [4258] = 4258, [4259] = 4259, - [4260] = 4175, - [4261] = 4105, + [4260] = 4260, + [4261] = 4200, [4262] = 4262, - [4263] = 4104, - [4264] = 4264, - [4265] = 4102, - [4266] = 4134, - [4267] = 4086, - [4268] = 4099, - [4269] = 4269, - [4270] = 4130, - [4271] = 4133, - [4272] = 4139, - [4273] = 4095, - [4274] = 4173, + [4263] = 4263, + [4264] = 4233, + [4265] = 4265, + [4266] = 4190, + [4267] = 4249, + [4268] = 4202, + [4269] = 4248, + [4270] = 4198, + [4271] = 4271, + [4272] = 4265, + [4273] = 4273, + [4274] = 4274, [4275] = 4275, - [4276] = 4264, + [4276] = 4276, [4277] = 4277, - [4278] = 4113, - [4279] = 4112, - [4280] = 4086, + [4278] = 4207, + [4279] = 4210, + [4280] = 4246, [4281] = 4281, - [4282] = 4282, - [4283] = 4283, - [4284] = 4091, - [4285] = 4285, - [4286] = 4286, - [4287] = 4277, - [4288] = 4140, - [4289] = 4095, - [4290] = 4290, + [4282] = 4247, + [4283] = 4191, + [4284] = 4284, + [4285] = 4250, + [4286] = 4253, + [4287] = 4265, + [4288] = 4288, + [4289] = 4289, + [4290] = 4252, [4291] = 4291, - [4292] = 4091, - [4293] = 4099, + [4292] = 4255, + [4293] = 4258, [4294] = 4294, - [4295] = 4112, - [4296] = 4113, - [4297] = 4290, - [4298] = 4102, + [4295] = 4295, + [4296] = 4296, + [4297] = 4259, + [4298] = 4298, [4299] = 4299, - [4300] = 4104, - [4301] = 4164, - [4302] = 4228, - [4303] = 4299, - [4304] = 4294, - [4305] = 4105, - [4306] = 4162, - [4307] = 4307, - [4308] = 4308, - [4309] = 4299, - [4310] = 4290, - [4311] = 4109, - [4312] = 4285, - [4313] = 4134, - [4314] = 4264, - [4315] = 4282, - [4316] = 4158, - [4317] = 4277, - [4318] = 4238, - [4319] = 4116, - [4320] = 4294, + [4300] = 4190, + [4301] = 4301, + [4302] = 4260, + [4303] = 4245, + [4304] = 4304, + [4305] = 4262, + [4306] = 4289, + [4307] = 4243, + [4308] = 4242, + [4309] = 4309, + [4310] = 4310, + [4311] = 4311, + [4312] = 4312, + [4313] = 4313, + [4314] = 4240, + [4315] = 4315, + [4316] = 4316, + [4317] = 4317, + [4318] = 4318, + [4319] = 4319, + [4320] = 4284, [4321] = 4321, [4322] = 4322, [4323] = 4323, [4324] = 4324, [4325] = 4325, - [4326] = 4285, - [4327] = 4327, - [4328] = 4125, - [4329] = 4258, + [4326] = 4326, + [4327] = 4239, + [4328] = 4298, + [4329] = 4329, [4330] = 4330, - [4331] = 4128, - [4332] = 4254, - [4333] = 4333, - [4334] = 4131, - [4335] = 4150, - [4336] = 4282, - [4337] = 4258, - [4338] = 4140, - [4339] = 4157, - [4340] = 4254, - [4341] = 17, + [4331] = 4304, + [4332] = 4198, + [4333] = 4299, + [4334] = 4230, + [4335] = 4228, + [4336] = 4330, + [4337] = 4224, + [4338] = 4338, + [4339] = 4207, + [4340] = 4340, + [4341] = 4341, [4342] = 4342, - [4343] = 4160, - [4344] = 33, - [4345] = 4142, - [4346] = 4250, - [4347] = 4250, - [4348] = 4114, - [4349] = 4246, - [4350] = 4148, + [4343] = 4301, + [4344] = 4344, + [4345] = 4216, + [4346] = 4301, + [4347] = 4347, + [4348] = 4229, + [4349] = 4227, + [4350] = 4350, [4351] = 4351, [4352] = 4352, - [4353] = 4150, + [4353] = 4291, [4354] = 4354, [4355] = 4355, - [4356] = 4216, - [4357] = 4246, - [4358] = 4197, - [4359] = 4196, - [4360] = 4191, - [4361] = 4158, - [4362] = 4188, - [4363] = 4185, - [4364] = 4364, - [4365] = 4162, - [4366] = 4185, - [4367] = 4164, - [4368] = 4188, - [4369] = 4160, - [4370] = 4151, - [4371] = 4157, - [4372] = 4160, + [4356] = 4245, + [4357] = 4347, + [4358] = 4358, + [4359] = 4359, + [4360] = 4212, + [4361] = 4361, + [4362] = 4243, + [4363] = 4363, + [4364] = 4208, + [4365] = 4211, + [4366] = 4366, + [4367] = 4242, + [4368] = 4309, + [4369] = 4205, + [4370] = 4363, + [4371] = 4189, + [4372] = 4350, [4373] = 4373, - [4374] = 4374, + [4374] = 4351, [4375] = 4375, - [4376] = 4173, - [4377] = 4156, - [4378] = 4175, - [4379] = 4176, + [4376] = 4192, + [4377] = 4377, + [4378] = 4210, + [4379] = 4379, [4380] = 4380, - [4381] = 4178, - [4382] = 4167, - [4383] = 4216, - [4384] = 4114, - [4385] = 4197, - [4386] = 39, - [4387] = 4387, - [4388] = 4157, - [4389] = 4140, - [4390] = 4139, - [4391] = 4391, - [4392] = 4191, - [4393] = 4196, - [4394] = 4142, + [4381] = 4381, + [4382] = 4355, + [4383] = 4315, + [4384] = 4196, + [4385] = 4385, + [4386] = 4316, + [4387] = 4193, + [4388] = 4252, + [4389] = 4358, + [4390] = 4390, + [4391] = 4197, + [4392] = 4392, + [4393] = 4393, + [4394] = 4394, [4395] = 4395, [4396] = 4396, - [4397] = 4134, - [4398] = 4130, - [4399] = 4132, - [4400] = 4196, - [4401] = 4137, - [4402] = 4127, - [4403] = 4155, - [4404] = 4124, - [4405] = 4191, - [4406] = 4155, - [4407] = 4137, - [4408] = 4408, - [4409] = 4185, - [4410] = 4122, - [4411] = 4188, - [4412] = 4197, - [4413] = 4216, - [4414] = 4116, - [4415] = 4415, - [4416] = 4188, + [4397] = 4230, + [4398] = 4359, + [4399] = 4361, + [4400] = 4394, + [4401] = 4228, + [4402] = 4197, + [4403] = 4193, + [4404] = 4404, + [4405] = 4375, + [4406] = 4196, + [4407] = 4377, + [4408] = 4375, + [4409] = 4392, + [4410] = 4410, + [4411] = 4192, + [4412] = 4224, + [4413] = 4413, + [4414] = 4414, + [4415] = 4392, + [4416] = 4416, [4417] = 4417, - [4418] = 4119, - [4419] = 4123, - [4420] = 4185, - [4421] = 4088, - [4422] = 4422, - [4423] = 4131, - [4424] = 4103, - [4425] = 4425, - [4426] = 4426, - [4427] = 4160, - [4428] = 4428, - [4429] = 4429, - [4430] = 4120, - [4431] = 4157, - [4432] = 4128, - [4433] = 4151, - [4434] = 4149, - [4435] = 4092, - [4436] = 4178, + [4418] = 4418, + [4419] = 4419, + [4420] = 4420, + [4421] = 4211, + [4422] = 4359, + [4423] = 4423, + [4424] = 4363, + [4425] = 4205, + [4426] = 4216, + [4427] = 4427, + [4428] = 4208, + [4429] = 4358, + [4430] = 4361, + [4431] = 4392, + [4432] = 4363, + [4433] = 32, + [4434] = 4224, + [4435] = 4212, + [4436] = 4436, [4437] = 4437, - [4438] = 4438, - [4439] = 4125, - [4440] = 4176, - [4441] = 4175, - [4442] = 4140, - [4443] = 4191, - [4444] = 4196, - [4445] = 4173, - [4446] = 4281, - [4447] = 4286, - [4448] = 4448, - [4449] = 4246, - [4450] = 4450, - [4451] = 1635, - [4452] = 4090, - [4453] = 4250, - [4454] = 4123, - [4455] = 41, - [4456] = 16, - [4457] = 4134, - [4458] = 4254, - [4459] = 4197, - [4460] = 4291, - [4461] = 4164, - [4462] = 4282, - [4463] = 4463, - [4464] = 4258, - [4465] = 4282, - [4466] = 4130, - [4467] = 4285, - [4468] = 4162, - [4469] = 4469, - [4470] = 4294, - [4471] = 4127, - [4472] = 4124, - [4473] = 4158, - [4474] = 4474, + [4438] = 4228, + [4439] = 4439, + [4440] = 4230, + [4441] = 4202, + [4442] = 19, + [4443] = 4355, + [4444] = 4444, + [4445] = 4196, + [4446] = 4446, + [4447] = 4447, + [4448] = 4375, + [4449] = 4350, + [4450] = 4309, + [4451] = 4227, + [4452] = 4242, + [4453] = 4243, + [4454] = 4229, + [4455] = 4245, + [4456] = 4216, + [4457] = 4457, + [4458] = 4446, + [4459] = 4289, + [4460] = 4347, + [4461] = 4301, + [4462] = 4347, + [4463] = 4225, + [4464] = 4464, + [4465] = 4465, + [4466] = 4304, + [4467] = 4467, + [4468] = 4211, + [4469] = 4467, + [4470] = 4470, + [4471] = 4359, + [4472] = 4358, + [4473] = 4289, + [4474] = 4355, [4475] = 4475, - [4476] = 4102, - [4477] = 4122, - [4478] = 4104, - [4479] = 4129, - [4480] = 4119, - [4481] = 4150, - [4482] = 4299, - [4483] = 4216, - [4484] = 4114, - [4485] = 4102, - [4486] = 4290, - [4487] = 4104, - [4488] = 23, - [4489] = 4489, - [4490] = 4142, - [4491] = 4087, + [4476] = 4476, + [4477] = 4330, + [4478] = 4299, + [4479] = 4298, + [4480] = 4480, + [4481] = 4291, + [4482] = 4265, + [4483] = 4304, + [4484] = 4350, + [4485] = 4202, + [4486] = 4486, + [4487] = 4284, + [4488] = 4488, + [4489] = 4191, + [4490] = 4330, + [4491] = 4299, [4492] = 4492, [4493] = 4493, - [4494] = 4104, - [4495] = 4088, - [4496] = 4496, - [4497] = 4277, - [4498] = 4104, - [4499] = 4109, + [4494] = 4309, + [4495] = 4309, + [4496] = 4190, + [4497] = 4252, + [4498] = 4498, + [4499] = 4499, [4500] = 4500, [4501] = 4501, [4502] = 4502, - [4503] = 4131, + [4503] = 4210, [4504] = 4504, - [4505] = 4505, - [4506] = 4128, + [4505] = 4350, + [4506] = 4506, [4507] = 4507, [4508] = 4508, - [4509] = 4509, - [4510] = 4125, - [4511] = 1268, - [4512] = 4512, + [4509] = 4201, + [4510] = 4394, + [4511] = 4304, + [4512] = 4207, [4513] = 4513, - [4514] = 4514, - [4515] = 4515, + [4514] = 4262, + [4515] = 4193, [4516] = 4516, - [4517] = 4474, - [4518] = 4086, - [4519] = 4519, - [4520] = 4520, - [4521] = 4521, - [4522] = 4522, - [4523] = 4523, - [4524] = 4524, - [4525] = 4525, - [4526] = 4526, - [4527] = 4519, - [4528] = 4512, - [4529] = 4529, - [4530] = 4264, - [4531] = 4103, - [4532] = 4116, - [4533] = 4438, - [4534] = 4534, - [4535] = 4417, - [4536] = 4415, - [4537] = 4521, - [4538] = 4380, - [4539] = 4254, - [4540] = 4354, - [4541] = 4109, - [4542] = 4542, - [4543] = 4237, + [4517] = 4198, + [4518] = 4260, + [4519] = 4394, + [4520] = 4259, + [4521] = 4298, + [4522] = 4291, + [4523] = 4258, + [4524] = 4255, + [4525] = 4355, + [4526] = 4253, + [4527] = 4527, + [4528] = 4528, + [4529] = 4358, + [4530] = 4359, + [4531] = 4531, + [4532] = 4532, + [4533] = 38, + [4534] = 4289, + [4535] = 4250, + [4536] = 40, + [4537] = 4537, + [4538] = 4254, + [4539] = 4284, + [4540] = 4233, + [4541] = 4265, + [4542] = 4375, + [4543] = 4247, [4544] = 4544, - [4545] = 4526, - [4546] = 4105, - [4547] = 4504, - [4548] = 4104, - [4549] = 4507, - [4550] = 4508, - [4551] = 4509, - [4552] = 4102, - [4553] = 4246, - [4554] = 4099, - [4555] = 4555, - [4556] = 4514, - [4557] = 4515, - [4558] = 4558, - [4559] = 4095, - [4560] = 4560, - [4561] = 4520, - [4562] = 4562, - [4563] = 4105, - [4564] = 4564, - [4565] = 4524, - [4566] = 4525, - [4567] = 4519, - [4568] = 4512, - [4569] = 4569, - [4570] = 4250, - [4571] = 4525, - [4572] = 4572, - [4573] = 4091, - [4574] = 4417, - [4575] = 4415, + [4545] = 4545, + [4546] = 4546, + [4547] = 4547, + [4548] = 4246, + [4549] = 4202, + [4550] = 4550, + [4551] = 4551, + [4552] = 4552, + [4553] = 4205, + [4554] = 4233, + [4555] = 4189, + [4556] = 4556, + [4557] = 4557, + [4558] = 4232, + [4559] = 4245, + [4560] = 4243, + [4561] = 4242, + [4562] = 4205, + [4563] = 4392, + [4564] = 4189, + [4565] = 4191, + [4566] = 4566, + [4567] = 4567, + [4568] = 4361, + [4569] = 4315, + [4570] = 4385, + [4571] = 4189, + [4572] = 4316, + [4573] = 4573, + [4574] = 4363, + [4575] = 4189, [4576] = 4576, - [4577] = 4380, - [4578] = 4524, + [4577] = 4197, + [4578] = 4578, [4579] = 4579, - [4580] = 4504, - [4581] = 4112, - [4582] = 4507, - [4583] = 4508, - [4584] = 4509, - [4585] = 4113, + [4580] = 4580, + [4581] = 4581, + [4582] = 4582, + [4583] = 4583, + [4584] = 4584, + [4585] = 4585, [4586] = 4586, [4587] = 4587, - [4588] = 4588, - [4589] = 4514, - [4590] = 4515, + [4588] = 4210, + [4589] = 4393, + [4590] = 4230, [4591] = 4591, - [4592] = 4120, - [4593] = 4104, - [4594] = 4520, - [4595] = 4595, - [4596] = 4102, + [4592] = 4592, + [4593] = 4207, + [4594] = 4594, + [4595] = 4228, + [4596] = 4596, [4597] = 4597, - [4598] = 4524, - [4599] = 4525, - [4600] = 4519, - [4601] = 4512, - [4602] = 4254, + [4598] = 4598, + [4599] = 4599, + [4600] = 4224, + [4601] = 4601, + [4602] = 4602, [4603] = 4603, - [4604] = 4604, - [4605] = 4140, - [4606] = 4197, - [4607] = 4417, - [4608] = 4415, - [4609] = 4380, - [4610] = 4254, - [4611] = 4254, - [4612] = 4504, - [4613] = 4282, - [4614] = 4507, - [4615] = 4508, - [4616] = 4509, - [4617] = 4617, - [4618] = 4140, - [4619] = 1634, - [4620] = 4197, - [4621] = 4514, - [4622] = 4515, - [4623] = 4099, - [4624] = 4139, - [4625] = 4277, - [4626] = 4520, - [4627] = 4258, - [4628] = 4092, - [4629] = 4629, - [4630] = 4524, - [4631] = 4525, - [4632] = 4519, - [4633] = 4512, - [4634] = 4258, - [4635] = 4282, - [4636] = 4282, - [4637] = 4637, + [4604] = 4576, + [4605] = 4605, + [4606] = 4598, + [4607] = 4594, + [4608] = 4605, + [4609] = 4208, + [4610] = 4610, + [4611] = 4216, + [4612] = 4516, + [4613] = 4198, + [4614] = 4500, + [4615] = 4499, + [4616] = 4616, + [4617] = 4465, + [4618] = 4211, + [4619] = 4447, + [4620] = 4620, + [4621] = 4621, + [4622] = 4352, + [4623] = 4603, + [4624] = 4624, + [4625] = 4625, + [4626] = 4581, + [4627] = 4627, + [4628] = 4584, + [4629] = 4585, + [4630] = 4586, + [4631] = 4631, + [4632] = 4262, + [4633] = 4633, + [4634] = 4634, + [4635] = 4591, + [4636] = 4592, + [4637] = 4361, [4638] = 4638, - [4639] = 4417, - [4640] = 4415, - [4641] = 4380, - [4642] = 4277, - [4643] = 4507, + [4639] = 4225, + [4640] = 4640, + [4641] = 4597, + [4642] = 4642, + [4643] = 4192, [4644] = 4644, - [4645] = 4645, - [4646] = 4507, - [4647] = 4647, - [4648] = 4648, - [4649] = 4649, + [4645] = 4601, + [4646] = 4602, + [4647] = 4603, + [4648] = 4598, + [4649] = 4594, [4650] = 4650, - [4651] = 4651, - [4652] = 4652, - [4653] = 4285, - [4654] = 4654, - [4655] = 4655, - [4656] = 4656, - [4657] = 4657, - [4658] = 4658, - [4659] = 4090, + [4651] = 4260, + [4652] = 4602, + [4653] = 4196, + [4654] = 4193, + [4655] = 4500, + [4656] = 4499, + [4657] = 4232, + [4658] = 4465, + [4659] = 4601, [4660] = 4660, - [4661] = 4586, - [4662] = 4569, - [4663] = 4562, - [4664] = 4560, - [4665] = 4665, - [4666] = 4387, - [4667] = 4140, - [4668] = 4294, + [4661] = 4581, + [4662] = 4662, + [4663] = 4584, + [4664] = 4585, + [4665] = 4586, + [4666] = 4394, + [4667] = 4667, + [4668] = 4668, [4669] = 4669, - [4670] = 4670, - [4671] = 4671, - [4672] = 4095, - [4673] = 4520, - [4674] = 4197, - [4675] = 4254, - [4676] = 4676, - [4677] = 4258, - [4678] = 4282, - [4679] = 4091, - [4680] = 4680, - [4681] = 4681, - [4682] = 4299, - [4683] = 4515, - [4684] = 4514, + [4670] = 4591, + [4671] = 4592, + [4672] = 4556, + [4673] = 1642, + [4674] = 4189, + [4675] = 4597, + [4676] = 4233, + [4677] = 4205, + [4678] = 4197, + [4679] = 4601, + [4680] = 4602, + [4681] = 4598, + [4682] = 4594, + [4683] = 4246, + [4684] = 4684, [4685] = 4685, - [4686] = 4112, - [4687] = 4657, - [4688] = 4113, - [4689] = 4689, - [4690] = 4656, - [4691] = 4655, - [4692] = 4692, - [4693] = 4655, - [4694] = 4656, - [4695] = 4657, - [4696] = 4290, - [4697] = 4509, - [4698] = 4277, - [4699] = 4569, - [4700] = 4562, - [4701] = 4560, - [4702] = 4508, - [4703] = 4703, - [4704] = 4704, - [4705] = 4507, - [4706] = 4706, - [4707] = 4655, - [4708] = 4656, - [4709] = 4657, - [4710] = 4710, - [4711] = 4277, - [4712] = 4712, - [4713] = 4569, - [4714] = 4562, - [4715] = 4560, - [4716] = 4716, - [4717] = 4140, - [4718] = 4718, - [4719] = 4719, - [4720] = 4720, - [4721] = 4655, - [4722] = 4656, - [4723] = 4657, - [4724] = 4724, - [4725] = 4258, - [4726] = 4129, - [4727] = 4569, - [4728] = 4562, - [4729] = 4560, - [4730] = 4730, - [4731] = 4086, - [4732] = 4264, - [4733] = 4588, - [4734] = 4692, + [4686] = 4252, + [4687] = 4599, + [4688] = 4500, + [4689] = 4499, + [4690] = 4465, + [4691] = 4259, + [4692] = 1643, + [4693] = 4581, + [4694] = 4192, + [4695] = 4584, + [4696] = 4585, + [4697] = 4586, + [4698] = 4698, + [4699] = 4247, + [4700] = 4189, + [4701] = 4205, + [4702] = 4591, + [4703] = 4592, + [4704] = 4212, + [4705] = 4361, + [4706] = 4347, + [4707] = 4597, + [4708] = 4258, + [4709] = 4301, + [4710] = 1521, + [4711] = 4601, + [4712] = 4602, + [4713] = 4598, + [4714] = 4594, + [4715] = 4212, + [4716] = 4255, + [4717] = 34, + [4718] = 30, + [4719] = 4227, + [4720] = 4500, + [4721] = 4499, + [4722] = 4465, + [4723] = 4229, + [4724] = 4584, + [4725] = 4725, + [4726] = 4233, + [4727] = 4584, + [4728] = 4728, + [4729] = 4729, + [4730] = 4255, + [4731] = 4731, + [4732] = 4250, + [4733] = 4253, + [4734] = 4253, [4735] = 4735, - [4736] = 4658, - [4737] = 4197, - [4738] = 4505, - [4739] = 4647, - [4740] = 4504, - [4741] = 4741, - [4742] = 4254, - [4743] = 4342, - [4744] = 4502, - [4745] = 4745, - [4746] = 4746, - [4747] = 4747, - [4748] = 4748, - [4749] = 4749, - [4750] = 4750, + [4736] = 4736, + [4737] = 4737, + [4738] = 4738, + [4739] = 4739, + [4740] = 4255, + [4741] = 4330, + [4742] = 4667, + [4743] = 4650, + [4744] = 4642, + [4745] = 4640, + [4746] = 4299, + [4747] = 4476, + [4748] = 4258, + [4749] = 4250, + [4750] = 4259, + [4751] = 4751, + [4752] = 4208, + [4753] = 4753, + [4754] = 4597, + [4755] = 4284, + [4756] = 4258, + [4757] = 4259, + [4758] = 4361, + [4759] = 4284, + [4760] = 4760, + [4761] = 4259, + [4762] = 4762, + [4763] = 4247, + [4764] = 4592, + [4765] = 4591, + [4766] = 4259, + [4767] = 4227, + [4768] = 4738, + [4769] = 4229, + [4770] = 4260, + [4771] = 4737, + [4772] = 4736, + [4773] = 4773, + [4774] = 4736, + [4775] = 4737, + [4776] = 4738, + [4777] = 4246, + [4778] = 4586, + [4779] = 4262, + [4780] = 4650, + [4781] = 4642, + [4782] = 4640, + [4783] = 4585, + [4784] = 4298, + [4785] = 4291, + [4786] = 4584, + [4787] = 4255, + [4788] = 4736, + [4789] = 4737, + [4790] = 4738, + [4791] = 4284, + [4792] = 4233, + [4793] = 4191, + [4794] = 4650, + [4795] = 4642, + [4796] = 4640, + [4797] = 4361, + [4798] = 4284, + [4799] = 4259, + [4800] = 4800, + [4801] = 4258, + [4802] = 4736, + [4803] = 4737, + [4804] = 4738, + [4805] = 4805, + [4806] = 4255, + [4807] = 4255, + [4808] = 4650, + [4809] = 4642, + [4810] = 4640, + [4811] = 4233, + [4812] = 4232, + [4813] = 4225, + [4814] = 4729, + [4815] = 4773, + [4816] = 4816, + [4817] = 4739, + [4818] = 4361, + [4819] = 4582, + [4820] = 4728, + [4821] = 4581, + [4822] = 4284, + [4823] = 4259, + [4824] = 4437, + [4825] = 4579, + [4826] = 4258, + [4827] = 4827, + [4828] = 4828, + [4829] = 4829, + [4830] = 4830, + [4831] = 4831, }; static bool ts_lex(TSLexer *lexer, TSStateId state) { @@ -8057,68 +8159,68 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { eof = lexer->eof(lexer); switch (state) { case 0: - 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 (eof) ADVANCE(889); + if (lookahead == '"') ADVANCE(1617); + if (lookahead == '&') ADVANCE(913); + if (lookahead == '\'') ADVANCE(1622); + if (lookahead == '(') ADVANCE(1626); + if (lookahead == ')') ADVANCE(1627); + if (lookahead == '*') ADVANCE(1611); + if (lookahead == '+') ADVANCE(1633); + if (lookahead == ',') ADVANCE(1688); + if (lookahead == '-') ADVANCE(1628); + if (lookahead == '.') ADVANCE(1614); + if (lookahead == '/') ADVANCE(907); + if (lookahead == ':') ADVANCE(1694); + if (lookahead == '<') ADVANCE(1635); + if (lookahead == '=') ADVANCE(1638); + if (lookahead == '>') ADVANCE(1639); + if (lookahead == '?') ADVANCE(1615); + if (lookahead == 'B') ADVANCE(971); + if (lookahead == 'L') ADVANCE(948); + if (lookahead == 'M') ADVANCE(941); + if (lookahead == 'N') ADVANCE(954); + if (lookahead == 'S') ADVANCE(939); + if (lookahead == '\\') ADVANCE(1610); + if (lookahead == 'b') ADVANCE(1092); + if (lookahead == 'l') ADVANCE(972); + if (lookahead == 'm') ADVANCE(973); + if (lookahead == 'n') ADVANCE(1095); + if (lookahead == 's') ADVANCE(1098); + if (lookahead == '{') ADVANCE(908); + if (lookahead == '}') ADVANCE(914); if (lookahead == 'A' || - lookahead == 'a') ADVANCE(1030); + lookahead == 'a') ADVANCE(1034); if (lookahead == 'C' || - lookahead == 'c') ADVANCE(970); + lookahead == 'c') ADVANCE(974); if (lookahead == 'D' || - lookahead == 'd') ADVANCE(978); + lookahead == 'd') ADVANCE(982); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(971); + lookahead == 'e') ADVANCE(975); if (lookahead == 'F' || - lookahead == 'f') ADVANCE(1228); + lookahead == 'f') ADVANCE(1234); if (lookahead == 'G' || - lookahead == 'g') ADVANCE(1095); + lookahead == 'g') ADVANCE(1099); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1309); + lookahead == 'i') ADVANCE(1316); if (lookahead == 'K' || - lookahead == 'k') ADVANCE(1141); + lookahead == 'k') ADVANCE(1145); if (lookahead == 'O' || - lookahead == 'o') ADVANCE(1193); + lookahead == 'o') ADVANCE(1197); if (lookahead == 'P' || - lookahead == 'p') ADVANCE(972); + lookahead == 'p') ADVANCE(976); if (lookahead == 'Q' || - lookahead == 'q') ADVANCE(1553); + lookahead == 'q') ADVANCE(1561); if (lookahead == 'R' || - lookahead == 'r') ADVANCE(1045); + lookahead == 'r') ADVANCE(1049); if (lookahead == 'T' || - lookahead == 't') ADVANCE(985); + lookahead == 't') ADVANCE(989); if (lookahead == 'U' || - lookahead == 'u') ADVANCE(1326); + lookahead == 'u') ADVANCE(1333); if (lookahead == 'V' || - lookahead == 'v') ADVANCE(988); + lookahead == 'v') ADVANCE(992); if (lookahead == 'W' || - lookahead == 'w') ADVANCE(1218); + lookahead == 'w') ADVANCE(1223); if (lookahead == '\f' || lookahead == 8203 || lookahead == 8288 || @@ -8127,8 +8229,8 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == '\n' || lookahead == '\r' || lookahead == ' ') ADVANCE(22); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1608); - if (('H' <= lookahead && lookahead <= 'z')) ADVANCE(1602); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1616); + if (('H' <= lookahead && lookahead <= 'z')) ADVANCE(1610); END_STATE(); case 1: if (lookahead == '\n') SKIP(27) @@ -8166,29 +8268,29 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '\r') SKIP(9) END_STATE(); case 11: - if (lookahead == '\n') SKIP(109) + if (lookahead == '\n') SKIP(111) END_STATE(); case 12: - if (lookahead == '\n') SKIP(109) + if (lookahead == '\n') SKIP(111) if (lookahead == '\r') SKIP(11) END_STATE(); case 13: - if (lookahead == '\n') SKIP(37) - if (lookahead == '\r') ADVANCE(1613); - if (lookahead != 0) ADVANCE(1613); + if (lookahead == '\n') SKIP(35) + if (lookahead == '\r') ADVANCE(1621); + if (lookahead != 0) ADVANCE(1621); END_STATE(); case 14: - if (lookahead == '\n') SKIP(35) - if (lookahead == '\r') ADVANCE(1613); - if (lookahead != 0) ADVANCE(1613); + if (lookahead == '\n') SKIP(37) + if (lookahead == '\r') ADVANCE(1621); + if (lookahead != 0) ADVANCE(1621); END_STATE(); case 15: - if (lookahead == '\n') SKIP(110) + if (lookahead == '\n') SKIP(112) END_STATE(); case 16: - if (lookahead == '\n') SKIP(110) + if (lookahead == '\n') SKIP(112) if (lookahead == '\r') SKIP(15) - if (lookahead == '.') ADVANCE(150); + if (lookahead == '.') ADVANCE(152); if (('-' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || lookahead == '|') ADVANCE(92); @@ -8203,20 +8305,20 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 19: if (lookahead == '\n') ADVANCE(51); if (lookahead == '\r') ADVANCE(20); - if (lookahead == '*') ADVANCE(902); + if (lookahead == '*') ADVANCE(906); if (lookahead != 0) ADVANCE(52); END_STATE(); case 20: if (lookahead == '\n') ADVANCE(51); - if (lookahead == '*') ADVANCE(902); + if (lookahead == '*') ADVANCE(906); if (lookahead != 0) ADVANCE(52); END_STATE(); case 21: - if (lookahead == ' ') ADVANCE(1789); - if (lookahead == ')') ADVANCE(1619); + if (lookahead == ' ') ADVANCE(1798); + if (lookahead == ')') ADVANCE(1627); if (lookahead == '/') ADVANCE(50); if (lookahead == '\\') SKIP(18) - if (lookahead == '{') ADVANCE(904); + if (lookahead == '{') ADVANCE(908); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\f' || @@ -8226,67 +8328,67 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == 65279) SKIP(21) END_STATE(); case 22: - 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 == '"') ADVANCE(1617); + if (lookahead == '&') ADVANCE(913); + if (lookahead == '\'') ADVANCE(1622); + if (lookahead == '(') ADVANCE(1626); + if (lookahead == ')') ADVANCE(1627); + if (lookahead == '*') ADVANCE(1611); + if (lookahead == '+') ADVANCE(1633); + if (lookahead == ',') ADVANCE(1688); + if (lookahead == '-') ADVANCE(1628); + if (lookahead == '.') ADVANCE(1614); + if (lookahead == '/') ADVANCE(907); + if (lookahead == ':') ADVANCE(1694); + if (lookahead == '<') ADVANCE(1635); + if (lookahead == '=') ADVANCE(1638); + if (lookahead == '>') ADVANCE(1639); + if (lookahead == '?') ADVANCE(1615); + if (lookahead == 'B') ADVANCE(971); + if (lookahead == 'L') ADVANCE(948); + if (lookahead == 'M') ADVANCE(941); + if (lookahead == 'N') ADVANCE(954); + if (lookahead == 'S') ADVANCE(939); + if (lookahead == '\\') ADVANCE(1610); + if (lookahead == 'b') ADVANCE(1092); + if (lookahead == 'l') ADVANCE(972); + if (lookahead == 'm') ADVANCE(973); + if (lookahead == 'n') ADVANCE(1095); + if (lookahead == 's') ADVANCE(1098); + if (lookahead == '{') ADVANCE(908); + if (lookahead == '}') ADVANCE(914); if (lookahead == 'A' || - lookahead == 'a') ADVANCE(1030); + lookahead == 'a') ADVANCE(1034); if (lookahead == 'C' || - lookahead == 'c') ADVANCE(970); + lookahead == 'c') ADVANCE(974); if (lookahead == 'D' || - lookahead == 'd') ADVANCE(978); + lookahead == 'd') ADVANCE(982); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(971); + lookahead == 'e') ADVANCE(975); if (lookahead == 'F' || - lookahead == 'f') ADVANCE(1228); + lookahead == 'f') ADVANCE(1234); if (lookahead == 'G' || - lookahead == 'g') ADVANCE(1095); + lookahead == 'g') ADVANCE(1099); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1309); + lookahead == 'i') ADVANCE(1316); if (lookahead == 'K' || - lookahead == 'k') ADVANCE(1141); + lookahead == 'k') ADVANCE(1145); if (lookahead == 'O' || - lookahead == 'o') ADVANCE(1193); + lookahead == 'o') ADVANCE(1197); if (lookahead == 'P' || - lookahead == 'p') ADVANCE(972); + lookahead == 'p') ADVANCE(976); if (lookahead == 'Q' || - lookahead == 'q') ADVANCE(1553); + lookahead == 'q') ADVANCE(1561); if (lookahead == 'R' || - lookahead == 'r') ADVANCE(1045); + lookahead == 'r') ADVANCE(1049); if (lookahead == 'T' || - lookahead == 't') ADVANCE(985); + lookahead == 't') ADVANCE(989); if (lookahead == 'U' || - lookahead == 'u') ADVANCE(1326); + lookahead == 'u') ADVANCE(1333); if (lookahead == 'V' || - lookahead == 'v') ADVANCE(988); + lookahead == 'v') ADVANCE(992); if (lookahead == 'W' || - lookahead == 'w') ADVANCE(1218); + lookahead == 'w') ADVANCE(1223); if (lookahead == '\f' || lookahead == 8203 || lookahead == 8288 || @@ -8295,23 +8397,23 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == '\n' || lookahead == '\r' || lookahead == ' ') ADVANCE(22); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1608); - if (('H' <= lookahead && lookahead <= 'z')) ADVANCE(1602); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1616); + if (('H' <= lookahead && lookahead <= 'z')) ADVANCE(1610); END_STATE(); case 23: - 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(1617); + if (lookahead == '&') ADVANCE(1652); + if (lookahead == '\'') ADVANCE(1622); + if (lookahead == '(') ADVANCE(1626); + if (lookahead == ')') ADVANCE(1627); + if (lookahead == '*') ADVANCE(1611); + if (lookahead == ',') ADVANCE(1688); + if (lookahead == '.') ADVANCE(1612); if (lookahead == '/') ADVANCE(50); - if (lookahead == ':') ADVANCE(1686); - if (lookahead == '\\') ADVANCE(1602); - if (lookahead == '{') ADVANCE(904); - if (lookahead == '}') ADVANCE(910); + if (lookahead == ':') ADVANCE(1694); + if (lookahead == '\\') ADVANCE(1610); + if (lookahead == '{') ADVANCE(908); + if (lookahead == '}') ADVANCE(914); if (lookahead == '\f' || lookahead == 8203 || lookahead == 8288 || @@ -8320,38 +8422,38 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == '\n' || lookahead == '\r' || lookahead == ' ') ADVANCE(23); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1608); - if (('A' <= lookahead && lookahead <= 'z')) ADVANCE(1602); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1616); + if (('A' <= lookahead && lookahead <= 'z')) ADVANCE(1610); END_STATE(); case 24: - 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 == '"') ADVANCE(1617); + if (lookahead == '&') ADVANCE(1652); + if (lookahead == '(') ADVANCE(1626); + if (lookahead == '*') ADVANCE(1611); + if (lookahead == '+') ADVANCE(1633); + if (lookahead == '-') ADVANCE(1634); + if (lookahead == '.') ADVANCE(1612); + if (lookahead == '/') ADVANCE(907); + if (lookahead == '<') ADVANCE(1635); + if (lookahead == '=') ADVANCE(1638); + if (lookahead == '>') ADVANCE(1639); + if (lookahead == 'N') ADVANCE(960); + if (lookahead == '\\') ADVANCE(1610); + if (lookahead == 'n') ADVANCE(1133); + if (lookahead == '{') ADVANCE(908); + if (lookahead == '}') ADVANCE(914); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1089); + lookahead == 'b') ADVANCE(1093); if (lookahead == 'C' || - lookahead == 'c') ADVANCE(1395); + lookahead == 'c') ADVANCE(1402); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1420); + lookahead == 'e') ADVANCE(1427); if (lookahead == 'G' || - lookahead == 'g') ADVANCE(1130); + lookahead == 'g') ADVANCE(1134); if (lookahead == 'L' || - lookahead == 'l') ADVANCE(1090); + lookahead == 'l') ADVANCE(1094); if (lookahead == 'M' || - lookahead == 'm') ADVANCE(1004); + lookahead == 'm') ADVANCE(1008); if (lookahead == '\f' || lookahead == 8203 || lookahead == 8288 || @@ -8360,36 +8462,36 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == '\n' || lookahead == '\r' || lookahead == ' ') ADVANCE(24); - if (('A' <= lookahead && lookahead <= 'z')) ADVANCE(1602); + if (('A' <= lookahead && lookahead <= 'z')) ADVANCE(1610); END_STATE(); case 25: - 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 == '"') ADVANCE(1617); + if (lookahead == '&') ADVANCE(1652); + if (lookahead == '(') ADVANCE(1626); + if (lookahead == '*') ADVANCE(1611); + if (lookahead == '+') ADVANCE(1633); + if (lookahead == '-') ADVANCE(1634); + if (lookahead == '/') ADVANCE(907); + if (lookahead == '<') ADVANCE(1635); + if (lookahead == '=') ADVANCE(1638); + if (lookahead == '>') ADVANCE(1639); + if (lookahead == '\\') ADVANCE(1610); + if (lookahead == '{') ADVANCE(908); + if (lookahead == '}') ADVANCE(914); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1089); + lookahead == 'b') ADVANCE(1093); if (lookahead == 'C' || - lookahead == 'c') ADVANCE(1395); + lookahead == 'c') ADVANCE(1402); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1420); + lookahead == 'e') ADVANCE(1427); if (lookahead == 'G' || - lookahead == 'g') ADVANCE(1130); + lookahead == 'g') ADVANCE(1134); if (lookahead == 'L' || - lookahead == 'l') ADVANCE(1090); + lookahead == 'l') ADVANCE(1094); if (lookahead == 'M' || - lookahead == 'm') ADVANCE(1004); + lookahead == 'm') ADVANCE(1008); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1129); + lookahead == 'n') ADVANCE(1133); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\f' || @@ -8398,35 +8500,35 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == 8203 || lookahead == 8288 || lookahead == 65279) SKIP(25) - if (('A' <= lookahead && lookahead <= 'z')) ADVANCE(1602); + if (('A' <= lookahead && lookahead <= 'z')) ADVANCE(1610); END_STATE(); case 26: - 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 == '"') ADVANCE(1617); + if (lookahead == '&') ADVANCE(1652); + if (lookahead == '*') ADVANCE(1611); + if (lookahead == '+') ADVANCE(1633); + if (lookahead == '-') ADVANCE(1634); + if (lookahead == '/') ADVANCE(907); + if (lookahead == '<') ADVANCE(1635); + if (lookahead == '=') ADVANCE(1638); + if (lookahead == '>') ADVANCE(1639); + if (lookahead == '\\') ADVANCE(1610); + if (lookahead == '{') ADVANCE(908); + if (lookahead == '}') ADVANCE(914); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1089); + lookahead == 'b') ADVANCE(1093); if (lookahead == 'C' || - lookahead == 'c') ADVANCE(1395); + lookahead == 'c') ADVANCE(1402); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1420); + lookahead == 'e') ADVANCE(1427); if (lookahead == 'G' || - lookahead == 'g') ADVANCE(1130); + lookahead == 'g') ADVANCE(1134); if (lookahead == 'L' || - lookahead == 'l') ADVANCE(1090); + lookahead == 'l') ADVANCE(1094); if (lookahead == 'M' || - lookahead == 'm') ADVANCE(1004); + lookahead == 'm') ADVANCE(1008); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1128); + lookahead == 'n') ADVANCE(1132); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\f' || @@ -8435,66 +8537,66 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == 8203 || lookahead == 8288 || lookahead == 65279) SKIP(26) - if (('A' <= lookahead && lookahead <= 'z')) ADVANCE(1602); + if (('A' <= lookahead && lookahead <= 'z')) ADVANCE(1610); 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 == '"') ADVANCE(1617); + if (lookahead == '\'') ADVANCE(1622); + if (lookahead == '(') ADVANCE(1626); + if (lookahead == ')') ADVANCE(1627); + if (lookahead == '*') ADVANCE(1611); + if (lookahead == '+') ADVANCE(1633); + if (lookahead == ',') ADVANCE(1688); + if (lookahead == '-') ADVANCE(1634); + if (lookahead == '.') ADVANCE(1612); + if (lookahead == '/') ADVANCE(907); + if (lookahead == ':') ADVANCE(1694); + if (lookahead == '<') ADVANCE(1635); + if (lookahead == '=') ADVANCE(1638); + if (lookahead == '>') ADVANCE(1639); + if (lookahead == 'B') ADVANCE(150); + if (lookahead == 'L') ADVANCE(125); + if (lookahead == 'N') ADVANCE(132); + if (lookahead == 'S') ADVANCE(113); if (lookahead == '\\') SKIP(2) - 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 == 'b') ADVANCE(337); + if (lookahead == 'l') ADVANCE(153); + if (lookahead == 'n') ADVANCE(340); + if (lookahead == 's') ADVANCE(345); + if (lookahead == '{') ADVANCE(908); + if (lookahead == '}') ADVANCE(914); if (lookahead == 'A' || - lookahead == 'a') ADVANCE(228); + lookahead == 'a') ADVANCE(230); if (lookahead == 'C' || - lookahead == 'c') ADVANCE(152); + lookahead == 'c') ADVANCE(154); if (lookahead == 'D' || - lookahead == 'd') ADVANCE(153); + lookahead == 'd') ADVANCE(155); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(154); + lookahead == 'e') ADVANCE(156); if (lookahead == 'F' || - lookahead == 'f') ADVANCE(462); + lookahead == 'f') ADVANCE(465); if (lookahead == 'G' || - lookahead == 'g') ADVANCE(347); + lookahead == 'g') ADVANCE(349); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(557); + lookahead == 'i') ADVANCE(560); if (lookahead == 'K' || - lookahead == 'k') ADVANCE(358); + lookahead == 'k') ADVANCE(360); if (lookahead == 'M' || - lookahead == 'm') ADVANCE(156); + lookahead == 'm') ADVANCE(158); if (lookahead == 'O' || - lookahead == 'o') ADVANCE(425); + lookahead == 'o') ADVANCE(427); if (lookahead == 'P' || - lookahead == 'p') ADVANCE(157); + lookahead == 'p') ADVANCE(159); if (lookahead == 'R' || - lookahead == 'r') ADVANCE(250); + lookahead == 'r') ADVANCE(252); if (lookahead == 'T' || - lookahead == 't') ADVANCE(167); + lookahead == 't') ADVANCE(169); if (lookahead == 'U' || - lookahead == 'u') ADVANCE(586); + lookahead == 'u') ADVANCE(589); if (lookahead == 'V' || - lookahead == 'v') ADVANCE(625); + lookahead == 'v') ADVANCE(628); if (lookahead == 'W' || - lookahead == 'w') ADVANCE(450); + lookahead == 'w') ADVANCE(453); if (lookahead == '\f' || lookahead == 8203 || lookahead == 8288 || @@ -8503,34 +8605,34 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == '\n' || lookahead == '\r' || lookahead == ' ') ADVANCE(27); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1608); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1616); END_STATE(); 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(1617); + if (lookahead == '\'') ADVANCE(1622); + if (lookahead == '(') ADVANCE(1626); + if (lookahead == ')') ADVANCE(1627); + if (lookahead == '-') ADVANCE(1628); if (lookahead == '/') ADVANCE(50); - if (lookahead == '?') ADVANCE(1607); - if (lookahead == '\\') ADVANCE(1602); - if (lookahead == '{') ADVANCE(904); + if (lookahead == '?') ADVANCE(1615); + if (lookahead == '\\') ADVANCE(1610); + if (lookahead == '{') ADVANCE(908); if (lookahead == 'A' || - lookahead == 'a') ADVANCE(1577); + lookahead == 'a') ADVANCE(1585); if (lookahead == 'C' || - lookahead == 'c') ADVANCE(1396); + lookahead == 'c') ADVANCE(1403); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1359); + lookahead == 'i') ADVANCE(1366); if (lookahead == 'M' || - lookahead == 'm') ADVANCE(1029); + lookahead == 'm') ADVANCE(1033); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1139); + lookahead == 'n') ADVANCE(1143); if (lookahead == 'O' || - lookahead == 'o') ADVANCE(1554); + lookahead == 'o') ADVANCE(1562); if (lookahead == 'S' || - lookahead == 's') ADVANCE(1568); + lookahead == 's') ADVANCE(1576); if (lookahead == 'T' || - lookahead == 't') ADVANCE(1402); + lookahead == 't') ADVANCE(1409); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\f' || @@ -8539,33 +8641,33 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == 8203 || lookahead == 8288 || lookahead == 65279) SKIP(28) - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1608); - if (('B' <= lookahead && lookahead <= 'z')) ADVANCE(1602); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1616); + if (('B' <= lookahead && lookahead <= 'z')) ADVANCE(1610); END_STATE(); 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(1617); + if (lookahead == '\'') ADVANCE(1622); + if (lookahead == '(') ADVANCE(1626); + if (lookahead == ')') ADVANCE(1627); + if (lookahead == '-') ADVANCE(1628); if (lookahead == '/') ADVANCE(50); - if (lookahead == '?') ADVANCE(1607); - if (lookahead == '\\') ADVANCE(1602); - if (lookahead == '{') ADVANCE(904); + if (lookahead == '?') ADVANCE(1615); + if (lookahead == '\\') ADVANCE(1610); + if (lookahead == '{') ADVANCE(908); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1590); + lookahead == 'e') ADVANCE(1598); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1361); + lookahead == 'i') ADVANCE(1368); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1138); + lookahead == 'n') ADVANCE(1142); if (lookahead == 'O' || - lookahead == 'o') ADVANCE(1194); + lookahead == 'o') ADVANCE(1198); if (lookahead == 'S' || - lookahead == 's') ADVANCE(1227); + lookahead == 's') ADVANCE(1233); if (lookahead == 'U' || - lookahead == 'u') ADVANCE(1495); + lookahead == 'u') ADVANCE(1502); if (lookahead == 'W' || - lookahead == 'w') ADVANCE(1226); + lookahead == 'w') ADVANCE(1232); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\f' || @@ -8574,25 +8676,25 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == 8203 || lookahead == 8288 || lookahead == 65279) SKIP(29) - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1608); - if (('A' <= lookahead && lookahead <= 'z')) ADVANCE(1602); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1616); + if (('A' <= lookahead && lookahead <= 'z')) ADVANCE(1610); END_STATE(); 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(1617); + if (lookahead == '\'') ADVANCE(1622); + if (lookahead == '(') ADVANCE(1626); + if (lookahead == ')') ADVANCE(1627); + if (lookahead == '-') ADVANCE(1628); if (lookahead == '/') ADVANCE(50); - if (lookahead == '?') ADVANCE(1607); - if (lookahead == '\\') ADVANCE(1602); - if (lookahead == '{') ADVANCE(904); + if (lookahead == '?') ADVANCE(1615); + if (lookahead == '\\') ADVANCE(1610); + if (lookahead == '{') ADVANCE(908); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1359); + lookahead == 'i') ADVANCE(1366); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1139); + lookahead == 'n') ADVANCE(1143); if (lookahead == 'O' || - lookahead == 'o') ADVANCE(1554); + lookahead == 'o') ADVANCE(1562); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\f' || @@ -8601,40 +8703,40 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == 8203 || lookahead == 8288 || lookahead == 65279) SKIP(30) - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1608); - if (('A' <= lookahead && lookahead <= 'z')) ADVANCE(1602); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1616); + if (('A' <= lookahead && lookahead <= 'z')) ADVANCE(1610); END_STATE(); 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 == '"') ADVANCE(1617); + if (lookahead == '\'') ADVANCE(1622); + if (lookahead == '(') ADVANCE(1626); + if (lookahead == '*') ADVANCE(1611); + if (lookahead == '+') ADVANCE(1633); + if (lookahead == '-') ADVANCE(1628); + if (lookahead == '.') ADVANCE(1612); + if (lookahead == '/') ADVANCE(907); + if (lookahead == '<') ADVANCE(1635); + if (lookahead == '=') ADVANCE(1638); + if (lookahead == '>') ADVANCE(1639); + if (lookahead == '?') ADVANCE(1615); + if (lookahead == 'N') ADVANCE(959); + if (lookahead == '\\') ADVANCE(1610); + if (lookahead == 'n') ADVANCE(1097); + if (lookahead == '{') ADVANCE(908); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1089); + lookahead == 'b') ADVANCE(1093); if (lookahead == 'C' || - lookahead == 'c') ADVANCE(1395); + lookahead == 'c') ADVANCE(1402); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1420); + lookahead == 'e') ADVANCE(1427); if (lookahead == 'G' || - lookahead == 'g') ADVANCE(1130); + lookahead == 'g') ADVANCE(1134); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1361); + lookahead == 'i') ADVANCE(1368); if (lookahead == 'L' || - lookahead == 'l') ADVANCE(1090); + lookahead == 'l') ADVANCE(1094); if (lookahead == 'M' || - lookahead == 'm') ADVANCE(1004); + lookahead == 'm') ADVANCE(1008); if (lookahead == '\f' || lookahead == 8203 || lookahead == 8288 || @@ -8643,40 +8745,40 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == '\n' || lookahead == '\r' || lookahead == ' ') ADVANCE(31); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1608); - if (('A' <= lookahead && lookahead <= 'z')) ADVANCE(1602); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1616); + if (('A' <= lookahead && lookahead <= 'z')) ADVANCE(1610); END_STATE(); 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 == '"') ADVANCE(1617); + if (lookahead == '\'') ADVANCE(1622); + if (lookahead == '(') ADVANCE(1626); + if (lookahead == '*') ADVANCE(1611); + if (lookahead == '+') ADVANCE(1633); + if (lookahead == '-') ADVANCE(1628); + if (lookahead == '.') ADVANCE(1612); + if (lookahead == '/') ADVANCE(907); + if (lookahead == '<') ADVANCE(1635); + if (lookahead == '=') ADVANCE(1638); + if (lookahead == '>') ADVANCE(1639); + if (lookahead == '?') ADVANCE(1615); + if (lookahead == '\\') ADVANCE(1610); + if (lookahead == '{') ADVANCE(908); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1089); + lookahead == 'b') ADVANCE(1093); if (lookahead == 'C' || - lookahead == 'c') ADVANCE(1395); + lookahead == 'c') ADVANCE(1402); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1420); + lookahead == 'e') ADVANCE(1427); if (lookahead == 'G' || - lookahead == 'g') ADVANCE(1130); + lookahead == 'g') ADVANCE(1134); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1361); + lookahead == 'i') ADVANCE(1368); if (lookahead == 'L' || - lookahead == 'l') ADVANCE(1090); + lookahead == 'l') ADVANCE(1094); if (lookahead == 'M' || - lookahead == 'm') ADVANCE(1004); + lookahead == 'm') ADVANCE(1008); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1092); + lookahead == 'n') ADVANCE(1096); if (lookahead == '\f' || lookahead == 8203 || lookahead == 8288 || @@ -8685,40 +8787,40 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == '\n' || lookahead == '\r' || lookahead == ' ') ADVANCE(32); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1608); - if (('A' <= lookahead && lookahead <= 'z')) ADVANCE(1602); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1616); + if (('A' <= lookahead && lookahead <= 'z')) ADVANCE(1610); END_STATE(); 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 == '"') ADVANCE(1617); + if (lookahead == '\'') ADVANCE(1622); + if (lookahead == '(') ADVANCE(1626); + if (lookahead == '*') ADVANCE(1611); + if (lookahead == '+') ADVANCE(1633); + if (lookahead == '-') ADVANCE(1628); + if (lookahead == '.') ADVANCE(1612); + if (lookahead == '/') ADVANCE(907); + if (lookahead == '<') ADVANCE(1635); + if (lookahead == '=') ADVANCE(1638); + if (lookahead == '>') ADVANCE(1639); + if (lookahead == '?') ADVANCE(1615); + if (lookahead == '\\') ADVANCE(1610); + if (lookahead == '{') ADVANCE(908); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1089); + lookahead == 'b') ADVANCE(1093); if (lookahead == 'C' || - lookahead == 'c') ADVANCE(1395); + lookahead == 'c') ADVANCE(1402); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1420); + lookahead == 'e') ADVANCE(1427); if (lookahead == 'G' || - lookahead == 'g') ADVANCE(1130); + lookahead == 'g') ADVANCE(1134); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1361); + lookahead == 'i') ADVANCE(1368); if (lookahead == 'L' || - lookahead == 'l') ADVANCE(1090); + lookahead == 'l') ADVANCE(1094); if (lookahead == 'M' || - lookahead == 'm') ADVANCE(1004); + lookahead == 'm') ADVANCE(1008); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1093); + lookahead == 'n') ADVANCE(1097); if (lookahead == '\f' || lookahead == 8203 || lookahead == 8288 || @@ -8727,25 +8829,25 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == '\n' || lookahead == '\r' || lookahead == ' ') ADVANCE(33); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1608); - if (('A' <= lookahead && lookahead <= 'z')) ADVANCE(1602); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1616); + if (('A' <= lookahead && lookahead <= 'z')) ADVANCE(1610); END_STATE(); 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(1617); + if (lookahead == '\'') ADVANCE(1622); + if (lookahead == '(') ADVANCE(1626); + if (lookahead == '-') ADVANCE(1628); + if (lookahead == '.') ADVANCE(1612); 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 == ':') ADVANCE(1694); + if (lookahead == '=') ADVANCE(1638); + if (lookahead == '?') ADVANCE(1615); + if (lookahead == '\\') ADVANCE(1610); + if (lookahead == '{') ADVANCE(908); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1361); + lookahead == 'i') ADVANCE(1368); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1139); + lookahead == 'n') ADVANCE(1143); if (lookahead == '\f' || lookahead == 8203 || lookahead == 8288 || @@ -8754,14 +8856,14 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == '\n' || lookahead == '\r' || lookahead == ' ') ADVANCE(34); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1608); - if (('A' <= lookahead && lookahead <= 'z')) ADVANCE(1602); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1616); + if (('A' <= lookahead && lookahead <= 'z')) ADVANCE(1610); END_STATE(); case 35: - if (lookahead == '"') ADVANCE(1609); - if (lookahead == '/') ADVANCE(1610); - if (lookahead == '\\') ADVANCE(14); - if (lookahead == '{') ADVANCE(906); + if (lookahead == '"') ADVANCE(1617); + if (lookahead == '/') ADVANCE(1618); + if (lookahead == '\\') ADVANCE(13); + if (lookahead == '{') ADVANCE(910); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\f' || @@ -8769,14 +8871,14 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == ' ' || lookahead == 8203 || lookahead == 8288 || - lookahead == 65279) ADVANCE(1611); - if (lookahead != 0) ADVANCE(1612); + lookahead == 65279) ADVANCE(1619); + if (lookahead != 0) ADVANCE(1620); END_STATE(); case 36: - if (lookahead == '&') ADVANCE(909); + if (lookahead == '&') ADVANCE(913); if (lookahead == '/') ADVANCE(50); - if (lookahead == '\\') ADVANCE(1602); - if (lookahead == '{') ADVANCE(904); + if (lookahead == '\\') ADVANCE(1610); + if (lookahead == '{') ADVANCE(908); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\f' || @@ -8785,14 +8887,14 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == 8203 || lookahead == 8288 || lookahead == 65279) SKIP(36) - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1608); - if (('A' <= lookahead && lookahead <= 'z')) ADVANCE(1602); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1616); + if (('A' <= lookahead && lookahead <= 'z')) ADVANCE(1610); END_STATE(); case 37: - if (lookahead == '\'') ADVANCE(1614); - if (lookahead == '/') ADVANCE(1615); - if (lookahead == '\\') ADVANCE(13); - if (lookahead == '{') ADVANCE(907); + if (lookahead == '\'') ADVANCE(1622); + if (lookahead == '/') ADVANCE(1623); + if (lookahead == '\\') ADVANCE(14); + if (lookahead == '{') ADVANCE(911); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\f' || @@ -8800,60 +8902,60 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == ' ' || lookahead == 8203 || lookahead == 8288 || - lookahead == 65279) ADVANCE(1616); - if (lookahead != 0) ADVANCE(1617); + lookahead == 65279) ADVANCE(1624); + if (lookahead != 0) ADVANCE(1625); END_STATE(); 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 == '(') ADVANCE(1626); + if (lookahead == ')') ADVANCE(1627); + if (lookahead == '*') ADVANCE(1611); + if (lookahead == '+') ADVANCE(1633); + if (lookahead == ',') ADVANCE(1688); + if (lookahead == '-') ADVANCE(1634); + if (lookahead == '.') ADVANCE(1612); + if (lookahead == '/') ADVANCE(907); + if (lookahead == ':') ADVANCE(1694); + if (lookahead == '<') ADVANCE(1635); + if (lookahead == '=') ADVANCE(1638); + if (lookahead == '>') ADVANCE(1639); + if (lookahead == 'B') ADVANCE(151); + if (lookahead == 'M') ADVANCE(119); + if (lookahead == 'N') ADVANCE(137); if (lookahead == '\\') SKIP(4) - if (lookahead == 'b') ADVANCE(336); - if (lookahead == 'm') ADVANCE(155); - if (lookahead == 'n') ADVANCE(339); - if (lookahead == '{') ADVANCE(904); + if (lookahead == 'b') ADVANCE(338); + if (lookahead == 'm') ADVANCE(157); + if (lookahead == 'n') ADVANCE(341); + if (lookahead == '{') ADVANCE(908); if (lookahead == 'A' || - lookahead == 'a') ADVANCE(597); + lookahead == 'a') ADVANCE(599); if (lookahead == 'C' || - lookahead == 'c') ADVANCE(628); + lookahead == 'c') ADVANCE(631); if (lookahead == 'D' || - lookahead == 'd') ADVANCE(371); + lookahead == 'd') ADVANCE(373); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(247); + lookahead == 'e') ADVANCE(249); if (lookahead == 'F' || - lookahead == 'f') ADVANCE(465); + lookahead == 'f') ADVANCE(468); if (lookahead == 'G' || - lookahead == 'g') ADVANCE(347); + lookahead == 'g') ADVANCE(349); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(589); + lookahead == 'i') ADVANCE(592); if (lookahead == 'K' || - lookahead == 'k') ADVANCE(358); + lookahead == 'k') ADVANCE(360); if (lookahead == 'L' || - lookahead == 'l') ADVANCE(159); + lookahead == 'l') ADVANCE(161); if (lookahead == 'O' || - lookahead == 'o') ADVANCE(424); + lookahead == 'o') ADVANCE(426); if (lookahead == 'P' || - lookahead == 'p') ADVANCE(212); + lookahead == 'p') ADVANCE(214); if (lookahead == 'S' || - lookahead == 's') ADVANCE(624); + lookahead == 's') ADVANCE(627); if (lookahead == 'T' || - lookahead == 't') ADVANCE(457); + lookahead == 't') ADVANCE(460); if (lookahead == 'U' || - lookahead == 'u') ADVANCE(593); + lookahead == 'u') ADVANCE(596); if (lookahead == 'W' || - lookahead == 'w') ADVANCE(455); + lookahead == 'w') ADVANCE(458); if (lookahead == '\f' || lookahead == 8203 || lookahead == 8288 || @@ -8864,56 +8966,56 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == ' ') ADVANCE(38); END_STATE(); 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 == '(') ADVANCE(1626); + if (lookahead == ')') ADVANCE(1627); + if (lookahead == '*') ADVANCE(1611); + if (lookahead == '+') ADVANCE(1633); + if (lookahead == ',') ADVANCE(1688); + if (lookahead == '-') ADVANCE(1634); + if (lookahead == '.') ADVANCE(1612); + if (lookahead == '/') ADVANCE(907); + if (lookahead == ':') ADVANCE(1694); + if (lookahead == '<') ADVANCE(1635); + if (lookahead == '=') ADVANCE(1638); + if (lookahead == '>') ADVANCE(1639); + if (lookahead == 'L') ADVANCE(126); + if (lookahead == 'S') ADVANCE(114); if (lookahead == '\\') SKIP(6) - if (lookahead == 'l') ADVANCE(201); - if (lookahead == 's') ADVANCE(344); - if (lookahead == '{') ADVANCE(904); + if (lookahead == 'l') ADVANCE(202); + if (lookahead == 's') ADVANCE(346); + if (lookahead == '{') ADVANCE(908); if (lookahead == 'A' || - lookahead == 'a') ADVANCE(229); + lookahead == 'a') ADVANCE(231); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(337); + lookahead == 'b') ADVANCE(339); if (lookahead == 'C' || - lookahead == 'c') ADVANCE(214); + lookahead == 'c') ADVANCE(216); if (lookahead == 'D' || - lookahead == 'd') ADVANCE(200); + lookahead == 'd') ADVANCE(201); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(584); + lookahead == 'e') ADVANCE(587); if (lookahead == 'F' || - lookahead == 'f') ADVANCE(504); + lookahead == 'f') ADVANCE(507); if (lookahead == 'G' || - lookahead == 'g') ADVANCE(305); + lookahead == 'g') ADVANCE(307); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(558); + lookahead == 'i') ADVANCE(561); if (lookahead == 'M' || - lookahead == 'm') ADVANCE(160); + lookahead == 'm') ADVANCE(162); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(340); + lookahead == 'n') ADVANCE(342); if (lookahead == 'O' || - lookahead == 'o') ADVANCE(424); + lookahead == 'o') ADVANCE(426); if (lookahead == 'P' || - lookahead == 'p') ADVANCE(698); + lookahead == 'p') ADVANCE(701); if (lookahead == 'R' || - lookahead == 'r') ADVANCE(251); + lookahead == 'r') ADVANCE(253); if (lookahead == 'T' || - lookahead == 't') ADVANCE(655); + lookahead == 't') ADVANCE(658); if (lookahead == 'U' || - lookahead == 'u') ADVANCE(747); + lookahead == 'u') ADVANCE(750); if (lookahead == 'W' || - lookahead == 'w') ADVANCE(452); + lookahead == 'w') ADVANCE(455); if (lookahead == '\f' || lookahead == 8203 || lookahead == 8288 || @@ -8924,47 +9026,47 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == ' ') ADVANCE(39); END_STATE(); 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 == '(') ADVANCE(1626); + if (lookahead == '*') ADVANCE(1611); + if (lookahead == '+') ADVANCE(1633); + if (lookahead == ',') ADVANCE(1688); + if (lookahead == '-') ADVANCE(1634); + if (lookahead == '.') ADVANCE(1612); + if (lookahead == '/') ADVANCE(907); + if (lookahead == ':') ADVANCE(1694); + if (lookahead == '<') ADVANCE(1635); + if (lookahead == '=') ADVANCE(1638); + if (lookahead == '>') ADVANCE(1639); + if (lookahead == 'N') ADVANCE(138); + if (lookahead == 'S') ADVANCE(115); if (lookahead == '\\') SKIP(8) - if (lookahead == 'n') ADVANCE(341); - if (lookahead == 's') ADVANCE(449); - if (lookahead == '{') ADVANCE(904); + if (lookahead == 'n') ADVANCE(343); + if (lookahead == 's') ADVANCE(452); + if (lookahead == '{') ADVANCE(908); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(337); + lookahead == 'b') ADVANCE(339); if (lookahead == 'C' || - lookahead == 'c') ADVANCE(215); + lookahead == 'c') ADVANCE(217); if (lookahead == 'D' || - lookahead == 'd') ADVANCE(621); + lookahead == 'd') ADVANCE(624); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(680); + lookahead == 'e') ADVANCE(683); if (lookahead == 'F' || - lookahead == 'f') ADVANCE(507); + lookahead == 'f') ADVANCE(510); if (lookahead == 'G' || - lookahead == 'g') ADVANCE(347); + lookahead == 'g') ADVANCE(349); if (lookahead == 'L' || - lookahead == 'l') ADVANCE(304); + lookahead == 'l') ADVANCE(306); if (lookahead == 'M' || - lookahead == 'm') ADVANCE(196); + lookahead == 'm') ADVANCE(197); if (lookahead == 'O' || - lookahead == 'o') ADVANCE(575); + lookahead == 'o') ADVANCE(578); if (lookahead == 'Q' || - lookahead == 'q') ADVANCE(847); + lookahead == 'q') ADVANCE(851); if (lookahead == 'R' || - lookahead == 'r') ADVANCE(252); + lookahead == 'r') ADVANCE(254); if (lookahead == 'U' || - lookahead == 'u') ADVANCE(766); + lookahead == 'u') ADVANCE(769); if (lookahead == '\f' || lookahead == 8203 || lookahead == 8288 || @@ -8975,35 +9077,35 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == ' ') ADVANCE(40); END_STATE(); 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 == '(') ADVANCE(1626); + if (lookahead == '*') ADVANCE(1611); + if (lookahead == '+') ADVANCE(1633); + if (lookahead == ',') ADVANCE(1688); + if (lookahead == '-') ADVANCE(1634); + if (lookahead == '/') ADVANCE(907); + if (lookahead == '<') ADVANCE(1635); + if (lookahead == '=') ADVANCE(1638); + if (lookahead == '>') ADVANCE(1639); + if (lookahead == '\\') ADVANCE(1610); + if (lookahead == '{') ADVANCE(908); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1089); + lookahead == 'b') ADVANCE(1093); if (lookahead == 'C' || - lookahead == 'c') ADVANCE(1395); + lookahead == 'c') ADVANCE(1402); if (lookahead == 'D' || - lookahead == 'd') ADVANCE(1368); + lookahead == 'd') ADVANCE(1375); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1420); + lookahead == 'e') ADVANCE(1427); if (lookahead == 'F' || - lookahead == 'f') ADVANCE(1466); + lookahead == 'f') ADVANCE(1473); if (lookahead == 'G' || - lookahead == 'g') ADVANCE(1130); + lookahead == 'g') ADVANCE(1134); if (lookahead == 'L' || - lookahead == 'l') ADVANCE(1090); + lookahead == 'l') ADVANCE(1094); if (lookahead == 'M' || - lookahead == 'm') ADVANCE(1004); + lookahead == 'm') ADVANCE(1008); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1129); + lookahead == 'n') ADVANCE(1133); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\f' || @@ -9012,19 +9114,19 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == 8203 || lookahead == 8288 || lookahead == 65279) SKIP(41) - if (('A' <= lookahead && lookahead <= 'z')) ADVANCE(1602); + if (('A' <= lookahead && lookahead <= 'z')) ADVANCE(1610); END_STATE(); case 42: - if (lookahead == '(') ADVANCE(1618); - if (lookahead == ',') ADVANCE(1680); + if (lookahead == '(') ADVANCE(1626); + if (lookahead == ',') ADVANCE(1688); if (lookahead == '/') ADVANCE(50); - if (lookahead == ':') ADVANCE(1686); - if (lookahead == '\\') ADVANCE(1602); - if (lookahead == '{') ADVANCE(904); + if (lookahead == ':') ADVANCE(1694); + if (lookahead == '\\') ADVANCE(1610); + if (lookahead == '{') ADVANCE(908); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1432); + lookahead == 'b') ADVANCE(1439); if (lookahead == 'O' || - lookahead == 'o') ADVANCE(1325); + lookahead == 'o') ADVANCE(1332); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\f' || @@ -9033,18 +9135,18 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == 8203 || lookahead == 8288 || lookahead == 65279) SKIP(42) - if (('A' <= lookahead && lookahead <= 'z')) ADVANCE(1602); + if (('A' <= lookahead && lookahead <= 'z')) ADVANCE(1610); END_STATE(); case 43: - if (lookahead == '(') ADVANCE(1618); - if (lookahead == '.') ADVANCE(1604); + if (lookahead == '(') ADVANCE(1626); + if (lookahead == '.') ADVANCE(1612); if (lookahead == '/') ADVANCE(50); - if (lookahead == '\\') ADVANCE(1602); - if (lookahead == '{') ADVANCE(904); + if (lookahead == '\\') ADVANCE(1610); + if (lookahead == '{') ADVANCE(908); if (lookahead == 'F' || - lookahead == 'f') ADVANCE(1258); + lookahead == 'f') ADVANCE(1265); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1365); + lookahead == 'i') ADVANCE(1372); if (lookahead == '\f' || lookahead == 8203 || lookahead == 8288 || @@ -9053,19 +9155,19 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == '\n' || lookahead == '\r' || lookahead == ' ') ADVANCE(43); - if (('A' <= lookahead && lookahead <= 'z')) ADVANCE(1602); + if (('A' <= lookahead && lookahead <= 'z')) ADVANCE(1610); END_STATE(); case 44: - if (lookahead == ')') ADVANCE(1619); + if (lookahead == ')') ADVANCE(1627); if (lookahead == '/') ADVANCE(50); - if (lookahead == '\\') ADVANCE(1602); - if (lookahead == '{') ADVANCE(904); + if (lookahead == '\\') ADVANCE(1610); + if (lookahead == '{') ADVANCE(908); if (lookahead == 'D' || - lookahead == 'd') ADVANCE(1021); + lookahead == 'd') ADVANCE(1025); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1361); + lookahead == 'i') ADVANCE(1368); if (lookahead == 'O' || - lookahead == 'o') ADVANCE(1554); + lookahead == 'o') ADVANCE(1562); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\f' || @@ -9074,37 +9176,37 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == 8203 || lookahead == 8288 || lookahead == 65279) SKIP(44) - if (('A' <= lookahead && lookahead <= 'z')) ADVANCE(1602); + if (('A' <= lookahead && lookahead <= 'z')) ADVANCE(1610); END_STATE(); 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 == '*') ADVANCE(1611); + if (lookahead == '+') ADVANCE(1633); + if (lookahead == ',') ADVANCE(1688); + if (lookahead == '-') ADVANCE(1634); + if (lookahead == '/') ADVANCE(907); + if (lookahead == '<') ADVANCE(1635); + if (lookahead == '=') ADVANCE(1638); + if (lookahead == '>') ADVANCE(1639); + if (lookahead == 'N') ADVANCE(960); + if (lookahead == '\\') ADVANCE(1610); + if (lookahead == 'n') ADVANCE(1133); + if (lookahead == '{') ADVANCE(908); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1089); + lookahead == 'b') ADVANCE(1093); if (lookahead == 'C' || - lookahead == 'c') ADVANCE(1395); + lookahead == 'c') ADVANCE(1402); if (lookahead == 'D' || - lookahead == 'd') ADVANCE(1368); + lookahead == 'd') ADVANCE(1375); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1420); + lookahead == 'e') ADVANCE(1427); if (lookahead == 'F' || - lookahead == 'f') ADVANCE(1466); + lookahead == 'f') ADVANCE(1473); if (lookahead == 'G' || - lookahead == 'g') ADVANCE(1130); + lookahead == 'g') ADVANCE(1134); if (lookahead == 'L' || - lookahead == 'l') ADVANCE(1090); + lookahead == 'l') ADVANCE(1094); if (lookahead == 'M' || - lookahead == 'm') ADVANCE(1004); + lookahead == 'm') ADVANCE(1008); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\f' || @@ -9113,37 +9215,37 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == 8203 || lookahead == 8288 || lookahead == 65279) SKIP(45) - if (('A' <= lookahead && lookahead <= 'z')) ADVANCE(1602); + if (('A' <= lookahead && lookahead <= 'z')) ADVANCE(1610); END_STATE(); 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 == '*') ADVANCE(1611); + if (lookahead == '+') ADVANCE(1633); + if (lookahead == ',') ADVANCE(1688); + if (lookahead == '-') ADVANCE(1634); + if (lookahead == '/') ADVANCE(907); + if (lookahead == '<') ADVANCE(1635); + if (lookahead == '=') ADVANCE(1638); + if (lookahead == '>') ADVANCE(1639); + if (lookahead == '\\') ADVANCE(1610); + if (lookahead == '{') ADVANCE(908); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1089); + lookahead == 'b') ADVANCE(1093); if (lookahead == 'C' || - lookahead == 'c') ADVANCE(1395); + lookahead == 'c') ADVANCE(1402); if (lookahead == 'D' || - lookahead == 'd') ADVANCE(1368); + lookahead == 'd') ADVANCE(1375); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1420); + lookahead == 'e') ADVANCE(1427); if (lookahead == 'F' || - lookahead == 'f') ADVANCE(1466); + lookahead == 'f') ADVANCE(1473); if (lookahead == 'G' || - lookahead == 'g') ADVANCE(1130); + lookahead == 'g') ADVANCE(1134); if (lookahead == 'L' || - lookahead == 'l') ADVANCE(1090); + lookahead == 'l') ADVANCE(1094); if (lookahead == 'M' || - lookahead == 'm') ADVANCE(1004); + lookahead == 'm') ADVANCE(1008); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1128); + lookahead == 'n') ADVANCE(1132); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\f' || @@ -9152,43 +9254,43 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == 8203 || lookahead == 8288 || lookahead == 65279) SKIP(46) - if (('A' <= lookahead && lookahead <= 'z')) ADVANCE(1602); + if (('A' <= lookahead && lookahead <= 'z')) ADVANCE(1610); 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 == '*') ADVANCE(1611); + if (lookahead == '+') ADVANCE(1633); + if (lookahead == '-') ADVANCE(1634); + if (lookahead == '.') ADVANCE(1614); + if (lookahead == '/') ADVANCE(907); + if (lookahead == '<') ADVANCE(1635); + if (lookahead == '=') ADVANCE(1638); + if (lookahead == '>') ADVANCE(1639); + if (lookahead == 'N') ADVANCE(139); if (lookahead == '\\') SKIP(10) - if (lookahead == 'n') ADVANCE(342); - if (lookahead == '{') ADVANCE(904); + if (lookahead == 'n') ADVANCE(344); + if (lookahead == '{') ADVANCE(908); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(334); + lookahead == 'b') ADVANCE(336); if (lookahead == 'C' || - lookahead == 'c') ADVANCE(218); + lookahead == 'c') ADVANCE(220); if (lookahead == 'D' || - lookahead == 'd') ADVANCE(346); + lookahead == 'd') ADVANCE(348); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(585); + lookahead == 'e') ADVANCE(588); if (lookahead == 'F' || - lookahead == 'f') ADVANCE(839); + lookahead == 'f') ADVANCE(843); if (lookahead == 'G' || - lookahead == 'g') ADVANCE(305); + lookahead == 'g') ADVANCE(307); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(607); + lookahead == 'i') ADVANCE(610); if (lookahead == 'L' || - lookahead == 'l') ADVANCE(304); + lookahead == 'l') ADVANCE(306); if (lookahead == 'M' || - lookahead == 'm') ADVANCE(197); + lookahead == 'm') ADVANCE(198); if (lookahead == 'P' || - lookahead == 'p') ADVANCE(703); + lookahead == 'p') ADVANCE(706); if (lookahead == 'S' || - lookahead == 's') ADVANCE(401); + lookahead == 's') ADVANCE(403); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\f' || @@ -9199,30 +9301,30 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == 65279) SKIP(47) END_STATE(); 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 == '*') ADVANCE(1611); + if (lookahead == '+') ADVANCE(1633); + if (lookahead == '-') ADVANCE(1634); + if (lookahead == '.') ADVANCE(1612); + if (lookahead == '/') ADVANCE(907); + if (lookahead == '<') ADVANCE(1635); + if (lookahead == '=') ADVANCE(1638); + if (lookahead == '>') ADVANCE(1639); + if (lookahead == 'N') ADVANCE(962); + if (lookahead == '\\') ADVANCE(1610); + if (lookahead == 'n') ADVANCE(1132); + if (lookahead == '{') ADVANCE(908); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1089); + lookahead == 'b') ADVANCE(1093); if (lookahead == 'C' || - lookahead == 'c') ADVANCE(1395); + lookahead == 'c') ADVANCE(1402); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1420); + lookahead == 'e') ADVANCE(1427); if (lookahead == 'G' || - lookahead == 'g') ADVANCE(1130); + lookahead == 'g') ADVANCE(1134); if (lookahead == 'L' || - lookahead == 'l') ADVANCE(1090); + lookahead == 'l') ADVANCE(1094); if (lookahead == 'M' || - lookahead == 'm') ADVANCE(1004); + lookahead == 'm') ADVANCE(1008); if (lookahead == '\f' || lookahead == 8203 || lookahead == 8288 || @@ -9231,25 +9333,25 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == '\n' || lookahead == '\r' || lookahead == ' ') ADVANCE(48); - if (('A' <= lookahead && lookahead <= 'z')) ADVANCE(1602); + if (('A' <= lookahead && lookahead <= 'z')) ADVANCE(1610); END_STATE(); case 49: - if (lookahead == '*') ADVANCE(897); - if (lookahead == '.') ADVANCE(150); - if (lookahead == '/') ADVANCE(889); + if (lookahead == '*') ADVANCE(901); + if (lookahead == '.') ADVANCE(152); + if (lookahead == '/') ADVANCE(893); if (('-' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || lookahead == '|') ADVANCE(92); END_STATE(); case 50: - if (lookahead == '*') ADVANCE(897); - if (lookahead == '/') ADVANCE(887); + if (lookahead == '*') ADVANCE(901); + if (lookahead == '/') ADVANCE(891); END_STATE(); case 51: - if (lookahead == '*') ADVANCE(902); + if (lookahead == '*') ADVANCE(906); if (lookahead == '/') ADVANCE(53); if (lookahead == '\\') ADVANCE(19); - if (lookahead == '{') ADVANCE(905); + if (lookahead == '{') ADVANCE(909); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\f' || @@ -9261,26 +9363,26 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead != 0) ADVANCE(52); END_STATE(); case 52: - if (lookahead == '*') ADVANCE(902); + if (lookahead == '*') ADVANCE(906); if (lookahead != 0) ADVANCE(52); END_STATE(); case 53: - if (lookahead == '*') ADVANCE(898); - if (lookahead == '/') ADVANCE(888); + if (lookahead == '*') ADVANCE(902); + if (lookahead == '/') ADVANCE(892); if (lookahead != 0) ADVANCE(52); END_STATE(); case 54: - if (lookahead == ',') ADVANCE(1680); + if (lookahead == ',') ADVANCE(1688); if (lookahead == '/') ADVANCE(50); - if (lookahead == ':') ADVANCE(1686); - if (lookahead == '\\') ADVANCE(1602); - if (lookahead == '{') ADVANCE(904); + if (lookahead == ':') ADVANCE(1694); + if (lookahead == '\\') ADVANCE(1610); + if (lookahead == '{') ADVANCE(908); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1432); + lookahead == 'b') ADVANCE(1439); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1384); + lookahead == 'n') ADVANCE(1391); if (lookahead == 'O' || - lookahead == 'o') ADVANCE(1325); + lookahead == 'o') ADVANCE(1332); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\f' || @@ -9289,16 +9391,16 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == 8203 || lookahead == 8288 || lookahead == 65279) SKIP(54) - if (('A' <= lookahead && lookahead <= 'z')) ADVANCE(1602); + if (('A' <= lookahead && lookahead <= 'z')) ADVANCE(1610); END_STATE(); case 55: - if (lookahead == ',') ADVANCE(1680); + if (lookahead == ',') ADVANCE(1688); if (lookahead == '/') ADVANCE(50); - if (lookahead == ':') ADVANCE(1686); - if (lookahead == '\\') ADVANCE(1602); - if (lookahead == '{') ADVANCE(904); + if (lookahead == ':') ADVANCE(1694); + if (lookahead == '\\') ADVANCE(1610); + if (lookahead == '{') ADVANCE(908); if (lookahead == 'O' || - lookahead == 'o') ADVANCE(1325); + lookahead == 'o') ADVANCE(1332); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\f' || @@ -9307,17 +9409,17 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == 8203 || lookahead == 8288 || lookahead == 65279) SKIP(55) - if (('A' <= lookahead && lookahead <= 'z')) ADVANCE(1602); + if (('A' <= lookahead && lookahead <= 'z')) ADVANCE(1610); END_STATE(); case 56: - if (lookahead == ',') ADVANCE(1680); + if (lookahead == ',') ADVANCE(1688); if (lookahead == '/') ADVANCE(50); - if (lookahead == '\\') ADVANCE(1602); - if (lookahead == '{') ADVANCE(904); + if (lookahead == '\\') ADVANCE(1610); + if (lookahead == '{') ADVANCE(908); if (lookahead == 'D' || - lookahead == 'd') ADVANCE(1368); + lookahead == 'd') ADVANCE(1375); if (lookahead == 'F' || - lookahead == 'f') ADVANCE(1466); + lookahead == 'f') ADVANCE(1473); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\f' || @@ -9326,119 +9428,119 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == 8203 || lookahead == 8288 || lookahead == 65279) SKIP(56) - if (('A' <= lookahead && lookahead <= 'z')) ADVANCE(1602); + if (('A' <= lookahead && lookahead <= 'z')) ADVANCE(1610); END_STATE(); case 57: - if (lookahead == '-') ADVANCE(116); + if (lookahead == '-') ADVANCE(118); if (lookahead == 'N' || lookahead == 'n') ADVANCE(81); END_STATE(); case 58: - if (lookahead == '-') ADVANCE(166); + if (lookahead == '-') ADVANCE(168); if (lookahead == 'N' || lookahead == 'n') ADVANCE(81); END_STATE(); case 59: - if (lookahead == '-') ADVANCE(477); + if (lookahead == '-') ADVANCE(480); END_STATE(); case 60: - if (lookahead == '-') ADVANCE(717); + if (lookahead == '-') ADVANCE(720); if (lookahead == 'S' || - lookahead == 's') ADVANCE(387); + lookahead == 's') ADVANCE(390); END_STATE(); case 61: - if (lookahead == '-') ADVANCE(118); + if (lookahead == '-') ADVANCE(120); END_STATE(); case 62: - if (lookahead == '-') ADVANCE(260); + if (lookahead == '-') ADVANCE(262); END_STATE(); case 63: - if (lookahead == '-') ADVANCE(397); + if (lookahead == '-') ADVANCE(399); END_STATE(); case 64: - if (lookahead == '-') ADVANCE(207); + if (lookahead == '-') ADVANCE(209); END_STATE(); case 65: - if (lookahead == '-') ADVANCE(120); + if (lookahead == '-') ADVANCE(122); END_STATE(); case 66: - if (lookahead == '-') ADVANCE(398); + if (lookahead == '-') ADVANCE(400); END_STATE(); case 67: - if (lookahead == '-') ADVANCE(119); + if (lookahead == '-') ADVANCE(121); END_STATE(); case 68: - if (lookahead == '-') ADVANCE(261); + if (lookahead == '-') ADVANCE(263); END_STATE(); case 69: - if (lookahead == '-') ADVANCE(289); + if (lookahead == '-') ADVANCE(291); END_STATE(); case 70: - if (lookahead == '-') ADVANCE(429); + if (lookahead == '-') ADVANCE(431); END_STATE(); case 71: - if (lookahead == '-') ADVANCE(533); + if (lookahead == '-') ADVANCE(536); END_STATE(); case 72: - if (lookahead == '-') ADVANCE(669); + if (lookahead == '-') ADVANCE(672); END_STATE(); case 73: - if (lookahead == '-') ADVANCE(537); + if (lookahead == '-') ADVANCE(540); END_STATE(); case 74: - if (lookahead == '-') ADVANCE(170); + if (lookahead == '-') ADVANCE(172); END_STATE(); case 75: - if (lookahead == '-') ADVANCE(830); + if (lookahead == '-') ADVANCE(834); END_STATE(); case 76: - if (lookahead == '-') ADVANCE(830); + if (lookahead == '-') ADVANCE(834); if (lookahead == 'N' || lookahead == 'n') ADVANCE(81); END_STATE(); case 77: - if (lookahead == '-') ADVANCE(754); + if (lookahead == '-') ADVANCE(757); if (lookahead == 'S' || - lookahead == 's') ADVANCE(387); + lookahead == 's') ADVANCE(390); END_STATE(); case 78: - if (lookahead == '-') ADVANCE(505); + if (lookahead == '-') ADVANCE(508); END_STATE(); case 79: - if (lookahead == '-') ADVANCE(534); + if (lookahead == '-') ADVANCE(537); END_STATE(); case 80: - if (lookahead == '-') ADVANCE(755); + if (lookahead == '-') ADVANCE(758); if (lookahead == 'D' || - lookahead == 'd') ADVANCE(1743); + lookahead == 'd') ADVANCE(1752); END_STATE(); case 81: - if (lookahead == '-') ADVANCE(765); + if (lookahead == '-') ADVANCE(768); END_STATE(); case 82: - if (lookahead == '-') ADVANCE(479); + if (lookahead == '-') ADVANCE(482); END_STATE(); case 83: - if (lookahead == '-') ADVANCE(564); + if (lookahead == '-') ADVANCE(567); END_STATE(); case 84: - if (lookahead == '-') ADVANCE(649); + if (lookahead == '-') ADVANCE(652); END_STATE(); case 85: - if (lookahead == '-') ADVANCE(826); + if (lookahead == '-') ADVANCE(830); END_STATE(); case 86: - if (lookahead == '-') ADVANCE(716); + if (lookahead == '-') ADVANCE(719); END_STATE(); case 87: - if (lookahead == '-') ADVANCE(476); + if (lookahead == '-') ADVANCE(479); END_STATE(); case 88: - if (lookahead == '.') ADVANCE(1604); + if (lookahead == '.') ADVANCE(1612); if (lookahead == '/') ADVANCE(50); - if (lookahead == 'N') ADVANCE(957); - if (lookahead == '\\') ADVANCE(1602); - if (lookahead == '{') ADVANCE(904); + if (lookahead == 'N') ADVANCE(961); + if (lookahead == '\\') ADVANCE(1610); + if (lookahead == '{') ADVANCE(908); if (lookahead == '\f' || lookahead == 8203 || lookahead == 8288 || @@ -9447,19 +9549,19 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == '\n' || lookahead == '\r' || lookahead == ' ') ADVANCE(88); - if (('A' <= lookahead && lookahead <= 'z')) ADVANCE(1602); + if (('A' <= lookahead && lookahead <= 'z')) ADVANCE(1610); END_STATE(); case 89: - if (lookahead == '.') ADVANCE(1604); + if (lookahead == '.') ADVANCE(1612); if (lookahead == '/') ADVANCE(50); - if (lookahead == '\\') ADVANCE(1602); - if (lookahead == '{') ADVANCE(904); + if (lookahead == '\\') ADVANCE(1610); + if (lookahead == '{') ADVANCE(908); if (lookahead == 'A' || - lookahead == 'a') ADVANCE(1473); + lookahead == 'a') ADVANCE(1480); if (lookahead == 'F' || - lookahead == 'f') ADVANCE(1258); + lookahead == 'f') ADVANCE(1265); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1365); + lookahead == 'i') ADVANCE(1372); if (lookahead == '\f' || lookahead == 8203 || lookahead == 8288 || @@ -9468,19 +9570,19 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == '\n' || lookahead == '\r' || lookahead == ' ') ADVANCE(89); - if (('B' <= lookahead && lookahead <= 'z')) ADVANCE(1602); + if (('B' <= lookahead && lookahead <= 'z')) ADVANCE(1610); END_STATE(); case 90: - if (lookahead == '.') ADVANCE(1604); + if (lookahead == '.') ADVANCE(1612); if (lookahead == '/') ADVANCE(50); - if (lookahead == '\\') ADVANCE(1602); - if (lookahead == '{') ADVANCE(904); + if (lookahead == '\\') ADVANCE(1610); + if (lookahead == '{') ADVANCE(908); if (lookahead == 'F' || - lookahead == 'f') ADVANCE(1258); + lookahead == 'f') ADVANCE(1265); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1365); + lookahead == 'i') ADVANCE(1372); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1384); + lookahead == 'n') ADVANCE(1391); if (lookahead == '\f' || lookahead == 8203 || lookahead == 8288 || @@ -9489,15 +9591,15 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == '\n' || lookahead == '\r' || lookahead == ' ') ADVANCE(90); - if (('A' <= lookahead && lookahead <= 'z')) ADVANCE(1602); + if (('A' <= lookahead && lookahead <= 'z')) ADVANCE(1610); END_STATE(); case 91: - if (lookahead == '.') ADVANCE(1604); + if (lookahead == '.') ADVANCE(1612); if (lookahead == '/') ADVANCE(50); - if (lookahead == '\\') ADVANCE(1602); - if (lookahead == '{') ADVANCE(904); + if (lookahead == '\\') ADVANCE(1610); + if (lookahead == '{') ADVANCE(908); if (lookahead == 'Q' || - lookahead == 'q') ADVANCE(1574); + lookahead == 'q') ADVANCE(1582); if (lookahead == '\f' || lookahead == 8203 || lookahead == 8288 || @@ -9506,27 +9608,27 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == '\n' || lookahead == '\r' || lookahead == ' ') ADVANCE(91); - if (('A' <= lookahead && lookahead <= 'z')) ADVANCE(1602); + if (('A' <= lookahead && lookahead <= 'z')) ADVANCE(1610); END_STATE(); case 92: - if (lookahead == '.') ADVANCE(150); + if (lookahead == '.') ADVANCE(152); if (('-' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || lookahead == '|') ADVANCE(92); END_STATE(); case 93: if (lookahead == '/') ADVANCE(50); - if (lookahead == ':') ADVANCE(1686); - if (lookahead == '\\') ADVANCE(1602); - if (lookahead == '{') ADVANCE(904); + if (lookahead == ':') ADVANCE(1694); + if (lookahead == '\\') ADVANCE(1610); + if (lookahead == '{') ADVANCE(908); if (lookahead == 'O' || - lookahead == 'o') ADVANCE(1325); + lookahead == 'o') ADVANCE(1332); if (lookahead == 'S' || - lookahead == 's') ADVANCE(1532); + lookahead == 's') ADVANCE(1540); if (lookahead == 'T' || - lookahead == 't') ADVANCE(1433); + lookahead == 't') ADVANCE(1440); if (lookahead == 'W' || - lookahead == 'w') ADVANCE(1220); + lookahead == 'w') ADVANCE(1226); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\f' || @@ -9535,17 +9637,17 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == 8203 || lookahead == 8288 || lookahead == 65279) SKIP(93) - if (('A' <= lookahead && lookahead <= 'z')) ADVANCE(1602); + if (('A' <= lookahead && lookahead <= 'z')) ADVANCE(1610); END_STATE(); case 94: if (lookahead == '/') ADVANCE(50); - if (lookahead == ':') ADVANCE(1686); - if (lookahead == '\\') ADVANCE(1602); - if (lookahead == '{') ADVANCE(904); + if (lookahead == ':') ADVANCE(1694); + if (lookahead == '\\') ADVANCE(1610); + if (lookahead == '{') ADVANCE(908); if (lookahead == 'O' || - lookahead == 'o') ADVANCE(1325); + lookahead == 'o') ADVANCE(1332); if (lookahead == 'W' || - lookahead == 'w') ADVANCE(1220); + lookahead == 'w') ADVANCE(1225); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\f' || @@ -9554,26 +9656,62 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == 8203 || lookahead == 8288 || lookahead == 65279) SKIP(94) - if (('A' <= lookahead && lookahead <= 'z')) ADVANCE(1602); + if (('A' <= lookahead && lookahead <= 'z')) ADVANCE(1610); END_STATE(); case 95: if (lookahead == '/') ADVANCE(50); - if (lookahead == '\\') ADVANCE(1602); - if (lookahead == '{') ADVANCE(904); + if (lookahead == ':') ADVANCE(1694); + if (lookahead == '\\') ADVANCE(1610); + if (lookahead == '{') ADVANCE(908); + if (lookahead == 'O' || + lookahead == 'o') ADVANCE(1332); + if (lookahead == 'W' || + lookahead == 'w') ADVANCE(1258); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\f' || + lookahead == '\r' || + lookahead == ' ' || + lookahead == 8203 || + lookahead == 8288 || + lookahead == 65279) SKIP(95) + if (('A' <= lookahead && lookahead <= 'z')) ADVANCE(1610); + END_STATE(); + case 96: + if (lookahead == '/') ADVANCE(50); + if (lookahead == ':') ADVANCE(1694); + if (lookahead == '\\') ADVANCE(1610); + if (lookahead == '{') ADVANCE(908); + if (lookahead == 'W' || + lookahead == 'w') ADVANCE(1258); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\f' || + lookahead == '\r' || + lookahead == ' ' || + lookahead == 8203 || + lookahead == 8288 || + lookahead == 65279) SKIP(96) + if (('A' <= lookahead && lookahead <= 'z')) ADVANCE(1610); + END_STATE(); + case 97: + if (lookahead == '/') ADVANCE(50); + if (lookahead == '\\') ADVANCE(1610); + if (lookahead == '{') ADVANCE(908); if (lookahead == 'A' || - lookahead == 'a') ADVANCE(1031); + lookahead == 'a') ADVANCE(1035); if (lookahead == 'C' || - lookahead == 'c') ADVANCE(1293); + lookahead == 'c') ADVANCE(1300); if (lookahead == 'F' || - lookahead == 'f') ADVANCE(1260); + lookahead == 'f') ADVANCE(1267); if (lookahead == 'O' || - lookahead == 'o') ADVANCE(1579); + lookahead == 'o') ADVANCE(1587); if (lookahead == 'P' || - lookahead == 'p') ADVANCE(1434); + lookahead == 'p') ADVANCE(1441); if (lookahead == 'S' || - lookahead == 's') ADVANCE(1540); + lookahead == 's') ADVANCE(1548); if (lookahead == 'V' || - lookahead == 'v') ADVANCE(1369); + lookahead == 'v') ADVANCE(1376); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\f' || @@ -9581,25 +9719,25 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == ' ' || lookahead == 8203 || lookahead == 8288 || - lookahead == 65279) SKIP(95) - if (('B' <= lookahead && lookahead <= 'z')) ADVANCE(1602); + lookahead == 65279) SKIP(97) + if (('B' <= lookahead && lookahead <= 'z')) ADVANCE(1610); END_STATE(); - case 96: + case 98: if (lookahead == '/') ADVANCE(50); - if (lookahead == '\\') ADVANCE(1602); - if (lookahead == '{') ADVANCE(904); + if (lookahead == '\\') ADVANCE(1610); + if (lookahead == '{') ADVANCE(908); if (lookahead == 'A' || - lookahead == 'a') ADVANCE(1031); + lookahead == 'a') ADVANCE(1035); if (lookahead == 'C' || - lookahead == 'c') ADVANCE(1293); + lookahead == 'c') ADVANCE(1300); if (lookahead == 'F' || - lookahead == 'f') ADVANCE(1260); + lookahead == 'f') ADVANCE(1267); if (lookahead == 'O' || - lookahead == 'o') ADVANCE(1579); + lookahead == 'o') ADVANCE(1587); if (lookahead == 'S' || - lookahead == 's') ADVANCE(1540); + lookahead == 's') ADVANCE(1548); if (lookahead == 'V' || - lookahead == 'v') ADVANCE(1369); + lookahead == 'v') ADVANCE(1376); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\f' || @@ -9607,31 +9745,31 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == ' ' || lookahead == 8203 || lookahead == 8288 || - lookahead == 65279) SKIP(96) - if (('B' <= lookahead && lookahead <= 'z')) ADVANCE(1602); + lookahead == 65279) SKIP(98) + if (('B' <= lookahead && lookahead <= 'z')) ADVANCE(1610); END_STATE(); - case 97: + case 99: if (lookahead == '/') ADVANCE(50); - if (lookahead == '\\') ADVANCE(1602); - if (lookahead == '{') ADVANCE(904); + if (lookahead == '\\') ADVANCE(1610); + if (lookahead == '{') ADVANCE(908); if (lookahead == 'C' || - lookahead == 'c') ADVANCE(976); + lookahead == 'c') ADVANCE(980); if (lookahead == 'D' || - lookahead == 'd') ADVANCE(1131); + lookahead == 'd') ADVANCE(1135); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1281); + lookahead == 'e') ADVANCE(1288); if (lookahead == 'F' || - lookahead == 'f') ADVANCE(1255); + lookahead == 'f') ADVANCE(1262); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1335); + lookahead == 'i') ADVANCE(1342); if (lookahead == 'O' || - lookahead == 'o') ADVANCE(1324); + lookahead == 'o') ADVANCE(1331); if (lookahead == 'P' || - lookahead == 'p') ADVANCE(1452); + lookahead == 'p') ADVANCE(1459); if (lookahead == 'R' || - lookahead == 'r') ADVANCE(1134); + lookahead == 'r') ADVANCE(1138); if (lookahead == 'U' || - lookahead == 'u') ADVANCE(1353); + lookahead == 'u') ADVANCE(1360); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\f' || @@ -9639,31 +9777,31 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == ' ' || lookahead == 8203 || lookahead == 8288 || - lookahead == 65279) SKIP(97) - if (('A' <= lookahead && lookahead <= 'z')) ADVANCE(1602); + lookahead == 65279) SKIP(99) + if (('A' <= lookahead && lookahead <= 'z')) ADVANCE(1610); END_STATE(); - case 98: + case 100: if (lookahead == '/') ADVANCE(50); - if (lookahead == '\\') ADVANCE(1602); - if (lookahead == '{') ADVANCE(904); + if (lookahead == '\\') ADVANCE(1610); + if (lookahead == '{') ADVANCE(908); if (lookahead == 'C' || - lookahead == 'c') ADVANCE(976); + lookahead == 'c') ADVANCE(980); if (lookahead == 'D' || - lookahead == 'd') ADVANCE(1131); + lookahead == 'd') ADVANCE(1135); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1323); + lookahead == 'e') ADVANCE(1330); if (lookahead == 'F' || - lookahead == 'f') ADVANCE(1255); + lookahead == 'f') ADVANCE(1262); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1335); + lookahead == 'i') ADVANCE(1342); if (lookahead == 'O' || - lookahead == 'o') ADVANCE(1324); + lookahead == 'o') ADVANCE(1331); if (lookahead == 'P' || - lookahead == 'p') ADVANCE(1452); + lookahead == 'p') ADVANCE(1459); if (lookahead == 'R' || - lookahead == 'r') ADVANCE(1134); + lookahead == 'r') ADVANCE(1138); if (lookahead == 'U' || - lookahead == 'u') ADVANCE(1353); + lookahead == 'u') ADVANCE(1360); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\f' || @@ -9671,27 +9809,27 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == ' ' || lookahead == 8203 || lookahead == 8288 || - lookahead == 65279) SKIP(98) - if (('A' <= lookahead && lookahead <= 'z')) ADVANCE(1602); + lookahead == 65279) SKIP(100) + if (('A' <= lookahead && lookahead <= 'z')) ADVANCE(1610); END_STATE(); - case 99: + case 101: if (lookahead == '/') ADVANCE(50); - if (lookahead == '\\') ADVANCE(1602); - if (lookahead == '{') ADVANCE(904); + if (lookahead == '\\') ADVANCE(1610); + if (lookahead == '{') ADVANCE(908); if (lookahead == 'C' || - lookahead == 'c') ADVANCE(1016); + lookahead == 'c') ADVANCE(1020); if (lookahead == 'D' || - lookahead == 'd') ADVANCE(1131); + lookahead == 'd') ADVANCE(1135); if (lookahead == 'F' || - lookahead == 'f') ADVANCE(1372); + lookahead == 'f') ADVANCE(1379); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1335); + lookahead == 'i') ADVANCE(1342); if (lookahead == 'O' || - lookahead == 'o') ADVANCE(1324); + lookahead == 'o') ADVANCE(1331); if (lookahead == 'R' || - lookahead == 'r') ADVANCE(1134); + lookahead == 'r') ADVANCE(1138); if (lookahead == 'U' || - lookahead == 'u') ADVANCE(1354); + lookahead == 'u') ADVANCE(1361); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\f' || @@ -9699,17 +9837,17 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == ' ' || lookahead == 8203 || lookahead == 8288 || - lookahead == 65279) SKIP(99) - if (('A' <= lookahead && lookahead <= 'z')) ADVANCE(1602); + lookahead == 65279) SKIP(101) + if (('A' <= lookahead && lookahead <= 'z')) ADVANCE(1610); END_STATE(); - case 100: + case 102: if (lookahead == '/') ADVANCE(50); - if (lookahead == '\\') ADVANCE(1602); - if (lookahead == '{') ADVANCE(904); + if (lookahead == '\\') ADVANCE(1610); + if (lookahead == '{') ADVANCE(908); if (lookahead == 'C' || - lookahead == 'c') ADVANCE(1293); + lookahead == 'c') ADVANCE(1300); if (lookahead == 'V' || - lookahead == 'v') ADVANCE(1369); + lookahead == 'v') ADVANCE(1376); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\f' || @@ -9717,15 +9855,15 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == ' ' || lookahead == 8203 || lookahead == 8288 || - lookahead == 65279) SKIP(100) - if (('A' <= lookahead && lookahead <= 'z')) ADVANCE(1602); + lookahead == 65279) SKIP(102) + if (('A' <= lookahead && lookahead <= 'z')) ADVANCE(1610); END_STATE(); - case 101: + case 103: if (lookahead == '/') ADVANCE(50); - if (lookahead == '\\') ADVANCE(1602); - if (lookahead == '{') ADVANCE(904); + if (lookahead == '\\') ADVANCE(1610); + if (lookahead == '{') ADVANCE(908); if (lookahead == 'C' || - lookahead == 'c') ADVANCE(1293); + lookahead == 'c') ADVANCE(1300); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\f' || @@ -9733,17 +9871,17 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == ' ' || lookahead == 8203 || lookahead == 8288 || - lookahead == 65279) SKIP(101) - if (('A' <= lookahead && lookahead <= 'z')) ADVANCE(1602); + lookahead == 65279) SKIP(103) + if (('A' <= lookahead && lookahead <= 'z')) ADVANCE(1610); END_STATE(); - case 102: + case 104: if (lookahead == '/') ADVANCE(50); - if (lookahead == '\\') ADVANCE(1602); - if (lookahead == '{') ADVANCE(904); + if (lookahead == '\\') ADVANCE(1610); + if (lookahead == '{') ADVANCE(908); if (lookahead == 'D' || - lookahead == 'd') ADVANCE(1368); + lookahead == 'd') ADVANCE(1375); if (lookahead == 'F' || - lookahead == 'f') ADVANCE(1257); + lookahead == 'f') ADVANCE(1264); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\f' || @@ -9751,15 +9889,15 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == ' ' || lookahead == 8203 || lookahead == 8288 || - lookahead == 65279) SKIP(102) - if (('A' <= lookahead && lookahead <= 'z')) ADVANCE(1602); + lookahead == 65279) SKIP(104) + if (('A' <= lookahead && lookahead <= 'z')) ADVANCE(1610); END_STATE(); - case 103: + case 105: if (lookahead == '/') ADVANCE(50); - if (lookahead == '\\') ADVANCE(1602); - if (lookahead == '{') ADVANCE(904); + if (lookahead == '\\') ADVANCE(1610); + if (lookahead == '{') ADVANCE(908); if (lookahead == 'D' || - lookahead == 'd') ADVANCE(1021); + lookahead == 'd') ADVANCE(1025); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\f' || @@ -9767,15 +9905,15 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == ' ' || lookahead == 8203 || lookahead == 8288 || - lookahead == 65279) SKIP(103) - if (('A' <= lookahead && lookahead <= 'z')) ADVANCE(1602); + lookahead == 65279) SKIP(105) + if (('A' <= lookahead && lookahead <= 'z')) ADVANCE(1610); END_STATE(); - case 104: + case 106: if (lookahead == '/') ADVANCE(50); - if (lookahead == '\\') ADVANCE(1602); - if (lookahead == '{') ADVANCE(904); + if (lookahead == '\\') ADVANCE(1610); + if (lookahead == '{') ADVANCE(908); if (lookahead == 'F' || - lookahead == 'f') ADVANCE(1466); + lookahead == 'f') ADVANCE(1473); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\f' || @@ -9783,19 +9921,19 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == ' ' || lookahead == 8203 || lookahead == 8288 || - lookahead == 65279) SKIP(104) - if (('A' <= lookahead && lookahead <= 'z')) ADVANCE(1602); + lookahead == 65279) SKIP(106) + if (('A' <= lookahead && lookahead <= 'z')) ADVANCE(1610); END_STATE(); - case 105: + case 107: if (lookahead == '/') ADVANCE(50); - if (lookahead == '\\') ADVANCE(1602); - if (lookahead == '{') ADVANCE(904); + if (lookahead == '\\') ADVANCE(1610); + if (lookahead == '{') ADVANCE(908); if (lookahead == 'F' || - lookahead == 'f') ADVANCE(1249); + lookahead == 'f') ADVANCE(1255); if (lookahead == 'L' || - lookahead == 'l') ADVANCE(1014); + lookahead == 'l') ADVANCE(1018); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1146); + lookahead == 'n') ADVANCE(1150); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\f' || @@ -9803,17 +9941,17 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == ' ' || lookahead == 8203 || lookahead == 8288 || - lookahead == 65279) SKIP(105) - if (('A' <= lookahead && lookahead <= 'z')) ADVANCE(1602); + lookahead == 65279) SKIP(107) + if (('A' <= lookahead && lookahead <= 'z')) ADVANCE(1610); END_STATE(); - case 106: + case 108: if (lookahead == '/') ADVANCE(50); - if (lookahead == '\\') ADVANCE(1602); - if (lookahead == '{') ADVANCE(904); + if (lookahead == '\\') ADVANCE(1610); + if (lookahead == '{') ADVANCE(908); if (lookahead == 'F' || - lookahead == 'f') ADVANCE(1249); + lookahead == 'f') ADVANCE(1255); if (lookahead == 'L' || - lookahead == 'l') ADVANCE(1014); + lookahead == 'l') ADVANCE(1018); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\f' || @@ -9821,15 +9959,15 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == ' ' || lookahead == 8203 || lookahead == 8288 || - lookahead == 65279) SKIP(106) - if (('A' <= lookahead && lookahead <= 'z')) ADVANCE(1602); + lookahead == 65279) SKIP(108) + if (('A' <= lookahead && lookahead <= 'z')) ADVANCE(1610); END_STATE(); - case 107: + case 109: if (lookahead == '/') ADVANCE(50); - if (lookahead == '\\') ADVANCE(1602); - if (lookahead == '{') ADVANCE(904); + if (lookahead == '\\') ADVANCE(1610); + if (lookahead == '{') ADVANCE(908); if (lookahead == 'P' || - lookahead == 'p') ADVANCE(1434); + lookahead == 'p') ADVANCE(1441); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\f' || @@ -9837,15 +9975,15 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == ' ' || lookahead == 8203 || lookahead == 8288 || - lookahead == 65279) SKIP(107) - if (('A' <= lookahead && lookahead <= 'z')) ADVANCE(1602); + lookahead == 65279) SKIP(109) + if (('A' <= lookahead && lookahead <= 'z')) ADVANCE(1610); END_STATE(); - case 108: + case 110: if (lookahead == '/') ADVANCE(50); - if (lookahead == '\\') ADVANCE(1602); - if (lookahead == '{') ADVANCE(904); + if (lookahead == '\\') ADVANCE(1610); + if (lookahead == '{') ADVANCE(908); if (lookahead == 'T' || - lookahead == 't') ADVANCE(1176); + lookahead == 't') ADVANCE(1180); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\f' || @@ -9853,43 +9991,43 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == ' ' || lookahead == 8203 || lookahead == 8288 || - lookahead == 65279) SKIP(108) - if (('A' <= lookahead && lookahead <= 'z')) ADVANCE(1602); + lookahead == 65279) SKIP(110) + if (('A' <= lookahead && lookahead <= 'z')) ADVANCE(1610); END_STATE(); - case 109: + case 111: if (lookahead == '/') ADVANCE(50); if (lookahead == '\\') SKIP(12) - if (lookahead == '{') ADVANCE(904); + if (lookahead == '{') ADVANCE(908); if (lookahead == 'A' || - lookahead == 'a') ADVANCE(227); + lookahead == 'a') ADVANCE(229); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(852); + lookahead == 'b') ADVANCE(856); if (lookahead == 'D' || - lookahead == 'd') ADVANCE(213); + lookahead == 'd') ADVANCE(215); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(853); + lookahead == 'e') ADVANCE(857); if (lookahead == 'G' || - lookahead == 'g') ADVANCE(402); + lookahead == 'g') ADVANCE(404); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(591); + lookahead == 'i') ADVANCE(594); if (lookahead == 'L' || - lookahead == 'l') ADVANCE(391); + lookahead == 'l') ADVANCE(393); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(355); + lookahead == 'n') ADVANCE(357); if (lookahead == 'O' || - lookahead == 'o') ADVANCE(840); + lookahead == 'o') ADVANCE(844); if (lookahead == 'P' || - lookahead == 'p') ADVANCE(704); + lookahead == 'p') ADVANCE(707); if (lookahead == 'Q' || - lookahead == 'q') ADVANCE(850); + lookahead == 'q') ADVANCE(854); if (lookahead == 'R' || - lookahead == 'r') ADVANCE(403); + lookahead == 'r') ADVANCE(405); if (lookahead == 'S' || - lookahead == 's') ADVANCE(345); + lookahead == 's') ADVANCE(347); if (lookahead == 'T' || - lookahead == 't') ADVANCE(380); + lookahead == 't') ADVANCE(382); if (lookahead == 'V' || - lookahead == 'v') ADVANCE(195); + lookahead == 'v') ADVANCE(196); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\f' || @@ -9897,12 +10035,12 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == ' ' || lookahead == 8203 || lookahead == 8288 || - lookahead == 65279) SKIP(109) + lookahead == 65279) SKIP(111) END_STATE(); - case 110: + case 112: if (lookahead == '/') ADVANCE(49); if (lookahead == '\\') ADVANCE(16); - if (lookahead == '{') ADVANCE(904); + if (lookahead == '{') ADVANCE(908); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\f' || @@ -9910,716 +10048,708 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == ' ' || lookahead == 8203 || lookahead == 8288 || - lookahead == 65279) SKIP(110) + lookahead == 65279) SKIP(112) if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= '|')) ADVANCE(92); END_STATE(); - case 111: - if (lookahead == 'C') ADVANCE(139); + case 113: + if (lookahead == 'C') ADVANCE(141); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(699); + lookahead == 'e') ADVANCE(702); if (lookahead == 'H' || - lookahead == 'h') ADVANCE(177); + lookahead == 'h') ADVANCE(179); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(437); + lookahead == 'i') ADVANCE(439); if (lookahead == 'O' || - lookahead == 'o') ADVANCE(831); + lookahead == 'o') ADVANCE(835); if (lookahead == 'T' || - lookahead == 't') ADVANCE(630); + lookahead == 't') ADVANCE(633); END_STATE(); - case 112: - if (lookahead == 'C') ADVANCE(139); + case 114: + if (lookahead == 'C') ADVANCE(141); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(699); + lookahead == 'e') ADVANCE(702); if (lookahead == 'H' || - lookahead == 'h') ADVANCE(177); + lookahead == 'h') ADVANCE(179); if (lookahead == 'T' || - lookahead == 't') ADVANCE(629); + lookahead == 't') ADVANCE(632); if (lookahead == 'U' || - lookahead == 'u') ADVANCE(236); + lookahead == 'u') ADVANCE(238); END_STATE(); - case 113: - if (lookahead == 'C') ADVANCE(139); + case 115: + if (lookahead == 'C') ADVANCE(141); if (lookahead == 'H' || - lookahead == 'h') ADVANCE(177); + lookahead == 'h') ADVANCE(179); if (lookahead == 'T' || - lookahead == 't') ADVANCE(642); + lookahead == 't') ADVANCE(645); END_STATE(); - case 114: - if (lookahead == 'D') ADVANCE(1708); + case 116: + if (lookahead == 'D') ADVANCE(1717); END_STATE(); - case 115: - if (lookahead == 'E') ADVANCE(1669); - if (lookahead == 'e') ADVANCE(1669); + case 117: + if (lookahead == 'E') ADVANCE(1677); + if (lookahead == 'e') ADVANCE(1677); END_STATE(); - case 116: - if (lookahead == 'E') ADVANCE(141); - if (lookahead == 'e') ADVANCE(274); + case 118: + if (lookahead == 'E') ADVANCE(143); + if (lookahead == 'e') ADVANCE(276); if (lookahead == 'A' || - lookahead == 'a') ADVANCE(673); + lookahead == 'a') ADVANCE(677); if (lookahead == 'C' || - lookahead == 'c') ADVANCE(640); + lookahead == 'c') ADVANCE(643); if (lookahead == 'L' || - lookahead == 'l') ADVANCE(634); + lookahead == 'l') ADVANCE(637); if (lookahead == 'M' || - lookahead == 'm') ADVANCE(175); + lookahead == 'm') ADVANCE(177); if (lookahead == 'U' || - lookahead == 'u') ADVANCE(599); + lookahead == 'u') ADVANCE(602); if (lookahead == 'W' || - lookahead == 'w') ADVANCE(178); + lookahead == 'w') ADVANCE(180); END_STATE(); - case 117: - if (lookahead == 'E') ADVANCE(147); + case 119: + if (lookahead == 'E') ADVANCE(149); if (lookahead == 'A' || - lookahead == 'a') ADVANCE(660); + lookahead == 'a') ADVANCE(663); END_STATE(); - case 118: - if (lookahead == 'E') ADVANCE(146); - if (lookahead == 'e') ADVANCE(273); + case 120: + if (lookahead == 'E') ADVANCE(148); + if (lookahead == 'e') ADVANCE(275); if (lookahead == 'C' || - lookahead == 'c') ADVANCE(640); + lookahead == 'c') ADVANCE(643); if (lookahead == 'M' || - lookahead == 'm') ADVANCE(175); + lookahead == 'm') ADVANCE(177); if (lookahead == 'U' || - lookahead == 'u') ADVANCE(599); + lookahead == 'u') ADVANCE(602); END_STATE(); - case 119: - if (lookahead == 'E') ADVANCE(145); + case 121: + if (lookahead == 'E') ADVANCE(147); if (lookahead == 'U' || - lookahead == 'u') ADVANCE(599); + lookahead == 'u') ADVANCE(602); END_STATE(); - case 120: - if (lookahead == 'E') ADVANCE(140); - if (lookahead == 'e') ADVANCE(731); + case 122: + if (lookahead == 'E') ADVANCE(142); + if (lookahead == 'e') ADVANCE(734); if (lookahead == 'L' || - lookahead == 'l') ADVANCE(634); + lookahead == 'l') ADVANCE(637); if (lookahead == 'W' || - lookahead == 'w') ADVANCE(178); + lookahead == 'w') ADVANCE(180); END_STATE(); - case 121: - if (lookahead == 'G') ADVANCE(1674); + case 123: + if (lookahead == 'G') ADVANCE(1682); END_STATE(); - case 122: - if (lookahead == 'H') ADVANCE(132); + case 124: + if (lookahead == 'H') ADVANCE(134); END_STATE(); - case 123: - if (lookahead == 'I') ADVANCE(126); - if (lookahead == 'i') ADVANCE(513); + case 125: + if (lookahead == 'I') ADVANCE(128); + if (lookahead == 'i') ADVANCE(516); if (lookahead == 'A' || - lookahead == 'a') ADVANCE(235); + lookahead == 'a') ADVANCE(237); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1634); + lookahead == 'e') ADVANCE(1642); if (lookahead == 'O' || - lookahead == 'o') ADVANCE(230); + lookahead == 'o') ADVANCE(232); if (lookahead == 'T' || - lookahead == 't') ADVANCE(1633); + lookahead == 't') ADVANCE(1641); END_STATE(); - case 124: - if (lookahead == 'I') ADVANCE(126); - if (lookahead == 'i') ADVANCE(513); + case 126: + if (lookahead == 'I') ADVANCE(128); + if (lookahead == 'i') ADVANCE(516); if (lookahead == 'A' || - lookahead == 'a') ADVANCE(233); + lookahead == 'a') ADVANCE(235); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1634); + lookahead == 'e') ADVANCE(1642); if (lookahead == 'T' || - lookahead == 't') ADVANCE(1633); - END_STATE(); - case 125: - if (lookahead == 'I') ADVANCE(129); - END_STATE(); - case 126: - if (lookahead == 'K') ADVANCE(115); - if (lookahead == 'k') ADVANCE(306); + lookahead == 't') ADVANCE(1641); END_STATE(); case 127: - if (lookahead == 'L') ADVANCE(125); + if (lookahead == 'I') ADVANCE(131); END_STATE(); case 128: - if (lookahead == 'L') ADVANCE(127); + if (lookahead == 'K') ADVANCE(117); + if (lookahead == 'k') ADVANCE(308); END_STATE(); case 129: - if (lookahead == 'N') ADVANCE(121); + if (lookahead == 'L') ADVANCE(127); END_STATE(); case 130: - if (lookahead == 'O') ADVANCE(57); - if (lookahead == 'o') ADVANCE(58); - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1635); - if (lookahead == 'U' || - lookahead == 'u') ADVANCE(559); + if (lookahead == 'L') ADVANCE(129); END_STATE(); case 131: - if (lookahead == 'O') ADVANCE(128); + if (lookahead == 'N') ADVANCE(123); END_STATE(); case 132: - if (lookahead == 'O') ADVANCE(114); + if (lookahead == 'O') ADVANCE(57); + if (lookahead == 'o') ADVANCE(58); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(1643); + if (lookahead == 'U' || + lookahead == 'u') ADVANCE(562); END_STATE(); case 133: - if (lookahead == 'O') ADVANCE(143); + if (lookahead == 'O') ADVANCE(130); END_STATE(); case 134: - if (lookahead == 'O') ADVANCE(138); - if (lookahead == 'o') ADVANCE(686); + if (lookahead == 'O') ADVANCE(116); END_STATE(); case 135: + if (lookahead == 'O') ADVANCE(145); + END_STATE(); + case 136: + if (lookahead == 'O') ADVANCE(140); + if (lookahead == 'o') ADVANCE(689); + END_STATE(); + case 137: if (lookahead == 'O') ADVANCE(61); if (lookahead == 'o') ADVANCE(62); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1635); + lookahead == 'e') ADVANCE(1643); if (lookahead == 'U' || - lookahead == 'u') ADVANCE(559); + lookahead == 'u') ADVANCE(562); END_STATE(); - case 136: + case 138: if (lookahead == 'O') ADVANCE(65); if (lookahead == 'o') ADVANCE(66); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1635); + lookahead == 'e') ADVANCE(1643); END_STATE(); - case 137: + case 139: 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(1683); - if (lookahead == 'r') ADVANCE(1683); - END_STATE(); - case 139: - if (lookahead == 'R') ADVANCE(131); + lookahead == 'e') ADVANCE(1643); END_STATE(); case 140: - if (lookahead == 'R') ADVANCE(142); - if (lookahead == 'r') ADVANCE(725); + if (lookahead == 'R') ADVANCE(1691); + if (lookahead == 'r') ADVANCE(1691); END_STATE(); case 141: - if (lookahead == 'R') ADVANCE(142); - if (lookahead == 'r') ADVANCE(725); - if (lookahead == 'C' || - lookahead == 'c') ADVANCE(453); + if (lookahead == 'R') ADVANCE(133); END_STATE(); case 142: - if (lookahead == 'R') ADVANCE(134); - if (lookahead == 'r') ADVANCE(652); + if (lookahead == 'R') ADVANCE(144); + if (lookahead == 'r') ADVANCE(728); END_STATE(); case 143: - if (lookahead == 'R') ADVANCE(1719); + if (lookahead == 'R') ADVANCE(144); + if (lookahead == 'r') ADVANCE(728); + if (lookahead == 'C' || + lookahead == 'c') ADVANCE(456); END_STATE(); case 144: - if (lookahead == 'R') ADVANCE(133); + if (lookahead == 'R') ADVANCE(136); + if (lookahead == 'r') ADVANCE(655); END_STATE(); case 145: - if (lookahead == 'R') ADVANCE(144); + if (lookahead == 'R') ADVANCE(1728); END_STATE(); case 146: - if (lookahead == 'R') ADVANCE(144); - if (lookahead == 'C' || - lookahead == 'c') ADVANCE(453); + if (lookahead == 'R') ADVANCE(135); END_STATE(); case 147: - if (lookahead == 'T') ADVANCE(122); + if (lookahead == 'R') ADVANCE(146); END_STATE(); case 148: - if (lookahead == 'Y') ADVANCE(1759); + if (lookahead == 'R') ADVANCE(146); + if (lookahead == 'C' || + lookahead == 'c') ADVANCE(456); + END_STATE(); + case 149: + if (lookahead == 'T') ADVANCE(124); + END_STATE(); + case 150: + if (lookahead == 'Y') ADVANCE(1768); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(438); + lookahead == 'e') ADVANCE(440); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(587); + lookahead == 'i') ADVANCE(590); END_STATE(); - case 149: - if (lookahead == 'Y') ADVANCE(1759); + case 151: + if (lookahead == 'Y') ADVANCE(1768); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(438); + lookahead == 'e') ADVANCE(440); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(614); + lookahead == 'i') ADVANCE(617); END_STATE(); - case 150: - if (lookahead == 'i') ADVANCE(886); + case 152: + if (lookahead == 'i') ADVANCE(890); END_STATE(); - case 151: + case 153: if (lookahead == 'A' || - lookahead == 'a') ADVANCE(235); + lookahead == 'a') ADVANCE(237); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1634); + lookahead == 'e') ADVANCE(1642); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(513); + lookahead == 'i') ADVANCE(516); if (lookahead == 'O' || - lookahead == 'o') ADVANCE(230); + lookahead == 'o') ADVANCE(232); if (lookahead == 'T' || - lookahead == 't') ADVANCE(1633); + lookahead == 't') ADVANCE(1641); END_STATE(); - case 152: + case 154: if (lookahead == 'A' || - lookahead == 'a') ADVANCE(272); + lookahead == 'a') ADVANCE(274); if (lookahead == 'L' || - lookahead == 'l') ADVANCE(165); + lookahead == 'l') ADVANCE(167); if (lookahead == 'O' || - lookahead == 'o') ADVANCE(520); + lookahead == 'o') ADVANCE(523); END_STATE(); - case 153: + case 155: if (lookahead == 'A' || - lookahead == 'a') ADVANCE(791); + lookahead == 'a') ADVANCE(794); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(259); + lookahead == 'e') ADVANCE(260); if (lookahead == 'O' || - lookahead == 'o') ADVANCE(1760); + lookahead == 'o') ADVANCE(1769); END_STATE(); - case 154: + case 156: if (lookahead == 'A' || - lookahead == 'a') ADVANCE(255); + lookahead == 'a') ADVANCE(257); if (lookahead == 'C' || - lookahead == 'c') ADVANCE(451); + lookahead == 'c') ADVANCE(454); if (lookahead == 'L' || - lookahead == 'l') ADVANCE(752); + lookahead == 'l') ADVANCE(754); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(280); + lookahead == 'n') ADVANCE(282); if (lookahead == 'Q' || - lookahead == 'q') ADVANCE(1637); + lookahead == 'q') ADVANCE(1645); if (lookahead == 'R' || - lookahead == 'r') ADVANCE(700); + lookahead == 'r') ADVANCE(703); if (lookahead == 'V' || - lookahead == 'v') ADVANCE(359); + lookahead == 'v') ADVANCE(361); if (lookahead == 'X' || - lookahead == 'x') ADVANCE(249); + lookahead == 'x') ADVANCE(251); END_STATE(); - case 155: + case 157: if (lookahead == 'A' || - lookahead == 'a') ADVANCE(660); + lookahead == 'a') ADVANCE(663); END_STATE(); - case 156: + case 158: if (lookahead == 'A' || - lookahead == 'a') ADVANCE(660); + lookahead == 'a') ADVANCE(663); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(811); + lookahead == 'e') ADVANCE(815); END_STATE(); - case 157: + case 159: if (lookahead == 'A' || - lookahead == 'a') ADVANCE(440); + lookahead == 'a') ADVANCE(442); if (lookahead == 'O' || - lookahead == 'o') ADVANCE(726); + lookahead == 'o') ADVANCE(729); if (lookahead == 'R' || - lookahead == 'r') ADVANCE(463); + lookahead == 'r') ADVANCE(466); END_STATE(); - case 158: + case 160: if (lookahead == 'A' || lookahead == 'a') ADVANCE(60); END_STATE(); - case 159: + case 161: if (lookahead == 'A' || - lookahead == 'a') ADVANCE(234); + lookahead == 'a') ADVANCE(236); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1634); + lookahead == 'e') ADVANCE(1642); if (lookahead == 'O' || - lookahead == 'o') ADVANCE(230); + lookahead == 'o') ADVANCE(232); if (lookahead == 'T' || - lookahead == 't') ADVANCE(1633); + lookahead == 't') ADVANCE(1641); END_STATE(); - case 160: + case 162: if (lookahead == 'A' || - lookahead == 'a') ADVANCE(814); + lookahead == 'a') ADVANCE(818); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(811); + lookahead == 'e') ADVANCE(815); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(613); + lookahead == 'i') ADVANCE(616); END_STATE(); - case 161: + case 163: if (lookahead == 'A' || - lookahead == 'a') ADVANCE(240); + lookahead == 'a') ADVANCE(242); END_STATE(); - case 162: + case 164: if (lookahead == 'A' || lookahead == 'a') ADVANCE(77); END_STATE(); - case 163: + case 165: if (lookahead == 'A' || - lookahead == 'a') ADVANCE(238); + lookahead == 'a') ADVANCE(240); END_STATE(); - case 164: + case 166: if (lookahead == 'A' || - lookahead == 'a') ADVANCE(562); + lookahead == 'a') ADVANCE(565); if (lookahead == 'O' || - lookahead == 'o') ADVANCE(550); + lookahead == 'o') ADVANCE(553); END_STATE(); - case 165: + case 167: if (lookahead == 'A' || - lookahead == 'a') ADVANCE(750); + lookahead == 'a') ADVANCE(752); if (lookahead == 'O' || - lookahead == 'o') ADVANCE(756); + lookahead == 'o') ADVANCE(759); END_STATE(); - case 166: + case 168: if (lookahead == 'A' || - lookahead == 'a') ADVANCE(673); + lookahead == 'a') ADVANCE(677); if (lookahead == 'C' || - lookahead == 'c') ADVANCE(640); + lookahead == 'c') ADVANCE(643); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(274); + lookahead == 'e') ADVANCE(276); if (lookahead == 'L' || - lookahead == 'l') ADVANCE(634); + lookahead == 'l') ADVANCE(637); if (lookahead == 'M' || - lookahead == 'm') ADVANCE(175); + lookahead == 'm') ADVANCE(177); if (lookahead == 'U' || - lookahead == 'u') ADVANCE(599); + lookahead == 'u') ADVANCE(602); if (lookahead == 'W' || - lookahead == 'w') ADVANCE(178); + lookahead == 'w') ADVANCE(180); END_STATE(); - case 167: + case 169: if (lookahead == 'A' || - lookahead == 'a') ADVANCE(696); + lookahead == 'a') ADVANCE(699); if (lookahead == 'H' || - lookahead == 'h') ADVANCE(362); + lookahead == 'h') ADVANCE(364); if (lookahead == 'O' || - lookahead == 'o') ADVANCE(1745); + lookahead == 'o') ADVANCE(1754); if (lookahead == 'R' || - lookahead == 'r') ADVANCE(171); - END_STATE(); - case 168: - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(515); - END_STATE(); - case 169: - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(866); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(619); + lookahead == 'r') ADVANCE(173); END_STATE(); case 170: if (lookahead == 'A' || - lookahead == 'a') ADVANCE(435); + lookahead == 'a') ADVANCE(518); END_STATE(); case 171: if (lookahead == 'A' || - lookahead == 'a') ADVANCE(595); + lookahead == 'a') ADVANCE(870); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(622); END_STATE(); case 172: if (lookahead == 'A' || - lookahead == 'a') ADVANCE(509); + lookahead == 'a') ADVANCE(437); END_STATE(); case 173: if (lookahead == 'A' || - lookahead == 'a') ADVANCE(530); + lookahead == 'a') ADVANCE(598); END_STATE(); case 174: if (lookahead == 'A' || - lookahead == 'a') ADVANCE(556); + lookahead == 'a') ADVANCE(512); END_STATE(); case 175: if (lookahead == 'A' || - lookahead == 'a') ADVANCE(661); + lookahead == 'a') ADVANCE(533); END_STATE(); case 176: if (lookahead == 'A' || - lookahead == 'a') ADVANCE(265); + lookahead == 'a') ADVANCE(559); END_STATE(); case 177: if (lookahead == 'A' || - lookahead == 'a') ADVANCE(707); + lookahead == 'a') ADVANCE(664); END_STATE(); case 178: if (lookahead == 'A' || - lookahead == 'a') ADVANCE(480); + lookahead == 'a') ADVANCE(267); END_STATE(); case 179: if (lookahead == 'A' || - lookahead == 'a') ADVANCE(794); + lookahead == 'a') ADVANCE(710); END_STATE(); case 180: if (lookahead == 'A' || - lookahead == 'a') ADVANCE(532); + lookahead == 'a') ADVANCE(483); END_STATE(); case 181: if (lookahead == 'A' || - lookahead == 'a') ADVANCE(812); + lookahead == 'a') ADVANCE(535); END_STATE(); case 182: if (lookahead == 'A' || - lookahead == 'a') ADVANCE(690); + lookahead == 'a') ADVANCE(798); END_STATE(); case 183: if (lookahead == 'A' || - lookahead == 'a') ADVANCE(690); - if (lookahead == 'D' || - lookahead == 'd') ADVANCE(1695); + lookahead == 'a') ADVANCE(693); END_STATE(); case 184: if (lookahead == 'A' || - lookahead == 'a') ADVANCE(522); + lookahead == 'a') ADVANCE(693); + if (lookahead == 'D' || + lookahead == 'd') ADVANCE(1704); END_STATE(); case 185: if (lookahead == 'A' || - lookahead == 'a') ADVANCE(807); + lookahead == 'a') ADVANCE(525); END_STATE(); case 186: if (lookahead == 'A' || - lookahead == 'a') ADVANCE(785); + lookahead == 'a') ADVANCE(816); END_STATE(); case 187: if (lookahead == 'A' || - lookahead == 'a') ADVANCE(555); + lookahead == 'a') ADVANCE(811); END_STATE(); case 188: if (lookahead == 'A' || - lookahead == 'a') ADVANCE(538); + lookahead == 'a') ADVANCE(788); END_STATE(); case 189: if (lookahead == 'A' || - lookahead == 'a') ADVANCE(86); + lookahead == 'a') ADVANCE(558); END_STATE(); case 190: if (lookahead == 'A' || - lookahead == 'a') ADVANCE(523); + lookahead == 'a') ADVANCE(541); END_STATE(); case 191: if (lookahead == 'A' || - lookahead == 'a') ADVANCE(695); + lookahead == 'a') ADVANCE(86); END_STATE(); case 192: if (lookahead == 'A' || - lookahead == 'a') ADVANCE(517); + lookahead == 'a') ADVANCE(526); END_STATE(); case 193: if (lookahead == 'A' || - lookahead == 'a') ADVANCE(516); + lookahead == 'a') ADVANCE(698); END_STATE(); case 194: if (lookahead == 'A' || - lookahead == 'a') ADVANCE(793); + lookahead == 'a') ADVANCE(520); END_STATE(); case 195: if (lookahead == 'A' || - lookahead == 'a') ADVANCE(691); + lookahead == 'a') ADVANCE(519); END_STATE(); case 196: if (lookahead == 'A' || - lookahead == 'a') ADVANCE(813); + lookahead == 'a') ADVANCE(694); END_STATE(); case 197: if (lookahead == 'A' || - lookahead == 'a') ADVANCE(813); - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(811); + lookahead == 'a') ADVANCE(817); END_STATE(); case 198: if (lookahead == 'A' || - lookahead == 'a') ADVANCE(777); + lookahead == 'a') ADVANCE(817); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(815); END_STATE(); case 199: if (lookahead == 'A' || - lookahead == 'a') ADVANCE(803); - if (lookahead == 'R' || - lookahead == 'r') ADVANCE(393); + lookahead == 'a') ADVANCE(780); END_STATE(); case 200: if (lookahead == 'A' || - lookahead == 'a') ADVANCE(805); - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(259); + lookahead == 'a') ADVANCE(807); + if (lookahead == 'R' || + lookahead == 'r') ADVANCE(395); END_STATE(); case 201: if (lookahead == 'A' || - lookahead == 'a') ADVANCE(233); + lookahead == 'a') ADVANCE(809); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1634); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(513); - if (lookahead == 'T' || - lookahead == 't') ADVANCE(1633); + lookahead == 'e') ADVANCE(260); END_STATE(); case 202: if (lookahead == 'A' || - lookahead == 'a') ADVANCE(563); + lookahead == 'a') ADVANCE(235); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(1642); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(516); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(1641); END_STATE(); case 203: if (lookahead == 'A' || - lookahead == 'a') ADVANCE(267); + lookahead == 'a') ADVANCE(566); END_STATE(); case 204: if (lookahead == 'A' || - lookahead == 'a') ADVANCE(277); + lookahead == 'a') ADVANCE(797); END_STATE(); case 205: if (lookahead == 'A' || - lookahead == 'a') ADVANCE(808); + lookahead == 'a') ADVANCE(269); END_STATE(); case 206: if (lookahead == 'A' || - lookahead == 'a') ADVANCE(671); + lookahead == 'a') ADVANCE(279); END_STATE(); case 207: if (lookahead == 'A' || - 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); + lookahead == 'a') ADVANCE(812); END_STATE(); case 208: if (lookahead == 'A' || - lookahead == 'a') ADVANCE(443); + lookahead == 'a') ADVANCE(675); END_STATE(); case 209: if (lookahead == 'A' || - lookahead == 'a') ADVANCE(483); + lookahead == 'a') ADVANCE(862); + if (lookahead == 'C' || + lookahead == 'c') ADVANCE(641); + if (lookahead == 'M' || + lookahead == 'm') ADVANCE(171); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(662); END_STATE(); case 210: if (lookahead == 'A' || - lookahead == 'a') ADVANCE(605); + lookahead == 'a') ADVANCE(445); END_STATE(); case 211: if (lookahead == 'A' || - lookahead == 'a') ADVANCE(854); + lookahead == 'a') ADVANCE(486); END_STATE(); case 212: if (lookahead == 'A' || - lookahead == 'a') ADVANCE(439); - if (lookahead == 'O' || - lookahead == 'o') ADVANCE(726); - if (lookahead == 'R' || - lookahead == 'r') ADVANCE(641); + lookahead == 'a') ADVANCE(608); END_STATE(); case 213: if (lookahead == 'A' || - lookahead == 'a') ADVANCE(806); - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(258); + lookahead == 'a') ADVANCE(858); END_STATE(); case 214: if (lookahead == 'A' || - lookahead == 'a') ADVANCE(271); + lookahead == 'a') ADVANCE(441); if (lookahead == 'O' || - lookahead == 'o') ADVANCE(527); + lookahead == 'o') ADVANCE(729); + if (lookahead == 'R' || + lookahead == 'r') ADVANCE(644); END_STATE(); case 215: if (lookahead == 'A' || - lookahead == 'a') ADVANCE(271); - if (lookahead == 'O' || - lookahead == 'o') ADVANCE(617); + lookahead == 'a') ADVANCE(810); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(259); END_STATE(); case 216: if (lookahead == 'A' || - lookahead == 'a') ADVANCE(444); + lookahead == 'a') ADVANCE(273); + if (lookahead == 'O' || + lookahead == 'o') ADVANCE(530); END_STATE(); case 217: if (lookahead == 'A' || - lookahead == 'a') ADVANCE(445); + lookahead == 'a') ADVANCE(273); + if (lookahead == 'O' || + lookahead == 'o') ADVANCE(620); END_STATE(); case 218: if (lookahead == 'A' || - lookahead == 'a') ADVANCE(760); - if (lookahead == 'O' || - lookahead == 'o') ADVANCE(590); + lookahead == 'a') ADVANCE(446); END_STATE(); case 219: if (lookahead == 'A' || - lookahead == 'a') ADVANCE(723); + lookahead == 'a') ADVANCE(447); END_STATE(); case 220: if (lookahead == 'A' || - lookahead == 'a') ADVANCE(241); + lookahead == 'a') ADVANCE(763); + if (lookahead == 'O' || + lookahead == 'o') ADVANCE(593); END_STATE(); case 221: if (lookahead == 'A' || - lookahead == 'a') ADVANCE(495); + lookahead == 'a') ADVANCE(726); END_STATE(); case 222: if (lookahead == 'A' || - lookahead == 'a') ADVANCE(242); + lookahead == 'a') ADVANCE(243); END_STATE(); case 223: if (lookahead == 'A' || - lookahead == 'a') ADVANCE(824); + lookahead == 'a') ADVANCE(498); END_STATE(); case 224: if (lookahead == 'A' || - lookahead == 'a') ADVANCE(243); + lookahead == 'a') ADVANCE(244); END_STATE(); case 225: if (lookahead == 'A' || - lookahead == 'a') ADVANCE(825); + lookahead == 'a') ADVANCE(828); END_STATE(); case 226: if (lookahead == 'A' || - lookahead == 'a') ADVANCE(549); + lookahead == 'a') ADVANCE(245); END_STATE(); case 227: - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(748); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(829); END_STATE(); case 228: - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(748); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(279); - if (lookahead == 'P' || - lookahead == 'p') ADVANCE(675); - if (lookahead == 'S' || - lookahead == 's') ADVANCE(1668); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(552); END_STATE(); case 229: if (lookahead == 'B' || - lookahead == 'b') ADVANCE(748); - if (lookahead == 'V' || - lookahead == 'v') ADVANCE(412); + lookahead == 'b') ADVANCE(753); END_STATE(); case 230: if (lookahead == 'B' || - lookahead == 'b') ADVANCE(69); + lookahead == 'b') ADVANCE(753); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(281); + if (lookahead == 'P' || + lookahead == 'p') ADVANCE(679); + if (lookahead == 'S' || + lookahead == 's') ADVANCE(1676); END_STATE(); case 231: if (lookahead == 'B' || - lookahead == 'b') ADVANCE(828); + lookahead == 'b') ADVANCE(753); + if (lookahead == 'V' || + lookahead == 'v') ADVANCE(414); END_STATE(); case 232: if (lookahead == 'B' || - lookahead == 'b') ADVANCE(828); - if (lookahead == 'D' || - lookahead == 'd') ADVANCE(623); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(681); + lookahead == 'b') ADVANCE(69); END_STATE(); case 233: if (lookahead == 'B' || - lookahead == 'b') ADVANCE(360); + lookahead == 'b') ADVANCE(832); END_STATE(); case 234: if (lookahead == 'B' || - lookahead == 'b') ADVANCE(360); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(288); + lookahead == 'b') ADVANCE(832); + if (lookahead == 'D' || + lookahead == 'd') ADVANCE(626); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(684); END_STATE(); case 235: if (lookahead == 'B' || - lookahead == 'b') ADVANCE(360); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(288); - if (lookahead == 'S' || - lookahead == 's') ADVANCE(769); + lookahead == 'b') ADVANCE(362); END_STATE(); case 236: if (lookahead == 'B' || - lookahead == 'b') ADVANCE(64); + lookahead == 'b') ADVANCE(362); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(290); END_STATE(); case 237: if (lookahead == 'B' || - lookahead == 'b') ADVANCE(531); + lookahead == 'b') ADVANCE(362); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(290); + if (lookahead == 'S' || + lookahead == 's') ADVANCE(772); END_STATE(); case 238: if (lookahead == 'B' || - lookahead == 'b') ADVANCE(376); + lookahead == 'b') ADVANCE(64); END_STATE(); case 239: if (lookahead == 'B' || - lookahead == 'b') ADVANCE(535); + lookahead == 'b') ADVANCE(534); END_STATE(); case 240: if (lookahead == 'B' || - lookahead == 'b') ADVANCE(540); + lookahead == 'b') ADVANCE(378); END_STATE(); case 241: if (lookahead == 'B' || - lookahead == 'b') ADVANCE(542); + lookahead == 'b') ADVANCE(538); END_STATE(); case 242: if (lookahead == 'B' || @@ -10627,163 +10757,161 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 243: if (lookahead == 'B' || - lookahead == 'b') ADVANCE(544); + lookahead == 'b') ADVANCE(545); END_STATE(); case 244: if (lookahead == 'B' || - lookahead == 'b') ADVANCE(193); + lookahead == 'b') ADVANCE(546); END_STATE(); case 245: - if (lookahead == 'C' || - lookahead == 'c') ADVANCE(1656); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(547); END_STATE(); case 246: - if (lookahead == 'C' || - lookahead == 'c') ADVANCE(1659); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(195); END_STATE(); case 247: if (lookahead == 'C' || - 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); + lookahead == 'c') ADVANCE(1664); END_STATE(); case 248: if (lookahead == 'C' || - lookahead == 'c') ADVANCE(364); + lookahead == 'c') ADVANCE(1667); END_STATE(); case 249: if (lookahead == 'C' || - lookahead == 'c') ADVANCE(364); - if (lookahead == 'T' || - lookahead == 't') ADVANCE(405); + lookahead == 'c') ADVANCE(454); + if (lookahead == 'L' || + lookahead == 'l') ADVANCE(754); + if (lookahead == 'Q' || + lookahead == 'q') ADVANCE(1645); + if (lookahead == 'V' || + lookahead == 'v') ADVANCE(361); + if (lookahead == 'X' || + lookahead == 'x') ADVANCE(824); END_STATE(); case 250: if (lookahead == 'C' || - lookahead == 'c') ADVANCE(631); - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(431); + lookahead == 'c') ADVANCE(366); END_STATE(); case 251: if (lookahead == 'C' || - lookahead == 'c') ADVANCE(631); - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(430); + lookahead == 'c') ADVANCE(366); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(407); END_STATE(); case 252: if (lookahead == 'C' || - lookahead == 'c') ADVANCE(631); + lookahead == 'c') ADVANCE(634); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(672); + lookahead == 'e') ADVANCE(433); END_STATE(); case 253: if (lookahead == 'C' || - lookahead == 'c') ADVANCE(510); + lookahead == 'c') ADVANCE(634); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(432); END_STATE(); case 254: if (lookahead == 'C' || - lookahead == 'c') ADVANCE(511); + lookahead == 'c') ADVANCE(634); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(676); END_STATE(); case 255: if (lookahead == 'C' || - lookahead == 'c') ADVANCE(446); + lookahead == 'c') ADVANCE(513); END_STATE(); case 256: if (lookahead == 'C' || - lookahead == 'c') ADVANCE(512); + lookahead == 'c') ADVANCE(514); END_STATE(); case 257: if (lookahead == 'C' || - lookahead == 'c') ADVANCE(447); + lookahead == 'c') ADVANCE(448); END_STATE(); case 258: if (lookahead == 'C' || - lookahead == 'c') ADVANCE(488); + lookahead == 'c') ADVANCE(515); END_STATE(); case 259: if (lookahead == 'C' || - lookahead == 'c') ADVANCE(488); - if (lookahead == 'F' || - lookahead == 'f') ADVANCE(1663); + lookahead == 'c') ADVANCE(491); END_STATE(); case 260: if (lookahead == 'C' || - 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); + lookahead == 'c') ADVANCE(491); + if (lookahead == 'F' || + lookahead == 'f') ADVANCE(1671); END_STATE(); case 261: if (lookahead == 'C' || - lookahead == 'c') ADVANCE(636); + lookahead == 'c') ADVANCE(450); END_STATE(); case 262: if (lookahead == 'C' || - lookahead == 'c') ADVANCE(206); + lookahead == 'c') ADVANCE(643); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(275); + if (lookahead == 'M' || + lookahead == 'm') ADVANCE(177); + if (lookahead == 'U' || + lookahead == 'u') ADVANCE(602); END_STATE(); case 263: if (lookahead == 'C' || - lookahead == 'c') ADVANCE(524); - if (lookahead == 'T' || - lookahead == 't') ADVANCE(405); + lookahead == 'c') ADVANCE(639); END_STATE(); case 264: if (lookahead == 'C' || - lookahead == 'c') ADVANCE(314); + lookahead == 'c') ADVANCE(208); END_STATE(); case 265: if (lookahead == 'C' || - lookahead == 'c') ADVANCE(782); + lookahead == 'c') ADVANCE(527); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(407); END_STATE(); case 266: if (lookahead == 'C' || - lookahead == 'c') ADVANCE(815); + lookahead == 'c') ADVANCE(316); END_STATE(); case 267: if (lookahead == 'C' || - lookahead == 'c') ADVANCE(333); + lookahead == 'c') ADVANCE(785); END_STATE(); case 268: if (lookahead == 'C' || - lookahead == 'c') ADVANCE(372); + lookahead == 'c') ADVANCE(819); END_STATE(); case 269: if (lookahead == 'C' || - lookahead == 'c') ADVANCE(330); + lookahead == 'c') ADVANCE(335); END_STATE(); case 270: if (lookahead == 'C' || - lookahead == 'c') ADVANCE(385); - if (lookahead == 'T' || - lookahead == 't') ADVANCE(416); + lookahead == 'c') ADVANCE(374); END_STATE(); case 271: if (lookahead == 'C' || - lookahead == 'c') ADVANCE(454); + lookahead == 'c') ADVANCE(332); END_STATE(); case 272: if (lookahead == 'C' || - lookahead == 'c') ADVANCE(454); + lookahead == 'c') ADVANCE(387); if (lookahead == 'T' || - lookahead == 't') ADVANCE(257); + lookahead == 't') ADVANCE(418); END_STATE(); case 273: if (lookahead == 'C' || - lookahead == 'c') ADVANCE(453); + lookahead == 'c') ADVANCE(457); END_STATE(); case 274: if (lookahead == 'C' || - lookahead == 'c') ADVANCE(453); - if (lookahead == 'R' || - lookahead == 'r') ADVANCE(725); + lookahead == 'c') ADVANCE(457); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(261); END_STATE(); case 275: if (lookahead == 'C' || @@ -10791,101 +10919,103 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 276: if (lookahead == 'C' || - lookahead == 'c') ADVANCE(810); + lookahead == 'c') ADVANCE(456); + if (lookahead == 'R' || + lookahead == 'r') ADVANCE(728); END_STATE(); case 277: if (lookahead == 'C' || - lookahead == 'c') ADVANCE(822); + lookahead == 'c') ADVANCE(459); END_STATE(); case 278: if (lookahead == 'C' || - lookahead == 'c') ADVANCE(827); + lookahead == 'c') ADVANCE(814); END_STATE(); case 279: - if (lookahead == 'D' || - lookahead == 'd') ADVANCE(1776); - if (lookahead == 'Y' || - lookahead == 'y') ADVANCE(862); + if (lookahead == 'C' || + lookahead == 'c') ADVANCE(826); END_STATE(); case 280: - if (lookahead == 'D' || - lookahead == 'd') ADVANCE(1605); + if (lookahead == 'C' || + lookahead == 'c') ADVANCE(831); END_STATE(); case 281: if (lookahead == 'D' || - lookahead == 'd') ADVANCE(1645); + lookahead == 'd') ADVANCE(1785); + if (lookahead == 'Y' || + lookahead == 'y') ADVANCE(866); END_STATE(); case 282: if (lookahead == 'D' || - lookahead == 'd') ADVANCE(1791); + lookahead == 'd') ADVANCE(1613); END_STATE(); case 283: if (lookahead == 'D' || - lookahead == 'd') ADVANCE(1707); + lookahead == 'd') ADVANCE(1653); END_STATE(); case 284: if (lookahead == 'D' || - lookahead == 'd') ADVANCE(1655); + lookahead == 'd') ADVANCE(1800); END_STATE(); case 285: if (lookahead == 'D' || - lookahead == 'd') ADVANCE(1741); + lookahead == 'd') ADVANCE(1716); END_STATE(); case 286: if (lookahead == 'D' || - lookahead == 'd') ADVANCE(1658); + lookahead == 'd') ADVANCE(1663); END_STATE(); case 287: if (lookahead == 'D' || - lookahead == 'd') ADVANCE(1732); + lookahead == 'd') ADVANCE(1750); END_STATE(); case 288: if (lookahead == 'D' || - lookahead == 'd') ADVANCE(749); + lookahead == 'd') ADVANCE(1666); END_STATE(); case 289: if (lookahead == 'D' || - lookahead == 'd') ADVANCE(482); + lookahead == 'd') ADVANCE(1741); END_STATE(); case 290: if (lookahead == 'D' || - lookahead == 'd') ADVANCE(78); + lookahead == 'd') ADVANCE(751); END_STATE(); case 291: if (lookahead == 'D' || - lookahead == 'd') ADVANCE(352); - if (lookahead == 'H' || - lookahead == 'h') ADVANCE(375); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(821); + lookahead == 'd') ADVANCE(485); END_STATE(); case 292: if (lookahead == 'D' || - 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); + lookahead == 'd') ADVANCE(78); END_STATE(); case 293: if (lookahead == 'D' || - lookahead == 'd') ADVANCE(352); + lookahead == 'd') ADVANCE(354); + if (lookahead == 'H' || + lookahead == 'h') ADVANCE(377); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(821); + lookahead == 'i') ADVANCE(825); END_STATE(); case 294: if (lookahead == 'D' || - lookahead == 'd') ADVANCE(627); + lookahead == 'd') ADVANCE(354); + if (lookahead == 'H' || + lookahead == 'h') ADVANCE(377); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(825); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(381); END_STATE(); case 295: if (lookahead == 'D' || - lookahead == 'd') ADVANCE(743); + lookahead == 'd') ADVANCE(354); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(825); END_STATE(); case 296: if (lookahead == 'D' || - lookahead == 'd') ADVANCE(420); + lookahead == 'd') ADVANCE(630); END_STATE(); case 297: if (lookahead == 'D' || @@ -10893,919 +11023,925 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 298: if (lookahead == 'D' || - lookahead == 'd') ADVANCE(321); + lookahead == 'd') ADVANCE(422); END_STATE(); case 299: if (lookahead == 'D' || - lookahead == 'd') ADVANCE(357); + lookahead == 'd') ADVANCE(749); END_STATE(); case 300: if (lookahead == 'D' || - lookahead == 'd') ADVANCE(361); + lookahead == 'd') ADVANCE(323); END_STATE(); case 301: if (lookahead == 'D' || - lookahead == 'd') ADVANCE(442); + lookahead == 'd') ADVANCE(359); END_STATE(); case 302: if (lookahead == 'D' || - lookahead == 'd') ADVANCE(541); + lookahead == 'd') ADVANCE(363); END_STATE(); case 303: if (lookahead == 'D' || - lookahead == 'd') ADVANCE(849); + lookahead == 'd') ADVANCE(444); END_STATE(); case 304: - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1634); - if (lookahead == 'T' || - lookahead == 't') ADVANCE(1633); + if (lookahead == 'D' || + lookahead == 'd') ADVANCE(544); END_STATE(); case 305: - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1640); - if (lookahead == 'T' || - lookahead == 't') ADVANCE(1638); + if (lookahead == 'D' || + lookahead == 'd') ADVANCE(853); END_STATE(); case 306: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1669); + lookahead == 'e') ADVANCE(1642); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(1641); END_STATE(); case 307: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1761); + lookahead == 'e') ADVANCE(1648); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(1646); END_STATE(); case 308: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1685); + lookahead == 'e') ADVANCE(1677); END_STATE(); case 309: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1673); + lookahead == 'e') ADVANCE(1770); END_STATE(); case 310: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1725); + lookahead == 'e') ADVANCE(1693); END_STATE(); case 311: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1624); + lookahead == 'e') ADVANCE(1681); END_STATE(); case 312: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1764); + lookahead == 'e') ADVANCE(1734); END_STATE(); case 313: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1687); + lookahead == 'e') ADVANCE(1632); END_STATE(); case 314: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1736); + lookahead == 'e') ADVANCE(1773); END_STATE(); case 315: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1662); + lookahead == 'e') ADVANCE(1695); END_STATE(); case 316: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1793); + lookahead == 'e') ADVANCE(1745); END_STATE(); case 317: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1779); + lookahead == 'e') ADVANCE(1670); END_STATE(); case 318: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1738); + lookahead == 'e') ADVANCE(1802); END_STATE(); case 319: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1657); + lookahead == 'e') ADVANCE(1788); END_STATE(); case 320: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1796); + lookahead == 'e') ADVANCE(1747); END_STATE(); case 321: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1699); + lookahead == 'e') ADVANCE(1665); END_STATE(); case 322: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1665); + lookahead == 'e') ADVANCE(1805); END_STATE(); case 323: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1739); + lookahead == 'e') ADVANCE(1708); END_STATE(); case 324: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1705); + lookahead == 'e') ADVANCE(1673); END_STATE(); case 325: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1763); + lookahead == 'e') ADVANCE(1748); END_STATE(); case 326: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1744); + lookahead == 'e') ADVANCE(1714); END_STATE(); case 327: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1689); + lookahead == 'e') ADVANCE(1772); END_STATE(); case 328: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1672); + lookahead == 'e') ADVANCE(1753); END_STATE(); case 329: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1784); + lookahead == 'e') ADVANCE(1698); END_STATE(); case 330: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1797); + lookahead == 'e') ADVANCE(1680); END_STATE(); case 331: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1660); + lookahead == 'e') ADVANCE(1793); END_STATE(); case 332: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1724); + lookahead == 'e') ADVANCE(1806); END_STATE(); case 333: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1697); + lookahead == 'e') ADVANCE(1668); END_STATE(); case 334: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(438); + lookahead == 'e') ADVANCE(1733); END_STATE(); case 335: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(438); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(587); + lookahead == 'e') ADVANCE(1706); END_STATE(); case 336: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(438); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(614); + lookahead == 'e') ADVANCE(440); END_STATE(); case 337: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(438); + lookahead == 'e') ADVANCE(440); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(590); + END_STATE(); + case 338: + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(440); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(617); + END_STATE(); + case 339: + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(440); if (lookahead == 'R' || - lookahead == 'r') ADVANCE(389); + lookahead == 'r') ADVANCE(391); if (lookahead == 'Y' || - lookahead == 'y') ADVANCE(1771); + lookahead == 'y') ADVANCE(1780); END_STATE(); - case 338: + case 340: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1635); + lookahead == 'e') ADVANCE(1643); if (lookahead == 'O' || lookahead == 'o') ADVANCE(58); if (lookahead == 'U' || - lookahead == 'u') ADVANCE(559); + lookahead == 'u') ADVANCE(562); END_STATE(); - case 339: + case 341: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1635); + lookahead == 'e') ADVANCE(1643); if (lookahead == 'O' || lookahead == 'o') ADVANCE(62); if (lookahead == 'U' || - lookahead == 'u') ADVANCE(559); + lookahead == 'u') ADVANCE(562); END_STATE(); - case 340: + case 342: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1635); + lookahead == 'e') ADVANCE(1643); if (lookahead == 'O' || lookahead == 'o') ADVANCE(63); END_STATE(); - case 341: + case 343: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1635); + lookahead == 'e') ADVANCE(1643); if (lookahead == 'O' || lookahead == 'o') ADVANCE(66); END_STATE(); - case 342: + case 344: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1635); + lookahead == 'e') ADVANCE(1643); if (lookahead == 'O' || lookahead == 'o') ADVANCE(75); END_STATE(); - case 343: + case 345: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(699); + lookahead == 'e') ADVANCE(702); if (lookahead == 'H' || - lookahead == 'h') ADVANCE(177); + lookahead == 'h') ADVANCE(179); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(437); + lookahead == 'i') ADVANCE(439); if (lookahead == 'O' || - lookahead == 'o') ADVANCE(831); + lookahead == 'o') ADVANCE(835); if (lookahead == 'T' || - lookahead == 't') ADVANCE(630); + lookahead == 't') ADVANCE(633); END_STATE(); - case 344: + case 346: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(699); + lookahead == 'e') ADVANCE(702); if (lookahead == 'H' || - lookahead == 'h') ADVANCE(177); + lookahead == 'h') ADVANCE(179); if (lookahead == 'T' || - lookahead == 't') ADVANCE(629); + lookahead == 't') ADVANCE(632); if (lookahead == 'U' || - lookahead == 'u') ADVANCE(236); - END_STATE(); - case 345: - if (lookahead == 'E' || - 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(259); + lookahead == 'u') ADVANCE(238); END_STATE(); case 347: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1639); + lookahead == 'e') ADVANCE(702); + if (lookahead == 'H' || + lookahead == 'h') ADVANCE(221); if (lookahead == 'T' || - lookahead == 't') ADVANCE(1638); + lookahead == 't') ADVANCE(200); END_STATE(); case 348: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(528); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(168); + lookahead == 'e') ADVANCE(260); END_STATE(); case 349: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(528); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(168); - if (lookahead == 'R' || - lookahead == 'r') ADVANCE(751); + lookahead == 'e') ADVANCE(1647); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(1646); END_STATE(); case 350: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(528); + lookahead == 'e') ADVANCE(531); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(188); + lookahead == 'n') ADVANCE(170); END_STATE(); case 351: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(577); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(539); + lookahead == 'e') ADVANCE(531); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(170); + if (lookahead == 'R' || + lookahead == 'r') ADVANCE(755); END_STATE(); case 352: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(865); + lookahead == 'e') ADVANCE(531); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(190); END_STATE(); case 353: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(80); + lookahead == 'e') ADVANCE(580); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(542); END_STATE(); case 354: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1661); + lookahead == 'e') ADVANCE(869); END_STATE(); case 355: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(859); - if (lookahead == 'O' || - lookahead == 'o') ADVANCE(76); + lookahead == 'e') ADVANCE(80); END_STATE(); case 356: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1749); + lookahead == 'e') ADVANCE(1669); END_STATE(); case 357: if (lookahead == 'E' || lookahead == 'e') ADVANCE(863); + if (lookahead == 'O' || + lookahead == 'o') ADVANCE(76); END_STATE(); case 358: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(407); + lookahead == 'e') ADVANCE(1758); END_STATE(); case 359: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(596); + lookahead == 'e') ADVANCE(867); END_STATE(); case 360: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(514); + lookahead == 'e') ADVANCE(409); END_STATE(); case 361: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(864); + lookahead == 'e') ADVANCE(601); END_STATE(); case 362: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(576); + lookahead == 'e') ADVANCE(517); END_STATE(); case 363: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(59); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(592); + lookahead == 'e') ADVANCE(868); END_STATE(); case 364: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(667); - if (lookahead == 'L' || - lookahead == 'l') ADVANCE(832); + lookahead == 'e') ADVANCE(579); END_STATE(); case 365: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(573); + lookahead == 'e') ADVANCE(59); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(595); END_STATE(); case 366: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(566); + lookahead == 'e') ADVANCE(670); + if (lookahead == 'L' || + lookahead == 'l') ADVANCE(836); END_STATE(); case 367: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(710); + lookahead == 'e') ADVANCE(576); END_STATE(); case 368: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(71); + lookahead == 'e') ADVANCE(569); END_STATE(); case 369: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(174); + lookahead == 'e') ADVANCE(713); END_STATE(); case 370: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(738); + lookahead == 'e') ADVANCE(71); END_STATE(); case 371: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(258); + lookahead == 'e') ADVANCE(176); END_STATE(); case 372: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(84); + lookahead == 'e') ADVANCE(741); END_STATE(); case 373: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(548); + lookahead == 'e') ADVANCE(259); END_STATE(); case 374: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(287); + lookahead == 'e') ADVANCE(84); END_STATE(); case 375: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(727); + lookahead == 'e') ADVANCE(551); END_STATE(); case 376: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(518); + lookahead == 'e') ADVANCE(289); END_STATE(); case 377: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(615); + lookahead == 'e') ADVANCE(730); END_STATE(); case 378: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(740); + lookahead == 'e') ADVANCE(521); END_STATE(); case 379: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(694); + lookahead == 'e') ADVANCE(618); END_STATE(); case 380: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(568); - if (lookahead == 'H' || - lookahead == 'h') ADVANCE(715); + lookahead == 'e') ADVANCE(743); END_STATE(); case 381: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(778); + lookahead == 'e') ADVANCE(697); END_STATE(); case 382: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(286); + lookahead == 'e') ADVANCE(571); + if (lookahead == 'H' || + lookahead == 'h') ADVANCE(717); END_STATE(); case 383: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(693); + lookahead == 'e') ADVANCE(288); END_STATE(); case 384: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(742); + lookahead == 'e') ADVANCE(696); END_STATE(); case 385: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(303); + lookahead == 'e') ADVANCE(745); END_STATE(); case 386: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(284); + lookahead == 'e') ADVANCE(781); END_STATE(); case 387: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(781); + lookahead == 'e') ADVANCE(305); END_STATE(); case 388: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(729); + lookahead == 'e') ADVANCE(286); END_STATE(); case 389: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(172); + lookahead == 'e') ADVANCE(732); END_STATE(); case 390: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(818); + lookahead == 'e') ADVANCE(784); END_STATE(); case 391: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(211); + lookahead == 'e') ADVANCE(174); END_STATE(); case 392: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(735); + lookahead == 'e') ADVANCE(822); END_STATE(); case 393: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(187); + lookahead == 'e') ADVANCE(213); END_STATE(); case 394: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(687); + lookahead == 'e') ADVANCE(738); END_STATE(); case 395: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(688); + lookahead == 'e') ADVANCE(189); END_STATE(); case 396: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(800); + lookahead == 'e') ADVANCE(690); END_STATE(); case 397: if (lookahead == 'E' || - 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); + lookahead == 'e') ADVANCE(691); END_STATE(); case 398: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(731); - if (lookahead == 'L' || - lookahead == 'l') ADVANCE(634); - if (lookahead == 'W' || - lookahead == 'w') ADVANCE(178); + lookahead == 'e') ADVANCE(804); END_STATE(); case 399: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(705); + lookahead == 'e') ADVANCE(734); + if (lookahead == 'L' || + lookahead == 'l') ADVANCE(637); + if (lookahead == 'U' || + lookahead == 'u') ADVANCE(602); + if (lookahead == 'W' || + lookahead == 'w') ADVANCE(180); END_STATE(); case 400: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(684); + lookahead == 'e') ADVANCE(734); + if (lookahead == 'L' || + lookahead == 'l') ADVANCE(637); + if (lookahead == 'W' || + lookahead == 'w') ADVANCE(180); END_STATE(); case 401: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(767); + lookahead == 'e') ADVANCE(708); END_STATE(); case 402: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(768); - if (lookahead == 'L' || - lookahead == 'l') ADVANCE(635); + lookahead == 'e') ADVANCE(687); END_STATE(); case 403: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(790); + lookahead == 'e') ADVANCE(770); END_STATE(); case 404: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(545); + lookahead == 'e') ADVANCE(771); + if (lookahead == 'L' || + lookahead == 'l') ADVANCE(638); END_STATE(); case 405: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(604); + lookahead == 'e') ADVANCE(793); END_STATE(); case 406: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(761); + lookahead == 'e') ADVANCE(548); END_STATE(); case 407: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(665); + lookahead == 'e') ADVANCE(607); END_STATE(); case 408: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(711); + lookahead == 'e') ADVANCE(764); END_STATE(); case 409: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(718); + lookahead == 'e') ADVANCE(668); END_STATE(); case 410: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(600); + lookahead == 'e') ADVANCE(714); END_STATE(); case 411: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(79); + lookahead == 'e') ADVANCE(721); END_STATE(); case 412: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(733); + lookahead == 'e') ADVANCE(603); END_STATE(); case 413: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(609); + lookahead == 'e') ADVANCE(79); END_STATE(); case 414: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(713); + lookahead == 'e') ADVANCE(736); END_STATE(); case 415: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(714); + lookahead == 'e') ADVANCE(612); END_STATE(); case 416: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(276); + lookahead == 'e') ADVANCE(716); END_STATE(); case 417: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(721); + lookahead == 'e') ADVANCE(718); END_STATE(); case 418: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(712); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(539); + lookahead == 'e') ADVANCE(278); END_STATE(); case 419: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(198); + lookahead == 'e') ADVANCE(724); END_STATE(); case 420: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(82); + lookahead == 'e') ADVANCE(715); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(542); END_STATE(); case 421: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(546); + lookahead == 'e') ADVANCE(199); END_STATE(); case 422: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(87); + lookahead == 'e') ADVANCE(82); END_STATE(); case 423: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(734); + lookahead == 'e') ADVANCE(549); END_STATE(); case 424: - if (lookahead == 'F' || - lookahead == 'f') ADVANCE(1775); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1746); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(87); END_STATE(); case 425: - if (lookahead == 'F' || - lookahead == 'f') ADVANCE(1775); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1746); - if (lookahead == 'T' || - lookahead == 't') ADVANCE(460); - if (lookahead == 'V' || - lookahead == 'v') ADVANCE(367); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(737); END_STATE(); case 426: if (lookahead == 'F' || - lookahead == 'f') ADVANCE(432); + lookahead == 'f') ADVANCE(1784); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(1755); END_STATE(); case 427: if (lookahead == 'F' || - lookahead == 'f') ADVANCE(658); + lookahead == 'f') ADVANCE(1784); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(1755); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(463); + if (lookahead == 'V' || + lookahead == 'v') ADVANCE(369); END_STATE(); case 428: if (lookahead == 'F' || - lookahead == 'f') ADVANCE(203); + lookahead == 'f') ADVANCE(434); END_STATE(); case 429: if (lookahead == 'F' || - lookahead == 'f') ADVANCE(486); + lookahead == 'f') ADVANCE(661); END_STATE(); case 430: if (lookahead == 'F' || - lookahead == 'f') ADVANCE(388); - if (lookahead == 'L' || - lookahead == 'l') ADVANCE(179); + lookahead == 'f') ADVANCE(205); END_STATE(); case 431: if (lookahead == 'F' || - lookahead == 'f') ADVANCE(388); - if (lookahead == 'L' || - lookahead == 'l') ADVANCE(179); - if (lookahead == 'T' || - lookahead == 't') ADVANCE(837); + lookahead == 'f') ADVANCE(489); END_STATE(); case 432: if (lookahead == 'F' || - lookahead == 'f') ADVANCE(417); + lookahead == 'f') ADVANCE(389); + if (lookahead == 'L' || + lookahead == 'l') ADVANCE(182); END_STATE(); case 433: if (lookahead == 'F' || - lookahead == 'f') ADVANCE(400); + lookahead == 'f') ADVANCE(389); + if (lookahead == 'L' || + lookahead == 'l') ADVANCE(182); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(841); END_STATE(); case 434: if (lookahead == 'F' || - lookahead == 'f') ADVANCE(433); + lookahead == 'f') ADVANCE(419); END_STATE(); case 435: if (lookahead == 'F' || - lookahead == 'f') ADVANCE(819); + lookahead == 'f') ADVANCE(402); END_STATE(); case 436: - if (lookahead == 'G' || - lookahead == 'g') ADVANCE(1711); + if (lookahead == 'F' || + lookahead == 'f') ADVANCE(435); END_STATE(); case 437: - if (lookahead == 'G' || - lookahead == 'g') ADVANCE(612); + if (lookahead == 'F' || + lookahead == 'f') ADVANCE(823); END_STATE(); case 438: if (lookahead == 'G' || - lookahead == 'g') ADVANCE(492); + lookahead == 'g') ADVANCE(1720); END_STATE(); case 439: if (lookahead == 'G' || - lookahead == 'g') ADVANCE(353); + lookahead == 'g') ADVANCE(615); END_STATE(); case 440: if (lookahead == 'G' || - lookahead == 'g') ADVANCE(353); - if (lookahead == 'R' || - lookahead == 'r') ADVANCE(202); + lookahead == 'g') ADVANCE(495); END_STATE(); case 441: if (lookahead == 'G' || - lookahead == 'g') ADVANCE(381); + lookahead == 'g') ADVANCE(355); END_STATE(); case 442: if (lookahead == 'G' || - lookahead == 'g') ADVANCE(396); + lookahead == 'g') ADVANCE(355); + if (lookahead == 'R' || + lookahead == 'r') ADVANCE(203); END_STATE(); case 443: if (lookahead == 'G' || - lookahead == 'g') ADVANCE(384); + lookahead == 'g') ADVANCE(386); END_STATE(); case 444: if (lookahead == 'G' || - lookahead == 'g') ADVANCE(317); + lookahead == 'g') ADVANCE(398); END_STATE(); case 445: if (lookahead == 'G' || - lookahead == 'g') ADVANCE(329); + lookahead == 'g') ADVANCE(385); END_STATE(); case 446: - if (lookahead == 'H' || - lookahead == 'h') ADVANCE(1772); + if (lookahead == 'G' || + lookahead == 'g') ADVANCE(319); END_STATE(); case 447: - if (lookahead == 'H' || - lookahead == 'h') ADVANCE(1777); + if (lookahead == 'G' || + lookahead == 'g') ADVANCE(331); END_STATE(); case 448: if (lookahead == 'H' || - lookahead == 'h') ADVANCE(1714); + lookahead == 'h') ADVANCE(1781); END_STATE(); case 449: if (lookahead == 'H' || - lookahead == 'h') ADVANCE(177); - if (lookahead == 'T' || - lookahead == 't') ADVANCE(642); + lookahead == 'h') ADVANCE(1696); END_STATE(); case 450: if (lookahead == 'H' || - lookahead == 'h') ADVANCE(351); - if (lookahead == 'O' || - lookahead == 'o') ADVANCE(702); + lookahead == 'h') ADVANCE(1786); END_STATE(); case 451: if (lookahead == 'H' || - lookahead == 'h') ADVANCE(622); + lookahead == 'h') ADVANCE(1723); END_STATE(); case 452: if (lookahead == 'H' || - lookahead == 'h') ADVANCE(418); + lookahead == 'h') ADVANCE(179); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(645); END_STATE(); case 453: if (lookahead == 'H' || - lookahead == 'h') ADVANCE(626); + lookahead == 'h') ADVANCE(353); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(795); + if (lookahead == 'O' || + lookahead == 'o') ADVANCE(705); END_STATE(); case 454: if (lookahead == 'H' || - lookahead == 'h') ADVANCE(309); + lookahead == 'h') ADVANCE(625); END_STATE(); case 455: if (lookahead == 'H' || - lookahead == 'h') ADVANCE(489); + lookahead == 'h') ADVANCE(420); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(795); END_STATE(); case 456: if (lookahead == 'H' || - lookahead == 'h') ADVANCE(370); + lookahead == 'h') ADVANCE(629); END_STATE(); case 457: if (lookahead == 'H' || - lookahead == 'h') ADVANCE(362); - if (lookahead == 'O' || - lookahead == 'o') ADVANCE(1745); - if (lookahead == 'R' || - lookahead == 'r') ADVANCE(171); + lookahead == 'h') ADVANCE(311); END_STATE(); case 458: if (lookahead == 'H' || - lookahead == 'h') ADVANCE(643); + lookahead == 'h') ADVANCE(492); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(795); END_STATE(); case 459: if (lookahead == 'H' || - lookahead == 'h') ADVANCE(210); + lookahead == 'h') ADVANCE(372); END_STATE(); case 460: if (lookahead == 'H' || - lookahead == 'h') ADVANCE(383); + lookahead == 'h') ADVANCE(364); + if (lookahead == 'O' || + lookahead == 'o') ADVANCE(1754); + if (lookahead == 'R' || + lookahead == 'r') ADVANCE(173); END_STATE(); case 461: if (lookahead == 'H' || - lookahead == 'h') ADVANCE(409); + lookahead == 'h') ADVANCE(646); END_STATE(); case 462: - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(349); - if (lookahead == 'O' || - lookahead == 'o') ADVANCE(692); - if (lookahead == 'R' || - lookahead == 'r') ADVANCE(164); + if (lookahead == 'H' || + lookahead == 'h') ADVANCE(212); END_STATE(); case 463: - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(565); - if (lookahead == 'O' || - lookahead == 'o') ADVANCE(678); + if (lookahead == 'H' || + lookahead == 'h') ADVANCE(384); END_STATE(); case 464: - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(877); + if (lookahead == 'H' || + lookahead == 'h') ADVANCE(411); END_STATE(); case 465: if (lookahead == 'I' || - lookahead == 'i') ADVANCE(350); + lookahead == 'i') ADVANCE(351); if (lookahead == 'O' || - lookahead == 'o') ADVANCE(692); + lookahead == 'o') ADVANCE(695); + if (lookahead == 'R' || + lookahead == 'r') ADVANCE(166); END_STATE(); case 466: if (lookahead == 'I' || - lookahead == 'i') ADVANCE(856); + lookahead == 'i') ADVANCE(568); if (lookahead == 'O' || - lookahead == 'o') ADVANCE(679); + lookahead == 'o') ADVANCE(681); END_STATE(); case 467: if (lookahead == 'I' || - lookahead == 'i') ADVANCE(856); - if (lookahead == 'O' || - lookahead == 'o') ADVANCE(270); + lookahead == 'i') ADVANCE(881); END_STATE(); case 468: if (lookahead == 'I' || - lookahead == 'i') ADVANCE(856); + lookahead == 'i') ADVANCE(352); if (lookahead == 'O' || - lookahead == 'o') ADVANCE(809); + lookahead == 'o') ADVANCE(695); END_STATE(); case 469: if (lookahead == 'I' || - lookahead == 'i') ADVANCE(878); + lookahead == 'i') ADVANCE(860); + if (lookahead == 'O' || + lookahead == 'o') ADVANCE(682); END_STATE(); case 470: if (lookahead == 'I' || - lookahead == 'i') ADVANCE(281); + lookahead == 'i') ADVANCE(860); + if (lookahead == 'O' || + lookahead == 'o') ADVANCE(272); END_STATE(); case 471: if (lookahead == 'I' || - lookahead == 'i') ADVANCE(821); + lookahead == 'i') ADVANCE(860); + if (lookahead == 'O' || + lookahead == 'o') ADVANCE(813); END_STATE(); case 472: if (lookahead == 'I' || - lookahead == 'i') ADVANCE(821); - if (lookahead == 'P' || - lookahead == 'p') ADVANCE(841); + lookahead == 'i') ADVANCE(882); END_STATE(); case 473: if (lookahead == 'I' || - lookahead == 'i') ADVANCE(560); + lookahead == 'i') ADVANCE(283); END_STATE(); case 474: if (lookahead == 'I' || - lookahead == 'i') ADVANCE(246); + lookahead == 'i') ADVANCE(825); END_STATE(); case 475: if (lookahead == 'I' || - lookahead == 'i') ADVANCE(301); + lookahead == 'i') ADVANCE(825); + if (lookahead == 'P' || + lookahead == 'p') ADVANCE(845); END_STATE(); case 476: if (lookahead == 'I' || - lookahead == 'i') ADVANCE(616); + lookahead == 'i') ADVANCE(563); END_STATE(); case 477: if (lookahead == 'I' || - lookahead == 'i') ADVANCE(616); - if (lookahead == 'W' || - lookahead == 'w') ADVANCE(475); + lookahead == 'i') ADVANCE(248); END_STATE(); case 478: if (lookahead == 'I' || - lookahead == 'i') ADVANCE(245); + lookahead == 'i') ADVANCE(303); END_STATE(); case 479: if (lookahead == 'I' || - lookahead == 'i') ADVANCE(594); + lookahead == 'i') ADVANCE(619); END_STATE(); case 480: if (lookahead == 'I' || - lookahead == 'i') ADVANCE(779); + lookahead == 'i') ADVANCE(619); + if (lookahead == 'W' || + lookahead == 'w') ADVANCE(478); END_STATE(); case 481: if (lookahead == 'I' || - lookahead == 'i') ADVANCE(799); + lookahead == 'i') ADVANCE(247); END_STATE(); case 482: if (lookahead == 'I' || - lookahead == 'i') ADVANCE(685); + lookahead == 'i') ADVANCE(597); END_STATE(); case 483: if (lookahead == 'I' || - lookahead == 'i') ADVANCE(783); + lookahead == 'i') ADVANCE(782); END_STATE(); case 484: if (lookahead == 'I' || - lookahead == 'i') ADVANCE(770); + lookahead == 'i') ADVANCE(803); END_STATE(); case 485: if (lookahead == 'I' || - lookahead == 'i') ADVANCE(378); + lookahead == 'i') ADVANCE(688); END_STATE(); case 486: if (lookahead == 'I' || - lookahead == 'i') ADVANCE(404); + lookahead == 'i') ADVANCE(786); END_STATE(); case 487: if (lookahead == 'I' || - lookahead == 'i') ADVANCE(855); + lookahead == 'i') ADVANCE(773); END_STATE(); case 488: if (lookahead == 'I' || - lookahead == 'i') ADVANCE(569); + lookahead == 'i') ADVANCE(380); END_STATE(); case 489: if (lookahead == 'I' || - lookahead == 'i') ADVANCE(539); + lookahead == 'i') ADVANCE(406); END_STATE(); case 490: if (lookahead == 'I' || - lookahead == 'i') ADVANCE(298); + lookahead == 'i') ADVANCE(859); END_STATE(); case 491: if (lookahead == 'I' || - lookahead == 'i') ADVANCE(173); + lookahead == 'i') ADVANCE(572); END_STATE(); case 492: if (lookahead == 'I' || - lookahead == 'i') ADVANCE(598); + lookahead == 'i') ADVANCE(542); END_STATE(); case 493: if (lookahead == 'I' || - lookahead == 'i') ADVANCE(646); + lookahead == 'i') ADVANCE(300); END_STATE(); case 494: if (lookahead == 'I' || - lookahead == 'i') ADVANCE(567); + lookahead == 'i') ADVANCE(175); END_STATE(); case 495: if (lookahead == 'I' || - lookahead == 'i') ADVANCE(602); + lookahead == 'i') ADVANCE(600); END_STATE(); case 496: if (lookahead == 'I' || - lookahead == 'i') ADVANCE(648); + lookahead == 'i') ADVANCE(649); END_STATE(); case 497: if (lookahead == 'I' || @@ -11813,651 +11949,651 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 498: if (lookahead == 'I' || - lookahead == 'i') ADVANCE(758); + lookahead == 'i') ADVANCE(605); END_STATE(); case 499: if (lookahead == 'I' || - lookahead == 'i') ADVANCE(184); + lookahead == 'i') ADVANCE(651); END_STATE(); case 500: if (lookahead == 'I' || - lookahead == 'i') ADVANCE(572); + lookahead == 'i') ADVANCE(573); END_STATE(); case 501: if (lookahead == 'I' || - lookahead == 'i') ADVANCE(650); + lookahead == 'i') ADVANCE(761); END_STATE(); case 502: if (lookahead == 'I' || - lookahead == 'i') ADVANCE(651); + lookahead == 'i') ADVANCE(185); END_STATE(); case 503: if (lookahead == 'I' || - lookahead == 'i') ADVANCE(654); + lookahead == 'i') ADVANCE(575); END_STATE(); case 504: if (lookahead == 'I' || - lookahead == 'i') ADVANCE(348); - if (lookahead == 'O' || - lookahead == 'o') ADVANCE(692); - if (lookahead == 'R' || - lookahead == 'r') ADVANCE(633); + lookahead == 'i') ADVANCE(653); END_STATE(); case 505: if (lookahead == 'I' || - lookahead == 'i') ADVANCE(618); + lookahead == 'i') ADVANCE(654); END_STATE(); case 506: if (lookahead == 'I' || - lookahead == 'i') ADVANCE(879); + lookahead == 'i') ADVANCE(657); END_STATE(); case 507: if (lookahead == 'I' || - lookahead == 'i') ADVANCE(421); + lookahead == 'i') ADVANCE(350); if (lookahead == 'O' || - lookahead == 'o') ADVANCE(682); + lookahead == 'o') ADVANCE(695); + if (lookahead == 'R' || + lookahead == 'r') ADVANCE(636); END_STATE(); case 508: if (lookahead == 'I' || - lookahead == 'i') ADVANCE(226); + lookahead == 'i') ADVANCE(621); END_STATE(); case 509: - if (lookahead == 'K' || - lookahead == 'k') ADVANCE(1770); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(883); END_STATE(); case 510: - if (lookahead == 'K' || - lookahead == 'k') ADVANCE(1765); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(423); + if (lookahead == 'O' || + lookahead == 'o') ADVANCE(685); END_STATE(); case 511: - if (lookahead == 'K' || - lookahead == 'k') ADVANCE(1766); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(228); END_STATE(); case 512: if (lookahead == 'K' || - lookahead == 'k') ADVANCE(1767); + lookahead == 'k') ADVANCE(1779); END_STATE(); case 513: if (lookahead == 'K' || - lookahead == 'k') ADVANCE(306); + lookahead == 'k') ADVANCE(1774); END_STATE(); case 514: - if (lookahead == 'L' || - lookahead == 'l') ADVANCE(1649); + if (lookahead == 'K' || + lookahead == 'k') ADVANCE(1775); END_STATE(); case 515: - if (lookahead == 'L' || - lookahead == 'l') ADVANCE(1706); + if (lookahead == 'K' || + lookahead == 'k') ADVANCE(1776); END_STATE(); case 516: - if (lookahead == 'L' || - lookahead == 'l') ADVANCE(1654); + if (lookahead == 'K' || + lookahead == 'k') ADVANCE(308); END_STATE(); case 517: if (lookahead == 'L' || - lookahead == 'l') ADVANCE(1788); + lookahead == 'l') ADVANCE(1657); END_STATE(); case 518: if (lookahead == 'L' || - lookahead == 'l') ADVANCE(1650); + lookahead == 'l') ADVANCE(1715); END_STATE(); case 519: if (lookahead == 'L' || - lookahead == 'l') ADVANCE(1718); + lookahead == 'l') ADVANCE(1662); END_STATE(); case 520: if (lookahead == 'L' || - lookahead == 'l') ADVANCE(547); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(764); + lookahead == 'l') ADVANCE(1797); END_STATE(); case 521: if (lookahead == 'L' || - lookahead == 'l') ADVANCE(547); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(796); + lookahead == 'l') ADVANCE(1658); END_STATE(); case 522: if (lookahead == 'L' || - lookahead == 'l') ADVANCE(1647); + lookahead == 'l') ADVANCE(1727); END_STATE(); case 523: if (lookahead == 'L' || - lookahead == 'l') ADVANCE(1783); + lookahead == 'l') ADVANCE(550); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(767); END_STATE(); case 524: if (lookahead == 'L' || - lookahead == 'l') ADVANCE(832); + lookahead == 'l') ADVANCE(550); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(800); END_STATE(); case 525: if (lookahead == 'L' || - lookahead == 'l') ADVANCE(875); + lookahead == 'l') ADVANCE(1655); END_STATE(); case 526: if (lookahead == 'L' || - lookahead == 'l') ADVANCE(872); + lookahead == 'l') ADVANCE(1792); END_STATE(); case 527: if (lookahead == 'L' || - lookahead == 'l') ADVANCE(829); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(763); - if (lookahead == 'U' || - lookahead == 'u') ADVANCE(610); + lookahead == 'l') ADVANCE(836); END_STATE(); case 528: if (lookahead == 'L' || - lookahead == 'l') ADVANCE(282); + lookahead == 'l') ADVANCE(879); END_STATE(); case 529: if (lookahead == 'L' || - lookahead == 'l') ADVANCE(873); + lookahead == 'l') ADVANCE(876); END_STATE(); case 530: if (lookahead == 'L' || - lookahead == 'l') ADVANCE(464); + lookahead == 'l') ADVANCE(833); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(766); + if (lookahead == 'U' || + lookahead == 'u') ADVANCE(613); END_STATE(); case 531: if (lookahead == 'L' || - lookahead == 'l') ADVANCE(876); + lookahead == 'l') ADVANCE(284); END_STATE(); case 532: if (lookahead == 'L' || - lookahead == 'l') ADVANCE(744); + lookahead == 'l') ADVANCE(877); END_STATE(); case 533: if (lookahead == 'L' || - lookahead == 'l') ADVANCE(637); + lookahead == 'l') ADVANCE(467); END_STATE(); case 534: if (lookahead == 'L' || - lookahead == 'l') ADVANCE(639); + lookahead == 'l') ADVANCE(880); END_STATE(); case 535: if (lookahead == 'L' || - lookahead == 'l') ADVANCE(474); + lookahead == 'l') ADVANCE(747); END_STATE(); case 536: if (lookahead == 'L' || - lookahead == 'l') ADVANCE(365); + lookahead == 'l') ADVANCE(640); END_STATE(); case 537: if (lookahead == 'L' || - lookahead == 'l') ADVANCE(163); + lookahead == 'l') ADVANCE(642); END_STATE(); case 538: if (lookahead == 'L' || - lookahead == 'l') ADVANCE(529); + lookahead == 'l') ADVANCE(477); END_STATE(); case 539: if (lookahead == 'L' || - lookahead == 'l') ADVANCE(313); + lookahead == 'l') ADVANCE(367); END_STATE(); case 540: if (lookahead == 'L' || - lookahead == 'l') ADVANCE(331); + lookahead == 'l') ADVANCE(165); END_STATE(); case 541: if (lookahead == 'L' || - lookahead == 'l') ADVANCE(332); + lookahead == 'l') ADVANCE(532); END_STATE(); case 542: if (lookahead == 'L' || - lookahead == 'l') ADVANCE(354); + lookahead == 'l') ADVANCE(315); END_STATE(); case 543: if (lookahead == 'L' || - lookahead == 'l') ADVANCE(322); + lookahead == 'l') ADVANCE(333); END_STATE(); case 544: if (lookahead == 'L' || - lookahead == 'l') ADVANCE(328); + lookahead == 'l') ADVANCE(334); END_STATE(); case 545: if (lookahead == 'L' || - lookahead == 'l') ADVANCE(295); + lookahead == 'l') ADVANCE(356); END_STATE(); case 546: if (lookahead == 'L' || - lookahead == 'l') ADVANCE(297); + lookahead == 'l') ADVANCE(324); END_STATE(); case 547: if (lookahead == 'L' || - lookahead == 'l') ADVANCE(185); - if (lookahead == 'U' || - lookahead == 'u') ADVANCE(561); + lookahead == 'l') ADVANCE(330); END_STATE(); case 548: if (lookahead == 'L' || - lookahead == 'l') ADVANCE(223); + lookahead == 'l') ADVANCE(297); END_STATE(); case 549: if (lookahead == 'L' || - lookahead == 'l') ADVANCE(506); + lookahead == 'l') ADVANCE(299); END_STATE(); case 550: - if (lookahead == 'M' || - lookahead == 'm') ADVANCE(1712); + if (lookahead == 'L' || + lookahead == 'l') ADVANCE(187); + if (lookahead == 'U' || + lookahead == 'u') ADVANCE(564); END_STATE(); case 551: - if (lookahead == 'M' || - lookahead == 'm') ADVANCE(1781); + if (lookahead == 'L' || + lookahead == 'l') ADVANCE(225); END_STATE(); case 552: - if (lookahead == 'M' || - lookahead == 'm') ADVANCE(1782); + if (lookahead == 'L' || + lookahead == 'l') ADVANCE(509); END_STATE(); case 553: if (lookahead == 'M' || - lookahead == 'm') ADVANCE(1786); + lookahead == 'm') ADVANCE(1721); END_STATE(); case 554: if (lookahead == 'M' || - lookahead == 'm') ADVANCE(1787); + lookahead == 'm') ADVANCE(1790); END_STATE(); case 555: if (lookahead == 'M' || - lookahead == 'm') ADVANCE(1721); + lookahead == 'm') ADVANCE(1791); END_STATE(); case 556: if (lookahead == 'M' || - lookahead == 'm') ADVANCE(1722); + lookahead == 'm') ADVANCE(1795); END_STATE(); case 557: if (lookahead == 'M' || - lookahead == 'm') ADVANCE(663); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(292); + lookahead == 'm') ADVANCE(1796); END_STATE(); case 558: if (lookahead == 'M' || - lookahead == 'm') ADVANCE(663); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(291); + lookahead == 'm') ADVANCE(1730); END_STATE(); case 559: if (lookahead == 'M' || - lookahead == 'm') ADVANCE(68); + lookahead == 'm') ADVANCE(1731); END_STATE(); case 560: if (lookahead == 'M' || - lookahead == 'm') ADVANCE(833); + lookahead == 'm') ADVANCE(666); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(294); END_STATE(); case 561: if (lookahead == 'M' || - lookahead == 'm') ADVANCE(601); + lookahead == 'm') ADVANCE(666); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(293); END_STATE(); case 562: if (lookahead == 'M' || - lookahead == 'm') ADVANCE(311); + lookahead == 'm') ADVANCE(68); END_STATE(); case 563: if (lookahead == 'M' || - lookahead == 'm') ADVANCE(390); + lookahead == 'm') ADVANCE(837); END_STATE(); case 564: if (lookahead == 'M' || - lookahead == 'm') ADVANCE(406); + lookahead == 'm') ADVANCE(604); END_STATE(); case 565: if (lookahead == 'M' || - lookahead == 'm') ADVANCE(191); - if (lookahead == 'V' || - lookahead == 'v') ADVANCE(205); + lookahead == 'm') ADVANCE(313); END_STATE(); case 566: if (lookahead == 'M' || - lookahead == 'm') ADVANCE(237); + lookahead == 'm') ADVANCE(392); END_STATE(); case 567: if (lookahead == 'M' || - lookahead == 'm') ADVANCE(834); + lookahead == 'm') ADVANCE(408); END_STATE(); case 568: if (lookahead == 'M' || - lookahead == 'm') ADVANCE(670); + lookahead == 'm') ADVANCE(193); + if (lookahead == 'V' || + lookahead == 'v') ADVANCE(207); END_STATE(); case 569: if (lookahead == 'M' || - lookahead == 'm') ADVANCE(180); + lookahead == 'm') ADVANCE(239); END_STATE(); case 570: if (lookahead == 'M' || - lookahead == 'm') ADVANCE(835); + lookahead == 'm') ADVANCE(838); END_STATE(); case 571: if (lookahead == 'M' || - lookahead == 'm') ADVANCE(186); + lookahead == 'm') ADVANCE(674); END_STATE(); case 572: if (lookahead == 'M' || - lookahead == 'm') ADVANCE(836); + lookahead == 'm') ADVANCE(181); END_STATE(); case 573: if (lookahead == 'M' || - lookahead == 'm') ADVANCE(413); + lookahead == 'm') ADVANCE(839); END_STATE(); case 574: if (lookahead == 'M' || - lookahead == 'm') ADVANCE(225); + lookahead == 'm') ADVANCE(188); END_STATE(); case 575: - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1746); + if (lookahead == 'M' || + lookahead == 'm') ADVANCE(840); END_STATE(); case 576: - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1684); + if (lookahead == 'M' || + lookahead == 'm') ADVANCE(415); END_STATE(); case 577: - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1762); - if (lookahead == 'R' || - lookahead == 'r') ADVANCE(312); + if (lookahead == 'M' || + lookahead == 'm') ADVANCE(227); END_STATE(); case 578: if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1691); + lookahead == 'n') ADVANCE(1755); END_STATE(); case 579: if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1693); + lookahead == 'n') ADVANCE(1692); END_STATE(); case 580: if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1758); + lookahead == 'n') ADVANCE(1771); + if (lookahead == 'R' || + lookahead == 'r') ADVANCE(314); END_STATE(); case 581: if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1709); + lookahead == 'n') ADVANCE(1700); END_STATE(); case 582: if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1676); + lookahead == 'n') ADVANCE(1702); END_STATE(); case 583: if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1690); + lookahead == 'n') ADVANCE(1767); END_STATE(); case 584: if (lookahead == 'N' || - 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); + lookahead == 'n') ADVANCE(1718); END_STATE(); case 585: if (lookahead == 'N' || - lookahead == 'n') ADVANCE(280); - if (lookahead == 'Q' || - lookahead == 'q') ADVANCE(1637); - if (lookahead == 'X' || - lookahead == 'x') ADVANCE(820); + lookahead == 'n') ADVANCE(1684); END_STATE(); case 586: if (lookahead == 'N' || - lookahead == 'n') ADVANCE(232); - if (lookahead == 'S' || - lookahead == 's') ADVANCE(363); + lookahead == 'n') ADVANCE(1699); END_STATE(); case 587: if (lookahead == 'N' || - lookahead == 'n') ADVANCE(183); + lookahead == 'n') ADVANCE(282); + if (lookahead == 'Q' || + lookahead == 'q') ADVANCE(1645); + if (lookahead == 'V' || + lookahead == 'v') ADVANCE(361); + if (lookahead == 'X' || + lookahead == 'x') ADVANCE(265); END_STATE(); case 588: if (lookahead == 'N' || - lookahead == 'n') ADVANCE(857); + lookahead == 'n') ADVANCE(282); + if (lookahead == 'Q' || + lookahead == 'q') ADVANCE(1645); + if (lookahead == 'X' || + lookahead == 'x') ADVANCE(824); END_STATE(); case 589: if (lookahead == 'N' || - lookahead == 'n') ADVANCE(293); + lookahead == 'n') ADVANCE(234); + if (lookahead == 'S' || + lookahead == 's') ADVANCE(365); END_STATE(); case 590: if (lookahead == 'N' || - lookahead == 'n') ADVANCE(763); + lookahead == 'n') ADVANCE(184); END_STATE(); case 591: if (lookahead == 'N' || - lookahead == 'n') ADVANCE(472); + lookahead == 'n') ADVANCE(861); END_STATE(); case 592: if (lookahead == 'N' || - lookahead == 'n') ADVANCE(436); + lookahead == 'n') ADVANCE(295); END_STATE(); case 593: if (lookahead == 'N' || - lookahead == 'n') ADVANCE(231); + lookahead == 'n') ADVANCE(766); END_STATE(); case 594: if (lookahead == 'N' || - lookahead == 'n') ADVANCE(427); + lookahead == 'n') ADVANCE(475); END_STATE(); case 595: if (lookahead == 'N' || - lookahead == 'n') ADVANCE(762); + lookahead == 'n') ADVANCE(438); END_STATE(); case 596: if (lookahead == 'N' || - lookahead == 'n') ADVANCE(772); + lookahead == 'n') ADVANCE(233); END_STATE(); case 597: if (lookahead == 'N' || - lookahead == 'n') ADVANCE(874); - if (lookahead == 'P' || - lookahead == 'p') ADVANCE(675); - if (lookahead == 'S' || - lookahead == 's') ADVANCE(759); + lookahead == 'n') ADVANCE(429); END_STATE(); case 598: if (lookahead == 'N' || - lookahead == 'n') ADVANCE(737); + lookahead == 'n') ADVANCE(765); END_STATE(); case 599: if (lookahead == 'N' || - lookahead == 'n') ADVANCE(294); + lookahead == 'n') ADVANCE(878); + if (lookahead == 'P' || + lookahead == 'p') ADVANCE(679); + if (lookahead == 'S' || + lookahead == 's') ADVANCE(762); END_STATE(); case 600: if (lookahead == 'N' || - lookahead == 'n') ADVANCE(285); + lookahead == 'n') ADVANCE(740); END_STATE(); case 601: if (lookahead == 'N' || - lookahead == 'n') ADVANCE(73); + lookahead == 'n') ADVANCE(775); END_STATE(); case 602: if (lookahead == 'N' || - lookahead == 'n') ADVANCE(739); + lookahead == 'n') ADVANCE(296); END_STATE(); case 603: if (lookahead == 'N' || - lookahead == 'n') ADVANCE(70); + lookahead == 'n') ADVANCE(287); END_STATE(); case 604: if (lookahead == 'N' || - lookahead == 'n') ADVANCE(775); + lookahead == 'n') ADVANCE(73); END_STATE(); case 605: if (lookahead == 'N' || - lookahead == 'n') ADVANCE(302); + lookahead == 'n') ADVANCE(742); END_STATE(); case 606: if (lookahead == 'N' || - lookahead == 'n') ADVANCE(526); + lookahead == 'n') ADVANCE(70); END_STATE(); case 607: if (lookahead == 'N' || - lookahead == 'n') ADVANCE(471); + lookahead == 'n') ADVANCE(778); END_STATE(); case 608: if (lookahead == 'N' || - lookahead == 'n') ADVANCE(315); + lookahead == 'n') ADVANCE(304); END_STATE(); case 609: if (lookahead == 'N' || - lookahead == 'n') ADVANCE(801); + lookahead == 'n') ADVANCE(529); END_STATE(); case 610: if (lookahead == 'N' || - lookahead == 'n') ADVANCE(771); + lookahead == 'n') ADVANCE(474); END_STATE(); case 611: if (lookahead == 'N' || - lookahead == 'n') ADVANCE(784); + lookahead == 'n') ADVANCE(317); END_STATE(); case 612: if (lookahead == 'N' || - lookahead == 'n') ADVANCE(181); + lookahead == 'n') ADVANCE(805); END_STATE(); case 613: if (lookahead == 'N' || - lookahead == 'n') ADVANCE(494); + lookahead == 'n') ADVANCE(774); END_STATE(); case 614: if (lookahead == 'N' || - lookahead == 'n') ADVANCE(182); + lookahead == 'n') ADVANCE(787); END_STATE(); case 615: if (lookahead == 'N' || - lookahead == 'n') ADVANCE(268); + lookahead == 'n') ADVANCE(186); END_STATE(); case 616: if (lookahead == 'N' || - lookahead == 'n') ADVANCE(299); + lookahead == 'n') ADVANCE(497); END_STATE(); case 617: if (lookahead == 'N' || - lookahead == 'n') ADVANCE(795); + lookahead == 'n') ADVANCE(183); END_STATE(); case 618: if (lookahead == 'N' || - lookahead == 'n') ADVANCE(300); + lookahead == 'n') ADVANCE(270); END_STATE(); case 619: if (lookahead == 'N' || - lookahead == 'n') ADVANCE(500); + lookahead == 'n') ADVANCE(301); END_STATE(); case 620: if (lookahead == 'N' || - lookahead == 'n') ADVANCE(278); + lookahead == 'n') ADVANCE(799); END_STATE(); case 621: - if (lookahead == 'O' || - lookahead == 'o') ADVANCE(1760); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(302); END_STATE(); case 622: - if (lookahead == 'O' || - lookahead == 'o') ADVANCE(1728); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(503); END_STATE(); case 623: - if (lookahead == 'O' || - lookahead == 'o') ADVANCE(1748); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(280); END_STATE(); case 624: if (lookahead == 'O' || - lookahead == 'o') ADVANCE(831); - if (lookahead == 'T' || - lookahead == 't') ADVANCE(629); + lookahead == 'o') ADVANCE(1769); END_STATE(); case 625: if (lookahead == 'O' || - lookahead == 'o') ADVANCE(470); + lookahead == 'o') ADVANCE(1737); END_STATE(); case 626: if (lookahead == 'O' || - lookahead == 'o') ADVANCE(1729); + lookahead == 'o') ADVANCE(1757); END_STATE(); case 627: if (lookahead == 'O' || - lookahead == 'o') ADVANCE(1652); + lookahead == 'o') ADVANCE(835); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(632); END_STATE(); case 628: if (lookahead == 'O' || - lookahead == 'o') ADVANCE(521); + lookahead == 'o') ADVANCE(473); END_STATE(); case 629: if (lookahead == 'O' || - lookahead == 'o') ADVANCE(664); + lookahead == 'o') ADVANCE(1738); END_STATE(); case 630: if (lookahead == 'O' || - lookahead == 'o') ADVANCE(664); - if (lookahead == 'R' || - lookahead == 'r') ADVANCE(369); + lookahead == 'o') ADVANCE(1660); END_STATE(); case 631: if (lookahead == 'O' || - lookahead == 'o') ADVANCE(296); + lookahead == 'o') ADVANCE(524); END_STATE(); case 632: if (lookahead == 'O' || - lookahead == 'o') ADVANCE(860); + lookahead == 'o') ADVANCE(667); END_STATE(); case 633: if (lookahead == 'O' || - lookahead == 'o') ADVANCE(550); + lookahead == 'o') ADVANCE(667); + if (lookahead == 'R' || + lookahead == 'r') ADVANCE(371); END_STATE(); case 634: if (lookahead == 'O' || - lookahead == 'o') ADVANCE(253); + lookahead == 'o') ADVANCE(298); END_STATE(); case 635: if (lookahead == 'O' || - lookahead == 'o') ADVANCE(244); + lookahead == 'o') ADVANCE(864); END_STATE(); case 636: if (lookahead == 'O' || - lookahead == 'o') ADVANCE(668); + lookahead == 'o') ADVANCE(553); END_STATE(); case 637: if (lookahead == 'O' || - lookahead == 'o') ADVANCE(254); + lookahead == 'o') ADVANCE(255); END_STATE(); case 638: if (lookahead == 'O' || - lookahead == 'o') ADVANCE(848); + lookahead == 'o') ADVANCE(246); END_STATE(); case 639: if (lookahead == 'O' || - lookahead == 'o') ADVANCE(256); + lookahead == 'o') ADVANCE(671); END_STATE(); case 640: if (lookahead == 'O' || - lookahead == 'o') ADVANCE(588); + lookahead == 'o') ADVANCE(256); END_STATE(); case 641: if (lookahead == 'O' || - lookahead == 'o') ADVANCE(677); + lookahead == 'o') ADVANCE(852); END_STATE(); case 642: if (lookahead == 'O' || - lookahead == 'o') ADVANCE(662); + lookahead == 'o') ADVANCE(258); END_STATE(); case 643: if (lookahead == 'O' || - lookahead == 'o') ADVANCE(283); + lookahead == 'o') ADVANCE(591); END_STATE(); case 644: if (lookahead == 'O' || - lookahead == 'o') ADVANCE(683); + lookahead == 'o') ADVANCE(673); END_STATE(); case 645: if (lookahead == 'O' || - lookahead == 'o') ADVANCE(519); + lookahead == 'o') ADVANCE(665); END_STATE(); case 646: if (lookahead == 'O' || - lookahead == 'o') ADVANCE(603); + lookahead == 'o') ADVANCE(285); END_STATE(); case 647: if (lookahead == 'O' || - lookahead == 'o') ADVANCE(645); + lookahead == 'o') ADVANCE(686); END_STATE(); case 648: if (lookahead == 'O' || - lookahead == 'o') ADVANCE(580); + lookahead == 'o') ADVANCE(522); END_STATE(); case 649: if (lookahead == 'O' || @@ -12465,735 +12601,735 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 650: if (lookahead == 'O' || - lookahead == 'o') ADVANCE(581); + lookahead == 'o') ADVANCE(648); END_STATE(); case 651: if (lookahead == 'O' || - lookahead == 'o') ADVANCE(582); + lookahead == 'o') ADVANCE(583); END_STATE(); case 652: if (lookahead == 'O' || - lookahead == 'o') ADVANCE(686); + lookahead == 'o') ADVANCE(609); END_STATE(); case 653: if (lookahead == 'O' || - lookahead == 'o') ADVANCE(689); + lookahead == 'o') ADVANCE(584); END_STATE(); case 654: if (lookahead == 'O' || - lookahead == 'o') ADVANCE(579); + lookahead == 'o') ADVANCE(585); END_STATE(); case 655: if (lookahead == 'O' || - lookahead == 'o') ADVANCE(816); - if (lookahead == 'R' || - lookahead == 'r') ADVANCE(171); + lookahead == 'o') ADVANCE(689); END_STATE(); case 656: if (lookahead == 'O' || - lookahead == 'o') ADVANCE(851); + lookahead == 'o') ADVANCE(692); END_STATE(); case 657: if (lookahead == 'O' || - lookahead == 'o') ADVANCE(844); + lookahead == 'o') ADVANCE(582); END_STATE(); case 658: if (lookahead == 'O' || - lookahead == 'o') ADVANCE(732); + lookahead == 'o') ADVANCE(820); + if (lookahead == 'R' || + lookahead == 'r') ADVANCE(173); END_STATE(); case 659: if (lookahead == 'O' || - lookahead == 'o') ADVANCE(817); + lookahead == 'o') ADVANCE(855); END_STATE(); case 660: - if (lookahead == 'P' || - lookahead == 'p') ADVANCE(1730); - if (lookahead == 'T' || - lookahead == 't') ADVANCE(275); + if (lookahead == 'O' || + lookahead == 'o') ADVANCE(848); END_STATE(); case 661: - if (lookahead == 'P' || - lookahead == 'p') ADVANCE(1731); + if (lookahead == 'O' || + lookahead == 'o') ADVANCE(735); END_STATE(); case 662: - if (lookahead == 'P' || - lookahead == 'p') ADVANCE(1754); + if (lookahead == 'O' || + lookahead == 'o') ADVANCE(821); END_STATE(); case 663: if (lookahead == 'P' || - lookahead == 'p') ADVANCE(536); + lookahead == 'p') ADVANCE(1739); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(277); END_STATE(); case 664: if (lookahead == 'P' || - lookahead == 'p') ADVANCE(74); + lookahead == 'p') ADVANCE(1740); END_STATE(); case 665: if (lookahead == 'P' || - lookahead == 'p') ADVANCE(83); + lookahead == 'p') ADVANCE(1763); END_STATE(); case 666: if (lookahead == 'P' || - lookahead == 'p') ADVANCE(525); + lookahead == 'p') ADVANCE(539); END_STATE(); case 667: if (lookahead == 'P' || - lookahead == 'p') ADVANCE(774); + lookahead == 'p') ADVANCE(74); END_STATE(); case 668: if (lookahead == 'P' || - lookahead == 'p') ADVANCE(485); + lookahead == 'p') ADVANCE(83); END_STATE(); case 669: if (lookahead == 'P' || - lookahead == 'p') ADVANCE(647); + lookahead == 'p') ADVANCE(528); END_STATE(); case 670: if (lookahead == 'P' || - lookahead == 'p') ADVANCE(85); + lookahead == 'p') ADVANCE(777); END_STATE(); case 671: if (lookahead == 'P' || - lookahead == 'p') ADVANCE(323); + lookahead == 'p') ADVANCE(488); END_STATE(); case 672: if (lookahead == 'P' || - lookahead == 'p') ADVANCE(419); + lookahead == 'p') ADVANCE(650); END_STATE(); case 673: if (lookahead == 'P' || - lookahead == 'p') ADVANCE(666); + lookahead == 'p') ADVANCE(204); END_STATE(); case 674: if (lookahead == 'P' || - lookahead == 'p') ADVANCE(842); + lookahead == 'p') ADVANCE(85); END_STATE(); case 675: if (lookahead == 'P' || - lookahead == 'p') ADVANCE(410); + lookahead == 'p') ADVANCE(325); END_STATE(); case 676: if (lookahead == 'P' || - lookahead == 'p') ADVANCE(843); + lookahead == 'p') ADVANCE(421); END_STATE(); case 677: if (lookahead == 'P' || - lookahead == 'p') ADVANCE(194); + lookahead == 'p') ADVANCE(669); END_STATE(); case 678: if (lookahead == 'P' || - lookahead == 'p') ADVANCE(414); + lookahead == 'p') ADVANCE(846); END_STATE(); case 679: if (lookahead == 'P' || - lookahead == 'p') ADVANCE(414); - if (lookahead == 'T' || - lookahead == 't') ADVANCE(416); + lookahead == 'p') ADVANCE(412); END_STATE(); case 680: - if (lookahead == 'Q' || - lookahead == 'q') ADVANCE(1637); - if (lookahead == 'R' || - lookahead == 'r') ADVANCE(700); - if (lookahead == 'X' || - lookahead == 'x') ADVANCE(248); + if (lookahead == 'P' || + lookahead == 'p') ADVANCE(847); END_STATE(); case 681: - if (lookahead == 'Q' || - lookahead == 'q') ADVANCE(838); + if (lookahead == 'P' || + lookahead == 'p') ADVANCE(416); END_STATE(); case 682: - if (lookahead == 'R' || - lookahead == 'r') ADVANCE(1671); + if (lookahead == 'P' || + lookahead == 'p') ADVANCE(416); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(418); END_STATE(); case 683: + if (lookahead == 'Q' || + lookahead == 'q') ADVANCE(1645); if (lookahead == 'R' || - lookahead == 'r') ADVANCE(1747); + lookahead == 'r') ADVANCE(703); + if (lookahead == 'X' || + lookahead == 'x') ADVANCE(250); END_STATE(); case 684: - if (lookahead == 'R' || - lookahead == 'r') ADVANCE(1670); + if (lookahead == 'Q' || + lookahead == 'q') ADVANCE(842); END_STATE(); case 685: if (lookahead == 'R' || - lookahead == 'r') ADVANCE(1726); + lookahead == 'r') ADVANCE(1679); END_STATE(); case 686: if (lookahead == 'R' || - lookahead == 'r') ADVANCE(1683); + lookahead == 'r') ADVANCE(1756); END_STATE(); case 687: if (lookahead == 'R' || - lookahead == 'r') ADVANCE(1692); + lookahead == 'r') ADVANCE(1678); END_STATE(); case 688: if (lookahead == 'R' || - lookahead == 'r') ADVANCE(1757); + lookahead == 'r') ADVANCE(1735); END_STATE(); case 689: if (lookahead == 'R' || - lookahead == 'r') ADVANCE(1715); + lookahead == 'r') ADVANCE(1691); END_STATE(); case 690: if (lookahead == 'R' || - lookahead == 'r') ADVANCE(869); + lookahead == 'r') ADVANCE(1701); END_STATE(); case 691: if (lookahead == 'R' || - lookahead == 'r') ADVANCE(1667); + lookahead == 'r') ADVANCE(1766); END_STATE(); case 692: if (lookahead == 'R' || - lookahead == 'r') ADVANCE(571); + lookahead == 'r') ADVANCE(1724); END_STATE(); case 693: if (lookahead == 'R' || - lookahead == 'r') ADVANCE(861); + lookahead == 'r') ADVANCE(873); END_STATE(); case 694: if (lookahead == 'R' || - lookahead == 'r') ADVANCE(428); + lookahead == 'r') ADVANCE(1675); END_STATE(); case 695: if (lookahead == 'R' || - lookahead == 'r') ADVANCE(870); + lookahead == 'r') ADVANCE(574); END_STATE(); case 696: if (lookahead == 'R' || - lookahead == 'r') ADVANCE(441); + lookahead == 'r') ADVANCE(865); END_STATE(); case 697: if (lookahead == 'R' || - lookahead == 'r') ADVANCE(264); + lookahead == 'r') ADVANCE(430); END_STATE(); case 698: if (lookahead == 'R' || - lookahead == 'r') ADVANCE(468); - if (lookahead == 'U' || - lookahead == 'u') ADVANCE(239); + lookahead == 'r') ADVANCE(874); END_STATE(); case 699: if (lookahead == 'R' || - lookahead == 'r') ADVANCE(491); - if (lookahead == 'T' || - lookahead == 't') ADVANCE(1702); + lookahead == 'r') ADVANCE(443); END_STATE(); case 700: if (lookahead == 'R' || - lookahead == 'r') ADVANCE(644); + lookahead == 'r') ADVANCE(266); END_STATE(); case 701: if (lookahead == 'R' || - lookahead == 'r') ADVANCE(845); + lookahead == 'r') ADVANCE(471); + if (lookahead == 'U' || + lookahead == 'u') ADVANCE(241); END_STATE(); case 702: if (lookahead == 'R' || - lookahead == 'r') ADVANCE(290); + lookahead == 'r') ADVANCE(494); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(1711); END_STATE(); case 703: if (lookahead == 'R' || - lookahead == 'r') ADVANCE(467); - if (lookahead == 'U' || - lookahead == 'u') ADVANCE(239); + lookahead == 'r') ADVANCE(647); END_STATE(); case 704: if (lookahead == 'R' || - lookahead == 'r') ADVANCE(466); - if (lookahead == 'U' || - lookahead == 'u') ADVANCE(239); + lookahead == 'r') ADVANCE(849); END_STATE(); case 705: if (lookahead == 'R' || - lookahead == 'r') ADVANCE(867); + lookahead == 'r') ADVANCE(292); END_STATE(); case 706: if (lookahead == 'R' || - lookahead == 'r') ADVANCE(868); + lookahead == 'r') ADVANCE(470); if (lookahead == 'U' || - lookahead == 'u') ADVANCE(719); + lookahead == 'u') ADVANCE(241); END_STATE(); case 707: if (lookahead == 'R' || - lookahead == 'r') ADVANCE(368); + lookahead == 'r') ADVANCE(469); + if (lookahead == 'U' || + lookahead == 'u') ADVANCE(241); END_STATE(); case 708: if (lookahead == 'R' || - lookahead == 'r') ADVANCE(578); + lookahead == 'r') ADVANCE(871); END_STATE(); case 709: if (lookahead == 'R' || - lookahead == 'r') ADVANCE(176); + lookahead == 'r') ADVANCE(872); + if (lookahead == 'U' || + lookahead == 'u') ADVANCE(722); END_STATE(); case 710: if (lookahead == 'R' || - lookahead == 'r') ADVANCE(724); + lookahead == 'r') ADVANCE(370); END_STATE(); case 711: if (lookahead == 'R' || - lookahead == 'r') ADVANCE(780); + lookahead == 'r') ADVANCE(581); END_STATE(); case 712: if (lookahead == 'R' || - lookahead == 'r') ADVANCE(312); + lookahead == 'r') ADVANCE(178); END_STATE(); case 713: if (lookahead == 'R' || - lookahead == 'r') ADVANCE(792); + lookahead == 'r') ADVANCE(727); END_STATE(); case 714: if (lookahead == 'R' || - lookahead == 'r') ADVANCE(786); + lookahead == 'r') ADVANCE(783); END_STATE(); case 715: if (lookahead == 'R' || - lookahead == 'r') ADVANCE(632); + lookahead == 'r') ADVANCE(314); END_STATE(); case 716: if (lookahead == 'R' || - lookahead == 'r') ADVANCE(373); + lookahead == 'r') ADVANCE(796); END_STATE(); case 717: if (lookahead == 'R' || - lookahead == 'r') ADVANCE(373); - if (lookahead == 'S' || - lookahead == 's') ADVANCE(657); + lookahead == 'r') ADVANCE(635); END_STATE(); case 718: if (lookahead == 'R' || - lookahead == 'r') ADVANCE(320); + lookahead == 'r') ADVANCE(789); END_STATE(); case 719: if (lookahead == 'R' || - lookahead == 'r') ADVANCE(583); + lookahead == 'r') ADVANCE(375); END_STATE(); case 720: if (lookahead == 'R' || - lookahead == 'r') ADVANCE(324); + lookahead == 'r') ADVANCE(375); + if (lookahead == 'S' || + lookahead == 's') ADVANCE(660); END_STATE(); case 721: if (lookahead == 'R' || - lookahead == 'r') ADVANCE(374); + lookahead == 'r') ADVANCE(322); END_STATE(); case 722: if (lookahead == 'R' || - lookahead == 'r') ADVANCE(327); + lookahead == 'r') ADVANCE(586); END_STATE(); case 723: if (lookahead == 'R' || - lookahead == 'r') ADVANCE(386); + lookahead == 'r') ADVANCE(326); END_STATE(); case 724: if (lookahead == 'R' || - lookahead == 'r') ADVANCE(490); + lookahead == 'r') ADVANCE(376); END_STATE(); case 725: if (lookahead == 'R' || - lookahead == 'r') ADVANCE(652); + lookahead == 'r') ADVANCE(329); END_STATE(); case 726: if (lookahead == 'R' || - lookahead == 'r') ADVANCE(802); + lookahead == 'r') ADVANCE(388); END_STATE(); case 727: if (lookahead == 'R' || - lookahead == 'r') ADVANCE(481); + lookahead == 'r') ADVANCE(493); END_STATE(); case 728: if (lookahead == 'R' || - lookahead == 'r') ADVANCE(209); + lookahead == 'r') ADVANCE(655); END_STATE(); case 729: if (lookahead == 'R' || - lookahead == 'r') ADVANCE(377); + lookahead == 'r') ADVANCE(806); END_STATE(); case 730: if (lookahead == 'R' || - lookahead == 'r') ADVANCE(269); + lookahead == 'r') ADVANCE(484); END_STATE(); case 731: if (lookahead == 'R' || - lookahead == 'r') ADVANCE(725); + lookahead == 'r') ADVANCE(211); END_STATE(); case 732: if (lookahead == 'R' || - lookahead == 'r') ADVANCE(574); + lookahead == 'r') ADVANCE(379); END_STATE(); case 733: if (lookahead == 'R' || - lookahead == 'r') ADVANCE(216); + lookahead == 'r') ADVANCE(271); END_STATE(); case 734: if (lookahead == 'R' || - lookahead == 'r') ADVANCE(217); + lookahead == 'r') ADVANCE(728); END_STATE(); case 735: if (lookahead == 'R' || - lookahead == 'r') ADVANCE(508); + lookahead == 'r') ADVANCE(577); END_STATE(); case 736: - if (lookahead == 'S' || - lookahead == 's') ADVANCE(1646); + if (lookahead == 'R' || + lookahead == 'r') ADVANCE(218); END_STATE(); case 737: - if (lookahead == 'S' || - lookahead == 's') ADVANCE(1641); + if (lookahead == 'R' || + lookahead == 'r') ADVANCE(219); END_STATE(); case 738: - if (lookahead == 'S' || - lookahead == 's') ADVANCE(1642); + if (lookahead == 'R' || + lookahead == 'r') ADVANCE(511); END_STATE(); case 739: if (lookahead == 'S' || - lookahead == 's') ADVANCE(1643); + lookahead == 's') ADVANCE(1654); END_STATE(); case 740: if (lookahead == 'S' || - lookahead == 's') ADVANCE(1737); + lookahead == 's') ADVANCE(1649); END_STATE(); case 741: if (lookahead == 'S' || - lookahead == 's') ADVANCE(1717); + lookahead == 's') ADVANCE(1650); END_STATE(); case 742: if (lookahead == 'S' || - lookahead == 's') ADVANCE(1742); + lookahead == 's') ADVANCE(1651); END_STATE(); case 743: if (lookahead == 'S' || - lookahead == 's') ADVANCE(1710); + lookahead == 's') ADVANCE(1746); END_STATE(); case 744: if (lookahead == 'S' || - lookahead == 's') ADVANCE(1651); + lookahead == 's') ADVANCE(1726); END_STATE(); case 745: if (lookahead == 'S' || - lookahead == 's') ADVANCE(1716); + lookahead == 's') ADVANCE(1751); END_STATE(); case 746: if (lookahead == 'S' || - lookahead == 's') ADVANCE(1678); + lookahead == 's') ADVANCE(1719); END_STATE(); case 747: if (lookahead == 'S' || - lookahead == 's') ADVANCE(363); + lookahead == 's') ADVANCE(1659); END_STATE(); case 748: if (lookahead == 'S' || - lookahead == 's') ADVANCE(797); + lookahead == 's') ADVANCE(1725); END_STATE(); case 749: if (lookahead == 'S' || - lookahead == 's') ADVANCE(262); + lookahead == 's') ADVANCE(1686); END_STATE(); case 750: if (lookahead == 'S' || - lookahead == 's') ADVANCE(736); + lookahead == 's') ADVANCE(365); END_STATE(); case 751: if (lookahead == 'S' || - lookahead == 's') ADVANCE(773); + lookahead == 's') ADVANCE(264); END_STATE(); case 752: if (lookahead == 'S' || - lookahead == 's') ADVANCE(308); + lookahead == 's') ADVANCE(739); END_STATE(); case 753: if (lookahead == 'S' || - lookahead == 's') ADVANCE(487); + lookahead == 's') ADVANCE(801); END_STATE(); case 754: if (lookahead == 'S' || - lookahead == 's') ADVANCE(657); + lookahead == 's') ADVANCE(310); END_STATE(); case 755: if (lookahead == 'S' || - lookahead == 's') ADVANCE(469); + lookahead == 's') ADVANCE(776); END_STATE(); case 756: if (lookahead == 'S' || - lookahead == 's') ADVANCE(310); + lookahead == 's') ADVANCE(490); END_STATE(); case 757: if (lookahead == 'S' || - lookahead == 's') ADVANCE(208); + lookahead == 's') ADVANCE(660); END_STATE(); case 758: if (lookahead == 'S' || - lookahead == 's') ADVANCE(325); + lookahead == 's') ADVANCE(472); END_STATE(); case 759: if (lookahead == 'S' || - lookahead == 's') ADVANCE(366); + lookahead == 's') ADVANCE(312); END_STATE(); case 760: if (lookahead == 'S' || - lookahead == 's') ADVANCE(307); + lookahead == 's') ADVANCE(210); END_STATE(); case 761: if (lookahead == 'S' || - lookahead == 's') ADVANCE(757); + lookahead == 's') ADVANCE(327); END_STATE(); case 762: if (lookahead == 'S' || - lookahead == 's') ADVANCE(204); + lookahead == 's') ADVANCE(368); END_STATE(); case 763: if (lookahead == 'S' || - lookahead == 's') ADVANCE(804); - if (lookahead == 'T' || - lookahead == 't') ADVANCE(221); + lookahead == 's') ADVANCE(309); END_STATE(); case 764: if (lookahead == 'S' || - lookahead == 's') ADVANCE(804); - if (lookahead == 'T' || - lookahead == 't') ADVANCE(221); - if (lookahead == 'V' || - lookahead == 'v') ADVANCE(408); + lookahead == 's') ADVANCE(760); END_STATE(); case 765: if (lookahead == 'S' || - lookahead == 's') ADVANCE(392); + lookahead == 's') ADVANCE(206); END_STATE(); case 766: if (lookahead == 'S' || - lookahead == 's') ADVANCE(422); + lookahead == 's') ADVANCE(808); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(223); END_STATE(); case 767: + if (lookahead == 'S' || + lookahead == 's') ADVANCE(808); if (lookahead == 'T' || - lookahead == 't') ADVANCE(1702); + lookahead == 't') ADVANCE(223); + if (lookahead == 'V' || + lookahead == 'v') ADVANCE(410); END_STATE(); case 768: - if (lookahead == 'T' || - lookahead == 't') ADVANCE(1701); + if (lookahead == 'S' || + lookahead == 's') ADVANCE(394); END_STATE(); case 769: - if (lookahead == 'T' || - lookahead == 't') ADVANCE(1774); + if (lookahead == 'S' || + lookahead == 's') ADVANCE(424); END_STATE(); case 770: if (lookahead == 'T' || - lookahead == 't') ADVANCE(1756); + lookahead == 't') ADVANCE(1711); END_STATE(); case 771: if (lookahead == 'T' || - lookahead == 't') ADVANCE(1780); + lookahead == 't') ADVANCE(1710); END_STATE(); case 772: if (lookahead == 'T' || - lookahead == 't') ADVANCE(1704); + lookahead == 't') ADVANCE(1783); END_STATE(); case 773: if (lookahead == 'T' || - lookahead == 't') ADVANCE(1773); + lookahead == 't') ADVANCE(1765); END_STATE(); case 774: if (lookahead == 'T' || - lookahead == 't') ADVANCE(1679); + lookahead == 't') ADVANCE(1789); END_STATE(); case 775: if (lookahead == 'T' || - lookahead == 't') ADVANCE(1700); + lookahead == 't') ADVANCE(1713); END_STATE(); case 776: if (lookahead == 'T' || - lookahead == 't') ADVANCE(1681); + lookahead == 't') ADVANCE(1782); END_STATE(); case 777: if (lookahead == 'T' || - lookahead == 't') ADVANCE(1688); + lookahead == 't') ADVANCE(1687); END_STATE(); case 778: if (lookahead == 'T' || - lookahead == 't') ADVANCE(1735); + lookahead == 't') ADVANCE(1709); END_STATE(); case 779: if (lookahead == 'T' || - lookahead == 't') ADVANCE(1768); + lookahead == 't') ADVANCE(1689); END_STATE(); case 780: if (lookahead == 'T' || - lookahead == 't') ADVANCE(1734); + lookahead == 't') ADVANCE(1697); END_STATE(); case 781: if (lookahead == 'T' || - lookahead == 't') ADVANCE(1694); + lookahead == 't') ADVANCE(1744); END_STATE(); case 782: if (lookahead == 'T' || - lookahead == 't') ADVANCE(1698); + lookahead == 't') ADVANCE(1777); END_STATE(); case 783: if (lookahead == 'T' || - lookahead == 't') ADVANCE(1740); + lookahead == 't') ADVANCE(1743); END_STATE(); case 784: if (lookahead == 'T' || - lookahead == 't') ADVANCE(1785); + lookahead == 't') ADVANCE(1703); END_STATE(); case 785: if (lookahead == 'T' || - lookahead == 't') ADVANCE(1648); + lookahead == 't') ADVANCE(1707); END_STATE(); case 786: if (lookahead == 'T' || - lookahead == 't') ADVANCE(1733); + lookahead == 't') ADVANCE(1749); END_STATE(); case 787: if (lookahead == 'T' || - lookahead == 't') ADVANCE(1682); + lookahead == 't') ADVANCE(1794); END_STATE(); case 788: if (lookahead == 'T' || - lookahead == 't') ADVANCE(1750); + lookahead == 't') ADVANCE(1656); END_STATE(); case 789: if (lookahead == 'T' || - lookahead == 't') ADVANCE(1623); + lookahead == 't') ADVANCE(1742); END_STATE(); case 790: if (lookahead == 'T' || - lookahead == 't') ADVANCE(706); + lookahead == 't') ADVANCE(1690); END_STATE(); case 791: if (lookahead == 'T' || - lookahead == 't') ADVANCE(158); + lookahead == 't') ADVANCE(1759); END_STATE(); case 792: if (lookahead == 'T' || - lookahead == 't') ADVANCE(871); + lookahead == 't') ADVANCE(1631); END_STATE(); case 793: if (lookahead == 'T' || - lookahead == 't') ADVANCE(448); + lookahead == 't') ADVANCE(709); END_STATE(); case 794: if (lookahead == 'T' || - lookahead == 't') ADVANCE(493); + lookahead == 't') ADVANCE(160); END_STATE(); case 795: if (lookahead == 'T' || - lookahead == 't') ADVANCE(221); + lookahead == 't') ADVANCE(449); END_STATE(); case 796: if (lookahead == 'T' || - lookahead == 't') ADVANCE(221); - if (lookahead == 'V' || - lookahead == 'v') ADVANCE(408); + lookahead == 't') ADVANCE(875); END_STATE(); case 797: if (lookahead == 'T' || - lookahead == 't') ADVANCE(709); + lookahead == 't') ADVANCE(451); END_STATE(); case 798: if (lookahead == 'T' || - lookahead == 't') ADVANCE(674); + lookahead == 't') ADVANCE(496); END_STATE(); case 799: if (lookahead == 'T' || - lookahead == 't') ADVANCE(745); + lookahead == 't') ADVANCE(223); END_STATE(); case 800: if (lookahead == 'T' || - lookahead == 't') ADVANCE(72); + lookahead == 't') ADVANCE(223); + if (lookahead == 'V' || + lookahead == 'v') ADVANCE(410); END_STATE(); case 801: if (lookahead == 'T' || - lookahead == 't') ADVANCE(741); + lookahead == 't') ADVANCE(712); END_STATE(); case 802: if (lookahead == 'T' || - lookahead == 't') ADVANCE(728); + lookahead == 't') ADVANCE(678); END_STATE(); case 803: if (lookahead == 'T' || - lookahead == 't') ADVANCE(478); + lookahead == 't') ADVANCE(748); END_STATE(); case 804: if (lookahead == 'T' || - lookahead == 't') ADVANCE(701); + lookahead == 't') ADVANCE(72); END_STATE(); case 805: if (lookahead == 'T' || - lookahead == 't') ADVANCE(189); + lookahead == 't') ADVANCE(744); END_STATE(); case 806: if (lookahead == 'T' || - lookahead == 't') ADVANCE(162); + lookahead == 't') ADVANCE(731); END_STATE(); case 807: if (lookahead == 'T' || - lookahead == 't') ADVANCE(318); + lookahead == 't') ADVANCE(481); END_STATE(); case 808: if (lookahead == 'T' || - lookahead == 't') ADVANCE(319); + lookahead == 't') ADVANCE(704); END_STATE(); case 809: if (lookahead == 'T' || - lookahead == 't') ADVANCE(416); + lookahead == 't') ADVANCE(191); END_STATE(); case 810: if (lookahead == 'T' || - lookahead == 't') ADVANCE(382); + lookahead == 't') ADVANCE(164); END_STATE(); case 811: if (lookahead == 'T' || - lookahead == 't') ADVANCE(458); + lookahead == 't') ADVANCE(320); END_STATE(); case 812: if (lookahead == 'T' || - lookahead == 't') ADVANCE(846); + lookahead == 't') ADVANCE(321); END_STATE(); case 813: if (lookahead == 'T' || - lookahead == 't') ADVANCE(275); + lookahead == 't') ADVANCE(418); END_STATE(); case 814: if (lookahead == 'T' || - lookahead == 't') ADVANCE(275); - if (lookahead == 'X' || - lookahead == 'x') ADVANCE(473); + lookahead == 't') ADVANCE(383); END_STATE(); case 815: if (lookahead == 'T' || - lookahead == 't') ADVANCE(653); + lookahead == 't') ADVANCE(461); END_STATE(); case 816: if (lookahead == 'T' || - lookahead == 't') ADVANCE(190); + lookahead == 't') ADVANCE(850); END_STATE(); case 817: if (lookahead == 'T' || - lookahead == 't') ADVANCE(192); + lookahead == 't') ADVANCE(277); END_STATE(); case 818: if (lookahead == 'T' || - lookahead == 't') ADVANCE(394); + lookahead == 't') ADVANCE(277); + if (lookahead == 'X' || + lookahead == 'x') ADVANCE(476); END_STATE(); case 819: if (lookahead == 'T' || - lookahead == 't') ADVANCE(395); + lookahead == 't') ADVANCE(656); END_STATE(); case 820: if (lookahead == 'T' || - lookahead == 't') ADVANCE(405); + lookahead == 't') ADVANCE(192); END_STATE(); case 821: if (lookahead == 'T' || - lookahead == 't') ADVANCE(499); + lookahead == 't') ADVANCE(194); END_STATE(); case 822: if (lookahead == 'T' || - lookahead == 't') ADVANCE(496); + lookahead == 't') ADVANCE(396); END_STATE(); case 823: if (lookahead == 'T' || - lookahead == 't') ADVANCE(676); + lookahead == 't') ADVANCE(397); END_STATE(); case 824: if (lookahead == 'T' || - lookahead == 't') ADVANCE(501); + lookahead == 't') ADVANCE(407); END_STATE(); case 825: if (lookahead == 'T' || @@ -13201,327 +13337,343 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 826: if (lookahead == 'T' || - lookahead == 't') ADVANCE(224); + lookahead == 't') ADVANCE(499); END_STATE(); case 827: if (lookahead == 'T' || - lookahead == 't') ADVANCE(503); + lookahead == 't') ADVANCE(680); END_STATE(); case 828: - if (lookahead == 'U' || - lookahead == 'u') ADVANCE(426); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(504); END_STATE(); case 829: - if (lookahead == 'U' || - lookahead == 'u') ADVANCE(561); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(505); END_STATE(); case 830: - if (lookahead == 'U' || - lookahead == 'u') ADVANCE(599); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(226); END_STATE(); case 831: - if (lookahead == 'U' || - lookahead == 'u') ADVANCE(697); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(506); END_STATE(); case 832: if (lookahead == 'U' || - lookahead == 'u') ADVANCE(753); + lookahead == 'u') ADVANCE(428); END_STATE(); case 833: if (lookahead == 'U' || - lookahead == 'u') ADVANCE(551); + lookahead == 'u') ADVANCE(564); END_STATE(); case 834: if (lookahead == 'U' || - lookahead == 'u') ADVANCE(552); + lookahead == 'u') ADVANCE(602); END_STATE(); case 835: if (lookahead == 'U' || - lookahead == 'u') ADVANCE(553); + lookahead == 'u') ADVANCE(700); END_STATE(); case 836: if (lookahead == 'U' || - lookahead == 'u') ADVANCE(554); + lookahead == 'u') ADVANCE(756); END_STATE(); case 837: if (lookahead == 'U' || - lookahead == 'u') ADVANCE(708); + lookahead == 'u') ADVANCE(554); END_STATE(); case 838: if (lookahead == 'U' || - lookahead == 'u') ADVANCE(316); + lookahead == 'u') ADVANCE(555); END_STATE(); case 839: if (lookahead == 'U' || - lookahead == 'u') ADVANCE(620); + lookahead == 'u') ADVANCE(556); END_STATE(); case 840: if (lookahead == 'U' || - lookahead == 'u') ADVANCE(798); - if (lookahead == 'V' || - lookahead == 'v') ADVANCE(367); + lookahead == 'u') ADVANCE(557); END_STATE(); case 841: if (lookahead == 'U' || - lookahead == 'u') ADVANCE(789); + lookahead == 'u') ADVANCE(711); END_STATE(); case 842: if (lookahead == 'U' || - lookahead == 'u') ADVANCE(776); + lookahead == 'u') ADVANCE(318); END_STATE(); case 843: if (lookahead == 'U' || - lookahead == 'u') ADVANCE(787); + lookahead == 'u') ADVANCE(623); END_STATE(); case 844: if (lookahead == 'U' || - lookahead == 'u') ADVANCE(730); + lookahead == 'u') ADVANCE(802); + if (lookahead == 'V' || + lookahead == 'v') ADVANCE(369); END_STATE(); case 845: if (lookahead == 'U' || - lookahead == 'u') ADVANCE(266); + lookahead == 'u') ADVANCE(792); END_STATE(); case 846: if (lookahead == 'U' || - lookahead == 'u') ADVANCE(720); + lookahead == 'u') ADVANCE(779); END_STATE(); case 847: if (lookahead == 'U' || - lookahead == 'u') ADVANCE(484); + lookahead == 'u') ADVANCE(790); END_STATE(); case 848: if (lookahead == 'U' || - lookahead == 'u') ADVANCE(611); + lookahead == 'u') ADVANCE(733); END_STATE(); case 849: if (lookahead == 'U' || - lookahead == 'u') ADVANCE(722); + lookahead == 'u') ADVANCE(268); END_STATE(); case 850: if (lookahead == 'U' || - lookahead == 'u') ADVANCE(399); + lookahead == 'u') ADVANCE(723); END_STATE(); case 851: if (lookahead == 'U' || - lookahead == 'u') ADVANCE(823); + lookahead == 'u') ADVANCE(487); END_STATE(); case 852: if (lookahead == 'U' || - lookahead == 'u') ADVANCE(434); + lookahead == 'u') ADVANCE(614); END_STATE(); case 853: - if (lookahead == 'V' || - lookahead == 'v') ADVANCE(359); - if (lookahead == 'X' || - lookahead == 'x') ADVANCE(820); + if (lookahead == 'U' || + lookahead == 'u') ADVANCE(725); END_STATE(); case 854: - if (lookahead == 'V' || - lookahead == 'v') ADVANCE(356); + if (lookahead == 'U' || + lookahead == 'u') ADVANCE(401); END_STATE(); case 855: - if (lookahead == 'V' || - lookahead == 'v') ADVANCE(411); + if (lookahead == 'U' || + lookahead == 'u') ADVANCE(827); END_STATE(); case 856: - if (lookahead == 'V' || - lookahead == 'v') ADVANCE(205); + if (lookahead == 'U' || + lookahead == 'u') ADVANCE(436); END_STATE(); case 857: if (lookahead == 'V' || - lookahead == 'v') ADVANCE(415); + lookahead == 'v') ADVANCE(361); + if (lookahead == 'X' || + lookahead == 'x') ADVANCE(824); END_STATE(); case 858: if (lookahead == 'V' || - lookahead == 'v') ADVANCE(423); + lookahead == 'v') ADVANCE(358); END_STATE(); case 859: - if (lookahead == 'W' || - lookahead == 'w') ADVANCE(1653); - if (lookahead == 'X' || - lookahead == 'x') ADVANCE(788); + if (lookahead == 'V' || + lookahead == 'v') ADVANCE(413); END_STATE(); case 860: - if (lookahead == 'W' || - lookahead == 'w') ADVANCE(1753); + if (lookahead == 'V' || + lookahead == 'v') ADVANCE(207); END_STATE(); case 861: - if (lookahead == 'W' || - lookahead == 'w') ADVANCE(498); + if (lookahead == 'V' || + lookahead == 'v') ADVANCE(417); END_STATE(); case 862: - if (lookahead == 'W' || - lookahead == 'w') ADVANCE(461); + if (lookahead == 'V' || + lookahead == 'v') ADVANCE(425); END_STATE(); case 863: + if (lookahead == 'W' || + lookahead == 'w') ADVANCE(1661); if (lookahead == 'X' || - lookahead == 'x') ADVANCE(1769); + lookahead == 'x') ADVANCE(791); END_STATE(); case 864: - if (lookahead == 'X' || - lookahead == 'x') ADVANCE(1794); + if (lookahead == 'W' || + lookahead == 'w') ADVANCE(1762); END_STATE(); case 865: - if (lookahead == 'X' || - lookahead == 'x') ADVANCE(1795); + if (lookahead == 'W' || + lookahead == 'w') ADVANCE(501); END_STATE(); case 866: - if (lookahead == 'X' || - lookahead == 'x') ADVANCE(497); + if (lookahead == 'W' || + lookahead == 'w') ADVANCE(464); END_STATE(); case 867: - if (lookahead == 'Y' || - lookahead == 'y') ADVANCE(1677); + if (lookahead == 'X' || + lookahead == 'x') ADVANCE(1778); END_STATE(); case 868: - if (lookahead == 'Y' || - lookahead == 'y') ADVANCE(1751); + if (lookahead == 'X' || + lookahead == 'x') ADVANCE(1803); END_STATE(); case 869: - if (lookahead == 'Y' || - lookahead == 'y') ADVANCE(1727); + if (lookahead == 'X' || + lookahead == 'x') ADVANCE(1804); END_STATE(); case 870: - if (lookahead == 'Y' || - lookahead == 'y') ADVANCE(1792); + if (lookahead == 'X' || + lookahead == 'x') ADVANCE(500); END_STATE(); case 871: if (lookahead == 'Y' || - lookahead == 'y') ADVANCE(1703); + lookahead == 'y') ADVANCE(1685); END_STATE(); case 872: if (lookahead == 'Y' || - lookahead == 'y') ADVANCE(1790); + lookahead == 'y') ADVANCE(1760); END_STATE(); case 873: if (lookahead == 'Y' || - lookahead == 'y') ADVANCE(1778); + lookahead == 'y') ADVANCE(1736); END_STATE(); case 874: if (lookahead == 'Y' || - lookahead == 'y') ADVANCE(862); + lookahead == 'y') ADVANCE(1801); END_STATE(); case 875: if (lookahead == 'Y' || - lookahead == 'y') ADVANCE(1752); + lookahead == 'y') ADVANCE(1712); END_STATE(); case 876: if (lookahead == 'Y' || - lookahead == 'y') ADVANCE(1713); + lookahead == 'y') ADVANCE(1799); END_STATE(); case 877: - if (lookahead == 'Z' || - lookahead == 'z') ADVANCE(161); + if (lookahead == 'Y' || + lookahead == 'y') ADVANCE(1787); END_STATE(); case 878: - if (lookahead == 'Z' || - lookahead == 'z') ADVANCE(326); + if (lookahead == 'Y' || + lookahead == 'y') ADVANCE(866); END_STATE(); case 879: - if (lookahead == 'Z' || - lookahead == 'z') ADVANCE(220); + if (lookahead == 'Y' || + lookahead == 'y') ADVANCE(1761); END_STATE(); case 880: - if (eof) ADVANCE(885); - if (lookahead == '\n') SKIP(882) + if (lookahead == 'Y' || + lookahead == 'y') ADVANCE(1722); END_STATE(); case 881: - if (eof) ADVANCE(885); - if (lookahead == '\n') SKIP(882) - if (lookahead == '\r') SKIP(880) + if (lookahead == 'Z' || + lookahead == 'z') ADVANCE(163); 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 == 'Z' || + lookahead == 'z') ADVANCE(328); + END_STATE(); + case 883: + if (lookahead == 'Z' || + lookahead == 'z') ADVANCE(222); + END_STATE(); + case 884: + if (eof) ADVANCE(889); + if (lookahead == '\n') SKIP(886) + END_STATE(); + case 885: + if (eof) ADVANCE(889); + if (lookahead == '\n') SKIP(886) + if (lookahead == '\r') SKIP(884) + END_STATE(); + case 886: + if (eof) ADVANCE(889); + if (lookahead == '"') ADVANCE(1617); + if (lookahead == '\'') ADVANCE(1622); + if (lookahead == '(') ADVANCE(1626); + if (lookahead == ')') ADVANCE(1627); + if (lookahead == '*') ADVANCE(1611); + if (lookahead == '+') ADVANCE(1633); + if (lookahead == ',') ADVANCE(1688); + if (lookahead == '-') ADVANCE(1634); + if (lookahead == '.') ADVANCE(1612); + if (lookahead == '/') ADVANCE(907); + if (lookahead == ':') ADVANCE(1694); + if (lookahead == '<') ADVANCE(1635); + if (lookahead == '=') ADVANCE(1638); + if (lookahead == '>') ADVANCE(1639); + if (lookahead == 'B') ADVANCE(150); + if (lookahead == 'L') ADVANCE(125); + if (lookahead == 'N') ADVANCE(132); + if (lookahead == 'S') ADVANCE(113); + if (lookahead == '\\') SKIP(885) + if (lookahead == 'b') ADVANCE(337); + if (lookahead == 'l') ADVANCE(153); + if (lookahead == 'n') ADVANCE(340); + if (lookahead == 's') ADVANCE(345); + if (lookahead == '{') ADVANCE(908); + if (lookahead == '}') ADVANCE(914); if (lookahead == 'A' || - lookahead == 'a') ADVANCE(228); + lookahead == 'a') ADVANCE(230); if (lookahead == 'C' || - lookahead == 'c') ADVANCE(152); + lookahead == 'c') ADVANCE(154); if (lookahead == 'D' || - lookahead == 'd') ADVANCE(153); + lookahead == 'd') ADVANCE(155); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(154); + lookahead == 'e') ADVANCE(156); if (lookahead == 'F' || - lookahead == 'f') ADVANCE(462); + lookahead == 'f') ADVANCE(465); if (lookahead == 'G' || - lookahead == 'g') ADVANCE(347); + lookahead == 'g') ADVANCE(349); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(557); + lookahead == 'i') ADVANCE(560); if (lookahead == 'K' || - lookahead == 'k') ADVANCE(358); + lookahead == 'k') ADVANCE(360); if (lookahead == 'M' || - lookahead == 'm') ADVANCE(156); + lookahead == 'm') ADVANCE(158); if (lookahead == 'O' || - lookahead == 'o') ADVANCE(425); + lookahead == 'o') ADVANCE(427); if (lookahead == 'P' || - lookahead == 'p') ADVANCE(157); + lookahead == 'p') ADVANCE(159); if (lookahead == 'R' || - lookahead == 'r') ADVANCE(250); + lookahead == 'r') ADVANCE(252); if (lookahead == 'T' || - lookahead == 't') ADVANCE(167); + lookahead == 't') ADVANCE(169); if (lookahead == 'U' || - lookahead == 'u') ADVANCE(586); + lookahead == 'u') ADVANCE(589); if (lookahead == 'V' || - lookahead == 'v') ADVANCE(625); + lookahead == 'v') ADVANCE(628); if (lookahead == 'W' || - lookahead == 'w') ADVANCE(450); + lookahead == 'w') ADVANCE(453); if (lookahead == '\f' || lookahead == 8203 || lookahead == 8288 || - lookahead == 65279) SKIP(882) + lookahead == 65279) SKIP(886) if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') ADVANCE(27); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1608); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1616); END_STATE(); - case 883: - if (eof) ADVANCE(885); + case 887: + if (eof) ADVANCE(889); if (lookahead == '/') ADVANCE(50); - if (lookahead == '\\') ADVANCE(1602); - if (lookahead == '{') ADVANCE(904); + if (lookahead == '\\') ADVANCE(1610); + if (lookahead == '{') ADVANCE(908); if (lookahead == 'C' || - lookahead == 'c') ADVANCE(976); + lookahead == 'c') ADVANCE(980); if (lookahead == 'D' || - lookahead == 'd') ADVANCE(1131); + lookahead == 'd') ADVANCE(1135); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1282); + lookahead == 'e') ADVANCE(1289); if (lookahead == 'F' || - lookahead == 'f') ADVANCE(1255); + lookahead == 'f') ADVANCE(1262); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1335); + lookahead == 'i') ADVANCE(1342); if (lookahead == 'O' || - lookahead == 'o') ADVANCE(1324); + lookahead == 'o') ADVANCE(1331); if (lookahead == 'P' || - lookahead == 'p') ADVANCE(1452); + lookahead == 'p') ADVANCE(1459); if (lookahead == 'R' || - lookahead == 'r') ADVANCE(1134); + lookahead == 'r') ADVANCE(1138); if (lookahead == 'U' || - lookahead == 'u') ADVANCE(1353); + lookahead == 'u') ADVANCE(1360); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\f' || @@ -13529,30 +13681,30 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == ' ' || lookahead == 8203 || lookahead == 8288 || - lookahead == 65279) SKIP(883) - if (('A' <= lookahead && lookahead <= 'z')) ADVANCE(1602); + lookahead == 65279) SKIP(887) + if (('A' <= lookahead && lookahead <= 'z')) ADVANCE(1610); END_STATE(); - case 884: - if (eof) ADVANCE(885); + case 888: + if (eof) ADVANCE(889); if (lookahead == '/') ADVANCE(50); - if (lookahead == '\\') ADVANCE(1602); - if (lookahead == '{') ADVANCE(904); + if (lookahead == '\\') ADVANCE(1610); + if (lookahead == '{') ADVANCE(908); if (lookahead == 'C' || - lookahead == 'c') ADVANCE(976); + lookahead == 'c') ADVANCE(980); if (lookahead == 'D' || - lookahead == 'd') ADVANCE(1131); + lookahead == 'd') ADVANCE(1135); if (lookahead == 'F' || - lookahead == 'f') ADVANCE(1255); + lookahead == 'f') ADVANCE(1262); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1335); + lookahead == 'i') ADVANCE(1342); if (lookahead == 'O' || - lookahead == 'o') ADVANCE(1324); + lookahead == 'o') ADVANCE(1331); if (lookahead == 'P' || - lookahead == 'p') ADVANCE(1452); + lookahead == 'p') ADVANCE(1459); if (lookahead == 'R' || - lookahead == 'r') ADVANCE(1134); + lookahead == 'r') ADVANCE(1138); if (lookahead == 'U' || - lookahead == 'u') ADVANCE(1353); + lookahead == 'u') ADVANCE(1360); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\f' || @@ -13560,2763 +13712,2727 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == ' ' || lookahead == 8203 || lookahead == 8288 || - lookahead == 65279) SKIP(884) - if (('A' <= lookahead && lookahead <= 'z')) ADVANCE(1602); + lookahead == 65279) SKIP(888) + if (('A' <= lookahead && lookahead <= 'z')) ADVANCE(1610); END_STATE(); - case 885: + case 889: ACCEPT_TOKEN(ts_builtin_sym_end); END_STATE(); - case 886: + case 890: ACCEPT_TOKEN(sym_file_name); END_STATE(); - case 887: + case 891: ACCEPT_TOKEN(anon_sym_SLASH_SLASH); END_STATE(); - case 888: + case 892: ACCEPT_TOKEN(anon_sym_SLASH_SLASH); - if (lookahead == '*') ADVANCE(902); + if (lookahead == '*') ADVANCE(906); if (lookahead != 0) ADVANCE(52); END_STATE(); - case 889: + case 893: ACCEPT_TOKEN(anon_sym_SLASH_SLASH); - if (lookahead == '.') ADVANCE(150); + if (lookahead == '.') ADVANCE(152); if (('-' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || lookahead == '|') ADVANCE(92); END_STATE(); - case 890: + case 894: ACCEPT_TOKEN(anon_sym_SLASH_SLASH); if (lookahead != 0 && lookahead != '"' && - lookahead != '\\') ADVANCE(1612); + lookahead != '\\') ADVANCE(1620); END_STATE(); - case 891: + case 895: ACCEPT_TOKEN(anon_sym_SLASH_SLASH); if (lookahead != 0 && lookahead != '\'' && - lookahead != '\\') ADVANCE(1617); + lookahead != '\\') ADVANCE(1625); END_STATE(); - case 892: + case 896: ACCEPT_TOKEN(anon_sym_SLASH_SLASH); if (lookahead != 0 && - lookahead != '\n') ADVANCE(896); + lookahead != '\n') ADVANCE(900); END_STATE(); - case 893: + case 897: ACCEPT_TOKEN(aux_sym_comment_token1); - if (lookahead == '\r') ADVANCE(896); + if (lookahead == '\r') ADVANCE(900); if (lookahead != 0 && - lookahead != '\n') ADVANCE(896); + lookahead != '\n') ADVANCE(900); END_STATE(); - case 894: + case 898: ACCEPT_TOKEN(aux_sym_comment_token1); - if (lookahead == '*') ADVANCE(901); - if (lookahead == '/') ADVANCE(892); + if (lookahead == '*') ADVANCE(905); + if (lookahead == '/') ADVANCE(896); if (lookahead != 0 && - lookahead != '\n') ADVANCE(896); + lookahead != '\n') ADVANCE(900); END_STATE(); - case 895: + case 899: ACCEPT_TOKEN(aux_sym_comment_token1); - if (lookahead == '/') ADVANCE(894); - if (lookahead == '\\') ADVANCE(893); - if (lookahead == '{') ADVANCE(908); + if (lookahead == '/') ADVANCE(898); + if (lookahead == '\\') ADVANCE(897); + if (lookahead == '{') ADVANCE(912); if (lookahead == '\t' || lookahead == '\f' || lookahead == '\r' || lookahead == ' ' || lookahead == 8203 || lookahead == 8288 || - lookahead == 65279) ADVANCE(895); + lookahead == 65279) ADVANCE(899); if (lookahead != 0 && - lookahead != '\n') ADVANCE(896); + lookahead != '\n') ADVANCE(900); END_STATE(); - case 896: + case 900: ACCEPT_TOKEN(aux_sym_comment_token1); if (lookahead != 0 && - lookahead != '\n') ADVANCE(896); + lookahead != '\n') ADVANCE(900); END_STATE(); - case 897: + case 901: ACCEPT_TOKEN(anon_sym_SLASH_STAR); END_STATE(); - case 898: + case 902: ACCEPT_TOKEN(anon_sym_SLASH_STAR); - if (lookahead == '*') ADVANCE(902); + if (lookahead == '*') ADVANCE(906); if (lookahead != 0 && lookahead != '/') ADVANCE(52); END_STATE(); - case 899: + case 903: ACCEPT_TOKEN(anon_sym_SLASH_STAR); if (lookahead != 0 && lookahead != '"' && - lookahead != '\\') ADVANCE(1612); + lookahead != '\\') ADVANCE(1620); END_STATE(); - case 900: + case 904: ACCEPT_TOKEN(anon_sym_SLASH_STAR); if (lookahead != 0 && lookahead != '\'' && - lookahead != '\\') ADVANCE(1617); + lookahead != '\\') ADVANCE(1625); END_STATE(); - case 901: + case 905: ACCEPT_TOKEN(anon_sym_SLASH_STAR); if (lookahead != 0 && - lookahead != '\n') ADVANCE(896); + lookahead != '\n') ADVANCE(900); END_STATE(); - case 902: + case 906: ACCEPT_TOKEN(aux_sym_comment_token2); - if (lookahead == '*') ADVANCE(902); + if (lookahead == '*') ADVANCE(906); if (lookahead != 0 && lookahead != '/') ADVANCE(52); END_STATE(); - case 903: + case 907: ACCEPT_TOKEN(anon_sym_SLASH); - if (lookahead == '*') ADVANCE(897); - if (lookahead == '/') ADVANCE(887); + if (lookahead == '*') ADVANCE(901); + if (lookahead == '/') ADVANCE(891); END_STATE(); - case 904: + case 908: ACCEPT_TOKEN(anon_sym_LBRACE); END_STATE(); - case 905: + case 909: ACCEPT_TOKEN(anon_sym_LBRACE); - if (lookahead == '*') ADVANCE(902); + if (lookahead == '*') ADVANCE(906); if (lookahead != 0) ADVANCE(52); END_STATE(); - case 906: + case 910: ACCEPT_TOKEN(anon_sym_LBRACE); if (lookahead != 0 && lookahead != '"' && - lookahead != '\\') ADVANCE(1612); + lookahead != '\\') ADVANCE(1620); END_STATE(); - case 907: + case 911: ACCEPT_TOKEN(anon_sym_LBRACE); if (lookahead != 0 && lookahead != '\'' && - lookahead != '\\') ADVANCE(1617); + lookahead != '\\') ADVANCE(1625); END_STATE(); - case 908: + case 912: ACCEPT_TOKEN(anon_sym_LBRACE); if (lookahead != 0 && - lookahead != '\n') ADVANCE(896); - END_STATE(); - case 909: - ACCEPT_TOKEN(anon_sym_AMP); - END_STATE(); - case 910: - ACCEPT_TOKEN(anon_sym_RBRACE); - END_STATE(); - case 911: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '-') ADVANCE(939); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1602); - END_STATE(); - case 912: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '-') ADVANCE(1163); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1602); + lookahead != '\n') ADVANCE(900); END_STATE(); case 913: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '-') ADVANCE(974); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1602); + ACCEPT_TOKEN(anon_sym_AMP); END_STATE(); case 914: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '-') ADVANCE(1242); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1602); + ACCEPT_TOKEN(anon_sym_RBRACE); END_STATE(); case 915: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '-') ADVANCE(1457); - if (lookahead == 'S' || - lookahead == 's') ADVANCE(1169); + if (lookahead == '-') ADVANCE(943); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1602); + lookahead == '|') ADVANCE(1610); END_STATE(); case 916: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '-') ADVANCE(941); + if (lookahead == '-') ADVANCE(1167); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1602); + lookahead == '|') ADVANCE(1610); END_STATE(); case 917: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '-') ADVANCE(940); + if (lookahead == '-') ADVANCE(978); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1602); + lookahead == '|') ADVANCE(1610); END_STATE(); case 918: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '-') ADVANCE(1051); + if (lookahead == '-') ADVANCE(1248); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1602); + lookahead == '|') ADVANCE(1610); END_STATE(); case 919: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '-') ADVANCE(1198); + if (lookahead == '-') ADVANCE(1464); + if (lookahead == 'S' || + lookahead == 's') ADVANCE(1173); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1602); + lookahead == '|') ADVANCE(1610); END_STATE(); case 920: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '-') ADVANCE(1077); + if (lookahead == '-') ADVANCE(945); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1602); + lookahead == '|') ADVANCE(1610); END_STATE(); case 921: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '-') ADVANCE(1288); - if (lookahead == 'D' || - lookahead == 'd') ADVANCE(1655); + if (lookahead == '-') ADVANCE(944); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1602); + lookahead == '|') ADVANCE(1610); END_STATE(); case 922: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '-') ADVANCE(1288); + if (lookahead == '-') ADVANCE(1055); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1602); + lookahead == '|') ADVANCE(1610); END_STATE(); case 923: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '-') ADVANCE(1411); + if (lookahead == '-') ADVANCE(1202); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1602); + lookahead == '|') ADVANCE(1610); END_STATE(); case 924: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '-') ADVANCE(1292); + if (lookahead == '-') ADVANCE(1081); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1602); + lookahead == '|') ADVANCE(1610); END_STATE(); case 925: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '-') ADVANCE(983); + if (lookahead == '-') ADVANCE(1295); + if (lookahead == 'D' || + lookahead == 'd') ADVANCE(1663); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1602); + lookahead == '|') ADVANCE(1610); END_STATE(); case 926: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '-') ADVANCE(1552); + if (lookahead == '-') ADVANCE(1295); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1602); + lookahead == '|') ADVANCE(1610); END_STATE(); case 927: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '-') ADVANCE(1289); + if (lookahead == '-') ADVANCE(1418); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1602); + lookahead == '|') ADVANCE(1610); END_STATE(); case 928: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '-') ADVANCE(1491); - if (lookahead == 'D' || - lookahead == 'd') ADVANCE(1743); + if (lookahead == '-') ADVANCE(1299); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1602); + lookahead == '|') ADVANCE(1610); END_STATE(); case 929: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '-') ADVANCE(1265); + if (lookahead == '-') ADVANCE(987); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1602); + lookahead == '|') ADVANCE(1610); END_STATE(); case 930: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '-') ADVANCE(1245); + if (lookahead == '-') ADVANCE(1560); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1602); + lookahead == '|') ADVANCE(1610); END_STATE(); case 931: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '-') ADVANCE(1315); + if (lookahead == '-') ADVANCE(1296); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1602); + lookahead == '|') ADVANCE(1610); END_STATE(); case 932: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '-') ADVANCE(1389); + if (lookahead == '-') ADVANCE(1498); + if (lookahead == 'D' || + lookahead == 'd') ADVANCE(1752); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1602); + lookahead == '|') ADVANCE(1610); END_STATE(); case 933: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '-') ADVANCE(1164); + if (lookahead == '-') ADVANCE(1272); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1602); + lookahead == '|') ADVANCE(1610); END_STATE(); case 934: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '-') ADVANCE(1243); + if (lookahead == '-') ADVANCE(1251); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1602); + lookahead == '|') ADVANCE(1610); END_STATE(); case 935: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'C') ADVANCE(959); - if (lookahead == 'E' || - 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') || + if (lookahead == '-') ADVANCE(1322); + if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1602); + lookahead == '|') ADVANCE(1610); END_STATE(); case 936: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'D') ADVANCE(1707); - if (lookahead == 'd') ADVANCE(1707); - if (lookahead == '-' || - ('0' <= lookahead && lookahead <= '9') || + if (lookahead == '-') ADVANCE(1396); + if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1602); + lookahead == '|') ADVANCE(1610); END_STATE(); case 937: ACCEPT_TOKEN(sym_identifier); - 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') || - ('B' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1602); + if (lookahead == '-') ADVANCE(1168); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'z') || + lookahead == '|') ADVANCE(1610); END_STATE(); case 938: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'E') ADVANCE(1669); - if (lookahead == 'e') ADVANCE(1669); - if (lookahead == '-' || - ('0' <= lookahead && lookahead <= '9') || + if (lookahead == '-') ADVANCE(1249); + if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1602); + lookahead == '|') ADVANCE(1610); END_STATE(); case 939: ACCEPT_TOKEN(sym_identifier); - 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 == 'C') ADVANCE(963); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(1448); + if (lookahead == 'H' || + lookahead == 'h') ADVANCE(997); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(1211); + if (lookahead == 'O' || + lookahead == 'o') ADVANCE(1566); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(990); + if (lookahead == 'U' || + lookahead == 'u') ADVANCE(1039); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1602); + lookahead == '|') ADVANCE(1610); END_STATE(); case 940: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'E') ADVANCE(964); - if (lookahead == 'e') ADVANCE(1471); + if (lookahead == 'D') ADVANCE(1716); + if (lookahead == 'd') ADVANCE(1716); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1602); + lookahead == '|') ADVANCE(1610); END_STATE(); case 941: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'E') ADVANCE(965); + if (lookahead == 'E') ADVANCE(970); + if (lookahead == 'e') ADVANCE(1546); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(1410); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(1373); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1602); + ('B' <= lookahead && lookahead <= 'z') || + lookahead == '|') ADVANCE(1610); END_STATE(); case 942: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'G') ADVANCE(1675); + if (lookahead == 'E') ADVANCE(1677); + if (lookahead == 'e') ADVANCE(1677); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1602); + lookahead == '|') ADVANCE(1610); END_STATE(); case 943: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'H') ADVANCE(952); - if (lookahead == 'h') ADVANCE(1379); + if (lookahead == 'E') ADVANCE(968); + if (lookahead == 'e') ADVANCE(1478); + if (lookahead == 'L' || + lookahead == 'l') ADVANCE(1383); + if (lookahead == 'W' || + lookahead == 'w') ADVANCE(998); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1602); + lookahead == '|') ADVANCE(1610); END_STATE(); case 944: ACCEPT_TOKEN(sym_identifier); - 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 == 'E') ADVANCE(968); + if (lookahead == 'e') ADVANCE(1478); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || - ('B' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1602); + ('A' <= lookahead && lookahead <= 'z') || + lookahead == '|') ADVANCE(1610); END_STATE(); case 945: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'I') ADVANCE(949); + if (lookahead == 'E') ADVANCE(969); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1602); + lookahead == '|') ADVANCE(1610); END_STATE(); case 946: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'K') ADVANCE(938); - if (lookahead == 'k') ADVANCE(1099); + if (lookahead == 'G') ADVANCE(1683); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1602); + lookahead == '|') ADVANCE(1610); END_STATE(); case 947: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'L') ADVANCE(945); + if (lookahead == 'H') ADVANCE(956); + if (lookahead == 'h') ADVANCE(1386); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1602); + lookahead == '|') ADVANCE(1610); END_STATE(); case 948: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'L') ADVANCE(947); + if (lookahead == 'I') ADVANCE(950); + if (lookahead == 'i') ADVANCE(1279); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(1040); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(1642); + if (lookahead == 'O' || + lookahead == 'o') ADVANCE(1037); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(1641); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1602); + ('B' <= lookahead && lookahead <= 'z') || + lookahead == '|') ADVANCE(1610); END_STATE(); case 949: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'N') ADVANCE(942); + if (lookahead == 'I') ADVANCE(953); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1602); + lookahead == '|') ADVANCE(1610); END_STATE(); case 950: ACCEPT_TOKEN(sym_identifier); - 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 == 'K') ADVANCE(942); + if (lookahead == 'k') ADVANCE(1103); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1602); + lookahead == '|') ADVANCE(1610); END_STATE(); case 951: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'O') ADVANCE(948); + if (lookahead == 'L') ADVANCE(949); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1602); + lookahead == '|') ADVANCE(1610); END_STATE(); case 952: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'O') ADVANCE(936); - if (lookahead == 'o') ADVANCE(1071); + if (lookahead == 'L') ADVANCE(951); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1602); + lookahead == '|') ADVANCE(1610); END_STATE(); case 953: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'O') ADVANCE(961); + if (lookahead == 'N') ADVANCE(946); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1602); + lookahead == '|') ADVANCE(1610); END_STATE(); case 954: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'O') ADVANCE(960); - if (lookahead == 'o') ADVANCE(1428); + if (lookahead == 'O') ADVANCE(915); + if (lookahead == 'o') ADVANCE(916); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(1644); + if (lookahead == 'U' || + lookahead == 'u') ADVANCE(1317); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1602); + lookahead == '|') ADVANCE(1610); END_STATE(); case 955: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'O') ADVANCE(916); - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1636); + if (lookahead == 'O') ADVANCE(952); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1602); + lookahead == '|') ADVANCE(1610); END_STATE(); case 956: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'O') ADVANCE(916); - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1635); + if (lookahead == 'O') ADVANCE(940); + if (lookahead == 'o') ADVANCE(1075); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1602); + lookahead == '|') ADVANCE(1610); END_STATE(); case 957: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'O') ADVANCE(916); + if (lookahead == 'O') ADVANCE(965); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1602); + lookahead == '|') ADVANCE(1610); END_STATE(); case 958: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'O') ADVANCE(917); - if (lookahead == 'o') ADVANCE(933); - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1635); + if (lookahead == 'O') ADVANCE(964); + if (lookahead == 'o') ADVANCE(1435); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1602); + lookahead == '|') ADVANCE(1610); END_STATE(); case 959: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'R') ADVANCE(951); + if (lookahead == 'O') ADVANCE(920); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(1644); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1602); + lookahead == '|') ADVANCE(1610); END_STATE(); case 960: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'R') ADVANCE(1683); - if (lookahead == 'r') ADVANCE(1683); + if (lookahead == 'O') ADVANCE(920); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(1643); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1602); + lookahead == '|') ADVANCE(1610); END_STATE(); case 961: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'R') ADVANCE(1720); + if (lookahead == 'O') ADVANCE(920); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1602); + lookahead == '|') ADVANCE(1610); END_STATE(); case 962: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'R') ADVANCE(953); + if (lookahead == 'O') ADVANCE(921); + if (lookahead == 'o') ADVANCE(937); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(1643); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1602); + lookahead == '|') ADVANCE(1610); END_STATE(); case 963: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'R') ADVANCE(954); - if (lookahead == 'r') ADVANCE(1392); + if (lookahead == 'R') ADVANCE(955); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1602); + lookahead == '|') ADVANCE(1610); END_STATE(); case 964: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'R') ADVANCE(963); - if (lookahead == 'r') ADVANCE(1464); + if (lookahead == 'R') ADVANCE(1691); + if (lookahead == 'r') ADVANCE(1691); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1602); + lookahead == '|') ADVANCE(1610); END_STATE(); case 965: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'R') ADVANCE(962); + if (lookahead == 'R') ADVANCE(1729); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1602); + lookahead == '|') ADVANCE(1610); END_STATE(); case 966: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'T') ADVANCE(943); - if (lookahead == 't') ADVANCE(1223); + if (lookahead == 'R') ADVANCE(957); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1602); + lookahead == '|') ADVANCE(1610); END_STATE(); case 967: ACCEPT_TOKEN(sym_identifier); - 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 == 'R') ADVANCE(958); + if (lookahead == 'r') ADVANCE(1399); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1602); + lookahead == '|') ADVANCE(1610); END_STATE(); case 968: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(1036); - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1634); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1272); - if (lookahead == 'O' || - lookahead == 'o') ADVANCE(1033); - if (lookahead == 'T' || - lookahead == 't') ADVANCE(1633); + if (lookahead == 'R') ADVANCE(967); + if (lookahead == 'r') ADVANCE(1471); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || - ('B' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1602); + ('A' <= lookahead && lookahead <= 'z') || + lookahead == '|') ADVANCE(1610); END_STATE(); case 969: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(1403); - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1538); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1366); + if (lookahead == 'R') ADVANCE(966); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || - ('B' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1602); + ('A' <= lookahead && lookahead <= 'z') || + lookahead == '|') ADVANCE(1610); END_STATE(); case 970: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(1062); - if (lookahead == 'L' || - lookahead == 'l') ADVANCE(981); - if (lookahead == 'O' || - lookahead == 'o') ADVANCE(1273); + if (lookahead == 'T') ADVANCE(947); + if (lookahead == 't') ADVANCE(1229); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || - ('B' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1602); + ('A' <= lookahead && lookahead <= 'z') || + lookahead == '|') ADVANCE(1610); END_STATE(); case 971: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'A' || - 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 == 'Y') ADVANCE(1780); + if (lookahead == 'y') ADVANCE(1780); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(1210); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(1334); if (lookahead == 'R' || - lookahead == 'r') ADVANCE(1440); - if (lookahead == 'V' || - lookahead == 'v') ADVANCE(1181); - if (lookahead == 'X' || - lookahead == 'x') ADVANCE(1042); + lookahead == 'r') ADVANCE(1139); + if (lookahead == 'U' || + lookahead == 'u') ADVANCE(1200); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || - ('B' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1602); + ('A' <= lookahead && lookahead <= 'z') || + lookahead == '|') ADVANCE(1610); END_STATE(); case 972: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'A' || - lookahead == 'a') ADVANCE(1208); + lookahead == 'a') ADVANCE(1040); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(1642); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(1279); if (lookahead == 'O' || - lookahead == 'o') ADVANCE(1465); - if (lookahead == 'R' || - lookahead == 'r') ADVANCE(1229); - if (lookahead == 'U' || - lookahead == 'u') ADVANCE(1034); + lookahead == 'o') ADVANCE(1037); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(1641); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('B' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1602); + lookahead == '|') ADVANCE(1610); END_STATE(); case 973: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'A' || - lookahead == 'a') ADVANCE(915); + lookahead == 'a') ADVANCE(1410); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(1546); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(1373); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('B' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1602); + lookahead == '|') ADVANCE(1610); END_STATE(); case 974: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'A' || - 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); + lookahead == 'a') ADVANCE(1066); + if (lookahead == 'L' || + lookahead == 'l') ADVANCE(985); + if (lookahead == 'O' || + lookahead == 'o') ADVANCE(1280); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('B' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1602); + lookahead == '|') ADVANCE(1610); END_STATE(); case 975: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'A' || - lookahead == 'a') ADVANCE(1592); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1367); + lookahead == 'a') ADVANCE(1051); + if (lookahead == 'C' || + lookahead == 'c') ADVANCE(1222); + if (lookahead == 'L' || + lookahead == 'l') ADVANCE(1495); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(1072); + if (lookahead == 'Q' || + lookahead == 'q') ADVANCE(1645); + if (lookahead == 'R' || + lookahead == 'r') ADVANCE(1447); + if (lookahead == 'V' || + lookahead == 'v') ADVANCE(1185); + if (lookahead == 'X' || + lookahead == 'x') ADVANCE(1046); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('B' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1602); + lookahead == '|') ADVANCE(1610); END_STATE(); case 976: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'A' || - lookahead == 'a') ADVANCE(1486); - if (lookahead == 'L' || - lookahead == 'l') ADVANCE(982); + lookahead == 'a') ADVANCE(1212); + if (lookahead == 'O' || + lookahead == 'o') ADVANCE(1472); + if (lookahead == 'R' || + lookahead == 'r') ADVANCE(1235); + if (lookahead == 'U' || + lookahead == 'u') ADVANCE(1038); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('B' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1602); + lookahead == '|') ADVANCE(1610); END_STATE(); case 977: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'A' || - lookahead == 'a') ADVANCE(1268); + lookahead == 'a') ADVANCE(919); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('B' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1602); + lookahead == '|') ADVANCE(1610); END_STATE(); case 978: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'A' || - lookahead == 'a') ADVANCE(1520); - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1195); - if (lookahead == 'O' || - lookahead == 'o') ADVANCE(1760); + lookahead == 'a') ADVANCE(1589); + if (lookahead == 'C' || + lookahead == 'c') ADVANCE(1385); + if (lookahead == 'M' || + lookahead == 'm') ADVANCE(979); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(1404); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('B' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1602); + lookahead == '|') ADVANCE(1610); END_STATE(); case 979: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'A' || - lookahead == 'a') ADVANCE(1313); - if (lookahead == 'O' || - lookahead == 'o') ADVANCE(1303); + lookahead == 'a') ADVANCE(1600); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(1374); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('B' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1602); + lookahead == '|') ADVANCE(1610); END_STATE(); case 980: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'A' || - lookahead == 'a') ADVANCE(1313); + lookahead == 'a') ADVANCE(1493); + if (lookahead == 'L' || + lookahead == 'l') ADVANCE(986); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('B' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1602); + lookahead == '|') ADVANCE(1610); END_STATE(); case 981: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'A' || - lookahead == 'a') ADVANCE(1483); - if (lookahead == 'O' || - lookahead == 'o') ADVANCE(1492); + lookahead == 'a') ADVANCE(1275); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('B' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1602); + lookahead == '|') ADVANCE(1610); END_STATE(); case 982: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'A' || - lookahead == 'a') ADVANCE(1483); + lookahead == 'a') ADVANCE(1527); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(1199); + if (lookahead == 'O' || + lookahead == 'o') ADVANCE(1769); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('B' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1602); + lookahead == '|') ADVANCE(1610); END_STATE(); case 983: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'A' || - lookahead == 'a') ADVANCE(1204); + lookahead == 'a') ADVANCE(1320); + if (lookahead == 'O' || + lookahead == 'o') ADVANCE(1310); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('B' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1602); + lookahead == '|') ADVANCE(1610); END_STATE(); case 984: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'A' || - lookahead == 'a') ADVANCE(1037); + lookahead == 'a') ADVANCE(1320); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('B' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1602); + lookahead == '|') ADVANCE(1610); END_STATE(); case 985: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'A' || - lookahead == 'a') ADVANCE(1436); - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1317); - if (lookahead == 'H' || - lookahead == 'h') ADVANCE(1143); + lookahead == 'a') ADVANCE(1490); if (lookahead == 'O' || - lookahead == 'o') ADVANCE(1745); - if (lookahead == 'R' || - lookahead == 'r') ADVANCE(992); + lookahead == 'o') ADVANCE(1499); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('B' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1602); + lookahead == '|') ADVANCE(1610); END_STATE(); case 986: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'A' || - lookahead == 'a') ADVANCE(1523); - if (lookahead == 'O' || - lookahead == 'o') ADVANCE(1404); - if (lookahead == 'R' || - lookahead == 'r') ADVANCE(1153); + lookahead == 'a') ADVANCE(1490); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('B' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1602); + lookahead == '|') ADVANCE(1610); END_STATE(); case 987: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'A' || - lookahead == 'a') ADVANCE(1523); + lookahead == 'a') ADVANCE(1208); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('B' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1602); + lookahead == '|') ADVANCE(1610); END_STATE(); case 988: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'A' || - lookahead == 'a') ADVANCE(1423); - if (lookahead == 'O' || - lookahead == 'o') ADVANCE(1233); + lookahead == 'a') ADVANCE(1041); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('B' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1602); + lookahead == '|') ADVANCE(1610); END_STATE(); case 989: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'A' || - lookahead == 'a') ADVANCE(1275); + lookahead == 'a') ADVANCE(1443); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(1324); + if (lookahead == 'H' || + lookahead == 'h') ADVANCE(1147); + if (lookahead == 'O' || + lookahead == 'o') ADVANCE(1754); + if (lookahead == 'R' || + lookahead == 'r') ADVANCE(996); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('B' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1602); + lookahead == '|') ADVANCE(1610); END_STATE(); case 990: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'A' || - lookahead == 'a') ADVANCE(1276); + lookahead == 'a') ADVANCE(1530); + if (lookahead == 'O' || + lookahead == 'o') ADVANCE(1411); + if (lookahead == 'R' || + lookahead == 'r') ADVANCE(1157); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('B' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1602); + lookahead == '|') ADVANCE(1610); END_STATE(); case 991: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'A' || - lookahead == 'a') ADVANCE(1304); + lookahead == 'a') ADVANCE(1530); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('B' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1602); + lookahead == '|') ADVANCE(1610); END_STATE(); case 992: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'A' || - lookahead == 'a') ADVANCE(1341); + lookahead == 'a') ADVANCE(1430); + if (lookahead == 'O' || + lookahead == 'o') ADVANCE(1239); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('B' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1602); + lookahead == '|') ADVANCE(1610); END_STATE(); case 993: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'A' || - lookahead == 'a') ADVANCE(1446); + lookahead == 'a') ADVANCE(1282); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('B' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1602); + lookahead == '|') ADVANCE(1610); END_STATE(); case 994: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'A' || - lookahead == 'a') ADVANCE(1246); + lookahead == 'a') ADVANCE(1283); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('B' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1602); + lookahead == '|') ADVANCE(1610); END_STATE(); case 995: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'A' || - lookahead == 'a') ADVANCE(1277); + lookahead == 'a') ADVANCE(1311); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('B' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1602); + lookahead == '|') ADVANCE(1610); END_STATE(); case 996: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'A' || - lookahead == 'a') ADVANCE(1539); + lookahead == 'a') ADVANCE(1348); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('B' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1602); + lookahead == '|') ADVANCE(1610); END_STATE(); case 997: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'A' || - lookahead == 'a') ADVANCE(1534); + lookahead == 'a') ADVANCE(1453); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('B' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1602); + lookahead == '|') ADVANCE(1610); END_STATE(); case 998: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'A' || - lookahead == 'a') ADVANCE(1438); - if (lookahead == 'D' || - lookahead == 'd') ADVANCE(1695); + lookahead == 'a') ADVANCE(1252); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('B' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1602); + lookahead == '|') ADVANCE(1610); END_STATE(); case 999: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'A' || - lookahead == 'a') ADVANCE(1291); + lookahead == 'a') ADVANCE(1284); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('B' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1602); + lookahead == '|') ADVANCE(1610); END_STATE(); case 1000: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'A' || - lookahead == 'a') ADVANCE(1508); + lookahead == 'a') ADVANCE(1547); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('B' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1602); + lookahead == '|') ADVANCE(1610); END_STATE(); case 1001: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'A' || - lookahead == 'a') ADVANCE(1280); + lookahead == 'a') ADVANCE(1542); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('B' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1602); + lookahead == '|') ADVANCE(1610); END_STATE(); case 1002: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'A' || - lookahead == 'a') ADVANCE(1352); + lookahead == 'a') ADVANCE(1445); + if (lookahead == 'D' || + lookahead == 'd') ADVANCE(1704); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('B' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1602); + lookahead == '|') ADVANCE(1610); END_STATE(); case 1003: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'A' || - lookahead == 'a') ADVANCE(1442); + lookahead == 'a') ADVANCE(1298); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('B' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1602); + lookahead == '|') ADVANCE(1610); END_STATE(); case 1004: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'A' || - lookahead == 'a') ADVANCE(1537); + lookahead == 'a') ADVANCE(1515); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('B' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1602); + lookahead == '|') ADVANCE(1610); END_STATE(); case 1005: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'A' || - lookahead == 'a') ADVANCE(1522); - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1455); + lookahead == 'a') ADVANCE(1287); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('B' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1602); + lookahead == '|') ADVANCE(1610); END_STATE(); case 1006: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'A' || - lookahead == 'a') ADVANCE(1413); + lookahead == 'a') ADVANCE(1359); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('B' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1602); + lookahead == '|') ADVANCE(1610); END_STATE(); case 1007: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'A' || - lookahead == 'a') ADVANCE(1039); + lookahead == 'a') ADVANCE(1449); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('B' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1602); + lookahead == '|') ADVANCE(1610); END_STATE(); case 1008: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'A' || - lookahead == 'a') ADVANCE(1244); + lookahead == 'a') ADVANCE(1545); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('B' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1602); + lookahead == '|') ADVANCE(1610); END_STATE(); case 1009: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'A' || - lookahead == 'a') ADVANCE(1314); + lookahead == 'a') ADVANCE(1420); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('B' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1602); + lookahead == '|') ADVANCE(1610); END_STATE(); case 1010: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'A' || - lookahead == 'a') ADVANCE(1210); + lookahead == 'a') ADVANCE(1043); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('B' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1602); + lookahead == '|') ADVANCE(1610); END_STATE(); case 1011: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'A' || - lookahead == 'a') ADVANCE(1287); + lookahead == 'a') ADVANCE(1250); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('B' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1602); + lookahead == '|') ADVANCE(1610); END_STATE(); case 1012: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'A' || - lookahead == 'a') ADVANCE(1248); + lookahead == 'a') ADVANCE(1321); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('B' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1602); + lookahead == '|') ADVANCE(1610); END_STATE(); case 1013: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'A' || - lookahead == 'a') ADVANCE(1535); + lookahead == 'a') ADVANCE(1214); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('B' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1602); + lookahead == '|') ADVANCE(1610); END_STATE(); case 1014: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'A' || - lookahead == 'a') ADVANCE(1482); + lookahead == 'a') ADVANCE(1294); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('B' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1602); + lookahead == '|') ADVANCE(1610); END_STATE(); case 1015: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'A' || - lookahead == 'a') ADVANCE(1057); + lookahead == 'a') ADVANCE(1254); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('B' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1602); + lookahead == '|') ADVANCE(1610); END_STATE(); case 1016: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'A' || - lookahead == 'a') ADVANCE(1487); - if (lookahead == 'L' || - lookahead == 'l') ADVANCE(982); + lookahead == 'a') ADVANCE(1543); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('B' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1602); + lookahead == '|') ADVANCE(1610); END_STATE(); case 1017: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'A' || - lookahead == 'a') ADVANCE(1212); + lookahead == 'a') ADVANCE(1532); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(1462); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('B' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1602); + lookahead == '|') ADVANCE(1610); END_STATE(); case 1018: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'A' || - lookahead == 'a') ADVANCE(1493); + lookahead == 'a') ADVANCE(1489); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('B' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1602); + lookahead == '|') ADVANCE(1610); END_STATE(); case 1019: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'A' || - lookahead == 'a') ADVANCE(1213); + lookahead == 'a') ADVANCE(1061); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('B' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1602); + lookahead == '|') ADVANCE(1610); END_STATE(); case 1020: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'A' || - lookahead == 'a') ADVANCE(1061); + lookahead == 'a') ADVANCE(1494); + if (lookahead == 'L' || + lookahead == 'l') ADVANCE(986); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('B' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1602); + lookahead == '|') ADVANCE(1610); END_STATE(); case 1021: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'A' || - lookahead == 'a') ADVANCE(1533); + lookahead == 'a') ADVANCE(1216); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('B' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1602); + lookahead == '|') ADVANCE(1610); END_STATE(); case 1022: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'A' || - lookahead == 'a') ADVANCE(1468); + lookahead == 'a') ADVANCE(1500); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('B' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1602); + lookahead == '|') ADVANCE(1610); END_STATE(); case 1023: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'A' || - lookahead == 'a') ADVANCE(1040); + lookahead == 'a') ADVANCE(1217); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('B' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1602); + lookahead == '|') ADVANCE(1610); END_STATE(); case 1024: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'A' || - lookahead == 'a') ADVANCE(1547); + lookahead == 'a') ADVANCE(1065); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('B' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1602); + lookahead == '|') ADVANCE(1610); END_STATE(); case 1025: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'A' || - lookahead == 'a') ADVANCE(1041); + lookahead == 'a') ADVANCE(1541); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('B' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1602); + lookahead == '|') ADVANCE(1610); END_STATE(); case 1026: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'A' || - lookahead == 'a') ADVANCE(1550); + lookahead == 'a') ADVANCE(1475); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('B' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1602); + lookahead == '|') ADVANCE(1610); END_STATE(); case 1027: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'A' || - lookahead == 'a') ADVANCE(1551); + lookahead == 'a') ADVANCE(1044); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('B' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1602); + lookahead == '|') ADVANCE(1610); END_STATE(); case 1028: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'A' || - lookahead == 'a') ADVANCE(1066); + lookahead == 'a') ADVANCE(1555); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('B' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1602); + lookahead == '|') ADVANCE(1610); END_STATE(); case 1029: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'A' || - lookahead == 'a') ADVANCE(1589); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1366); + lookahead == 'a') ADVANCE(1045); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('B' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1602); + lookahead == '|') ADVANCE(1610); END_STATE(); case 1030: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'B' || - 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 == 'A' || + lookahead == 'a') ADVANCE(1558); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1602); + ('B' <= lookahead && lookahead <= 'z') || + lookahead == '|') ADVANCE(1610); END_STATE(); case 1031: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1485); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(1559); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1602); + ('B' <= lookahead && lookahead <= 'z') || + lookahead == '|') ADVANCE(1610); END_STATE(); case 1032: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1576); - if (lookahead == 'D' || - lookahead == 'd') ADVANCE(1371); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1421); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(1070); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1602); + ('B' <= lookahead && lookahead <= 'z') || + lookahead == '|') ADVANCE(1610); END_STATE(); case 1033: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(920); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(1597); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(1373); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1602); + ('B' <= lookahead && lookahead <= 'z') || + lookahead == '|') ADVANCE(1610); END_STATE(); case 1034: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1300); + lookahead == 'b') ADVANCE(1492); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(1071); + if (lookahead == 'P' || + lookahead == 'p') ADVANCE(1421); + if (lookahead == 'S' || + lookahead == 's') ADVANCE(1676); + if (lookahead == 'V' || + lookahead == 'v') ADVANCE(1152); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1602); + lookahead == '|') ADVANCE(1610); END_STATE(); case 1035: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(913); + lookahead == 'b') ADVANCE(1492); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1602); + lookahead == '|') ADVANCE(1610); END_STATE(); case 1036: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1140); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1075); - if (lookahead == 'S' || - lookahead == 's') ADVANCE(1500); + lookahead == 'b') ADVANCE(1584); + if (lookahead == 'D' || + lookahead == 'd') ADVANCE(1378); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(1428); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1602); + lookahead == '|') ADVANCE(1610); END_STATE(); case 1037: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1157); + lookahead == 'b') ADVANCE(924); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1602); + lookahead == '|') ADVANCE(1610); END_STATE(); case 1038: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(990); + lookahead == 'b') ADVANCE(1307); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1602); + lookahead == '|') ADVANCE(1610); END_STATE(); case 1039: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1295); + lookahead == 'b') ADVANCE(917); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1602); + lookahead == '|') ADVANCE(1610); END_STATE(); case 1040: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1296); + lookahead == 'b') ADVANCE(1144); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(1079); + if (lookahead == 'S' || + lookahead == 's') ADVANCE(1507); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1602); + lookahead == '|') ADVANCE(1610); END_STATE(); case 1041: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1297); + lookahead == 'b') ADVANCE(1161); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1602); + lookahead == '|') ADVANCE(1610); END_STATE(); case 1042: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'C' || - lookahead == 'c') ADVANCE(1145); - if (lookahead == 'T' || - lookahead == 't') ADVANCE(1185); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(994); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1602); + lookahead == '|') ADVANCE(1610); END_STATE(); case 1043: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'C' || - lookahead == 'c') ADVANCE(1656); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(1302); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1602); + lookahead == '|') ADVANCE(1610); END_STATE(); case 1044: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'C' || - lookahead == 'c') ADVANCE(1659); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(1303); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1602); + lookahead == '|') ADVANCE(1610); END_STATE(); case 1045: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'C' || - lookahead == 'c') ADVANCE(1375); - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1199); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(1304); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1602); + lookahead == '|') ADVANCE(1610); END_STATE(); case 1046: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'C' || - lookahead == 'c') ADVANCE(1269); + lookahead == 'c') ADVANCE(1149); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(1189); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1602); + lookahead == '|') ADVANCE(1610); END_STATE(); case 1047: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'C' || - lookahead == 'c') ADVANCE(1214); + lookahead == 'c') ADVANCE(1664); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1602); + lookahead == '|') ADVANCE(1610); END_STATE(); case 1048: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'C' || - lookahead == 'c') ADVANCE(1270); + lookahead == 'c') ADVANCE(1667); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1602); + lookahead == '|') ADVANCE(1610); END_STATE(); case 1049: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'C' || - lookahead == 'c') ADVANCE(1215); + lookahead == 'c') ADVANCE(1382); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(1203); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1602); + lookahead == '|') ADVANCE(1610); END_STATE(); case 1050: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'C' || - lookahead == 'c') ADVANCE(1271); + lookahead == 'c') ADVANCE(1276); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1602); + lookahead == '|') ADVANCE(1610); END_STATE(); case 1051: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'C' || - lookahead == 'c') ADVANCE(1377); + lookahead == 'c') ADVANCE(1218); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1602); + lookahead == '|') ADVANCE(1610); END_STATE(); case 1052: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'C' || - lookahead == 'c') ADVANCE(1151); - if (lookahead == 'P' || - lookahead == 'p') ADVANCE(1005); - if (lookahead == 'T' || - lookahead == 't') ADVANCE(1178); + lookahead == 'c') ADVANCE(1277); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1602); + lookahead == '|') ADVANCE(1610); END_STATE(); case 1053: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'C' || - lookahead == 'c') ADVANCE(1151); + lookahead == 'c') ADVANCE(1278); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1602); + lookahead == '|') ADVANCE(1610); END_STATE(); case 1054: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'C' || - lookahead == 'c') ADVANCE(1006); + lookahead == 'c') ADVANCE(1220); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1602); + lookahead == '|') ADVANCE(1610); END_STATE(); case 1055: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'C' || - lookahead == 'c') ADVANCE(1283); + lookahead == 'c') ADVANCE(1384); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1602); + lookahead == '|') ADVANCE(1610); END_STATE(); case 1056: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'C' || - lookahead == 'c') ADVANCE(1108); + lookahead == 'c') ADVANCE(1155); + if (lookahead == 'P' || + lookahead == 'p') ADVANCE(1017); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(1182); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1602); + lookahead == '|') ADVANCE(1610); END_STATE(); case 1057: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'C' || - lookahead == 'c') ADVANCE(1513); + lookahead == 'c') ADVANCE(1155); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1602); + lookahead == '|') ADVANCE(1610); END_STATE(); case 1058: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'C' || - lookahead == 'c') ADVANCE(1542); + lookahead == 'c') ADVANCE(1009); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1602); + lookahead == '|') ADVANCE(1610); END_STATE(); case 1059: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'C' || - lookahead == 'c') ADVANCE(1160); + lookahead == 'c') ADVANCE(1290); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1602); + lookahead == '|') ADVANCE(1610); END_STATE(); case 1060: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'C' || - lookahead == 'c') ADVANCE(1124); + lookahead == 'c') ADVANCE(1112); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1602); + lookahead == '|') ADVANCE(1610); END_STATE(); case 1061: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'C' || - lookahead == 'c') ADVANCE(1127); + lookahead == 'c') ADVANCE(1520); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1602); + lookahead == '|') ADVANCE(1610); END_STATE(); case 1062: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'C' || - lookahead == 'c') ADVANCE(1219); - if (lookahead == 'S' || - lookahead == 's') ADVANCE(1100); - if (lookahead == 'T' || - lookahead == 't') ADVANCE(1049); + lookahead == 'c') ADVANCE(1550); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1602); + lookahead == '|') ADVANCE(1610); END_STATE(); case 1063: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'C' || - lookahead == 'c') ADVANCE(1525); + lookahead == 'c') ADVANCE(1164); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1602); + lookahead == '|') ADVANCE(1610); END_STATE(); case 1064: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'C' || - lookahead == 'c') ADVANCE(1221); + lookahead == 'c') ADVANCE(1128); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1602); + lookahead == '|') ADVANCE(1610); END_STATE(); case 1065: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'C' || - lookahead == 'c') ADVANCE(1536); + lookahead == 'c') ADVANCE(1131); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1602); + lookahead == '|') ADVANCE(1610); END_STATE(); case 1066: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'C' || - lookahead == 'c') ADVANCE(1549); + lookahead == 'c') ADVANCE(1224); + if (lookahead == 'S' || + lookahead == 's') ADVANCE(1104); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(1054); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1602); + lookahead == '|') ADVANCE(1610); END_STATE(); case 1067: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'D' || - lookahead == 'd') ADVANCE(1776); - if (lookahead == 'Y' || - lookahead == 'y') ADVANCE(1585); + if (lookahead == 'C' || + lookahead == 'c') ADVANCE(1533); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1602); + lookahead == '|') ADVANCE(1610); END_STATE(); case 1068: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'D' || - lookahead == 'd') ADVANCE(1605); + if (lookahead == 'C' || + lookahead == 'c') ADVANCE(1227); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1602); + lookahead == '|') ADVANCE(1610); END_STATE(); case 1069: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'D' || - lookahead == 'd') ADVANCE(1645); + if (lookahead == 'C' || + lookahead == 'c') ADVANCE(1544); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1602); + lookahead == '|') ADVANCE(1610); END_STATE(); case 1070: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'D' || - lookahead == 'd') ADVANCE(1791); + if (lookahead == 'C' || + lookahead == 'c') ADVANCE(1557); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1602); + lookahead == '|') ADVANCE(1610); END_STATE(); case 1071: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'D' || - lookahead == 'd') ADVANCE(1707); + lookahead == 'd') ADVANCE(1785); + if (lookahead == 'Y' || + lookahead == 'y') ADVANCE(1593); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1602); + lookahead == '|') ADVANCE(1610); END_STATE(); case 1072: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'D' || - lookahead == 'd') ADVANCE(1741); + lookahead == 'd') ADVANCE(1613); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1602); + lookahead == '|') ADVANCE(1610); END_STATE(); case 1073: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'D' || - lookahead == 'd') ADVANCE(1658); + lookahead == 'd') ADVANCE(1653); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1602); + lookahead == '|') ADVANCE(1610); END_STATE(); case 1074: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'D' || - lookahead == 'd') ADVANCE(1732); + lookahead == 'd') ADVANCE(1800); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1602); + lookahead == '|') ADVANCE(1610); END_STATE(); case 1075: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'D' || - lookahead == 'd') ADVANCE(1484); + lookahead == 'd') ADVANCE(1716); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1602); + lookahead == '|') ADVANCE(1610); END_STATE(); case 1076: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'D' || - lookahead == 'd') ADVANCE(1371); + lookahead == 'd') ADVANCE(1750); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1602); + lookahead == '|') ADVANCE(1610); END_STATE(); case 1077: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'D' || - lookahead == 'd') ADVANCE(1247); + lookahead == 'd') ADVANCE(1666); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1602); + lookahead == '|') ADVANCE(1610); END_STATE(); case 1078: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'D' || - lookahead == 'd') ADVANCE(929); + lookahead == 'd') ADVANCE(1741); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1602); + lookahead == '|') ADVANCE(1610); END_STATE(); case 1079: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'D' || - lookahead == 'd') ADVANCE(1481); + lookahead == 'd') ADVANCE(1491); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1602); + lookahead == '|') ADVANCE(1610); END_STATE(); case 1080: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'D' || - lookahead == 'd') ADVANCE(1190); + lookahead == 'd') ADVANCE(1378); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1602); + lookahead == '|') ADVANCE(1610); END_STATE(); case 1081: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'D' || - lookahead == 'd') ADVANCE(1115); + lookahead == 'd') ADVANCE(1253); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1602); + lookahead == '|') ADVANCE(1610); END_STATE(); case 1082: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'D' || - lookahead == 'd') ADVANCE(1133); + lookahead == 'd') ADVANCE(933); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1602); + lookahead == '|') ADVANCE(1610); END_STATE(); case 1083: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'D' || - lookahead == 'd') ADVANCE(1136); + lookahead == 'd') ADVANCE(1488); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1602); + lookahead == '|') ADVANCE(1610); END_STATE(); case 1084: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'D' || - lookahead == 'd') ADVANCE(1142); + lookahead == 'd') ADVANCE(1194); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1602); + lookahead == '|') ADVANCE(1610); END_STATE(); case 1085: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'D' || - lookahead == 'd') ADVANCE(1211); + lookahead == 'd') ADVANCE(1119); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1602); + lookahead == '|') ADVANCE(1610); END_STATE(); case 1086: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'D' || - lookahead == 'd') ADVANCE(1298); + lookahead == 'd') ADVANCE(1137); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1602); + lookahead == '|') ADVANCE(1610); END_STATE(); case 1087: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'D' || - lookahead == 'd') ADVANCE(1573); + lookahead == 'd') ADVANCE(1140); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1602); + lookahead == '|') ADVANCE(1610); END_STATE(); case 1088: ACCEPT_TOKEN(sym_identifier); - 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 == 'Y' || - lookahead == 'y') ADVANCE(1771); + if (lookahead == 'D' || + lookahead == 'd') ADVANCE(1146); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1602); + lookahead == '|') ADVANCE(1610); END_STATE(); case 1089: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1206); + if (lookahead == 'D' || + lookahead == 'd') ADVANCE(1215); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1602); + lookahead == '|') ADVANCE(1610); END_STATE(); case 1090: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1634); - if (lookahead == 'T' || - lookahead == 't') ADVANCE(1633); + if (lookahead == 'D' || + lookahead == 'd') ADVANCE(1305); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1602); + lookahead == '|') ADVANCE(1610); END_STATE(); case 1091: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1636); - if (lookahead == 'O' || - lookahead == 'o') ADVANCE(912); - if (lookahead == 'U' || - lookahead == 'u') ADVANCE(1310); + if (lookahead == 'D' || + lookahead == 'd') ADVANCE(1581); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1602); + lookahead == '|') ADVANCE(1610); END_STATE(); case 1092: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1636); - if (lookahead == 'O' || - lookahead == 'o') ADVANCE(933); + lookahead == 'e') ADVANCE(1210); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(1334); + if (lookahead == 'R' || + lookahead == 'r') ADVANCE(1139); + if (lookahead == 'U' || + lookahead == 'u') ADVANCE(1200); + if (lookahead == 'Y' || + lookahead == 'y') ADVANCE(1780); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1602); + lookahead == '|') ADVANCE(1610); END_STATE(); case 1093: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1636); + lookahead == 'e') ADVANCE(1210); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1602); + lookahead == '|') ADVANCE(1610); END_STATE(); case 1094: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'E' || - 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); + lookahead == 'e') ADVANCE(1642); if (lookahead == 'T' || - lookahead == 't') ADVANCE(986); - if (lookahead == 'U' || - lookahead == 'u') ADVANCE(1035); + lookahead == 't') ADVANCE(1641); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1602); + lookahead == '|') ADVANCE(1610); END_STATE(); case 1095: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1640); - if (lookahead == 'L' || - lookahead == 'l') ADVANCE(1374); - if (lookahead == 'T' || - lookahead == 't') ADVANCE(1638); + lookahead == 'e') ADVANCE(1644); + if (lookahead == 'O' || + lookahead == 'o') ADVANCE(916); + if (lookahead == 'U' || + lookahead == 'u') ADVANCE(1317); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1602); + lookahead == '|') ADVANCE(1610); END_STATE(); case 1096: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1285); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(989); - if (lookahead == 'R' || - lookahead == 'r') ADVANCE(1489); + lookahead == 'e') ADVANCE(1644); + if (lookahead == 'O' || + lookahead == 'o') ADVANCE(937); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1602); + lookahead == '|') ADVANCE(1610); END_STATE(); case 1097: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1285); + lookahead == 'e') ADVANCE(1644); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1602); + lookahead == '|') ADVANCE(1610); END_STATE(); case 1098: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1329); + lookahead == 'e') ADVANCE(1448); + if (lookahead == 'H' || + lookahead == 'h') ADVANCE(997); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1294); + lookahead == 'i') ADVANCE(1211); + if (lookahead == 'O' || + lookahead == 'o') ADVANCE(1566); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(990); + if (lookahead == 'U' || + lookahead == 'u') ADVANCE(1039); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1602); + lookahead == '|') ADVANCE(1610); END_STATE(); case 1099: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1669); + lookahead == 'e') ADVANCE(1648); + if (lookahead == 'L' || + lookahead == 'l') ADVANCE(1381); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(1646); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1602); + lookahead == '|') ADVANCE(1610); END_STATE(); case 1100: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1761); + lookahead == 'e') ADVANCE(1292); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(993); + if (lookahead == 'R' || + lookahead == 'r') ADVANCE(1496); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1602); + lookahead == '|') ADVANCE(1610); END_STATE(); case 1101: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1685); + lookahead == 'e') ADVANCE(1292); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1602); + lookahead == '|') ADVANCE(1610); END_STATE(); case 1102: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(928); + lookahead == 'e') ADVANCE(1336); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(1301); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1602); + lookahead == '|') ADVANCE(1610); END_STATE(); case 1103: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1673); + lookahead == 'e') ADVANCE(1677); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1602); + lookahead == '|') ADVANCE(1610); END_STATE(); case 1104: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1725); + lookahead == 'e') ADVANCE(1770); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1602); + lookahead == '|') ADVANCE(1610); END_STATE(); case 1105: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1624); + lookahead == 'e') ADVANCE(1693); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1602); + lookahead == '|') ADVANCE(1610); END_STATE(); case 1106: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1764); + lookahead == 'e') ADVANCE(932); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1602); + lookahead == '|') ADVANCE(1610); END_STATE(); case 1107: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1687); + lookahead == 'e') ADVANCE(1681); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1602); + lookahead == '|') ADVANCE(1610); END_STATE(); case 1108: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1736); + lookahead == 'e') ADVANCE(1734); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1602); + lookahead == '|') ADVANCE(1610); END_STATE(); case 1109: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1662); + lookahead == 'e') ADVANCE(1632); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1602); + lookahead == '|') ADVANCE(1610); END_STATE(); case 1110: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1793); + lookahead == 'e') ADVANCE(1773); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1602); + lookahead == '|') ADVANCE(1610); END_STATE(); case 1111: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1779); + lookahead == 'e') ADVANCE(1695); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1602); + lookahead == '|') ADVANCE(1610); END_STATE(); case 1112: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1738); + lookahead == 'e') ADVANCE(1745); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1602); + lookahead == '|') ADVANCE(1610); END_STATE(); case 1113: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1657); + lookahead == 'e') ADVANCE(1670); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1602); + lookahead == '|') ADVANCE(1610); END_STATE(); case 1114: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1796); + lookahead == 'e') ADVANCE(1802); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1602); + lookahead == '|') ADVANCE(1610); END_STATE(); case 1115: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1699); + lookahead == 'e') ADVANCE(1788); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1602); + lookahead == '|') ADVANCE(1610); END_STATE(); case 1116: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1665); + lookahead == 'e') ADVANCE(1747); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1602); + lookahead == '|') ADVANCE(1610); END_STATE(); case 1117: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1739); + lookahead == 'e') ADVANCE(1665); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1602); + lookahead == '|') ADVANCE(1610); END_STATE(); case 1118: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1705); + lookahead == 'e') ADVANCE(1805); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1602); + lookahead == '|') ADVANCE(1610); END_STATE(); case 1119: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1763); + lookahead == 'e') ADVANCE(1708); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1602); + lookahead == '|') ADVANCE(1610); END_STATE(); case 1120: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1744); + lookahead == 'e') ADVANCE(1673); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1602); + lookahead == '|') ADVANCE(1610); END_STATE(); case 1121: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1689); + lookahead == 'e') ADVANCE(1748); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1602); + lookahead == '|') ADVANCE(1610); END_STATE(); case 1122: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1672); + lookahead == 'e') ADVANCE(1714); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1602); + lookahead == '|') ADVANCE(1610); END_STATE(); case 1123: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1784); + lookahead == 'e') ADVANCE(1772); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1602); + lookahead == '|') ADVANCE(1610); END_STATE(); case 1124: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1797); + lookahead == 'e') ADVANCE(1753); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1602); + lookahead == '|') ADVANCE(1610); END_STATE(); case 1125: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1660); + lookahead == 'e') ADVANCE(1698); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1602); + lookahead == '|') ADVANCE(1610); END_STATE(); case 1126: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1724); + lookahead == 'e') ADVANCE(1680); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1602); + lookahead == '|') ADVANCE(1610); END_STATE(); case 1127: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1697); + lookahead == 'e') ADVANCE(1793); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1602); + lookahead == '|') ADVANCE(1610); END_STATE(); case 1128: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1635); - if (lookahead == 'O' || - lookahead == 'o') ADVANCE(933); + lookahead == 'e') ADVANCE(1806); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1602); + lookahead == '|') ADVANCE(1610); END_STATE(); case 1129: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1635); + lookahead == 'e') ADVANCE(1668); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1602); + lookahead == '|') ADVANCE(1610); END_STATE(); case 1130: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1639); - if (lookahead == 'T' || - lookahead == 't') ADVANCE(1638); + lookahead == 'e') ADVANCE(1733); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1602); + lookahead == '|') ADVANCE(1610); END_STATE(); case 1131: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1195); - if (lookahead == 'O' || - lookahead == 'o') ADVANCE(1760); + lookahead == 'e') ADVANCE(1706); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1602); + lookahead == '|') ADVANCE(1610); END_STATE(); case 1132: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(921); + lookahead == 'e') ADVANCE(1643); + if (lookahead == 'O' || + lookahead == 'o') ADVANCE(937); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1602); + lookahead == '|') ADVANCE(1610); END_STATE(); case 1133: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1586); + lookahead == 'e') ADVANCE(1643); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1602); + lookahead == '|') ADVANCE(1610); END_STATE(); case 1134: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1417); + lookahead == 'e') ADVANCE(1647); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(1646); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1602); + lookahead == '|') ADVANCE(1610); END_STATE(); case 1135: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(977); + lookahead == 'e') ADVANCE(1199); + if (lookahead == 'O' || + lookahead == 'o') ADVANCE(1769); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1602); + lookahead == '|') ADVANCE(1610); END_STATE(); case 1136: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1587); + lookahead == 'e') ADVANCE(925); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1602); + lookahead == '|') ADVANCE(1610); END_STATE(); case 1137: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1407); + lookahead == 'e') ADVANCE(1594); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1602); + lookahead == '|') ADVANCE(1610); END_STATE(); case 1138: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1582); - if (lookahead == 'O' || - lookahead == 'o') ADVANCE(912); + lookahead == 'e') ADVANCE(1424); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1602); + lookahead == '|') ADVANCE(1610); END_STATE(); case 1139: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1582); + lookahead == 'e') ADVANCE(981); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1602); + lookahead == '|') ADVANCE(1610); END_STATE(); case 1140: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1274); + lookahead == 'e') ADVANCE(1595); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1602); + lookahead == '|') ADVANCE(1610); END_STATE(); case 1141: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1137); + lookahead == 'e') ADVANCE(1414); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1602); + lookahead == '|') ADVANCE(1610); END_STATE(); case 1142: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1588); + lookahead == 'e') ADVANCE(1590); + if (lookahead == 'O' || + lookahead == 'o') ADVANCE(916); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1602); + lookahead == '|') ADVANCE(1610); END_STATE(); case 1143: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1328); - if (lookahead == 'R' || - lookahead == 'r') ADVANCE(1373); + lookahead == 'e') ADVANCE(1590); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1602); + lookahead == '|') ADVANCE(1610); END_STATE(); case 1144: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(914); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1338); + lookahead == 'e') ADVANCE(1281); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1602); + lookahead == '|') ADVANCE(1610); END_STATE(); case 1145: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1409); - if (lookahead == 'L' || - lookahead == 'l') ADVANCE(1557); + lookahead == 'e') ADVANCE(1141); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1602); + lookahead == '|') ADVANCE(1610); END_STATE(); case 1146: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1591); + lookahead == 'e') ADVANCE(1596); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1602); + lookahead == '|') ADVANCE(1610); END_STATE(); case 1147: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1476); + lookahead == 'e') ADVANCE(1335); + if (lookahead == 'R' || + lookahead == 'r') ADVANCE(1380); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1602); + lookahead == '|') ADVANCE(1610); END_STATE(); case 1148: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1448); + lookahead == 'e') ADVANCE(918); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(1345); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1602); + lookahead == '|') ADVANCE(1610); END_STATE(); case 1149: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1302); + lookahead == 'e') ADVANCE(1416); + if (lookahead == 'L' || + lookahead == 'l') ADVANCE(1565); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1602); + lookahead == '|') ADVANCE(1610); END_STATE(); case 1150: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1345); + lookahead == 'e') ADVANCE(1599); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1602); + lookahead == '|') ADVANCE(1610); END_STATE(); case 1151: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1087); + lookahead == 'e') ADVANCE(1483); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1602); + lookahead == '|') ADVANCE(1610); END_STATE(); case 1152: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1451); + lookahead == 'e') ADVANCE(1455); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1602); + lookahead == '|') ADVANCE(1610); END_STATE(); case 1153: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(991); + lookahead == 'e') ADVANCE(1309); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1602); + lookahead == '|') ADVANCE(1610); END_STATE(); case 1154: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1478); + lookahead == 'e') ADVANCE(1352); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1602); + lookahead == '|') ADVANCE(1610); END_STATE(); case 1155: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1424); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1501); + lookahead == 'e') ADVANCE(1091); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1602); + lookahead == '|') ADVANCE(1610); END_STATE(); case 1156: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1424); + lookahead == 'e') ADVANCE(1458); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1602); + lookahead == '|') ADVANCE(1610); END_STATE(); case 1157: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1278); + lookahead == 'e') ADVANCE(995); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1602); + lookahead == '|') ADVANCE(1610); END_STATE(); case 1158: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(927); + lookahead == 'e') ADVANCE(1485); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1602); + lookahead == '|') ADVANCE(1610); END_STATE(); case 1159: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1073); + lookahead == 'e') ADVANCE(1431); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(1508); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1602); + lookahead == '|') ADVANCE(1610); END_STATE(); case 1160: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(932); + lookahead == 'e') ADVANCE(1431); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1602); + lookahead == '|') ADVANCE(1610); END_STATE(); case 1161: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1480); + lookahead == 'e') ADVANCE(1285); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1602); + lookahead == '|') ADVANCE(1610); END_STATE(); case 1162: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1074); + lookahead == 'e') ADVANCE(931); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1602); + lookahead == '|') ADVANCE(1610); END_STATE(); case 1163: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1471); - if (lookahead == 'L' || - lookahead == 'l') ADVANCE(1376); - if (lookahead == 'W' || - lookahead == 'w') ADVANCE(994); + lookahead == 'e') ADVANCE(1077); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1602); + lookahead == '|') ADVANCE(1610); END_STATE(); case 1164: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1471); + lookahead == 'e') ADVANCE(936); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1602); + lookahead == '|') ADVANCE(1610); END_STATE(); case 1165: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1437); + lookahead == 'e') ADVANCE(1487); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1602); + lookahead == '|') ADVANCE(1610); END_STATE(); case 1166: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1358); + lookahead == 'e') ADVANCE(1078); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1602); + lookahead == '|') ADVANCE(1610); END_STATE(); case 1167: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1509); + lookahead == 'e') ADVANCE(1478); + if (lookahead == 'L' || + lookahead == 'l') ADVANCE(1383); + if (lookahead == 'W' || + lookahead == 'w') ADVANCE(998); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1602); + lookahead == '|') ADVANCE(1610); END_STATE(); case 1168: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1469); + lookahead == 'e') ADVANCE(1478); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1602); + lookahead == '|') ADVANCE(1610); END_STATE(); case 1169: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1512); + lookahead == 'e') ADVANCE(1444); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1602); + lookahead == '|') ADVANCE(1610); END_STATE(); case 1170: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1426); + lookahead == 'e') ADVANCE(1365); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1602); + lookahead == '|') ADVANCE(1610); END_STATE(); case 1171: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1545); + lookahead == 'e') ADVANCE(1516); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1602); + lookahead == '|') ADVANCE(1610); END_STATE(); case 1172: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1429); + lookahead == 'e') ADVANCE(1476); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1602); + lookahead == '|') ADVANCE(1610); END_STATE(); case 1173: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1430); + lookahead == 'e') ADVANCE(1519); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1602); + lookahead == '|') ADVANCE(1610); END_STATE(); case 1174: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1528); + lookahead == 'e') ADVANCE(1433); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1602); + lookahead == '|') ADVANCE(1610); END_STATE(); case 1175: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1444); + lookahead == 'e') ADVANCE(1553); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1602); + lookahead == '|') ADVANCE(1610); END_STATE(); case 1176: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1317); + lookahead == 'e') ADVANCE(1436); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1602); + lookahead == '|') ADVANCE(1610); END_STATE(); case 1177: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1299); + lookahead == 'e') ADVANCE(1437); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1602); + lookahead == '|') ADVANCE(1610); END_STATE(); case 1178: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1065); + lookahead == 'e') ADVANCE(1536); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1602); + lookahead == '|') ADVANCE(1610); END_STATE(); case 1179: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1496); + lookahead == 'e') ADVANCE(1451); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1602); + lookahead == '|') ADVANCE(1610); END_STATE(); case 1180: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1453); + lookahead == 'e') ADVANCE(1324); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1602); + lookahead == '|') ADVANCE(1610); END_STATE(); case 1181: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1344); + lookahead == 'e') ADVANCE(1306); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1602); + lookahead == '|') ADVANCE(1610); END_STATE(); case 1182: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1458); + lookahead == 'e') ADVANCE(1069); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1602); + lookahead == '|') ADVANCE(1610); END_STATE(); case 1183: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(922); + lookahead == 'e') ADVANCE(1503); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1602); + lookahead == '|') ADVANCE(1610); END_STATE(); case 1184: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1321); + lookahead == 'e') ADVANCE(1460); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1602); + lookahead == '|') ADVANCE(1610); END_STATE(); case 1185: ACCEPT_TOKEN(sym_identifier); @@ -16325,3874 +16441,3950 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1602); + lookahead == '|') ADVANCE(1610); END_STATE(); case 1186: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1000); + lookahead == 'e') ADVANCE(1465); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1602); + lookahead == '|') ADVANCE(1610); END_STATE(); case 1187: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1357); + lookahead == 'e') ADVANCE(926); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1602); + lookahead == '|') ADVANCE(1610); END_STATE(); case 1188: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1461); + lookahead == 'e') ADVANCE(1328); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1602); + lookahead == '|') ADVANCE(1610); END_STATE(); case 1189: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1454); + lookahead == 'e') ADVANCE(1358); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1602); + lookahead == '|') ADVANCE(1610); END_STATE(); case 1190: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(930); + lookahead == 'e') ADVANCE(1004); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1602); + lookahead == '|') ADVANCE(1610); END_STATE(); case 1191: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(934); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1338); + lookahead == 'e') ADVANCE(1364); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1602); + lookahead == '|') ADVANCE(1610); END_STATE(); case 1192: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1472); + lookahead == 'e') ADVANCE(1468); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1602); + lookahead == '|') ADVANCE(1610); END_STATE(); case 1193: ACCEPT_TOKEN(sym_identifier); - 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 == 'E' || + lookahead == 'e') ADVANCE(1461); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1602); + lookahead == '|') ADVANCE(1610); END_STATE(); case 1194: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'F' || - lookahead == 'f') ADVANCE(1775); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(934); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1602); + lookahead == '|') ADVANCE(1610); END_STATE(); case 1195: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'F' || - lookahead == 'f') ADVANCE(1664); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(938); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(1345); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1602); + lookahead == '|') ADVANCE(1610); END_STATE(); case 1196: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'F' || - lookahead == 'f') ADVANCE(1201); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(1479); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1602); + lookahead == '|') ADVANCE(1610); END_STATE(); case 1197: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'F' || - lookahead == 'f') ADVANCE(1020); + lookahead == 'f') ADVANCE(1784); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(1755); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(1230); + if (lookahead == 'U' || + lookahead == 'u') ADVANCE(1529); + if (lookahead == 'V' || + lookahead == 'v') ADVANCE(1156); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1602); + lookahead == '|') ADVANCE(1610); END_STATE(); case 1198: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'F' || - lookahead == 'f') ADVANCE(1251); + lookahead == 'f') ADVANCE(1784); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1602); + lookahead == '|') ADVANCE(1610); END_STATE(); case 1199: ACCEPT_TOKEN(sym_identifier); 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); + lookahead == 'f') ADVANCE(1672); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1602); + lookahead == '|') ADVANCE(1610); END_STATE(); case 1200: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'F' || - lookahead == 'f') ADVANCE(1394); + lookahead == 'f') ADVANCE(1205); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1602); + lookahead == '|') ADVANCE(1610); END_STATE(); case 1201: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'F' || - lookahead == 'f') ADVANCE(1170); + lookahead == 'f') ADVANCE(1024); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1602); + lookahead == '|') ADVANCE(1610); END_STATE(); case 1202: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'F' || - lookahead == 'f') ADVANCE(1188); + lookahead == 'f') ADVANCE(1257); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1602); + lookahead == '|') ADVANCE(1610); END_STATE(); case 1203: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'F' || - lookahead == 'f') ADVANCE(1202); + lookahead == 'f') ADVANCE(1172); + if (lookahead == 'L' || + lookahead == 'l') ADVANCE(1028); + if (lookahead == 'P' || + lookahead == 'p') ADVANCE(1190); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(1442); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1602); + lookahead == '|') ADVANCE(1610); END_STATE(); case 1204: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'F' || - lookahead == 'f') ADVANCE(1546); + lookahead == 'f') ADVANCE(1401); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1602); + lookahead == '|') ADVANCE(1610); END_STATE(); case 1205: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'G' || - lookahead == 'g') ADVANCE(1711); + if (lookahead == 'F' || + lookahead == 'f') ADVANCE(1174); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1602); + lookahead == '|') ADVANCE(1610); END_STATE(); case 1206: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'G' || - lookahead == 'g') ADVANCE(1238); + if (lookahead == 'F' || + lookahead == 'f') ADVANCE(1192); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1602); + lookahead == '|') ADVANCE(1610); END_STATE(); case 1207: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'G' || - lookahead == 'g') ADVANCE(1347); + if (lookahead == 'F' || + lookahead == 'f') ADVANCE(1206); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1602); + lookahead == '|') ADVANCE(1610); END_STATE(); case 1208: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'G' || - lookahead == 'g') ADVANCE(1102); - if (lookahead == 'R' || - lookahead == 'r') ADVANCE(1009); + if (lookahead == 'F' || + lookahead == 'f') ADVANCE(1554); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1602); + lookahead == '|') ADVANCE(1610); END_STATE(); case 1209: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'G' || - lookahead == 'g') ADVANCE(1167); + lookahead == 'g') ADVANCE(1720); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1602); + lookahead == '|') ADVANCE(1610); END_STATE(); case 1210: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'G' || - lookahead == 'g') ADVANCE(1111); + lookahead == 'g') ADVANCE(1244); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1602); + lookahead == '|') ADVANCE(1610); END_STATE(); case 1211: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'G' || - lookahead == 'g') ADVANCE(1174); + lookahead == 'g') ADVANCE(1354); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1602); + lookahead == '|') ADVANCE(1610); END_STATE(); case 1212: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'G' || - lookahead == 'g') ADVANCE(1123); + lookahead == 'g') ADVANCE(1106); + if (lookahead == 'R' || + lookahead == 'r') ADVANCE(1012); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1602); + lookahead == '|') ADVANCE(1610); END_STATE(); case 1213: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'G' || - lookahead == 'g') ADVANCE(1161); + lookahead == 'g') ADVANCE(1171); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1602); + lookahead == '|') ADVANCE(1610); END_STATE(); case 1214: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'H' || - lookahead == 'h') ADVANCE(1772); + if (lookahead == 'G' || + lookahead == 'g') ADVANCE(1115); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1602); + lookahead == '|') ADVANCE(1610); END_STATE(); case 1215: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'H' || - lookahead == 'h') ADVANCE(1777); + if (lookahead == 'G' || + lookahead == 'g') ADVANCE(1178); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1602); + lookahead == '|') ADVANCE(1610); END_STATE(); case 1216: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'H' || - lookahead == 'h') ADVANCE(1714); + if (lookahead == 'G' || + lookahead == 'g') ADVANCE(1127); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1602); + lookahead == '|') ADVANCE(1610); END_STATE(); case 1217: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'H' || - lookahead == 'h') ADVANCE(1370); + if (lookahead == 'G' || + lookahead == 'g') ADVANCE(1165); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1602); + lookahead == '|') ADVANCE(1610); END_STATE(); case 1218: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'H' || - lookahead == 'h') ADVANCE(1098); - if (lookahead == 'O' || - lookahead == 'o') ADVANCE(1443); + lookahead == 'h') ADVANCE(1781); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1602); + lookahead == '|') ADVANCE(1610); END_STATE(); case 1219: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'H' || - lookahead == 'h') ADVANCE(1103); + lookahead == 'h') ADVANCE(1696); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1602); + lookahead == '|') ADVANCE(1610); END_STATE(); case 1220: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'H' || - lookahead == 'h') ADVANCE(1253); + lookahead == 'h') ADVANCE(1786); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1602); + lookahead == '|') ADVANCE(1610); END_STATE(); case 1221: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'H' || - lookahead == 'h') ADVANCE(1147); + lookahead == 'h') ADVANCE(1723); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1602); + lookahead == '|') ADVANCE(1610); END_STATE(); case 1222: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'H' || - lookahead == 'h') ADVANCE(1002); + lookahead == 'h') ADVANCE(1377); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1602); + lookahead == '|') ADVANCE(1610); END_STATE(); case 1223: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'H' || - lookahead == 'h') ADVANCE(1379); + lookahead == 'h') ADVANCE(1102); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(1528); + if (lookahead == 'O' || + lookahead == 'o') ADVANCE(1450); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1602); + lookahead == '|') ADVANCE(1610); END_STATE(); case 1224: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'H' || - lookahead == 'h') ADVANCE(1165); + lookahead == 'h') ADVANCE(1107); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1602); + lookahead == '|') ADVANCE(1610); END_STATE(); case 1225: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'H' || - lookahead == 'h') ADVANCE(1182); + lookahead == 'h') ADVANCE(1260); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(1528); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1602); + lookahead == '|') ADVANCE(1610); END_STATE(); case 1226: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'H' || - lookahead == 'h') ADVANCE(1189); + lookahead == 'h') ADVANCE(1260); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1602); + lookahead == '|') ADVANCE(1610); END_STATE(); case 1227: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'H' || - lookahead == 'h') ADVANCE(1022); + lookahead == 'h') ADVANCE(1151); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1602); + lookahead == '|') ADVANCE(1610); END_STATE(); case 1228: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'I' || - 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 == 'H' || + lookahead == 'h') ADVANCE(1006); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1602); + lookahead == '|') ADVANCE(1610); END_STATE(); case 1229: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1316); - if (lookahead == 'O' || - lookahead == 'o') ADVANCE(1052); + if (lookahead == 'H' || + lookahead == 'h') ADVANCE(1386); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1602); + lookahead == '|') ADVANCE(1610); END_STATE(); case 1230: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1601); + if (lookahead == 'H' || + lookahead == 'h') ADVANCE(1169); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1602); + lookahead == '|') ADVANCE(1610); END_STATE(); case 1231: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1580); - if (lookahead == 'O' || - lookahead == 'o') ADVANCE(1529); + if (lookahead == 'H' || + lookahead == 'h') ADVANCE(1186); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1602); + lookahead == '|') ADVANCE(1610); END_STATE(); case 1232: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1600); + if (lookahead == 'H' || + lookahead == 'h') ADVANCE(1193); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1602); + lookahead == '|') ADVANCE(1610); END_STATE(); case 1233: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1069); + if (lookahead == 'H' || + lookahead == 'h') ADVANCE(1026); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1602); + lookahead == '|') ADVANCE(1610); END_STATE(); case 1234: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1311); + lookahead == 'i') ADVANCE(1100); + if (lookahead == 'O' || + lookahead == 'o') ADVANCE(1429); + if (lookahead == 'R' || + lookahead == 'r') ADVANCE(983); + if (lookahead == 'U' || + lookahead == 'u') ADVANCE(1344); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1602); + lookahead == '|') ADVANCE(1610); END_STATE(); case 1235: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1043); + lookahead == 'i') ADVANCE(1323); + if (lookahead == 'O' || + lookahead == 'o') ADVANCE(1056); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1602); + lookahead == '|') ADVANCE(1610); END_STATE(); case 1236: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1338); + lookahead == 'i') ADVANCE(1609); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1602); + lookahead == '|') ADVANCE(1610); END_STATE(); case 1237: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1044); + lookahead == 'i') ADVANCE(1588); + if (lookahead == 'O' || + lookahead == 'o') ADVANCE(1537); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1602); + lookahead == '|') ADVANCE(1610); END_STATE(); case 1238: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1342); + lookahead == 'i') ADVANCE(1608); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1602); + lookahead == '|') ADVANCE(1610); END_STATE(); case 1239: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1011); + lookahead == 'i') ADVANCE(1073); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1602); + lookahead == '|') ADVANCE(1610); END_STATE(); case 1240: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1085); + lookahead == 'i') ADVANCE(1318); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1602); + lookahead == '|') ADVANCE(1610); END_STATE(); case 1241: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1386); + lookahead == 'i') ADVANCE(1047); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1602); + lookahead == '|') ADVANCE(1610); END_STATE(); case 1242: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1360); - if (lookahead == 'W' || - lookahead == 'w') ADVANCE(1240); + lookahead == 'i') ADVANCE(1345); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1602); + lookahead == '|') ADVANCE(1610); END_STATE(); case 1243: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1360); + lookahead == 'i') ADVANCE(1048); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1602); + lookahead == '|') ADVANCE(1610); END_STATE(); case 1244: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1348); + lookahead == 'i') ADVANCE(1349); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1602); + lookahead == '|') ADVANCE(1610); END_STATE(); case 1245: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1339); + lookahead == 'i') ADVANCE(1014); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1602); + lookahead == '|') ADVANCE(1610); END_STATE(); case 1246: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1510); + lookahead == 'i') ADVANCE(1089); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1602); + lookahead == '|') ADVANCE(1610); END_STATE(); case 1247: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1427); + lookahead == 'i') ADVANCE(1393); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1602); + lookahead == '|') ADVANCE(1610); END_STATE(); case 1248: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1514); + lookahead == 'i') ADVANCE(1367); + if (lookahead == 'W' || + lookahead == 'w') ADVANCE(1246); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1602); + lookahead == '|') ADVANCE(1610); END_STATE(); case 1249: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1462); + lookahead == 'i') ADVANCE(1367); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1602); + lookahead == '|') ADVANCE(1610); END_STATE(); case 1250: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1154); + lookahead == 'i') ADVANCE(1355); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1602); + lookahead == '|') ADVANCE(1610); END_STATE(); case 1251: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1177); + lookahead == 'i') ADVANCE(1346); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1602); + lookahead == '|') ADVANCE(1610); END_STATE(); case 1252: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1578); + lookahead == 'i') ADVANCE(1517); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1602); + lookahead == '|') ADVANCE(1610); END_STATE(); case 1253: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1294); + lookahead == 'i') ADVANCE(1434); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1602); + lookahead == '|') ADVANCE(1610); END_STATE(); case 1254: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1081); + lookahead == 'i') ADVANCE(1521); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1602); + lookahead == '|') ADVANCE(1610); END_STATE(); case 1255: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1364); - if (lookahead == 'O' || - lookahead == 'o') ADVANCE(1422); - if (lookahead == 'U' || - lookahead == 'u') ADVANCE(1337); + lookahead == 'i') ADVANCE(1469); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1602); + lookahead == '|') ADVANCE(1610); END_STATE(); case 1256: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1387); + lookahead == 'i') ADVANCE(1158); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1602); + lookahead == '|') ADVANCE(1610); END_STATE(); case 1257: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1097); - if (lookahead == 'R' || - lookahead == 'r') ADVANCE(980); + lookahead == 'i') ADVANCE(1181); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1602); + lookahead == '|') ADVANCE(1610); END_STATE(); case 1258: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1097); + lookahead == 'i') ADVANCE(1528); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1602); + lookahead == '|') ADVANCE(1610); END_STATE(); case 1259: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1494); + lookahead == 'i') ADVANCE(1586); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1602); + lookahead == '|') ADVANCE(1610); END_STATE(); case 1260: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1340); + lookahead == 'i') ADVANCE(1301); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1602); + lookahead == '|') ADVANCE(1610); END_STATE(); case 1261: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1388); + lookahead == 'i') ADVANCE(1085); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1602); + lookahead == '|') ADVANCE(1610); END_STATE(); case 1262: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1390); + lookahead == 'i') ADVANCE(1371); + if (lookahead == 'O' || + lookahead == 'o') ADVANCE(1429); + if (lookahead == 'U' || + lookahead == 'u') ADVANCE(1344); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1602); + lookahead == '|') ADVANCE(1610); END_STATE(); case 1263: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1391); + lookahead == 'i') ADVANCE(1394); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1602); + lookahead == '|') ADVANCE(1610); END_STATE(); case 1264: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1318); + lookahead == 'i') ADVANCE(1101); + if (lookahead == 'R' || + lookahead == 'r') ADVANCE(984); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1602); + lookahead == '|') ADVANCE(1610); END_STATE(); case 1265: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1363); + lookahead == 'i') ADVANCE(1101); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1602); + lookahead == '|') ADVANCE(1610); END_STATE(); case 1266: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1319); + lookahead == 'i') ADVANCE(1501); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1602); + lookahead == '|') ADVANCE(1610); END_STATE(); case 1267: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1320); + lookahead == 'i') ADVANCE(1347); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1602); + lookahead == '|') ADVANCE(1610); END_STATE(); case 1268: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'K' || - lookahead == 'k') ADVANCE(1770); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(1395); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1602); + lookahead == '|') ADVANCE(1610); END_STATE(); case 1269: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'K' || - lookahead == 'k') ADVANCE(1765); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(1397); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1602); + lookahead == '|') ADVANCE(1610); END_STATE(); case 1270: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'K' || - lookahead == 'k') ADVANCE(1766); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(1398); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1602); + lookahead == '|') ADVANCE(1610); END_STATE(); case 1271: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'K' || - lookahead == 'k') ADVANCE(1767); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(1325); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1602); + lookahead == '|') ADVANCE(1610); END_STATE(); case 1272: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'K' || - lookahead == 'k') ADVANCE(1099); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(1370); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1602); + lookahead == '|') ADVANCE(1610); END_STATE(); case 1273: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'L' || - lookahead == 'l') ADVANCE(1301); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1498); - if (lookahead == 'U' || - lookahead == 'u') ADVANCE(1343); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(1326); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1602); + lookahead == '|') ADVANCE(1610); END_STATE(); case 1274: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'L' || - lookahead == 'l') ADVANCE(1649); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(1327); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1602); + lookahead == '|') ADVANCE(1610); END_STATE(); case 1275: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'L' || - lookahead == 'l') ADVANCE(1706); + if (lookahead == 'K' || + lookahead == 'k') ADVANCE(1779); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1602); + lookahead == '|') ADVANCE(1610); END_STATE(); case 1276: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'L' || - lookahead == 'l') ADVANCE(1654); + if (lookahead == 'K' || + lookahead == 'k') ADVANCE(1774); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1602); + lookahead == '|') ADVANCE(1610); END_STATE(); case 1277: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'L' || - lookahead == 'l') ADVANCE(1788); + if (lookahead == 'K' || + lookahead == 'k') ADVANCE(1775); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1602); + lookahead == '|') ADVANCE(1610); END_STATE(); case 1278: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'L' || - lookahead == 'l') ADVANCE(1650); + if (lookahead == 'K' || + lookahead == 'k') ADVANCE(1776); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1602); + lookahead == '|') ADVANCE(1610); END_STATE(); case 1279: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'L' || - lookahead == 'l') ADVANCE(1718); + if (lookahead == 'K' || + lookahead == 'k') ADVANCE(1103); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1602); + lookahead == '|') ADVANCE(1610); END_STATE(); case 1280: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'L' || - lookahead == 'l') ADVANCE(1783); + lookahead == 'l') ADVANCE(1308); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(1505); + if (lookahead == 'U' || + lookahead == 'u') ADVANCE(1350); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1602); + lookahead == '|') ADVANCE(1610); END_STATE(); case 1281: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'L' || - lookahead == 'l') ADVANCE(1488); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1068); + lookahead == 'l') ADVANCE(1657); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1602); + lookahead == '|') ADVANCE(1610); END_STATE(); case 1282: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'L' || - lookahead == 'l') ADVANCE(1488); + lookahead == 'l') ADVANCE(1715); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1602); + lookahead == '|') ADVANCE(1610); END_STATE(); case 1283: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'L' || - lookahead == 'l') ADVANCE(1557); + lookahead == 'l') ADVANCE(1662); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1602); + lookahead == '|') ADVANCE(1610); END_STATE(); case 1284: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'L' || - lookahead == 'l') ADVANCE(1598); + lookahead == 'l') ADVANCE(1797); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1602); + lookahead == '|') ADVANCE(1610); END_STATE(); case 1285: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'L' || - lookahead == 'l') ADVANCE(1070); + lookahead == 'l') ADVANCE(1658); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1602); + lookahead == '|') ADVANCE(1610); END_STATE(); case 1286: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'L' || - lookahead == 'l') ADVANCE(1599); + lookahead == 'l') ADVANCE(1727); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1602); + lookahead == '|') ADVANCE(1610); END_STATE(); case 1287: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'L' || - lookahead == 'l') ADVANCE(1230); + lookahead == 'l') ADVANCE(1792); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1602); + lookahead == '|') ADVANCE(1610); END_STATE(); case 1288: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'L' || - lookahead == 'l') ADVANCE(1380); + lookahead == 'l') ADVANCE(1495); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(1072); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1602); + lookahead == '|') ADVANCE(1610); END_STATE(); case 1289: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'L' || - lookahead == 'l') ADVANCE(1381); + lookahead == 'l') ADVANCE(1495); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1602); + lookahead == '|') ADVANCE(1610); END_STATE(); case 1290: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'L' || - lookahead == 'l') ADVANCE(1184); + lookahead == 'l') ADVANCE(1565); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1602); + lookahead == '|') ADVANCE(1610); END_STATE(); case 1291: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'L' || - lookahead == 'l') ADVANCE(1286); + lookahead == 'l') ADVANCE(1606); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1602); + lookahead == '|') ADVANCE(1610); END_STATE(); case 1292: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'L' || - lookahead == 'l') ADVANCE(984); + lookahead == 'l') ADVANCE(1074); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1602); + lookahead == '|') ADVANCE(1610); END_STATE(); case 1293: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'L' || - lookahead == 'l') ADVANCE(982); + lookahead == 'l') ADVANCE(1607); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1602); + lookahead == '|') ADVANCE(1610); END_STATE(); case 1294: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'L' || - lookahead == 'l') ADVANCE(1107); + lookahead == 'l') ADVANCE(1236); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1602); + lookahead == '|') ADVANCE(1610); END_STATE(); case 1295: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'L' || - lookahead == 'l') ADVANCE(1116); + lookahead == 'l') ADVANCE(1387); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1602); + lookahead == '|') ADVANCE(1610); END_STATE(); case 1296: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'L' || - lookahead == 'l') ADVANCE(1122); + lookahead == 'l') ADVANCE(1388); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1602); + lookahead == '|') ADVANCE(1610); END_STATE(); case 1297: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'L' || - lookahead == 'l') ADVANCE(1125); + lookahead == 'l') ADVANCE(1188); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1602); + lookahead == '|') ADVANCE(1610); END_STATE(); case 1298: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'L' || - lookahead == 'l') ADVANCE(1126); + lookahead == 'l') ADVANCE(1293); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1602); + lookahead == '|') ADVANCE(1610); END_STATE(); case 1299: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'L' || - lookahead == 'l') ADVANCE(1079); + lookahead == 'l') ADVANCE(988); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1602); + lookahead == '|') ADVANCE(1610); END_STATE(); case 1300: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'L' || - lookahead == 'l') ADVANCE(1237); + lookahead == 'l') ADVANCE(986); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1602); + lookahead == '|') ADVANCE(1610); END_STATE(); case 1301: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'L' || - lookahead == 'l') ADVANCE(997); - if (lookahead == 'U' || - lookahead == 'u') ADVANCE(1312); + lookahead == 'l') ADVANCE(1111); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1602); + lookahead == '|') ADVANCE(1610); END_STATE(); case 1302: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'L' || - lookahead == 'l') ADVANCE(1026); + lookahead == 'l') ADVANCE(1120); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1602); + lookahead == '|') ADVANCE(1610); END_STATE(); case 1303: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'M' || - lookahead == 'm') ADVANCE(1712); + if (lookahead == 'L' || + lookahead == 'l') ADVANCE(1126); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1602); + lookahead == '|') ADVANCE(1610); END_STATE(); case 1304: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'M' || - lookahead == 'm') ADVANCE(1723); + if (lookahead == 'L' || + lookahead == 'l') ADVANCE(1129); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1602); + lookahead == '|') ADVANCE(1610); END_STATE(); case 1305: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'M' || - lookahead == 'm') ADVANCE(1781); + if (lookahead == 'L' || + lookahead == 'l') ADVANCE(1130); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1602); + lookahead == '|') ADVANCE(1610); END_STATE(); case 1306: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'M' || - lookahead == 'm') ADVANCE(1782); + if (lookahead == 'L' || + lookahead == 'l') ADVANCE(1083); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1602); + lookahead == '|') ADVANCE(1610); END_STATE(); case 1307: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'M' || - lookahead == 'm') ADVANCE(1786); + if (lookahead == 'L' || + lookahead == 'l') ADVANCE(1243); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1602); + lookahead == '|') ADVANCE(1610); END_STATE(); case 1308: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'M' || - lookahead == 'm') ADVANCE(1787); + if (lookahead == 'L' || + lookahead == 'l') ADVANCE(1001); + if (lookahead == 'U' || + lookahead == 'u') ADVANCE(1319); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1602); + lookahead == '|') ADVANCE(1610); END_STATE(); case 1309: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'M' || - lookahead == 'm') ADVANCE(1405); + if (lookahead == 'L' || + lookahead == 'l') ADVANCE(1030); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1602); + lookahead == '|') ADVANCE(1610); END_STATE(); case 1310: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'M' || - lookahead == 'm') ADVANCE(918); + lookahead == 'm') ADVANCE(1721); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1602); + lookahead == '|') ADVANCE(1610); END_STATE(); case 1311: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'M' || - lookahead == 'm') ADVANCE(1556); + lookahead == 'm') ADVANCE(1732); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1602); + lookahead == '|') ADVANCE(1610); END_STATE(); case 1312: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'M' || - lookahead == 'm') ADVANCE(1346); + lookahead == 'm') ADVANCE(1790); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1602); + lookahead == '|') ADVANCE(1610); END_STATE(); case 1313: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'M' || - lookahead == 'm') ADVANCE(1105); + lookahead == 'm') ADVANCE(1791); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1602); + lookahead == '|') ADVANCE(1610); END_STATE(); case 1314: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'M' || - lookahead == 'm') ADVANCE(1171); + lookahead == 'm') ADVANCE(1795); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1602); + lookahead == '|') ADVANCE(1610); END_STATE(); case 1315: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'M' || - lookahead == 'm') ADVANCE(1179); + lookahead == 'm') ADVANCE(1796); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1602); + lookahead == '|') ADVANCE(1610); END_STATE(); case 1316: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'M' || - lookahead == 'm') ADVANCE(1003); - if (lookahead == 'V' || - lookahead == 'v') ADVANCE(1013); + lookahead == 'm') ADVANCE(1412); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1602); + lookahead == '|') ADVANCE(1610); END_STATE(); case 1317: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'M' || - lookahead == 'm') ADVANCE(1408); + lookahead == 'm') ADVANCE(922); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1602); + lookahead == '|') ADVANCE(1610); END_STATE(); case 1318: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'M' || - lookahead == 'm') ADVANCE(1559); + lookahead == 'm') ADVANCE(1564); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1602); + lookahead == '|') ADVANCE(1610); END_STATE(); case 1319: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'M' || - lookahead == 'm') ADVANCE(1560); + lookahead == 'm') ADVANCE(1353); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1602); + lookahead == '|') ADVANCE(1610); END_STATE(); case 1320: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'M' || - lookahead == 'm') ADVANCE(1561); + lookahead == 'm') ADVANCE(1109); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1602); + lookahead == '|') ADVANCE(1610); END_STATE(); case 1321: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'M' || - lookahead == 'm') ADVANCE(1187); + lookahead == 'm') ADVANCE(1175); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1602); + lookahead == '|') ADVANCE(1610); END_STATE(); case 1322: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'M' || - lookahead == 'm') ADVANCE(1027); + lookahead == 'm') ADVANCE(1183); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1602); + lookahead == '|') ADVANCE(1610); END_STATE(); case 1323: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1068); + if (lookahead == 'M' || + lookahead == 'm') ADVANCE(1007); + if (lookahead == 'V' || + lookahead == 'v') ADVANCE(1016); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1602); + lookahead == '|') ADVANCE(1610); END_STATE(); case 1324: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1746); - if (lookahead == 'U' || - lookahead == 'u') ADVANCE(1521); + if (lookahead == 'M' || + lookahead == 'm') ADVANCE(1415); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1602); + lookahead == '|') ADVANCE(1610); END_STATE(); case 1325: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1746); + if (lookahead == 'M' || + lookahead == 'm') ADVANCE(1567); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1602); + lookahead == '|') ADVANCE(1610); END_STATE(); case 1326: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1032); - if (lookahead == 'S' || - lookahead == 's') ADVANCE(1144); + if (lookahead == 'M' || + lookahead == 'm') ADVANCE(1568); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1602); + lookahead == '|') ADVANCE(1610); END_STATE(); case 1327: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(998); + if (lookahead == 'M' || + lookahead == 'm') ADVANCE(1569); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1602); + lookahead == '|') ADVANCE(1610); END_STATE(); case 1328: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1684); + if (lookahead == 'M' || + lookahead == 'm') ADVANCE(1191); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1602); + lookahead == '|') ADVANCE(1610); END_STATE(); case 1329: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1762); - if (lookahead == 'R' || - lookahead == 'r') ADVANCE(1106); + if (lookahead == 'M' || + lookahead == 'm') ADVANCE(1031); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1602); + lookahead == '|') ADVANCE(1610); END_STATE(); case 1330: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1691); + lookahead == 'n') ADVANCE(1072); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1602); + lookahead == '|') ADVANCE(1610); END_STATE(); case 1331: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1693); + lookahead == 'n') ADVANCE(1755); + if (lookahead == 'U' || + lookahead == 'u') ADVANCE(1529); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1602); + lookahead == '|') ADVANCE(1610); END_STATE(); case 1332: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1758); + lookahead == 'n') ADVANCE(1755); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1602); + lookahead == '|') ADVANCE(1610); END_STATE(); case 1333: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1709); + lookahead == 'n') ADVANCE(1036); + if (lookahead == 'S' || + lookahead == 's') ADVANCE(1148); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1602); + lookahead == '|') ADVANCE(1610); END_STATE(); case 1334: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1676); + lookahead == 'n') ADVANCE(1002); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1602); + lookahead == '|') ADVANCE(1610); END_STATE(); case 1335: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1415); + lookahead == 'n') ADVANCE(1692); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1602); + lookahead == '|') ADVANCE(1610); END_STATE(); case 1336: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1690); + lookahead == 'n') ADVANCE(1771); + if (lookahead == 'R' || + lookahead == 'r') ADVANCE(1110); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1602); + lookahead == '|') ADVANCE(1610); END_STATE(); case 1337: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1063); + lookahead == 'n') ADVANCE(1700); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1602); + lookahead == '|') ADVANCE(1610); END_STATE(); case 1338: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1205); + lookahead == 'n') ADVANCE(1702); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1602); + lookahead == '|') ADVANCE(1610); END_STATE(); case 1339: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1200); + lookahead == 'n') ADVANCE(1767); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1602); + lookahead == '|') ADVANCE(1610); END_STATE(); case 1340: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(989); + lookahead == 'n') ADVANCE(1718); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1602); + lookahead == '|') ADVANCE(1610); END_STATE(); case 1341: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1497); + lookahead == 'n') ADVANCE(1684); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1602); + lookahead == '|') ADVANCE(1610); END_STATE(); case 1342: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1475); + lookahead == 'n') ADVANCE(1422); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1602); + lookahead == '|') ADVANCE(1610); END_STATE(); case 1343: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1502); + lookahead == 'n') ADVANCE(1699); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1602); + lookahead == '|') ADVANCE(1610); END_STATE(); case 1344: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1503); + lookahead == 'n') ADVANCE(1067); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1602); + lookahead == '|') ADVANCE(1610); END_STATE(); case 1345: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1072); + lookahead == 'n') ADVANCE(1209); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1602); + lookahead == '|') ADVANCE(1610); END_STATE(); case 1346: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(924); + lookahead == 'n') ADVANCE(1204); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1602); + lookahead == '|') ADVANCE(1610); END_STATE(); case 1347: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(996); + lookahead == 'n') ADVANCE(993); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1602); + lookahead == '|') ADVANCE(1610); END_STATE(); case 1348: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1477); + lookahead == 'n') ADVANCE(1504); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1602); + lookahead == '|') ADVANCE(1610); END_STATE(); case 1349: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(919); + lookahead == 'n') ADVANCE(1482); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1602); + lookahead == '|') ADVANCE(1610); END_STATE(); case 1350: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1284); + lookahead == 'n') ADVANCE(1509); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1602); + lookahead == '|') ADVANCE(1610); END_STATE(); case 1351: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1506); + lookahead == 'n') ADVANCE(1510); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1602); + lookahead == '|') ADVANCE(1610); END_STATE(); case 1352: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1086); + lookahead == 'n') ADVANCE(1076); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1602); + lookahead == '|') ADVANCE(1610); END_STATE(); case 1353: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1076); - if (lookahead == 'S' || - lookahead == 's') ADVANCE(1236); + lookahead == 'n') ADVANCE(928); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1602); + lookahead == '|') ADVANCE(1610); END_STATE(); case 1354: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1076); + lookahead == 'n') ADVANCE(1000); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1602); + lookahead == '|') ADVANCE(1610); END_STATE(); case 1355: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1109); + lookahead == 'n') ADVANCE(1484); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1602); + lookahead == '|') ADVANCE(1610); END_STATE(); case 1356: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1515); + lookahead == 'n') ADVANCE(923); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1602); + lookahead == '|') ADVANCE(1610); END_STATE(); case 1357: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1526); + lookahead == 'n') ADVANCE(1291); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1602); + lookahead == '|') ADVANCE(1610); END_STATE(); case 1358: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1059); + lookahead == 'n') ADVANCE(1513); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1602); + lookahead == '|') ADVANCE(1610); END_STATE(); case 1359: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1418); + lookahead == 'n') ADVANCE(1090); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1602); + lookahead == '|') ADVANCE(1610); END_STATE(); case 1360: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1082); + lookahead == 'n') ADVANCE(1080); + if (lookahead == 'S' || + lookahead == 's') ADVANCE(1242); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1602); + lookahead == '|') ADVANCE(1610); END_STATE(); case 1361: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1416); + lookahead == 'n') ADVANCE(1080); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1602); + lookahead == '|') ADVANCE(1610); END_STATE(); case 1362: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1527); + lookahead == 'n') ADVANCE(1113); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1602); + lookahead == '|') ADVANCE(1610); END_STATE(); case 1363: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1083); + lookahead == 'n') ADVANCE(1522); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1602); + lookahead == '|') ADVANCE(1610); END_STATE(); case 1364: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(999); + lookahead == 'n') ADVANCE(1534); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1602); + lookahead == '|') ADVANCE(1610); END_STATE(); case 1365: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1084); + lookahead == 'n') ADVANCE(1063); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1602); + lookahead == '|') ADVANCE(1610); END_STATE(); case 1366: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1264); + lookahead == 'n') ADVANCE(1425); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1602); + lookahead == '|') ADVANCE(1610); END_STATE(); case 1367: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1267); + lookahead == 'n') ADVANCE(1086); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1602); + lookahead == '|') ADVANCE(1610); END_STATE(); case 1368: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'O' || - lookahead == 'o') ADVANCE(1760); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(1423); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1602); + lookahead == '|') ADVANCE(1610); END_STATE(); case 1369: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'O' || - lookahead == 'o') ADVANCE(1233); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(1535); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1602); + lookahead == '|') ADVANCE(1610); END_STATE(); case 1370: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'O' || - lookahead == 'o') ADVANCE(1728); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(1087); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1602); + lookahead == '|') ADVANCE(1610); END_STATE(); case 1371: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'O' || - lookahead == 'o') ADVANCE(1748); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(1003); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1602); + lookahead == '|') ADVANCE(1610); END_STATE(); case 1372: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'O' || - lookahead == 'o') ADVANCE(1422); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(1088); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1602); + lookahead == '|') ADVANCE(1610); END_STATE(); case 1373: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'O' || - lookahead == 'o') ADVANCE(1583); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(1271); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1602); + lookahead == '|') ADVANCE(1610); END_STATE(); case 1374: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'O' || - lookahead == 'o') ADVANCE(1038); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(1274); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1602); + lookahead == '|') ADVANCE(1610); END_STATE(); case 1375: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'O' || - lookahead == 'o') ADVANCE(1080); + lookahead == 'o') ADVANCE(1769); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1602); + lookahead == '|') ADVANCE(1610); END_STATE(); case 1376: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'O' || - lookahead == 'o') ADVANCE(1046); + lookahead == 'o') ADVANCE(1239); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1602); + lookahead == '|') ADVANCE(1610); END_STATE(); case 1377: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'O' || - lookahead == 'o') ADVANCE(1410); + lookahead == 'o') ADVANCE(1737); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1602); + lookahead == '|') ADVANCE(1610); END_STATE(); case 1378: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'O' || - lookahead == 'o') ADVANCE(1572); + lookahead == 'o') ADVANCE(1757); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1602); + lookahead == '|') ADVANCE(1610); END_STATE(); case 1379: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'O' || - lookahead == 'o') ADVANCE(1071); + lookahead == 'o') ADVANCE(1429); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1602); + lookahead == '|') ADVANCE(1610); END_STATE(); case 1380: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'O' || - lookahead == 'o') ADVANCE(1048); + lookahead == 'o') ADVANCE(1591); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1602); + lookahead == '|') ADVANCE(1610); END_STATE(); case 1381: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'O' || - lookahead == 'o') ADVANCE(1050); + lookahead == 'o') ADVANCE(1042); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1602); + lookahead == '|') ADVANCE(1610); END_STATE(); case 1382: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'O' || - lookahead == 'o') ADVANCE(1279); + lookahead == 'o') ADVANCE(1084); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1602); + lookahead == '|') ADVANCE(1610); END_STATE(); case 1383: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'O' || - lookahead == 'o') ADVANCE(1425); + lookahead == 'o') ADVANCE(1050); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1602); + lookahead == '|') ADVANCE(1610); END_STATE(); case 1384: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'O' || - lookahead == 'o') ADVANCE(933); + lookahead == 'o') ADVANCE(1417); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1602); + lookahead == '|') ADVANCE(1610); END_STATE(); case 1385: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'O' || - lookahead == 'o') ADVANCE(1382); + lookahead == 'o') ADVANCE(1580); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1602); + lookahead == '|') ADVANCE(1610); END_STATE(); case 1386: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'O' || - lookahead == 'o') ADVANCE(1331); + lookahead == 'o') ADVANCE(1075); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1602); + lookahead == '|') ADVANCE(1610); END_STATE(); case 1387: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'O' || - lookahead == 'o') ADVANCE(1349); + lookahead == 'o') ADVANCE(1052); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1602); + lookahead == '|') ADVANCE(1610); END_STATE(); case 1388: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'O' || - lookahead == 'o') ADVANCE(1332); + lookahead == 'o') ADVANCE(1053); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1602); + lookahead == '|') ADVANCE(1610); END_STATE(); case 1389: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'O' || - lookahead == 'o') ADVANCE(1350); + lookahead == 'o') ADVANCE(1286); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1602); + lookahead == '|') ADVANCE(1610); END_STATE(); case 1390: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'O' || - lookahead == 'o') ADVANCE(1333); + lookahead == 'o') ADVANCE(1432); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1602); + lookahead == '|') ADVANCE(1610); END_STATE(); case 1391: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'O' || - lookahead == 'o') ADVANCE(1334); + lookahead == 'o') ADVANCE(937); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1602); + lookahead == '|') ADVANCE(1610); END_STATE(); case 1392: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'O' || - lookahead == 'o') ADVANCE(1428); + lookahead == 'o') ADVANCE(1389); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1602); + lookahead == '|') ADVANCE(1610); END_STATE(); case 1393: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'O' || - lookahead == 'o') ADVANCE(1431); + lookahead == 'o') ADVANCE(1338); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1602); + lookahead == '|') ADVANCE(1610); END_STATE(); case 1394: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'O' || - lookahead == 'o') ADVANCE(1447); + lookahead == 'o') ADVANCE(1356); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1602); + lookahead == '|') ADVANCE(1610); END_STATE(); case 1395: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'O' || - lookahead == 'o') ADVANCE(1362); + lookahead == 'o') ADVANCE(1339); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1602); + lookahead == '|') ADVANCE(1610); END_STATE(); case 1396: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'O' || - lookahead == 'o') ADVANCE(1555); + lookahead == 'o') ADVANCE(1357); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1602); + lookahead == '|') ADVANCE(1610); END_STATE(); case 1397: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'O' || - lookahead == 'o') ADVANCE(1543); + lookahead == 'o') ADVANCE(1340); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1602); + lookahead == '|') ADVANCE(1610); END_STATE(); case 1398: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'O' || - lookahead == 'o') ADVANCE(1412); + lookahead == 'o') ADVANCE(1341); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1602); + lookahead == '|') ADVANCE(1610); END_STATE(); case 1399: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'O' || - lookahead == 'o') ADVANCE(1053); + lookahead == 'o') ADVANCE(1435); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1602); + lookahead == '|') ADVANCE(1610); END_STATE(); case 1400: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'O' || - lookahead == 'o') ADVANCE(1569); + lookahead == 'o') ADVANCE(1438); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1602); + lookahead == '|') ADVANCE(1610); END_STATE(); case 1401: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'O' || - lookahead == 'o') ADVANCE(1575); + lookahead == 'o') ADVANCE(1454); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1602); + lookahead == '|') ADVANCE(1610); END_STATE(); case 1402: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'O' || - lookahead == 'o') ADVANCE(1544); + lookahead == 'o') ADVANCE(1369); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1602); + lookahead == '|') ADVANCE(1610); END_STATE(); case 1403: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'P' || - lookahead == 'p') ADVANCE(1730); - if (lookahead == 'T' || - lookahead == 't') ADVANCE(1064); - if (lookahead == 'X' || - lookahead == 'x') ADVANCE(1234); + if (lookahead == 'O' || + lookahead == 'o') ADVANCE(1563); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1602); + lookahead == '|') ADVANCE(1610); END_STATE(); case 1404: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'P' || - lookahead == 'p') ADVANCE(1755); + if (lookahead == 'O' || + lookahead == 'o') ADVANCE(1551); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1602); + lookahead == '|') ADVANCE(1610); END_STATE(); case 1405: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'P' || - lookahead == 'p') ADVANCE(1290); + if (lookahead == 'O' || + lookahead == 'o') ADVANCE(1419); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1602); + lookahead == '|') ADVANCE(1610); END_STATE(); case 1406: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'P' || - lookahead == 'p') ADVANCE(1562); + if (lookahead == 'O' || + lookahead == 'o') ADVANCE(1057); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1602); + lookahead == '|') ADVANCE(1610); END_STATE(); case 1407: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'P' || - lookahead == 'p') ADVANCE(931); + if (lookahead == 'O' || + lookahead == 'o') ADVANCE(1577); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1602); + lookahead == '|') ADVANCE(1610); END_STATE(); case 1408: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'P' || - lookahead == 'p') ADVANCE(926); + if (lookahead == 'O' || + lookahead == 'o') ADVANCE(1583); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1602); + lookahead == '|') ADVANCE(1610); END_STATE(); case 1409: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'P' || - lookahead == 'p') ADVANCE(1505); + if (lookahead == 'O' || + lookahead == 'o') ADVANCE(1552); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1602); + lookahead == '|') ADVANCE(1610); END_STATE(); case 1410: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'P' || - lookahead == 'p') ADVANCE(1250); + lookahead == 'p') ADVANCE(1739); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(1068); + if (lookahead == 'X' || + lookahead == 'x') ADVANCE(1240); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1602); + lookahead == '|') ADVANCE(1610); END_STATE(); case 1411: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'P' || - lookahead == 'p') ADVANCE(1385); + lookahead == 'p') ADVANCE(1764); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1602); + lookahead == '|') ADVANCE(1610); END_STATE(); case 1412: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'P' || - lookahead == 'p') ADVANCE(925); + lookahead == 'p') ADVANCE(1297); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1602); + lookahead == '|') ADVANCE(1610); END_STATE(); case 1413: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'P' || - lookahead == 'p') ADVANCE(1117); + lookahead == 'p') ADVANCE(1570); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1602); + lookahead == '|') ADVANCE(1610); END_STATE(); case 1414: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'P' || - lookahead == 'p') ADVANCE(1150); + lookahead == 'p') ADVANCE(935); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1602); + lookahead == '|') ADVANCE(1610); END_STATE(); case 1415: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'P' || - lookahead == 'p') ADVANCE(1564); - if (lookahead == 'T' || - lookahead == 't') ADVANCE(1175); + lookahead == 'p') ADVANCE(930); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1602); + lookahead == '|') ADVANCE(1610); END_STATE(); case 1416: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'P' || - lookahead == 'p') ADVANCE(1564); + lookahead == 'p') ADVANCE(1512); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1602); + lookahead == '|') ADVANCE(1610); END_STATE(); case 1417: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'P' || - lookahead == 'p') ADVANCE(1186); - if (lookahead == 'T' || - lookahead == 't') ADVANCE(1566); + lookahead == 'p') ADVANCE(1256); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1602); + lookahead == '|') ADVANCE(1610); END_STATE(); case 1418: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'P' || - lookahead == 'p') ADVANCE(1565); + lookahead == 'p') ADVANCE(1392); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1602); + lookahead == '|') ADVANCE(1610); END_STATE(); case 1419: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'P' || - lookahead == 'p') ADVANCE(1567); + lookahead == 'p') ADVANCE(929); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1602); + lookahead == '|') ADVANCE(1610); END_STATE(); case 1420: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'Q' || - lookahead == 'q') ADVANCE(1637); + if (lookahead == 'P' || + lookahead == 'p') ADVANCE(1121); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1602); + lookahead == '|') ADVANCE(1610); END_STATE(); case 1421: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'Q' || - lookahead == 'q') ADVANCE(1563); + if (lookahead == 'P' || + lookahead == 'p') ADVANCE(1154); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1602); + lookahead == '|') ADVANCE(1610); END_STATE(); case 1422: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'R' || - lookahead == 'r') ADVANCE(1671); + if (lookahead == 'P' || + lookahead == 'p') ADVANCE(1572); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(1179); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1602); + lookahead == '|') ADVANCE(1610); END_STATE(); case 1423: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'R' || - lookahead == 'r') ADVANCE(1666); + if (lookahead == 'P' || + lookahead == 'p') ADVANCE(1572); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1602); + lookahead == '|') ADVANCE(1610); END_STATE(); case 1424: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'R' || - lookahead == 'r') ADVANCE(1593); + if (lookahead == 'P' || + lookahead == 'p') ADVANCE(1190); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(1574); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1602); + lookahead == '|') ADVANCE(1610); END_STATE(); case 1425: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'R' || - lookahead == 'r') ADVANCE(1747); + if (lookahead == 'P' || + lookahead == 'p') ADVANCE(1573); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1602); + lookahead == '|') ADVANCE(1610); END_STATE(); case 1426: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'R' || - lookahead == 'r') ADVANCE(1670); + if (lookahead == 'P' || + lookahead == 'p') ADVANCE(1575); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1602); + lookahead == '|') ADVANCE(1610); END_STATE(); case 1427: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'R' || - lookahead == 'r') ADVANCE(1726); + if (lookahead == 'Q' || + lookahead == 'q') ADVANCE(1645); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1602); + lookahead == '|') ADVANCE(1610); END_STATE(); case 1428: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'R' || - lookahead == 'r') ADVANCE(1683); + if (lookahead == 'Q' || + lookahead == 'q') ADVANCE(1571); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1602); + lookahead == '|') ADVANCE(1610); END_STATE(); case 1429: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'R' || - lookahead == 'r') ADVANCE(1692); + lookahead == 'r') ADVANCE(1679); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1602); + lookahead == '|') ADVANCE(1610); END_STATE(); case 1430: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'R' || - lookahead == 'r') ADVANCE(1757); + lookahead == 'r') ADVANCE(1674); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1602); + lookahead == '|') ADVANCE(1610); END_STATE(); case 1431: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'R' || - lookahead == 'r') ADVANCE(1715); + lookahead == 'r') ADVANCE(1601); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1602); + lookahead == '|') ADVANCE(1610); END_STATE(); case 1432: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'R' || - lookahead == 'r') ADVANCE(1135); - if (lookahead == 'Y' || - lookahead == 'y') ADVANCE(1771); + lookahead == 'r') ADVANCE(1756); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1602); + lookahead == '|') ADVANCE(1610); END_STATE(); case 1433: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'R' || - lookahead == 'r') ADVANCE(992); + lookahead == 'r') ADVANCE(1678); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1602); + lookahead == '|') ADVANCE(1610); END_STATE(); case 1434: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'R' || - lookahead == 'r') ADVANCE(1231); - if (lookahead == 'U' || - lookahead == 'u') ADVANCE(1034); + lookahead == 'r') ADVANCE(1735); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1602); + lookahead == '|') ADVANCE(1610); END_STATE(); case 1435: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'R' || - lookahead == 'r') ADVANCE(1594); - if (lookahead == 'U' || - lookahead == 'u') ADVANCE(1449); + lookahead == 'r') ADVANCE(1691); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1602); + lookahead == '|') ADVANCE(1610); END_STATE(); case 1436: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'R' || - lookahead == 'r') ADVANCE(1209); + lookahead == 'r') ADVANCE(1701); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1602); + lookahead == '|') ADVANCE(1610); END_STATE(); case 1437: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'R' || - lookahead == 'r') ADVANCE(1584); + lookahead == 'r') ADVANCE(1766); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1602); + lookahead == '|') ADVANCE(1610); END_STATE(); case 1438: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'R' || - lookahead == 'r') ADVANCE(1595); + lookahead == 'r') ADVANCE(1724); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1602); + lookahead == '|') ADVANCE(1610); END_STATE(); case 1439: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'R' || - lookahead == 'r') ADVANCE(1056); + lookahead == 'r') ADVANCE(1139); + if (lookahead == 'Y' || + lookahead == 'y') ADVANCE(1780); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1602); + lookahead == '|') ADVANCE(1610); END_STATE(); case 1440: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'R' || - lookahead == 'r') ADVANCE(1383); + lookahead == 'r') ADVANCE(996); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1602); + lookahead == '|') ADVANCE(1610); END_STATE(); case 1441: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'R' || - lookahead == 'r') ADVANCE(1239); - if (lookahead == 'T' || - lookahead == 't') ADVANCE(1702); + lookahead == 'r') ADVANCE(1237); + if (lookahead == 'U' || + lookahead == 'u') ADVANCE(1038); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1602); + lookahead == '|') ADVANCE(1610); END_STATE(); case 1442: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'R' || - lookahead == 'r') ADVANCE(1596); + lookahead == 'r') ADVANCE(1602); + if (lookahead == 'U' || + lookahead == 'u') ADVANCE(1456); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1602); + lookahead == '|') ADVANCE(1610); END_STATE(); case 1443: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'R' || - lookahead == 'r') ADVANCE(1078); + lookahead == 'r') ADVANCE(1213); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1602); + lookahead == '|') ADVANCE(1610); END_STATE(); case 1444: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'R' || - lookahead == 'r') ADVANCE(1197); + lookahead == 'r') ADVANCE(1592); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1602); + lookahead == '|') ADVANCE(1610); END_STATE(); case 1445: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'R' || - lookahead == 'r') ADVANCE(1571); + lookahead == 'r') ADVANCE(1603); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1602); + lookahead == '|') ADVANCE(1610); END_STATE(); case 1446: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'R' || - lookahead == 'r') ADVANCE(1132); + lookahead == 'r') ADVANCE(1060); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1602); + lookahead == '|') ADVANCE(1610); END_STATE(); case 1447: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'R' || - lookahead == 'r') ADVANCE(1322); + lookahead == 'r') ADVANCE(1390); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1602); + lookahead == '|') ADVANCE(1610); END_STATE(); case 1448: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'R' || - lookahead == 'r') ADVANCE(1010); + lookahead == 'r') ADVANCE(1245); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(1711); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1602); + lookahead == '|') ADVANCE(1610); END_STATE(); case 1449: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'R' || - lookahead == 'r') ADVANCE(1330); + lookahead == 'r') ADVANCE(1604); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1602); + lookahead == '|') ADVANCE(1610); END_STATE(); case 1450: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'R' || - lookahead == 'r') ADVANCE(1015); + lookahead == 'r') ADVANCE(1082); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1602); + lookahead == '|') ADVANCE(1610); END_STATE(); case 1451: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'R' || - lookahead == 'r') ADVANCE(1463); + lookahead == 'r') ADVANCE(1201); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1602); + lookahead == '|') ADVANCE(1610); END_STATE(); case 1452: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'R' || - lookahead == 'r') ADVANCE(1399); + lookahead == 'r') ADVANCE(1579); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1602); + lookahead == '|') ADVANCE(1610); END_STATE(); case 1453: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'R' || - lookahead == 'r') ADVANCE(1511); + lookahead == 'r') ADVANCE(1136); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1602); + lookahead == '|') ADVANCE(1610); END_STATE(); case 1454: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'R' || - lookahead == 'r') ADVANCE(1106); + lookahead == 'r') ADVANCE(1329); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1602); + lookahead == '|') ADVANCE(1610); END_STATE(); case 1455: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'R' || - lookahead == 'r') ADVANCE(1524); + lookahead == 'r') ADVANCE(1013); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1602); + lookahead == '|') ADVANCE(1610); END_STATE(); case 1456: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'R' || - lookahead == 'r') ADVANCE(1336); + lookahead == 'r') ADVANCE(1337); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1602); + lookahead == '|') ADVANCE(1610); END_STATE(); case 1457: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'R' || - lookahead == 'r') ADVANCE(1149); - if (lookahead == 'S' || - lookahead == 's') ADVANCE(1400); + lookahead == 'r') ADVANCE(1019); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1602); + lookahead == '|') ADVANCE(1610); END_STATE(); case 1458: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'R' || - lookahead == 'r') ADVANCE(1114); + lookahead == 'r') ADVANCE(1470); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1602); + lookahead == '|') ADVANCE(1610); END_STATE(); case 1459: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'R' || - lookahead == 'r') ADVANCE(1118); + lookahead == 'r') ADVANCE(1406); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1602); + lookahead == '|') ADVANCE(1610); END_STATE(); case 1460: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'R' || - lookahead == 'r') ADVANCE(1121); + lookahead == 'r') ADVANCE(1518); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1602); + lookahead == '|') ADVANCE(1610); END_STATE(); case 1461: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'R' || - lookahead == 'r') ADVANCE(1162); + lookahead == 'r') ADVANCE(1110); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1602); + lookahead == '|') ADVANCE(1610); END_STATE(); case 1462: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'R' || - lookahead == 'r') ADVANCE(1489); + lookahead == 'r') ADVANCE(1531); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1602); + lookahead == '|') ADVANCE(1610); END_STATE(); case 1463: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'R' || - lookahead == 'r') ADVANCE(1254); + lookahead == 'r') ADVANCE(1343); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1602); + lookahead == '|') ADVANCE(1610); END_STATE(); case 1464: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'R' || - lookahead == 'r') ADVANCE(1392); + lookahead == 'r') ADVANCE(1153); + if (lookahead == 'S' || + lookahead == 's') ADVANCE(1407); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1602); + lookahead == '|') ADVANCE(1610); END_STATE(); case 1465: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'R' || - lookahead == 'r') ADVANCE(1530); + lookahead == 'r') ADVANCE(1118); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1602); + lookahead == '|') ADVANCE(1610); END_STATE(); case 1466: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'R' || - lookahead == 'r') ADVANCE(980); + lookahead == 'r') ADVANCE(1122); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1602); + lookahead == '|') ADVANCE(1610); END_STATE(); case 1467: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'R' || - lookahead == 'r') ADVANCE(1012); + lookahead == 'r') ADVANCE(1125); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1602); + lookahead == '|') ADVANCE(1610); END_STATE(); case 1468: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'R' || - lookahead == 'r') ADVANCE(1183); + lookahead == 'r') ADVANCE(1166); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1602); + lookahead == '|') ADVANCE(1610); END_STATE(); case 1469: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'R' || - lookahead == 'r') ADVANCE(1166); + lookahead == 'r') ADVANCE(1496); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1602); + lookahead == '|') ADVANCE(1610); END_STATE(); case 1470: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'R' || - lookahead == 'r') ADVANCE(1060); + lookahead == 'r') ADVANCE(1261); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1602); + lookahead == '|') ADVANCE(1610); END_STATE(); case 1471: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'R' || - lookahead == 'r') ADVANCE(1464); + lookahead == 'r') ADVANCE(1399); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1602); + lookahead == '|') ADVANCE(1610); END_STATE(); case 1472: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'R' || - lookahead == 'r') ADVANCE(1017); + lookahead == 'r') ADVANCE(1538); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1602); + lookahead == '|') ADVANCE(1610); END_STATE(); case 1473: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'S' || - lookahead == 's') ADVANCE(1668); + if (lookahead == 'R' || + lookahead == 'r') ADVANCE(984); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1602); + lookahead == '|') ADVANCE(1610); END_STATE(); case 1474: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'S' || - lookahead == 's') ADVANCE(1646); + if (lookahead == 'R' || + lookahead == 'r') ADVANCE(1015); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1602); + lookahead == '|') ADVANCE(1610); END_STATE(); case 1475: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'S' || - lookahead == 's') ADVANCE(1641); + if (lookahead == 'R' || + lookahead == 'r') ADVANCE(1187); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1602); + lookahead == '|') ADVANCE(1610); END_STATE(); case 1476: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'S' || - lookahead == 's') ADVANCE(1642); + if (lookahead == 'R' || + lookahead == 'r') ADVANCE(1170); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1602); + lookahead == '|') ADVANCE(1610); END_STATE(); case 1477: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'S' || - lookahead == 's') ADVANCE(1643); + if (lookahead == 'R' || + lookahead == 'r') ADVANCE(1064); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1602); + lookahead == '|') ADVANCE(1610); END_STATE(); case 1478: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'S' || - lookahead == 's') ADVANCE(1737); + if (lookahead == 'R' || + lookahead == 'r') ADVANCE(1471); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1602); + lookahead == '|') ADVANCE(1610); END_STATE(); case 1479: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'S' || - lookahead == 's') ADVANCE(1717); + if (lookahead == 'R' || + lookahead == 'r') ADVANCE(1021); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1602); + lookahead == '|') ADVANCE(1610); END_STATE(); case 1480: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'S' || - lookahead == 's') ADVANCE(1742); + lookahead == 's') ADVANCE(1676); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1602); + lookahead == '|') ADVANCE(1610); END_STATE(); case 1481: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'S' || - lookahead == 's') ADVANCE(1710); + lookahead == 's') ADVANCE(1654); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1602); + lookahead == '|') ADVANCE(1610); END_STATE(); case 1482: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'S' || - lookahead == 's') ADVANCE(1500); + lookahead == 's') ADVANCE(1649); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1602); + lookahead == '|') ADVANCE(1610); END_STATE(); case 1483: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'S' || - lookahead == 's') ADVANCE(1474); + lookahead == 's') ADVANCE(1650); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1602); + lookahead == '|') ADVANCE(1610); END_STATE(); case 1484: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'S' || - lookahead == 's') ADVANCE(1054); + lookahead == 's') ADVANCE(1651); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1602); + lookahead == '|') ADVANCE(1610); END_STATE(); case 1485: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'S' || - lookahead == 's') ADVANCE(1541); + lookahead == 's') ADVANCE(1746); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1602); + lookahead == '|') ADVANCE(1610); END_STATE(); case 1486: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'S' || - lookahead == 's') ADVANCE(1100); - if (lookahead == 'T' || - lookahead == 't') ADVANCE(1049); + lookahead == 's') ADVANCE(1726); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1602); + lookahead == '|') ADVANCE(1610); END_STATE(); case 1487: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'S' || - lookahead == 's') ADVANCE(1100); + lookahead == 's') ADVANCE(1751); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1602); + lookahead == '|') ADVANCE(1610); END_STATE(); case 1488: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'S' || - lookahead == 's') ADVANCE(1101); + lookahead == 's') ADVANCE(1719); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1602); + lookahead == '|') ADVANCE(1610); END_STATE(); case 1489: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'S' || - lookahead == 's') ADVANCE(1504); + lookahead == 's') ADVANCE(1507); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1602); + lookahead == '|') ADVANCE(1610); END_STATE(); case 1490: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'S' || - lookahead == 's') ADVANCE(1252); + lookahead == 's') ADVANCE(1481); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1602); + lookahead == '|') ADVANCE(1610); END_STATE(); case 1491: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'S' || - lookahead == 's') ADVANCE(1232); + lookahead == 's') ADVANCE(1058); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1602); + lookahead == '|') ADVANCE(1610); END_STATE(); case 1492: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'S' || - lookahead == 's') ADVANCE(1104); + lookahead == 's') ADVANCE(1549); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1602); + lookahead == '|') ADVANCE(1610); END_STATE(); case 1493: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'S' || - lookahead == 's') ADVANCE(1169); + lookahead == 's') ADVANCE(1104); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(1054); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1602); + lookahead == '|') ADVANCE(1610); END_STATE(); case 1494: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'S' || - lookahead == 's') ADVANCE(1119); + lookahead == 's') ADVANCE(1104); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1602); + lookahead == '|') ADVANCE(1610); END_STATE(); case 1495: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'S' || - lookahead == 's') ADVANCE(1191); + lookahead == 's') ADVANCE(1105); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1602); + lookahead == '|') ADVANCE(1610); END_STATE(); case 1496: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'S' || - lookahead == 's') ADVANCE(1499); + lookahead == 's') ADVANCE(1511); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1602); + lookahead == '|') ADVANCE(1610); END_STATE(); case 1497: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'S' || - lookahead == 's') ADVANCE(1028); + lookahead == 's') ADVANCE(1259); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1602); + lookahead == '|') ADVANCE(1610); END_STATE(); case 1498: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'S' || - lookahead == 's') ADVANCE(1531); - if (lookahead == 'T' || - lookahead == 't') ADVANCE(1008); - if (lookahead == 'V' || - lookahead == 'v') ADVANCE(1180); + lookahead == 's') ADVANCE(1238); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1602); + lookahead == '|') ADVANCE(1610); END_STATE(); case 1499: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'S' || - lookahead == 's') ADVANCE(1019); + lookahead == 's') ADVANCE(1108); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1602); + lookahead == '|') ADVANCE(1610); END_STATE(); case 1500: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'T' || - lookahead == 't') ADVANCE(1774); + if (lookahead == 'S' || + lookahead == 's') ADVANCE(1173); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1602); + lookahead == '|') ADVANCE(1610); END_STATE(); case 1501: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'T' || - lookahead == 't') ADVANCE(1756); + if (lookahead == 'S' || + lookahead == 's') ADVANCE(1123); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1602); + lookahead == '|') ADVANCE(1610); END_STATE(); case 1502: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'T' || - lookahead == 't') ADVANCE(1780); + if (lookahead == 'S' || + lookahead == 's') ADVANCE(1195); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1602); + lookahead == '|') ADVANCE(1610); END_STATE(); case 1503: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'T' || - lookahead == 't') ADVANCE(1704); + if (lookahead == 'S' || + lookahead == 's') ADVANCE(1506); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1602); + lookahead == '|') ADVANCE(1610); END_STATE(); case 1504: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'T' || - lookahead == 't') ADVANCE(1773); + if (lookahead == 'S' || + lookahead == 's') ADVANCE(1032); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1602); + lookahead == '|') ADVANCE(1610); END_STATE(); case 1505: ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'S' || + lookahead == 's') ADVANCE(1539); if (lookahead == 'T' || - lookahead == 't') ADVANCE(1679); + lookahead == 't') ADVANCE(1011); + if (lookahead == 'V' || + lookahead == 'v') ADVANCE(1184); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1602); + lookahead == '|') ADVANCE(1610); END_STATE(); case 1506: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'T' || - lookahead == 't') ADVANCE(1700); + if (lookahead == 'S' || + lookahead == 's') ADVANCE(1023); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1602); + lookahead == '|') ADVANCE(1610); END_STATE(); case 1507: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'T' || - lookahead == 't') ADVANCE(1681); + lookahead == 't') ADVANCE(1783); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1602); + lookahead == '|') ADVANCE(1610); END_STATE(); case 1508: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'T' || - lookahead == 't') ADVANCE(1688); + lookahead == 't') ADVANCE(1765); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1602); + lookahead == '|') ADVANCE(1610); END_STATE(); case 1509: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'T' || - lookahead == 't') ADVANCE(1735); + lookahead == 't') ADVANCE(1789); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1602); + lookahead == '|') ADVANCE(1610); END_STATE(); case 1510: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'T' || - lookahead == 't') ADVANCE(1768); + lookahead == 't') ADVANCE(1713); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1602); + lookahead == '|') ADVANCE(1610); END_STATE(); case 1511: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'T' || - lookahead == 't') ADVANCE(1734); + lookahead == 't') ADVANCE(1782); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1602); + lookahead == '|') ADVANCE(1610); END_STATE(); case 1512: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'T' || - lookahead == 't') ADVANCE(1694); + lookahead == 't') ADVANCE(1687); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1602); + lookahead == '|') ADVANCE(1610); END_STATE(); case 1513: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'T' || - lookahead == 't') ADVANCE(1698); + lookahead == 't') ADVANCE(1709); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1602); + lookahead == '|') ADVANCE(1610); END_STATE(); case 1514: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'T' || - lookahead == 't') ADVANCE(1740); + lookahead == 't') ADVANCE(1689); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1602); + lookahead == '|') ADVANCE(1610); END_STATE(); case 1515: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'T' || - lookahead == 't') ADVANCE(1785); + lookahead == 't') ADVANCE(1697); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1602); + lookahead == '|') ADVANCE(1610); END_STATE(); case 1516: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'T' || - lookahead == 't') ADVANCE(1621); + lookahead == 't') ADVANCE(1744); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1602); + lookahead == '|') ADVANCE(1610); END_STATE(); case 1517: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'T' || - lookahead == 't') ADVANCE(1622); + lookahead == 't') ADVANCE(1777); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1602); + lookahead == '|') ADVANCE(1610); END_STATE(); case 1518: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'T' || - lookahead == 't') ADVANCE(1682); + lookahead == 't') ADVANCE(1743); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1602); + lookahead == '|') ADVANCE(1610); END_STATE(); case 1519: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'T' || - lookahead == 't') ADVANCE(1750); + lookahead == 't') ADVANCE(1703); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1602); + lookahead == '|') ADVANCE(1610); END_STATE(); case 1520: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'T' || - lookahead == 't') ADVANCE(973); + lookahead == 't') ADVANCE(1707); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1602); + lookahead == '|') ADVANCE(1610); END_STATE(); case 1521: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'T' || - lookahead == 't') ADVANCE(1406); + lookahead == 't') ADVANCE(1749); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1602); + lookahead == '|') ADVANCE(1610); END_STATE(); case 1522: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'T' || - lookahead == 't') ADVANCE(1216); + lookahead == 't') ADVANCE(1794); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1602); + lookahead == '|') ADVANCE(1610); END_STATE(); case 1523: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'T' || - lookahead == 't') ADVANCE(1235); + lookahead == 't') ADVANCE(1629); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1602); + lookahead == '|') ADVANCE(1610); END_STATE(); case 1524: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'T' || - lookahead == 't') ADVANCE(1597); + lookahead == 't') ADVANCE(1630); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1602); + lookahead == '|') ADVANCE(1610); END_STATE(); case 1525: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'T' || - lookahead == 't') ADVANCE(1241); + lookahead == 't') ADVANCE(1690); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1602); + lookahead == '|') ADVANCE(1610); END_STATE(); case 1526: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'T' || - lookahead == 't') ADVANCE(1479); + lookahead == 't') ADVANCE(1759); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1602); + lookahead == '|') ADVANCE(1610); END_STATE(); case 1527: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'T' || - lookahead == 't') ADVANCE(1008); + lookahead == 't') ADVANCE(977); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1602); + lookahead == '|') ADVANCE(1610); END_STATE(); case 1528: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'T' || - lookahead == 't') ADVANCE(923); + lookahead == 't') ADVANCE(1219); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1602); + lookahead == '|') ADVANCE(1610); END_STATE(); case 1529: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'T' || - lookahead == 't') ADVANCE(1178); + lookahead == 't') ADVANCE(1413); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1602); + lookahead == '|') ADVANCE(1610); END_STATE(); case 1530: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'T' || - lookahead == 't') ADVANCE(1467); + lookahead == 't') ADVANCE(1241); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1602); + lookahead == '|') ADVANCE(1610); END_STATE(); case 1531: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'T' || - lookahead == 't') ADVANCE(1445); + lookahead == 't') ADVANCE(1605); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1602); + lookahead == '|') ADVANCE(1610); END_STATE(); case 1532: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'T' || - lookahead == 't') ADVANCE(1398); + lookahead == 't') ADVANCE(1221); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1602); + lookahead == '|') ADVANCE(1610); END_STATE(); case 1533: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'T' || - lookahead == 't') ADVANCE(1018); + lookahead == 't') ADVANCE(1247); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1602); + lookahead == '|') ADVANCE(1610); END_STATE(); case 1534: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'T' || - lookahead == 't') ADVANCE(1112); + lookahead == 't') ADVANCE(1486); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1602); + lookahead == '|') ADVANCE(1610); END_STATE(); case 1535: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'T' || - lookahead == 't') ADVANCE(1113); + lookahead == 't') ADVANCE(1011); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1602); + lookahead == '|') ADVANCE(1610); END_STATE(); case 1536: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'T' || - lookahead == 't') ADVANCE(1159); + lookahead == 't') ADVANCE(927); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1602); + lookahead == '|') ADVANCE(1610); END_STATE(); case 1537: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'T' || - lookahead == 't') ADVANCE(1064); + lookahead == 't') ADVANCE(1182); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1602); + lookahead == '|') ADVANCE(1610); END_STATE(); case 1538: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'T' || - lookahead == 't') ADVANCE(1223); + lookahead == 't') ADVANCE(1474); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1602); + lookahead == '|') ADVANCE(1610); END_STATE(); case 1539: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'T' || - lookahead == 't') ADVANCE(1570); + lookahead == 't') ADVANCE(1452); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1602); + lookahead == '|') ADVANCE(1610); END_STATE(); case 1540: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'T' || - lookahead == 't') ADVANCE(987); + lookahead == 't') ADVANCE(1405); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1602); + lookahead == '|') ADVANCE(1610); END_STATE(); case 1541: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'T' || - lookahead == 't') ADVANCE(1450); + lookahead == 't') ADVANCE(1022); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1602); + lookahead == '|') ADVANCE(1610); END_STATE(); case 1542: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'T' || - lookahead == 't') ADVANCE(1393); + lookahead == 't') ADVANCE(1116); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1602); + lookahead == '|') ADVANCE(1610); END_STATE(); case 1543: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'T' || - lookahead == 't') ADVANCE(995); + lookahead == 't') ADVANCE(1117); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1602); + lookahead == '|') ADVANCE(1610); END_STATE(); case 1544: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'T' || - lookahead == 't') ADVANCE(1001); + lookahead == 't') ADVANCE(1163); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1602); + lookahead == '|') ADVANCE(1610); END_STATE(); case 1545: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'T' || - lookahead == 't') ADVANCE(1172); + lookahead == 't') ADVANCE(1068); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1602); + lookahead == '|') ADVANCE(1610); END_STATE(); case 1546: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'T' || - lookahead == 't') ADVANCE(1173); + lookahead == 't') ADVANCE(1229); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1602); + lookahead == '|') ADVANCE(1610); END_STATE(); case 1547: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'T' || - lookahead == 't') ADVANCE(1256); + lookahead == 't') ADVANCE(1578); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1602); + lookahead == '|') ADVANCE(1610); END_STATE(); case 1548: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'T' || - lookahead == 't') ADVANCE(1419); + lookahead == 't') ADVANCE(991); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1602); + lookahead == '|') ADVANCE(1610); END_STATE(); case 1549: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'T' || - lookahead == 't') ADVANCE(1261); + lookahead == 't') ADVANCE(1457); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1602); + lookahead == '|') ADVANCE(1610); END_STATE(); case 1550: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'T' || - lookahead == 't') ADVANCE(1262); + lookahead == 't') ADVANCE(1400); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1602); + lookahead == '|') ADVANCE(1610); END_STATE(); case 1551: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'T' || - lookahead == 't') ADVANCE(1263); + lookahead == 't') ADVANCE(999); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1602); + lookahead == '|') ADVANCE(1610); END_STATE(); case 1552: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'T' || - lookahead == 't') ADVANCE(1023); + lookahead == 't') ADVANCE(1005); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1602); + lookahead == '|') ADVANCE(1610); END_STATE(); case 1553: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'U' || - lookahead == 'u') ADVANCE(1155); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(1176); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1602); + lookahead == '|') ADVANCE(1610); END_STATE(); case 1554: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'U' || - lookahead == 'u') ADVANCE(1521); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(1177); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1602); + lookahead == '|') ADVANCE(1610); END_STATE(); case 1555: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'U' || - lookahead == 'u') ADVANCE(1343); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(1263); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1602); + lookahead == '|') ADVANCE(1610); END_STATE(); case 1556: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'U' || - lookahead == 'u') ADVANCE(1305); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(1426); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1602); + lookahead == '|') ADVANCE(1610); END_STATE(); case 1557: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'U' || - lookahead == 'u') ADVANCE(1490); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(1268); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1602); + lookahead == '|') ADVANCE(1610); END_STATE(); case 1558: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'U' || - lookahead == 'u') ADVANCE(1439); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(1269); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1602); + lookahead == '|') ADVANCE(1610); END_STATE(); case 1559: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'U' || - lookahead == 'u') ADVANCE(1306); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(1270); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1602); + lookahead == '|') ADVANCE(1610); END_STATE(); case 1560: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'U' || - lookahead == 'u') ADVANCE(1307); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(1027); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1602); + lookahead == '|') ADVANCE(1610); END_STATE(); case 1561: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'U' || - lookahead == 'u') ADVANCE(1308); + lookahead == 'u') ADVANCE(1159); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1602); + lookahead == '|') ADVANCE(1610); END_STATE(); case 1562: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'U' || - lookahead == 'u') ADVANCE(1507); + lookahead == 'u') ADVANCE(1529); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1602); + lookahead == '|') ADVANCE(1610); END_STATE(); case 1563: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'U' || - lookahead == 'u') ADVANCE(1110); + lookahead == 'u') ADVANCE(1350); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1602); + lookahead == '|') ADVANCE(1610); END_STATE(); case 1564: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'U' || - lookahead == 'u') ADVANCE(1516); + lookahead == 'u') ADVANCE(1312); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1602); + lookahead == '|') ADVANCE(1610); END_STATE(); case 1565: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'U' || - lookahead == 'u') ADVANCE(1517); + lookahead == 'u') ADVANCE(1497); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1602); + lookahead == '|') ADVANCE(1610); END_STATE(); case 1566: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'U' || - lookahead == 'u') ADVANCE(1456); + lookahead == 'u') ADVANCE(1446); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1602); + lookahead == '|') ADVANCE(1610); END_STATE(); case 1567: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'U' || - lookahead == 'u') ADVANCE(1518); + lookahead == 'u') ADVANCE(1313); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1602); + lookahead == '|') ADVANCE(1610); END_STATE(); case 1568: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'U' || - lookahead == 'u') ADVANCE(1035); + lookahead == 'u') ADVANCE(1314); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1602); + lookahead == '|') ADVANCE(1610); END_STATE(); case 1569: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'U' || - lookahead == 'u') ADVANCE(1470); + lookahead == 'u') ADVANCE(1315); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1602); + lookahead == '|') ADVANCE(1610); END_STATE(); case 1570: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'U' || - lookahead == 'u') ADVANCE(1459); + lookahead == 'u') ADVANCE(1514); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1602); + lookahead == '|') ADVANCE(1610); END_STATE(); case 1571: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'U' || - lookahead == 'u') ADVANCE(1058); + lookahead == 'u') ADVANCE(1114); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1602); + lookahead == '|') ADVANCE(1610); END_STATE(); case 1572: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'U' || - lookahead == 'u') ADVANCE(1356); + lookahead == 'u') ADVANCE(1523); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1602); + lookahead == '|') ADVANCE(1610); END_STATE(); case 1573: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'U' || - lookahead == 'u') ADVANCE(1460); + lookahead == 'u') ADVANCE(1524); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1602); + lookahead == '|') ADVANCE(1610); END_STATE(); case 1574: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'U' || - lookahead == 'u') ADVANCE(1156); + lookahead == 'u') ADVANCE(1463); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1602); + lookahead == '|') ADVANCE(1610); END_STATE(); case 1575: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'U' || - lookahead == 'u') ADVANCE(1548); + lookahead == 'u') ADVANCE(1525); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1602); + lookahead == '|') ADVANCE(1610); END_STATE(); case 1576: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'U' || - lookahead == 'u') ADVANCE(1203); + lookahead == 'u') ADVANCE(1039); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1602); + lookahead == '|') ADVANCE(1610); END_STATE(); case 1577: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'V' || - lookahead == 'v') ADVANCE(1148); + if (lookahead == 'U' || + lookahead == 'u') ADVANCE(1477); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1602); + lookahead == '|') ADVANCE(1610); END_STATE(); case 1578: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'V' || - lookahead == 'v') ADVANCE(1158); + if (lookahead == 'U' || + lookahead == 'u') ADVANCE(1466); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1602); + lookahead == '|') ADVANCE(1610); END_STATE(); case 1579: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'U' || + lookahead == 'u') ADVANCE(1062); + if (lookahead == '-' || + ('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'z') || + lookahead == '|') ADVANCE(1610); + END_STATE(); + case 1580: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'U' || + lookahead == 'u') ADVANCE(1363); + if (lookahead == '-' || + ('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'z') || + lookahead == '|') ADVANCE(1610); + END_STATE(); + case 1581: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'U' || + lookahead == 'u') ADVANCE(1467); + if (lookahead == '-' || + ('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'z') || + lookahead == '|') ADVANCE(1610); + END_STATE(); + case 1582: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'U' || + lookahead == 'u') ADVANCE(1160); + if (lookahead == '-' || + ('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'z') || + lookahead == '|') ADVANCE(1610); + END_STATE(); + case 1583: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'U' || + lookahead == 'u') ADVANCE(1556); + if (lookahead == '-' || + ('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'z') || + lookahead == '|') ADVANCE(1610); + END_STATE(); + case 1584: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'U' || + lookahead == 'u') ADVANCE(1207); + if (lookahead == '-' || + ('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'z') || + lookahead == '|') ADVANCE(1610); + END_STATE(); + case 1585: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'V' || lookahead == 'v') ADVANCE(1152); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1602); + lookahead == '|') ADVANCE(1610); END_STATE(); - case 1580: + case 1586: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'V' || - lookahead == 'v') ADVANCE(1013); + lookahead == 'v') ADVANCE(1162); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1602); + lookahead == '|') ADVANCE(1610); END_STATE(); - case 1581: + case 1587: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'V' || - lookahead == 'v') ADVANCE(1192); + lookahead == 'v') ADVANCE(1156); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1602); + lookahead == '|') ADVANCE(1610); END_STATE(); - case 1582: + case 1588: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'V' || + lookahead == 'v') ADVANCE(1016); + if (lookahead == '-' || + ('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'z') || + lookahead == '|') ADVANCE(1610); + END_STATE(); + case 1589: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'V' || + lookahead == 'v') ADVANCE(1196); + if (lookahead == '-' || + ('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'z') || + lookahead == '|') ADVANCE(1610); + END_STATE(); + case 1590: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'W' || - lookahead == 'w') ADVANCE(1653); + lookahead == 'w') ADVANCE(1661); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1602); + lookahead == '|') ADVANCE(1610); END_STATE(); - case 1583: + case 1591: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'W' || - lookahead == 'w') ADVANCE(1753); + lookahead == 'w') ADVANCE(1762); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1602); + lookahead == '|') ADVANCE(1610); END_STATE(); - case 1584: + case 1592: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'W' || - lookahead == 'w') ADVANCE(1259); + lookahead == 'w') ADVANCE(1266); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1602); + lookahead == '|') ADVANCE(1610); END_STATE(); - case 1585: + case 1593: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'W' || - lookahead == 'w') ADVANCE(1225); + lookahead == 'w') ADVANCE(1231); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1602); + lookahead == '|') ADVANCE(1610); END_STATE(); - case 1586: + case 1594: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'X' || - lookahead == 'x') ADVANCE(1769); + lookahead == 'x') ADVANCE(1778); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1602); + lookahead == '|') ADVANCE(1610); END_STATE(); - case 1587: + case 1595: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'X' || - lookahead == 'x') ADVANCE(1794); + lookahead == 'x') ADVANCE(1803); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1602); + lookahead == '|') ADVANCE(1610); END_STATE(); - case 1588: + case 1596: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'X' || - lookahead == 'x') ADVANCE(1795); + lookahead == 'x') ADVANCE(1804); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1602); + lookahead == '|') ADVANCE(1610); END_STATE(); - case 1589: + case 1597: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'X' || - lookahead == 'x') ADVANCE(1234); + lookahead == 'x') ADVANCE(1240); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1602); + lookahead == '|') ADVANCE(1610); END_STATE(); - case 1590: + case 1598: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'X' || - lookahead == 'x') ADVANCE(1055); + lookahead == 'x') ADVANCE(1059); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1602); + lookahead == '|') ADVANCE(1610); END_STATE(); - case 1591: + case 1599: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'X' || - lookahead == 'x') ADVANCE(1519); + lookahead == 'x') ADVANCE(1526); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1602); + lookahead == '|') ADVANCE(1610); END_STATE(); - case 1592: + case 1600: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'X' || - lookahead == 'x') ADVANCE(1266); + lookahead == 'x') ADVANCE(1273); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1602); + lookahead == '|') ADVANCE(1610); END_STATE(); - case 1593: + case 1601: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'Y' || - lookahead == 'y') ADVANCE(1677); + lookahead == 'y') ADVANCE(1685); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1602); + lookahead == '|') ADVANCE(1610); END_STATE(); - case 1594: + case 1602: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'Y' || - lookahead == 'y') ADVANCE(1751); + lookahead == 'y') ADVANCE(1760); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1602); + lookahead == '|') ADVANCE(1610); END_STATE(); - case 1595: + case 1603: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'Y' || - lookahead == 'y') ADVANCE(1727); + lookahead == 'y') ADVANCE(1736); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1602); + lookahead == '|') ADVANCE(1610); END_STATE(); - case 1596: + case 1604: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'Y' || - lookahead == 'y') ADVANCE(1792); + lookahead == 'y') ADVANCE(1801); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1602); + lookahead == '|') ADVANCE(1610); END_STATE(); - case 1597: + case 1605: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'Y' || - lookahead == 'y') ADVANCE(1703); + lookahead == 'y') ADVANCE(1712); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1602); + lookahead == '|') ADVANCE(1610); END_STATE(); - case 1598: + case 1606: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'Y' || - lookahead == 'y') ADVANCE(1790); + lookahead == 'y') ADVANCE(1799); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1602); + lookahead == '|') ADVANCE(1610); END_STATE(); - case 1599: + case 1607: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'Y' || - lookahead == 'y') ADVANCE(1778); + lookahead == 'y') ADVANCE(1787); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1602); + lookahead == '|') ADVANCE(1610); END_STATE(); - case 1600: + case 1608: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'Z' || - lookahead == 'z') ADVANCE(1120); + lookahead == 'z') ADVANCE(1124); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'y') || - lookahead == '|') ADVANCE(1602); + lookahead == '|') ADVANCE(1610); END_STATE(); - case 1601: + case 1609: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'Z' || - lookahead == 'z') ADVANCE(1025); + lookahead == 'z') ADVANCE(1029); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'y') || - lookahead == '|') ADVANCE(1602); + lookahead == '|') ADVANCE(1610); END_STATE(); - case 1602: + case 1610: ACCEPT_TOKEN(sym_identifier); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1602); + lookahead == '|') ADVANCE(1610); END_STATE(); - case 1603: + case 1611: ACCEPT_TOKEN(anon_sym_STAR); END_STATE(); - case 1604: + case 1612: ACCEPT_TOKEN(sym__terminator); END_STATE(); - case 1605: + case 1613: ACCEPT_TOKEN(aux_sym__block_terminator_token1); END_STATE(); - case 1606: + case 1614: ACCEPT_TOKEN(anon_sym_DOT); END_STATE(); - case 1607: + case 1615: ACCEPT_TOKEN(sym_null_expression); END_STATE(); - case 1608: + case 1616: ACCEPT_TOKEN(sym__integer_literal); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1608); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1616); END_STATE(); - case 1609: + case 1617: ACCEPT_TOKEN(anon_sym_DQUOTE); END_STATE(); - case 1610: + case 1618: ACCEPT_TOKEN(aux_sym_double_quoted_string_token1); - if (lookahead == '*') ADVANCE(899); - if (lookahead == '/') ADVANCE(890); + if (lookahead == '*') ADVANCE(903); + if (lookahead == '/') ADVANCE(894); if (lookahead != 0 && lookahead != '"' && - lookahead != '\\') ADVANCE(1612); + lookahead != '\\') ADVANCE(1620); END_STATE(); - case 1611: + case 1619: ACCEPT_TOKEN(aux_sym_double_quoted_string_token1); - if (lookahead == '/') ADVANCE(1610); - if (lookahead == '\\') ADVANCE(14); - if (lookahead == '{') ADVANCE(906); + if (lookahead == '/') ADVANCE(1618); + if (lookahead == '\\') ADVANCE(13); + if (lookahead == '{') ADVANCE(910); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\f' || @@ -20200,35 +20392,35 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == ' ' || lookahead == 8203 || lookahead == 8288 || - lookahead == 65279) ADVANCE(1611); + lookahead == 65279) ADVANCE(1619); if (lookahead != 0 && - lookahead != '"') ADVANCE(1612); + lookahead != '"') ADVANCE(1620); END_STATE(); - case 1612: + case 1620: ACCEPT_TOKEN(aux_sym_double_quoted_string_token1); if (lookahead != 0 && lookahead != '"' && - lookahead != '\\') ADVANCE(1612); + lookahead != '\\') ADVANCE(1620); END_STATE(); - case 1613: + case 1621: ACCEPT_TOKEN(aux_sym_double_quoted_string_token2); END_STATE(); - case 1614: + case 1622: ACCEPT_TOKEN(anon_sym_SQUOTE); END_STATE(); - case 1615: + case 1623: ACCEPT_TOKEN(aux_sym_single_quoted_string_token1); - if (lookahead == '*') ADVANCE(900); - if (lookahead == '/') ADVANCE(891); + if (lookahead == '*') ADVANCE(904); + if (lookahead == '/') ADVANCE(895); if (lookahead != 0 && lookahead != '\'' && - lookahead != '\\') ADVANCE(1617); + lookahead != '\\') ADVANCE(1625); END_STATE(); - case 1616: + case 1624: ACCEPT_TOKEN(aux_sym_single_quoted_string_token1); - if (lookahead == '/') ADVANCE(1615); - if (lookahead == '\\') ADVANCE(13); - if (lookahead == '{') ADVANCE(907); + if (lookahead == '/') ADVANCE(1623); + if (lookahead == '\\') ADVANCE(14); + if (lookahead == '{') ADVANCE(911); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\f' || @@ -20236,585 +20428,588 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == ' ' || lookahead == 8203 || lookahead == 8288 || - lookahead == 65279) ADVANCE(1616); + lookahead == 65279) ADVANCE(1624); if (lookahead != 0 && - lookahead != '\'') ADVANCE(1617); + lookahead != '\'') ADVANCE(1625); END_STATE(); - case 1617: + case 1625: ACCEPT_TOKEN(aux_sym_single_quoted_string_token1); if (lookahead != 0 && lookahead != '\'' && - lookahead != '\\') ADVANCE(1617); + lookahead != '\\') ADVANCE(1625); END_STATE(); - case 1618: + case 1626: ACCEPT_TOKEN(anon_sym_LPAREN); END_STATE(); - case 1619: + case 1627: ACCEPT_TOKEN(anon_sym_RPAREN); END_STATE(); - case 1620: + case 1628: ACCEPT_TOKEN(aux_sym_unary_expression_token1); END_STATE(); - case 1621: + case 1629: ACCEPT_TOKEN(aux_sym_input_expression_token1); END_STATE(); - case 1622: + case 1630: ACCEPT_TOKEN(aux_sym_input_expression_token1); - if (lookahead == '-') ADVANCE(1401); + if (lookahead == '-') ADVANCE(1408); END_STATE(); - case 1623: + case 1631: ACCEPT_TOKEN(aux_sym_input_expression_token1); - if (lookahead == '-') ADVANCE(656); + if (lookahead == '-') ADVANCE(659); END_STATE(); - case 1624: + case 1632: ACCEPT_TOKEN(aux_sym_input_expression_token2); END_STATE(); - case 1625: + case 1633: ACCEPT_TOKEN(anon_sym_PLUS); END_STATE(); - case 1626: + case 1634: ACCEPT_TOKEN(anon_sym_DASH); END_STATE(); - case 1627: + case 1635: ACCEPT_TOKEN(anon_sym_LT); - if (lookahead == '=') ADVANCE(1628); - if (lookahead == '>') ADVANCE(1629); + if (lookahead == '=') ADVANCE(1636); + if (lookahead == '>') ADVANCE(1637); END_STATE(); - case 1628: + case 1636: ACCEPT_TOKEN(anon_sym_LT_EQ); END_STATE(); - case 1629: + case 1637: ACCEPT_TOKEN(anon_sym_LT_GT); END_STATE(); - case 1630: + case 1638: ACCEPT_TOKEN(anon_sym_EQ); END_STATE(); - case 1631: + case 1639: ACCEPT_TOKEN(anon_sym_GT); - if (lookahead == '=') ADVANCE(1632); + if (lookahead == '=') ADVANCE(1640); END_STATE(); - case 1632: + case 1640: ACCEPT_TOKEN(anon_sym_GT_EQ); END_STATE(); - case 1633: + case 1641: ACCEPT_TOKEN(aux_sym__comparison_operator_token1); END_STATE(); - case 1634: + case 1642: ACCEPT_TOKEN(aux_sym__comparison_operator_token2); END_STATE(); - case 1635: + case 1643: ACCEPT_TOKEN(aux_sym__comparison_operator_token3); END_STATE(); - case 1636: + case 1644: ACCEPT_TOKEN(aux_sym__comparison_operator_token3); if (lookahead == 'W' || - lookahead == 'w') ADVANCE(1653); + lookahead == 'w') ADVANCE(1661); END_STATE(); - case 1637: + case 1645: ACCEPT_TOKEN(aux_sym__comparison_operator_token4); END_STATE(); - case 1638: + case 1646: ACCEPT_TOKEN(aux_sym__comparison_operator_token5); END_STATE(); - case 1639: + case 1647: ACCEPT_TOKEN(aux_sym__comparison_operator_token6); END_STATE(); - case 1640: + case 1648: ACCEPT_TOKEN(aux_sym__comparison_operator_token6); if (lookahead == 'T' || - lookahead == 't') ADVANCE(1701); + lookahead == 't') ADVANCE(1710); END_STATE(); - case 1641: + case 1649: ACCEPT_TOKEN(aux_sym__comparison_operator_token7); END_STATE(); - case 1642: + case 1650: ACCEPT_TOKEN(aux_sym__comparison_operator_token8); END_STATE(); - case 1643: + case 1651: ACCEPT_TOKEN(aux_sym__comparison_operator_token9); END_STATE(); - case 1644: + case 1652: ACCEPT_TOKEN(aux_sym_include_argument_token1); END_STATE(); - case 1645: + case 1653: ACCEPT_TOKEN(aux_sym_primitive_type_token1); END_STATE(); - case 1646: + case 1654: ACCEPT_TOKEN(aux_sym_primitive_type_token19); END_STATE(); - case 1647: + case 1655: ACCEPT_TOKEN(aux_sym_variable_tuning_token1); END_STATE(); - case 1648: + case 1656: ACCEPT_TOKEN(aux_sym_variable_tuning_token2); END_STATE(); - case 1649: + case 1657: ACCEPT_TOKEN(aux_sym_variable_tuning_token3); END_STATE(); - case 1650: + case 1658: ACCEPT_TOKEN(aux_sym_variable_tuning_token4); END_STATE(); - case 1651: + case 1659: ACCEPT_TOKEN(aux_sym_variable_tuning_token5); END_STATE(); - case 1652: + case 1660: ACCEPT_TOKEN(aux_sym_variable_tuning_token6); END_STATE(); - case 1653: + case 1661: ACCEPT_TOKEN(aux_sym_scope_tuning_token1); END_STATE(); - case 1654: + case 1662: ACCEPT_TOKEN(aux_sym_scope_tuning_token2); END_STATE(); - case 1655: + case 1663: ACCEPT_TOKEN(aux_sym_scope_tuning_token3); END_STATE(); - case 1656: + case 1664: ACCEPT_TOKEN(aux_sym_scope_tuning_token4); END_STATE(); - case 1657: + case 1665: ACCEPT_TOKEN(aux_sym_access_tuning_token1); END_STATE(); - case 1658: + case 1666: ACCEPT_TOKEN(aux_sym_access_tuning_token2); END_STATE(); - case 1659: + case 1667: ACCEPT_TOKEN(aux_sym_access_tuning_token3); END_STATE(); - case 1660: + case 1668: ACCEPT_TOKEN(aux_sym_serialization_tuning_token1); END_STATE(); - case 1661: + case 1669: ACCEPT_TOKEN(aux_sym_serialization_tuning_token2); END_STATE(); - case 1662: + case 1670: ACCEPT_TOKEN(aux_sym_variable_definition_token1); END_STATE(); - case 1663: + case 1671: ACCEPT_TOKEN(aux_sym_variable_definition_token2); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(608); + lookahead == 'i') ADVANCE(611); END_STATE(); - case 1664: + case 1672: ACCEPT_TOKEN(aux_sym_variable_definition_token2); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1355); + lookahead == 'i') ADVANCE(1362); END_STATE(); - case 1665: + case 1673: ACCEPT_TOKEN(aux_sym_variable_definition_token3); END_STATE(); - case 1666: + case 1674: ACCEPT_TOKEN(aux_sym_variable_definition_token4); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1007); + lookahead == 'i') ADVANCE(1010); END_STATE(); - case 1667: + case 1675: ACCEPT_TOKEN(aux_sym_variable_definition_token4); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(222); + lookahead == 'i') ADVANCE(224); END_STATE(); - case 1668: + case 1676: ACCEPT_TOKEN(aux_sym_variable_definition_token5); END_STATE(); - case 1669: + case 1677: ACCEPT_TOKEN(aux_sym_variable_definition_token6); END_STATE(); - case 1670: + case 1678: ACCEPT_TOKEN(aux_sym_buffer_definition_token1); END_STATE(); - case 1671: + case 1679: ACCEPT_TOKEN(aux_sym_buffer_definition_token2); END_STATE(); - case 1672: + case 1680: ACCEPT_TOKEN(aux_sym_buffer_definition_token3); END_STATE(); - case 1673: + case 1681: ACCEPT_TOKEN(aux_sym_query_definition_tuning_token1); END_STATE(); - case 1674: + case 1682: ACCEPT_TOKEN(anon_sym_SCROLLING); END_STATE(); - case 1675: + case 1683: ACCEPT_TOKEN(anon_sym_SCROLLING); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1602); + lookahead == '|') ADVANCE(1610); END_STATE(); - case 1676: + case 1684: ACCEPT_TOKEN(aux_sym_query_definition_tuning_token2); END_STATE(); - case 1677: + case 1685: ACCEPT_TOKEN(aux_sym_query_definition_token1); END_STATE(); - case 1678: + case 1686: ACCEPT_TOKEN(aux_sym_query_definition_token2); END_STATE(); - case 1679: + case 1687: ACCEPT_TOKEN(aux_sym_query_definition_token3); END_STATE(); - case 1680: + case 1688: ACCEPT_TOKEN(anon_sym_COMMA); END_STATE(); - case 1681: + case 1689: ACCEPT_TOKEN(aux_sym_argument_mode_token1); END_STATE(); - case 1682: + case 1690: ACCEPT_TOKEN(aux_sym_argument_mode_token2); END_STATE(); - case 1683: + case 1691: ACCEPT_TOKEN(aux_sym_function_call_token1); END_STATE(); - case 1684: + case 1692: ACCEPT_TOKEN(aux_sym_if_statement_token2); END_STATE(); - case 1685: + case 1693: ACCEPT_TOKEN(aux_sym_else_if_statement_token1); END_STATE(); - case 1686: + case 1694: ACCEPT_TOKEN(anon_sym_COLON); END_STATE(); - case 1687: + case 1695: ACCEPT_TOKEN(aux_sym_while_phrase_token1); END_STATE(); - case 1688: + case 1696: + ACCEPT_TOKEN(aux_sym_repeat_tuning_token1); + END_STATE(); + case 1697: ACCEPT_TOKEN(aux_sym_repeat_statement_token1); END_STATE(); - case 1689: + case 1698: ACCEPT_TOKEN(aux_sym__procedure_terminator_token1); END_STATE(); - case 1690: + case 1699: ACCEPT_TOKEN(aux_sym_procedure_parameter_definition_token1); END_STATE(); - case 1691: + case 1700: ACCEPT_TOKEN(aux_sym_procedure_parameter_definition_token1); if (lookahead == 'S' || - lookahead == 's') ADVANCE(1696); + lookahead == 's') ADVANCE(1705); END_STATE(); - case 1692: + case 1701: ACCEPT_TOKEN(aux_sym_procedure_parameter_definition_token2); END_STATE(); - case 1693: + case 1702: ACCEPT_TOKEN(aux_sym__function_terminator_token1); END_STATE(); - case 1694: + case 1703: ACCEPT_TOKEN(aux_sym_function_parameter_token1); END_STATE(); - case 1695: + case 1704: ACCEPT_TOKEN(aux_sym_function_parameter_token2); END_STATE(); - case 1696: + case 1705: ACCEPT_TOKEN(aux_sym_function_statement_token1); END_STATE(); - case 1697: + case 1706: ACCEPT_TOKEN(aux_sym_interface_statement_token1); END_STATE(); - case 1698: + case 1707: ACCEPT_TOKEN(aux_sym_property_type_token1); END_STATE(); - case 1699: + case 1708: ACCEPT_TOKEN(aux_sym_property_type_token2); END_STATE(); - case 1700: + case 1709: ACCEPT_TOKEN(aux_sym_property_tuning_token1); END_STATE(); - case 1701: + case 1710: ACCEPT_TOKEN(aux_sym_getter_token1); END_STATE(); - case 1702: + case 1711: ACCEPT_TOKEN(aux_sym_setter_token1); END_STATE(); - case 1703: + case 1712: ACCEPT_TOKEN(aux_sym_property_definition_token1); END_STATE(); - case 1704: + case 1713: ACCEPT_TOKEN(aux_sym_event_definition_token1); END_STATE(); - case 1705: + case 1714: ACCEPT_TOKEN(aux_sym_event_definition_token2); END_STATE(); - case 1706: + case 1715: ACCEPT_TOKEN(aux_sym_method_tuning_token1); END_STATE(); - case 1707: + case 1716: ACCEPT_TOKEN(aux_sym_method_definition_token1); END_STATE(); - case 1708: + case 1717: ACCEPT_TOKEN(anon_sym_METHOD); END_STATE(); - case 1709: + case 1718: ACCEPT_TOKEN(aux_sym_data_relation_token1); END_STATE(); - case 1710: + case 1719: ACCEPT_TOKEN(aux_sym_data_relation_token2); END_STATE(); - case 1711: + case 1720: ACCEPT_TOKEN(aux_sym_using_statement_token1); END_STATE(); - case 1712: + case 1721: ACCEPT_TOKEN(aux_sym_using_statement_token2); END_STATE(); - case 1713: + case 1722: ACCEPT_TOKEN(aux_sym_using_statement_token3); END_STATE(); - case 1714: + case 1723: ACCEPT_TOKEN(aux_sym_using_statement_token4); END_STATE(); - case 1715: + case 1724: ACCEPT_TOKEN(aux_sym_constructor_definition_token1); END_STATE(); - case 1716: + case 1725: ACCEPT_TOKEN(aux_sym_inherits_token1); END_STATE(); - case 1717: + case 1726: ACCEPT_TOKEN(aux_sym_implements_token1); END_STATE(); - case 1718: + case 1727: ACCEPT_TOKEN(aux_sym_use_widget_pool_token1); END_STATE(); - case 1719: + case 1728: ACCEPT_TOKEN(anon_sym_NO_DASHERROR); END_STATE(); - case 1720: + case 1729: ACCEPT_TOKEN(anon_sym_NO_DASHERROR); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'z') || - lookahead == '|') ADVANCE(1602); + lookahead == '|') ADVANCE(1610); END_STATE(); - case 1721: + case 1730: ACCEPT_TOKEN(aux_sym_stream_definition_token1); END_STATE(); - case 1722: + case 1731: ACCEPT_TOKEN(aux_sym_stream_definition_token1); - if (lookahead == '-') ADVANCE(459); + if (lookahead == '-') ADVANCE(462); END_STATE(); - case 1723: + case 1732: ACCEPT_TOKEN(aux_sym_stream_definition_token1); - if (lookahead == '-') ADVANCE(1222); + if (lookahead == '-') ADVANCE(1228); END_STATE(); - case 1724: + case 1733: ACCEPT_TOKEN(aux_sym_input_close_statement_token1); END_STATE(); - case 1725: + case 1734: ACCEPT_TOKEN(aux_sym_input_close_statement_token2); END_STATE(); - case 1726: + case 1735: ACCEPT_TOKEN(aux_sym_input_stream_tuning_token1); END_STATE(); - case 1727: + case 1736: ACCEPT_TOKEN(aux_sym_input_stream_tuning_token2); END_STATE(); - case 1728: + case 1737: ACCEPT_TOKEN(aux_sym_input_stream_tuning_token3); END_STATE(); - case 1729: + case 1738: ACCEPT_TOKEN(aux_sym_input_stream_tuning_token4); END_STATE(); - case 1730: + case 1739: ACCEPT_TOKEN(aux_sym_input_stream_tuning_token5); END_STATE(); - case 1731: + case 1740: ACCEPT_TOKEN(aux_sym_input_stream_tuning_token6); END_STATE(); - case 1732: + case 1741: ACCEPT_TOKEN(aux_sym_input_stream_tuning_token7); END_STATE(); - case 1733: + case 1742: ACCEPT_TOKEN(aux_sym_input_stream_tuning_token8); END_STATE(); - case 1734: + case 1743: ACCEPT_TOKEN(aux_sym_input_stream_tuning_token9); END_STATE(); - case 1735: + case 1744: ACCEPT_TOKEN(aux_sym_input_stream_tuning_token10); END_STATE(); - case 1736: + case 1745: ACCEPT_TOKEN(aux_sym_input_stream_tuning_token11); END_STATE(); - case 1737: + case 1746: ACCEPT_TOKEN(aux_sym_output_stream_tuning_token1); END_STATE(); - case 1738: + case 1747: ACCEPT_TOKEN(aux_sym_output_stream_tuning_token2); END_STATE(); - case 1739: + case 1748: ACCEPT_TOKEN(aux_sym_output_stream_tuning_token3); END_STATE(); - case 1740: + case 1749: ACCEPT_TOKEN(aux_sym_output_stream_tuning_token4); END_STATE(); - case 1741: + case 1750: ACCEPT_TOKEN(aux_sym_output_stream_tuning_token5); END_STATE(); - case 1742: + case 1751: ACCEPT_TOKEN(aux_sym_output_stream_tuning_token6); END_STATE(); - case 1743: + case 1752: ACCEPT_TOKEN(aux_sym_output_stream_tuning_token7); END_STATE(); - case 1744: + case 1753: ACCEPT_TOKEN(aux_sym_output_stream_tuning_token8); END_STATE(); - case 1745: + case 1754: ACCEPT_TOKEN(aux_sym_output_stream_statement_token1); END_STATE(); - case 1746: + case 1755: ACCEPT_TOKEN(aux_sym_on_error_phrase_token1); END_STATE(); - case 1747: + case 1756: ACCEPT_TOKEN(aux_sym_on_error_phrase_token2); END_STATE(); - case 1748: + case 1757: ACCEPT_TOKEN(aux_sym_on_error_phrase_token3); END_STATE(); - case 1749: + case 1758: ACCEPT_TOKEN(aux_sym_on_error_phrase_token4); END_STATE(); - case 1750: + case 1759: ACCEPT_TOKEN(aux_sym_on_error_phrase_token5); END_STATE(); - case 1751: + case 1760: ACCEPT_TOKEN(aux_sym_on_error_phrase_token6); END_STATE(); - case 1752: + case 1761: ACCEPT_TOKEN(aux_sym_on_error_phrase_token7); END_STATE(); - case 1753: + case 1762: ACCEPT_TOKEN(aux_sym_on_error_phrase_token8); END_STATE(); - case 1754: + case 1763: ACCEPT_TOKEN(aux_sym_on_stop_phrase_token1); END_STATE(); - case 1755: + case 1764: ACCEPT_TOKEN(aux_sym_on_stop_phrase_token1); - if (lookahead == '-') ADVANCE(983); + if (lookahead == '-') ADVANCE(987); END_STATE(); - case 1756: + case 1765: ACCEPT_TOKEN(aux_sym_on_quit_phrase_token1); END_STATE(); - case 1757: + case 1766: ACCEPT_TOKEN(aux_sym_stop_after_phrase_token1); END_STATE(); - case 1758: + case 1767: ACCEPT_TOKEN(aux_sym_do_tuning_token1); END_STATE(); - case 1759: + case 1768: ACCEPT_TOKEN(anon_sym_BY); END_STATE(); - case 1760: + case 1769: ACCEPT_TOKEN(aux_sym_do_block_token1); END_STATE(); - case 1761: + case 1770: ACCEPT_TOKEN(aux_sym__case_terminator_token1); END_STATE(); - case 1762: + case 1771: ACCEPT_TOKEN(aux_sym_case_when_branch_token1); END_STATE(); - case 1763: + case 1772: ACCEPT_TOKEN(aux_sym_case_otherwise_branch_token1); END_STATE(); - case 1764: + case 1773: ACCEPT_TOKEN(aux_sym_where_clause_token1); END_STATE(); - case 1765: + case 1774: ACCEPT_TOKEN(aux_sym_query_tuning_token1); END_STATE(); - case 1766: + case 1775: ACCEPT_TOKEN(aux_sym_query_tuning_token2); END_STATE(); - case 1767: + case 1776: ACCEPT_TOKEN(aux_sym_query_tuning_token3); END_STATE(); - case 1768: + case 1777: ACCEPT_TOKEN(aux_sym_query_tuning_token4); END_STATE(); - case 1769: + case 1778: ACCEPT_TOKEN(aux_sym_query_tuning_token5); END_STATE(); - case 1770: + case 1779: ACCEPT_TOKEN(aux_sym_sort_clause_token1); END_STATE(); - case 1771: + case 1780: ACCEPT_TOKEN(aux_sym_sort_clause_token2); END_STATE(); - case 1772: + case 1781: ACCEPT_TOKEN(aux_sym_for_phrase_token1); END_STATE(); - case 1773: + case 1782: ACCEPT_TOKEN(aux_sym_for_phrase_token2); END_STATE(); - case 1774: + case 1783: ACCEPT_TOKEN(aux_sym_for_phrase_token3); END_STATE(); - case 1775: + case 1784: ACCEPT_TOKEN(aux_sym_of_token1); END_STATE(); - case 1776: + case 1785: ACCEPT_TOKEN(aux_sym__using_and_token1); END_STATE(); - case 1777: + case 1786: ACCEPT_TOKEN(aux_sym_catch_statement_token1); END_STATE(); - case 1778: + case 1787: ACCEPT_TOKEN(aux_sym_finally_statement_token1); END_STATE(); - case 1779: + case 1788: ACCEPT_TOKEN(aux_sym_accumulate_aggregate_token1); END_STATE(); - case 1780: + case 1789: ACCEPT_TOKEN(aux_sym_accumulate_aggregate_token2); END_STATE(); - case 1781: + case 1790: ACCEPT_TOKEN(aux_sym_accumulate_aggregate_token3); END_STATE(); - case 1782: + case 1791: ACCEPT_TOKEN(aux_sym_accumulate_aggregate_token4); END_STATE(); - case 1783: + case 1792: ACCEPT_TOKEN(aux_sym_accumulate_aggregate_token5); END_STATE(); - case 1784: + case 1793: ACCEPT_TOKEN(aux_sym_accumulate_aggregate_token6); END_STATE(); - case 1785: + case 1794: ACCEPT_TOKEN(aux_sym_accumulate_aggregate_token7); END_STATE(); - case 1786: + case 1795: ACCEPT_TOKEN(aux_sym_accumulate_aggregate_token8); END_STATE(); - case 1787: + case 1796: ACCEPT_TOKEN(aux_sym_accumulate_aggregate_token9); END_STATE(); - case 1788: + case 1797: ACCEPT_TOKEN(aux_sym_accumulate_aggregate_token10); END_STATE(); - case 1789: + case 1798: ACCEPT_TOKEN(anon_sym_); - if (lookahead == ' ') ADVANCE(1789); + if (lookahead == ' ') ADVANCE(1798); END_STATE(); - case 1790: + case 1799: ACCEPT_TOKEN(aux_sym_temp_table_tuning_token1); END_STATE(); - case 1791: + case 1800: ACCEPT_TOKEN(aux_sym_field_definition_token1); END_STATE(); - case 1792: + case 1801: ACCEPT_TOKEN(aux_sym_index_tuning_token2); END_STATE(); - case 1793: + case 1802: ACCEPT_TOKEN(aux_sym_index_tuning_token3); END_STATE(); - case 1794: + case 1803: ACCEPT_TOKEN(aux_sym_index_tuning_token4); END_STATE(); - case 1795: + case 1804: ACCEPT_TOKEN(aux_sym_index_definition_token1); END_STATE(); - case 1796: + case 1805: ACCEPT_TOKEN(aux_sym_on_statement_token1); END_STATE(); - case 1797: + case 1806: ACCEPT_TOKEN(aux_sym_data_source_definition_token1); END_STATE(); default: @@ -21666,295 +21861,295 @@ 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 = 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 = 3}, - [6] = {.lex_state = 882, .external_lex_state = 3}, - [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 = 3}, - [11] = {.lex_state = 882, .external_lex_state = 2}, - [12] = {.lex_state = 882, .external_lex_state = 3}, - [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 = 882, .external_lex_state = 4}, - [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 = 98}, - [121] = {.lex_state = 882, .external_lex_state = 4}, - [122] = {.lex_state = 98}, - [123] = {.lex_state = 98}, - [124] = {.lex_state = 98}, - [125] = {.lex_state = 98}, - [126] = {.lex_state = 98}, - [127] = {.lex_state = 98}, - [128] = {.lex_state = 98}, - [129] = {.lex_state = 882, .external_lex_state = 4}, - [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 = 882, .external_lex_state = 4}, - [138] = {.lex_state = 882, .external_lex_state = 4}, - [139] = {.lex_state = 98}, - [140] = {.lex_state = 98}, - [141] = {.lex_state = 98}, - [142] = {.lex_state = 98}, - [143] = {.lex_state = 882, .external_lex_state = 4}, - [144] = {.lex_state = 98}, - [145] = {.lex_state = 98}, - [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 = 98}, - [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 = 882, .external_lex_state = 4}, - [205] = {.lex_state = 882, .external_lex_state = 4}, - [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 = 882, .external_lex_state = 4}, - [213] = {.lex_state = 98}, - [214] = {.lex_state = 98}, - [215] = {.lex_state = 98}, - [216] = {.lex_state = 98}, - [217] = {.lex_state = 882, .external_lex_state = 4}, - [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 = 98}, - [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 = 98}, - [254] = {.lex_state = 98}, - [255] = {.lex_state = 28}, - [256] = {.lex_state = 98}, - [257] = {.lex_state = 98}, - [258] = {.lex_state = 98}, + [1] = {.lex_state = 888}, + [2] = {.lex_state = 886, .external_lex_state = 1}, + [3] = {.lex_state = 886, .external_lex_state = 1}, + [4] = {.lex_state = 886, .external_lex_state = 2}, + [5] = {.lex_state = 886, .external_lex_state = 2}, + [6] = {.lex_state = 886, .external_lex_state = 2}, + [7] = {.lex_state = 886, .external_lex_state = 3}, + [8] = {.lex_state = 886, .external_lex_state = 2}, + [9] = {.lex_state = 886, .external_lex_state = 3}, + [10] = {.lex_state = 886, .external_lex_state = 2}, + [11] = {.lex_state = 886, .external_lex_state = 3}, + [12] = {.lex_state = 886, .external_lex_state = 2}, + [13] = {.lex_state = 886, .external_lex_state = 4}, + [14] = {.lex_state = 886, .external_lex_state = 4}, + [15] = {.lex_state = 886, .external_lex_state = 4}, + [16] = {.lex_state = 886, .external_lex_state = 4}, + [17] = {.lex_state = 886, .external_lex_state = 4}, + [18] = {.lex_state = 886, .external_lex_state = 4}, + [19] = {.lex_state = 886, .external_lex_state = 4}, + [20] = {.lex_state = 886, .external_lex_state = 4}, + [21] = {.lex_state = 886, .external_lex_state = 4}, + [22] = {.lex_state = 886, .external_lex_state = 4}, + [23] = {.lex_state = 886, .external_lex_state = 4}, + [24] = {.lex_state = 886, .external_lex_state = 4}, + [25] = {.lex_state = 886, .external_lex_state = 4}, + [26] = {.lex_state = 886, .external_lex_state = 4}, + [27] = {.lex_state = 886, .external_lex_state = 4}, + [28] = {.lex_state = 886, .external_lex_state = 4}, + [29] = {.lex_state = 886, .external_lex_state = 4}, + [30] = {.lex_state = 886, .external_lex_state = 4}, + [31] = {.lex_state = 886, .external_lex_state = 4}, + [32] = {.lex_state = 886, .external_lex_state = 4}, + [33] = {.lex_state = 886, .external_lex_state = 4}, + [34] = {.lex_state = 886, .external_lex_state = 4}, + [35] = {.lex_state = 886, .external_lex_state = 4}, + [36] = {.lex_state = 886, .external_lex_state = 4}, + [37] = {.lex_state = 886, .external_lex_state = 4}, + [38] = {.lex_state = 886, .external_lex_state = 4}, + [39] = {.lex_state = 886, .external_lex_state = 4}, + [40] = {.lex_state = 886, .external_lex_state = 4}, + [41] = {.lex_state = 886, .external_lex_state = 4}, + [42] = {.lex_state = 886, .external_lex_state = 4}, + [43] = {.lex_state = 886, .external_lex_state = 4}, + [44] = {.lex_state = 886, .external_lex_state = 4}, + [45] = {.lex_state = 886, .external_lex_state = 4}, + [46] = {.lex_state = 886, .external_lex_state = 4}, + [47] = {.lex_state = 886, .external_lex_state = 4}, + [48] = {.lex_state = 886, .external_lex_state = 4}, + [49] = {.lex_state = 886, .external_lex_state = 4}, + [50] = {.lex_state = 886, .external_lex_state = 4}, + [51] = {.lex_state = 886, .external_lex_state = 4}, + [52] = {.lex_state = 886, .external_lex_state = 4}, + [53] = {.lex_state = 886, .external_lex_state = 4}, + [54] = {.lex_state = 886, .external_lex_state = 4}, + [55] = {.lex_state = 886, .external_lex_state = 4}, + [56] = {.lex_state = 886, .external_lex_state = 4}, + [57] = {.lex_state = 100}, + [58] = {.lex_state = 100}, + [59] = {.lex_state = 100}, + [60] = {.lex_state = 100}, + [61] = {.lex_state = 100}, + [62] = {.lex_state = 100}, + [63] = {.lex_state = 100}, + [64] = {.lex_state = 100}, + [65] = {.lex_state = 100}, + [66] = {.lex_state = 100}, + [67] = {.lex_state = 100}, + [68] = {.lex_state = 100}, + [69] = {.lex_state = 100}, + [70] = {.lex_state = 100}, + [71] = {.lex_state = 100}, + [72] = {.lex_state = 100}, + [73] = {.lex_state = 100}, + [74] = {.lex_state = 100}, + [75] = {.lex_state = 100}, + [76] = {.lex_state = 100}, + [77] = {.lex_state = 100}, + [78] = {.lex_state = 100}, + [79] = {.lex_state = 100}, + [80] = {.lex_state = 100}, + [81] = {.lex_state = 100}, + [82] = {.lex_state = 100}, + [83] = {.lex_state = 100}, + [84] = {.lex_state = 100}, + [85] = {.lex_state = 100}, + [86] = {.lex_state = 100}, + [87] = {.lex_state = 100}, + [88] = {.lex_state = 100}, + [89] = {.lex_state = 100}, + [90] = {.lex_state = 100}, + [91] = {.lex_state = 100}, + [92] = {.lex_state = 100}, + [93] = {.lex_state = 100}, + [94] = {.lex_state = 100}, + [95] = {.lex_state = 100}, + [96] = {.lex_state = 100}, + [97] = {.lex_state = 100}, + [98] = {.lex_state = 100}, + [99] = {.lex_state = 100}, + [100] = {.lex_state = 100}, + [101] = {.lex_state = 100}, + [102] = {.lex_state = 100}, + [103] = {.lex_state = 100}, + [104] = {.lex_state = 100}, + [105] = {.lex_state = 100}, + [106] = {.lex_state = 100}, + [107] = {.lex_state = 100}, + [108] = {.lex_state = 100}, + [109] = {.lex_state = 100}, + [110] = {.lex_state = 100}, + [111] = {.lex_state = 100}, + [112] = {.lex_state = 100}, + [113] = {.lex_state = 100}, + [114] = {.lex_state = 100}, + [115] = {.lex_state = 100}, + [116] = {.lex_state = 100}, + [117] = {.lex_state = 100}, + [118] = {.lex_state = 100}, + [119] = {.lex_state = 100}, + [120] = {.lex_state = 100}, + [121] = {.lex_state = 100}, + [122] = {.lex_state = 100}, + [123] = {.lex_state = 100}, + [124] = {.lex_state = 100}, + [125] = {.lex_state = 100}, + [126] = {.lex_state = 100}, + [127] = {.lex_state = 100}, + [128] = {.lex_state = 100}, + [129] = {.lex_state = 100}, + [130] = {.lex_state = 100}, + [131] = {.lex_state = 100}, + [132] = {.lex_state = 100}, + [133] = {.lex_state = 100}, + [134] = {.lex_state = 100}, + [135] = {.lex_state = 100}, + [136] = {.lex_state = 100}, + [137] = {.lex_state = 100}, + [138] = {.lex_state = 100}, + [139] = {.lex_state = 100}, + [140] = {.lex_state = 100}, + [141] = {.lex_state = 100}, + [142] = {.lex_state = 100}, + [143] = {.lex_state = 100}, + [144] = {.lex_state = 100}, + [145] = {.lex_state = 100}, + [146] = {.lex_state = 100}, + [147] = {.lex_state = 100}, + [148] = {.lex_state = 100}, + [149] = {.lex_state = 100}, + [150] = {.lex_state = 100}, + [151] = {.lex_state = 100}, + [152] = {.lex_state = 100}, + [153] = {.lex_state = 100}, + [154] = {.lex_state = 100}, + [155] = {.lex_state = 100}, + [156] = {.lex_state = 100}, + [157] = {.lex_state = 100}, + [158] = {.lex_state = 100}, + [159] = {.lex_state = 100}, + [160] = {.lex_state = 100}, + [161] = {.lex_state = 100}, + [162] = {.lex_state = 100}, + [163] = {.lex_state = 100}, + [164] = {.lex_state = 100}, + [165] = {.lex_state = 100}, + [166] = {.lex_state = 100}, + [167] = {.lex_state = 100}, + [168] = {.lex_state = 100}, + [169] = {.lex_state = 100}, + [170] = {.lex_state = 100}, + [171] = {.lex_state = 100}, + [172] = {.lex_state = 100}, + [173] = {.lex_state = 100}, + [174] = {.lex_state = 100}, + [175] = {.lex_state = 100}, + [176] = {.lex_state = 100}, + [177] = {.lex_state = 100}, + [178] = {.lex_state = 100}, + [179] = {.lex_state = 100}, + [180] = {.lex_state = 100}, + [181] = {.lex_state = 100}, + [182] = {.lex_state = 100}, + [183] = {.lex_state = 100}, + [184] = {.lex_state = 100}, + [185] = {.lex_state = 100}, + [186] = {.lex_state = 100}, + [187] = {.lex_state = 100}, + [188] = {.lex_state = 100}, + [189] = {.lex_state = 100}, + [190] = {.lex_state = 100}, + [191] = {.lex_state = 100}, + [192] = {.lex_state = 100}, + [193] = {.lex_state = 100}, + [194] = {.lex_state = 100}, + [195] = {.lex_state = 100}, + [196] = {.lex_state = 100}, + [197] = {.lex_state = 100}, + [198] = {.lex_state = 100}, + [199] = {.lex_state = 100}, + [200] = {.lex_state = 100}, + [201] = {.lex_state = 100}, + [202] = {.lex_state = 100}, + [203] = {.lex_state = 100}, + [204] = {.lex_state = 100}, + [205] = {.lex_state = 100}, + [206] = {.lex_state = 100}, + [207] = {.lex_state = 100}, + [208] = {.lex_state = 100}, + [209] = {.lex_state = 100}, + [210] = {.lex_state = 100}, + [211] = {.lex_state = 100}, + [212] = {.lex_state = 100}, + [213] = {.lex_state = 100}, + [214] = {.lex_state = 100}, + [215] = {.lex_state = 100}, + [216] = {.lex_state = 100}, + [217] = {.lex_state = 100}, + [218] = {.lex_state = 100}, + [219] = {.lex_state = 100}, + [220] = {.lex_state = 100}, + [221] = {.lex_state = 100}, + [222] = {.lex_state = 100}, + [223] = {.lex_state = 100}, + [224] = {.lex_state = 100}, + [225] = {.lex_state = 100}, + [226] = {.lex_state = 100}, + [227] = {.lex_state = 100}, + [228] = {.lex_state = 100}, + [229] = {.lex_state = 100}, + [230] = {.lex_state = 100}, + [231] = {.lex_state = 100}, + [232] = {.lex_state = 100}, + [233] = {.lex_state = 100}, + [234] = {.lex_state = 100}, + [235] = {.lex_state = 100}, + [236] = {.lex_state = 100}, + [237] = {.lex_state = 100}, + [238] = {.lex_state = 100}, + [239] = {.lex_state = 100}, + [240] = {.lex_state = 100}, + [241] = {.lex_state = 100}, + [242] = {.lex_state = 100}, + [243] = {.lex_state = 100}, + [244] = {.lex_state = 100}, + [245] = {.lex_state = 100}, + [246] = {.lex_state = 28}, + [247] = {.lex_state = 100}, + [248] = {.lex_state = 28}, + [249] = {.lex_state = 100}, + [250] = {.lex_state = 100}, + [251] = {.lex_state = 100}, + [252] = {.lex_state = 100}, + [253] = {.lex_state = 100}, + [254] = {.lex_state = 100}, + [255] = {.lex_state = 100}, + [256] = {.lex_state = 100}, + [257] = {.lex_state = 100}, + [258] = {.lex_state = 100}, [259] = {.lex_state = 28}, - [260] = {.lex_state = 98}, + [260] = {.lex_state = 100}, [261] = {.lex_state = 28}, - [262] = {.lex_state = 98}, - [263] = {.lex_state = 28}, - [264] = {.lex_state = 98}, - [265] = {.lex_state = 29, .external_lex_state = 5}, - [266] = {.lex_state = 884}, - [267] = {.lex_state = 884}, - [268] = {.lex_state = 29, .external_lex_state = 5}, - [269] = {.lex_state = 29, .external_lex_state = 5}, - [270] = {.lex_state = 29, .external_lex_state = 5}, + [262] = {.lex_state = 100}, + [263] = {.lex_state = 100}, + [264] = {.lex_state = 100}, + [265] = {.lex_state = 100}, + [266] = {.lex_state = 100}, + [267] = {.lex_state = 100}, + [268] = {.lex_state = 100}, + [269] = {.lex_state = 28}, + [270] = {.lex_state = 888}, [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 = 98}, + [273] = {.lex_state = 100}, + [274] = {.lex_state = 38, .external_lex_state = 4}, + [275] = {.lex_state = 888}, + [276] = {.lex_state = 29, .external_lex_state = 5}, [277] = {.lex_state = 29, .external_lex_state = 5}, [278] = {.lex_state = 29, .external_lex_state = 5}, [279] = {.lex_state = 29, .external_lex_state = 5}, [280] = {.lex_state = 29, .external_lex_state = 5}, [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}, + [282] = {.lex_state = 38, .external_lex_state = 4}, + [283] = {.lex_state = 29, .external_lex_state = 5}, + [284] = {.lex_state = 29, .external_lex_state = 5}, + [285] = {.lex_state = 29, .external_lex_state = 5}, + [286] = {.lex_state = 100}, + [287] = {.lex_state = 29, .external_lex_state = 5}, + [288] = {.lex_state = 29, .external_lex_state = 5}, + [289] = {.lex_state = 29, .external_lex_state = 5}, [290] = {.lex_state = 29}, [291] = {.lex_state = 29}, [292] = {.lex_state = 29}, @@ -21964,16 +22159,16 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [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}, + [299] = {.lex_state = 29}, + [300] = {.lex_state = 29}, + [301] = {.lex_state = 29}, + [302] = {.lex_state = 29}, + [303] = {.lex_state = 29}, + [304] = {.lex_state = 34, .external_lex_state = 6}, + [305] = {.lex_state = 34, .external_lex_state = 6}, + [306] = {.lex_state = 34, .external_lex_state = 6}, + [307] = {.lex_state = 34, .external_lex_state = 6}, + [308] = {.lex_state = 34, .external_lex_state = 6}, [309] = {.lex_state = 30}, [310] = {.lex_state = 30}, [311] = {.lex_state = 30}, @@ -21990,32 +22185,32 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [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 = 39, .external_lex_state = 5}, - [330] = {.lex_state = 34}, - [331] = {.lex_state = 39, .external_lex_state = 5}, - [332] = {.lex_state = 99}, - [333] = {.lex_state = 34}, + [325] = {.lex_state = 30}, + [326] = {.lex_state = 30}, + [327] = {.lex_state = 30}, + [328] = {.lex_state = 30}, + [329] = {.lex_state = 30}, + [330] = {.lex_state = 101}, + [331] = {.lex_state = 101}, + [332] = {.lex_state = 101}, + [333] = {.lex_state = 101}, [334] = {.lex_state = 34}, - [335] = {.lex_state = 34}, - [336] = {.lex_state = 99}, - [337] = {.lex_state = 99}, + [335] = {.lex_state = 39, .external_lex_state = 5}, + [336] = {.lex_state = 39, .external_lex_state = 5}, + [337] = {.lex_state = 101}, [338] = {.lex_state = 34}, [339] = {.lex_state = 34}, - [340] = {.lex_state = 99}, + [340] = {.lex_state = 101}, [341] = {.lex_state = 34}, [342] = {.lex_state = 34}, [343] = {.lex_state = 34}, - [344] = {.lex_state = 34}, - [345] = {.lex_state = 34}, - [346] = {.lex_state = 39, .external_lex_state = 5}, + [344] = {.lex_state = 101}, + [345] = {.lex_state = 101}, + [346] = {.lex_state = 34}, [347] = {.lex_state = 34}, [348] = {.lex_state = 34}, [349] = {.lex_state = 34}, - [350] = {.lex_state = 34}, + [350] = {.lex_state = 39, .external_lex_state = 5}, [351] = {.lex_state = 34}, [352] = {.lex_state = 34}, [353] = {.lex_state = 34}, @@ -22187,47 +22382,47 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [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 = 4}, - [524] = {.lex_state = 33, .external_lex_state = 4}, - [525] = {.lex_state = 33, .external_lex_state = 4}, - [526] = {.lex_state = 33, .external_lex_state = 4}, + [522] = {.lex_state = 34}, + [523] = {.lex_state = 34}, + [524] = {.lex_state = 34}, + [525] = {.lex_state = 34}, + [526] = {.lex_state = 34}, [527] = {.lex_state = 33, .external_lex_state = 4}, [528] = {.lex_state = 33, .external_lex_state = 1}, [529] = {.lex_state = 33, .external_lex_state = 4}, - [530] = {.lex_state = 33, .external_lex_state = 1}, + [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 = 4}, - [535] = {.lex_state = 33, .external_lex_state = 3}, - [536] = {.lex_state = 33, .external_lex_state = 3}, - [537] = {.lex_state = 33, .external_lex_state = 3}, - [538] = {.lex_state = 33, .external_lex_state = 2}, - [539] = {.lex_state = 33, .external_lex_state = 3}, + [535] = {.lex_state = 33, .external_lex_state = 4}, + [536] = {.lex_state = 33, .external_lex_state = 4}, + [537] = {.lex_state = 33, .external_lex_state = 1}, + [538] = {.lex_state = 33, .external_lex_state = 4}, + [539] = {.lex_state = 33, .external_lex_state = 4}, [540] = {.lex_state = 33, .external_lex_state = 2}, - [541] = {.lex_state = 33, .external_lex_state = 2}, - [542] = {.lex_state = 882, .external_lex_state = 4}, - [543] = {.lex_state = 882, .external_lex_state = 4}, - [544] = {.lex_state = 32, .external_lex_state = 4}, - [545] = {.lex_state = 882, .external_lex_state = 4}, - [546] = {.lex_state = 33, .external_lex_state = 3}, - [547] = {.lex_state = 882, .external_lex_state = 4}, - [548] = {.lex_state = 882, .external_lex_state = 4}, - [549] = {.lex_state = 32, .external_lex_state = 4}, - [550] = {.lex_state = 882, .external_lex_state = 4}, - [551] = {.lex_state = 882, .external_lex_state = 4}, - [552] = {.lex_state = 31, .external_lex_state = 4}, + [541] = {.lex_state = 33, .external_lex_state = 3}, + [542] = {.lex_state = 33, .external_lex_state = 2}, + [543] = {.lex_state = 33, .external_lex_state = 2}, + [544] = {.lex_state = 33, .external_lex_state = 3}, + [545] = {.lex_state = 33, .external_lex_state = 2}, + [546] = {.lex_state = 886, .external_lex_state = 4}, + [547] = {.lex_state = 886, .external_lex_state = 4}, + [548] = {.lex_state = 32, .external_lex_state = 4}, + [549] = {.lex_state = 886, .external_lex_state = 4}, + [550] = {.lex_state = 886, .external_lex_state = 4}, + [551] = {.lex_state = 33, .external_lex_state = 3}, + [552] = {.lex_state = 886, .external_lex_state = 4}, [553] = {.lex_state = 31, .external_lex_state = 4}, - [554] = {.lex_state = 882, .external_lex_state = 4}, - [555] = {.lex_state = 882, .external_lex_state = 4}, - [556] = {.lex_state = 33, .external_lex_state = 3}, - [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}, + [554] = {.lex_state = 886, .external_lex_state = 4}, + [555] = {.lex_state = 33, .external_lex_state = 2}, + [556] = {.lex_state = 886, .external_lex_state = 4}, + [557] = {.lex_state = 886, .external_lex_state = 4}, + [558] = {.lex_state = 886, .external_lex_state = 4}, + [559] = {.lex_state = 32, .external_lex_state = 4}, + [560] = {.lex_state = 886, .external_lex_state = 4}, + [561] = {.lex_state = 33, .external_lex_state = 2}, + [562] = {.lex_state = 31, .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}, @@ -22237,7 +22432,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [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 = 882, .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}, @@ -22249,166 +22444,166 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [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}, + [584] = {.lex_state = 886, .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 = 39, .external_lex_state = 1}, - [600] = {.lex_state = 882, .external_lex_state = 4}, - [601] = {.lex_state = 882, .external_lex_state = 4}, - [602] = {.lex_state = 882, .external_lex_state = 4}, - [603] = {.lex_state = 882, .external_lex_state = 4}, - [604] = {.lex_state = 39, .external_lex_state = 1}, - [605] = {.lex_state = 882, .external_lex_state = 4}, - [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}, + [591] = {.lex_state = 33, .external_lex_state = 4}, + [592] = {.lex_state = 33, .external_lex_state = 4}, + [593] = {.lex_state = 33, .external_lex_state = 4}, + [594] = {.lex_state = 33, .external_lex_state = 4}, + [595] = {.lex_state = 33, .external_lex_state = 4}, + [596] = {.lex_state = 886, .external_lex_state = 4}, + [597] = {.lex_state = 886, .external_lex_state = 4}, + [598] = {.lex_state = 886, .external_lex_state = 4}, + [599] = {.lex_state = 886, .external_lex_state = 4}, + [600] = {.lex_state = 886, .external_lex_state = 4}, + [601] = {.lex_state = 886, .external_lex_state = 4}, + [602] = {.lex_state = 886, .external_lex_state = 4}, + [603] = {.lex_state = 886, .external_lex_state = 4}, + [604] = {.lex_state = 886, .external_lex_state = 4}, + [605] = {.lex_state = 886, .external_lex_state = 4}, + [606] = {.lex_state = 886, .external_lex_state = 4}, + [607] = {.lex_state = 39, .external_lex_state = 1}, + [608] = {.lex_state = 886, .external_lex_state = 4}, + [609] = {.lex_state = 886, .external_lex_state = 4}, + [610] = {.lex_state = 886, .external_lex_state = 4}, + [611] = {.lex_state = 39, .external_lex_state = 1}, + [612] = {.lex_state = 886, .external_lex_state = 4}, + [613] = {.lex_state = 886, .external_lex_state = 4}, + [614] = {.lex_state = 886, .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 = 2}, - [622] = {.lex_state = 39, .external_lex_state = 2}, - [623] = {.lex_state = 40, .external_lex_state = 1}, - [624] = {.lex_state = 882, .external_lex_state = 4}, - [625] = {.lex_state = 39, .external_lex_state = 2}, - [626] = {.lex_state = 882, .external_lex_state = 4}, + [621] = {.lex_state = 39, .external_lex_state = 4}, + [622] = {.lex_state = 39, .external_lex_state = 4}, + [623] = {.lex_state = 39, .external_lex_state = 4}, + [624] = {.lex_state = 39, .external_lex_state = 4}, + [625] = {.lex_state = 39, .external_lex_state = 4}, + [626] = {.lex_state = 39, .external_lex_state = 3}, [627] = {.lex_state = 39, .external_lex_state = 3}, - [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 = 39, .external_lex_state = 3}, - [632] = {.lex_state = 882, .external_lex_state = 4}, - [633] = {.lex_state = 882, .external_lex_state = 4}, - [634] = {.lex_state = 882, .external_lex_state = 4}, - [635] = {.lex_state = 39, .external_lex_state = 3}, - [636] = {.lex_state = 882, .external_lex_state = 4}, - [637] = {.lex_state = 40, .external_lex_state = 1}, - [638] = {.lex_state = 39, .external_lex_state = 3}, - [639] = {.lex_state = 882, .external_lex_state = 4}, - [640] = {.lex_state = 40, .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 = 39, .external_lex_state = 4}, - [645] = {.lex_state = 882, .external_lex_state = 4}, - [646] = {.lex_state = 39, .external_lex_state = 4}, - [647] = {.lex_state = 882, .external_lex_state = 4}, - [648] = {.lex_state = 47, .external_lex_state = 4}, - [649] = {.lex_state = 47, .external_lex_state = 4}, - [650] = {.lex_state = 40, .external_lex_state = 4}, - [651] = {.lex_state = 40, .external_lex_state = 4}, - [652] = {.lex_state = 882, .external_lex_state = 4}, - [653] = {.lex_state = 882, .external_lex_state = 4}, - [654] = {.lex_state = 882, .external_lex_state = 4}, - [655] = {.lex_state = 882, .external_lex_state = 4}, - [656] = {.lex_state = 882, .external_lex_state = 4}, - [657] = {.lex_state = 882, .external_lex_state = 4}, - [658] = {.lex_state = 882, .external_lex_state = 4}, - [659] = {.lex_state = 39, .external_lex_state = 3}, + [628] = {.lex_state = 39, .external_lex_state = 2}, + [629] = {.lex_state = 886, .external_lex_state = 4}, + [630] = {.lex_state = 39, .external_lex_state = 2}, + [631] = {.lex_state = 886, .external_lex_state = 4}, + [632] = {.lex_state = 40, .external_lex_state = 1}, + [633] = {.lex_state = 886, .external_lex_state = 4}, + [634] = {.lex_state = 886, .external_lex_state = 4}, + [635] = {.lex_state = 886, .external_lex_state = 4}, + [636] = {.lex_state = 886, .external_lex_state = 4}, + [637] = {.lex_state = 39, .external_lex_state = 2}, + [638] = {.lex_state = 886, .external_lex_state = 4}, + [639] = {.lex_state = 886, .external_lex_state = 4}, + [640] = {.lex_state = 39, .external_lex_state = 2}, + [641] = {.lex_state = 886, .external_lex_state = 4}, + [642] = {.lex_state = 40, .external_lex_state = 1}, + [643] = {.lex_state = 39, .external_lex_state = 3}, + [644] = {.lex_state = 886, .external_lex_state = 4}, + [645] = {.lex_state = 40, .external_lex_state = 4}, + [646] = {.lex_state = 40, .external_lex_state = 4}, + [647] = {.lex_state = 886, .external_lex_state = 4}, + [648] = {.lex_state = 39, .external_lex_state = 2}, + [649] = {.lex_state = 39, .external_lex_state = 4}, + [650] = {.lex_state = 39, .external_lex_state = 4}, + [651] = {.lex_state = 47, .external_lex_state = 4}, + [652] = {.lex_state = 47, .external_lex_state = 4}, + [653] = {.lex_state = 39, .external_lex_state = 2}, + [654] = {.lex_state = 886, .external_lex_state = 4}, + [655] = {.lex_state = 886, .external_lex_state = 4}, + [656] = {.lex_state = 886, .external_lex_state = 4}, + [657] = {.lex_state = 39, .external_lex_state = 4}, + [658] = {.lex_state = 886, .external_lex_state = 4}, + [659] = {.lex_state = 886, .external_lex_state = 4}, [660] = {.lex_state = 40, .external_lex_state = 4}, [661] = {.lex_state = 40, .external_lex_state = 4}, [662] = {.lex_state = 40, .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 = 39, .external_lex_state = 3}, + [666] = {.lex_state = 886, .external_lex_state = 4}, [667] = {.lex_state = 40, .external_lex_state = 4}, [668] = {.lex_state = 39, .external_lex_state = 4}, - [669] = {.lex_state = 40, .external_lex_state = 4}, - [670] = {.lex_state = 882, .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 = 41, .external_lex_state = 4}, + [669] = {.lex_state = 886, .external_lex_state = 4}, + [670] = {.lex_state = 886, .external_lex_state = 4}, + [671] = {.lex_state = 886, .external_lex_state = 4}, + [672] = {.lex_state = 40, .external_lex_state = 4}, + [673] = {.lex_state = 40, .external_lex_state = 4}, + [674] = {.lex_state = 886, .external_lex_state = 4}, + [675] = {.lex_state = 886, .external_lex_state = 4}, + [676] = {.lex_state = 886, .external_lex_state = 4}, [677] = {.lex_state = 39, .external_lex_state = 4}, [678] = {.lex_state = 39, .external_lex_state = 4}, [679] = {.lex_state = 41, .external_lex_state = 4}, - [680] = {.lex_state = 41, .external_lex_state = 4}, + [680] = {.lex_state = 39, .external_lex_state = 4}, [681] = {.lex_state = 39, .external_lex_state = 4}, - [682] = {.lex_state = 41, .external_lex_state = 4}, + [682] = {.lex_state = 39, .external_lex_state = 4}, [683] = {.lex_state = 39, .external_lex_state = 4}, - [684] = {.lex_state = 41, .external_lex_state = 4}, - [685] = {.lex_state = 39, .external_lex_state = 4}, + [684] = {.lex_state = 39, .external_lex_state = 4}, + [685] = {.lex_state = 41, .external_lex_state = 4}, [686] = {.lex_state = 41, .external_lex_state = 4}, - [687] = {.lex_state = 39, .external_lex_state = 4}, - [688] = {.lex_state = 40, .external_lex_state = 2}, + [687] = {.lex_state = 41, .external_lex_state = 4}, + [688] = {.lex_state = 39, .external_lex_state = 4}, [689] = {.lex_state = 39, .external_lex_state = 4}, [690] = {.lex_state = 41, .external_lex_state = 4}, - [691] = {.lex_state = 39, .external_lex_state = 4}, - [692] = {.lex_state = 882, .external_lex_state = 4}, + [691] = {.lex_state = 41, .external_lex_state = 4}, + [692] = {.lex_state = 41, .external_lex_state = 4}, [693] = {.lex_state = 41, .external_lex_state = 4}, [694] = {.lex_state = 39, .external_lex_state = 4}, [695] = {.lex_state = 39, .external_lex_state = 4}, - [696] = {.lex_state = 39, .external_lex_state = 4}, - [697] = {.lex_state = 39, .external_lex_state = 4}, - [698] = {.lex_state = 40, .external_lex_state = 2}, + [696] = {.lex_state = 41, .external_lex_state = 4}, + [697] = {.lex_state = 41, .external_lex_state = 4}, + [698] = {.lex_state = 39, .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 = 882, .external_lex_state = 4}, + [701] = {.lex_state = 41, .external_lex_state = 4}, + [702] = {.lex_state = 39, .external_lex_state = 4}, [703] = {.lex_state = 41, .external_lex_state = 4}, [704] = {.lex_state = 39, .external_lex_state = 4}, [705] = {.lex_state = 41, .external_lex_state = 4}, - [706] = {.lex_state = 39, .external_lex_state = 4}, - [707] = {.lex_state = 882, .external_lex_state = 4}, - [708] = {.lex_state = 41, .external_lex_state = 4}, + [706] = {.lex_state = 886, .external_lex_state = 4}, + [707] = {.lex_state = 39, .external_lex_state = 4}, + [708] = {.lex_state = 39, .external_lex_state = 4}, [709] = {.lex_state = 39, .external_lex_state = 4}, [710] = {.lex_state = 39, .external_lex_state = 4}, [711] = {.lex_state = 39, .external_lex_state = 4}, - [712] = {.lex_state = 41, .external_lex_state = 4}, + [712] = {.lex_state = 39, .external_lex_state = 4}, [713] = {.lex_state = 39, .external_lex_state = 4}, [714] = {.lex_state = 39, .external_lex_state = 4}, [715] = {.lex_state = 39, .external_lex_state = 4}, [716] = {.lex_state = 39, .external_lex_state = 4}, [717] = {.lex_state = 41, .external_lex_state = 4}, - [718] = {.lex_state = 41, .external_lex_state = 4}, + [718] = {.lex_state = 39, .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}, + [720] = {.lex_state = 886, .external_lex_state = 4}, + [721] = {.lex_state = 39, .external_lex_state = 4}, [722] = {.lex_state = 40, .external_lex_state = 3}, - [723] = {.lex_state = 40, .external_lex_state = 3}, - [724] = {.lex_state = 29, .external_lex_state = 5}, - [725] = {.lex_state = 882, .external_lex_state = 4}, - [726] = {.lex_state = 29, .external_lex_state = 5}, - [727] = {.lex_state = 40, .external_lex_state = 3}, - [728] = {.lex_state = 40, .external_lex_state = 3}, - [729] = {.lex_state = 882, .external_lex_state = 4}, + [723] = {.lex_state = 41, .external_lex_state = 4}, + [724] = {.lex_state = 40, .external_lex_state = 3}, + [725] = {.lex_state = 39, .external_lex_state = 4}, + [726] = {.lex_state = 40, .external_lex_state = 3}, + [727] = {.lex_state = 886, .external_lex_state = 4}, + [728] = {.lex_state = 40, .external_lex_state = 2}, + [729] = {.lex_state = 40, .external_lex_state = 2}, [730] = {.lex_state = 29, .external_lex_state = 5}, - [731] = {.lex_state = 40, .external_lex_state = 4}, - [732] = {.lex_state = 40, .external_lex_state = 4}, - [733] = {.lex_state = 40, .external_lex_state = 3}, - [734] = {.lex_state = 109}, + [731] = {.lex_state = 40, .external_lex_state = 2}, + [732] = {.lex_state = 29, .external_lex_state = 5}, + [733] = {.lex_state = 40, .external_lex_state = 2}, + [734] = {.lex_state = 40, .external_lex_state = 2}, [735] = {.lex_state = 40, .external_lex_state = 4}, - [736] = {.lex_state = 40, .external_lex_state = 4}, - [737] = {.lex_state = 40, .external_lex_state = 3}, - [738] = {.lex_state = 882, .external_lex_state = 4}, + [736] = {.lex_state = 40, .external_lex_state = 2}, + [737] = {.lex_state = 886, .external_lex_state = 4}, + [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 = 882, .external_lex_state = 4}, - [742] = {.lex_state = 40, .external_lex_state = 4}, - [743] = {.lex_state = 40, .external_lex_state = 4}, + [741] = {.lex_state = 29, .external_lex_state = 5}, + [742] = {.lex_state = 111}, + [743] = {.lex_state = 886, .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}, @@ -22416,7 +22611,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [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 = 95}, + [751] = {.lex_state = 886, .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}, @@ -22429,928 +22624,928 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [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}, + [764] = {.lex_state = 886, .external_lex_state = 4}, [765] = {.lex_state = 40, .external_lex_state = 4}, - [766] = {.lex_state = 40, .external_lex_state = 4}, + [766] = {.lex_state = 97}, [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 = 40, .external_lex_state = 4}, [771] = {.lex_state = 40, .external_lex_state = 4}, [772] = {.lex_state = 40, .external_lex_state = 4}, - [773] = {.lex_state = 41, .external_lex_state = 1}, - [774] = {.lex_state = 41, .external_lex_state = 1}, - [775] = {.lex_state = 882, .external_lex_state = 4}, - [776] = {.lex_state = 41, .external_lex_state = 4}, - [777] = {.lex_state = 41, .external_lex_state = 4}, - [778] = {.lex_state = 25, .external_lex_state = 1}, - [779] = {.lex_state = 883}, - [780] = {.lex_state = 41, .external_lex_state = 4}, + [773] = {.lex_state = 40, .external_lex_state = 4}, + [774] = {.lex_state = 40, .external_lex_state = 4}, + [775] = {.lex_state = 40, .external_lex_state = 4}, + [776] = {.lex_state = 40, .external_lex_state = 4}, + [777] = {.lex_state = 40, .external_lex_state = 4}, + [778] = {.lex_state = 40, .external_lex_state = 4}, + [779] = {.lex_state = 41, .external_lex_state = 1}, + [780] = {.lex_state = 41, .external_lex_state = 1}, [781] = {.lex_state = 39, .external_lex_state = 5}, - [782] = {.lex_state = 25, .external_lex_state = 1}, - [783] = {.lex_state = 883}, - [784] = {.lex_state = 882, .external_lex_state = 4}, - [785] = {.lex_state = 97}, - [786] = {.lex_state = 41, .external_lex_state = 4}, - [787] = {.lex_state = 109}, - [788] = {.lex_state = 41, .external_lex_state = 4}, - [789] = {.lex_state = 41, .external_lex_state = 4}, - [790] = {.lex_state = 97}, - [791] = {.lex_state = 883}, + [782] = {.lex_state = 41, .external_lex_state = 4}, + [783] = {.lex_state = 41, .external_lex_state = 4}, + [784] = {.lex_state = 99}, + [785] = {.lex_state = 887}, + [786] = {.lex_state = 39}, + [787] = {.lex_state = 41, .external_lex_state = 4}, + [788] = {.lex_state = 886, .external_lex_state = 4}, + [789] = {.lex_state = 887}, + [790] = {.lex_state = 41, .external_lex_state = 4}, + [791] = {.lex_state = 99}, [792] = {.lex_state = 41, .external_lex_state = 4}, - [793] = {.lex_state = 41, .external_lex_state = 4}, - [794] = {.lex_state = 97}, + [793] = {.lex_state = 25, .external_lex_state = 1}, + [794] = {.lex_state = 41, .external_lex_state = 4}, [795] = {.lex_state = 41, .external_lex_state = 4}, - [796] = {.lex_state = 41, .external_lex_state = 4}, + [796] = {.lex_state = 39}, [797] = {.lex_state = 41, .external_lex_state = 4}, - [798] = {.lex_state = 25, .external_lex_state = 4}, - [799] = {.lex_state = 882, .external_lex_state = 4}, - [800] = {.lex_state = 25, .external_lex_state = 4}, - [801] = {.lex_state = 39}, - [802] = {.lex_state = 25, .external_lex_state = 4}, - [803] = {.lex_state = 882, .external_lex_state = 4}, - [804] = {.lex_state = 882, .external_lex_state = 4}, - [805] = {.lex_state = 41, .external_lex_state = 2}, + [798] = {.lex_state = 41, .external_lex_state = 4}, + [799] = {.lex_state = 41, .external_lex_state = 4}, + [800] = {.lex_state = 887}, + [801] = {.lex_state = 25, .external_lex_state = 1}, + [802] = {.lex_state = 111}, + [803] = {.lex_state = 41, .external_lex_state = 4}, + [804] = {.lex_state = 886, .external_lex_state = 4}, + [805] = {.lex_state = 99}, [806] = {.lex_state = 25, .external_lex_state = 4}, - [807] = {.lex_state = 39}, - [808] = {.lex_state = 882, .external_lex_state = 4}, - [809] = {.lex_state = 25, .external_lex_state = 4}, - [810] = {.lex_state = 882, .external_lex_state = 4}, - [811] = {.lex_state = 25, .external_lex_state = 4}, - [812] = {.lex_state = 882, .external_lex_state = 4}, + [807] = {.lex_state = 25, .external_lex_state = 4}, + [808] = {.lex_state = 25, .external_lex_state = 4}, + [809] = {.lex_state = 24, .external_lex_state = 1}, + [810] = {.lex_state = 886, .external_lex_state = 4}, + [811] = {.lex_state = 24, .external_lex_state = 1}, + [812] = {.lex_state = 41, .external_lex_state = 3}, [813] = {.lex_state = 25, .external_lex_state = 4}, - [814] = {.lex_state = 24, .external_lex_state = 1}, - [815] = {.lex_state = 41, .external_lex_state = 2}, + [814] = {.lex_state = 886, .external_lex_state = 4}, + [815] = {.lex_state = 25, .external_lex_state = 4}, [816] = {.lex_state = 25, .external_lex_state = 4}, - [817] = {.lex_state = 24, .external_lex_state = 1}, - [818] = {.lex_state = 25, .external_lex_state = 4}, - [819] = {.lex_state = 25, .external_lex_state = 4}, + [817] = {.lex_state = 41, .external_lex_state = 3}, + [818] = {.lex_state = 886, .external_lex_state = 4}, + [819] = {.lex_state = 886, .external_lex_state = 4}, [820] = {.lex_state = 25, .external_lex_state = 4}, - [821] = {.lex_state = 24, .external_lex_state = 4}, - [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 = 24, .external_lex_state = 4}, + [821] = {.lex_state = 25, .external_lex_state = 4}, + [822] = {.lex_state = 25, .external_lex_state = 4}, + [823] = {.lex_state = 25, .external_lex_state = 4}, + [824] = {.lex_state = 886, .external_lex_state = 4}, + [825] = {.lex_state = 25, .external_lex_state = 4}, [826] = {.lex_state = 24, .external_lex_state = 4}, - [827] = {.lex_state = 41, .external_lex_state = 3}, - [828] = {.lex_state = 25, .external_lex_state = 2}, - [829] = {.lex_state = 96}, - [830] = {.lex_state = 24, .external_lex_state = 4}, + [827] = {.lex_state = 24, .external_lex_state = 4}, + [828] = {.lex_state = 98}, + [829] = {.lex_state = 98}, + [830] = {.lex_state = 25, .external_lex_state = 3}, [831] = {.lex_state = 24, .external_lex_state = 4}, [832] = {.lex_state = 24, .external_lex_state = 4}, [833] = {.lex_state = 24, .external_lex_state = 4}, [834] = {.lex_state = 24, .external_lex_state = 4}, - [835] = {.lex_state = 96}, - [836] = {.lex_state = 25, .external_lex_state = 2}, + [835] = {.lex_state = 24, .external_lex_state = 4}, + [836] = {.lex_state = 24, .external_lex_state = 4}, [837] = {.lex_state = 24, .external_lex_state = 4}, - [838] = {.lex_state = 41, .external_lex_state = 3}, - [839] = {.lex_state = 882, .external_lex_state = 4}, - [840] = {.lex_state = 24, .external_lex_state = 4}, - [841] = {.lex_state = 96}, - [842] = {.lex_state = 41, .external_lex_state = 3}, - [843] = {.lex_state = 883}, - [844] = {.lex_state = 25, .external_lex_state = 3}, - [845] = {.lex_state = 97}, - [846] = {.lex_state = 97}, - [847] = {.lex_state = 97}, - [848] = {.lex_state = 97}, - [849] = {.lex_state = 97}, - [850] = {.lex_state = 97}, - [851] = {.lex_state = 97}, - [852] = {.lex_state = 882, .external_lex_state = 4}, - [853] = {.lex_state = 97}, - [854] = {.lex_state = 24, .external_lex_state = 2}, - [855] = {.lex_state = 882, .external_lex_state = 4}, - [856] = {.lex_state = 97}, - [857] = {.lex_state = 97}, - [858] = {.lex_state = 97}, - [859] = {.lex_state = 97}, - [860] = {.lex_state = 882, .external_lex_state = 4}, - [861] = {.lex_state = 97}, - [862] = {.lex_state = 882, .external_lex_state = 4}, - [863] = {.lex_state = 97}, - [864] = {.lex_state = 97}, - [865] = {.lex_state = 97}, - [866] = {.lex_state = 883}, - [867] = {.lex_state = 97}, - [868] = {.lex_state = 883}, - [869] = {.lex_state = 97}, - [870] = {.lex_state = 97}, - [871] = {.lex_state = 25, .external_lex_state = 3}, - [872] = {.lex_state = 97}, - [873] = {.lex_state = 109}, - [874] = {.lex_state = 25, .external_lex_state = 3}, - [875] = {.lex_state = 97}, - [876] = {.lex_state = 25, .external_lex_state = 3}, - [877] = {.lex_state = 97}, - [878] = {.lex_state = 97}, - [879] = {.lex_state = 97}, - [880] = {.lex_state = 97}, - [881] = {.lex_state = 883}, - [882] = {.lex_state = 883}, - [883] = {.lex_state = 97}, - [884] = {.lex_state = 97}, - [885] = {.lex_state = 97}, - [886] = {.lex_state = 97}, - [887] = {.lex_state = 97}, - [888] = {.lex_state = 883}, - [889] = {.lex_state = 97}, - [890] = {.lex_state = 97}, - [891] = {.lex_state = 883}, - [892] = {.lex_state = 883}, - [893] = {.lex_state = 97}, - [894] = {.lex_state = 97}, - [895] = {.lex_state = 97}, - [896] = {.lex_state = 41, .external_lex_state = 3}, - [897] = {.lex_state = 97}, - [898] = {.lex_state = 41, .external_lex_state = 4}, - [899] = {.lex_state = 97}, - [900] = {.lex_state = 883}, - [901] = {.lex_state = 883}, - [902] = {.lex_state = 883}, - [903] = {.lex_state = 97}, - [904] = {.lex_state = 883}, - [905] = {.lex_state = 97}, - [906] = {.lex_state = 883}, - [907] = {.lex_state = 97}, - [908] = {.lex_state = 97}, - [909] = {.lex_state = 97}, - [910] = {.lex_state = 97}, - [911] = {.lex_state = 97}, - [912] = {.lex_state = 883}, - [913] = {.lex_state = 883}, - [914] = {.lex_state = 883}, - [915] = {.lex_state = 883}, - [916] = {.lex_state = 97}, - [917] = {.lex_state = 97}, - [918] = {.lex_state = 97}, - [919] = {.lex_state = 97}, - [920] = {.lex_state = 97}, - [921] = {.lex_state = 41, .external_lex_state = 4}, - [922] = {.lex_state = 97}, - [923] = {.lex_state = 97}, - [924] = {.lex_state = 97}, - [925] = {.lex_state = 97}, - [926] = {.lex_state = 883}, - [927] = {.lex_state = 883}, - [928] = {.lex_state = 883}, - [929] = {.lex_state = 97}, - [930] = {.lex_state = 883}, - [931] = {.lex_state = 883}, - [932] = {.lex_state = 883}, - [933] = {.lex_state = 883}, - [934] = {.lex_state = 883}, - [935] = {.lex_state = 883}, - [936] = {.lex_state = 97}, - [937] = {.lex_state = 883}, - [938] = {.lex_state = 883}, - [939] = {.lex_state = 97}, - [940] = {.lex_state = 883}, - [941] = {.lex_state = 97}, - [942] = {.lex_state = 883}, - [943] = {.lex_state = 97}, - [944] = {.lex_state = 97}, - [945] = {.lex_state = 97}, - [946] = {.lex_state = 883}, - [947] = {.lex_state = 97}, - [948] = {.lex_state = 97}, - [949] = {.lex_state = 883}, - [950] = {.lex_state = 883}, - [951] = {.lex_state = 883}, - [952] = {.lex_state = 97}, - [953] = {.lex_state = 97}, - [954] = {.lex_state = 883}, - [955] = {.lex_state = 883}, - [956] = {.lex_state = 883}, - [957] = {.lex_state = 883}, - [958] = {.lex_state = 883}, - [959] = {.lex_state = 883}, - [960] = {.lex_state = 883}, - [961] = {.lex_state = 883}, - [962] = {.lex_state = 883}, - [963] = {.lex_state = 97}, - [964] = {.lex_state = 97}, - [965] = {.lex_state = 97}, - [966] = {.lex_state = 24, .external_lex_state = 2}, - [967] = {.lex_state = 97}, - [968] = {.lex_state = 883}, - [969] = {.lex_state = 97}, - [970] = {.lex_state = 883}, - [971] = {.lex_state = 883}, - [972] = {.lex_state = 883}, - [973] = {.lex_state = 97}, - [974] = {.lex_state = 97}, - [975] = {.lex_state = 97}, - [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 = 883}, - [983] = {.lex_state = 97}, - [984] = {.lex_state = 97}, - [985] = {.lex_state = 97}, - [986] = {.lex_state = 883}, - [987] = {.lex_state = 97}, - [988] = {.lex_state = 883}, - [989] = {.lex_state = 97}, - [990] = {.lex_state = 883}, - [991] = {.lex_state = 883}, - [992] = {.lex_state = 883}, - [993] = {.lex_state = 883}, - [994] = {.lex_state = 883}, - [995] = {.lex_state = 883}, - [996] = {.lex_state = 883}, - [997] = {.lex_state = 883}, - [998] = {.lex_state = 883}, - [999] = {.lex_state = 45, .external_lex_state = 4}, - [1000] = {.lex_state = 97}, - [1001] = {.lex_state = 97}, - [1002] = {.lex_state = 97}, - [1003] = {.lex_state = 883}, - [1004] = {.lex_state = 883}, - [1005] = {.lex_state = 883}, - [1006] = {.lex_state = 883}, - [1007] = {.lex_state = 883}, - [1008] = {.lex_state = 97}, - [1009] = {.lex_state = 97}, - [1010] = {.lex_state = 883}, - [1011] = {.lex_state = 97}, - [1012] = {.lex_state = 97}, - [1013] = {.lex_state = 883}, - [1014] = {.lex_state = 883}, - [1015] = {.lex_state = 97}, - [1016] = {.lex_state = 97}, - [1017] = {.lex_state = 97}, - [1018] = {.lex_state = 883}, - [1019] = {.lex_state = 97}, - [1020] = {.lex_state = 97}, - [1021] = {.lex_state = 97}, - [1022] = {.lex_state = 97}, - [1023] = {.lex_state = 97}, - [1024] = {.lex_state = 97}, - [1025] = {.lex_state = 97}, - [1026] = {.lex_state = 883}, - [1027] = {.lex_state = 97}, - [1028] = {.lex_state = 97}, - [1029] = {.lex_state = 883}, - [1030] = {.lex_state = 97}, - [1031] = {.lex_state = 97}, - [1032] = {.lex_state = 883}, - [1033] = {.lex_state = 883}, - [1034] = {.lex_state = 883}, - [1035] = {.lex_state = 883}, - [1036] = {.lex_state = 97}, - [1037] = {.lex_state = 97}, - [1038] = {.lex_state = 97}, - [1039] = {.lex_state = 883}, - [1040] = {.lex_state = 883}, - [1041] = {.lex_state = 45, .external_lex_state = 4}, - [1042] = {.lex_state = 97}, - [1043] = {.lex_state = 97}, - [1044] = {.lex_state = 883}, - [1045] = {.lex_state = 883}, - [1046] = {.lex_state = 25, .external_lex_state = 2}, - [1047] = {.lex_state = 883}, - [1048] = {.lex_state = 97}, - [1049] = {.lex_state = 97}, - [1050] = {.lex_state = 97}, - [1051] = {.lex_state = 97}, - [1052] = {.lex_state = 883}, - [1053] = {.lex_state = 97}, - [1054] = {.lex_state = 97}, - [1055] = {.lex_state = 883}, - [1056] = {.lex_state = 41, .external_lex_state = 3}, - [1057] = {.lex_state = 883}, - [1058] = {.lex_state = 883}, - [1059] = {.lex_state = 883}, - [1060] = {.lex_state = 883}, - [1061] = {.lex_state = 97}, - [1062] = {.lex_state = 883}, - [1063] = {.lex_state = 883}, - [1064] = {.lex_state = 97}, - [1065] = {.lex_state = 883}, - [1066] = {.lex_state = 883}, - [1067] = {.lex_state = 883}, - [1068] = {.lex_state = 883}, - [1069] = {.lex_state = 883}, - [1070] = {.lex_state = 46, .external_lex_state = 4}, - [1071] = {.lex_state = 883}, - [1072] = {.lex_state = 883}, - [1073] = {.lex_state = 883}, - [1074] = {.lex_state = 883}, - [1075] = {.lex_state = 97}, - [1076] = {.lex_state = 97}, - [1077] = {.lex_state = 97}, - [1078] = {.lex_state = 97}, - [1079] = {.lex_state = 97}, - [1080] = {.lex_state = 97}, - [1081] = {.lex_state = 883}, - [1082] = {.lex_state = 883}, - [1083] = {.lex_state = 97}, - [1084] = {.lex_state = 97}, - [1085] = {.lex_state = 97}, - [1086] = {.lex_state = 883}, - [1087] = {.lex_state = 97}, - [1088] = {.lex_state = 883}, - [1089] = {.lex_state = 883}, - [1090] = {.lex_state = 883}, - [1091] = {.lex_state = 883}, - [1092] = {.lex_state = 883}, - [1093] = {.lex_state = 883}, - [1094] = {.lex_state = 883}, - [1095] = {.lex_state = 883}, - [1096] = {.lex_state = 883}, - [1097] = {.lex_state = 97}, - [1098] = {.lex_state = 97}, - [1099] = {.lex_state = 883}, - [1100] = {.lex_state = 883}, - [1101] = {.lex_state = 883}, - [1102] = {.lex_state = 883}, - [1103] = {.lex_state = 883}, - [1104] = {.lex_state = 883}, - [1105] = {.lex_state = 883}, - [1106] = {.lex_state = 883}, - [1107] = {.lex_state = 883}, - [1108] = {.lex_state = 883}, - [1109] = {.lex_state = 883}, - [1110] = {.lex_state = 883}, - [1111] = {.lex_state = 883}, - [1112] = {.lex_state = 97}, - [1113] = {.lex_state = 97}, - [1114] = {.lex_state = 97}, - [1115] = {.lex_state = 97}, - [1116] = {.lex_state = 97}, - [1117] = {.lex_state = 883}, - [1118] = {.lex_state = 97}, - [1119] = {.lex_state = 883}, - [1120] = {.lex_state = 883}, - [1121] = {.lex_state = 883}, - [1122] = {.lex_state = 883}, - [1123] = {.lex_state = 883}, - [1124] = {.lex_state = 883}, - [1125] = {.lex_state = 883}, - [1126] = {.lex_state = 883}, - [1127] = {.lex_state = 883}, - [1128] = {.lex_state = 46, .external_lex_state = 4}, - [1129] = {.lex_state = 883}, - [1130] = {.lex_state = 883}, - [1131] = {.lex_state = 883}, - [1132] = {.lex_state = 97}, - [1133] = {.lex_state = 884}, - [1134] = {.lex_state = 884}, - [1135] = {.lex_state = 98}, - [1136] = {.lex_state = 884}, - [1137] = {.lex_state = 98}, - [1138] = {.lex_state = 884}, - [1139] = {.lex_state = 98}, - [1140] = {.lex_state = 98}, - [1141] = {.lex_state = 25, .external_lex_state = 4}, - [1142] = {.lex_state = 98}, - [1143] = {.lex_state = 98}, - [1144] = {.lex_state = 98}, - [1145] = {.lex_state = 98}, - [1146] = {.lex_state = 884}, - [1147] = {.lex_state = 884}, - [1148] = {.lex_state = 884}, - [1149] = {.lex_state = 41, .external_lex_state = 4}, - [1150] = {.lex_state = 884}, - [1151] = {.lex_state = 98}, - [1152] = {.lex_state = 884}, - [1153] = {.lex_state = 884}, - [1154] = {.lex_state = 884}, - [1155] = {.lex_state = 98}, - [1156] = {.lex_state = 98}, - [1157] = {.lex_state = 98}, - [1158] = {.lex_state = 41, .external_lex_state = 4}, - [1159] = {.lex_state = 98}, - [1160] = {.lex_state = 98}, - [1161] = {.lex_state = 98}, - [1162] = {.lex_state = 98}, - [1163] = {.lex_state = 884}, - [1164] = {.lex_state = 884}, - [1165] = {.lex_state = 98}, - [1166] = {.lex_state = 98}, - [1167] = {.lex_state = 884}, - [1168] = {.lex_state = 882, .external_lex_state = 4}, - [1169] = {.lex_state = 884}, - [1170] = {.lex_state = 884}, - [1171] = {.lex_state = 39, .external_lex_state = 5}, - [1172] = {.lex_state = 882, .external_lex_state = 1}, - [1173] = {.lex_state = 882, .external_lex_state = 4}, - [1174] = {.lex_state = 39, .external_lex_state = 5}, - [1175] = {.lex_state = 98}, - [1176] = {.lex_state = 884}, - [1177] = {.lex_state = 884}, - [1178] = {.lex_state = 884}, - [1179] = {.lex_state = 24, .external_lex_state = 3}, - [1180] = {.lex_state = 884}, - [1181] = {.lex_state = 884}, - [1182] = {.lex_state = 884}, - [1183] = {.lex_state = 98}, - [1184] = {.lex_state = 884}, - [1185] = {.lex_state = 98}, - [1186] = {.lex_state = 98}, - [1187] = {.lex_state = 884}, - [1188] = {.lex_state = 884}, - [1189] = {.lex_state = 884}, - [1190] = {.lex_state = 884}, - [1191] = {.lex_state = 884}, - [1192] = {.lex_state = 24, .external_lex_state = 3}, - [1193] = {.lex_state = 98}, - [1194] = {.lex_state = 884}, - [1195] = {.lex_state = 884}, - [1196] = {.lex_state = 98}, - [1197] = {.lex_state = 884}, - [1198] = {.lex_state = 884}, - [1199] = {.lex_state = 884}, - [1200] = {.lex_state = 98}, - [1201] = {.lex_state = 884}, - [1202] = {.lex_state = 41, .external_lex_state = 4}, - [1203] = {.lex_state = 98}, - [1204] = {.lex_state = 98}, - [1205] = {.lex_state = 98}, - [1206] = {.lex_state = 39, .external_lex_state = 5}, - [1207] = {.lex_state = 98}, - [1208] = {.lex_state = 884}, - [1209] = {.lex_state = 884}, - [1210] = {.lex_state = 884}, - [1211] = {.lex_state = 884}, - [1212] = {.lex_state = 884}, - [1213] = {.lex_state = 882, .external_lex_state = 1}, - [1214] = {.lex_state = 884}, - [1215] = {.lex_state = 884}, - [1216] = {.lex_state = 98}, - [1217] = {.lex_state = 884}, - [1218] = {.lex_state = 884}, - [1219] = {.lex_state = 884}, - [1220] = {.lex_state = 98}, - [1221] = {.lex_state = 884}, - [1222] = {.lex_state = 41, .external_lex_state = 4}, - [1223] = {.lex_state = 41, .external_lex_state = 4}, - [1224] = {.lex_state = 41, .external_lex_state = 4}, - [1225] = {.lex_state = 41, .external_lex_state = 4}, - [1226] = {.lex_state = 884}, - [1227] = {.lex_state = 41, .external_lex_state = 4}, - [1228] = {.lex_state = 41, .external_lex_state = 4}, - [1229] = {.lex_state = 882, .external_lex_state = 4}, - [1230] = {.lex_state = 884}, - [1231] = {.lex_state = 96}, - [1232] = {.lex_state = 884}, - [1233] = {.lex_state = 884}, - [1234] = {.lex_state = 884}, - [1235] = {.lex_state = 884}, - [1236] = {.lex_state = 884}, - [1237] = {.lex_state = 884}, - [1238] = {.lex_state = 98}, - [1239] = {.lex_state = 884}, - [1240] = {.lex_state = 884}, - [1241] = {.lex_state = 98}, - [1242] = {.lex_state = 884}, - [1243] = {.lex_state = 41, .external_lex_state = 4}, - [1244] = {.lex_state = 41, .external_lex_state = 4}, - [1245] = {.lex_state = 41, .external_lex_state = 4}, - [1246] = {.lex_state = 98}, - [1247] = {.lex_state = 884}, - [1248] = {.lex_state = 41, .external_lex_state = 4}, - [1249] = {.lex_state = 98}, - [1250] = {.lex_state = 884}, - [1251] = {.lex_state = 98}, - [1252] = {.lex_state = 41, .external_lex_state = 4}, - [1253] = {.lex_state = 24, .external_lex_state = 3}, - [1254] = {.lex_state = 98}, - [1255] = {.lex_state = 98}, - [1256] = {.lex_state = 98}, - [1257] = {.lex_state = 98}, - [1258] = {.lex_state = 98}, - [1259] = {.lex_state = 98}, - [1260] = {.lex_state = 98}, - [1261] = {.lex_state = 884}, - [1262] = {.lex_state = 882, .external_lex_state = 4}, - [1263] = {.lex_state = 882, .external_lex_state = 1}, - [1264] = {.lex_state = 26, .external_lex_state = 4}, - [1265] = {.lex_state = 24, .external_lex_state = 3}, - [1266] = {.lex_state = 884}, - [1267] = {.lex_state = 884}, - [1268] = {.lex_state = 109}, - [1269] = {.lex_state = 882, .external_lex_state = 4}, - [1270] = {.lex_state = 98}, - [1271] = {.lex_state = 882, .external_lex_state = 4}, - [1272] = {.lex_state = 41, .external_lex_state = 4}, - [1273] = {.lex_state = 882, .external_lex_state = 4}, - [1274] = {.lex_state = 884}, - [1275] = {.lex_state = 41, .external_lex_state = 4}, - [1276] = {.lex_state = 39, .external_lex_state = 5}, - [1277] = {.lex_state = 882, .external_lex_state = 4}, - [1278] = {.lex_state = 884}, - [1279] = {.lex_state = 98}, - [1280] = {.lex_state = 98}, - [1281] = {.lex_state = 884}, - [1282] = {.lex_state = 884}, - [1283] = {.lex_state = 884}, - [1284] = {.lex_state = 884}, - [1285] = {.lex_state = 884}, - [1286] = {.lex_state = 884}, - [1287] = {.lex_state = 884}, - [1288] = {.lex_state = 884}, - [1289] = {.lex_state = 98}, - [1290] = {.lex_state = 882, .external_lex_state = 4}, - [1291] = {.lex_state = 98}, - [1292] = {.lex_state = 884}, - [1293] = {.lex_state = 884}, - [1294] = {.lex_state = 884}, - [1295] = {.lex_state = 884}, - [1296] = {.lex_state = 884}, - [1297] = {.lex_state = 884}, - [1298] = {.lex_state = 884}, - [1299] = {.lex_state = 884}, - [1300] = {.lex_state = 884}, - [1301] = {.lex_state = 884}, - [1302] = {.lex_state = 98}, - [1303] = {.lex_state = 98}, - [1304] = {.lex_state = 882, .external_lex_state = 4}, - [1305] = {.lex_state = 98}, - [1306] = {.lex_state = 98}, - [1307] = {.lex_state = 98}, - [1308] = {.lex_state = 884}, - [1309] = {.lex_state = 884}, - [1310] = {.lex_state = 98}, - [1311] = {.lex_state = 884}, - [1312] = {.lex_state = 41, .external_lex_state = 4}, - [1313] = {.lex_state = 882, .external_lex_state = 4}, - [1314] = {.lex_state = 882, .external_lex_state = 4}, - [1315] = {.lex_state = 24, .external_lex_state = 4}, - [1316] = {.lex_state = 98}, - [1317] = {.lex_state = 884}, - [1318] = {.lex_state = 41, .external_lex_state = 4}, - [1319] = {.lex_state = 98}, - [1320] = {.lex_state = 884}, - [1321] = {.lex_state = 884}, - [1322] = {.lex_state = 882, .external_lex_state = 4}, - [1323] = {.lex_state = 884}, - [1324] = {.lex_state = 884}, - [1325] = {.lex_state = 884}, - [1326] = {.lex_state = 882, .external_lex_state = 4}, - [1327] = {.lex_state = 884}, - [1328] = {.lex_state = 98}, - [1329] = {.lex_state = 98}, - [1330] = {.lex_state = 98}, - [1331] = {.lex_state = 884}, - [1332] = {.lex_state = 884}, - [1333] = {.lex_state = 26, .external_lex_state = 4}, - [1334] = {.lex_state = 41, .external_lex_state = 4}, - [1335] = {.lex_state = 98}, - [1336] = {.lex_state = 882, .external_lex_state = 4}, - [1337] = {.lex_state = 882, .external_lex_state = 4}, - [1338] = {.lex_state = 882, .external_lex_state = 1}, - [1339] = {.lex_state = 882, .external_lex_state = 1}, - [1340] = {.lex_state = 41, .external_lex_state = 4}, - [1341] = {.lex_state = 882, .external_lex_state = 4}, - [1342] = {.lex_state = 884}, - [1343] = {.lex_state = 41, .external_lex_state = 4}, - [1344] = {.lex_state = 884}, - [1345] = {.lex_state = 41, .external_lex_state = 4}, - [1346] = {.lex_state = 882, .external_lex_state = 4}, - [1347] = {.lex_state = 882, .external_lex_state = 4}, - [1348] = {.lex_state = 884}, - [1349] = {.lex_state = 39, .external_lex_state = 5}, - [1350] = {.lex_state = 882, .external_lex_state = 4}, - [1351] = {.lex_state = 882, .external_lex_state = 4}, - [1352] = {.lex_state = 884}, - [1353] = {.lex_state = 884}, - [1354] = {.lex_state = 41, .external_lex_state = 4}, - [1355] = {.lex_state = 98}, - [1356] = {.lex_state = 884}, - [1357] = {.lex_state = 884}, - [1358] = {.lex_state = 884}, - [1359] = {.lex_state = 41, .external_lex_state = 4}, - [1360] = {.lex_state = 39, .external_lex_state = 5}, - [1361] = {.lex_state = 884}, - [1362] = {.lex_state = 884}, - [1363] = {.lex_state = 98}, - [1364] = {.lex_state = 884}, - [1365] = {.lex_state = 884}, - [1366] = {.lex_state = 884}, - [1367] = {.lex_state = 98}, - [1368] = {.lex_state = 98}, - [1369] = {.lex_state = 884}, - [1370] = {.lex_state = 884}, - [1371] = {.lex_state = 884}, - [1372] = {.lex_state = 884}, - [1373] = {.lex_state = 41, .external_lex_state = 4}, - [1374] = {.lex_state = 884}, - [1375] = {.lex_state = 884}, - [1376] = {.lex_state = 884}, - [1377] = {.lex_state = 884}, - [1378] = {.lex_state = 884}, - [1379] = {.lex_state = 884}, - [1380] = {.lex_state = 98}, - [1381] = {.lex_state = 98}, - [1382] = {.lex_state = 98}, - [1383] = {.lex_state = 24, .external_lex_state = 2}, + [838] = {.lex_state = 98}, + [839] = {.lex_state = 41, .external_lex_state = 2}, + [840] = {.lex_state = 41, .external_lex_state = 2}, + [841] = {.lex_state = 25, .external_lex_state = 3}, + [842] = {.lex_state = 886, .external_lex_state = 4}, + [843] = {.lex_state = 41, .external_lex_state = 3}, + [844] = {.lex_state = 24, .external_lex_state = 4}, + [845] = {.lex_state = 41, .external_lex_state = 2}, + [846] = {.lex_state = 41, .external_lex_state = 2}, + [847] = {.lex_state = 24, .external_lex_state = 4}, + [848] = {.lex_state = 99}, + [849] = {.lex_state = 24, .external_lex_state = 3}, + [850] = {.lex_state = 887}, + [851] = {.lex_state = 887}, + [852] = {.lex_state = 887}, + [853] = {.lex_state = 887}, + [854] = {.lex_state = 887}, + [855] = {.lex_state = 99}, + [856] = {.lex_state = 887}, + [857] = {.lex_state = 887}, + [858] = {.lex_state = 887}, + [859] = {.lex_state = 887}, + [860] = {.lex_state = 887}, + [861] = {.lex_state = 887}, + [862] = {.lex_state = 887}, + [863] = {.lex_state = 887}, + [864] = {.lex_state = 887}, + [865] = {.lex_state = 887}, + [866] = {.lex_state = 886, .external_lex_state = 4}, + [867] = {.lex_state = 99}, + [868] = {.lex_state = 887}, + [869] = {.lex_state = 99}, + [870] = {.lex_state = 99}, + [871] = {.lex_state = 887}, + [872] = {.lex_state = 887}, + [873] = {.lex_state = 887}, + [874] = {.lex_state = 887}, + [875] = {.lex_state = 46, .external_lex_state = 4}, + [876] = {.lex_state = 887}, + [877] = {.lex_state = 886, .external_lex_state = 4}, + [878] = {.lex_state = 887}, + [879] = {.lex_state = 887}, + [880] = {.lex_state = 887}, + [881] = {.lex_state = 887}, + [882] = {.lex_state = 887}, + [883] = {.lex_state = 887}, + [884] = {.lex_state = 99}, + [885] = {.lex_state = 99}, + [886] = {.lex_state = 99}, + [887] = {.lex_state = 99}, + [888] = {.lex_state = 99}, + [889] = {.lex_state = 99}, + [890] = {.lex_state = 99}, + [891] = {.lex_state = 99}, + [892] = {.lex_state = 887}, + [893] = {.lex_state = 99}, + [894] = {.lex_state = 99}, + [895] = {.lex_state = 887}, + [896] = {.lex_state = 887}, + [897] = {.lex_state = 887}, + [898] = {.lex_state = 46, .external_lex_state = 4}, + [899] = {.lex_state = 887}, + [900] = {.lex_state = 887}, + [901] = {.lex_state = 887}, + [902] = {.lex_state = 887}, + [903] = {.lex_state = 887}, + [904] = {.lex_state = 887}, + [905] = {.lex_state = 99}, + [906] = {.lex_state = 887}, + [907] = {.lex_state = 887}, + [908] = {.lex_state = 99}, + [909] = {.lex_state = 99}, + [910] = {.lex_state = 99}, + [911] = {.lex_state = 99}, + [912] = {.lex_state = 99}, + [913] = {.lex_state = 99}, + [914] = {.lex_state = 99}, + [915] = {.lex_state = 99}, + [916] = {.lex_state = 99}, + [917] = {.lex_state = 99}, + [918] = {.lex_state = 99}, + [919] = {.lex_state = 99}, + [920] = {.lex_state = 45, .external_lex_state = 4}, + [921] = {.lex_state = 99}, + [922] = {.lex_state = 99}, + [923] = {.lex_state = 887}, + [924] = {.lex_state = 99}, + [925] = {.lex_state = 887}, + [926] = {.lex_state = 99}, + [927] = {.lex_state = 887}, + [928] = {.lex_state = 99}, + [929] = {.lex_state = 99}, + [930] = {.lex_state = 99}, + [931] = {.lex_state = 99}, + [932] = {.lex_state = 99}, + [933] = {.lex_state = 25, .external_lex_state = 2}, + [934] = {.lex_state = 99}, + [935] = {.lex_state = 99}, + [936] = {.lex_state = 99}, + [937] = {.lex_state = 25, .external_lex_state = 2}, + [938] = {.lex_state = 887}, + [939] = {.lex_state = 99}, + [940] = {.lex_state = 99}, + [941] = {.lex_state = 99}, + [942] = {.lex_state = 887}, + [943] = {.lex_state = 887}, + [944] = {.lex_state = 99}, + [945] = {.lex_state = 99}, + [946] = {.lex_state = 99}, + [947] = {.lex_state = 887}, + [948] = {.lex_state = 887}, + [949] = {.lex_state = 887}, + [950] = {.lex_state = 99}, + [951] = {.lex_state = 99}, + [952] = {.lex_state = 887}, + [953] = {.lex_state = 887}, + [954] = {.lex_state = 887}, + [955] = {.lex_state = 887}, + [956] = {.lex_state = 887}, + [957] = {.lex_state = 99}, + [958] = {.lex_state = 99}, + [959] = {.lex_state = 99}, + [960] = {.lex_state = 99}, + [961] = {.lex_state = 887}, + [962] = {.lex_state = 99}, + [963] = {.lex_state = 25, .external_lex_state = 3}, + [964] = {.lex_state = 99}, + [965] = {.lex_state = 99}, + [966] = {.lex_state = 99}, + [967] = {.lex_state = 886, .external_lex_state = 4}, + [968] = {.lex_state = 99}, + [969] = {.lex_state = 99}, + [970] = {.lex_state = 887}, + [971] = {.lex_state = 887}, + [972] = {.lex_state = 99}, + [973] = {.lex_state = 99}, + [974] = {.lex_state = 99}, + [975] = {.lex_state = 887}, + [976] = {.lex_state = 887}, + [977] = {.lex_state = 41, .external_lex_state = 2}, + [978] = {.lex_state = 887}, + [979] = {.lex_state = 887}, + [980] = {.lex_state = 887}, + [981] = {.lex_state = 887}, + [982] = {.lex_state = 99}, + [983] = {.lex_state = 887}, + [984] = {.lex_state = 99}, + [985] = {.lex_state = 887}, + [986] = {.lex_state = 887}, + [987] = {.lex_state = 887}, + [988] = {.lex_state = 887}, + [989] = {.lex_state = 99}, + [990] = {.lex_state = 887}, + [991] = {.lex_state = 887}, + [992] = {.lex_state = 99}, + [993] = {.lex_state = 887}, + [994] = {.lex_state = 99}, + [995] = {.lex_state = 887}, + [996] = {.lex_state = 887}, + [997] = {.lex_state = 887}, + [998] = {.lex_state = 99}, + [999] = {.lex_state = 99}, + [1000] = {.lex_state = 887}, + [1001] = {.lex_state = 887}, + [1002] = {.lex_state = 99}, + [1003] = {.lex_state = 99}, + [1004] = {.lex_state = 99}, + [1005] = {.lex_state = 99}, + [1006] = {.lex_state = 99}, + [1007] = {.lex_state = 99}, + [1008] = {.lex_state = 99}, + [1009] = {.lex_state = 99}, + [1010] = {.lex_state = 99}, + [1011] = {.lex_state = 99}, + [1012] = {.lex_state = 99}, + [1013] = {.lex_state = 99}, + [1014] = {.lex_state = 99}, + [1015] = {.lex_state = 887}, + [1016] = {.lex_state = 99}, + [1017] = {.lex_state = 99}, + [1018] = {.lex_state = 99}, + [1019] = {.lex_state = 887}, + [1020] = {.lex_state = 99}, + [1021] = {.lex_state = 887}, + [1022] = {.lex_state = 99}, + [1023] = {.lex_state = 887}, + [1024] = {.lex_state = 887}, + [1025] = {.lex_state = 887}, + [1026] = {.lex_state = 99}, + [1027] = {.lex_state = 99}, + [1028] = {.lex_state = 887}, + [1029] = {.lex_state = 99}, + [1030] = {.lex_state = 99}, + [1031] = {.lex_state = 99}, + [1032] = {.lex_state = 886, .external_lex_state = 4}, + [1033] = {.lex_state = 41, .external_lex_state = 4}, + [1034] = {.lex_state = 887}, + [1035] = {.lex_state = 99}, + [1036] = {.lex_state = 99}, + [1037] = {.lex_state = 99}, + [1038] = {.lex_state = 99}, + [1039] = {.lex_state = 99}, + [1040] = {.lex_state = 99}, + [1041] = {.lex_state = 99}, + [1042] = {.lex_state = 99}, + [1043] = {.lex_state = 99}, + [1044] = {.lex_state = 99}, + [1045] = {.lex_state = 99}, + [1046] = {.lex_state = 887}, + [1047] = {.lex_state = 887}, + [1048] = {.lex_state = 887}, + [1049] = {.lex_state = 99}, + [1050] = {.lex_state = 887}, + [1051] = {.lex_state = 887}, + [1052] = {.lex_state = 99}, + [1053] = {.lex_state = 887}, + [1054] = {.lex_state = 887}, + [1055] = {.lex_state = 99}, + [1056] = {.lex_state = 887}, + [1057] = {.lex_state = 99}, + [1058] = {.lex_state = 99}, + [1059] = {.lex_state = 887}, + [1060] = {.lex_state = 99}, + [1061] = {.lex_state = 887}, + [1062] = {.lex_state = 99}, + [1063] = {.lex_state = 99}, + [1064] = {.lex_state = 887}, + [1065] = {.lex_state = 887}, + [1066] = {.lex_state = 111}, + [1067] = {.lex_state = 99}, + [1068] = {.lex_state = 45, .external_lex_state = 4}, + [1069] = {.lex_state = 99}, + [1070] = {.lex_state = 99}, + [1071] = {.lex_state = 99}, + [1072] = {.lex_state = 99}, + [1073] = {.lex_state = 99}, + [1074] = {.lex_state = 99}, + [1075] = {.lex_state = 99}, + [1076] = {.lex_state = 887}, + [1077] = {.lex_state = 99}, + [1078] = {.lex_state = 99}, + [1079] = {.lex_state = 99}, + [1080] = {.lex_state = 887}, + [1081] = {.lex_state = 887}, + [1082] = {.lex_state = 887}, + [1083] = {.lex_state = 99}, + [1084] = {.lex_state = 887}, + [1085] = {.lex_state = 887}, + [1086] = {.lex_state = 887}, + [1087] = {.lex_state = 99}, + [1088] = {.lex_state = 99}, + [1089] = {.lex_state = 99}, + [1090] = {.lex_state = 887}, + [1091] = {.lex_state = 99}, + [1092] = {.lex_state = 99}, + [1093] = {.lex_state = 99}, + [1094] = {.lex_state = 99}, + [1095] = {.lex_state = 99}, + [1096] = {.lex_state = 99}, + [1097] = {.lex_state = 99}, + [1098] = {.lex_state = 41, .external_lex_state = 4}, + [1099] = {.lex_state = 99}, + [1100] = {.lex_state = 887}, + [1101] = {.lex_state = 887}, + [1102] = {.lex_state = 887}, + [1103] = {.lex_state = 887}, + [1104] = {.lex_state = 887}, + [1105] = {.lex_state = 887}, + [1106] = {.lex_state = 887}, + [1107] = {.lex_state = 887}, + [1108] = {.lex_state = 887}, + [1109] = {.lex_state = 99}, + [1110] = {.lex_state = 887}, + [1111] = {.lex_state = 41, .external_lex_state = 2}, + [1112] = {.lex_state = 887}, + [1113] = {.lex_state = 887}, + [1114] = {.lex_state = 25, .external_lex_state = 2}, + [1115] = {.lex_state = 887}, + [1116] = {.lex_state = 887}, + [1117] = {.lex_state = 887}, + [1118] = {.lex_state = 887}, + [1119] = {.lex_state = 25, .external_lex_state = 2}, + [1120] = {.lex_state = 887}, + [1121] = {.lex_state = 887}, + [1122] = {.lex_state = 24, .external_lex_state = 3}, + [1123] = {.lex_state = 887}, + [1124] = {.lex_state = 99}, + [1125] = {.lex_state = 887}, + [1126] = {.lex_state = 887}, + [1127] = {.lex_state = 887}, + [1128] = {.lex_state = 887}, + [1129] = {.lex_state = 887}, + [1130] = {.lex_state = 887}, + [1131] = {.lex_state = 887}, + [1132] = {.lex_state = 887}, + [1133] = {.lex_state = 887}, + [1134] = {.lex_state = 887}, + [1135] = {.lex_state = 887}, + [1136] = {.lex_state = 887}, + [1137] = {.lex_state = 887}, + [1138] = {.lex_state = 99}, + [1139] = {.lex_state = 887}, + [1140] = {.lex_state = 886, .external_lex_state = 4}, + [1141] = {.lex_state = 100}, + [1142] = {.lex_state = 100}, + [1143] = {.lex_state = 100}, + [1144] = {.lex_state = 100}, + [1145] = {.lex_state = 100}, + [1146] = {.lex_state = 886, .external_lex_state = 4}, + [1147] = {.lex_state = 41, .external_lex_state = 4}, + [1148] = {.lex_state = 886, .external_lex_state = 4}, + [1149] = {.lex_state = 100}, + [1150] = {.lex_state = 100}, + [1151] = {.lex_state = 100}, + [1152] = {.lex_state = 100}, + [1153] = {.lex_state = 100}, + [1154] = {.lex_state = 100}, + [1155] = {.lex_state = 888}, + [1156] = {.lex_state = 888}, + [1157] = {.lex_state = 100}, + [1158] = {.lex_state = 886, .external_lex_state = 4}, + [1159] = {.lex_state = 888}, + [1160] = {.lex_state = 41, .external_lex_state = 4}, + [1161] = {.lex_state = 888}, + [1162] = {.lex_state = 41, .external_lex_state = 4}, + [1163] = {.lex_state = 41, .external_lex_state = 4}, + [1164] = {.lex_state = 886, .external_lex_state = 4}, + [1165] = {.lex_state = 886, .external_lex_state = 4}, + [1166] = {.lex_state = 888}, + [1167] = {.lex_state = 888}, + [1168] = {.lex_state = 888}, + [1169] = {.lex_state = 888}, + [1170] = {.lex_state = 888}, + [1171] = {.lex_state = 100}, + [1172] = {.lex_state = 888}, + [1173] = {.lex_state = 41, .external_lex_state = 4}, + [1174] = {.lex_state = 888}, + [1175] = {.lex_state = 888}, + [1176] = {.lex_state = 888}, + [1177] = {.lex_state = 886, .external_lex_state = 4}, + [1178] = {.lex_state = 39, .external_lex_state = 5}, + [1179] = {.lex_state = 888}, + [1180] = {.lex_state = 100}, + [1181] = {.lex_state = 886, .external_lex_state = 4}, + [1182] = {.lex_state = 888}, + [1183] = {.lex_state = 888}, + [1184] = {.lex_state = 886, .external_lex_state = 4}, + [1185] = {.lex_state = 100}, + [1186] = {.lex_state = 886, .external_lex_state = 1}, + [1187] = {.lex_state = 100}, + [1188] = {.lex_state = 888}, + [1189] = {.lex_state = 888}, + [1190] = {.lex_state = 100}, + [1191] = {.lex_state = 39, .external_lex_state = 5}, + [1192] = {.lex_state = 888}, + [1193] = {.lex_state = 888}, + [1194] = {.lex_state = 888}, + [1195] = {.lex_state = 886, .external_lex_state = 4}, + [1196] = {.lex_state = 41, .external_lex_state = 4}, + [1197] = {.lex_state = 25, .external_lex_state = 4}, + [1198] = {.lex_state = 888}, + [1199] = {.lex_state = 888}, + [1200] = {.lex_state = 888}, + [1201] = {.lex_state = 100}, + [1202] = {.lex_state = 100}, + [1203] = {.lex_state = 888}, + [1204] = {.lex_state = 888}, + [1205] = {.lex_state = 100}, + [1206] = {.lex_state = 888}, + [1207] = {.lex_state = 41, .external_lex_state = 4}, + [1208] = {.lex_state = 24, .external_lex_state = 3}, + [1209] = {.lex_state = 886, .external_lex_state = 4}, + [1210] = {.lex_state = 888}, + [1211] = {.lex_state = 888}, + [1212] = {.lex_state = 100}, + [1213] = {.lex_state = 41, .external_lex_state = 4}, + [1214] = {.lex_state = 888}, + [1215] = {.lex_state = 100}, + [1216] = {.lex_state = 100}, + [1217] = {.lex_state = 888}, + [1218] = {.lex_state = 888}, + [1219] = {.lex_state = 888}, + [1220] = {.lex_state = 888}, + [1221] = {.lex_state = 888}, + [1222] = {.lex_state = 888}, + [1223] = {.lex_state = 888}, + [1224] = {.lex_state = 888}, + [1225] = {.lex_state = 888}, + [1226] = {.lex_state = 886, .external_lex_state = 4}, + [1227] = {.lex_state = 888}, + [1228] = {.lex_state = 25, .external_lex_state = 4}, + [1229] = {.lex_state = 888}, + [1230] = {.lex_state = 888}, + [1231] = {.lex_state = 888}, + [1232] = {.lex_state = 888}, + [1233] = {.lex_state = 100}, + [1234] = {.lex_state = 100}, + [1235] = {.lex_state = 888}, + [1236] = {.lex_state = 100}, + [1237] = {.lex_state = 100}, + [1238] = {.lex_state = 888}, + [1239] = {.lex_state = 888}, + [1240] = {.lex_state = 25, .external_lex_state = 2}, + [1241] = {.lex_state = 39, .external_lex_state = 5}, + [1242] = {.lex_state = 886, .external_lex_state = 1}, + [1243] = {.lex_state = 886, .external_lex_state = 4}, + [1244] = {.lex_state = 888}, + [1245] = {.lex_state = 888}, + [1246] = {.lex_state = 886, .external_lex_state = 4}, + [1247] = {.lex_state = 100}, + [1248] = {.lex_state = 100}, + [1249] = {.lex_state = 100}, + [1250] = {.lex_state = 100}, + [1251] = {.lex_state = 886, .external_lex_state = 4}, + [1252] = {.lex_state = 888}, + [1253] = {.lex_state = 100}, + [1254] = {.lex_state = 41, .external_lex_state = 4}, + [1255] = {.lex_state = 886, .external_lex_state = 4}, + [1256] = {.lex_state = 888}, + [1257] = {.lex_state = 41, .external_lex_state = 4}, + [1258] = {.lex_state = 888}, + [1259] = {.lex_state = 100}, + [1260] = {.lex_state = 888}, + [1261] = {.lex_state = 888}, + [1262] = {.lex_state = 41, .external_lex_state = 4}, + [1263] = {.lex_state = 100}, + [1264] = {.lex_state = 100}, + [1265] = {.lex_state = 100}, + [1266] = {.lex_state = 886, .external_lex_state = 4}, + [1267] = {.lex_state = 888}, + [1268] = {.lex_state = 100}, + [1269] = {.lex_state = 100}, + [1270] = {.lex_state = 100}, + [1271] = {.lex_state = 100}, + [1272] = {.lex_state = 888}, + [1273] = {.lex_state = 100}, + [1274] = {.lex_state = 100}, + [1275] = {.lex_state = 100}, + [1276] = {.lex_state = 100}, + [1277] = {.lex_state = 888}, + [1278] = {.lex_state = 100}, + [1279] = {.lex_state = 888}, + [1280] = {.lex_state = 886, .external_lex_state = 4}, + [1281] = {.lex_state = 888}, + [1282] = {.lex_state = 888}, + [1283] = {.lex_state = 888}, + [1284] = {.lex_state = 100}, + [1285] = {.lex_state = 886, .external_lex_state = 4}, + [1286] = {.lex_state = 41, .external_lex_state = 4}, + [1287] = {.lex_state = 886, .external_lex_state = 4}, + [1288] = {.lex_state = 888}, + [1289] = {.lex_state = 100}, + [1290] = {.lex_state = 100}, + [1291] = {.lex_state = 888}, + [1292] = {.lex_state = 100}, + [1293] = {.lex_state = 888}, + [1294] = {.lex_state = 888}, + [1295] = {.lex_state = 39, .external_lex_state = 5}, + [1296] = {.lex_state = 888}, + [1297] = {.lex_state = 100}, + [1298] = {.lex_state = 100}, + [1299] = {.lex_state = 41, .external_lex_state = 4}, + [1300] = {.lex_state = 888}, + [1301] = {.lex_state = 888}, + [1302] = {.lex_state = 888}, + [1303] = {.lex_state = 100}, + [1304] = {.lex_state = 39, .external_lex_state = 5}, + [1305] = {.lex_state = 100}, + [1306] = {.lex_state = 888}, + [1307] = {.lex_state = 888}, + [1308] = {.lex_state = 888}, + [1309] = {.lex_state = 888}, + [1310] = {.lex_state = 100}, + [1311] = {.lex_state = 100}, + [1312] = {.lex_state = 886, .external_lex_state = 4}, + [1313] = {.lex_state = 888}, + [1314] = {.lex_state = 888}, + [1315] = {.lex_state = 888}, + [1316] = {.lex_state = 100}, + [1317] = {.lex_state = 888}, + [1318] = {.lex_state = 100}, + [1319] = {.lex_state = 100}, + [1320] = {.lex_state = 100}, + [1321] = {.lex_state = 888}, + [1322] = {.lex_state = 41, .external_lex_state = 4}, + [1323] = {.lex_state = 888}, + [1324] = {.lex_state = 100}, + [1325] = {.lex_state = 100}, + [1326] = {.lex_state = 100}, + [1327] = {.lex_state = 39, .external_lex_state = 5}, + [1328] = {.lex_state = 100}, + [1329] = {.lex_state = 100}, + [1330] = {.lex_state = 100}, + [1331] = {.lex_state = 100}, + [1332] = {.lex_state = 886, .external_lex_state = 4}, + [1333] = {.lex_state = 100}, + [1334] = {.lex_state = 26, .external_lex_state = 4}, + [1335] = {.lex_state = 41, .external_lex_state = 4}, + [1336] = {.lex_state = 100}, + [1337] = {.lex_state = 39, .external_lex_state = 5}, + [1338] = {.lex_state = 888}, + [1339] = {.lex_state = 888}, + [1340] = {.lex_state = 100}, + [1341] = {.lex_state = 100}, + [1342] = {.lex_state = 100}, + [1343] = {.lex_state = 888}, + [1344] = {.lex_state = 888}, + [1345] = {.lex_state = 100}, + [1346] = {.lex_state = 100}, + [1347] = {.lex_state = 100}, + [1348] = {.lex_state = 888}, + [1349] = {.lex_state = 888}, + [1350] = {.lex_state = 888}, + [1351] = {.lex_state = 888}, + [1352] = {.lex_state = 888}, + [1353] = {.lex_state = 888}, + [1354] = {.lex_state = 888}, + [1355] = {.lex_state = 888}, + [1356] = {.lex_state = 888}, + [1357] = {.lex_state = 888}, + [1358] = {.lex_state = 888}, + [1359] = {.lex_state = 886, .external_lex_state = 4}, + [1360] = {.lex_state = 886, .external_lex_state = 4}, + [1361] = {.lex_state = 888}, + [1362] = {.lex_state = 100}, + [1363] = {.lex_state = 888}, + [1364] = {.lex_state = 888}, + [1365] = {.lex_state = 888}, + [1366] = {.lex_state = 100}, + [1367] = {.lex_state = 100}, + [1368] = {.lex_state = 100}, + [1369] = {.lex_state = 100}, + [1370] = {.lex_state = 888}, + [1371] = {.lex_state = 888}, + [1372] = {.lex_state = 888}, + [1373] = {.lex_state = 888}, + [1374] = {.lex_state = 886, .external_lex_state = 1}, + [1375] = {.lex_state = 100}, + [1376] = {.lex_state = 41, .external_lex_state = 4}, + [1377] = {.lex_state = 886, .external_lex_state = 4}, + [1378] = {.lex_state = 888}, + [1379] = {.lex_state = 100}, + [1380] = {.lex_state = 888}, + [1381] = {.lex_state = 886, .external_lex_state = 4}, + [1382] = {.lex_state = 888}, + [1383] = {.lex_state = 888}, [1384] = {.lex_state = 41, .external_lex_state = 4}, - [1385] = {.lex_state = 98}, - [1386] = {.lex_state = 41, .external_lex_state = 4}, - [1387] = {.lex_state = 41, .external_lex_state = 4}, - [1388] = {.lex_state = 98}, - [1389] = {.lex_state = 39, .external_lex_state = 5}, - [1390] = {.lex_state = 98}, - [1391] = {.lex_state = 884}, - [1392] = {.lex_state = 884}, - [1393] = {.lex_state = 882, .external_lex_state = 4}, - [1394] = {.lex_state = 884}, - [1395] = {.lex_state = 41, .external_lex_state = 4}, - [1396] = {.lex_state = 41, .external_lex_state = 4}, - [1397] = {.lex_state = 882, .external_lex_state = 4}, - [1398] = {.lex_state = 884}, - [1399] = {.lex_state = 25, .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 = 98}, - [1405] = {.lex_state = 98}, - [1406] = {.lex_state = 884}, - [1407] = {.lex_state = 884}, - [1408] = {.lex_state = 98}, - [1409] = {.lex_state = 98}, - [1410] = {.lex_state = 882, .external_lex_state = 4}, - [1411] = {.lex_state = 98}, - [1412] = {.lex_state = 98}, - [1413] = {.lex_state = 98}, - [1414] = {.lex_state = 882, .external_lex_state = 4}, - [1415] = {.lex_state = 39, .external_lex_state = 5}, - [1416] = {.lex_state = 884}, - [1417] = {.lex_state = 98}, - [1418] = {.lex_state = 98}, - [1419] = {.lex_state = 98}, - [1420] = {.lex_state = 884}, - [1421] = {.lex_state = 98}, - [1422] = {.lex_state = 884}, - [1423] = {.lex_state = 98}, - [1424] = {.lex_state = 884}, - [1425] = {.lex_state = 98}, - [1426] = {.lex_state = 884}, - [1427] = {.lex_state = 882, .external_lex_state = 4}, - [1428] = {.lex_state = 98}, - [1429] = {.lex_state = 98}, - [1430] = {.lex_state = 98}, - [1431] = {.lex_state = 98}, - [1432] = {.lex_state = 98}, - [1433] = {.lex_state = 884}, - [1434] = {.lex_state = 98}, - [1435] = {.lex_state = 98}, - [1436] = {.lex_state = 98}, - [1437] = {.lex_state = 98}, - [1438] = {.lex_state = 98}, - [1439] = {.lex_state = 98}, - [1440] = {.lex_state = 882, .external_lex_state = 4}, - [1441] = {.lex_state = 98}, - [1442] = {.lex_state = 98}, - [1443] = {.lex_state = 39, .external_lex_state = 5}, - [1444] = {.lex_state = 98}, - [1445] = {.lex_state = 24, .external_lex_state = 4}, - [1446] = {.lex_state = 884}, - [1447] = {.lex_state = 884}, - [1448] = {.lex_state = 884}, - [1449] = {.lex_state = 98}, - [1450] = {.lex_state = 98}, - [1451] = {.lex_state = 882, .external_lex_state = 4}, - [1452] = {.lex_state = 98}, - [1453] = {.lex_state = 98}, - [1454] = {.lex_state = 25, .external_lex_state = 3}, - [1455] = {.lex_state = 884}, - [1456] = {.lex_state = 98}, - [1457] = {.lex_state = 882, .external_lex_state = 4}, - [1458] = {.lex_state = 98}, - [1459] = {.lex_state = 98}, - [1460] = {.lex_state = 98}, - [1461] = {.lex_state = 884}, - [1462] = {.lex_state = 98}, - [1463] = {.lex_state = 884}, - [1464] = {.lex_state = 884}, - [1465] = {.lex_state = 98}, - [1466] = {.lex_state = 884}, - [1467] = {.lex_state = 98}, - [1468] = {.lex_state = 98}, - [1469] = {.lex_state = 98}, - [1470] = {.lex_state = 98}, - [1471] = {.lex_state = 98}, - [1472] = {.lex_state = 98}, - [1473] = {.lex_state = 884}, - [1474] = {.lex_state = 98}, - [1475] = {.lex_state = 884}, - [1476] = {.lex_state = 98}, - [1477] = {.lex_state = 98}, - [1478] = {.lex_state = 98}, - [1479] = {.lex_state = 98}, - [1480] = {.lex_state = 98}, - [1481] = {.lex_state = 884}, - [1482] = {.lex_state = 98}, - [1483] = {.lex_state = 884}, - [1484] = {.lex_state = 98}, - [1485] = {.lex_state = 98}, - [1486] = {.lex_state = 98}, - [1487] = {.lex_state = 882, .external_lex_state = 4}, - [1488] = {.lex_state = 98}, - [1489] = {.lex_state = 98}, - [1490] = {.lex_state = 884}, - [1491] = {.lex_state = 98}, - [1492] = {.lex_state = 884}, - [1493] = {.lex_state = 882, .external_lex_state = 4}, - [1494] = {.lex_state = 884}, - [1495] = {.lex_state = 98}, - [1496] = {.lex_state = 884}, - [1497] = {.lex_state = 98}, - [1498] = {.lex_state = 882, .external_lex_state = 4}, - [1499] = {.lex_state = 98}, - [1500] = {.lex_state = 884}, - [1501] = {.lex_state = 98}, - [1502] = {.lex_state = 98}, - [1503] = {.lex_state = 98}, - [1504] = {.lex_state = 884}, - [1505] = {.lex_state = 884}, - [1506] = {.lex_state = 98}, - [1507] = {.lex_state = 98}, - [1508] = {.lex_state = 98}, - [1509] = {.lex_state = 98}, - [1510] = {.lex_state = 98}, - [1511] = {.lex_state = 25, .external_lex_state = 3}, - [1512] = {.lex_state = 882, .external_lex_state = 4}, - [1513] = {.lex_state = 98}, - [1514] = {.lex_state = 884}, - [1515] = {.lex_state = 884}, - [1516] = {.lex_state = 882, .external_lex_state = 4}, - [1517] = {.lex_state = 884}, - [1518] = {.lex_state = 98}, - [1519] = {.lex_state = 98}, - [1520] = {.lex_state = 882, .external_lex_state = 4}, - [1521] = {.lex_state = 882, .external_lex_state = 4}, - [1522] = {.lex_state = 884}, - [1523] = {.lex_state = 98}, - [1524] = {.lex_state = 98}, - [1525] = {.lex_state = 98}, - [1526] = {.lex_state = 884}, - [1527] = {.lex_state = 884}, - [1528] = {.lex_state = 98}, - [1529] = {.lex_state = 882, .external_lex_state = 4}, - [1530] = {.lex_state = 98}, - [1531] = {.lex_state = 98}, - [1532] = {.lex_state = 98}, - [1533] = {.lex_state = 98}, - [1534] = {.lex_state = 98}, - [1535] = {.lex_state = 98}, - [1536] = {.lex_state = 98}, - [1537] = {.lex_state = 98}, - [1538] = {.lex_state = 98}, - [1539] = {.lex_state = 884}, - [1540] = {.lex_state = 98}, - [1541] = {.lex_state = 882, .external_lex_state = 4}, - [1542] = {.lex_state = 884}, - [1543] = {.lex_state = 884}, - [1544] = {.lex_state = 98}, - [1545] = {.lex_state = 884}, - [1546] = {.lex_state = 884}, - [1547] = {.lex_state = 25, .external_lex_state = 4}, - [1548] = {.lex_state = 25, .external_lex_state = 4}, - [1549] = {.lex_state = 25, .external_lex_state = 4}, - [1550] = {.lex_state = 24, .external_lex_state = 4}, - [1551] = {.lex_state = 25, .external_lex_state = 4}, - [1552] = {.lex_state = 25, .external_lex_state = 4}, - [1553] = {.lex_state = 24, .external_lex_state = 4}, - [1554] = {.lex_state = 25, .external_lex_state = 4}, - [1555] = {.lex_state = 25, .external_lex_state = 4}, + [1385] = {.lex_state = 888}, + [1386] = {.lex_state = 100}, + [1387] = {.lex_state = 888}, + [1388] = {.lex_state = 100}, + [1389] = {.lex_state = 24, .external_lex_state = 2}, + [1390] = {.lex_state = 100}, + [1391] = {.lex_state = 888}, + [1392] = {.lex_state = 100}, + [1393] = {.lex_state = 100}, + [1394] = {.lex_state = 886, .external_lex_state = 4}, + [1395] = {.lex_state = 100}, + [1396] = {.lex_state = 888}, + [1397] = {.lex_state = 100}, + [1398] = {.lex_state = 888}, + [1399] = {.lex_state = 100}, + [1400] = {.lex_state = 100}, + [1401] = {.lex_state = 888}, + [1402] = {.lex_state = 100}, + [1403] = {.lex_state = 100}, + [1404] = {.lex_state = 100}, + [1405] = {.lex_state = 100}, + [1406] = {.lex_state = 888}, + [1407] = {.lex_state = 100}, + [1408] = {.lex_state = 100}, + [1409] = {.lex_state = 100}, + [1410] = {.lex_state = 100}, + [1411] = {.lex_state = 888}, + [1412] = {.lex_state = 100}, + [1413] = {.lex_state = 100}, + [1414] = {.lex_state = 100}, + [1415] = {.lex_state = 100}, + [1416] = {.lex_state = 888}, + [1417] = {.lex_state = 100}, + [1418] = {.lex_state = 888}, + [1419] = {.lex_state = 888}, + [1420] = {.lex_state = 100}, + [1421] = {.lex_state = 100}, + [1422] = {.lex_state = 100}, + [1423] = {.lex_state = 100}, + [1424] = {.lex_state = 98}, + [1425] = {.lex_state = 888}, + [1426] = {.lex_state = 25, .external_lex_state = 2}, + [1427] = {.lex_state = 888}, + [1428] = {.lex_state = 888}, + [1429] = {.lex_state = 886, .external_lex_state = 4}, + [1430] = {.lex_state = 100}, + [1431] = {.lex_state = 888}, + [1432] = {.lex_state = 24, .external_lex_state = 4}, + [1433] = {.lex_state = 888}, + [1434] = {.lex_state = 888}, + [1435] = {.lex_state = 888}, + [1436] = {.lex_state = 888}, + [1437] = {.lex_state = 888}, + [1438] = {.lex_state = 888}, + [1439] = {.lex_state = 888}, + [1440] = {.lex_state = 24, .external_lex_state = 4}, + [1441] = {.lex_state = 888}, + [1442] = {.lex_state = 24, .external_lex_state = 2}, + [1443] = {.lex_state = 100}, + [1444] = {.lex_state = 100}, + [1445] = {.lex_state = 100}, + [1446] = {.lex_state = 100}, + [1447] = {.lex_state = 100}, + [1448] = {.lex_state = 886, .external_lex_state = 4}, + [1449] = {.lex_state = 41, .external_lex_state = 4}, + [1450] = {.lex_state = 100}, + [1451] = {.lex_state = 100}, + [1452] = {.lex_state = 24, .external_lex_state = 2}, + [1453] = {.lex_state = 41, .external_lex_state = 4}, + [1454] = {.lex_state = 100}, + [1455] = {.lex_state = 100}, + [1456] = {.lex_state = 100}, + [1457] = {.lex_state = 100}, + [1458] = {.lex_state = 100}, + [1459] = {.lex_state = 100}, + [1460] = {.lex_state = 100}, + [1461] = {.lex_state = 888}, + [1462] = {.lex_state = 888}, + [1463] = {.lex_state = 888}, + [1464] = {.lex_state = 888}, + [1465] = {.lex_state = 888}, + [1466] = {.lex_state = 100}, + [1467] = {.lex_state = 100}, + [1468] = {.lex_state = 888}, + [1469] = {.lex_state = 100}, + [1470] = {.lex_state = 41, .external_lex_state = 4}, + [1471] = {.lex_state = 888}, + [1472] = {.lex_state = 886, .external_lex_state = 1}, + [1473] = {.lex_state = 41, .external_lex_state = 4}, + [1474] = {.lex_state = 41, .external_lex_state = 4}, + [1475] = {.lex_state = 888}, + [1476] = {.lex_state = 888}, + [1477] = {.lex_state = 41, .external_lex_state = 4}, + [1478] = {.lex_state = 888}, + [1479] = {.lex_state = 888}, + [1480] = {.lex_state = 100}, + [1481] = {.lex_state = 100}, + [1482] = {.lex_state = 100}, + [1483] = {.lex_state = 39, .external_lex_state = 5}, + [1484] = {.lex_state = 100}, + [1485] = {.lex_state = 100}, + [1486] = {.lex_state = 886, .external_lex_state = 4}, + [1487] = {.lex_state = 888}, + [1488] = {.lex_state = 39, .external_lex_state = 5}, + [1489] = {.lex_state = 100}, + [1490] = {.lex_state = 888}, + [1491] = {.lex_state = 886, .external_lex_state = 4}, + [1492] = {.lex_state = 41, .external_lex_state = 4}, + [1493] = {.lex_state = 41, .external_lex_state = 4}, + [1494] = {.lex_state = 100}, + [1495] = {.lex_state = 100}, + [1496] = {.lex_state = 100}, + [1497] = {.lex_state = 100}, + [1498] = {.lex_state = 888}, + [1499] = {.lex_state = 100}, + [1500] = {.lex_state = 100}, + [1501] = {.lex_state = 100}, + [1502] = {.lex_state = 100}, + [1503] = {.lex_state = 100}, + [1504] = {.lex_state = 886, .external_lex_state = 4}, + [1505] = {.lex_state = 888}, + [1506] = {.lex_state = 100}, + [1507] = {.lex_state = 888}, + [1508] = {.lex_state = 39, .external_lex_state = 5}, + [1509] = {.lex_state = 888}, + [1510] = {.lex_state = 888}, + [1511] = {.lex_state = 26, .external_lex_state = 4}, + [1512] = {.lex_state = 888}, + [1513] = {.lex_state = 100}, + [1514] = {.lex_state = 888}, + [1515] = {.lex_state = 888}, + [1516] = {.lex_state = 886, .external_lex_state = 4}, + [1517] = {.lex_state = 886, .external_lex_state = 4}, + [1518] = {.lex_state = 100}, + [1519] = {.lex_state = 100}, + [1520] = {.lex_state = 100}, + [1521] = {.lex_state = 111}, + [1522] = {.lex_state = 100}, + [1523] = {.lex_state = 24, .external_lex_state = 2}, + [1524] = {.lex_state = 41, .external_lex_state = 4}, + [1525] = {.lex_state = 100}, + [1526] = {.lex_state = 41, .external_lex_state = 4}, + [1527] = {.lex_state = 888}, + [1528] = {.lex_state = 886, .external_lex_state = 1}, + [1529] = {.lex_state = 888}, + [1530] = {.lex_state = 888}, + [1531] = {.lex_state = 100}, + [1532] = {.lex_state = 100}, + [1533] = {.lex_state = 100}, + [1534] = {.lex_state = 886, .external_lex_state = 4}, + [1535] = {.lex_state = 100}, + [1536] = {.lex_state = 888}, + [1537] = {.lex_state = 41, .external_lex_state = 4}, + [1538] = {.lex_state = 888}, + [1539] = {.lex_state = 888}, + [1540] = {.lex_state = 41, .external_lex_state = 4}, + [1541] = {.lex_state = 888}, + [1542] = {.lex_state = 888}, + [1543] = {.lex_state = 41, .external_lex_state = 4}, + [1544] = {.lex_state = 886, .external_lex_state = 4}, + [1545] = {.lex_state = 100}, + [1546] = {.lex_state = 886, .external_lex_state = 4}, + [1547] = {.lex_state = 888}, + [1548] = {.lex_state = 100}, + [1549] = {.lex_state = 100}, + [1550] = {.lex_state = 100}, + [1551] = {.lex_state = 100}, + [1552] = {.lex_state = 100}, + [1553] = {.lex_state = 100}, + [1554] = {.lex_state = 886, .external_lex_state = 4}, + [1555] = {.lex_state = 100}, [1556] = {.lex_state = 25, .external_lex_state = 4}, - [1557] = {.lex_state = 25, .external_lex_state = 4}, - [1558] = {.lex_state = 24, .external_lex_state = 3}, + [1557] = {.lex_state = 48, .external_lex_state = 4}, + [1558] = {.lex_state = 25, .external_lex_state = 4}, [1559] = {.lex_state = 25, .external_lex_state = 4}, [1560] = {.lex_state = 25, .external_lex_state = 4}, [1561] = {.lex_state = 25, .external_lex_state = 4}, [1562] = {.lex_state = 25, .external_lex_state = 4}, - [1563] = {.lex_state = 39, .external_lex_state = 5}, + [1563] = {.lex_state = 25, .external_lex_state = 4}, [1564] = {.lex_state = 25, .external_lex_state = 4}, - [1565] = {.lex_state = 25, .external_lex_state = 4}, + [1565] = {.lex_state = 39, .external_lex_state = 5}, [1566] = {.lex_state = 25, .external_lex_state = 4}, - [1567] = {.lex_state = 24, .external_lex_state = 3}, - [1568] = {.lex_state = 25, .external_lex_state = 4}, + [1567] = {.lex_state = 25, .external_lex_state = 4}, + [1568] = {.lex_state = 24, .external_lex_state = 2}, [1569] = {.lex_state = 25, .external_lex_state = 4}, - [1570] = {.lex_state = 25, .external_lex_state = 4}, + [1570] = {.lex_state = 24, .external_lex_state = 2}, [1571] = {.lex_state = 25, .external_lex_state = 4}, - [1572] = {.lex_state = 25, .external_lex_state = 4}, + [1572] = {.lex_state = 39, .external_lex_state = 5}, [1573] = {.lex_state = 25, .external_lex_state = 4}, - [1574] = {.lex_state = 48, .external_lex_state = 4}, - [1575] = {.lex_state = 39, .external_lex_state = 5}, + [1574] = {.lex_state = 25, .external_lex_state = 4}, + [1575] = {.lex_state = 24, .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 = 48, .external_lex_state = 4}, + [1581] = {.lex_state = 25, .external_lex_state = 4}, [1582] = {.lex_state = 25, .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}, - [1587] = {.lex_state = 109}, - [1588] = {.lex_state = 24, .external_lex_state = 4}, - [1589] = {.lex_state = 24, .external_lex_state = 4}, - [1590] = {.lex_state = 24, .external_lex_state = 4}, - [1591] = {.lex_state = 96}, - [1592] = {.lex_state = 24, .external_lex_state = 4}, - [1593] = {.lex_state = 39}, + [1585] = {.lex_state = 25, .external_lex_state = 4}, + [1586] = {.lex_state = 25, .external_lex_state = 4}, + [1587] = {.lex_state = 25, .external_lex_state = 4}, + [1588] = {.lex_state = 25, .external_lex_state = 4}, + [1589] = {.lex_state = 25, .external_lex_state = 4}, + [1590] = {.lex_state = 25, .external_lex_state = 4}, + [1591] = {.lex_state = 48, .external_lex_state = 4}, + [1592] = {.lex_state = 25, .external_lex_state = 4}, + [1593] = {.lex_state = 24, .external_lex_state = 4}, [1594] = {.lex_state = 24, .external_lex_state = 4}, - [1595] = {.lex_state = 39}, - [1596] = {.lex_state = 24, .external_lex_state = 4}, - [1597] = {.lex_state = 24, .external_lex_state = 4}, - [1598] = {.lex_state = 24, .external_lex_state = 4}, - [1599] = {.lex_state = 39}, - [1600] = {.lex_state = 24, .external_lex_state = 4}, + [1595] = {.lex_state = 24, .external_lex_state = 4}, + [1596] = {.lex_state = 111}, + [1597] = {.lex_state = 39}, + [1598] = {.lex_state = 98}, + [1599] = {.lex_state = 111}, + [1600] = {.lex_state = 39}, [1601] = {.lex_state = 24, .external_lex_state = 4}, - [1602] = {.lex_state = 24, .external_lex_state = 4}, - [1603] = {.lex_state = 24, .external_lex_state = 4}, - [1604] = {.lex_state = 39}, + [1602] = {.lex_state = 39}, + [1603] = {.lex_state = 98}, + [1604] = {.lex_state = 98}, [1605] = {.lex_state = 39}, [1606] = {.lex_state = 24, .external_lex_state = 4}, [1607] = {.lex_state = 24, .external_lex_state = 4}, [1608] = {.lex_state = 39}, - [1609] = {.lex_state = 24, .external_lex_state = 4}, - [1610] = {.lex_state = 24, .external_lex_state = 4}, + [1609] = {.lex_state = 39}, + [1610] = {.lex_state = 111}, [1611] = {.lex_state = 24, .external_lex_state = 4}, - [1612] = {.lex_state = 109}, + [1612] = {.lex_state = 24, .external_lex_state = 4}, [1613] = {.lex_state = 39}, [1614] = {.lex_state = 24, .external_lex_state = 4}, [1615] = {.lex_state = 24, .external_lex_state = 4}, - [1616] = {.lex_state = 39}, - [1617] = {.lex_state = 109}, + [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 = 24, .external_lex_state = 4}, + [1619] = {.lex_state = 39}, [1620] = {.lex_state = 24, .external_lex_state = 4}, [1621] = {.lex_state = 24, .external_lex_state = 4}, - [1622] = {.lex_state = 24, .external_lex_state = 4}, + [1622] = {.lex_state = 39}, [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 = 96}, - [1629] = {.lex_state = 96}, - [1630] = {.lex_state = 39}, + [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 = 24, .external_lex_state = 4}, - [1632] = {.lex_state = 39}, - [1633] = {.lex_state = 39}, - [1634] = {.lex_state = 39}, - [1635] = {.lex_state = 39}, - [1636] = {.lex_state = 100}, - [1637] = {.lex_state = 39}, - [1638] = {.lex_state = 39}, - [1639] = {.lex_state = 100}, - [1640] = {.lex_state = 39, .external_lex_state = 5}, - [1641] = {.lex_state = 100}, - [1642] = {.lex_state = 34}, - [1643] = {.lex_state = 39, .external_lex_state = 5}, - [1644] = {.lex_state = 100}, - [1645] = {.lex_state = 34}, - [1646] = {.lex_state = 39}, - [1647] = {.lex_state = 34}, - [1648] = {.lex_state = 34}, - [1649] = {.lex_state = 100}, - [1650] = {.lex_state = 100}, - [1651] = {.lex_state = 100}, - [1652] = {.lex_state = 39}, - [1653] = {.lex_state = 100}, - [1654] = {.lex_state = 100}, - [1655] = {.lex_state = 39}, - [1656] = {.lex_state = 100}, - [1657] = {.lex_state = 100}, - [1658] = {.lex_state = 39}, - [1659] = {.lex_state = 100}, - [1660] = {.lex_state = 34}, - [1661] = {.lex_state = 39}, - [1662] = {.lex_state = 100}, + [1632] = {.lex_state = 24, .external_lex_state = 4}, + [1633] = {.lex_state = 24, .external_lex_state = 4}, + [1634] = {.lex_state = 24, .external_lex_state = 4}, + [1635] = {.lex_state = 24, .external_lex_state = 4}, + [1636] = {.lex_state = 24, .external_lex_state = 4}, + [1637] = {.lex_state = 24, .external_lex_state = 4}, + [1638] = {.lex_state = 24, .external_lex_state = 4}, + [1639] = {.lex_state = 24, .external_lex_state = 4}, + [1640] = {.lex_state = 39}, + [1641] = {.lex_state = 24, .external_lex_state = 4}, + [1642] = {.lex_state = 39}, + [1643] = {.lex_state = 39}, + [1644] = {.lex_state = 39}, + [1645] = {.lex_state = 102}, + [1646] = {.lex_state = 102}, + [1647] = {.lex_state = 102}, + [1648] = {.lex_state = 102}, + [1649] = {.lex_state = 34}, + [1650] = {.lex_state = 34}, + [1651] = {.lex_state = 34}, + [1652] = {.lex_state = 102}, + [1653] = {.lex_state = 102}, + [1654] = {.lex_state = 34}, + [1655] = {.lex_state = 102}, + [1656] = {.lex_state = 39, .external_lex_state = 5}, + [1657] = {.lex_state = 102}, + [1658] = {.lex_state = 102}, + [1659] = {.lex_state = 34}, + [1660] = {.lex_state = 39}, + [1661] = {.lex_state = 102}, + [1662] = {.lex_state = 39, .external_lex_state = 5}, [1663] = {.lex_state = 39}, - [1664] = {.lex_state = 100}, - [1665] = {.lex_state = 100}, + [1664] = {.lex_state = 102}, + [1665] = {.lex_state = 39}, [1666] = {.lex_state = 39, .external_lex_state = 5}, - [1667] = {.lex_state = 100}, - [1668] = {.lex_state = 100}, + [1667] = {.lex_state = 102}, + [1668] = {.lex_state = 39}, [1669] = {.lex_state = 39}, - [1670] = {.lex_state = 100}, - [1671] = {.lex_state = 100}, - [1672] = {.lex_state = 100}, - [1673] = {.lex_state = 100}, - [1674] = {.lex_state = 39, .external_lex_state = 5}, - [1675] = {.lex_state = 100}, - [1676] = {.lex_state = 39}, + [1670] = {.lex_state = 102}, + [1671] = {.lex_state = 39}, + [1672] = {.lex_state = 102}, + [1673] = {.lex_state = 102}, + [1674] = {.lex_state = 102}, + [1675] = {.lex_state = 39}, + [1676] = {.lex_state = 102}, [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}, + [1680] = {.lex_state = 102}, + [1681] = {.lex_state = 102}, + [1682] = {.lex_state = 102}, + [1683] = {.lex_state = 39, .external_lex_state = 5}, + [1684] = {.lex_state = 102}, + [1685] = {.lex_state = 102}, [1686] = {.lex_state = 39}, [1687] = {.lex_state = 39}, [1688] = {.lex_state = 39}, @@ -23363,78 +23558,78 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1695] = {.lex_state = 39}, [1696] = {.lex_state = 39}, [1697] = {.lex_state = 39}, - [1698] = {.lex_state = 882}, + [1698] = {.lex_state = 39}, [1699] = {.lex_state = 39}, - [1700] = {.lex_state = 109}, - [1701] = {.lex_state = 109}, - [1702] = {.lex_state = 109}, - [1703] = {.lex_state = 882}, - [1704] = {.lex_state = 882}, + [1700] = {.lex_state = 39}, + [1701] = {.lex_state = 39}, + [1702] = {.lex_state = 39}, + [1703] = {.lex_state = 39}, + [1704] = {.lex_state = 39}, [1705] = {.lex_state = 39}, [1706] = {.lex_state = 39}, - [1707] = {.lex_state = 39}, - [1708] = {.lex_state = 39}, - [1709] = {.lex_state = 882}, + [1707] = {.lex_state = 111}, + [1708] = {.lex_state = 886}, + [1709] = {.lex_state = 886}, [1710] = {.lex_state = 39}, - [1711] = {.lex_state = 109}, + [1711] = {.lex_state = 886}, [1712] = {.lex_state = 39}, - [1713] = {.lex_state = 39}, + [1713] = {.lex_state = 886}, [1714] = {.lex_state = 39}, - [1715] = {.lex_state = 882}, + [1715] = {.lex_state = 39}, [1716] = {.lex_state = 39}, [1717] = {.lex_state = 39}, - [1718] = {.lex_state = 109}, - [1719] = {.lex_state = 882}, - [1720] = {.lex_state = 882}, - [1721] = {.lex_state = 39}, - [1722] = {.lex_state = 882}, - [1723] = {.lex_state = 882}, - [1724] = {.lex_state = 882}, - [1725] = {.lex_state = 882}, + [1718] = {.lex_state = 111}, + [1719] = {.lex_state = 39}, + [1720] = {.lex_state = 886}, + [1721] = {.lex_state = 111}, + [1722] = {.lex_state = 886}, + [1723] = {.lex_state = 111}, + [1724] = {.lex_state = 886}, + [1725] = {.lex_state = 39}, [1726] = {.lex_state = 39}, - [1727] = {.lex_state = 39}, + [1727] = {.lex_state = 886}, [1728] = {.lex_state = 39}, - [1729] = {.lex_state = 882}, - [1730] = {.lex_state = 39}, + [1729] = {.lex_state = 39}, + [1730] = {.lex_state = 886}, [1731] = {.lex_state = 39}, [1732] = {.lex_state = 39}, - [1733] = {.lex_state = 39}, + [1733] = {.lex_state = 886}, [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}, + [1738] = {.lex_state = 886}, + [1739] = {.lex_state = 111}, + [1740] = {.lex_state = 886}, [1741] = {.lex_state = 39}, [1742] = {.lex_state = 39}, [1743] = {.lex_state = 39}, [1744] = {.lex_state = 39}, [1745] = {.lex_state = 39}, - [1746] = {.lex_state = 39}, + [1746] = {.lex_state = 886}, [1747] = {.lex_state = 39}, [1748] = {.lex_state = 39}, [1749] = {.lex_state = 39}, [1750] = {.lex_state = 39}, [1751] = {.lex_state = 39}, - [1752] = {.lex_state = 39}, + [1752] = {.lex_state = 886}, [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}, + [1759] = {.lex_state = 111}, [1760] = {.lex_state = 39}, [1761] = {.lex_state = 39}, [1762] = {.lex_state = 39}, [1763] = {.lex_state = 39}, [1764] = {.lex_state = 39}, - [1765] = {.lex_state = 39}, + [1765] = {.lex_state = 886}, [1766] = {.lex_state = 39}, - [1767] = {.lex_state = 109}, + [1767] = {.lex_state = 39}, [1768] = {.lex_state = 39}, - [1769] = {.lex_state = 39}, + [1769] = {.lex_state = 886}, [1770] = {.lex_state = 39}, [1771] = {.lex_state = 39}, [1772] = {.lex_state = 39}, @@ -23469,2953 +23664,3034 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1801] = {.lex_state = 39}, [1802] = {.lex_state = 39}, [1803] = {.lex_state = 39}, - [1804] = {.lex_state = 882}, - [1805] = {.lex_state = 39}, + [1804] = {.lex_state = 39}, + [1805] = {.lex_state = 886}, [1806] = {.lex_state = 39}, [1807] = {.lex_state = 39}, - [1808] = {.lex_state = 882}, - [1809] = {.lex_state = 882}, - [1810] = {.lex_state = 882}, - [1811] = {.lex_state = 39, .external_lex_state = 5}, - [1812] = {.lex_state = 882}, + [1808] = {.lex_state = 39}, + [1809] = {.lex_state = 39}, + [1810] = {.lex_state = 39}, + [1811] = {.lex_state = 39}, + [1812] = {.lex_state = 39}, [1813] = {.lex_state = 39}, - [1814] = {.lex_state = 882}, + [1814] = {.lex_state = 39}, [1815] = {.lex_state = 39}, - [1816] = {.lex_state = 882}, + [1816] = {.lex_state = 39}, [1817] = {.lex_state = 39}, - [1818] = {.lex_state = 39}, - [1819] = {.lex_state = 93}, - [1820] = {.lex_state = 882}, - [1821] = {.lex_state = 93}, - [1822] = {.lex_state = 882}, - [1823] = {.lex_state = 882}, - [1824] = {.lex_state = 93}, - [1825] = {.lex_state = 93}, - [1826] = {.lex_state = 882}, - [1827] = {.lex_state = 93}, - [1828] = {.lex_state = 882}, - [1829] = {.lex_state = 93}, - [1830] = {.lex_state = 882}, - [1831] = {.lex_state = 93}, - [1832] = {.lex_state = 93}, - [1833] = {.lex_state = 882}, - [1834] = {.lex_state = 882}, + [1818] = {.lex_state = 39, .external_lex_state = 5}, + [1819] = {.lex_state = 39}, + [1820] = {.lex_state = 39}, + [1821] = {.lex_state = 39}, + [1822] = {.lex_state = 39}, + [1823] = {.lex_state = 39}, + [1824] = {.lex_state = 886}, + [1825] = {.lex_state = 886}, + [1826] = {.lex_state = 39}, + [1827] = {.lex_state = 39}, + [1828] = {.lex_state = 886}, + [1829] = {.lex_state = 886}, + [1830] = {.lex_state = 93}, + [1831] = {.lex_state = 111}, + [1832] = {.lex_state = 886}, + [1833] = {.lex_state = 93}, + [1834] = {.lex_state = 886}, [1835] = {.lex_state = 93}, - [1836] = {.lex_state = 109}, - [1837] = {.lex_state = 882}, + [1836] = {.lex_state = 93}, + [1837] = {.lex_state = 93}, [1838] = {.lex_state = 93}, - [1839] = {.lex_state = 882}, - [1840] = {.lex_state = 882, .external_lex_state = 5}, - [1841] = {.lex_state = 109}, - [1842] = {.lex_state = 882, .external_lex_state = 5}, - [1843] = {.lex_state = 882}, - [1844] = {.lex_state = 882}, - [1845] = {.lex_state = 882, .external_lex_state = 5}, - [1846] = {.lex_state = 882, .external_lex_state = 5}, - [1847] = {.lex_state = 882, .external_lex_state = 5}, - [1848] = {.lex_state = 39}, - [1849] = {.lex_state = 42, .external_lex_state = 6}, - [1850] = {.lex_state = 882, .external_lex_state = 5}, - [1851] = {.lex_state = 39}, - [1852] = {.lex_state = 109}, - [1853] = {.lex_state = 882, .external_lex_state = 5}, - [1854] = {.lex_state = 882, .external_lex_state = 5}, - [1855] = {.lex_state = 109}, - [1856] = {.lex_state = 109}, - [1857] = {.lex_state = 882, .external_lex_state = 5}, - [1858] = {.lex_state = 109}, - [1859] = {.lex_state = 882, .external_lex_state = 5}, - [1860] = {.lex_state = 109}, - [1861] = {.lex_state = 882, .external_lex_state = 5}, - [1862] = {.lex_state = 39}, - [1863] = {.lex_state = 882, .external_lex_state = 5}, - [1864] = {.lex_state = 109}, - [1865] = {.lex_state = 882, .external_lex_state = 5}, - [1866] = {.lex_state = 39}, - [1867] = {.lex_state = 882, .external_lex_state = 5}, - [1868] = {.lex_state = 882, .external_lex_state = 5}, - [1869] = {.lex_state = 882}, - [1870] = {.lex_state = 882}, - [1871] = {.lex_state = 882}, - [1872] = {.lex_state = 882}, - [1873] = {.lex_state = 882}, - [1874] = {.lex_state = 882}, - [1875] = {.lex_state = 882}, - [1876] = {.lex_state = 39}, - [1877] = {.lex_state = 882}, - [1878] = {.lex_state = 882}, - [1879] = {.lex_state = 882}, - [1880] = {.lex_state = 882}, - [1881] = {.lex_state = 882}, - [1882] = {.lex_state = 39}, - [1883] = {.lex_state = 882}, - [1884] = {.lex_state = 882}, - [1885] = {.lex_state = 882}, - [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 = 39}, - [1894] = {.lex_state = 882}, - [1895] = {.lex_state = 882}, - [1896] = {.lex_state = 882}, - [1897] = {.lex_state = 882}, - [1898] = {.lex_state = 882}, - [1899] = {.lex_state = 882}, - [1900] = {.lex_state = 882}, - [1901] = {.lex_state = 882}, - [1902] = {.lex_state = 39}, - [1903] = {.lex_state = 882}, - [1904] = {.lex_state = 39}, - [1905] = {.lex_state = 39}, - [1906] = {.lex_state = 882}, - [1907] = {.lex_state = 882}, - [1908] = {.lex_state = 39}, - [1909] = {.lex_state = 39}, - [1910] = {.lex_state = 882}, - [1911] = {.lex_state = 882}, - [1912] = {.lex_state = 882}, - [1913] = {.lex_state = 39}, - [1914] = {.lex_state = 39}, - [1915] = {.lex_state = 882}, - [1916] = {.lex_state = 882}, - [1917] = {.lex_state = 882}, - [1918] = {.lex_state = 882}, - [1919] = {.lex_state = 39}, - [1920] = {.lex_state = 882}, - [1921] = {.lex_state = 39}, - [1922] = {.lex_state = 882}, - [1923] = {.lex_state = 43, .external_lex_state = 6}, - [1924] = {.lex_state = 882}, + [1839] = {.lex_state = 886}, + [1840] = {.lex_state = 886}, + [1841] = {.lex_state = 93}, + [1842] = {.lex_state = 93}, + [1843] = {.lex_state = 886}, + [1844] = {.lex_state = 886}, + [1845] = {.lex_state = 886}, + [1846] = {.lex_state = 886}, + [1847] = {.lex_state = 93}, + [1848] = {.lex_state = 93}, + [1849] = {.lex_state = 39}, + [1850] = {.lex_state = 886, .external_lex_state = 5}, + [1851] = {.lex_state = 111}, + [1852] = {.lex_state = 886, .external_lex_state = 5}, + [1853] = {.lex_state = 886, .external_lex_state = 5}, + [1854] = {.lex_state = 42, .external_lex_state = 6}, + [1855] = {.lex_state = 111}, + [1856] = {.lex_state = 886, .external_lex_state = 5}, + [1857] = {.lex_state = 886, .external_lex_state = 5}, + [1858] = {.lex_state = 39}, + [1859] = {.lex_state = 886, .external_lex_state = 5}, + [1860] = {.lex_state = 886, .external_lex_state = 5}, + [1861] = {.lex_state = 111}, + [1862] = {.lex_state = 111}, + [1863] = {.lex_state = 886, .external_lex_state = 5}, + [1864] = {.lex_state = 886}, + [1865] = {.lex_state = 886, .external_lex_state = 5}, + [1866] = {.lex_state = 886, .external_lex_state = 5}, + [1867] = {.lex_state = 39}, + [1868] = {.lex_state = 886, .external_lex_state = 5}, + [1869] = {.lex_state = 886}, + [1870] = {.lex_state = 111}, + [1871] = {.lex_state = 886, .external_lex_state = 5}, + [1872] = {.lex_state = 886, .external_lex_state = 5}, + [1873] = {.lex_state = 111}, + [1874] = {.lex_state = 39}, + [1875] = {.lex_state = 886, .external_lex_state = 5}, + [1876] = {.lex_state = 886, .external_lex_state = 5}, + [1877] = {.lex_state = 111}, + [1878] = {.lex_state = 39}, + [1879] = {.lex_state = 886}, + [1880] = {.lex_state = 886}, + [1881] = {.lex_state = 886}, + [1882] = {.lex_state = 886}, + [1883] = {.lex_state = 94}, + [1884] = {.lex_state = 94}, + [1885] = {.lex_state = 39}, + [1886] = {.lex_state = 886}, + [1887] = {.lex_state = 886}, + [1888] = {.lex_state = 886}, + [1889] = {.lex_state = 886}, + [1890] = {.lex_state = 94}, + [1891] = {.lex_state = 39}, + [1892] = {.lex_state = 886}, + [1893] = {.lex_state = 886}, + [1894] = {.lex_state = 886}, + [1895] = {.lex_state = 886}, + [1896] = {.lex_state = 94}, + [1897] = {.lex_state = 94}, + [1898] = {.lex_state = 886}, + [1899] = {.lex_state = 886}, + [1900] = {.lex_state = 94}, + [1901] = {.lex_state = 94}, + [1902] = {.lex_state = 886}, + [1903] = {.lex_state = 94}, + [1904] = {.lex_state = 886}, + [1905] = {.lex_state = 886}, + [1906] = {.lex_state = 886}, + [1907] = {.lex_state = 886}, + [1908] = {.lex_state = 886}, + [1909] = {.lex_state = 886}, + [1910] = {.lex_state = 886}, + [1911] = {.lex_state = 94}, + [1912] = {.lex_state = 886}, + [1913] = {.lex_state = 886}, + [1914] = {.lex_state = 886}, + [1915] = {.lex_state = 886}, + [1916] = {.lex_state = 886}, + [1917] = {.lex_state = 886}, + [1918] = {.lex_state = 94}, + [1919] = {.lex_state = 886}, + [1920] = {.lex_state = 886}, + [1921] = {.lex_state = 886}, + [1922] = {.lex_state = 39}, + [1923] = {.lex_state = 39}, + [1924] = {.lex_state = 39}, [1925] = {.lex_state = 39}, - [1926] = {.lex_state = 882}, + [1926] = {.lex_state = 39}, [1927] = {.lex_state = 39}, - [1928] = {.lex_state = 882}, - [1929] = {.lex_state = 882}, - [1930] = {.lex_state = 109}, - [1931] = {.lex_state = 882}, - [1932] = {.lex_state = 882}, - [1933] = {.lex_state = 109}, - [1934] = {.lex_state = 882}, + [1928] = {.lex_state = 43, .external_lex_state = 6}, + [1929] = {.lex_state = 886}, + [1930] = {.lex_state = 39}, + [1931] = {.lex_state = 39}, + [1932] = {.lex_state = 886}, + [1933] = {.lex_state = 886}, + [1934] = {.lex_state = 886}, [1935] = {.lex_state = 39}, - [1936] = {.lex_state = 109}, + [1936] = {.lex_state = 886}, [1937] = {.lex_state = 39}, - [1938] = {.lex_state = 39}, - [1939] = {.lex_state = 39}, - [1940] = {.lex_state = 882}, - [1941] = {.lex_state = 109}, - [1942] = {.lex_state = 882, .external_lex_state = 5}, - [1943] = {.lex_state = 882}, - [1944] = {.lex_state = 882}, - [1945] = {.lex_state = 89}, - [1946] = {.lex_state = 39}, - [1947] = {.lex_state = 109}, - [1948] = {.lex_state = 89}, - [1949] = {.lex_state = 882}, - [1950] = {.lex_state = 882}, - [1951] = {.lex_state = 882}, - [1952] = {.lex_state = 94}, - [1953] = {.lex_state = 39}, - [1954] = {.lex_state = 109}, - [1955] = {.lex_state = 109}, - [1956] = {.lex_state = 94}, - [1957] = {.lex_state = 882}, - [1958] = {.lex_state = 882}, - [1959] = {.lex_state = 109}, - [1960] = {.lex_state = 882}, - [1961] = {.lex_state = 94}, - [1962] = {.lex_state = 109}, - [1963] = {.lex_state = 42, .external_lex_state = 5}, - [1964] = {.lex_state = 882}, - [1965] = {.lex_state = 94}, - [1966] = {.lex_state = 882}, - [1967] = {.lex_state = 882}, - [1968] = {.lex_state = 109}, - [1969] = {.lex_state = 882}, - [1970] = {.lex_state = 882}, - [1971] = {.lex_state = 882}, - [1972] = {.lex_state = 882}, - [1973] = {.lex_state = 882}, - [1974] = {.lex_state = 882}, - [1975] = {.lex_state = 882}, - [1976] = {.lex_state = 882}, - [1977] = {.lex_state = 882}, - [1978] = {.lex_state = 882}, - [1979] = {.lex_state = 882}, - [1980] = {.lex_state = 94}, - [1981] = {.lex_state = 94}, - [1982] = {.lex_state = 882}, - [1983] = {.lex_state = 882}, - [1984] = {.lex_state = 882}, - [1985] = {.lex_state = 882}, - [1986] = {.lex_state = 94}, - [1987] = {.lex_state = 882}, - [1988] = {.lex_state = 882}, - [1989] = {.lex_state = 882}, - [1990] = {.lex_state = 882}, - [1991] = {.lex_state = 882}, - [1992] = {.lex_state = 94}, - [1993] = {.lex_state = 94}, - [1994] = {.lex_state = 109}, - [1995] = {.lex_state = 882}, - [1996] = {.lex_state = 882}, - [1997] = {.lex_state = 882}, - [1998] = {.lex_state = 882}, - [1999] = {.lex_state = 94}, - [2000] = {.lex_state = 882}, - [2001] = {.lex_state = 882}, - [2002] = {.lex_state = 882}, - [2003] = {.lex_state = 882}, - [2004] = {.lex_state = 109}, - [2005] = {.lex_state = 882}, - [2006] = {.lex_state = 882}, - [2007] = {.lex_state = 882}, - [2008] = {.lex_state = 882}, - [2009] = {.lex_state = 109}, - [2010] = {.lex_state = 882}, - [2011] = {.lex_state = 882}, - [2012] = {.lex_state = 882}, - [2013] = {.lex_state = 882}, - [2014] = {.lex_state = 882}, - [2015] = {.lex_state = 42, .external_lex_state = 5}, - [2016] = {.lex_state = 882}, - [2017] = {.lex_state = 882}, - [2018] = {.lex_state = 882}, - [2019] = {.lex_state = 882}, - [2020] = {.lex_state = 882}, - [2021] = {.lex_state = 882}, - [2022] = {.lex_state = 882}, - [2023] = {.lex_state = 882}, - [2024] = {.lex_state = 54}, - [2025] = {.lex_state = 39}, - [2026] = {.lex_state = 39}, - [2027] = {.lex_state = 39}, - [2028] = {.lex_state = 39}, - [2029] = {.lex_state = 882}, - [2030] = {.lex_state = 882}, - [2031] = {.lex_state = 39}, - [2032] = {.lex_state = 39}, + [1938] = {.lex_state = 111}, + [1939] = {.lex_state = 886}, + [1940] = {.lex_state = 111}, + [1941] = {.lex_state = 886}, + [1942] = {.lex_state = 886}, + [1943] = {.lex_state = 111}, + [1944] = {.lex_state = 39}, + [1945] = {.lex_state = 886}, + [1946] = {.lex_state = 886}, + [1947] = {.lex_state = 39}, + [1948] = {.lex_state = 39}, + [1949] = {.lex_state = 886}, + [1950] = {.lex_state = 886}, + [1951] = {.lex_state = 886}, + [1952] = {.lex_state = 886}, + [1953] = {.lex_state = 886}, + [1954] = {.lex_state = 39}, + [1955] = {.lex_state = 886}, + [1956] = {.lex_state = 39}, + [1957] = {.lex_state = 886}, + [1958] = {.lex_state = 886}, + [1959] = {.lex_state = 886}, + [1960] = {.lex_state = 886}, + [1961] = {.lex_state = 111}, + [1962] = {.lex_state = 39}, + [1963] = {.lex_state = 89}, + [1964] = {.lex_state = 886}, + [1965] = {.lex_state = 886}, + [1966] = {.lex_state = 89}, + [1967] = {.lex_state = 886, .external_lex_state = 5}, + [1968] = {.lex_state = 111}, + [1969] = {.lex_state = 886}, + [1970] = {.lex_state = 886}, + [1971] = {.lex_state = 886}, + [1972] = {.lex_state = 111}, + [1973] = {.lex_state = 886}, + [1974] = {.lex_state = 886}, + [1975] = {.lex_state = 42, .external_lex_state = 5}, + [1976] = {.lex_state = 42, .external_lex_state = 5}, + [1977] = {.lex_state = 886}, + [1978] = {.lex_state = 886}, + [1979] = {.lex_state = 886}, + [1980] = {.lex_state = 886}, + [1981] = {.lex_state = 886}, + [1982] = {.lex_state = 886}, + [1983] = {.lex_state = 886}, + [1984] = {.lex_state = 886}, + [1985] = {.lex_state = 886}, + [1986] = {.lex_state = 886}, + [1987] = {.lex_state = 886}, + [1988] = {.lex_state = 886}, + [1989] = {.lex_state = 111}, + [1990] = {.lex_state = 886}, + [1991] = {.lex_state = 111}, + [1992] = {.lex_state = 886}, + [1993] = {.lex_state = 886}, + [1994] = {.lex_state = 886}, + [1995] = {.lex_state = 886}, + [1996] = {.lex_state = 886}, + [1997] = {.lex_state = 886}, + [1998] = {.lex_state = 886}, + [1999] = {.lex_state = 886}, + [2000] = {.lex_state = 886}, + [2001] = {.lex_state = 886}, + [2002] = {.lex_state = 886}, + [2003] = {.lex_state = 886}, + [2004] = {.lex_state = 886}, + [2005] = {.lex_state = 111}, + [2006] = {.lex_state = 886}, + [2007] = {.lex_state = 886}, + [2008] = {.lex_state = 111}, + [2009] = {.lex_state = 111}, + [2010] = {.lex_state = 886}, + [2011] = {.lex_state = 886}, + [2012] = {.lex_state = 886}, + [2013] = {.lex_state = 886}, + [2014] = {.lex_state = 111}, + [2015] = {.lex_state = 886}, + [2016] = {.lex_state = 886}, + [2017] = {.lex_state = 886}, + [2018] = {.lex_state = 886}, + [2019] = {.lex_state = 39}, + [2020] = {.lex_state = 111}, + [2021] = {.lex_state = 886}, + [2022] = {.lex_state = 886}, + [2023] = {.lex_state = 886}, + [2024] = {.lex_state = 886}, + [2025] = {.lex_state = 886}, + [2026] = {.lex_state = 886}, + [2027] = {.lex_state = 886}, + [2028] = {.lex_state = 886}, + [2029] = {.lex_state = 886}, + [2030] = {.lex_state = 886}, + [2031] = {.lex_state = 886}, + [2032] = {.lex_state = 886}, [2033] = {.lex_state = 39}, [2034] = {.lex_state = 39}, - [2035] = {.lex_state = 882}, - [2036] = {.lex_state = 39}, - [2037] = {.lex_state = 882}, - [2038] = {.lex_state = 882}, + [2035] = {.lex_state = 886}, + [2036] = {.lex_state = 886}, + [2037] = {.lex_state = 886}, + [2038] = {.lex_state = 886}, [2039] = {.lex_state = 39}, - [2040] = {.lex_state = 882}, - [2041] = {.lex_state = 882}, - [2042] = {.lex_state = 39}, + [2040] = {.lex_state = 886}, + [2041] = {.lex_state = 39}, + [2042] = {.lex_state = 54}, [2043] = {.lex_state = 39}, [2044] = {.lex_state = 39}, - [2045] = {.lex_state = 882}, + [2045] = {.lex_state = 886, .external_lex_state = 5}, [2046] = {.lex_state = 39}, - [2047] = {.lex_state = 882}, - [2048] = {.lex_state = 882}, - [2049] = {.lex_state = 882}, - [2050] = {.lex_state = 882}, - [2051] = {.lex_state = 882}, + [2047] = {.lex_state = 39}, + [2048] = {.lex_state = 54}, + [2049] = {.lex_state = 886}, + [2050] = {.lex_state = 886}, + [2051] = {.lex_state = 886}, [2052] = {.lex_state = 39}, [2053] = {.lex_state = 39}, - [2054] = {.lex_state = 882}, + [2054] = {.lex_state = 886}, [2055] = {.lex_state = 39}, [2056] = {.lex_state = 39}, [2057] = {.lex_state = 39}, [2058] = {.lex_state = 39}, - [2059] = {.lex_state = 882}, + [2059] = {.lex_state = 39}, [2060] = {.lex_state = 39}, - [2061] = {.lex_state = 882, .external_lex_state = 5}, + [2061] = {.lex_state = 39}, [2062] = {.lex_state = 39}, [2063] = {.lex_state = 39}, - [2064] = {.lex_state = 39}, - [2065] = {.lex_state = 39}, - [2066] = {.lex_state = 882}, + [2064] = {.lex_state = 886}, + [2065] = {.lex_state = 42}, + [2066] = {.lex_state = 39}, [2067] = {.lex_state = 39}, - [2068] = {.lex_state = 882}, - [2069] = {.lex_state = 54}, - [2070] = {.lex_state = 882}, + [2068] = {.lex_state = 886}, + [2069] = {.lex_state = 42}, + [2070] = {.lex_state = 39}, [2071] = {.lex_state = 39}, - [2072] = {.lex_state = 882}, - [2073] = {.lex_state = 39}, - [2074] = {.lex_state = 882}, - [2075] = {.lex_state = 882}, - [2076] = {.lex_state = 42}, - [2077] = {.lex_state = 882, .external_lex_state = 5}, - [2078] = {.lex_state = 882}, + [2072] = {.lex_state = 886}, + [2073] = {.lex_state = 886, .external_lex_state = 5}, + [2074] = {.lex_state = 39}, + [2075] = {.lex_state = 42, .external_lex_state = 5}, + [2076] = {.lex_state = 886}, + [2077] = {.lex_state = 39}, + [2078] = {.lex_state = 39}, [2079] = {.lex_state = 39}, - [2080] = {.lex_state = 39}, + [2080] = {.lex_state = 886}, [2081] = {.lex_state = 39}, [2082] = {.lex_state = 39}, - [2083] = {.lex_state = 882}, + [2083] = {.lex_state = 39}, [2084] = {.lex_state = 39}, - [2085] = {.lex_state = 39}, - [2086] = {.lex_state = 882}, + [2085] = {.lex_state = 886}, + [2086] = {.lex_state = 39}, [2087] = {.lex_state = 39}, - [2088] = {.lex_state = 882}, - [2089] = {.lex_state = 39}, - [2090] = {.lex_state = 42}, + [2088] = {.lex_state = 886}, + [2089] = {.lex_state = 886}, + [2090] = {.lex_state = 886}, [2091] = {.lex_state = 39}, [2092] = {.lex_state = 39}, - [2093] = {.lex_state = 42}, + [2093] = {.lex_state = 886}, [2094] = {.lex_state = 39}, - [2095] = {.lex_state = 39}, - [2096] = {.lex_state = 882}, + [2095] = {.lex_state = 886}, + [2096] = {.lex_state = 39}, [2097] = {.lex_state = 39}, [2098] = {.lex_state = 39}, - [2099] = {.lex_state = 39}, + [2099] = {.lex_state = 886}, [2100] = {.lex_state = 39}, - [2101] = {.lex_state = 882}, + [2101] = {.lex_state = 39}, [2102] = {.lex_state = 39}, - [2103] = {.lex_state = 882}, - [2104] = {.lex_state = 882}, - [2105] = {.lex_state = 882}, + [2103] = {.lex_state = 886}, + [2104] = {.lex_state = 39}, + [2105] = {.lex_state = 39}, [2106] = {.lex_state = 39}, - [2107] = {.lex_state = 882}, - [2108] = {.lex_state = 39}, + [2107] = {.lex_state = 886}, + [2108] = {.lex_state = 886}, [2109] = {.lex_state = 39}, - [2110] = {.lex_state = 882}, - [2111] = {.lex_state = 39}, - [2112] = {.lex_state = 39}, - [2113] = {.lex_state = 39}, + [2110] = {.lex_state = 886}, + [2111] = {.lex_state = 886}, + [2112] = {.lex_state = 886}, + [2113] = {.lex_state = 886}, [2114] = {.lex_state = 39}, [2115] = {.lex_state = 39}, - [2116] = {.lex_state = 882}, - [2117] = {.lex_state = 39}, - [2118] = {.lex_state = 39}, - [2119] = {.lex_state = 42}, - [2120] = {.lex_state = 882}, + [2116] = {.lex_state = 39}, + [2117] = {.lex_state = 886}, + [2118] = {.lex_state = 886}, + [2119] = {.lex_state = 39}, + [2120] = {.lex_state = 39}, [2121] = {.lex_state = 39}, - [2122] = {.lex_state = 42, .external_lex_state = 5}, - [2123] = {.lex_state = 882}, + [2122] = {.lex_state = 886}, + [2123] = {.lex_state = 886}, [2124] = {.lex_state = 39}, - [2125] = {.lex_state = 882}, - [2126] = {.lex_state = 39}, - [2127] = {.lex_state = 882}, - [2128] = {.lex_state = 39}, - [2129] = {.lex_state = 39}, - [2130] = {.lex_state = 882}, - [2131] = {.lex_state = 39}, + [2125] = {.lex_state = 39}, + [2126] = {.lex_state = 886}, + [2127] = {.lex_state = 886}, + [2128] = {.lex_state = 886}, + [2129] = {.lex_state = 886}, + [2130] = {.lex_state = 39}, + [2131] = {.lex_state = 886}, [2132] = {.lex_state = 39}, - [2133] = {.lex_state = 39}, - [2134] = {.lex_state = 882}, + [2133] = {.lex_state = 42}, + [2134] = {.lex_state = 42}, [2135] = {.lex_state = 39}, - [2136] = {.lex_state = 882}, - [2137] = {.lex_state = 882}, - [2138] = {.lex_state = 56}, + [2136] = {.lex_state = 39}, + [2137] = {.lex_state = 39}, + [2138] = {.lex_state = 39}, [2139] = {.lex_state = 39}, - [2140] = {.lex_state = 39}, - [2141] = {.lex_state = 56}, - [2142] = {.lex_state = 882}, - [2143] = {.lex_state = 882}, - [2144] = {.lex_state = 882}, - [2145] = {.lex_state = 39}, - [2146] = {.lex_state = 56}, - [2147] = {.lex_state = 56}, - [2148] = {.lex_state = 882}, - [2149] = {.lex_state = 882}, - [2150] = {.lex_state = 39}, - [2151] = {.lex_state = 39}, - [2152] = {.lex_state = 882}, - [2153] = {.lex_state = 43, .external_lex_state = 5}, - [2154] = {.lex_state = 43, .external_lex_state = 5}, - [2155] = {.lex_state = 882}, - [2156] = {.lex_state = 56}, - [2157] = {.lex_state = 882}, - [2158] = {.lex_state = 882}, - [2159] = {.lex_state = 23}, - [2160] = {.lex_state = 56}, + [2140] = {.lex_state = 886}, + [2141] = {.lex_state = 39}, + [2142] = {.lex_state = 39}, + [2143] = {.lex_state = 39}, + [2144] = {.lex_state = 886}, + [2145] = {.lex_state = 886, .external_lex_state = 5}, + [2146] = {.lex_state = 886}, + [2147] = {.lex_state = 886}, + [2148] = {.lex_state = 886}, + [2149] = {.lex_state = 886}, + [2150] = {.lex_state = 56}, + [2151] = {.lex_state = 56}, + [2152] = {.lex_state = 56}, + [2153] = {.lex_state = 56}, + [2154] = {.lex_state = 23}, + [2155] = {.lex_state = 886}, + [2156] = {.lex_state = 886}, + [2157] = {.lex_state = 886}, + [2158] = {.lex_state = 23}, + [2159] = {.lex_state = 886}, + [2160] = {.lex_state = 23}, [2161] = {.lex_state = 39}, - [2162] = {.lex_state = 882}, - [2163] = {.lex_state = 882}, - [2164] = {.lex_state = 882}, - [2165] = {.lex_state = 882}, - [2166] = {.lex_state = 882}, - [2167] = {.lex_state = 56}, - [2168] = {.lex_state = 39}, - [2169] = {.lex_state = 882}, - [2170] = {.lex_state = 882}, - [2171] = {.lex_state = 882}, - [2172] = {.lex_state = 23}, - [2173] = {.lex_state = 882}, + [2162] = {.lex_state = 39}, + [2163] = {.lex_state = 39}, + [2164] = {.lex_state = 56}, + [2165] = {.lex_state = 42}, + [2166] = {.lex_state = 56}, + [2167] = {.lex_state = 886}, + [2168] = {.lex_state = 886}, + [2169] = {.lex_state = 56}, + [2170] = {.lex_state = 886}, + [2171] = {.lex_state = 886}, + [2172] = {.lex_state = 886}, + [2173] = {.lex_state = 886}, [2174] = {.lex_state = 42}, - [2175] = {.lex_state = 42}, - [2176] = {.lex_state = 882}, - [2177] = {.lex_state = 23}, - [2178] = {.lex_state = 882}, - [2179] = {.lex_state = 882}, - [2180] = {.lex_state = 882}, - [2181] = {.lex_state = 882}, - [2182] = {.lex_state = 882}, - [2183] = {.lex_state = 56}, - [2184] = {.lex_state = 56}, - [2185] = {.lex_state = 882}, - [2186] = {.lex_state = 23}, - [2187] = {.lex_state = 23}, - [2188] = {.lex_state = 882}, + [2175] = {.lex_state = 886}, + [2176] = {.lex_state = 886}, + [2177] = {.lex_state = 886}, + [2178] = {.lex_state = 886}, + [2179] = {.lex_state = 23}, + [2180] = {.lex_state = 886}, + [2181] = {.lex_state = 23}, + [2182] = {.lex_state = 886}, + [2183] = {.lex_state = 886}, + [2184] = {.lex_state = 886}, + [2185] = {.lex_state = 39}, + [2186] = {.lex_state = 886}, + [2187] = {.lex_state = 39}, + [2188] = {.lex_state = 39}, [2189] = {.lex_state = 39}, - [2190] = {.lex_state = 882}, - [2191] = {.lex_state = 882}, - [2192] = {.lex_state = 882}, - [2193] = {.lex_state = 882}, - [2194] = {.lex_state = 882}, - [2195] = {.lex_state = 882}, - [2196] = {.lex_state = 39}, - [2197] = {.lex_state = 882}, - [2198] = {.lex_state = 882, .external_lex_state = 5}, - [2199] = {.lex_state = 39}, - [2200] = {.lex_state = 882}, + [2190] = {.lex_state = 886}, + [2191] = {.lex_state = 886}, + [2192] = {.lex_state = 56}, + [2193] = {.lex_state = 39}, + [2194] = {.lex_state = 39}, + [2195] = {.lex_state = 39}, + [2196] = {.lex_state = 886}, + [2197] = {.lex_state = 56}, + [2198] = {.lex_state = 56}, + [2199] = {.lex_state = 886}, + [2200] = {.lex_state = 39}, [2201] = {.lex_state = 56}, - [2202] = {.lex_state = 56}, - [2203] = {.lex_state = 39}, - [2204] = {.lex_state = 56}, - [2205] = {.lex_state = 39}, - [2206] = {.lex_state = 23}, - [2207] = {.lex_state = 882}, - [2208] = {.lex_state = 882}, - [2209] = {.lex_state = 39}, - [2210] = {.lex_state = 56}, + [2202] = {.lex_state = 886}, + [2203] = {.lex_state = 886}, + [2204] = {.lex_state = 39}, + [2205] = {.lex_state = 886}, + [2206] = {.lex_state = 43, .external_lex_state = 5}, + [2207] = {.lex_state = 886}, + [2208] = {.lex_state = 886}, + [2209] = {.lex_state = 43, .external_lex_state = 5}, + [2210] = {.lex_state = 886}, [2211] = {.lex_state = 23}, - [2212] = {.lex_state = 56}, + [2212] = {.lex_state = 886}, [2213] = {.lex_state = 56}, - [2214] = {.lex_state = 39}, - [2215] = {.lex_state = 882}, - [2216] = {.lex_state = 882}, - [2217] = {.lex_state = 39}, - [2218] = {.lex_state = 43, .external_lex_state = 5}, - [2219] = {.lex_state = 90}, - [2220] = {.lex_state = 882}, - [2221] = {.lex_state = 882}, - [2222] = {.lex_state = 882}, - [2223] = {.lex_state = 882}, - [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 = 882}, - [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 = 882}, - [2238] = {.lex_state = 882}, - [2239] = {.lex_state = 882}, - [2240] = {.lex_state = 882}, - [2241] = {.lex_state = 882}, - [2242] = {.lex_state = 882}, - [2243] = {.lex_state = 882}, - [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 = 43}, - [2261] = {.lex_state = 882}, - [2262] = {.lex_state = 882}, - [2263] = {.lex_state = 882}, - [2264] = {.lex_state = 882}, - [2265] = {.lex_state = 882}, - [2266] = {.lex_state = 882}, - [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 = 43}, - [2289] = {.lex_state = 882}, - [2290] = {.lex_state = 882}, - [2291] = {.lex_state = 882}, - [2292] = {.lex_state = 882}, - [2293] = {.lex_state = 882}, - [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 = 90}, - [2309] = {.lex_state = 882}, - [2310] = {.lex_state = 882}, - [2311] = {.lex_state = 882}, - [2312] = {.lex_state = 882}, - [2313] = {.lex_state = 43}, - [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 = 43}, - [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 = 882}, - [2339] = {.lex_state = 882, .external_lex_state = 5}, - [2340] = {.lex_state = 109}, - [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 = 882, .external_lex_state = 5}, - [2351] = {.lex_state = 882}, - [2352] = {.lex_state = 882, .external_lex_state = 5}, - [2353] = {.lex_state = 40}, - [2354] = {.lex_state = 40}, - [2355] = {.lex_state = 882, .external_lex_state = 5}, - [2356] = {.lex_state = 40}, - [2357] = {.lex_state = 882, .external_lex_state = 5}, - [2358] = {.lex_state = 882, .external_lex_state = 5}, - [2359] = {.lex_state = 882, .external_lex_state = 5}, - [2360] = {.lex_state = 882}, - [2361] = {.lex_state = 40}, - [2362] = {.lex_state = 105}, - [2363] = {.lex_state = 882}, - [2364] = {.lex_state = 105}, - [2365] = {.lex_state = 882, .external_lex_state = 5}, - [2366] = {.lex_state = 43}, - [2367] = {.lex_state = 43}, - [2368] = {.lex_state = 882, .external_lex_state = 5}, - [2369] = {.lex_state = 40}, - [2370] = {.lex_state = 89}, - [2371] = {.lex_state = 40}, - [2372] = {.lex_state = 882, .external_lex_state = 5}, - [2373] = {.lex_state = 40}, - [2374] = {.lex_state = 23}, - [2375] = {.lex_state = 105}, - [2376] = {.lex_state = 23}, - [2377] = {.lex_state = 882, .external_lex_state = 5}, - [2378] = {.lex_state = 40}, - [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 = 40}, - [2383] = {.lex_state = 23}, - [2384] = {.lex_state = 23}, - [2385] = {.lex_state = 882, .external_lex_state = 5}, - [2386] = {.lex_state = 40}, - [2387] = {.lex_state = 105}, - [2388] = {.lex_state = 882, .external_lex_state = 5}, - [2389] = {.lex_state = 23}, - [2390] = {.lex_state = 105}, - [2391] = {.lex_state = 882}, - [2392] = {.lex_state = 44}, - [2393] = {.lex_state = 882}, - [2394] = {.lex_state = 44}, - [2395] = {.lex_state = 23}, - [2396] = {.lex_state = 44}, - [2397] = {.lex_state = 44}, - [2398] = {.lex_state = 88}, - [2399] = {.lex_state = 23}, - [2400] = {.lex_state = 56}, - [2401] = {.lex_state = 56}, - [2402] = {.lex_state = 88}, - [2403] = {.lex_state = 882}, - [2404] = {.lex_state = 882}, - [2405] = {.lex_state = 56}, - [2406] = {.lex_state = 56}, - [2407] = {.lex_state = 23}, - [2408] = {.lex_state = 882}, - [2409] = {.lex_state = 56}, - [2410] = {.lex_state = 23}, - [2411] = {.lex_state = 882}, - [2412] = {.lex_state = 882}, - [2413] = {.lex_state = 44}, - [2414] = {.lex_state = 56}, - [2415] = {.lex_state = 44}, - [2416] = {.lex_state = 882}, - [2417] = {.lex_state = 56}, - [2418] = {.lex_state = 882}, - [2419] = {.lex_state = 56}, - [2420] = {.lex_state = 882}, - [2421] = {.lex_state = 56}, - [2422] = {.lex_state = 56}, - [2423] = {.lex_state = 882}, - [2424] = {.lex_state = 23}, - [2425] = {.lex_state = 882}, + [2214] = {.lex_state = 886}, + [2215] = {.lex_state = 886}, + [2216] = {.lex_state = 886}, + [2217] = {.lex_state = 886}, + [2218] = {.lex_state = 886}, + [2219] = {.lex_state = 39}, + [2220] = {.lex_state = 886}, + [2221] = {.lex_state = 886}, + [2222] = {.lex_state = 886}, + [2223] = {.lex_state = 886}, + [2224] = {.lex_state = 886}, + [2225] = {.lex_state = 886}, + [2226] = {.lex_state = 56}, + [2227] = {.lex_state = 886}, + [2228] = {.lex_state = 886}, + [2229] = {.lex_state = 886}, + [2230] = {.lex_state = 56}, + [2231] = {.lex_state = 886}, + [2232] = {.lex_state = 886}, + [2233] = {.lex_state = 39}, + [2234] = {.lex_state = 39}, + [2235] = {.lex_state = 56}, + [2236] = {.lex_state = 23}, + [2237] = {.lex_state = 886}, + [2238] = {.lex_state = 886}, + [2239] = {.lex_state = 886}, + [2240] = {.lex_state = 886}, + [2241] = {.lex_state = 886}, + [2242] = {.lex_state = 886}, + [2243] = {.lex_state = 886}, + [2244] = {.lex_state = 886}, + [2245] = {.lex_state = 886}, + [2246] = {.lex_state = 886}, + [2247] = {.lex_state = 886}, + [2248] = {.lex_state = 43}, + [2249] = {.lex_state = 886}, + [2250] = {.lex_state = 886}, + [2251] = {.lex_state = 886}, + [2252] = {.lex_state = 886}, + [2253] = {.lex_state = 886}, + [2254] = {.lex_state = 886}, + [2255] = {.lex_state = 886}, + [2256] = {.lex_state = 886}, + [2257] = {.lex_state = 886}, + [2258] = {.lex_state = 886}, + [2259] = {.lex_state = 886}, + [2260] = {.lex_state = 886}, + [2261] = {.lex_state = 886}, + [2262] = {.lex_state = 886}, + [2263] = {.lex_state = 886}, + [2264] = {.lex_state = 886}, + [2265] = {.lex_state = 886}, + [2266] = {.lex_state = 886}, + [2267] = {.lex_state = 886}, + [2268] = {.lex_state = 886}, + [2269] = {.lex_state = 886}, + [2270] = {.lex_state = 886}, + [2271] = {.lex_state = 886}, + [2272] = {.lex_state = 886}, + [2273] = {.lex_state = 886}, + [2274] = {.lex_state = 886}, + [2275] = {.lex_state = 886}, + [2276] = {.lex_state = 886}, + [2277] = {.lex_state = 886}, + [2278] = {.lex_state = 886}, + [2279] = {.lex_state = 886}, + [2280] = {.lex_state = 886}, + [2281] = {.lex_state = 43, .external_lex_state = 5}, + [2282] = {.lex_state = 886}, + [2283] = {.lex_state = 886}, + [2284] = {.lex_state = 886}, + [2285] = {.lex_state = 886}, + [2286] = {.lex_state = 886}, + [2287] = {.lex_state = 886}, + [2288] = {.lex_state = 886}, + [2289] = {.lex_state = 886}, + [2290] = {.lex_state = 886}, + [2291] = {.lex_state = 886}, + [2292] = {.lex_state = 90}, + [2293] = {.lex_state = 43}, + [2294] = {.lex_state = 886}, + [2295] = {.lex_state = 886}, + [2296] = {.lex_state = 90}, + [2297] = {.lex_state = 886}, + [2298] = {.lex_state = 886}, + [2299] = {.lex_state = 886}, + [2300] = {.lex_state = 886}, + [2301] = {.lex_state = 886}, + [2302] = {.lex_state = 886}, + [2303] = {.lex_state = 886}, + [2304] = {.lex_state = 886}, + [2305] = {.lex_state = 886}, + [2306] = {.lex_state = 886}, + [2307] = {.lex_state = 886}, + [2308] = {.lex_state = 886}, + [2309] = {.lex_state = 886}, + [2310] = {.lex_state = 886}, + [2311] = {.lex_state = 886}, + [2312] = {.lex_state = 886}, + [2313] = {.lex_state = 886}, + [2314] = {.lex_state = 886}, + [2315] = {.lex_state = 886}, + [2316] = {.lex_state = 886}, + [2317] = {.lex_state = 886}, + [2318] = {.lex_state = 886}, + [2319] = {.lex_state = 886}, + [2320] = {.lex_state = 886}, + [2321] = {.lex_state = 886}, + [2322] = {.lex_state = 886}, + [2323] = {.lex_state = 886}, + [2324] = {.lex_state = 886}, + [2325] = {.lex_state = 886}, + [2326] = {.lex_state = 886}, + [2327] = {.lex_state = 886}, + [2328] = {.lex_state = 886}, + [2329] = {.lex_state = 886}, + [2330] = {.lex_state = 886}, + [2331] = {.lex_state = 886}, + [2332] = {.lex_state = 886}, + [2333] = {.lex_state = 886}, + [2334] = {.lex_state = 886}, + [2335] = {.lex_state = 886}, + [2336] = {.lex_state = 886}, + [2337] = {.lex_state = 886}, + [2338] = {.lex_state = 43}, + [2339] = {.lex_state = 886}, + [2340] = {.lex_state = 886}, + [2341] = {.lex_state = 886}, + [2342] = {.lex_state = 886}, + [2343] = {.lex_state = 886}, + [2344] = {.lex_state = 886}, + [2345] = {.lex_state = 43}, + [2346] = {.lex_state = 886}, + [2347] = {.lex_state = 886}, + [2348] = {.lex_state = 886, .external_lex_state = 5}, + [2349] = {.lex_state = 886}, + [2350] = {.lex_state = 886}, + [2351] = {.lex_state = 886}, + [2352] = {.lex_state = 886}, + [2353] = {.lex_state = 886}, + [2354] = {.lex_state = 886}, + [2355] = {.lex_state = 886}, + [2356] = {.lex_state = 886}, + [2357] = {.lex_state = 886}, + [2358] = {.lex_state = 886}, + [2359] = {.lex_state = 886}, + [2360] = {.lex_state = 886}, + [2361] = {.lex_state = 886}, + [2362] = {.lex_state = 886}, + [2363] = {.lex_state = 111}, + [2364] = {.lex_state = 886}, + [2365] = {.lex_state = 886}, + [2366] = {.lex_state = 886}, + [2367] = {.lex_state = 886}, + [2368] = {.lex_state = 886}, + [2369] = {.lex_state = 43}, + [2370] = {.lex_state = 886, .external_lex_state = 5}, + [2371] = {.lex_state = 886}, + [2372] = {.lex_state = 107}, + [2373] = {.lex_state = 886}, + [2374] = {.lex_state = 40}, + [2375] = {.lex_state = 886}, + [2376] = {.lex_state = 43}, + [2377] = {.lex_state = 107}, + [2378] = {.lex_state = 886, .external_lex_state = 5}, + [2379] = {.lex_state = 886}, + [2380] = {.lex_state = 886, .external_lex_state = 5}, + [2381] = {.lex_state = 886}, + [2382] = {.lex_state = 886}, + [2383] = {.lex_state = 40}, + [2384] = {.lex_state = 40}, + [2385] = {.lex_state = 886, .external_lex_state = 5}, + [2386] = {.lex_state = 886, .external_lex_state = 5}, + [2387] = {.lex_state = 40}, + [2388] = {.lex_state = 886}, + [2389] = {.lex_state = 107}, + [2390] = {.lex_state = 886}, + [2391] = {.lex_state = 40}, + [2392] = {.lex_state = 23}, + [2393] = {.lex_state = 40}, + [2394] = {.lex_state = 886}, + [2395] = {.lex_state = 107}, + [2396] = {.lex_state = 23}, + [2397] = {.lex_state = 886, .external_lex_state = 5}, + [2398] = {.lex_state = 886, .external_lex_state = 5}, + [2399] = {.lex_state = 886}, + [2400] = {.lex_state = 886}, + [2401] = {.lex_state = 886}, + [2402] = {.lex_state = 886}, + [2403] = {.lex_state = 23}, + [2404] = {.lex_state = 886, .external_lex_state = 5}, + [2405] = {.lex_state = 886, .external_lex_state = 5}, + [2406] = {.lex_state = 40}, + [2407] = {.lex_state = 886}, + [2408] = {.lex_state = 886}, + [2409] = {.lex_state = 89}, + [2410] = {.lex_state = 886, .external_lex_state = 5}, + [2411] = {.lex_state = 40}, + [2412] = {.lex_state = 886}, + [2413] = {.lex_state = 886, .external_lex_state = 5}, + [2414] = {.lex_state = 886, .external_lex_state = 5}, + [2415] = {.lex_state = 40}, + [2416] = {.lex_state = 886}, + [2417] = {.lex_state = 886, .external_lex_state = 5}, + [2418] = {.lex_state = 107}, + [2419] = {.lex_state = 23}, + [2420] = {.lex_state = 886}, + [2421] = {.lex_state = 886, .external_lex_state = 5}, + [2422] = {.lex_state = 40}, + [2423] = {.lex_state = 23}, + [2424] = {.lex_state = 886, .external_lex_state = 5}, + [2425] = {.lex_state = 886}, [2426] = {.lex_state = 23}, - [2427] = {.lex_state = 88}, - [2428] = {.lex_state = 56}, - [2429] = {.lex_state = 882}, + [2427] = {.lex_state = 56}, + [2428] = {.lex_state = 886}, + [2429] = {.lex_state = 23}, [2430] = {.lex_state = 56}, [2431] = {.lex_state = 56}, [2432] = {.lex_state = 56}, - [2433] = {.lex_state = 56}, - [2434] = {.lex_state = 56}, - [2435] = {.lex_state = 56}, + [2433] = {.lex_state = 886}, + [2434] = {.lex_state = 886}, + [2435] = {.lex_state = 23}, [2436] = {.lex_state = 56}, - [2437] = {.lex_state = 56}, - [2438] = {.lex_state = 44}, - [2439] = {.lex_state = 88}, - [2440] = {.lex_state = 882}, - [2441] = {.lex_state = 44}, - [2442] = {.lex_state = 882}, - [2443] = {.lex_state = 882}, - [2444] = {.lex_state = 882}, - [2445] = {.lex_state = 23}, - [2446] = {.lex_state = 23}, - [2447] = {.lex_state = 882}, - [2448] = {.lex_state = 882}, - [2449] = {.lex_state = 23}, - [2450] = {.lex_state = 882}, - [2451] = {.lex_state = 882}, + [2437] = {.lex_state = 23}, + [2438] = {.lex_state = 886}, + [2439] = {.lex_state = 886}, + [2440] = {.lex_state = 886}, + [2441] = {.lex_state = 886}, + [2442] = {.lex_state = 886}, + [2443] = {.lex_state = 88}, + [2444] = {.lex_state = 56}, + [2445] = {.lex_state = 56}, + [2446] = {.lex_state = 886}, + [2447] = {.lex_state = 886}, + [2448] = {.lex_state = 56}, + [2449] = {.lex_state = 56}, + [2450] = {.lex_state = 886}, + [2451] = {.lex_state = 886}, [2452] = {.lex_state = 56}, - [2453] = {.lex_state = 882}, - [2454] = {.lex_state = 39}, - [2455] = {.lex_state = 882}, - [2456] = {.lex_state = 882}, - [2457] = {.lex_state = 56}, - [2458] = {.lex_state = 882}, - [2459] = {.lex_state = 882}, - [2460] = {.lex_state = 88}, - [2461] = {.lex_state = 44}, - [2462] = {.lex_state = 56}, - [2463] = {.lex_state = 882}, - [2464] = {.lex_state = 44}, - [2465] = {.lex_state = 882}, - [2466] = {.lex_state = 56}, - [2467] = {.lex_state = 882}, - [2468] = {.lex_state = 882}, + [2453] = {.lex_state = 44}, + [2454] = {.lex_state = 23}, + [2455] = {.lex_state = 56}, + [2456] = {.lex_state = 56}, + [2457] = {.lex_state = 23}, + [2458] = {.lex_state = 886}, + [2459] = {.lex_state = 56}, + [2460] = {.lex_state = 886}, + [2461] = {.lex_state = 886}, + [2462] = {.lex_state = 886}, + [2463] = {.lex_state = 886}, + [2464] = {.lex_state = 886}, + [2465] = {.lex_state = 23}, + [2466] = {.lex_state = 886}, + [2467] = {.lex_state = 56}, + [2468] = {.lex_state = 886}, [2469] = {.lex_state = 56}, [2470] = {.lex_state = 56}, - [2471] = {.lex_state = 882}, - [2472] = {.lex_state = 882}, - [2473] = {.lex_state = 56}, - [2474] = {.lex_state = 56}, - [2475] = {.lex_state = 882}, - [2476] = {.lex_state = 44}, - [2477] = {.lex_state = 882}, - [2478] = {.lex_state = 44}, - [2479] = {.lex_state = 882}, - [2480] = {.lex_state = 56}, - [2481] = {.lex_state = 882}, - [2482] = {.lex_state = 882}, - [2483] = {.lex_state = 882}, - [2484] = {.lex_state = 56}, - [2485] = {.lex_state = 882}, - [2486] = {.lex_state = 882}, - [2487] = {.lex_state = 88}, - [2488] = {.lex_state = 88}, - [2489] = {.lex_state = 23}, - [2490] = {.lex_state = 882}, - [2491] = {.lex_state = 23}, - [2492] = {.lex_state = 882}, - [2493] = {.lex_state = 882}, - [2494] = {.lex_state = 56}, - [2495] = {.lex_state = 882}, - [2496] = {.lex_state = 882}, - [2497] = {.lex_state = 882}, - [2498] = {.lex_state = 56}, - [2499] = {.lex_state = 56}, - [2500] = {.lex_state = 44}, - [2501] = {.lex_state = 56}, - [2502] = {.lex_state = 882}, - [2503] = {.lex_state = 882}, - [2504] = {.lex_state = 56}, - [2505] = {.lex_state = 882}, - [2506] = {.lex_state = 882}, - [2507] = {.lex_state = 882}, - [2508] = {.lex_state = 882}, - [2509] = {.lex_state = 882}, - [2510] = {.lex_state = 23}, - [2511] = {.lex_state = 882}, - [2512] = {.lex_state = 56}, - [2513] = {.lex_state = 882}, - [2514] = {.lex_state = 882}, - [2515] = {.lex_state = 88}, + [2471] = {.lex_state = 56}, + [2472] = {.lex_state = 88}, + [2473] = {.lex_state = 886}, + [2474] = {.lex_state = 886}, + [2475] = {.lex_state = 886}, + [2476] = {.lex_state = 886}, + [2477] = {.lex_state = 886}, + [2478] = {.lex_state = 886}, + [2479] = {.lex_state = 886}, + [2480] = {.lex_state = 886}, + [2481] = {.lex_state = 56}, + [2482] = {.lex_state = 44}, + [2483] = {.lex_state = 56}, + [2484] = {.lex_state = 886}, + [2485] = {.lex_state = 886}, + [2486] = {.lex_state = 886}, + [2487] = {.lex_state = 44}, + [2488] = {.lex_state = 886}, + [2489] = {.lex_state = 886}, + [2490] = {.lex_state = 56}, + [2491] = {.lex_state = 56}, + [2492] = {.lex_state = 88}, + [2493] = {.lex_state = 886}, + [2494] = {.lex_state = 886}, + [2495] = {.lex_state = 56}, + [2496] = {.lex_state = 88}, + [2497] = {.lex_state = 886}, + [2498] = {.lex_state = 886}, + [2499] = {.lex_state = 88}, + [2500] = {.lex_state = 886}, + [2501] = {.lex_state = 88}, + [2502] = {.lex_state = 23}, + [2503] = {.lex_state = 23}, + [2504] = {.lex_state = 88}, + [2505] = {.lex_state = 56}, + [2506] = {.lex_state = 23}, + [2507] = {.lex_state = 886}, + [2508] = {.lex_state = 886}, + [2509] = {.lex_state = 56}, + [2510] = {.lex_state = 56}, + [2511] = {.lex_state = 88}, + [2512] = {.lex_state = 886}, + [2513] = {.lex_state = 886}, + [2514] = {.lex_state = 23}, + [2515] = {.lex_state = 886}, [2516] = {.lex_state = 56}, - [2517] = {.lex_state = 88}, - [2518] = {.lex_state = 88}, - [2519] = {.lex_state = 882}, - [2520] = {.lex_state = 882}, - [2521] = {.lex_state = 88}, - [2522] = {.lex_state = 56}, + [2517] = {.lex_state = 56}, + [2518] = {.lex_state = 56}, + [2519] = {.lex_state = 56}, + [2520] = {.lex_state = 886}, + [2521] = {.lex_state = 56}, + [2522] = {.lex_state = 886}, [2523] = {.lex_state = 56}, - [2524] = {.lex_state = 882}, - [2525] = {.lex_state = 56}, + [2524] = {.lex_state = 886}, + [2525] = {.lex_state = 886}, [2526] = {.lex_state = 56}, - [2527] = {.lex_state = 882}, - [2528] = {.lex_state = 882}, - [2529] = {.lex_state = 882}, + [2527] = {.lex_state = 886}, + [2528] = {.lex_state = 56}, + [2529] = {.lex_state = 56}, [2530] = {.lex_state = 56}, - [2531] = {.lex_state = 56}, - [2532] = {.lex_state = 882}, - [2533] = {.lex_state = 882}, - [2534] = {.lex_state = 882}, - [2535] = {.lex_state = 56}, - [2536] = {.lex_state = 882}, - [2537] = {.lex_state = 882}, - [2538] = {.lex_state = 882}, - [2539] = {.lex_state = 882}, - [2540] = {.lex_state = 56}, + [2531] = {.lex_state = 886}, + [2532] = {.lex_state = 886}, + [2533] = {.lex_state = 44}, + [2534] = {.lex_state = 886}, + [2535] = {.lex_state = 44}, + [2536] = {.lex_state = 44}, + [2537] = {.lex_state = 44}, + [2538] = {.lex_state = 886}, + [2539] = {.lex_state = 886}, + [2540] = {.lex_state = 886}, [2541] = {.lex_state = 56}, - [2542] = {.lex_state = 882}, - [2543] = {.lex_state = 882, .external_lex_state = 5}, - [2544] = {.lex_state = 23}, - [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}, - [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 = 882}, - [2561] = {.lex_state = 882}, - [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 = 882}, - [2571] = {.lex_state = 882}, - [2572] = {.lex_state = 882}, - [2573] = {.lex_state = 882}, - [2574] = {.lex_state = 882}, - [2575] = {.lex_state = 882}, - [2576] = {.lex_state = 882}, - [2577] = {.lex_state = 882}, - [2578] = {.lex_state = 882}, - [2579] = {.lex_state = 882}, - [2580] = {.lex_state = 89}, - [2581] = {.lex_state = 882}, - [2582] = {.lex_state = 882}, - [2583] = {.lex_state = 882}, - [2584] = {.lex_state = 42}, - [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 = 102}, - [2592] = {.lex_state = 882}, - [2593] = {.lex_state = 882}, - [2594] = {.lex_state = 23}, - [2595] = {.lex_state = 882}, - [2596] = {.lex_state = 882}, - [2597] = {.lex_state = 42}, - [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 = 882}, - [2609] = {.lex_state = 882}, - [2610] = {.lex_state = 882}, - [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, .external_lex_state = 5}, - [2618] = {.lex_state = 882}, - [2619] = {.lex_state = 882}, - [2620] = {.lex_state = 882}, - [2621] = {.lex_state = 882}, - [2622] = {.lex_state = 882}, - [2623] = {.lex_state = 882}, - [2624] = {.lex_state = 882}, - [2625] = {.lex_state = 882}, - [2626] = {.lex_state = 882}, - [2627] = {.lex_state = 882}, - [2628] = {.lex_state = 882}, - [2629] = {.lex_state = 882}, - [2630] = {.lex_state = 882}, - [2631] = {.lex_state = 882}, - [2632] = {.lex_state = 882}, - [2633] = {.lex_state = 882}, - [2634] = {.lex_state = 882}, - [2635] = {.lex_state = 882}, - [2636] = {.lex_state = 23}, - [2637] = {.lex_state = 882}, - [2638] = {.lex_state = 882}, - [2639] = {.lex_state = 882}, - [2640] = {.lex_state = 882}, - [2641] = {.lex_state = 882}, - [2642] = {.lex_state = 42}, - [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 = 882}, - [2665] = {.lex_state = 882}, - [2666] = {.lex_state = 882}, - [2667] = {.lex_state = 882}, - [2668] = {.lex_state = 882}, - [2669] = {.lex_state = 89}, - [2670] = {.lex_state = 882}, - [2671] = {.lex_state = 882}, - [2672] = {.lex_state = 882}, - [2673] = {.lex_state = 882}, - [2674] = {.lex_state = 882}, - [2675] = {.lex_state = 882}, - [2676] = {.lex_state = 882}, - [2677] = {.lex_state = 882}, - [2678] = {.lex_state = 882}, - [2679] = {.lex_state = 102}, - [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 = 882}, - [2692] = {.lex_state = 882, .external_lex_state = 5}, - [2693] = {.lex_state = 882}, - [2694] = {.lex_state = 882}, - [2695] = {.lex_state = 882}, - [2696] = {.lex_state = 882}, - [2697] = {.lex_state = 882}, - [2698] = {.lex_state = 44}, - [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 = 102}, - [2707] = {.lex_state = 882}, - [2708] = {.lex_state = 882, .external_lex_state = 5}, - [2709] = {.lex_state = 882}, - [2710] = {.lex_state = 56}, - [2711] = {.lex_state = 882}, - [2712] = {.lex_state = 882}, - [2713] = {.lex_state = 882}, - [2714] = {.lex_state = 882}, - [2715] = {.lex_state = 882}, - [2716] = {.lex_state = 102}, - [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 = 882}, - [2727] = {.lex_state = 882, .external_lex_state = 5}, - [2728] = {.lex_state = 882, .external_lex_state = 5}, - [2729] = {.lex_state = 882}, - [2730] = {.lex_state = 109}, - [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 = 882}, - [2738] = {.lex_state = 882}, - [2739] = {.lex_state = 882}, - [2740] = {.lex_state = 882}, - [2741] = {.lex_state = 882}, - [2742] = {.lex_state = 882}, - [2743] = {.lex_state = 882}, - [2744] = {.lex_state = 882}, - [2745] = {.lex_state = 882}, - [2746] = {.lex_state = 107}, - [2747] = {.lex_state = 882}, - [2748] = {.lex_state = 882}, - [2749] = {.lex_state = 109}, - [2750] = {.lex_state = 109}, - [2751] = {.lex_state = 882}, - [2752] = {.lex_state = 882}, - [2753] = {.lex_state = 882}, - [2754] = {.lex_state = 882}, - [2755] = {.lex_state = 882}, - [2756] = {.lex_state = 882}, - [2757] = {.lex_state = 882}, - [2758] = {.lex_state = 882}, - [2759] = {.lex_state = 882}, - [2760] = {.lex_state = 882}, - [2761] = {.lex_state = 882}, - [2762] = {.lex_state = 882}, - [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 = 109}, - [2772] = {.lex_state = 882, .external_lex_state = 5}, - [2773] = {.lex_state = 882}, - [2774] = {.lex_state = 882}, - [2775] = {.lex_state = 882}, - [2776] = {.lex_state = 882, .external_lex_state = 6}, - [2777] = {.lex_state = 882}, - [2778] = {.lex_state = 882}, - [2779] = {.lex_state = 882}, - [2780] = {.lex_state = 882, .external_lex_state = 5}, - [2781] = {.lex_state = 882}, - [2782] = {.lex_state = 882}, - [2783] = {.lex_state = 39}, - [2784] = {.lex_state = 882}, - [2785] = {.lex_state = 882}, - [2786] = {.lex_state = 882}, - [2787] = {.lex_state = 882}, - [2788] = {.lex_state = 882}, - [2789] = {.lex_state = 882}, - [2790] = {.lex_state = 882}, - [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 = 56}, - [2798] = {.lex_state = 109}, - [2799] = {.lex_state = 882}, - [2800] = {.lex_state = 882}, - [2801] = {.lex_state = 882}, - [2802] = {.lex_state = 882}, - [2803] = {.lex_state = 882}, - [2804] = {.lex_state = 882}, - [2805] = {.lex_state = 882}, - [2806] = {.lex_state = 882}, - [2807] = {.lex_state = 882, .external_lex_state = 5}, - [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 = 109}, - [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 = 882}, - [2824] = {.lex_state = 882}, - [2825] = {.lex_state = 882}, - [2826] = {.lex_state = 882}, - [2827] = {.lex_state = 882}, - [2828] = {.lex_state = 882}, - [2829] = {.lex_state = 882}, - [2830] = {.lex_state = 109}, - [2831] = {.lex_state = 882}, - [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, .external_lex_state = 5}, - [2840] = {.lex_state = 882}, - [2841] = {.lex_state = 882, .external_lex_state = 5}, - [2842] = {.lex_state = 882}, - [2843] = {.lex_state = 882}, - [2844] = {.lex_state = 882}, - [2845] = {.lex_state = 882}, - [2846] = {.lex_state = 882}, - [2847] = {.lex_state = 882}, - [2848] = {.lex_state = 882}, - [2849] = {.lex_state = 882}, - [2850] = {.lex_state = 109}, - [2851] = {.lex_state = 882}, - [2852] = {.lex_state = 109}, - [2853] = {.lex_state = 882}, - [2854] = {.lex_state = 109}, - [2855] = {.lex_state = 882}, - [2856] = {.lex_state = 882}, - [2857] = {.lex_state = 882}, - [2858] = {.lex_state = 882}, - [2859] = {.lex_state = 882, .external_lex_state = 6}, - [2860] = {.lex_state = 882}, - [2861] = {.lex_state = 882}, - [2862] = {.lex_state = 109}, - [2863] = {.lex_state = 882}, - [2864] = {.lex_state = 882}, - [2865] = {.lex_state = 882}, - [2866] = {.lex_state = 882}, - [2867] = {.lex_state = 882}, - [2868] = {.lex_state = 882, .external_lex_state = 5}, - [2869] = {.lex_state = 882}, - [2870] = {.lex_state = 882, .external_lex_state = 5}, - [2871] = {.lex_state = 882}, - [2872] = {.lex_state = 882}, - [2873] = {.lex_state = 882}, - [2874] = {.lex_state = 882, .external_lex_state = 5}, - [2875] = {.lex_state = 109}, - [2876] = {.lex_state = 882}, - [2877] = {.lex_state = 882}, - [2878] = {.lex_state = 882}, - [2879] = {.lex_state = 882}, - [2880] = {.lex_state = 882}, - [2881] = {.lex_state = 882}, - [2882] = {.lex_state = 109}, - [2883] = {.lex_state = 882}, - [2884] = {.lex_state = 882}, - [2885] = {.lex_state = 882}, - [2886] = {.lex_state = 882}, - [2887] = {.lex_state = 882}, - [2888] = {.lex_state = 882}, - [2889] = {.lex_state = 882}, - [2890] = {.lex_state = 882}, - [2891] = {.lex_state = 882}, - [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 = 102}, - [2899] = {.lex_state = 882}, - [2900] = {.lex_state = 882}, - [2901] = {.lex_state = 882}, - [2902] = {.lex_state = 882}, - [2903] = {.lex_state = 882, .external_lex_state = 5}, - [2904] = {.lex_state = 882}, - [2905] = {.lex_state = 882}, - [2906] = {.lex_state = 882}, - [2907] = {.lex_state = 109}, - [2908] = {.lex_state = 882}, - [2909] = {.lex_state = 882}, - [2910] = {.lex_state = 882}, - [2911] = {.lex_state = 882}, - [2912] = {.lex_state = 882}, - [2913] = {.lex_state = 882}, - [2914] = {.lex_state = 882}, - [2915] = {.lex_state = 882}, - [2916] = {.lex_state = 882}, - [2917] = {.lex_state = 882}, - [2918] = {.lex_state = 882, .external_lex_state = 5}, - [2919] = {.lex_state = 37}, - [2920] = {.lex_state = 35}, - [2921] = {.lex_state = 882}, - [2922] = {.lex_state = 35}, - [2923] = {.lex_state = 35}, - [2924] = {.lex_state = 37}, - [2925] = {.lex_state = 23}, - [2926] = {.lex_state = 35}, - [2927] = {.lex_state = 23}, - [2928] = {.lex_state = 882}, - [2929] = {.lex_state = 23}, - [2930] = {.lex_state = 23}, - [2931] = {.lex_state = 43}, - [2932] = {.lex_state = 882}, - [2933] = {.lex_state = 882}, - [2934] = {.lex_state = 882}, - [2935] = {.lex_state = 23}, - [2936] = {.lex_state = 882}, - [2937] = {.lex_state = 882}, - [2938] = {.lex_state = 882}, - [2939] = {.lex_state = 35}, - [2940] = {.lex_state = 37}, - [2941] = {.lex_state = 35}, - [2942] = {.lex_state = 37}, - [2943] = {.lex_state = 37}, - [2944] = {.lex_state = 882}, - [2945] = {.lex_state = 91}, - [2946] = {.lex_state = 35}, - [2947] = {.lex_state = 106}, - [2948] = {.lex_state = 882}, - [2949] = {.lex_state = 882}, - [2950] = {.lex_state = 882, .external_lex_state = 5}, - [2951] = {.lex_state = 882}, - [2952] = {.lex_state = 882}, - [2953] = {.lex_state = 37}, - [2954] = {.lex_state = 35}, - [2955] = {.lex_state = 37}, - [2956] = {.lex_state = 882}, - [2957] = {.lex_state = 882}, - [2958] = {.lex_state = 106}, - [2959] = {.lex_state = 882, .external_lex_state = 7}, - [2960] = {.lex_state = 23}, - [2961] = {.lex_state = 35}, - [2962] = {.lex_state = 23}, - [2963] = {.lex_state = 882}, - [2964] = {.lex_state = 882}, - [2965] = {.lex_state = 882}, - [2966] = {.lex_state = 109}, - [2967] = {.lex_state = 37}, - [2968] = {.lex_state = 882}, - [2969] = {.lex_state = 55}, - [2970] = {.lex_state = 882}, - [2971] = {.lex_state = 35}, - [2972] = {.lex_state = 109}, - [2973] = {.lex_state = 37}, - [2974] = {.lex_state = 882}, - [2975] = {.lex_state = 882}, - [2976] = {.lex_state = 882}, - [2977] = {.lex_state = 882}, - [2978] = {.lex_state = 106}, - [2979] = {.lex_state = 882}, - [2980] = {.lex_state = 882}, - [2981] = {.lex_state = 882}, - [2982] = {.lex_state = 106}, - [2983] = {.lex_state = 37}, - [2984] = {.lex_state = 35}, - [2985] = {.lex_state = 882}, - [2986] = {.lex_state = 882}, - [2987] = {.lex_state = 37}, - [2988] = {.lex_state = 882}, - [2989] = {.lex_state = 37}, - [2990] = {.lex_state = 882}, - [2991] = {.lex_state = 882}, - [2992] = {.lex_state = 35}, - [2993] = {.lex_state = 882}, - [2994] = {.lex_state = 102}, - [2995] = {.lex_state = 55}, - [2996] = {.lex_state = 882}, - [2997] = {.lex_state = 109}, - [2998] = {.lex_state = 882}, - [2999] = {.lex_state = 109}, - [3000] = {.lex_state = 882}, - [3001] = {.lex_state = 35}, - [3002] = {.lex_state = 55}, - [3003] = {.lex_state = 882}, - [3004] = {.lex_state = 882, .external_lex_state = 7}, - [3005] = {.lex_state = 882}, - [3006] = {.lex_state = 882}, - [3007] = {.lex_state = 37}, - [3008] = {.lex_state = 882}, - [3009] = {.lex_state = 882}, - [3010] = {.lex_state = 91}, - [3011] = {.lex_state = 882}, - [3012] = {.lex_state = 882}, - [3013] = {.lex_state = 37}, - [3014] = {.lex_state = 35}, - [3015] = {.lex_state = 882}, - [3016] = {.lex_state = 109}, - [3017] = {.lex_state = 35}, - [3018] = {.lex_state = 882}, - [3019] = {.lex_state = 37}, - [3020] = {.lex_state = 882, .external_lex_state = 5}, + [2542] = {.lex_state = 886}, + [2543] = {.lex_state = 56}, + [2544] = {.lex_state = 39}, + [2545] = {.lex_state = 56}, + [2546] = {.lex_state = 886}, + [2547] = {.lex_state = 886}, + [2548] = {.lex_state = 886}, + [2549] = {.lex_state = 886}, + [2550] = {.lex_state = 88}, + [2551] = {.lex_state = 44}, + [2552] = {.lex_state = 44}, + [2553] = {.lex_state = 886}, + [2554] = {.lex_state = 23}, + [2555] = {.lex_state = 56}, + [2556] = {.lex_state = 56}, + [2557] = {.lex_state = 886}, + [2558] = {.lex_state = 56}, + [2559] = {.lex_state = 44}, + [2560] = {.lex_state = 886, .external_lex_state = 5}, + [2561] = {.lex_state = 886}, + [2562] = {.lex_state = 56}, + [2563] = {.lex_state = 56}, + [2564] = {.lex_state = 886}, + [2565] = {.lex_state = 886}, + [2566] = {.lex_state = 886}, + [2567] = {.lex_state = 886}, + [2568] = {.lex_state = 886}, + [2569] = {.lex_state = 886}, + [2570] = {.lex_state = 886}, + [2571] = {.lex_state = 44}, + [2572] = {.lex_state = 886}, + [2573] = {.lex_state = 886}, + [2574] = {.lex_state = 88}, + [2575] = {.lex_state = 886}, + [2576] = {.lex_state = 886}, + [2577] = {.lex_state = 23}, + [2578] = {.lex_state = 886}, + [2579] = {.lex_state = 88}, + [2580] = {.lex_state = 886}, + [2581] = {.lex_state = 886}, + [2582] = {.lex_state = 886}, + [2583] = {.lex_state = 56}, + [2584] = {.lex_state = 56}, + [2585] = {.lex_state = 886}, + [2586] = {.lex_state = 44}, + [2587] = {.lex_state = 44}, + [2588] = {.lex_state = 886}, + [2589] = {.lex_state = 886}, + [2590] = {.lex_state = 886}, + [2591] = {.lex_state = 886}, + [2592] = {.lex_state = 886}, + [2593] = {.lex_state = 886, .external_lex_state = 5}, + [2594] = {.lex_state = 886}, + [2595] = {.lex_state = 886}, + [2596] = {.lex_state = 886, .external_lex_state = 5}, + [2597] = {.lex_state = 886}, + [2598] = {.lex_state = 886}, + [2599] = {.lex_state = 886}, + [2600] = {.lex_state = 886}, + [2601] = {.lex_state = 886}, + [2602] = {.lex_state = 886}, + [2603] = {.lex_state = 886}, + [2604] = {.lex_state = 886}, + [2605] = {.lex_state = 886}, + [2606] = {.lex_state = 886}, + [2607] = {.lex_state = 886}, + [2608] = {.lex_state = 886}, + [2609] = {.lex_state = 886}, + [2610] = {.lex_state = 886}, + [2611] = {.lex_state = 886}, + [2612] = {.lex_state = 886}, + [2613] = {.lex_state = 886}, + [2614] = {.lex_state = 886}, + [2615] = {.lex_state = 104}, + [2616] = {.lex_state = 886}, + [2617] = {.lex_state = 886}, + [2618] = {.lex_state = 886}, + [2619] = {.lex_state = 886}, + [2620] = {.lex_state = 886}, + [2621] = {.lex_state = 886}, + [2622] = {.lex_state = 886}, + [2623] = {.lex_state = 886}, + [2624] = {.lex_state = 886}, + [2625] = {.lex_state = 886}, + [2626] = {.lex_state = 886}, + [2627] = {.lex_state = 886}, + [2628] = {.lex_state = 886}, + [2629] = {.lex_state = 886}, + [2630] = {.lex_state = 886}, + [2631] = {.lex_state = 886}, + [2632] = {.lex_state = 886}, + [2633] = {.lex_state = 886}, + [2634] = {.lex_state = 89}, + [2635] = {.lex_state = 886}, + [2636] = {.lex_state = 886}, + [2637] = {.lex_state = 44}, + [2638] = {.lex_state = 886}, + [2639] = {.lex_state = 886}, + [2640] = {.lex_state = 886}, + [2641] = {.lex_state = 886}, + [2642] = {.lex_state = 886}, + [2643] = {.lex_state = 886}, + [2644] = {.lex_state = 886}, + [2645] = {.lex_state = 886}, + [2646] = {.lex_state = 886}, + [2647] = {.lex_state = 886}, + [2648] = {.lex_state = 886}, + [2649] = {.lex_state = 886}, + [2650] = {.lex_state = 886}, + [2651] = {.lex_state = 886}, + [2652] = {.lex_state = 886}, + [2653] = {.lex_state = 886}, + [2654] = {.lex_state = 886}, + [2655] = {.lex_state = 886}, + [2656] = {.lex_state = 886}, + [2657] = {.lex_state = 886}, + [2658] = {.lex_state = 886}, + [2659] = {.lex_state = 886}, + [2660] = {.lex_state = 886}, + [2661] = {.lex_state = 886}, + [2662] = {.lex_state = 886}, + [2663] = {.lex_state = 56}, + [2664] = {.lex_state = 886}, + [2665] = {.lex_state = 886}, + [2666] = {.lex_state = 886}, + [2667] = {.lex_state = 886}, + [2668] = {.lex_state = 886}, + [2669] = {.lex_state = 886}, + [2670] = {.lex_state = 886}, + [2671] = {.lex_state = 886}, + [2672] = {.lex_state = 886}, + [2673] = {.lex_state = 886}, + [2674] = {.lex_state = 886}, + [2675] = {.lex_state = 886}, + [2676] = {.lex_state = 886}, + [2677] = {.lex_state = 886}, + [2678] = {.lex_state = 886}, + [2679] = {.lex_state = 886}, + [2680] = {.lex_state = 886}, + [2681] = {.lex_state = 886}, + [2682] = {.lex_state = 886}, + [2683] = {.lex_state = 886}, + [2684] = {.lex_state = 886}, + [2685] = {.lex_state = 886}, + [2686] = {.lex_state = 886}, + [2687] = {.lex_state = 886}, + [2688] = {.lex_state = 89}, + [2689] = {.lex_state = 886}, + [2690] = {.lex_state = 886}, + [2691] = {.lex_state = 886}, + [2692] = {.lex_state = 886}, + [2693] = {.lex_state = 886}, + [2694] = {.lex_state = 886}, + [2695] = {.lex_state = 23}, + [2696] = {.lex_state = 886}, + [2697] = {.lex_state = 886}, + [2698] = {.lex_state = 886, .external_lex_state = 5}, + [2699] = {.lex_state = 886}, + [2700] = {.lex_state = 886}, + [2701] = {.lex_state = 886}, + [2702] = {.lex_state = 886}, + [2703] = {.lex_state = 886}, + [2704] = {.lex_state = 42}, + [2705] = {.lex_state = 886}, + [2706] = {.lex_state = 886}, + [2707] = {.lex_state = 886}, + [2708] = {.lex_state = 42}, + [2709] = {.lex_state = 886}, + [2710] = {.lex_state = 886}, + [2711] = {.lex_state = 886}, + [2712] = {.lex_state = 886}, + [2713] = {.lex_state = 886}, + [2714] = {.lex_state = 886}, + [2715] = {.lex_state = 886}, + [2716] = {.lex_state = 886}, + [2717] = {.lex_state = 886}, + [2718] = {.lex_state = 886}, + [2719] = {.lex_state = 886}, + [2720] = {.lex_state = 886}, + [2721] = {.lex_state = 886}, + [2722] = {.lex_state = 886}, + [2723] = {.lex_state = 886}, + [2724] = {.lex_state = 886}, + [2725] = {.lex_state = 886}, + [2726] = {.lex_state = 886}, + [2727] = {.lex_state = 886}, + [2728] = {.lex_state = 886}, + [2729] = {.lex_state = 886}, + [2730] = {.lex_state = 886}, + [2731] = {.lex_state = 886}, + [2732] = {.lex_state = 886}, + [2733] = {.lex_state = 886}, + [2734] = {.lex_state = 886}, + [2735] = {.lex_state = 886}, + [2736] = {.lex_state = 886}, + [2737] = {.lex_state = 886}, + [2738] = {.lex_state = 886}, + [2739] = {.lex_state = 886}, + [2740] = {.lex_state = 886}, + [2741] = {.lex_state = 886}, + [2742] = {.lex_state = 886}, + [2743] = {.lex_state = 886}, + [2744] = {.lex_state = 886}, + [2745] = {.lex_state = 886}, + [2746] = {.lex_state = 886}, + [2747] = {.lex_state = 886}, + [2748] = {.lex_state = 886}, + [2749] = {.lex_state = 886}, + [2750] = {.lex_state = 886}, + [2751] = {.lex_state = 886}, + [2752] = {.lex_state = 886}, + [2753] = {.lex_state = 42}, + [2754] = {.lex_state = 886}, + [2755] = {.lex_state = 886}, + [2756] = {.lex_state = 886}, + [2757] = {.lex_state = 23}, + [2758] = {.lex_state = 886}, + [2759] = {.lex_state = 886}, + [2760] = {.lex_state = 886}, + [2761] = {.lex_state = 886}, + [2762] = {.lex_state = 886}, + [2763] = {.lex_state = 886}, + [2764] = {.lex_state = 886}, + [2765] = {.lex_state = 886}, + [2766] = {.lex_state = 886}, + [2767] = {.lex_state = 886}, + [2768] = {.lex_state = 886}, + [2769] = {.lex_state = 886}, + [2770] = {.lex_state = 886}, + [2771] = {.lex_state = 104}, + [2772] = {.lex_state = 886}, + [2773] = {.lex_state = 886}, + [2774] = {.lex_state = 886}, + [2775] = {.lex_state = 886}, + [2776] = {.lex_state = 886}, + [2777] = {.lex_state = 104}, + [2778] = {.lex_state = 886}, + [2779] = {.lex_state = 886}, + [2780] = {.lex_state = 886}, + [2781] = {.lex_state = 886}, + [2782] = {.lex_state = 886}, + [2783] = {.lex_state = 886}, + [2784] = {.lex_state = 886}, + [2785] = {.lex_state = 886}, + [2786] = {.lex_state = 886}, + [2787] = {.lex_state = 886}, + [2788] = {.lex_state = 111}, + [2789] = {.lex_state = 886}, + [2790] = {.lex_state = 886}, + [2791] = {.lex_state = 886, .external_lex_state = 5}, + [2792] = {.lex_state = 886}, + [2793] = {.lex_state = 886}, + [2794] = {.lex_state = 886}, + [2795] = {.lex_state = 886}, + [2796] = {.lex_state = 886}, + [2797] = {.lex_state = 886, .external_lex_state = 5}, + [2798] = {.lex_state = 886}, + [2799] = {.lex_state = 886, .external_lex_state = 5}, + [2800] = {.lex_state = 111}, + [2801] = {.lex_state = 886}, + [2802] = {.lex_state = 886, .external_lex_state = 5}, + [2803] = {.lex_state = 886}, + [2804] = {.lex_state = 886}, + [2805] = {.lex_state = 111}, + [2806] = {.lex_state = 886}, + [2807] = {.lex_state = 886}, + [2808] = {.lex_state = 886}, + [2809] = {.lex_state = 886}, + [2810] = {.lex_state = 886}, + [2811] = {.lex_state = 886}, + [2812] = {.lex_state = 886}, + [2813] = {.lex_state = 886}, + [2814] = {.lex_state = 886}, + [2815] = {.lex_state = 886}, + [2816] = {.lex_state = 886}, + [2817] = {.lex_state = 56}, + [2818] = {.lex_state = 886}, + [2819] = {.lex_state = 886}, + [2820] = {.lex_state = 886}, + [2821] = {.lex_state = 886}, + [2822] = {.lex_state = 111}, + [2823] = {.lex_state = 886}, + [2824] = {.lex_state = 886}, + [2825] = {.lex_state = 886}, + [2826] = {.lex_state = 886}, + [2827] = {.lex_state = 886}, + [2828] = {.lex_state = 886}, + [2829] = {.lex_state = 104}, + [2830] = {.lex_state = 886}, + [2831] = {.lex_state = 111}, + [2832] = {.lex_state = 886}, + [2833] = {.lex_state = 886}, + [2834] = {.lex_state = 886}, + [2835] = {.lex_state = 886}, + [2836] = {.lex_state = 886}, + [2837] = {.lex_state = 886, .external_lex_state = 6}, + [2838] = {.lex_state = 886}, + [2839] = {.lex_state = 104}, + [2840] = {.lex_state = 886}, + [2841] = {.lex_state = 886}, + [2842] = {.lex_state = 886}, + [2843] = {.lex_state = 886}, + [2844] = {.lex_state = 886, .external_lex_state = 5}, + [2845] = {.lex_state = 886}, + [2846] = {.lex_state = 886}, + [2847] = {.lex_state = 886}, + [2848] = {.lex_state = 886}, + [2849] = {.lex_state = 886, .external_lex_state = 5}, + [2850] = {.lex_state = 886}, + [2851] = {.lex_state = 111}, + [2852] = {.lex_state = 886}, + [2853] = {.lex_state = 886}, + [2854] = {.lex_state = 886}, + [2855] = {.lex_state = 886}, + [2856] = {.lex_state = 886}, + [2857] = {.lex_state = 886}, + [2858] = {.lex_state = 886}, + [2859] = {.lex_state = 886}, + [2860] = {.lex_state = 886}, + [2861] = {.lex_state = 111}, + [2862] = {.lex_state = 886}, + [2863] = {.lex_state = 886}, + [2864] = {.lex_state = 886, .external_lex_state = 5}, + [2865] = {.lex_state = 886}, + [2866] = {.lex_state = 886}, + [2867] = {.lex_state = 886}, + [2868] = {.lex_state = 886}, + [2869] = {.lex_state = 886}, + [2870] = {.lex_state = 886}, + [2871] = {.lex_state = 886}, + [2872] = {.lex_state = 886}, + [2873] = {.lex_state = 886}, + [2874] = {.lex_state = 111}, + [2875] = {.lex_state = 886}, + [2876] = {.lex_state = 886}, + [2877] = {.lex_state = 886}, + [2878] = {.lex_state = 886}, + [2879] = {.lex_state = 886}, + [2880] = {.lex_state = 886}, + [2881] = {.lex_state = 886}, + [2882] = {.lex_state = 886, .external_lex_state = 5}, + [2883] = {.lex_state = 886}, + [2884] = {.lex_state = 886}, + [2885] = {.lex_state = 886}, + [2886] = {.lex_state = 886}, + [2887] = {.lex_state = 111}, + [2888] = {.lex_state = 886}, + [2889] = {.lex_state = 886}, + [2890] = {.lex_state = 886}, + [2891] = {.lex_state = 886}, + [2892] = {.lex_state = 886}, + [2893] = {.lex_state = 886}, + [2894] = {.lex_state = 886}, + [2895] = {.lex_state = 886}, + [2896] = {.lex_state = 886}, + [2897] = {.lex_state = 886}, + [2898] = {.lex_state = 886}, + [2899] = {.lex_state = 886}, + [2900] = {.lex_state = 109}, + [2901] = {.lex_state = 886}, + [2902] = {.lex_state = 886}, + [2903] = {.lex_state = 111}, + [2904] = {.lex_state = 886, .external_lex_state = 5}, + [2905] = {.lex_state = 886}, + [2906] = {.lex_state = 886}, + [2907] = {.lex_state = 886}, + [2908] = {.lex_state = 111}, + [2909] = {.lex_state = 886}, + [2910] = {.lex_state = 886}, + [2911] = {.lex_state = 886}, + [2912] = {.lex_state = 111}, + [2913] = {.lex_state = 886}, + [2914] = {.lex_state = 886, .external_lex_state = 6}, + [2915] = {.lex_state = 111}, + [2916] = {.lex_state = 886}, + [2917] = {.lex_state = 886}, + [2918] = {.lex_state = 886}, + [2919] = {.lex_state = 111}, + [2920] = {.lex_state = 886}, + [2921] = {.lex_state = 886}, + [2922] = {.lex_state = 886}, + [2923] = {.lex_state = 886, .external_lex_state = 5}, + [2924] = {.lex_state = 886}, + [2925] = {.lex_state = 886}, + [2926] = {.lex_state = 886}, + [2927] = {.lex_state = 886}, + [2928] = {.lex_state = 886}, + [2929] = {.lex_state = 886}, + [2930] = {.lex_state = 886}, + [2931] = {.lex_state = 886}, + [2932] = {.lex_state = 886}, + [2933] = {.lex_state = 886}, + [2934] = {.lex_state = 39}, + [2935] = {.lex_state = 886}, + [2936] = {.lex_state = 886}, + [2937] = {.lex_state = 886}, + [2938] = {.lex_state = 886, .external_lex_state = 5}, + [2939] = {.lex_state = 886}, + [2940] = {.lex_state = 886}, + [2941] = {.lex_state = 886}, + [2942] = {.lex_state = 886}, + [2943] = {.lex_state = 886}, + [2944] = {.lex_state = 886}, + [2945] = {.lex_state = 886}, + [2946] = {.lex_state = 886}, + [2947] = {.lex_state = 886}, + [2948] = {.lex_state = 886}, + [2949] = {.lex_state = 886}, + [2950] = {.lex_state = 886, .external_lex_state = 5}, + [2951] = {.lex_state = 886}, + [2952] = {.lex_state = 886}, + [2953] = {.lex_state = 886}, + [2954] = {.lex_state = 111}, + [2955] = {.lex_state = 886}, + [2956] = {.lex_state = 886}, + [2957] = {.lex_state = 886}, + [2958] = {.lex_state = 886, .external_lex_state = 5}, + [2959] = {.lex_state = 886}, + [2960] = {.lex_state = 886}, + [2961] = {.lex_state = 886}, + [2962] = {.lex_state = 886}, + [2963] = {.lex_state = 886}, + [2964] = {.lex_state = 886}, + [2965] = {.lex_state = 886}, + [2966] = {.lex_state = 886}, + [2967] = {.lex_state = 886}, + [2968] = {.lex_state = 886}, + [2969] = {.lex_state = 886}, + [2970] = {.lex_state = 886}, + [2971] = {.lex_state = 886}, + [2972] = {.lex_state = 886}, + [2973] = {.lex_state = 886}, + [2974] = {.lex_state = 886}, + [2975] = {.lex_state = 111}, + [2976] = {.lex_state = 886}, + [2977] = {.lex_state = 886}, + [2978] = {.lex_state = 886}, + [2979] = {.lex_state = 886}, + [2980] = {.lex_state = 886}, + [2981] = {.lex_state = 886}, + [2982] = {.lex_state = 886}, + [2983] = {.lex_state = 23}, + [2984] = {.lex_state = 886}, + [2985] = {.lex_state = 23}, + [2986] = {.lex_state = 886}, + [2987] = {.lex_state = 886}, + [2988] = {.lex_state = 886}, + [2989] = {.lex_state = 108}, + [2990] = {.lex_state = 35}, + [2991] = {.lex_state = 37}, + [2992] = {.lex_state = 95}, + [2993] = {.lex_state = 886}, + [2994] = {.lex_state = 35}, + [2995] = {.lex_state = 886}, + [2996] = {.lex_state = 111}, + [2997] = {.lex_state = 886}, + [2998] = {.lex_state = 37}, + [2999] = {.lex_state = 886}, + [3000] = {.lex_state = 886, .external_lex_state = 5}, + [3001] = {.lex_state = 886}, + [3002] = {.lex_state = 111}, + [3003] = {.lex_state = 886}, + [3004] = {.lex_state = 111}, + [3005] = {.lex_state = 886}, + [3006] = {.lex_state = 886}, + [3007] = {.lex_state = 886}, + [3008] = {.lex_state = 886}, + [3009] = {.lex_state = 886}, + [3010] = {.lex_state = 886}, + [3011] = {.lex_state = 111}, + [3012] = {.lex_state = 23}, + [3013] = {.lex_state = 886}, + [3014] = {.lex_state = 886}, + [3015] = {.lex_state = 886}, + [3016] = {.lex_state = 886}, + [3017] = {.lex_state = 886}, + [3018] = {.lex_state = 886}, + [3019] = {.lex_state = 886}, + [3020] = {.lex_state = 886}, [3021] = {.lex_state = 35}, - [3022] = {.lex_state = 37}, - [3023] = {.lex_state = 35}, - [3024] = {.lex_state = 35}, - [3025] = {.lex_state = 882}, - [3026] = {.lex_state = 91}, - [3027] = {.lex_state = 37}, - [3028] = {.lex_state = 106}, - [3029] = {.lex_state = 882}, - [3030] = {.lex_state = 882}, - [3031] = {.lex_state = 106}, - [3032] = {.lex_state = 109}, - [3033] = {.lex_state = 882}, - [3034] = {.lex_state = 882}, - [3035] = {.lex_state = 882}, - [3036] = {.lex_state = 882}, - [3037] = {.lex_state = 43}, - [3038] = {.lex_state = 882}, - [3039] = {.lex_state = 102}, - [3040] = {.lex_state = 109}, + [3022] = {.lex_state = 886}, + [3023] = {.lex_state = 886}, + [3024] = {.lex_state = 886}, + [3025] = {.lex_state = 111}, + [3026] = {.lex_state = 886}, + [3027] = {.lex_state = 886}, + [3028] = {.lex_state = 886}, + [3029] = {.lex_state = 886}, + [3030] = {.lex_state = 111}, + [3031] = {.lex_state = 886}, + [3032] = {.lex_state = 886}, + [3033] = {.lex_state = 37}, + [3034] = {.lex_state = 886}, + [3035] = {.lex_state = 886}, + [3036] = {.lex_state = 886}, + [3037] = {.lex_state = 886}, + [3038] = {.lex_state = 91}, + [3039] = {.lex_state = 886}, + [3040] = {.lex_state = 111}, [3041] = {.lex_state = 23}, - [3042] = {.lex_state = 882}, - [3043] = {.lex_state = 882}, - [3044] = {.lex_state = 882}, - [3045] = {.lex_state = 102}, - [3046] = {.lex_state = 882}, - [3047] = {.lex_state = 55}, - [3048] = {.lex_state = 882}, - [3049] = {.lex_state = 882}, - [3050] = {.lex_state = 882}, - [3051] = {.lex_state = 35}, - [3052] = {.lex_state = 882}, - [3053] = {.lex_state = 109}, - [3054] = {.lex_state = 55}, - [3055] = {.lex_state = 882}, - [3056] = {.lex_state = 43}, - [3057] = {.lex_state = 106}, - [3058] = {.lex_state = 882}, - [3059] = {.lex_state = 882}, - [3060] = {.lex_state = 110}, - [3061] = {.lex_state = 882}, - [3062] = {.lex_state = 882}, - [3063] = {.lex_state = 36}, - [3064] = {.lex_state = 110}, - [3065] = {.lex_state = 882}, - [3066] = {.lex_state = 882}, - [3067] = {.lex_state = 104}, - [3068] = {.lex_state = 23}, - [3069] = {.lex_state = 882}, - [3070] = {.lex_state = 882}, - [3071] = {.lex_state = 882}, - [3072] = {.lex_state = 40}, - [3073] = {.lex_state = 882}, - [3074] = {.lex_state = 882}, - [3075] = {.lex_state = 101}, - [3076] = {.lex_state = 882, .external_lex_state = 5}, - [3077] = {.lex_state = 882}, - [3078] = {.lex_state = 88}, - [3079] = {.lex_state = 882}, - [3080] = {.lex_state = 882}, - [3081] = {.lex_state = 110}, - [3082] = {.lex_state = 882, .external_lex_state = 7}, - [3083] = {.lex_state = 35}, - [3084] = {.lex_state = 882}, - [3085] = {.lex_state = 104}, - [3086] = {.lex_state = 882}, - [3087] = {.lex_state = 882, .external_lex_state = 5}, - [3088] = {.lex_state = 882}, - [3089] = {.lex_state = 40}, - [3090] = {.lex_state = 882}, - [3091] = {.lex_state = 882, .external_lex_state = 5}, - [3092] = {.lex_state = 882, .external_lex_state = 5}, - [3093] = {.lex_state = 40}, + [3042] = {.lex_state = 37}, + [3043] = {.lex_state = 35}, + [3044] = {.lex_state = 886}, + [3045] = {.lex_state = 886}, + [3046] = {.lex_state = 886}, + [3047] = {.lex_state = 111}, + [3048] = {.lex_state = 111}, + [3049] = {.lex_state = 886}, + [3050] = {.lex_state = 886}, + [3051] = {.lex_state = 886}, + [3052] = {.lex_state = 43}, + [3053] = {.lex_state = 886}, + [3054] = {.lex_state = 886}, + [3055] = {.lex_state = 886}, + [3056] = {.lex_state = 37}, + [3057] = {.lex_state = 35}, + [3058] = {.lex_state = 886}, + [3059] = {.lex_state = 886}, + [3060] = {.lex_state = 886}, + [3061] = {.lex_state = 886}, + [3062] = {.lex_state = 886}, + [3063] = {.lex_state = 886}, + [3064] = {.lex_state = 886}, + [3065] = {.lex_state = 35}, + [3066] = {.lex_state = 95}, + [3067] = {.lex_state = 43}, + [3068] = {.lex_state = 886}, + [3069] = {.lex_state = 43}, + [3070] = {.lex_state = 886, .external_lex_state = 7}, + [3071] = {.lex_state = 886}, + [3072] = {.lex_state = 108}, + [3073] = {.lex_state = 104}, + [3074] = {.lex_state = 886}, + [3075] = {.lex_state = 886}, + [3076] = {.lex_state = 95}, + [3077] = {.lex_state = 886}, + [3078] = {.lex_state = 886}, + [3079] = {.lex_state = 886}, + [3080] = {.lex_state = 886}, + [3081] = {.lex_state = 886}, + [3082] = {.lex_state = 886}, + [3083] = {.lex_state = 886}, + [3084] = {.lex_state = 886}, + [3085] = {.lex_state = 886}, + [3086] = {.lex_state = 35}, + [3087] = {.lex_state = 37}, + [3088] = {.lex_state = 35}, + [3089] = {.lex_state = 37}, + [3090] = {.lex_state = 95}, + [3091] = {.lex_state = 35}, + [3092] = {.lex_state = 35}, + [3093] = {.lex_state = 886}, [3094] = {.lex_state = 37}, - [3095] = {.lex_state = 882, .external_lex_state = 5}, - [3096] = {.lex_state = 882}, - [3097] = {.lex_state = 882}, - [3098] = {.lex_state = 40}, - [3099] = {.lex_state = 882, .external_lex_state = 5}, - [3100] = {.lex_state = 36}, - [3101] = {.lex_state = 882, .external_lex_state = 5}, - [3102] = {.lex_state = 104}, - [3103] = {.lex_state = 882, .external_lex_state = 5}, - [3104] = {.lex_state = 23}, - [3105] = {.lex_state = 36}, - [3106] = {.lex_state = 882, .external_lex_state = 5}, - [3107] = {.lex_state = 36}, - [3108] = {.lex_state = 101}, - [3109] = {.lex_state = 882, .external_lex_state = 5}, - [3110] = {.lex_state = 36}, - [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, .external_lex_state = 5}, - [3124] = {.lex_state = 882}, - [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 = 108}, - [3134] = {.lex_state = 882}, - [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 = 882}, - [3144] = {.lex_state = 40}, - [3145] = {.lex_state = 882}, - [3146] = {.lex_state = 882}, - [3147] = {.lex_state = 882}, - [3148] = {.lex_state = 882}, - [3149] = {.lex_state = 882}, - [3150] = {.lex_state = 882}, - [3151] = {.lex_state = 21}, - [3152] = {.lex_state = 882}, - [3153] = {.lex_state = 882}, - [3154] = {.lex_state = 882}, - [3155] = {.lex_state = 108}, - [3156] = {.lex_state = 882}, - [3157] = {.lex_state = 882}, - [3158] = {.lex_state = 882, .external_lex_state = 5}, - [3159] = {.lex_state = 21}, - [3160] = {.lex_state = 21}, - [3161] = {.lex_state = 882}, - [3162] = {.lex_state = 882}, - [3163] = {.lex_state = 882}, - [3164] = {.lex_state = 882}, - [3165] = {.lex_state = 108}, - [3166] = {.lex_state = 882}, - [3167] = {.lex_state = 882, .external_lex_state = 5}, - [3168] = {.lex_state = 882}, - [3169] = {.lex_state = 108}, - [3170] = {.lex_state = 882, .external_lex_state = 5}, - [3171] = {.lex_state = 882}, - [3172] = {.lex_state = 23}, - [3173] = {.lex_state = 882}, - [3174] = {.lex_state = 104}, - [3175] = {.lex_state = 882}, - [3176] = {.lex_state = 882}, - [3177] = {.lex_state = 882}, - [3178] = {.lex_state = 36}, - [3179] = {.lex_state = 882}, - [3180] = {.lex_state = 882}, - [3181] = {.lex_state = 882}, - [3182] = {.lex_state = 882}, - [3183] = {.lex_state = 882}, - [3184] = {.lex_state = 882, .external_lex_state = 5}, - [3185] = {.lex_state = 882}, - [3186] = {.lex_state = 882}, - [3187] = {.lex_state = 882}, - [3188] = {.lex_state = 882}, - [3189] = {.lex_state = 882}, - [3190] = {.lex_state = 882}, - [3191] = {.lex_state = 882}, - [3192] = {.lex_state = 882}, - [3193] = {.lex_state = 882}, - [3194] = {.lex_state = 56}, - [3195] = {.lex_state = 882}, - [3196] = {.lex_state = 882}, - [3197] = {.lex_state = 882}, - [3198] = {.lex_state = 882}, - [3199] = {.lex_state = 882, .external_lex_state = 5}, - [3200] = {.lex_state = 882}, - [3201] = {.lex_state = 882}, - [3202] = {.lex_state = 882}, - [3203] = {.lex_state = 882}, - [3204] = {.lex_state = 21}, - [3205] = {.lex_state = 882}, - [3206] = {.lex_state = 882}, - [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}, - [3215] = {.lex_state = 882}, - [3216] = {.lex_state = 882}, - [3217] = {.lex_state = 882, .external_lex_state = 5}, - [3218] = {.lex_state = 882}, - [3219] = {.lex_state = 882}, - [3220] = {.lex_state = 882}, - [3221] = {.lex_state = 882}, - [3222] = {.lex_state = 882, .external_lex_state = 5}, - [3223] = {.lex_state = 882, .external_lex_state = 5}, - [3224] = {.lex_state = 21}, - [3225] = {.lex_state = 882}, - [3226] = {.lex_state = 882}, - [3227] = {.lex_state = 882}, - [3228] = {.lex_state = 23}, - [3229] = {.lex_state = 882}, - [3230] = {.lex_state = 882, .external_lex_state = 5}, - [3231] = {.lex_state = 882}, - [3232] = {.lex_state = 882}, - [3233] = {.lex_state = 108}, - [3234] = {.lex_state = 882, .external_lex_state = 5}, - [3235] = {.lex_state = 882}, - [3236] = {.lex_state = 21}, - [3237] = {.lex_state = 882}, - [3238] = {.lex_state = 882}, - [3239] = {.lex_state = 882}, - [3240] = {.lex_state = 882}, - [3241] = {.lex_state = 882}, - [3242] = {.lex_state = 108}, - [3243] = {.lex_state = 21}, - [3244] = {.lex_state = 882}, - [3245] = {.lex_state = 882}, - [3246] = {.lex_state = 882}, - [3247] = {.lex_state = 882}, - [3248] = {.lex_state = 882, .external_lex_state = 5}, - [3249] = {.lex_state = 882}, - [3250] = {.lex_state = 882}, - [3251] = {.lex_state = 882, .external_lex_state = 5}, - [3252] = {.lex_state = 882, .external_lex_state = 5}, - [3253] = {.lex_state = 36}, - [3254] = {.lex_state = 882, .external_lex_state = 5}, - [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, .external_lex_state = 5}, - [3262] = {.lex_state = 882}, - [3263] = {.lex_state = 882}, - [3264] = {.lex_state = 882}, - [3265] = {.lex_state = 882}, - [3266] = {.lex_state = 23}, - [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 = 23}, - [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 = 882}, - [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 = 23}, - [3293] = {.lex_state = 882}, - [3294] = {.lex_state = 882}, - [3295] = {.lex_state = 882}, - [3296] = {.lex_state = 882}, - [3297] = {.lex_state = 882}, - [3298] = {.lex_state = 882}, - [3299] = {.lex_state = 882}, - [3300] = {.lex_state = 882}, - [3301] = {.lex_state = 882}, - [3302] = {.lex_state = 21}, - [3303] = {.lex_state = 23}, - [3304] = {.lex_state = 882}, - [3305] = {.lex_state = 882}, - [3306] = {.lex_state = 882}, - [3307] = {.lex_state = 882}, - [3308] = {.lex_state = 882}, - [3309] = {.lex_state = 108}, - [3310] = {.lex_state = 882}, - [3311] = {.lex_state = 882}, - [3312] = {.lex_state = 21}, - [3313] = {.lex_state = 882}, - [3314] = {.lex_state = 882}, - [3315] = {.lex_state = 882}, - [3316] = {.lex_state = 882}, - [3317] = {.lex_state = 882}, - [3318] = {.lex_state = 882}, - [3319] = {.lex_state = 882}, - [3320] = {.lex_state = 108}, - [3321] = {.lex_state = 882}, - [3322] = {.lex_state = 882}, - [3323] = {.lex_state = 23}, - [3324] = {.lex_state = 882}, - [3325] = {.lex_state = 882}, - [3326] = {.lex_state = 882, .external_lex_state = 5}, - [3327] = {.lex_state = 882}, - [3328] = {.lex_state = 882}, - [3329] = {.lex_state = 882}, - [3330] = {.lex_state = 23}, - [3331] = {.lex_state = 882}, - [3332] = {.lex_state = 104}, - [3333] = {.lex_state = 882}, - [3334] = {.lex_state = 23}, - [3335] = {.lex_state = 882}, - [3336] = {.lex_state = 36}, - [3337] = {.lex_state = 882}, - [3338] = {.lex_state = 882}, - [3339] = {.lex_state = 882}, - [3340] = {.lex_state = 882}, - [3341] = {.lex_state = 104}, - [3342] = {.lex_state = 882}, - [3343] = {.lex_state = 882}, - [3344] = {.lex_state = 882}, - [3345] = {.lex_state = 882}, - [3346] = {.lex_state = 882}, - [3347] = {.lex_state = 882}, - [3348] = {.lex_state = 882}, - [3349] = {.lex_state = 23, .external_lex_state = 5}, - [3350] = {.lex_state = 23, .external_lex_state = 5}, - [3351] = {.lex_state = 882}, - [3352] = {.lex_state = 882}, - [3353] = {.lex_state = 882}, - [3354] = {.lex_state = 882}, - [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 = 882}, - [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 = 23}, - [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}, - [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, .external_lex_state = 5}, - [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}, - [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 = 882}, - [3456] = {.lex_state = 882}, - [3457] = {.lex_state = 882}, - [3458] = {.lex_state = 882}, - [3459] = {.lex_state = 882}, - [3460] = {.lex_state = 882, .external_lex_state = 5}, - [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 = 21}, - [3475] = {.lex_state = 882}, - [3476] = {.lex_state = 882}, - [3477] = {.lex_state = 882}, - [3478] = {.lex_state = 882}, - [3479] = {.lex_state = 23}, - [3480] = {.lex_state = 882}, - [3481] = {.lex_state = 882}, - [3482] = {.lex_state = 882}, - [3483] = {.lex_state = 882}, - [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 = 882}, - [3491] = {.lex_state = 882, .external_lex_state = 5}, - [3492] = {.lex_state = 882}, - [3493] = {.lex_state = 882}, - [3494] = {.lex_state = 108}, - [3495] = {.lex_state = 882}, - [3496] = {.lex_state = 882}, - [3497] = {.lex_state = 882}, - [3498] = {.lex_state = 21}, - [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 = 882}, - [3516] = {.lex_state = 882}, - [3517] = {.lex_state = 108}, - [3518] = {.lex_state = 882}, - [3519] = {.lex_state = 40}, - [3520] = {.lex_state = 882}, - [3521] = {.lex_state = 882}, - [3522] = {.lex_state = 882}, - [3523] = {.lex_state = 882}, - [3524] = {.lex_state = 882}, - [3525] = {.lex_state = 23}, - [3526] = {.lex_state = 882}, - [3527] = {.lex_state = 882}, - [3528] = {.lex_state = 882}, - [3529] = {.lex_state = 882}, - [3530] = {.lex_state = 882}, - [3531] = {.lex_state = 882}, - [3532] = {.lex_state = 882, .external_lex_state = 5}, - [3533] = {.lex_state = 882}, - [3534] = {.lex_state = 882}, - [3535] = {.lex_state = 23}, - [3536] = {.lex_state = 23}, - [3537] = {.lex_state = 882}, - [3538] = {.lex_state = 882}, - [3539] = {.lex_state = 882}, - [3540] = {.lex_state = 882}, - [3541] = {.lex_state = 36}, - [3542] = {.lex_state = 882}, - [3543] = {.lex_state = 882}, - [3544] = {.lex_state = 23, .external_lex_state = 5}, - [3545] = {.lex_state = 23}, - [3546] = {.lex_state = 882}, - [3547] = {.lex_state = 882}, - [3548] = {.lex_state = 882}, - [3549] = {.lex_state = 23}, - [3550] = {.lex_state = 104}, - [3551] = {.lex_state = 882}, - [3552] = {.lex_state = 882}, - [3553] = {.lex_state = 23}, - [3554] = {.lex_state = 882}, - [3555] = {.lex_state = 104}, - [3556] = {.lex_state = 882}, - [3557] = {.lex_state = 882}, - [3558] = {.lex_state = 882}, - [3559] = {.lex_state = 23}, - [3560] = {.lex_state = 47}, - [3561] = {.lex_state = 882}, - [3562] = {.lex_state = 882}, - [3563] = {.lex_state = 882}, + [3095] = {.lex_state = 108}, + [3096] = {.lex_state = 37}, + [3097] = {.lex_state = 886}, + [3098] = {.lex_state = 886}, + [3099] = {.lex_state = 886}, + [3100] = {.lex_state = 886}, + [3101] = {.lex_state = 886}, + [3102] = {.lex_state = 886}, + [3103] = {.lex_state = 886, .external_lex_state = 5}, + [3104] = {.lex_state = 37}, + [3105] = {.lex_state = 37}, + [3106] = {.lex_state = 35}, + [3107] = {.lex_state = 35}, + [3108] = {.lex_state = 37}, + [3109] = {.lex_state = 886}, + [3110] = {.lex_state = 886}, + [3111] = {.lex_state = 886}, + [3112] = {.lex_state = 886}, + [3113] = {.lex_state = 91}, + [3114] = {.lex_state = 886}, + [3115] = {.lex_state = 35}, + [3116] = {.lex_state = 37}, + [3117] = {.lex_state = 104}, + [3118] = {.lex_state = 111}, + [3119] = {.lex_state = 35}, + [3120] = {.lex_state = 35}, + [3121] = {.lex_state = 886}, + [3122] = {.lex_state = 37}, + [3123] = {.lex_state = 23}, + [3124] = {.lex_state = 108}, + [3125] = {.lex_state = 886}, + [3126] = {.lex_state = 886}, + [3127] = {.lex_state = 35}, + [3128] = {.lex_state = 886}, + [3129] = {.lex_state = 886}, + [3130] = {.lex_state = 886}, + [3131] = {.lex_state = 108}, + [3132] = {.lex_state = 886}, + [3133] = {.lex_state = 23}, + [3134] = {.lex_state = 108}, + [3135] = {.lex_state = 23}, + [3136] = {.lex_state = 35}, + [3137] = {.lex_state = 35}, + [3138] = {.lex_state = 37}, + [3139] = {.lex_state = 886}, + [3140] = {.lex_state = 886}, + [3141] = {.lex_state = 886}, + [3142] = {.lex_state = 23}, + [3143] = {.lex_state = 886}, + [3144] = {.lex_state = 111}, + [3145] = {.lex_state = 886, .external_lex_state = 7}, + [3146] = {.lex_state = 886}, + [3147] = {.lex_state = 111}, + [3148] = {.lex_state = 111}, + [3149] = {.lex_state = 104}, + [3150] = {.lex_state = 886}, + [3151] = {.lex_state = 37}, + [3152] = {.lex_state = 886}, + [3153] = {.lex_state = 886}, + [3154] = {.lex_state = 886}, + [3155] = {.lex_state = 886}, + [3156] = {.lex_state = 35}, + [3157] = {.lex_state = 37}, + [3158] = {.lex_state = 886}, + [3159] = {.lex_state = 886}, + [3160] = {.lex_state = 886}, + [3161] = {.lex_state = 91}, + [3162] = {.lex_state = 95}, + [3163] = {.lex_state = 886}, + [3164] = {.lex_state = 886}, + [3165] = {.lex_state = 886}, + [3166] = {.lex_state = 886}, + [3167] = {.lex_state = 886}, + [3168] = {.lex_state = 886}, + [3169] = {.lex_state = 55}, + [3170] = {.lex_state = 55}, + [3171] = {.lex_state = 55}, + [3172] = {.lex_state = 886}, + [3173] = {.lex_state = 108}, + [3174] = {.lex_state = 55}, + [3175] = {.lex_state = 55}, + [3176] = {.lex_state = 886}, + [3177] = {.lex_state = 886}, + [3178] = {.lex_state = 112}, + [3179] = {.lex_state = 886}, + [3180] = {.lex_state = 886}, + [3181] = {.lex_state = 36}, + [3182] = {.lex_state = 112}, + [3183] = {.lex_state = 886}, + [3184] = {.lex_state = 886}, + [3185] = {.lex_state = 106}, + [3186] = {.lex_state = 23}, + [3187] = {.lex_state = 886}, + [3188] = {.lex_state = 886}, + [3189] = {.lex_state = 886}, + [3190] = {.lex_state = 40}, + [3191] = {.lex_state = 886}, + [3192] = {.lex_state = 103}, + [3193] = {.lex_state = 886}, + [3194] = {.lex_state = 88}, + [3195] = {.lex_state = 886}, + [3196] = {.lex_state = 886}, + [3197] = {.lex_state = 112}, + [3198] = {.lex_state = 886, .external_lex_state = 7}, + [3199] = {.lex_state = 35}, + [3200] = {.lex_state = 886}, + [3201] = {.lex_state = 106}, + [3202] = {.lex_state = 886}, + [3203] = {.lex_state = 886, .external_lex_state = 5}, + [3204] = {.lex_state = 23}, + [3205] = {.lex_state = 106}, + [3206] = {.lex_state = 886}, + [3207] = {.lex_state = 40}, + [3208] = {.lex_state = 886}, + [3209] = {.lex_state = 40}, + [3210] = {.lex_state = 886, .external_lex_state = 5}, + [3211] = {.lex_state = 37}, + [3212] = {.lex_state = 886, .external_lex_state = 5}, + [3213] = {.lex_state = 40}, + [3214] = {.lex_state = 886}, + [3215] = {.lex_state = 40}, + [3216] = {.lex_state = 886, .external_lex_state = 5}, + [3217] = {.lex_state = 36}, + [3218] = {.lex_state = 886, .external_lex_state = 5}, + [3219] = {.lex_state = 36}, + [3220] = {.lex_state = 886, .external_lex_state = 5}, + [3221] = {.lex_state = 886, .external_lex_state = 5}, + [3222] = {.lex_state = 103}, + [3223] = {.lex_state = 36}, + [3224] = {.lex_state = 886, .external_lex_state = 5}, + [3225] = {.lex_state = 36}, + [3226] = {.lex_state = 886}, + [3227] = {.lex_state = 886}, + [3228] = {.lex_state = 886}, + [3229] = {.lex_state = 886}, + [3230] = {.lex_state = 886}, + [3231] = {.lex_state = 886}, + [3232] = {.lex_state = 886}, + [3233] = {.lex_state = 886}, + [3234] = {.lex_state = 886}, + [3235] = {.lex_state = 886}, + [3236] = {.lex_state = 886}, + [3237] = {.lex_state = 886}, + [3238] = {.lex_state = 886}, + [3239] = {.lex_state = 886}, + [3240] = {.lex_state = 886}, + [3241] = {.lex_state = 886}, + [3242] = {.lex_state = 886}, + [3243] = {.lex_state = 886}, + [3244] = {.lex_state = 886}, + [3245] = {.lex_state = 110}, + [3246] = {.lex_state = 886}, + [3247] = {.lex_state = 886}, + [3248] = {.lex_state = 886}, + [3249] = {.lex_state = 886}, + [3250] = {.lex_state = 886, .external_lex_state = 5}, + [3251] = {.lex_state = 886}, + [3252] = {.lex_state = 886}, + [3253] = {.lex_state = 886}, + [3254] = {.lex_state = 886}, + [3255] = {.lex_state = 886}, + [3256] = {.lex_state = 40}, + [3257] = {.lex_state = 886}, + [3258] = {.lex_state = 886}, + [3259] = {.lex_state = 886, .external_lex_state = 5}, + [3260] = {.lex_state = 886}, + [3261] = {.lex_state = 886}, + [3262] = {.lex_state = 886}, + [3263] = {.lex_state = 886}, + [3264] = {.lex_state = 886, .external_lex_state = 5}, + [3265] = {.lex_state = 886}, + [3266] = {.lex_state = 886, .external_lex_state = 5}, + [3267] = {.lex_state = 886, .external_lex_state = 5}, + [3268] = {.lex_state = 21}, + [3269] = {.lex_state = 886}, + [3270] = {.lex_state = 886}, + [3271] = {.lex_state = 886, .external_lex_state = 5}, + [3272] = {.lex_state = 21}, + [3273] = {.lex_state = 886}, + [3274] = {.lex_state = 886}, + [3275] = {.lex_state = 110}, + [3276] = {.lex_state = 886}, + [3277] = {.lex_state = 21}, + [3278] = {.lex_state = 886}, + [3279] = {.lex_state = 886}, + [3280] = {.lex_state = 886, .external_lex_state = 5}, + [3281] = {.lex_state = 886}, + [3282] = {.lex_state = 110}, + [3283] = {.lex_state = 110}, + [3284] = {.lex_state = 886}, + [3285] = {.lex_state = 886}, + [3286] = {.lex_state = 886}, + [3287] = {.lex_state = 886}, + [3288] = {.lex_state = 886, .external_lex_state = 5}, + [3289] = {.lex_state = 886}, + [3290] = {.lex_state = 886, .external_lex_state = 5}, + [3291] = {.lex_state = 56}, + [3292] = {.lex_state = 886, .external_lex_state = 5}, + [3293] = {.lex_state = 21}, + [3294] = {.lex_state = 36}, + [3295] = {.lex_state = 886}, + [3296] = {.lex_state = 886}, + [3297] = {.lex_state = 886}, + [3298] = {.lex_state = 886, .external_lex_state = 5}, + [3299] = {.lex_state = 886}, + [3300] = {.lex_state = 886}, + [3301] = {.lex_state = 886}, + [3302] = {.lex_state = 886}, + [3303] = {.lex_state = 886}, + [3304] = {.lex_state = 886}, + [3305] = {.lex_state = 886}, + [3306] = {.lex_state = 886}, + [3307] = {.lex_state = 886}, + [3308] = {.lex_state = 886}, + [3309] = {.lex_state = 886}, + [3310] = {.lex_state = 886}, + [3311] = {.lex_state = 886}, + [3312] = {.lex_state = 886}, + [3313] = {.lex_state = 886}, + [3314] = {.lex_state = 886}, + [3315] = {.lex_state = 886}, + [3316] = {.lex_state = 886, .external_lex_state = 5}, + [3317] = {.lex_state = 886}, + [3318] = {.lex_state = 886}, + [3319] = {.lex_state = 886}, + [3320] = {.lex_state = 886}, + [3321] = {.lex_state = 886}, + [3322] = {.lex_state = 886}, + [3323] = {.lex_state = 886, .external_lex_state = 5}, + [3324] = {.lex_state = 886}, + [3325] = {.lex_state = 886}, + [3326] = {.lex_state = 886}, + [3327] = {.lex_state = 886}, + [3328] = {.lex_state = 96}, + [3329] = {.lex_state = 886}, + [3330] = {.lex_state = 886}, + [3331] = {.lex_state = 23}, + [3332] = {.lex_state = 886}, + [3333] = {.lex_state = 106}, + [3334] = {.lex_state = 886}, + [3335] = {.lex_state = 886}, + [3336] = {.lex_state = 886}, + [3337] = {.lex_state = 886}, + [3338] = {.lex_state = 21}, + [3339] = {.lex_state = 886}, + [3340] = {.lex_state = 886}, + [3341] = {.lex_state = 21}, + [3342] = {.lex_state = 886}, + [3343] = {.lex_state = 886}, + [3344] = {.lex_state = 886}, + [3345] = {.lex_state = 110}, + [3346] = {.lex_state = 21}, + [3347] = {.lex_state = 886}, + [3348] = {.lex_state = 23}, + [3349] = {.lex_state = 886, .external_lex_state = 5}, + [3350] = {.lex_state = 886}, + [3351] = {.lex_state = 886}, + [3352] = {.lex_state = 886}, + [3353] = {.lex_state = 886}, + [3354] = {.lex_state = 96}, + [3355] = {.lex_state = 110}, + [3356] = {.lex_state = 886}, + [3357] = {.lex_state = 886}, + [3358] = {.lex_state = 886}, + [3359] = {.lex_state = 886}, + [3360] = {.lex_state = 886}, + [3361] = {.lex_state = 886}, + [3362] = {.lex_state = 886, .external_lex_state = 5}, + [3363] = {.lex_state = 886}, + [3364] = {.lex_state = 886}, + [3365] = {.lex_state = 36}, + [3366] = {.lex_state = 886}, + [3367] = {.lex_state = 886}, + [3368] = {.lex_state = 886}, + [3369] = {.lex_state = 23}, + [3370] = {.lex_state = 886}, + [3371] = {.lex_state = 106}, + [3372] = {.lex_state = 886}, + [3373] = {.lex_state = 23}, + [3374] = {.lex_state = 886}, + [3375] = {.lex_state = 886}, + [3376] = {.lex_state = 886}, + [3377] = {.lex_state = 886}, + [3378] = {.lex_state = 886}, + [3379] = {.lex_state = 886}, + [3380] = {.lex_state = 886}, + [3381] = {.lex_state = 886}, + [3382] = {.lex_state = 886}, + [3383] = {.lex_state = 886}, + [3384] = {.lex_state = 886}, + [3385] = {.lex_state = 886}, + [3386] = {.lex_state = 886}, + [3387] = {.lex_state = 886}, + [3388] = {.lex_state = 886}, + [3389] = {.lex_state = 886}, + [3390] = {.lex_state = 886}, + [3391] = {.lex_state = 886}, + [3392] = {.lex_state = 886}, + [3393] = {.lex_state = 886}, + [3394] = {.lex_state = 886}, + [3395] = {.lex_state = 886}, + [3396] = {.lex_state = 886}, + [3397] = {.lex_state = 886}, + [3398] = {.lex_state = 886}, + [3399] = {.lex_state = 886}, + [3400] = {.lex_state = 886}, + [3401] = {.lex_state = 886}, + [3402] = {.lex_state = 886}, + [3403] = {.lex_state = 886}, + [3404] = {.lex_state = 886}, + [3405] = {.lex_state = 23}, + [3406] = {.lex_state = 886, .external_lex_state = 5}, + [3407] = {.lex_state = 886}, + [3408] = {.lex_state = 886}, + [3409] = {.lex_state = 886}, + [3410] = {.lex_state = 886}, + [3411] = {.lex_state = 886}, + [3412] = {.lex_state = 886}, + [3413] = {.lex_state = 886}, + [3414] = {.lex_state = 886}, + [3415] = {.lex_state = 886}, + [3416] = {.lex_state = 886}, + [3417] = {.lex_state = 23}, + [3418] = {.lex_state = 886}, + [3419] = {.lex_state = 21}, + [3420] = {.lex_state = 886}, + [3421] = {.lex_state = 886}, + [3422] = {.lex_state = 886}, + [3423] = {.lex_state = 886}, + [3424] = {.lex_state = 886}, + [3425] = {.lex_state = 886, .external_lex_state = 5}, + [3426] = {.lex_state = 886}, + [3427] = {.lex_state = 110}, + [3428] = {.lex_state = 886}, + [3429] = {.lex_state = 886, .external_lex_state = 5}, + [3430] = {.lex_state = 21}, + [3431] = {.lex_state = 886}, + [3432] = {.lex_state = 886}, + [3433] = {.lex_state = 886}, + [3434] = {.lex_state = 886}, + [3435] = {.lex_state = 23}, + [3436] = {.lex_state = 886}, + [3437] = {.lex_state = 886}, + [3438] = {.lex_state = 110}, + [3439] = {.lex_state = 886}, + [3440] = {.lex_state = 886}, + [3441] = {.lex_state = 886}, + [3442] = {.lex_state = 886}, + [3443] = {.lex_state = 886}, + [3444] = {.lex_state = 886}, + [3445] = {.lex_state = 886}, + [3446] = {.lex_state = 886}, + [3447] = {.lex_state = 886}, + [3448] = {.lex_state = 886, .external_lex_state = 5}, + [3449] = {.lex_state = 886}, + [3450] = {.lex_state = 886}, + [3451] = {.lex_state = 886, .external_lex_state = 5}, + [3452] = {.lex_state = 886}, + [3453] = {.lex_state = 886, .external_lex_state = 5}, + [3454] = {.lex_state = 23}, + [3455] = {.lex_state = 886}, + [3456] = {.lex_state = 886}, + [3457] = {.lex_state = 36}, + [3458] = {.lex_state = 886}, + [3459] = {.lex_state = 886}, + [3460] = {.lex_state = 886}, + [3461] = {.lex_state = 886}, + [3462] = {.lex_state = 886}, + [3463] = {.lex_state = 886}, + [3464] = {.lex_state = 886}, + [3465] = {.lex_state = 886}, + [3466] = {.lex_state = 886}, + [3467] = {.lex_state = 886}, + [3468] = {.lex_state = 886}, + [3469] = {.lex_state = 886}, + [3470] = {.lex_state = 886}, + [3471] = {.lex_state = 886}, + [3472] = {.lex_state = 886}, + [3473] = {.lex_state = 886}, + [3474] = {.lex_state = 886}, + [3475] = {.lex_state = 886}, + [3476] = {.lex_state = 886}, + [3477] = {.lex_state = 886}, + [3478] = {.lex_state = 886}, + [3479] = {.lex_state = 886}, + [3480] = {.lex_state = 886}, + [3481] = {.lex_state = 886}, + [3482] = {.lex_state = 886}, + [3483] = {.lex_state = 886}, + [3484] = {.lex_state = 886}, + [3485] = {.lex_state = 886}, + [3486] = {.lex_state = 886}, + [3487] = {.lex_state = 886}, + [3488] = {.lex_state = 886}, + [3489] = {.lex_state = 886}, + [3490] = {.lex_state = 886}, + [3491] = {.lex_state = 886, .external_lex_state = 5}, + [3492] = {.lex_state = 886}, + [3493] = {.lex_state = 886}, + [3494] = {.lex_state = 886}, + [3495] = {.lex_state = 886}, + [3496] = {.lex_state = 886}, + [3497] = {.lex_state = 23}, + [3498] = {.lex_state = 886}, + [3499] = {.lex_state = 886, .external_lex_state = 5}, + [3500] = {.lex_state = 886}, + [3501] = {.lex_state = 886}, + [3502] = {.lex_state = 886}, + [3503] = {.lex_state = 886}, + [3504] = {.lex_state = 886}, + [3505] = {.lex_state = 886}, + [3506] = {.lex_state = 886}, + [3507] = {.lex_state = 886}, + [3508] = {.lex_state = 886}, + [3509] = {.lex_state = 23}, + [3510] = {.lex_state = 106}, + [3511] = {.lex_state = 886}, + [3512] = {.lex_state = 21}, + [3513] = {.lex_state = 886}, + [3514] = {.lex_state = 23}, + [3515] = {.lex_state = 23, .external_lex_state = 5}, + [3516] = {.lex_state = 23, .external_lex_state = 5}, + [3517] = {.lex_state = 886}, + [3518] = {.lex_state = 886}, + [3519] = {.lex_state = 886}, + [3520] = {.lex_state = 886}, + [3521] = {.lex_state = 886}, + [3522] = {.lex_state = 110}, + [3523] = {.lex_state = 886}, + [3524] = {.lex_state = 886}, + [3525] = {.lex_state = 886}, + [3526] = {.lex_state = 886}, + [3527] = {.lex_state = 886}, + [3528] = {.lex_state = 886}, + [3529] = {.lex_state = 886}, + [3530] = {.lex_state = 886, .external_lex_state = 5}, + [3531] = {.lex_state = 21}, + [3532] = {.lex_state = 886}, + [3533] = {.lex_state = 886}, + [3534] = {.lex_state = 886}, + [3535] = {.lex_state = 886}, + [3536] = {.lex_state = 886}, + [3537] = {.lex_state = 886}, + [3538] = {.lex_state = 886}, + [3539] = {.lex_state = 886}, + [3540] = {.lex_state = 886}, + [3541] = {.lex_state = 886}, + [3542] = {.lex_state = 886}, + [3543] = {.lex_state = 886}, + [3544] = {.lex_state = 886}, + [3545] = {.lex_state = 886}, + [3546] = {.lex_state = 886}, + [3547] = {.lex_state = 886}, + [3548] = {.lex_state = 886}, + [3549] = {.lex_state = 886}, + [3550] = {.lex_state = 110}, + [3551] = {.lex_state = 886}, + [3552] = {.lex_state = 886}, + [3553] = {.lex_state = 886}, + [3554] = {.lex_state = 886}, + [3555] = {.lex_state = 886}, + [3556] = {.lex_state = 886}, + [3557] = {.lex_state = 886}, + [3558] = {.lex_state = 886}, + [3559] = {.lex_state = 886}, + [3560] = {.lex_state = 886}, + [3561] = {.lex_state = 886}, + [3562] = {.lex_state = 23, .external_lex_state = 5}, + [3563] = {.lex_state = 886}, [3564] = {.lex_state = 23}, - [3565] = {.lex_state = 23}, - [3566] = {.lex_state = 882}, - [3567] = {.lex_state = 882}, - [3568] = {.lex_state = 23}, - [3569] = {.lex_state = 882}, - [3570] = {.lex_state = 882}, - [3571] = {.lex_state = 882}, + [3565] = {.lex_state = 886}, + [3566] = {.lex_state = 23}, + [3567] = {.lex_state = 886}, + [3568] = {.lex_state = 886}, + [3569] = {.lex_state = 23}, + [3570] = {.lex_state = 886}, + [3571] = {.lex_state = 886}, [3572] = {.lex_state = 23}, - [3573] = {.lex_state = 882}, - [3574] = {.lex_state = 882}, - [3575] = {.lex_state = 23}, - [3576] = {.lex_state = 882}, - [3577] = {.lex_state = 882}, - [3578] = {.lex_state = 882}, - [3579] = {.lex_state = 38}, - [3580] = {.lex_state = 882}, - [3581] = {.lex_state = 882}, - [3582] = {.lex_state = 23}, - [3583] = {.lex_state = 882}, - [3584] = {.lex_state = 23}, - [3585] = {.lex_state = 882}, - [3586] = {.lex_state = 882}, - [3587] = {.lex_state = 882}, - [3588] = {.lex_state = 882}, - [3589] = {.lex_state = 23}, - [3590] = {.lex_state = 882}, - [3591] = {.lex_state = 882}, - [3592] = {.lex_state = 882}, - [3593] = {.lex_state = 882}, - [3594] = {.lex_state = 882}, - [3595] = {.lex_state = 882}, - [3596] = {.lex_state = 23}, - [3597] = {.lex_state = 23}, - [3598] = {.lex_state = 882}, - [3599] = {.lex_state = 882}, + [3573] = {.lex_state = 886}, + [3574] = {.lex_state = 886, .external_lex_state = 5}, + [3575] = {.lex_state = 886}, + [3576] = {.lex_state = 886}, + [3577] = {.lex_state = 886}, + [3578] = {.lex_state = 886}, + [3579] = {.lex_state = 886}, + [3580] = {.lex_state = 40}, + [3581] = {.lex_state = 886}, + [3582] = {.lex_state = 886}, + [3583] = {.lex_state = 886}, + [3584] = {.lex_state = 886}, + [3585] = {.lex_state = 886}, + [3586] = {.lex_state = 886}, + [3587] = {.lex_state = 886}, + [3588] = {.lex_state = 886}, + [3589] = {.lex_state = 886}, + [3590] = {.lex_state = 886}, + [3591] = {.lex_state = 886}, + [3592] = {.lex_state = 886}, + [3593] = {.lex_state = 886}, + [3594] = {.lex_state = 36}, + [3595] = {.lex_state = 886}, + [3596] = {.lex_state = 886}, + [3597] = {.lex_state = 886}, + [3598] = {.lex_state = 106}, + [3599] = {.lex_state = 886}, [3600] = {.lex_state = 23}, - [3601] = {.lex_state = 882}, - [3602] = {.lex_state = 882}, - [3603] = {.lex_state = 38}, - [3604] = {.lex_state = 882}, - [3605] = {.lex_state = 38}, - [3606] = {.lex_state = 882}, - [3607] = {.lex_state = 23}, - [3608] = {.lex_state = 23}, - [3609] = {.lex_state = 23}, - [3610] = {.lex_state = 23}, - [3611] = {.lex_state = 23}, - [3612] = {.lex_state = 882}, - [3613] = {.lex_state = 23}, - [3614] = {.lex_state = 23}, - [3615] = {.lex_state = 882}, - [3616] = {.lex_state = 882}, - [3617] = {.lex_state = 882}, - [3618] = {.lex_state = 882}, - [3619] = {.lex_state = 882}, - [3620] = {.lex_state = 23}, - [3621] = {.lex_state = 882}, - [3622] = {.lex_state = 882}, - [3623] = {.lex_state = 23}, - [3624] = {.lex_state = 23}, - [3625] = {.lex_state = 882}, - [3626] = {.lex_state = 882}, - [3627] = {.lex_state = 23}, - [3628] = {.lex_state = 882}, - [3629] = {.lex_state = 882}, - [3630] = {.lex_state = 23}, - [3631] = {.lex_state = 882}, - [3632] = {.lex_state = 882}, - [3633] = {.lex_state = 23}, - [3634] = {.lex_state = 882}, - [3635] = {.lex_state = 882}, - [3636] = {.lex_state = 23}, - [3637] = {.lex_state = 23}, - [3638] = {.lex_state = 882}, - [3639] = {.lex_state = 38}, - [3640] = {.lex_state = 882}, - [3641] = {.lex_state = 23}, - [3642] = {.lex_state = 23}, - [3643] = {.lex_state = 38}, - [3644] = {.lex_state = 882}, - [3645] = {.lex_state = 882}, - [3646] = {.lex_state = 882}, - [3647] = {.lex_state = 882}, - [3648] = {.lex_state = 23}, - [3649] = {.lex_state = 23}, - [3650] = {.lex_state = 38}, - [3651] = {.lex_state = 882}, - [3652] = {.lex_state = 21}, - [3653] = {.lex_state = 882}, - [3654] = {.lex_state = 882}, - [3655] = {.lex_state = 23}, + [3601] = {.lex_state = 886}, + [3602] = {.lex_state = 886}, + [3603] = {.lex_state = 886}, + [3604] = {.lex_state = 886}, + [3605] = {.lex_state = 886}, + [3606] = {.lex_state = 886}, + [3607] = {.lex_state = 886}, + [3608] = {.lex_state = 886}, + [3609] = {.lex_state = 886}, + [3610] = {.lex_state = 886}, + [3611] = {.lex_state = 886}, + [3612] = {.lex_state = 886}, + [3613] = {.lex_state = 886}, + [3614] = {.lex_state = 886}, + [3615] = {.lex_state = 886}, + [3616] = {.lex_state = 886}, + [3617] = {.lex_state = 886}, + [3618] = {.lex_state = 886}, + [3619] = {.lex_state = 886}, + [3620] = {.lex_state = 886}, + [3621] = {.lex_state = 886}, + [3622] = {.lex_state = 886}, + [3623] = {.lex_state = 886}, + [3624] = {.lex_state = 886}, + [3625] = {.lex_state = 886}, + [3626] = {.lex_state = 886}, + [3627] = {.lex_state = 106}, + [3628] = {.lex_state = 886}, + [3629] = {.lex_state = 23}, + [3630] = {.lex_state = 886}, + [3631] = {.lex_state = 886}, + [3632] = {.lex_state = 886}, + [3633] = {.lex_state = 886}, + [3634] = {.lex_state = 886}, + [3635] = {.lex_state = 886}, + [3636] = {.lex_state = 886}, + [3637] = {.lex_state = 886}, + [3638] = {.lex_state = 886}, + [3639] = {.lex_state = 886}, + [3640] = {.lex_state = 886}, + [3641] = {.lex_state = 886}, + [3642] = {.lex_state = 886}, + [3643] = {.lex_state = 886}, + [3644] = {.lex_state = 886}, + [3645] = {.lex_state = 886}, + [3646] = {.lex_state = 886}, + [3647] = {.lex_state = 886}, + [3648] = {.lex_state = 886}, + [3649] = {.lex_state = 886}, + [3650] = {.lex_state = 886}, + [3651] = {.lex_state = 111}, + [3652] = {.lex_state = 886}, + [3653] = {.lex_state = 886}, + [3654] = {.lex_state = 23}, + [3655] = {.lex_state = 886}, [3656] = {.lex_state = 23}, - [3657] = {.lex_state = 882}, - [3658] = {.lex_state = 882}, - [3659] = {.lex_state = 882}, - [3660] = {.lex_state = 882}, - [3661] = {.lex_state = 882}, - [3662] = {.lex_state = 23}, - [3663] = {.lex_state = 882}, - [3664] = {.lex_state = 23}, - [3665] = {.lex_state = 882}, - [3666] = {.lex_state = 23}, - [3667] = {.lex_state = 882}, - [3668] = {.lex_state = 47}, - [3669] = {.lex_state = 882}, + [3657] = {.lex_state = 23}, + [3658] = {.lex_state = 23}, + [3659] = {.lex_state = 886}, + [3660] = {.lex_state = 23}, + [3661] = {.lex_state = 886}, + [3662] = {.lex_state = 47}, + [3663] = {.lex_state = 23}, + [3664] = {.lex_state = 886}, + [3665] = {.lex_state = 886}, + [3666] = {.lex_state = 886}, + [3667] = {.lex_state = 886}, + [3668] = {.lex_state = 23}, + [3669] = {.lex_state = 23}, [3670] = {.lex_state = 23}, [3671] = {.lex_state = 23}, - [3672] = {.lex_state = 882}, - [3673] = {.lex_state = 23}, - [3674] = {.lex_state = 882}, - [3675] = {.lex_state = 882}, - [3676] = {.lex_state = 882}, - [3677] = {.lex_state = 882}, - [3678] = {.lex_state = 882}, - [3679] = {.lex_state = 882}, - [3680] = {.lex_state = 882}, - [3681] = {.lex_state = 882}, - [3682] = {.lex_state = 882}, - [3683] = {.lex_state = 882}, - [3684] = {.lex_state = 882}, - [3685] = {.lex_state = 882}, - [3686] = {.lex_state = 882}, - [3687] = {.lex_state = 882}, - [3688] = {.lex_state = 882}, - [3689] = {.lex_state = 882}, - [3690] = {.lex_state = 38}, - [3691] = {.lex_state = 23}, - [3692] = {.lex_state = 38}, - [3693] = {.lex_state = 882}, - [3694] = {.lex_state = 109}, - [3695] = {.lex_state = 40}, - [3696] = {.lex_state = 882}, + [3672] = {.lex_state = 886}, + [3673] = {.lex_state = 886}, + [3674] = {.lex_state = 886}, + [3675] = {.lex_state = 23}, + [3676] = {.lex_state = 886}, + [3677] = {.lex_state = 23}, + [3678] = {.lex_state = 23}, + [3679] = {.lex_state = 886}, + [3680] = {.lex_state = 23}, + [3681] = {.lex_state = 23}, + [3682] = {.lex_state = 23}, + [3683] = {.lex_state = 23}, + [3684] = {.lex_state = 23}, + [3685] = {.lex_state = 886}, + [3686] = {.lex_state = 23}, + [3687] = {.lex_state = 23}, + [3688] = {.lex_state = 23}, + [3689] = {.lex_state = 886}, + [3690] = {.lex_state = 23}, + [3691] = {.lex_state = 886}, + [3692] = {.lex_state = 886}, + [3693] = {.lex_state = 47}, + [3694] = {.lex_state = 23}, + [3695] = {.lex_state = 38}, + [3696] = {.lex_state = 23}, [3697] = {.lex_state = 38}, - [3698] = {.lex_state = 38}, - [3699] = {.lex_state = 23}, - [3700] = {.lex_state = 23}, - [3701] = {.lex_state = 38}, - [3702] = {.lex_state = 882}, - [3703] = {.lex_state = 23}, - [3704] = {.lex_state = 23}, - [3705] = {.lex_state = 23}, - [3706] = {.lex_state = 882}, - [3707] = {.lex_state = 47}, + [3698] = {.lex_state = 886}, + [3699] = {.lex_state = 886}, + [3700] = {.lex_state = 886}, + [3701] = {.lex_state = 886}, + [3702] = {.lex_state = 47}, + [3703] = {.lex_state = 886}, + [3704] = {.lex_state = 886}, + [3705] = {.lex_state = 886}, + [3706] = {.lex_state = 886}, + [3707] = {.lex_state = 23}, [3708] = {.lex_state = 23}, - [3709] = {.lex_state = 882}, - [3710] = {.lex_state = 23}, - [3711] = {.lex_state = 109}, - [3712] = {.lex_state = 882}, - [3713] = {.lex_state = 882}, - [3714] = {.lex_state = 38}, + [3709] = {.lex_state = 23}, + [3710] = {.lex_state = 886}, + [3711] = {.lex_state = 886}, + [3712] = {.lex_state = 23}, + [3713] = {.lex_state = 886}, + [3714] = {.lex_state = 886}, [3715] = {.lex_state = 23}, - [3716] = {.lex_state = 882}, - [3717] = {.lex_state = 882}, - [3718] = {.lex_state = 23}, - [3719] = {.lex_state = 38}, - [3720] = {.lex_state = 882}, - [3721] = {.lex_state = 23}, - [3722] = {.lex_state = 23}, - [3723] = {.lex_state = 23}, - [3724] = {.lex_state = 23}, - [3725] = {.lex_state = 23}, - [3726] = {.lex_state = 882}, - [3727] = {.lex_state = 23}, - [3728] = {.lex_state = 47}, - [3729] = {.lex_state = 882}, - [3730] = {.lex_state = 882}, - [3731] = {.lex_state = 109}, - [3732] = {.lex_state = 882}, - [3733] = {.lex_state = 882}, - [3734] = {.lex_state = 882}, - [3735] = {.lex_state = 23}, - [3736] = {.lex_state = 882}, - [3737] = {.lex_state = 882}, - [3738] = {.lex_state = 882}, - [3739] = {.lex_state = 882}, - [3740] = {.lex_state = 882}, - [3741] = {.lex_state = 23}, - [3742] = {.lex_state = 23}, + [3716] = {.lex_state = 47}, + [3717] = {.lex_state = 886}, + [3718] = {.lex_state = 886}, + [3719] = {.lex_state = 23}, + [3720] = {.lex_state = 23}, + [3721] = {.lex_state = 886}, + [3722] = {.lex_state = 886}, + [3723] = {.lex_state = 886}, + [3724] = {.lex_state = 886}, + [3725] = {.lex_state = 886}, + [3726] = {.lex_state = 23}, + [3727] = {.lex_state = 886}, + [3728] = {.lex_state = 886}, + [3729] = {.lex_state = 886}, + [3730] = {.lex_state = 40}, + [3731] = {.lex_state = 886}, + [3732] = {.lex_state = 23}, + [3733] = {.lex_state = 886}, + [3734] = {.lex_state = 38}, + [3735] = {.lex_state = 886}, + [3736] = {.lex_state = 886}, + [3737] = {.lex_state = 886}, + [3738] = {.lex_state = 111}, + [3739] = {.lex_state = 23}, + [3740] = {.lex_state = 47}, + [3741] = {.lex_state = 886}, + [3742] = {.lex_state = 886}, [3743] = {.lex_state = 23}, - [3744] = {.lex_state = 882}, - [3745] = {.lex_state = 882}, - [3746] = {.lex_state = 882}, - [3747] = {.lex_state = 882}, - [3748] = {.lex_state = 882}, - [3749] = {.lex_state = 882}, - [3750] = {.lex_state = 882}, - [3751] = {.lex_state = 882}, - [3752] = {.lex_state = 882}, - [3753] = {.lex_state = 882}, - [3754] = {.lex_state = 38}, - [3755] = {.lex_state = 882}, - [3756] = {.lex_state = 38}, - [3757] = {.lex_state = 23}, + [3744] = {.lex_state = 47}, + [3745] = {.lex_state = 21}, + [3746] = {.lex_state = 886}, + [3747] = {.lex_state = 23}, + [3748] = {.lex_state = 886}, + [3749] = {.lex_state = 23}, + [3750] = {.lex_state = 23}, + [3751] = {.lex_state = 886}, + [3752] = {.lex_state = 23}, + [3753] = {.lex_state = 886}, + [3754] = {.lex_state = 23}, + [3755] = {.lex_state = 886}, + [3756] = {.lex_state = 886}, + [3757] = {.lex_state = 886}, [3758] = {.lex_state = 23}, - [3759] = {.lex_state = 23}, - [3760] = {.lex_state = 882}, - [3761] = {.lex_state = 882}, - [3762] = {.lex_state = 882}, - [3763] = {.lex_state = 882}, - [3764] = {.lex_state = 882}, - [3765] = {.lex_state = 23}, - [3766] = {.lex_state = 47}, - [3767] = {.lex_state = 882}, - [3768] = {.lex_state = 882}, + [3759] = {.lex_state = 886}, + [3760] = {.lex_state = 886}, + [3761] = {.lex_state = 886}, + [3762] = {.lex_state = 23}, + [3763] = {.lex_state = 886}, + [3764] = {.lex_state = 886}, + [3765] = {.lex_state = 38}, + [3766] = {.lex_state = 23}, + [3767] = {.lex_state = 23}, + [3768] = {.lex_state = 23}, [3769] = {.lex_state = 23}, - [3770] = {.lex_state = 23}, - [3771] = {.lex_state = 882}, - [3772] = {.lex_state = 882}, - [3773] = {.lex_state = 882}, - [3774] = {.lex_state = 882}, - [3775] = {.lex_state = 882}, - [3776] = {.lex_state = 882}, - [3777] = {.lex_state = 882}, - [3778] = {.lex_state = 882}, - [3779] = {.lex_state = 882}, - [3780] = {.lex_state = 882}, - [3781] = {.lex_state = 23}, - [3782] = {.lex_state = 23}, - [3783] = {.lex_state = 23}, - [3784] = {.lex_state = 882}, - [3785] = {.lex_state = 882}, - [3786] = {.lex_state = 882}, - [3787] = {.lex_state = 23}, + [3770] = {.lex_state = 886}, + [3771] = {.lex_state = 886}, + [3772] = {.lex_state = 886}, + [3773] = {.lex_state = 886}, + [3774] = {.lex_state = 886}, + [3775] = {.lex_state = 23}, + [3776] = {.lex_state = 886}, + [3777] = {.lex_state = 111}, + [3778] = {.lex_state = 886}, + [3779] = {.lex_state = 886}, + [3780] = {.lex_state = 40}, + [3781] = {.lex_state = 886}, + [3782] = {.lex_state = 886}, + [3783] = {.lex_state = 886}, + [3784] = {.lex_state = 886}, + [3785] = {.lex_state = 886}, + [3786] = {.lex_state = 38}, + [3787] = {.lex_state = 886}, [3788] = {.lex_state = 23}, - [3789] = {.lex_state = 882}, - [3790] = {.lex_state = 23}, - [3791] = {.lex_state = 882}, - [3792] = {.lex_state = 882}, - [3793] = {.lex_state = 23}, + [3789] = {.lex_state = 23}, + [3790] = {.lex_state = 38}, + [3791] = {.lex_state = 886}, + [3792] = {.lex_state = 23}, + [3793] = {.lex_state = 886}, [3794] = {.lex_state = 23}, - [3795] = {.lex_state = 882}, + [3795] = {.lex_state = 111}, [3796] = {.lex_state = 23}, - [3797] = {.lex_state = 882}, - [3798] = {.lex_state = 882}, - [3799] = {.lex_state = 882}, - [3800] = {.lex_state = 882}, - [3801] = {.lex_state = 882}, - [3802] = {.lex_state = 47}, - [3803] = {.lex_state = 882}, - [3804] = {.lex_state = 882}, - [3805] = {.lex_state = 882}, - [3806] = {.lex_state = 882}, - [3807] = {.lex_state = 882}, - [3808] = {.lex_state = 882, .external_lex_state = 5}, - [3809] = {.lex_state = 23}, - [3810] = {.lex_state = 882}, - [3811] = {.lex_state = 882}, - [3812] = {.lex_state = 882}, - [3813] = {.lex_state = 882}, - [3814] = {.lex_state = 882}, - [3815] = {.lex_state = 882}, - [3816] = {.lex_state = 882}, + [3797] = {.lex_state = 886}, + [3798] = {.lex_state = 38}, + [3799] = {.lex_state = 23}, + [3800] = {.lex_state = 886}, + [3801] = {.lex_state = 23}, + [3802] = {.lex_state = 886}, + [3803] = {.lex_state = 886}, + [3804] = {.lex_state = 23}, + [3805] = {.lex_state = 886}, + [3806] = {.lex_state = 23}, + [3807] = {.lex_state = 23}, + [3808] = {.lex_state = 23}, + [3809] = {.lex_state = 886}, + [3810] = {.lex_state = 886}, + [3811] = {.lex_state = 23, .external_lex_state = 5}, + [3812] = {.lex_state = 23}, + [3813] = {.lex_state = 38}, + [3814] = {.lex_state = 886}, + [3815] = {.lex_state = 886}, + [3816] = {.lex_state = 23}, [3817] = {.lex_state = 23}, - [3818] = {.lex_state = 882}, - [3819] = {.lex_state = 23}, - [3820] = {.lex_state = 38}, - [3821] = {.lex_state = 109}, + [3818] = {.lex_state = 886}, + [3819] = {.lex_state = 886}, + [3820] = {.lex_state = 886}, + [3821] = {.lex_state = 886}, [3822] = {.lex_state = 23}, - [3823] = {.lex_state = 23}, - [3824] = {.lex_state = 882}, - [3825] = {.lex_state = 23}, - [3826] = {.lex_state = 882}, - [3827] = {.lex_state = 882}, - [3828] = {.lex_state = 23}, - [3829] = {.lex_state = 47}, - [3830] = {.lex_state = 882}, - [3831] = {.lex_state = 882}, - [3832] = {.lex_state = 882}, - [3833] = {.lex_state = 23}, - [3834] = {.lex_state = 882}, - [3835] = {.lex_state = 23}, - [3836] = {.lex_state = 109}, - [3837] = {.lex_state = 882}, - [3838] = {.lex_state = 882}, - [3839] = {.lex_state = 882}, - [3840] = {.lex_state = 23}, - [3841] = {.lex_state = 882}, - [3842] = {.lex_state = 38}, - [3843] = {.lex_state = 882}, - [3844] = {.lex_state = 23}, - [3845] = {.lex_state = 23}, - [3846] = {.lex_state = 882}, - [3847] = {.lex_state = 882}, - [3848] = {.lex_state = 882}, - [3849] = {.lex_state = 23, .external_lex_state = 5}, - [3850] = {.lex_state = 104}, - [3851] = {.lex_state = 882}, - [3852] = {.lex_state = 23}, + [3823] = {.lex_state = 886}, + [3824] = {.lex_state = 886}, + [3825] = {.lex_state = 38}, + [3826] = {.lex_state = 886}, + [3827] = {.lex_state = 886}, + [3828] = {.lex_state = 886}, + [3829] = {.lex_state = 23}, + [3830] = {.lex_state = 23}, + [3831] = {.lex_state = 886}, + [3832] = {.lex_state = 886}, + [3833] = {.lex_state = 886}, + [3834] = {.lex_state = 38}, + [3835] = {.lex_state = 886}, + [3836] = {.lex_state = 38}, + [3837] = {.lex_state = 886}, + [3838] = {.lex_state = 886}, + [3839] = {.lex_state = 886}, + [3840] = {.lex_state = 886}, + [3841] = {.lex_state = 886}, + [3842] = {.lex_state = 886}, + [3843] = {.lex_state = 886}, + [3844] = {.lex_state = 886}, + [3845] = {.lex_state = 886}, + [3846] = {.lex_state = 886}, + [3847] = {.lex_state = 886}, + [3848] = {.lex_state = 886}, + [3849] = {.lex_state = 886}, + [3850] = {.lex_state = 23}, + [3851] = {.lex_state = 886}, + [3852] = {.lex_state = 886}, [3853] = {.lex_state = 23}, - [3854] = {.lex_state = 882}, - [3855] = {.lex_state = 47}, - [3856] = {.lex_state = 882}, - [3857] = {.lex_state = 23}, - [3858] = {.lex_state = 109}, - [3859] = {.lex_state = 882}, - [3860] = {.lex_state = 23}, - [3861] = {.lex_state = 882}, - [3862] = {.lex_state = 882}, - [3863] = {.lex_state = 882}, - [3864] = {.lex_state = 23}, - [3865] = {.lex_state = 882}, - [3866] = {.lex_state = 882}, - [3867] = {.lex_state = 882}, + [3854] = {.lex_state = 886}, + [3855] = {.lex_state = 886}, + [3856] = {.lex_state = 886}, + [3857] = {.lex_state = 886}, + [3858] = {.lex_state = 886}, + [3859] = {.lex_state = 886}, + [3860] = {.lex_state = 886}, + [3861] = {.lex_state = 886}, + [3862] = {.lex_state = 886}, + [3863] = {.lex_state = 886}, + [3864] = {.lex_state = 886}, + [3865] = {.lex_state = 23}, + [3866] = {.lex_state = 23}, + [3867] = {.lex_state = 886}, [3868] = {.lex_state = 23}, - [3869] = {.lex_state = 882}, - [3870] = {.lex_state = 23}, - [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 = 882}, - [3881] = {.lex_state = 882}, - [3882] = {.lex_state = 882}, - [3883] = {.lex_state = 882}, - [3884] = {.lex_state = 882}, - [3885] = {.lex_state = 882}, - [3886] = {.lex_state = 23}, - [3887] = {.lex_state = 882}, + [3869] = {.lex_state = 886}, + [3870] = {.lex_state = 886}, + [3871] = {.lex_state = 886}, + [3872] = {.lex_state = 38}, + [3873] = {.lex_state = 886}, + [3874] = {.lex_state = 38}, + [3875] = {.lex_state = 886}, + [3876] = {.lex_state = 886}, + [3877] = {.lex_state = 886}, + [3878] = {.lex_state = 886}, + [3879] = {.lex_state = 886}, + [3880] = {.lex_state = 886}, + [3881] = {.lex_state = 38}, + [3882] = {.lex_state = 886}, + [3883] = {.lex_state = 886}, + [3884] = {.lex_state = 23}, + [3885] = {.lex_state = 38}, + [3886] = {.lex_state = 38}, + [3887] = {.lex_state = 23}, [3888] = {.lex_state = 23}, - [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 = 23}, - [3902] = {.lex_state = 882}, - [3903] = {.lex_state = 882}, - [3904] = {.lex_state = 882}, - [3905] = {.lex_state = 882}, - [3906] = {.lex_state = 882}, - [3907] = {.lex_state = 23}, - [3908] = {.lex_state = 882}, - [3909] = {.lex_state = 882}, - [3910] = {.lex_state = 882}, - [3911] = {.lex_state = 882}, - [3912] = {.lex_state = 109}, - [3913] = {.lex_state = 882}, - [3914] = {.lex_state = 882}, - [3915] = {.lex_state = 882}, - [3916] = {.lex_state = 882}, - [3917] = {.lex_state = 39}, - [3918] = {.lex_state = 882}, - [3919] = {.lex_state = 882}, - [3920] = {.lex_state = 23}, - [3921] = {.lex_state = 882}, - [3922] = {.lex_state = 882}, - [3923] = {.lex_state = 882}, + [3889] = {.lex_state = 886}, + [3890] = {.lex_state = 23}, + [3891] = {.lex_state = 886}, + [3892] = {.lex_state = 47}, + [3893] = {.lex_state = 886}, + [3894] = {.lex_state = 886, .external_lex_state = 5}, + [3895] = {.lex_state = 886}, + [3896] = {.lex_state = 23}, + [3897] = {.lex_state = 886}, + [3898] = {.lex_state = 886}, + [3899] = {.lex_state = 23}, + [3900] = {.lex_state = 886}, + [3901] = {.lex_state = 886}, + [3902] = {.lex_state = 23}, + [3903] = {.lex_state = 886}, + [3904] = {.lex_state = 886}, + [3905] = {.lex_state = 886, .external_lex_state = 5}, + [3906] = {.lex_state = 23}, + [3907] = {.lex_state = 886}, + [3908] = {.lex_state = 886}, + [3909] = {.lex_state = 886}, + [3910] = {.lex_state = 23}, + [3911] = {.lex_state = 23}, + [3912] = {.lex_state = 886}, + [3913] = {.lex_state = 111}, + [3914] = {.lex_state = 886}, + [3915] = {.lex_state = 886}, + [3916] = {.lex_state = 886}, + [3917] = {.lex_state = 886}, + [3918] = {.lex_state = 886}, + [3919] = {.lex_state = 886}, + [3920] = {.lex_state = 886}, + [3921] = {.lex_state = 886}, + [3922] = {.lex_state = 47}, + [3923] = {.lex_state = 886}, [3924] = {.lex_state = 23}, - [3925] = {.lex_state = 882}, - [3926] = {.lex_state = 882}, - [3927] = {.lex_state = 23}, - [3928] = {.lex_state = 104}, - [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 = 882}, - [3937] = {.lex_state = 23}, - [3938] = {.lex_state = 882}, - [3939] = {.lex_state = 882}, - [3940] = {.lex_state = 882}, - [3941] = {.lex_state = 882}, - [3942] = {.lex_state = 882}, - [3943] = {.lex_state = 882}, - [3944] = {.lex_state = 882}, - [3945] = {.lex_state = 882}, - [3946] = {.lex_state = 109}, - [3947] = {.lex_state = 882}, - [3948] = {.lex_state = 882}, - [3949] = {.lex_state = 882}, - [3950] = {.lex_state = 882}, - [3951] = {.lex_state = 47}, - [3952] = {.lex_state = 882}, - [3953] = {.lex_state = 882}, - [3954] = {.lex_state = 882}, - [3955] = {.lex_state = 882}, - [3956] = {.lex_state = 23}, - [3957] = {.lex_state = 23}, - [3958] = {.lex_state = 38}, - [3959] = {.lex_state = 882}, - [3960] = {.lex_state = 882}, - [3961] = {.lex_state = 882}, - [3962] = {.lex_state = 882}, - [3963] = {.lex_state = 882}, - [3964] = {.lex_state = 882}, - [3965] = {.lex_state = 882}, - [3966] = {.lex_state = 23}, - [3967] = {.lex_state = 23}, - [3968] = {.lex_state = 882}, - [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 = 882}, - [3976] = {.lex_state = 23}, - [3977] = {.lex_state = 882}, - [3978] = {.lex_state = 23}, - [3979] = {.lex_state = 882}, - [3980] = {.lex_state = 23}, - [3981] = {.lex_state = 882}, - [3982] = {.lex_state = 882}, - [3983] = {.lex_state = 882}, - [3984] = {.lex_state = 882}, - [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 = 23}, + [3925] = {.lex_state = 886}, + [3926] = {.lex_state = 886}, + [3927] = {.lex_state = 38}, + [3928] = {.lex_state = 886}, + [3929] = {.lex_state = 886}, + [3930] = {.lex_state = 886}, + [3931] = {.lex_state = 38}, + [3932] = {.lex_state = 23}, + [3933] = {.lex_state = 886}, + [3934] = {.lex_state = 23}, + [3935] = {.lex_state = 886}, + [3936] = {.lex_state = 886}, + [3937] = {.lex_state = 106}, + [3938] = {.lex_state = 886}, + [3939] = {.lex_state = 38}, + [3940] = {.lex_state = 23}, + [3941] = {.lex_state = 111}, + [3942] = {.lex_state = 886}, + [3943] = {.lex_state = 23}, + [3944] = {.lex_state = 886}, + [3945] = {.lex_state = 886}, + [3946] = {.lex_state = 23}, + [3947] = {.lex_state = 886}, + [3948] = {.lex_state = 886}, + [3949] = {.lex_state = 886}, + [3950] = {.lex_state = 886}, + [3951] = {.lex_state = 23}, + [3952] = {.lex_state = 886}, + [3953] = {.lex_state = 886}, + [3954] = {.lex_state = 886}, + [3955] = {.lex_state = 886}, + [3956] = {.lex_state = 886}, + [3957] = {.lex_state = 886}, + [3958] = {.lex_state = 886}, + [3959] = {.lex_state = 23}, + [3960] = {.lex_state = 886}, + [3961] = {.lex_state = 886}, + [3962] = {.lex_state = 23}, + [3963] = {.lex_state = 886}, + [3964] = {.lex_state = 886}, + [3965] = {.lex_state = 886}, + [3966] = {.lex_state = 111}, + [3967] = {.lex_state = 886}, + [3968] = {.lex_state = 23}, + [3969] = {.lex_state = 23}, + [3970] = {.lex_state = 886}, + [3971] = {.lex_state = 886}, + [3972] = {.lex_state = 886}, + [3973] = {.lex_state = 886}, + [3974] = {.lex_state = 23}, + [3975] = {.lex_state = 886}, + [3976] = {.lex_state = 111}, + [3977] = {.lex_state = 886}, + [3978] = {.lex_state = 886}, + [3979] = {.lex_state = 886}, + [3980] = {.lex_state = 886}, + [3981] = {.lex_state = 23}, + [3982] = {.lex_state = 886}, + [3983] = {.lex_state = 886}, + [3984] = {.lex_state = 886}, + [3985] = {.lex_state = 886}, + [3986] = {.lex_state = 886}, + [3987] = {.lex_state = 886}, + [3988] = {.lex_state = 886}, + [3989] = {.lex_state = 38}, + [3990] = {.lex_state = 886}, + [3991] = {.lex_state = 886}, [3992] = {.lex_state = 23}, - [3993] = {.lex_state = 882}, - [3994] = {.lex_state = 882}, - [3995] = {.lex_state = 23}, - [3996] = {.lex_state = 882}, - [3997] = {.lex_state = 882}, - [3998] = {.lex_state = 882}, - [3999] = {.lex_state = 23}, - [4000] = {.lex_state = 23}, - [4001] = {.lex_state = 882}, - [4002] = {.lex_state = 882, .external_lex_state = 5}, - [4003] = {.lex_state = 882}, - [4004] = {.lex_state = 882}, - [4005] = {.lex_state = 23}, - [4006] = {.lex_state = 882}, - [4007] = {.lex_state = 882}, - [4008] = {.lex_state = 882}, - [4009] = {.lex_state = 882}, - [4010] = {.lex_state = 882}, - [4011] = {.lex_state = 23}, - [4012] = {.lex_state = 882}, - [4013] = {.lex_state = 882}, + [3993] = {.lex_state = 23}, + [3994] = {.lex_state = 23}, + [3995] = {.lex_state = 886}, + [3996] = {.lex_state = 23}, + [3997] = {.lex_state = 23}, + [3998] = {.lex_state = 23}, + [3999] = {.lex_state = 886}, + [4000] = {.lex_state = 886}, + [4001] = {.lex_state = 886}, + [4002] = {.lex_state = 886}, + [4003] = {.lex_state = 23}, + [4004] = {.lex_state = 23}, + [4005] = {.lex_state = 886}, + [4006] = {.lex_state = 886}, + [4007] = {.lex_state = 106}, + [4008] = {.lex_state = 886}, + [4009] = {.lex_state = 886}, + [4010] = {.lex_state = 23}, + [4011] = {.lex_state = 886}, + [4012] = {.lex_state = 886}, + [4013] = {.lex_state = 23}, [4014] = {.lex_state = 23}, [4015] = {.lex_state = 23}, - [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 = 38}, - [4023] = {.lex_state = 882}, - [4024] = {.lex_state = 882}, - [4025] = {.lex_state = 103}, - [4026] = {.lex_state = 882}, - [4027] = {.lex_state = 109}, - [4028] = {.lex_state = 882}, - [4029] = {.lex_state = 882}, - [4030] = {.lex_state = 103}, - [4031] = {.lex_state = 882}, - [4032] = {.lex_state = 882}, - [4033] = {.lex_state = 882}, - [4034] = {.lex_state = 882}, - [4035] = {.lex_state = 38}, - [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 = 882}, - [4045] = {.lex_state = 882}, - [4046] = {.lex_state = 882}, - [4047] = {.lex_state = 882}, - [4048] = {.lex_state = 882}, - [4049] = {.lex_state = 882}, - [4050] = {.lex_state = 882}, + [4016] = {.lex_state = 886}, + [4017] = {.lex_state = 886}, + [4018] = {.lex_state = 886}, + [4019] = {.lex_state = 886}, + [4020] = {.lex_state = 886}, + [4021] = {.lex_state = 886}, + [4022] = {.lex_state = 886}, + [4023] = {.lex_state = 886}, + [4024] = {.lex_state = 23}, + [4025] = {.lex_state = 886}, + [4026] = {.lex_state = 886}, + [4027] = {.lex_state = 886}, + [4028] = {.lex_state = 886}, + [4029] = {.lex_state = 886}, + [4030] = {.lex_state = 23}, + [4031] = {.lex_state = 886}, + [4032] = {.lex_state = 886}, + [4033] = {.lex_state = 886}, + [4034] = {.lex_state = 886}, + [4035] = {.lex_state = 886}, + [4036] = {.lex_state = 23}, + [4037] = {.lex_state = 886}, + [4038] = {.lex_state = 886}, + [4039] = {.lex_state = 886}, + [4040] = {.lex_state = 886}, + [4041] = {.lex_state = 886}, + [4042] = {.lex_state = 886}, + [4043] = {.lex_state = 886}, + [4044] = {.lex_state = 886}, + [4045] = {.lex_state = 886}, + [4046] = {.lex_state = 23}, + [4047] = {.lex_state = 886}, + [4048] = {.lex_state = 886}, + [4049] = {.lex_state = 886}, + [4050] = {.lex_state = 886}, [4051] = {.lex_state = 23}, - [4052] = {.lex_state = 882}, - [4053] = {.lex_state = 882}, - [4054] = {.lex_state = 21}, - [4055] = {.lex_state = 882}, - [4056] = {.lex_state = 882}, - [4057] = {.lex_state = 882}, - [4058] = {.lex_state = 882}, - [4059] = {.lex_state = 882}, + [4052] = {.lex_state = 23}, + [4053] = {.lex_state = 886}, + [4054] = {.lex_state = 886}, + [4055] = {.lex_state = 886}, + [4056] = {.lex_state = 886}, + [4057] = {.lex_state = 886}, + [4058] = {.lex_state = 886}, + [4059] = {.lex_state = 886}, [4060] = {.lex_state = 23}, - [4061] = {.lex_state = 882}, - [4062] = {.lex_state = 882}, - [4063] = {.lex_state = 882}, - [4064] = {.lex_state = 882}, - [4065] = {.lex_state = 882}, - [4066] = {.lex_state = 109}, - [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 = 23}, - [4074] = {.lex_state = 882}, - [4075] = {.lex_state = 23}, - [4076] = {.lex_state = 882}, - [4077] = {.lex_state = 882}, - [4078] = {.lex_state = 882}, - [4079] = {.lex_state = 882}, - [4080] = {.lex_state = 882}, + [4061] = {.lex_state = 886}, + [4062] = {.lex_state = 886}, + [4063] = {.lex_state = 886}, + [4064] = {.lex_state = 23}, + [4065] = {.lex_state = 886}, + [4066] = {.lex_state = 886}, + [4067] = {.lex_state = 886}, + [4068] = {.lex_state = 886}, + [4069] = {.lex_state = 886}, + [4070] = {.lex_state = 886}, + [4071] = {.lex_state = 886}, + [4072] = {.lex_state = 39}, + [4073] = {.lex_state = 886}, + [4074] = {.lex_state = 886}, + [4075] = {.lex_state = 886}, + [4076] = {.lex_state = 886}, + [4077] = {.lex_state = 886}, + [4078] = {.lex_state = 105}, + [4079] = {.lex_state = 886}, + [4080] = {.lex_state = 105}, [4081] = {.lex_state = 23}, - [4082] = {.lex_state = 882}, - [4083] = {.lex_state = 882}, - [4084] = {.lex_state = 882}, + [4082] = {.lex_state = 886}, + [4083] = {.lex_state = 886}, + [4084] = {.lex_state = 886}, [4085] = {.lex_state = 23}, - [4086] = {.lex_state = 882}, - [4087] = {.lex_state = 882}, - [4088] = {.lex_state = 882}, - [4089] = {.lex_state = 882}, - [4090] = {.lex_state = 882}, - [4091] = {.lex_state = 882}, - [4092] = {.lex_state = 882}, - [4093] = {.lex_state = 882}, - [4094] = {.lex_state = 23}, - [4095] = {.lex_state = 882}, - [4096] = {.lex_state = 882}, - [4097] = {.lex_state = 23}, - [4098] = {.lex_state = 882}, - [4099] = {.lex_state = 882}, - [4100] = {.lex_state = 23}, - [4101] = {.lex_state = 23}, - [4102] = {.lex_state = 23}, - [4103] = {.lex_state = 882}, - [4104] = {.lex_state = 882}, - [4105] = {.lex_state = 23}, - [4106] = {.lex_state = 23}, - [4107] = {.lex_state = 40}, - [4108] = {.lex_state = 40}, - [4109] = {.lex_state = 882}, - [4110] = {.lex_state = 882}, - [4111] = {.lex_state = 882}, - [4112] = {.lex_state = 23}, - [4113] = {.lex_state = 23}, - [4114] = {.lex_state = 882}, - [4115] = {.lex_state = 882}, - [4116] = {.lex_state = 882}, - [4117] = {.lex_state = 23}, - [4118] = {.lex_state = 23}, - [4119] = {.lex_state = 882}, - [4120] = {.lex_state = 882}, - [4121] = {.lex_state = 882}, - [4122] = {.lex_state = 882}, - [4123] = {.lex_state = 882}, - [4124] = {.lex_state = 882}, - [4125] = {.lex_state = 882}, - [4126] = {.lex_state = 882}, - [4127] = {.lex_state = 882}, - [4128] = {.lex_state = 23}, - [4129] = {.lex_state = 882}, - [4130] = {.lex_state = 882}, + [4086] = {.lex_state = 886}, + [4087] = {.lex_state = 886}, + [4088] = {.lex_state = 886}, + [4089] = {.lex_state = 886}, + [4090] = {.lex_state = 23}, + [4091] = {.lex_state = 886}, + [4092] = {.lex_state = 886}, + [4093] = {.lex_state = 886}, + [4094] = {.lex_state = 886}, + [4095] = {.lex_state = 23}, + [4096] = {.lex_state = 23}, + [4097] = {.lex_state = 886}, + [4098] = {.lex_state = 886}, + [4099] = {.lex_state = 886}, + [4100] = {.lex_state = 886}, + [4101] = {.lex_state = 886}, + [4102] = {.lex_state = 886}, + [4103] = {.lex_state = 47}, + [4104] = {.lex_state = 886}, + [4105] = {.lex_state = 886}, + [4106] = {.lex_state = 886}, + [4107] = {.lex_state = 886}, + [4108] = {.lex_state = 886}, + [4109] = {.lex_state = 886}, + [4110] = {.lex_state = 886}, + [4111] = {.lex_state = 886}, + [4112] = {.lex_state = 886}, + [4113] = {.lex_state = 21}, + [4114] = {.lex_state = 886}, + [4115] = {.lex_state = 886}, + [4116] = {.lex_state = 886}, + [4117] = {.lex_state = 886}, + [4118] = {.lex_state = 886}, + [4119] = {.lex_state = 886}, + [4120] = {.lex_state = 886}, + [4121] = {.lex_state = 886}, + [4122] = {.lex_state = 886}, + [4123] = {.lex_state = 886}, + [4124] = {.lex_state = 886}, + [4125] = {.lex_state = 886}, + [4126] = {.lex_state = 886}, + [4127] = {.lex_state = 23}, + [4128] = {.lex_state = 886}, + [4129] = {.lex_state = 23}, + [4130] = {.lex_state = 886}, [4131] = {.lex_state = 23}, - [4132] = {.lex_state = 882}, - [4133] = {.lex_state = 47}, - [4134] = {.lex_state = 882}, - [4135] = {.lex_state = 882}, - [4136] = {.lex_state = 882}, - [4137] = {.lex_state = 882}, - [4138] = {.lex_state = 23}, - [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 = 23}, - [4147] = {.lex_state = 23}, - [4148] = {.lex_state = 882}, - [4149] = {.lex_state = 882}, - [4150] = {.lex_state = 882}, - [4151] = {.lex_state = 882}, - [4152] = {.lex_state = 882}, - [4153] = {.lex_state = 882}, - [4154] = {.lex_state = 882}, - [4155] = {.lex_state = 882}, - [4156] = {.lex_state = 882}, - [4157] = {.lex_state = 882}, - [4158] = {.lex_state = 882}, - [4159] = {.lex_state = 882}, - [4160] = {.lex_state = 882}, - [4161] = {.lex_state = 882}, - [4162] = {.lex_state = 23}, - [4163] = {.lex_state = 882}, - [4164] = {.lex_state = 23}, - [4165] = {.lex_state = 882}, - [4166] = {.lex_state = 882}, - [4167] = {.lex_state = 882}, - [4168] = {.lex_state = 23}, - [4169] = {.lex_state = 882}, - [4170] = {.lex_state = 23}, - [4171] = {.lex_state = 882}, - [4172] = {.lex_state = 882}, - [4173] = {.lex_state = 882}, - [4174] = {.lex_state = 40}, - [4175] = {.lex_state = 882}, - [4176] = {.lex_state = 882}, - [4177] = {.lex_state = 882}, - [4178] = {.lex_state = 882}, - [4179] = {.lex_state = 882}, - [4180] = {.lex_state = 882}, - [4181] = {.lex_state = 882}, - [4182] = {.lex_state = 882}, - [4183] = {.lex_state = 40}, - [4184] = {.lex_state = 23}, - [4185] = {.lex_state = 882}, - [4186] = {.lex_state = 882}, - [4187] = {.lex_state = 882}, - [4188] = {.lex_state = 882}, - [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 = 23}, - [4199] = {.lex_state = 882}, - [4200] = {.lex_state = 882}, - [4201] = {.lex_state = 23}, - [4202] = {.lex_state = 882}, - [4203] = {.lex_state = 882}, - [4204] = {.lex_state = 882}, + [4132] = {.lex_state = 886}, + [4133] = {.lex_state = 886}, + [4134] = {.lex_state = 23}, + [4135] = {.lex_state = 886}, + [4136] = {.lex_state = 886}, + [4137] = {.lex_state = 886}, + [4138] = {.lex_state = 886}, + [4139] = {.lex_state = 23}, + [4140] = {.lex_state = 23}, + [4141] = {.lex_state = 23}, + [4142] = {.lex_state = 886}, + [4143] = {.lex_state = 886}, + [4144] = {.lex_state = 886}, + [4145] = {.lex_state = 886}, + [4146] = {.lex_state = 111}, + [4147] = {.lex_state = 886}, + [4148] = {.lex_state = 23}, + [4149] = {.lex_state = 886}, + [4150] = {.lex_state = 886}, + [4151] = {.lex_state = 23}, + [4152] = {.lex_state = 886}, + [4153] = {.lex_state = 886}, + [4154] = {.lex_state = 886}, + [4155] = {.lex_state = 23}, + [4156] = {.lex_state = 886}, + [4157] = {.lex_state = 886}, + [4158] = {.lex_state = 23}, + [4159] = {.lex_state = 886}, + [4160] = {.lex_state = 886}, + [4161] = {.lex_state = 886}, + [4162] = {.lex_state = 886}, + [4163] = {.lex_state = 886}, + [4164] = {.lex_state = 886}, + [4165] = {.lex_state = 886}, + [4166] = {.lex_state = 886}, + [4167] = {.lex_state = 886}, + [4168] = {.lex_state = 886}, + [4169] = {.lex_state = 886}, + [4170] = {.lex_state = 886}, + [4171] = {.lex_state = 886}, + [4172] = {.lex_state = 886}, + [4173] = {.lex_state = 886}, + [4174] = {.lex_state = 886}, + [4175] = {.lex_state = 886}, + [4176] = {.lex_state = 886}, + [4177] = {.lex_state = 886}, + [4178] = {.lex_state = 886}, + [4179] = {.lex_state = 886}, + [4180] = {.lex_state = 111}, + [4181] = {.lex_state = 23}, + [4182] = {.lex_state = 886}, + [4183] = {.lex_state = 886}, + [4184] = {.lex_state = 886}, + [4185] = {.lex_state = 886}, + [4186] = {.lex_state = 886}, + [4187] = {.lex_state = 886}, + [4188] = {.lex_state = 23}, + [4189] = {.lex_state = 886}, + [4190] = {.lex_state = 886}, + [4191] = {.lex_state = 886}, + [4192] = {.lex_state = 23}, + [4193] = {.lex_state = 23}, + [4194] = {.lex_state = 886}, + [4195] = {.lex_state = 23}, + [4196] = {.lex_state = 23}, + [4197] = {.lex_state = 886}, + [4198] = {.lex_state = 886}, + [4199] = {.lex_state = 23}, + [4200] = {.lex_state = 886}, + [4201] = {.lex_state = 886}, + [4202] = {.lex_state = 886}, + [4203] = {.lex_state = 886}, + [4204] = {.lex_state = 886}, [4205] = {.lex_state = 23}, - [4206] = {.lex_state = 882}, - [4207] = {.lex_state = 882}, - [4208] = {.lex_state = 882}, + [4206] = {.lex_state = 23}, + [4207] = {.lex_state = 886}, + [4208] = {.lex_state = 886}, [4209] = {.lex_state = 23}, - [4210] = {.lex_state = 23}, - [4211] = {.lex_state = 882}, - [4212] = {.lex_state = 23}, - [4213] = {.lex_state = 882}, - [4214] = {.lex_state = 23}, - [4215] = {.lex_state = 882}, - [4216] = {.lex_state = 882}, - [4217] = {.lex_state = 882}, - [4218] = {.lex_state = 882}, + [4210] = {.lex_state = 886}, + [4211] = {.lex_state = 886}, + [4212] = {.lex_state = 886}, + [4213] = {.lex_state = 886}, + [4214] = {.lex_state = 40}, + [4215] = {.lex_state = 886}, + [4216] = {.lex_state = 886}, + [4217] = {.lex_state = 23}, + [4218] = {.lex_state = 886}, [4219] = {.lex_state = 40}, - [4220] = {.lex_state = 40}, - [4221] = {.lex_state = 882}, - [4222] = {.lex_state = 40}, - [4223] = {.lex_state = 882}, - [4224] = {.lex_state = 882}, - [4225] = {.lex_state = 882}, - [4226] = {.lex_state = 23}, - [4227] = {.lex_state = 882}, - [4228] = {.lex_state = 882}, + [4220] = {.lex_state = 23}, + [4221] = {.lex_state = 23}, + [4222] = {.lex_state = 23}, + [4223] = {.lex_state = 23}, + [4224] = {.lex_state = 886}, + [4225] = {.lex_state = 886}, + [4226] = {.lex_state = 886}, + [4227] = {.lex_state = 23}, + [4228] = {.lex_state = 23}, [4229] = {.lex_state = 23}, - [4230] = {.lex_state = 882}, - [4231] = {.lex_state = 882}, - [4232] = {.lex_state = 23}, - [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 = 882}, - [4246] = {.lex_state = 47}, - [4247] = {.lex_state = 882}, - [4248] = {.lex_state = 882}, - [4249] = {.lex_state = 882}, - [4250] = {.lex_state = 882}, - [4251] = {.lex_state = 882}, - [4252] = {.lex_state = 23}, - [4253] = {.lex_state = 882}, - [4254] = {.lex_state = 882}, - [4255] = {.lex_state = 882}, - [4256] = {.lex_state = 23}, - [4257] = {.lex_state = 882}, - [4258] = {.lex_state = 882}, - [4259] = {.lex_state = 882}, - [4260] = {.lex_state = 882}, - [4261] = {.lex_state = 23}, - [4262] = {.lex_state = 882}, - [4263] = {.lex_state = 882}, - [4264] = {.lex_state = 882}, - [4265] = {.lex_state = 23}, - [4266] = {.lex_state = 882}, - [4267] = {.lex_state = 882}, - [4268] = {.lex_state = 882}, - [4269] = {.lex_state = 882}, - [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 = 23}, - [4278] = {.lex_state = 23}, - [4279] = {.lex_state = 23}, - [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 = 23}, - [4288] = {.lex_state = 882}, - [4289] = {.lex_state = 882}, - [4290] = {.lex_state = 882}, - [4291] = {.lex_state = 882}, - [4292] = {.lex_state = 882}, - [4293] = {.lex_state = 882}, - [4294] = {.lex_state = 882}, - [4295] = {.lex_state = 23}, - [4296] = {.lex_state = 23}, - [4297] = {.lex_state = 882}, - [4298] = {.lex_state = 23}, - [4299] = {.lex_state = 882}, - [4300] = {.lex_state = 882}, - [4301] = {.lex_state = 23}, - [4302] = {.lex_state = 882}, - [4303] = {.lex_state = 882}, - [4304] = {.lex_state = 882}, - [4305] = {.lex_state = 23}, - [4306] = {.lex_state = 23}, - [4307] = {.lex_state = 23}, - [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}, + [4230] = {.lex_state = 23}, + [4231] = {.lex_state = 886}, + [4232] = {.lex_state = 886}, + [4233] = {.lex_state = 23}, + [4234] = {.lex_state = 23}, + [4235] = {.lex_state = 40}, + [4236] = {.lex_state = 40}, + [4237] = {.lex_state = 886}, + [4238] = {.lex_state = 886}, + [4239] = {.lex_state = 886}, + [4240] = {.lex_state = 886}, + [4241] = {.lex_state = 23}, + [4242] = {.lex_state = 886}, + [4243] = {.lex_state = 886}, + [4244] = {.lex_state = 23}, + [4245] = {.lex_state = 886}, + [4246] = {.lex_state = 886}, + [4247] = {.lex_state = 886}, + [4248] = {.lex_state = 886}, + [4249] = {.lex_state = 886}, + [4250] = {.lex_state = 886}, + [4251] = {.lex_state = 886}, + [4252] = {.lex_state = 886}, + [4253] = {.lex_state = 886}, + [4254] = {.lex_state = 886}, + [4255] = {.lex_state = 886}, + [4256] = {.lex_state = 886}, + [4257] = {.lex_state = 886}, + [4258] = {.lex_state = 886}, + [4259] = {.lex_state = 886}, + [4260] = {.lex_state = 886}, + [4261] = {.lex_state = 886}, + [4262] = {.lex_state = 47}, + [4263] = {.lex_state = 886}, + [4264] = {.lex_state = 23}, + [4265] = {.lex_state = 886}, + [4266] = {.lex_state = 886}, + [4267] = {.lex_state = 886}, + [4268] = {.lex_state = 886}, + [4269] = {.lex_state = 886}, + [4270] = {.lex_state = 886}, + [4271] = {.lex_state = 23}, + [4272] = {.lex_state = 886}, + [4273] = {.lex_state = 40}, + [4274] = {.lex_state = 886}, + [4275] = {.lex_state = 886}, + [4276] = {.lex_state = 886}, + [4277] = {.lex_state = 886}, + [4278] = {.lex_state = 886}, + [4279] = {.lex_state = 886}, + [4280] = {.lex_state = 886}, + [4281] = {.lex_state = 23}, + [4282] = {.lex_state = 886}, + [4283] = {.lex_state = 886}, + [4284] = {.lex_state = 886}, + [4285] = {.lex_state = 886}, + [4286] = {.lex_state = 886}, + [4287] = {.lex_state = 886}, + [4288] = {.lex_state = 886}, + [4289] = {.lex_state = 886}, + [4290] = {.lex_state = 886}, + [4291] = {.lex_state = 886}, + [4292] = {.lex_state = 886}, + [4293] = {.lex_state = 886}, + [4294] = {.lex_state = 886}, + [4295] = {.lex_state = 886}, + [4296] = {.lex_state = 886}, + [4297] = {.lex_state = 886}, + [4298] = {.lex_state = 886}, + [4299] = {.lex_state = 886}, + [4300] = {.lex_state = 886}, + [4301] = {.lex_state = 886}, + [4302] = {.lex_state = 886}, + [4303] = {.lex_state = 886}, + [4304] = {.lex_state = 886}, + [4305] = {.lex_state = 47}, + [4306] = {.lex_state = 886}, + [4307] = {.lex_state = 886}, + [4308] = {.lex_state = 886}, + [4309] = {.lex_state = 886}, + [4310] = {.lex_state = 886}, + [4311] = {.lex_state = 23}, + [4312] = {.lex_state = 886}, + [4313] = {.lex_state = 886}, + [4314] = {.lex_state = 886}, + [4315] = {.lex_state = 886}, + [4316] = {.lex_state = 886}, [4317] = {.lex_state = 23}, - [4318] = {.lex_state = 882}, - [4319] = {.lex_state = 882}, - [4320] = {.lex_state = 882}, + [4318] = {.lex_state = 23}, + [4319] = {.lex_state = 886}, + [4320] = {.lex_state = 886}, [4321] = {.lex_state = 23}, - [4322] = {.lex_state = 882}, + [4322] = {.lex_state = 886}, [4323] = {.lex_state = 23}, [4324] = {.lex_state = 23}, - [4325] = {.lex_state = 23}, - [4326] = {.lex_state = 882}, - [4327] = {.lex_state = 23}, - [4328] = {.lex_state = 882}, - [4329] = {.lex_state = 882}, - [4330] = {.lex_state = 23}, - [4331] = {.lex_state = 23}, - [4332] = {.lex_state = 882}, - [4333] = {.lex_state = 882}, + [4325] = {.lex_state = 886}, + [4326] = {.lex_state = 23}, + [4327] = {.lex_state = 886}, + [4328] = {.lex_state = 886}, + [4329] = {.lex_state = 40}, + [4330] = {.lex_state = 886}, + [4331] = {.lex_state = 886}, + [4332] = {.lex_state = 886}, + [4333] = {.lex_state = 886}, [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}, + [4335] = {.lex_state = 23}, + [4336] = {.lex_state = 886}, + [4337] = {.lex_state = 886}, + [4338] = {.lex_state = 886}, + [4339] = {.lex_state = 886}, + [4340] = {.lex_state = 40}, + [4341] = {.lex_state = 886}, [4342] = {.lex_state = 23}, - [4343] = {.lex_state = 882}, - [4344] = {.lex_state = 110}, - [4345] = {.lex_state = 882}, - [4346] = {.lex_state = 882}, - [4347] = {.lex_state = 882}, - [4348] = {.lex_state = 882}, - [4349] = {.lex_state = 47}, - [4350] = {.lex_state = 882}, - [4351] = {.lex_state = 882}, - [4352] = {.lex_state = 882}, - [4353] = {.lex_state = 882}, - [4354] = {.lex_state = 882}, - [4355] = {.lex_state = 882}, - [4356] = {.lex_state = 882}, - [4357] = {.lex_state = 47}, - [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 = 39}, - [4365] = {.lex_state = 23}, - [4366] = {.lex_state = 882}, - [4367] = {.lex_state = 23}, - [4368] = {.lex_state = 882}, - [4369] = {.lex_state = 882}, - [4370] = {.lex_state = 882}, - [4371] = {.lex_state = 882}, - [4372] = {.lex_state = 882}, + [4343] = {.lex_state = 886}, + [4344] = {.lex_state = 886}, + [4345] = {.lex_state = 886}, + [4346] = {.lex_state = 886}, + [4347] = {.lex_state = 886}, + [4348] = {.lex_state = 23}, + [4349] = {.lex_state = 23}, + [4350] = {.lex_state = 886}, + [4351] = {.lex_state = 886}, + [4352] = {.lex_state = 886}, + [4353] = {.lex_state = 886}, + [4354] = {.lex_state = 886}, + [4355] = {.lex_state = 886}, + [4356] = {.lex_state = 886}, + [4357] = {.lex_state = 886}, + [4358] = {.lex_state = 886}, + [4359] = {.lex_state = 886}, + [4360] = {.lex_state = 886}, + [4361] = {.lex_state = 886}, + [4362] = {.lex_state = 886}, + [4363] = {.lex_state = 886}, + [4364] = {.lex_state = 886}, + [4365] = {.lex_state = 886}, + [4366] = {.lex_state = 886}, + [4367] = {.lex_state = 886}, + [4368] = {.lex_state = 886}, + [4369] = {.lex_state = 23}, + [4370] = {.lex_state = 886}, + [4371] = {.lex_state = 886}, + [4372] = {.lex_state = 886}, [4373] = {.lex_state = 23}, - [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 = 882}, - [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 = 23}, - [4409] = {.lex_state = 882}, - [4410] = {.lex_state = 882}, - [4411] = {.lex_state = 882}, - [4412] = {.lex_state = 882}, - [4413] = {.lex_state = 882}, - [4414] = {.lex_state = 882}, - [4415] = {.lex_state = 40}, - [4416] = {.lex_state = 882}, - [4417] = {.lex_state = 40}, - [4418] = {.lex_state = 882}, - [4419] = {.lex_state = 882}, - [4420] = {.lex_state = 882}, - [4421] = {.lex_state = 882}, - [4422] = {.lex_state = 882}, + [4374] = {.lex_state = 886}, + [4375] = {.lex_state = 886}, + [4376] = {.lex_state = 23}, + [4377] = {.lex_state = 47}, + [4378] = {.lex_state = 886}, + [4379] = {.lex_state = 886}, + [4380] = {.lex_state = 886}, + [4381] = {.lex_state = 886}, + [4382] = {.lex_state = 886}, + [4383] = {.lex_state = 886}, + [4384] = {.lex_state = 23}, + [4385] = {.lex_state = 886}, + [4386] = {.lex_state = 886}, + [4387] = {.lex_state = 23}, + [4388] = {.lex_state = 886}, + [4389] = {.lex_state = 886}, + [4390] = {.lex_state = 886}, + [4391] = {.lex_state = 886}, + [4392] = {.lex_state = 886}, + [4393] = {.lex_state = 886}, + [4394] = {.lex_state = 886}, + [4395] = {.lex_state = 886}, + [4396] = {.lex_state = 886}, + [4397] = {.lex_state = 23}, + [4398] = {.lex_state = 886}, + [4399] = {.lex_state = 886}, + [4400] = {.lex_state = 886}, + [4401] = {.lex_state = 23}, + [4402] = {.lex_state = 886}, + [4403] = {.lex_state = 23}, + [4404] = {.lex_state = 23}, + [4405] = {.lex_state = 886}, + [4406] = {.lex_state = 23}, + [4407] = {.lex_state = 47}, + [4408] = {.lex_state = 886}, + [4409] = {.lex_state = 886}, + [4410] = {.lex_state = 886}, + [4411] = {.lex_state = 23}, + [4412] = {.lex_state = 886}, + [4413] = {.lex_state = 886}, + [4414] = {.lex_state = 23}, + [4415] = {.lex_state = 886}, + [4416] = {.lex_state = 886}, + [4417] = {.lex_state = 23}, + [4418] = {.lex_state = 23}, + [4419] = {.lex_state = 23}, + [4420] = {.lex_state = 23}, + [4421] = {.lex_state = 886}, + [4422] = {.lex_state = 886}, [4423] = {.lex_state = 23}, - [4424] = {.lex_state = 882}, + [4424] = {.lex_state = 886}, [4425] = {.lex_state = 23}, - [4426] = {.lex_state = 882}, - [4427] = {.lex_state = 882}, - [4428] = {.lex_state = 23}, - [4429] = {.lex_state = 882}, - [4430] = {.lex_state = 882}, - [4431] = {.lex_state = 882}, - [4432] = {.lex_state = 23}, - [4433] = {.lex_state = 882}, - [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 = 882}, - [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 = 47}, - [4450] = {.lex_state = 882}, + [4426] = {.lex_state = 886}, + [4427] = {.lex_state = 886}, + [4428] = {.lex_state = 886}, + [4429] = {.lex_state = 886}, + [4430] = {.lex_state = 886}, + [4431] = {.lex_state = 886}, + [4432] = {.lex_state = 886}, + [4433] = {.lex_state = 886}, + [4434] = {.lex_state = 886}, + [4435] = {.lex_state = 886}, + [4436] = {.lex_state = 886}, + [4437] = {.lex_state = 23}, + [4438] = {.lex_state = 23}, + [4439] = {.lex_state = 886}, + [4440] = {.lex_state = 23}, + [4441] = {.lex_state = 886}, + [4442] = {.lex_state = 112}, + [4443] = {.lex_state = 886}, + [4444] = {.lex_state = 886}, + [4445] = {.lex_state = 23}, + [4446] = {.lex_state = 886}, + [4447] = {.lex_state = 886}, + [4448] = {.lex_state = 886}, + [4449] = {.lex_state = 886}, + [4450] = {.lex_state = 886}, [4451] = {.lex_state = 23}, - [4452] = {.lex_state = 882}, - [4453] = {.lex_state = 882}, - [4454] = {.lex_state = 882}, - [4455] = {.lex_state = 882}, - [4456] = {.lex_state = 110}, - [4457] = {.lex_state = 882}, - [4458] = {.lex_state = 882}, - [4459] = {.lex_state = 882}, - [4460] = {.lex_state = 882}, - [4461] = {.lex_state = 23}, - [4462] = {.lex_state = 882}, - [4463] = {.lex_state = 882}, - [4464] = {.lex_state = 882}, - [4465] = {.lex_state = 882}, - [4466] = {.lex_state = 882}, - [4467] = {.lex_state = 882}, - [4468] = {.lex_state = 23}, - [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 = 882}, - [4476] = {.lex_state = 23}, - [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 = 23}, - [4486] = {.lex_state = 882}, - [4487] = {.lex_state = 882}, - [4488] = {.lex_state = 882}, - [4489] = {.lex_state = 23}, - [4490] = {.lex_state = 882}, - [4491] = {.lex_state = 882}, - [4492] = {.lex_state = 882}, - [4493] = {.lex_state = 882}, - [4494] = {.lex_state = 882}, - [4495] = {.lex_state = 882}, - [4496] = {.lex_state = 882}, - [4497] = {.lex_state = 23}, - [4498] = {.lex_state = 882}, - [4499] = {.lex_state = 882}, - [4500] = {.lex_state = 882}, - [4501] = {.lex_state = 882}, - [4502] = {.lex_state = 23}, - [4503] = {.lex_state = 23}, + [4452] = {.lex_state = 886}, + [4453] = {.lex_state = 886}, + [4454] = {.lex_state = 23}, + [4455] = {.lex_state = 886}, + [4456] = {.lex_state = 886}, + [4457] = {.lex_state = 886}, + [4458] = {.lex_state = 886}, + [4459] = {.lex_state = 886}, + [4460] = {.lex_state = 886}, + [4461] = {.lex_state = 886}, + [4462] = {.lex_state = 886}, + [4463] = {.lex_state = 886}, + [4464] = {.lex_state = 886}, + [4465] = {.lex_state = 886}, + [4466] = {.lex_state = 886}, + [4467] = {.lex_state = 886}, + [4468] = {.lex_state = 886}, + [4469] = {.lex_state = 886}, + [4470] = {.lex_state = 886}, + [4471] = {.lex_state = 886}, + [4472] = {.lex_state = 886}, + [4473] = {.lex_state = 886}, + [4474] = {.lex_state = 886}, + [4475] = {.lex_state = 886}, + [4476] = {.lex_state = 886}, + [4477] = {.lex_state = 886}, + [4478] = {.lex_state = 886}, + [4479] = {.lex_state = 886}, + [4480] = {.lex_state = 886}, + [4481] = {.lex_state = 886}, + [4482] = {.lex_state = 886}, + [4483] = {.lex_state = 886}, + [4484] = {.lex_state = 886}, + [4485] = {.lex_state = 886}, + [4486] = {.lex_state = 886}, + [4487] = {.lex_state = 886}, + [4488] = {.lex_state = 886}, + [4489] = {.lex_state = 886}, + [4490] = {.lex_state = 886}, + [4491] = {.lex_state = 886}, + [4492] = {.lex_state = 886}, + [4493] = {.lex_state = 886}, + [4494] = {.lex_state = 886}, + [4495] = {.lex_state = 886}, + [4496] = {.lex_state = 886}, + [4497] = {.lex_state = 886}, + [4498] = {.lex_state = 39}, + [4499] = {.lex_state = 40}, + [4500] = {.lex_state = 40}, + [4501] = {.lex_state = 886}, + [4502] = {.lex_state = 886}, + [4503] = {.lex_state = 886}, [4504] = {.lex_state = 23}, - [4505] = {.lex_state = 882}, + [4505] = {.lex_state = 886}, [4506] = {.lex_state = 23}, - [4507] = {.lex_state = 882}, - [4508] = {.lex_state = 23}, - [4509] = {.lex_state = 23}, - [4510] = {.lex_state = 882}, - [4511] = {.lex_state = 23}, - [4512] = {.lex_state = 882}, - [4513] = {.lex_state = 882}, - [4514] = {.lex_state = 23}, + [4507] = {.lex_state = 23}, + [4508] = {.lex_state = 886}, + [4509] = {.lex_state = 886}, + [4510] = {.lex_state = 886}, + [4511] = {.lex_state = 886}, + [4512] = {.lex_state = 886}, + [4513] = {.lex_state = 886}, + [4514] = {.lex_state = 47}, [4515] = {.lex_state = 23}, - [4516] = {.lex_state = 882}, - [4517] = {.lex_state = 882}, - [4518] = {.lex_state = 882}, - [4519] = {.lex_state = 882}, - [4520] = {.lex_state = 882}, - [4521] = {.lex_state = 882}, - [4522] = {.lex_state = 40}, - [4523] = {.lex_state = 882}, - [4524] = {.lex_state = 40}, - [4525] = {.lex_state = 40}, - [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 = 882}, - [4535] = {.lex_state = 40}, - [4536] = {.lex_state = 40}, - [4537] = {.lex_state = 882}, - [4538] = {.lex_state = 882}, - [4539] = {.lex_state = 882}, - [4540] = {.lex_state = 882}, - [4541] = {.lex_state = 882}, - [4542] = {.lex_state = 882}, - [4543] = {.lex_state = 882}, - [4544] = {.lex_state = 882}, - [4545] = {.lex_state = 882}, - [4546] = {.lex_state = 23}, - [4547] = {.lex_state = 23}, - [4548] = {.lex_state = 882}, - [4549] = {.lex_state = 882}, - [4550] = {.lex_state = 23}, - [4551] = {.lex_state = 23}, - [4552] = {.lex_state = 23}, - [4553] = {.lex_state = 47}, - [4554] = {.lex_state = 882}, - [4555] = {.lex_state = 882}, - [4556] = {.lex_state = 23}, - [4557] = {.lex_state = 23}, - [4558] = {.lex_state = 882}, - [4559] = {.lex_state = 882}, - [4560] = {.lex_state = 23}, - [4561] = {.lex_state = 882}, + [4516] = {.lex_state = 886}, + [4517] = {.lex_state = 886}, + [4518] = {.lex_state = 886}, + [4519] = {.lex_state = 886}, + [4520] = {.lex_state = 886}, + [4521] = {.lex_state = 886}, + [4522] = {.lex_state = 886}, + [4523] = {.lex_state = 886}, + [4524] = {.lex_state = 886}, + [4525] = {.lex_state = 886}, + [4526] = {.lex_state = 886}, + [4527] = {.lex_state = 886}, + [4528] = {.lex_state = 886}, + [4529] = {.lex_state = 886}, + [4530] = {.lex_state = 886}, + [4531] = {.lex_state = 886}, + [4532] = {.lex_state = 886}, + [4533] = {.lex_state = 886}, + [4534] = {.lex_state = 886}, + [4535] = {.lex_state = 886}, + [4536] = {.lex_state = 112}, + [4537] = {.lex_state = 886}, + [4538] = {.lex_state = 886}, + [4539] = {.lex_state = 886}, + [4540] = {.lex_state = 23}, + [4541] = {.lex_state = 886}, + [4542] = {.lex_state = 886}, + [4543] = {.lex_state = 886}, + [4544] = {.lex_state = 886}, + [4545] = {.lex_state = 886}, + [4546] = {.lex_state = 886}, + [4547] = {.lex_state = 886}, + [4548] = {.lex_state = 886}, + [4549] = {.lex_state = 886}, + [4550] = {.lex_state = 886}, + [4551] = {.lex_state = 886}, + [4552] = {.lex_state = 886}, + [4553] = {.lex_state = 23}, + [4554] = {.lex_state = 23}, + [4555] = {.lex_state = 886}, + [4556] = {.lex_state = 886}, + [4557] = {.lex_state = 886}, + [4558] = {.lex_state = 886}, + [4559] = {.lex_state = 886}, + [4560] = {.lex_state = 886}, + [4561] = {.lex_state = 886}, [4562] = {.lex_state = 23}, - [4563] = {.lex_state = 23}, - [4564] = {.lex_state = 882}, - [4565] = {.lex_state = 40}, - [4566] = {.lex_state = 40}, - [4567] = {.lex_state = 882}, - [4568] = {.lex_state = 882}, - [4569] = {.lex_state = 23}, - [4570] = {.lex_state = 882}, - [4571] = {.lex_state = 40}, - [4572] = {.lex_state = 882}, - [4573] = {.lex_state = 882}, - [4574] = {.lex_state = 40}, - [4575] = {.lex_state = 40}, - [4576] = {.lex_state = 882}, - [4577] = {.lex_state = 882}, - [4578] = {.lex_state = 40}, - [4579] = {.lex_state = 882}, - [4580] = {.lex_state = 23}, + [4563] = {.lex_state = 886}, + [4564] = {.lex_state = 886}, + [4565] = {.lex_state = 886}, + [4566] = {.lex_state = 886}, + [4567] = {.lex_state = 886}, + [4568] = {.lex_state = 886}, + [4569] = {.lex_state = 886}, + [4570] = {.lex_state = 886}, + [4571] = {.lex_state = 886}, + [4572] = {.lex_state = 886}, + [4573] = {.lex_state = 886}, + [4574] = {.lex_state = 886}, + [4575] = {.lex_state = 886}, + [4576] = {.lex_state = 886}, + [4577] = {.lex_state = 886}, + [4578] = {.lex_state = 886}, + [4579] = {.lex_state = 23}, + [4580] = {.lex_state = 886}, [4581] = {.lex_state = 23}, - [4582] = {.lex_state = 882}, - [4583] = {.lex_state = 23}, - [4584] = {.lex_state = 23}, + [4582] = {.lex_state = 886}, + [4583] = {.lex_state = 886}, + [4584] = {.lex_state = 886}, [4585] = {.lex_state = 23}, [4586] = {.lex_state = 23}, - [4587] = {.lex_state = 882}, - [4588] = {.lex_state = 882}, - [4589] = {.lex_state = 23}, + [4587] = {.lex_state = 886}, + [4588] = {.lex_state = 886}, + [4589] = {.lex_state = 886}, [4590] = {.lex_state = 23}, - [4591] = {.lex_state = 882}, - [4592] = {.lex_state = 882}, - [4593] = {.lex_state = 882}, - [4594] = {.lex_state = 882}, - [4595] = {.lex_state = 882}, - [4596] = {.lex_state = 23}, - [4597] = {.lex_state = 882}, - [4598] = {.lex_state = 40}, - [4599] = {.lex_state = 40}, - [4600] = {.lex_state = 882}, - [4601] = {.lex_state = 882}, - [4602] = {.lex_state = 882}, - [4603] = {.lex_state = 882}, - [4604] = {.lex_state = 23}, - [4605] = {.lex_state = 882}, - [4606] = {.lex_state = 882}, - [4607] = {.lex_state = 40}, + [4591] = {.lex_state = 23}, + [4592] = {.lex_state = 23}, + [4593] = {.lex_state = 886}, + [4594] = {.lex_state = 886}, + [4595] = {.lex_state = 23}, + [4596] = {.lex_state = 886}, + [4597] = {.lex_state = 886}, + [4598] = {.lex_state = 886}, + [4599] = {.lex_state = 886}, + [4600] = {.lex_state = 886}, + [4601] = {.lex_state = 40}, + [4602] = {.lex_state = 40}, + [4603] = {.lex_state = 886}, + [4604] = {.lex_state = 886}, + [4605] = {.lex_state = 40}, + [4606] = {.lex_state = 886}, + [4607] = {.lex_state = 886}, [4608] = {.lex_state = 40}, - [4609] = {.lex_state = 882}, - [4610] = {.lex_state = 882}, - [4611] = {.lex_state = 882}, - [4612] = {.lex_state = 23}, - [4613] = {.lex_state = 882}, - [4614] = {.lex_state = 882}, - [4615] = {.lex_state = 23}, - [4616] = {.lex_state = 23}, - [4617] = {.lex_state = 23}, - [4618] = {.lex_state = 882}, - [4619] = {.lex_state = 23}, - [4620] = {.lex_state = 882}, - [4621] = {.lex_state = 23}, - [4622] = {.lex_state = 23}, - [4623] = {.lex_state = 882}, - [4624] = {.lex_state = 882}, - [4625] = {.lex_state = 23}, - [4626] = {.lex_state = 882}, - [4627] = {.lex_state = 882}, - [4628] = {.lex_state = 882}, - [4629] = {.lex_state = 882}, - [4630] = {.lex_state = 40}, - [4631] = {.lex_state = 40}, - [4632] = {.lex_state = 882}, - [4633] = {.lex_state = 882}, - [4634] = {.lex_state = 882}, - [4635] = {.lex_state = 882}, - [4636] = {.lex_state = 882}, - [4637] = {.lex_state = 882}, - [4638] = {.lex_state = 882}, - [4639] = {.lex_state = 40}, - [4640] = {.lex_state = 40}, - [4641] = {.lex_state = 882}, + [4609] = {.lex_state = 886}, + [4610] = {.lex_state = 886}, + [4611] = {.lex_state = 886}, + [4612] = {.lex_state = 886}, + [4613] = {.lex_state = 886}, + [4614] = {.lex_state = 40}, + [4615] = {.lex_state = 40}, + [4616] = {.lex_state = 886}, + [4617] = {.lex_state = 886}, + [4618] = {.lex_state = 886}, + [4619] = {.lex_state = 886}, + [4620] = {.lex_state = 886}, + [4621] = {.lex_state = 886}, + [4622] = {.lex_state = 886}, + [4623] = {.lex_state = 886}, + [4624] = {.lex_state = 23}, + [4625] = {.lex_state = 886}, + [4626] = {.lex_state = 23}, + [4627] = {.lex_state = 886}, + [4628] = {.lex_state = 886}, + [4629] = {.lex_state = 23}, + [4630] = {.lex_state = 23}, + [4631] = {.lex_state = 886}, + [4632] = {.lex_state = 47}, + [4633] = {.lex_state = 886}, + [4634] = {.lex_state = 886}, + [4635] = {.lex_state = 23}, + [4636] = {.lex_state = 23}, + [4637] = {.lex_state = 886}, + [4638] = {.lex_state = 886}, + [4639] = {.lex_state = 886}, + [4640] = {.lex_state = 23}, + [4641] = {.lex_state = 886}, [4642] = {.lex_state = 23}, - [4643] = {.lex_state = 882}, - [4644] = {.lex_state = 23}, - [4645] = {.lex_state = 882}, - [4646] = {.lex_state = 882}, - [4647] = {.lex_state = 23}, - [4648] = {.lex_state = 882}, - [4649] = {.lex_state = 882}, - [4650] = {.lex_state = 51}, - [4651] = {.lex_state = 882}, - [4652] = {.lex_state = 882}, - [4653] = {.lex_state = 882}, - [4654] = {.lex_state = 882}, - [4655] = {.lex_state = 23}, - [4656] = {.lex_state = 23}, - [4657] = {.lex_state = 23}, - [4658] = {.lex_state = 882}, - [4659] = {.lex_state = 882}, - [4660] = {.lex_state = 882}, + [4643] = {.lex_state = 23}, + [4644] = {.lex_state = 886}, + [4645] = {.lex_state = 40}, + [4646] = {.lex_state = 40}, + [4647] = {.lex_state = 886}, + [4648] = {.lex_state = 886}, + [4649] = {.lex_state = 886}, + [4650] = {.lex_state = 23}, + [4651] = {.lex_state = 886}, + [4652] = {.lex_state = 40}, + [4653] = {.lex_state = 23}, + [4654] = {.lex_state = 23}, + [4655] = {.lex_state = 40}, + [4656] = {.lex_state = 40}, + [4657] = {.lex_state = 886}, + [4658] = {.lex_state = 886}, + [4659] = {.lex_state = 40}, + [4660] = {.lex_state = 886}, [4661] = {.lex_state = 23}, - [4662] = {.lex_state = 23}, - [4663] = {.lex_state = 23}, + [4662] = {.lex_state = 886}, + [4663] = {.lex_state = 886}, [4664] = {.lex_state = 23}, - [4665] = {.lex_state = 882}, - [4666] = {.lex_state = 882}, - [4667] = {.lex_state = 882}, - [4668] = {.lex_state = 882}, - [4669] = {.lex_state = 882}, + [4665] = {.lex_state = 23}, + [4666] = {.lex_state = 886}, + [4667] = {.lex_state = 23}, + [4668] = {.lex_state = 886}, + [4669] = {.lex_state = 886}, [4670] = {.lex_state = 23}, - [4671] = {.lex_state = 895}, - [4672] = {.lex_state = 882}, - [4673] = {.lex_state = 882}, - [4674] = {.lex_state = 882}, - [4675] = {.lex_state = 882}, - [4676] = {.lex_state = 882}, - [4677] = {.lex_state = 882}, - [4678] = {.lex_state = 882}, - [4679] = {.lex_state = 882}, - [4680] = {.lex_state = 882}, - [4681] = {.lex_state = 882}, - [4682] = {.lex_state = 882}, - [4683] = {.lex_state = 23}, - [4684] = {.lex_state = 23}, - [4685] = {.lex_state = 882}, - [4686] = {.lex_state = 23}, - [4687] = {.lex_state = 23}, - [4688] = {.lex_state = 23}, - [4689] = {.lex_state = 882}, - [4690] = {.lex_state = 23}, - [4691] = {.lex_state = 23}, - [4692] = {.lex_state = 882}, + [4671] = {.lex_state = 23}, + [4672] = {.lex_state = 886}, + [4673] = {.lex_state = 23}, + [4674] = {.lex_state = 886}, + [4675] = {.lex_state = 886}, + [4676] = {.lex_state = 23}, + [4677] = {.lex_state = 23}, + [4678] = {.lex_state = 886}, + [4679] = {.lex_state = 40}, + [4680] = {.lex_state = 40}, + [4681] = {.lex_state = 886}, + [4682] = {.lex_state = 886}, + [4683] = {.lex_state = 886}, + [4684] = {.lex_state = 886}, + [4685] = {.lex_state = 23}, + [4686] = {.lex_state = 886}, + [4687] = {.lex_state = 886}, + [4688] = {.lex_state = 40}, + [4689] = {.lex_state = 40}, + [4690] = {.lex_state = 886}, + [4691] = {.lex_state = 886}, + [4692] = {.lex_state = 23}, [4693] = {.lex_state = 23}, [4694] = {.lex_state = 23}, - [4695] = {.lex_state = 23}, - [4696] = {.lex_state = 882}, + [4695] = {.lex_state = 886}, + [4696] = {.lex_state = 23}, [4697] = {.lex_state = 23}, [4698] = {.lex_state = 23}, - [4699] = {.lex_state = 23}, - [4700] = {.lex_state = 23}, + [4699] = {.lex_state = 886}, + [4700] = {.lex_state = 886}, [4701] = {.lex_state = 23}, [4702] = {.lex_state = 23}, - [4703] = {.lex_state = 882}, - [4704] = {.lex_state = 882}, - [4705] = {.lex_state = 882}, - [4706] = {.lex_state = 882}, - [4707] = {.lex_state = 23}, - [4708] = {.lex_state = 23}, - [4709] = {.lex_state = 23}, - [4710] = {.lex_state = 882}, - [4711] = {.lex_state = 23}, - [4712] = {.lex_state = 882}, - [4713] = {.lex_state = 23}, - [4714] = {.lex_state = 23}, - [4715] = {.lex_state = 23}, - [4716] = {.lex_state = 882}, - [4717] = {.lex_state = 882}, - [4718] = {.lex_state = 882}, - [4719] = {.lex_state = 110}, - [4720] = {.lex_state = 882}, - [4721] = {.lex_state = 23}, - [4722] = {.lex_state = 23}, + [4703] = {.lex_state = 23}, + [4704] = {.lex_state = 886}, + [4705] = {.lex_state = 886}, + [4706] = {.lex_state = 886}, + [4707] = {.lex_state = 886}, + [4708] = {.lex_state = 886}, + [4709] = {.lex_state = 886}, + [4710] = {.lex_state = 23}, + [4711] = {.lex_state = 40}, + [4712] = {.lex_state = 40}, + [4713] = {.lex_state = 886}, + [4714] = {.lex_state = 886}, + [4715] = {.lex_state = 886}, + [4716] = {.lex_state = 886}, + [4717] = {.lex_state = 886}, + [4718] = {.lex_state = 886}, + [4719] = {.lex_state = 23}, + [4720] = {.lex_state = 40}, + [4721] = {.lex_state = 40}, + [4722] = {.lex_state = 886}, [4723] = {.lex_state = 23}, - [4724] = {.lex_state = 882}, - [4725] = {.lex_state = 882}, - [4726] = {.lex_state = 882}, - [4727] = {.lex_state = 23}, + [4724] = {.lex_state = 886}, + [4725] = {.lex_state = 23}, + [4726] = {.lex_state = 23}, + [4727] = {.lex_state = 886}, [4728] = {.lex_state = 23}, - [4729] = {.lex_state = 23}, - [4730] = {.lex_state = 882}, - [4731] = {.lex_state = 882}, - [4732] = {.lex_state = 882}, - [4733] = {.lex_state = 882}, - [4734] = {.lex_state = 882}, - [4735] = {.lex_state = 882}, - [4736] = {.lex_state = 882}, - [4737] = {.lex_state = 882}, - [4738] = {.lex_state = 882}, - [4739] = {.lex_state = 23}, - [4740] = {.lex_state = 23}, - [4741] = {.lex_state = 882}, - [4742] = {.lex_state = 882}, + [4729] = {.lex_state = 886}, + [4730] = {.lex_state = 886}, + [4731] = {.lex_state = 51}, + [4732] = {.lex_state = 886}, + [4733] = {.lex_state = 886}, + [4734] = {.lex_state = 886}, + [4735] = {.lex_state = 886}, + [4736] = {.lex_state = 23}, + [4737] = {.lex_state = 23}, + [4738] = {.lex_state = 23}, + [4739] = {.lex_state = 886}, + [4740] = {.lex_state = 886}, + [4741] = {.lex_state = 886}, + [4742] = {.lex_state = 23}, [4743] = {.lex_state = 23}, [4744] = {.lex_state = 23}, - [4745] = {.lex_state = 882}, - [4746] = {(TSStateId)(-1)}, - [4747] = {(TSStateId)(-1)}, - [4748] = {(TSStateId)(-1)}, - [4749] = {(TSStateId)(-1)}, - [4750] = {(TSStateId)(-1)}, + [4745] = {.lex_state = 23}, + [4746] = {.lex_state = 886}, + [4747] = {.lex_state = 886}, + [4748] = {.lex_state = 886}, + [4749] = {.lex_state = 886}, + [4750] = {.lex_state = 886}, + [4751] = {.lex_state = 23}, + [4752] = {.lex_state = 886}, + [4753] = {.lex_state = 899}, + [4754] = {.lex_state = 886}, + [4755] = {.lex_state = 886}, + [4756] = {.lex_state = 886}, + [4757] = {.lex_state = 886}, + [4758] = {.lex_state = 886}, + [4759] = {.lex_state = 886}, + [4760] = {.lex_state = 886}, + [4761] = {.lex_state = 886}, + [4762] = {.lex_state = 886}, + [4763] = {.lex_state = 886}, + [4764] = {.lex_state = 23}, + [4765] = {.lex_state = 23}, + [4766] = {.lex_state = 886}, + [4767] = {.lex_state = 23}, + [4768] = {.lex_state = 23}, + [4769] = {.lex_state = 23}, + [4770] = {.lex_state = 886}, + [4771] = {.lex_state = 23}, + [4772] = {.lex_state = 23}, + [4773] = {.lex_state = 886}, + [4774] = {.lex_state = 23}, + [4775] = {.lex_state = 23}, + [4776] = {.lex_state = 23}, + [4777] = {.lex_state = 886}, + [4778] = {.lex_state = 23}, + [4779] = {.lex_state = 47}, + [4780] = {.lex_state = 23}, + [4781] = {.lex_state = 23}, + [4782] = {.lex_state = 23}, + [4783] = {.lex_state = 23}, + [4784] = {.lex_state = 886}, + [4785] = {.lex_state = 886}, + [4786] = {.lex_state = 886}, + [4787] = {.lex_state = 886}, + [4788] = {.lex_state = 23}, + [4789] = {.lex_state = 23}, + [4790] = {.lex_state = 23}, + [4791] = {.lex_state = 886}, + [4792] = {.lex_state = 23}, + [4793] = {.lex_state = 886}, + [4794] = {.lex_state = 23}, + [4795] = {.lex_state = 23}, + [4796] = {.lex_state = 23}, + [4797] = {.lex_state = 886}, + [4798] = {.lex_state = 886}, + [4799] = {.lex_state = 886}, + [4800] = {.lex_state = 112}, + [4801] = {.lex_state = 886}, + [4802] = {.lex_state = 23}, + [4803] = {.lex_state = 23}, + [4804] = {.lex_state = 23}, + [4805] = {.lex_state = 886}, + [4806] = {.lex_state = 886}, + [4807] = {.lex_state = 886}, + [4808] = {.lex_state = 23}, + [4809] = {.lex_state = 23}, + [4810] = {.lex_state = 23}, + [4811] = {.lex_state = 23}, + [4812] = {.lex_state = 886}, + [4813] = {.lex_state = 886}, + [4814] = {.lex_state = 886}, + [4815] = {.lex_state = 886}, + [4816] = {.lex_state = 886}, + [4817] = {.lex_state = 886}, + [4818] = {.lex_state = 886}, + [4819] = {.lex_state = 886}, + [4820] = {.lex_state = 23}, + [4821] = {.lex_state = 23}, + [4822] = {.lex_state = 886}, + [4823] = {.lex_state = 886}, + [4824] = {.lex_state = 23}, + [4825] = {.lex_state = 23}, + [4826] = {.lex_state = 886}, + [4827] = {(TSStateId)(-1)}, + [4828] = {(TSStateId)(-1)}, + [4829] = {(TSStateId)(-1)}, + [4830] = {(TSStateId)(-1)}, + [4831] = {(TSStateId)(-1)}, }; enum { @@ -26440,12 +26716,12 @@ static const bool ts_external_scanner_states[8][EXTERNAL_TOKEN_COUNT] = { [ts_external_token__and_operator] = true, }, [2] = { - [ts_external_token__namecolon] = true, + [ts_external_token__namedot] = true, [ts_external_token__or_operator] = true, [ts_external_token__and_operator] = true, }, [3] = { - [ts_external_token__namedot] = true, + [ts_external_token__namecolon] = true, [ts_external_token__or_operator] = true, [ts_external_token__and_operator] = true, }, @@ -26566,6 +26842,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_else_if_statement_token1] = ACTIONS(1), [anon_sym_COLON] = ACTIONS(1), [aux_sym_while_phrase_token1] = ACTIONS(1), + [aux_sym_repeat_tuning_token1] = ACTIONS(1), [aux_sym_repeat_statement_token1] = ACTIONS(1), [aux_sym__procedure_terminator_token1] = ACTIONS(1), [aux_sym_procedure_parameter_definition_token1] = ACTIONS(1), @@ -26682,49 +26959,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__and_operator] = ACTIONS(1), }, [1] = { - [sym_source_code] = STATE(4735), + [sym_source_code] = STATE(4816), [sym_comment] = STATE(1), - [sym_qualified_name] = STATE(4733), + [sym_qualified_name] = STATE(4814), [sym_include] = STATE(1), - [sym_assignment] = STATE(4732), - [sym_variable_definition] = STATE(1163), - [sym_variable_assignment] = STATE(1163), - [sym_buffer_definition] = STATE(1163), - [sym_query_definition] = STATE(1163), - [sym_function_call_statement] = STATE(1163), - [sym_function_call] = STATE(4731), - [sym_if_statement] = STATE(1163), - [sym_label] = STATE(1167), - [sym_repeat_statement] = STATE(1163), - [sym_procedure_statement] = STATE(1163), - [sym_procedure_parameter_definition] = STATE(1163), - [sym_function_statement] = STATE(1163), - [sym_return_statement] = STATE(1163), - [sym_interface_statement] = STATE(1163), - [sym_using_statement] = STATE(1163), - [sym_class_statement] = STATE(1163), - [sym_object_access] = STATE(3567), - [sym_stream_definition] = STATE(1163), - [sym_input_close_statement] = STATE(1163), - [sym_output_close_statement] = STATE(1163), - [sym__stream_statement] = STATE(1163), - [sym_input_stream_statement] = STATE(1169), - [sym_output_stream_statement] = STATE(1169), - [sym_do_block] = STATE(1163), - [sym_case_statement] = STATE(1163), - [sym_for_statement] = STATE(1163), - [sym_find_statement] = STATE(1163), - [sym_abl_statement] = STATE(1163), - [sym_assign_statement] = STATE(1163), - [sym_catch_statement] = STATE(1163), - [sym_finally_statement] = STATE(1163), - [sym_accumulate_statement] = STATE(1163), - [sym_undo_statement] = STATE(1163), - [sym_error_scope_statement] = STATE(1163), - [sym_temp_table_definition] = STATE(1163), - [sym_on_statement] = STATE(1163), - [sym__statement] = STATE(1170), - [aux_sym_source_code_repeat1] = STATE(267), + [sym_assignment] = STATE(4813), + [sym_variable_definition] = STATE(1217), + [sym_variable_assignment] = STATE(1217), + [sym_buffer_definition] = STATE(1217), + [sym_query_definition] = STATE(1217), + [sym_function_call_statement] = STATE(1217), + [sym_function_call] = STATE(4812), + [sym_if_statement] = STATE(1217), + [sym_label] = STATE(1230), + [sym_repeat_statement] = STATE(1217), + [sym_procedure_statement] = STATE(1217), + [sym_procedure_parameter_definition] = STATE(1217), + [sym_function_statement] = STATE(1217), + [sym_return_statement] = STATE(1217), + [sym_interface_statement] = STATE(1217), + [sym_using_statement] = STATE(1217), + [sym_class_statement] = STATE(1217), + [sym_object_access] = STATE(3661), + [sym_stream_definition] = STATE(1217), + [sym_input_close_statement] = STATE(1217), + [sym_output_close_statement] = STATE(1217), + [sym__stream_statement] = STATE(1217), + [sym_input_stream_statement] = STATE(1348), + [sym_output_stream_statement] = STATE(1348), + [sym_do_block] = STATE(1217), + [sym_case_statement] = STATE(1217), + [sym_for_statement] = STATE(1217), + [sym_find_statement] = STATE(1217), + [sym_abl_statement] = STATE(1217), + [sym_assign_statement] = STATE(1217), + [sym_catch_statement] = STATE(1217), + [sym_finally_statement] = STATE(1217), + [sym_accumulate_statement] = STATE(1217), + [sym_undo_statement] = STATE(1217), + [sym_error_scope_statement] = STATE(1217), + [sym_temp_table_definition] = STATE(1217), + [sym_on_statement] = STATE(1217), + [sym__statement] = STATE(1350), + [aux_sym_source_code_repeat1] = STATE(270), [ts_builtin_sym_end] = ACTIONS(9), [sym_identifier] = ACTIONS(11), [anon_sym_SLASH_SLASH] = ACTIONS(3), @@ -26758,8 +27035,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(7), - [aux_sym_object_access_repeat1] = STATE(4), + [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), @@ -26797,6 +27074,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_else_if_statement_token1] = ACTIONS(67), [anon_sym_COLON] = ACTIONS(67), [aux_sym_while_phrase_token1] = ACTIONS(67), + [aux_sym_repeat_tuning_token1] = ACTIONS(67), [aux_sym_property_tuning_token1] = ACTIONS(67), [aux_sym_event_definition_token1] = ACTIONS(67), [aux_sym_using_statement_token1] = ACTIONS(67), @@ -26841,8 +27119,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(7), - [aux_sym_object_access_repeat1] = STATE(4), + [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), @@ -26880,6 +27158,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_else_if_statement_token1] = ACTIONS(77), [anon_sym_COLON] = ACTIONS(77), [aux_sym_while_phrase_token1] = ACTIONS(77), + [aux_sym_repeat_tuning_token1] = ACTIONS(77), [aux_sym_property_tuning_token1] = ACTIONS(77), [aux_sym_event_definition_token1] = ACTIONS(77), [aux_sym_using_statement_token1] = ACTIONS(77), @@ -26924,7 +27203,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [4] = { [sym_comment] = STATE(4), [sym_include] = STATE(4), - [aux_sym_object_access_repeat1] = STATE(8), + [aux_sym_qualified_name_repeat1] = STATE(8), [anon_sym_SLASH_SLASH] = ACTIONS(59), [anon_sym_SLASH_STAR] = ACTIONS(61), [anon_sym_SLASH] = ACTIONS(79), @@ -26962,6 +27241,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_else_if_statement_token1] = ACTIONS(81), [anon_sym_COLON] = ACTIONS(81), [aux_sym_while_phrase_token1] = ACTIONS(81), + [aux_sym_repeat_tuning_token1] = ACTIONS(81), [aux_sym_property_tuning_token1] = ACTIONS(81), [aux_sym_event_definition_token1] = ACTIONS(81), [aux_sym_using_statement_token1] = ACTIONS(81), @@ -26998,14 +27278,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_field_definition_token1] = ACTIONS(81), [aux_sym_index_definition_token1] = ACTIONS(81), [aux_sym_on_statement_token1] = ACTIONS(81), - [sym__namecolon] = ACTIONS(73), + [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(7), + [aux_sym_qualified_name_repeat1] = STATE(4), [anon_sym_SLASH_SLASH] = ACTIONS(59), [anon_sym_SLASH_STAR] = ACTIONS(61), [anon_sym_SLASH] = ACTIONS(83), @@ -27043,6 +27323,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_else_if_statement_token1] = ACTIONS(85), [anon_sym_COLON] = ACTIONS(85), [aux_sym_while_phrase_token1] = ACTIONS(85), + [aux_sym_repeat_tuning_token1] = ACTIONS(85), [aux_sym_property_tuning_token1] = ACTIONS(85), [aux_sym_event_definition_token1] = ACTIONS(85), [aux_sym_using_statement_token1] = ACTIONS(85), @@ -27086,7 +27367,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [6] = { [sym_comment] = STATE(6), [sym_include] = STATE(6), - [aux_sym_qualified_name_repeat1] = STATE(7), + [aux_sym_qualified_name_repeat1] = STATE(4), [anon_sym_SLASH_SLASH] = ACTIONS(59), [anon_sym_SLASH_STAR] = ACTIONS(61), [anon_sym_SLASH] = ACTIONS(87), @@ -27124,6 +27405,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_else_if_statement_token1] = ACTIONS(89), [anon_sym_COLON] = ACTIONS(89), [aux_sym_while_phrase_token1] = ACTIONS(89), + [aux_sym_repeat_tuning_token1] = ACTIONS(89), [aux_sym_property_tuning_token1] = ACTIONS(89), [aux_sym_event_definition_token1] = ACTIONS(89), [aux_sym_using_statement_token1] = ACTIONS(89), @@ -27167,7 +27449,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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(91), @@ -27205,6 +27487,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_else_if_statement_token1] = ACTIONS(93), [anon_sym_COLON] = ACTIONS(93), [aux_sym_while_phrase_token1] = ACTIONS(93), + [aux_sym_repeat_tuning_token1] = ACTIONS(93), [aux_sym_property_tuning_token1] = ACTIONS(93), [aux_sym_event_definition_token1] = ACTIONS(93), [aux_sym_using_statement_token1] = ACTIONS(93), @@ -27241,171 +27524,173 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_field_definition_token1] = ACTIONS(93), [aux_sym_index_definition_token1] = ACTIONS(93), [aux_sym_on_statement_token1] = ACTIONS(93), - [sym__namedot] = ACTIONS(71), + [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(8), + [aux_sym_qualified_name_repeat1] = STATE(8), [anon_sym_SLASH_SLASH] = ACTIONS(59), [anon_sym_SLASH_STAR] = ACTIONS(61), - [anon_sym_SLASH] = ACTIONS(95), + [anon_sym_SLASH] = ACTIONS(98), [anon_sym_LBRACE] = ACTIONS(65), - [anon_sym_STAR] = ACTIONS(97), - [sym__terminator] = ACTIONS(97), - [anon_sym_LPAREN] = ACTIONS(97), - [anon_sym_RPAREN] = ACTIONS(97), - [anon_sym_PLUS] = ACTIONS(97), - [anon_sym_DASH] = ACTIONS(97), - [anon_sym_LT] = ACTIONS(95), - [anon_sym_LT_EQ] = ACTIONS(97), - [anon_sym_LT_GT] = ACTIONS(97), - [anon_sym_EQ] = ACTIONS(97), - [anon_sym_GT] = ACTIONS(95), - [anon_sym_GT_EQ] = ACTIONS(97), - [aux_sym__comparison_operator_token1] = ACTIONS(97), - [aux_sym__comparison_operator_token2] = ACTIONS(97), - [aux_sym__comparison_operator_token3] = ACTIONS(97), - [aux_sym__comparison_operator_token4] = ACTIONS(97), - [aux_sym__comparison_operator_token5] = ACTIONS(97), - [aux_sym__comparison_operator_token6] = ACTIONS(97), - [aux_sym__comparison_operator_token7] = ACTIONS(97), - [aux_sym__comparison_operator_token8] = ACTIONS(97), - [aux_sym__comparison_operator_token9] = ACTIONS(97), - [aux_sym_variable_tuning_token1] = ACTIONS(97), - [aux_sym_variable_tuning_token2] = ACTIONS(97), - [aux_sym_variable_tuning_token3] = ACTIONS(97), - [aux_sym_variable_tuning_token4] = ACTIONS(97), - [aux_sym_variable_tuning_token5] = ACTIONS(97), - [aux_sym_variable_tuning_token6] = ACTIONS(97), - [anon_sym_COMMA] = ACTIONS(97), - [aux_sym_function_call_token1] = ACTIONS(97), - [aux_sym_if_statement_token2] = ACTIONS(97), - [aux_sym_else_if_statement_token1] = ACTIONS(97), - [anon_sym_COLON] = ACTIONS(97), - [aux_sym_while_phrase_token1] = ACTIONS(97), - [aux_sym_property_tuning_token1] = ACTIONS(97), - [aux_sym_event_definition_token1] = ACTIONS(97), - [aux_sym_using_statement_token1] = ACTIONS(97), - [aux_sym_input_stream_tuning_token1] = ACTIONS(97), - [aux_sym_input_stream_tuning_token2] = ACTIONS(97), - [aux_sym_input_stream_tuning_token3] = ACTIONS(97), - [aux_sym_input_stream_tuning_token4] = ACTIONS(97), - [aux_sym_input_stream_tuning_token5] = ACTIONS(97), - [aux_sym_input_stream_tuning_token6] = ACTIONS(97), - [aux_sym_input_stream_tuning_token7] = ACTIONS(97), - [aux_sym_input_stream_tuning_token8] = ACTIONS(97), - [aux_sym_input_stream_tuning_token9] = ACTIONS(97), - [aux_sym_input_stream_tuning_token11] = ACTIONS(97), - [aux_sym_output_stream_tuning_token1] = ACTIONS(97), - [aux_sym_output_stream_tuning_token2] = ACTIONS(97), - [aux_sym_output_stream_tuning_token3] = ACTIONS(97), - [aux_sym_output_stream_tuning_token4] = ACTIONS(97), - [aux_sym_output_stream_tuning_token5] = ACTIONS(97), - [aux_sym_output_stream_tuning_token6] = ACTIONS(97), - [aux_sym_output_stream_tuning_token7] = ACTIONS(97), - [aux_sym_output_stream_tuning_token8] = ACTIONS(97), - [aux_sym_output_stream_statement_token1] = ACTIONS(97), - [aux_sym_on_error_phrase_token1] = ACTIONS(97), - [aux_sym_stop_after_phrase_token1] = ACTIONS(97), - [aux_sym_do_tuning_token1] = ACTIONS(97), - [anon_sym_BY] = ACTIONS(97), - [aux_sym_where_clause_token1] = ACTIONS(97), - [aux_sym_query_tuning_token1] = ACTIONS(97), - [aux_sym_query_tuning_token2] = ACTIONS(97), - [aux_sym_query_tuning_token3] = ACTIONS(97), - [aux_sym_query_tuning_token4] = ACTIONS(97), - [aux_sym_query_tuning_token5] = ACTIONS(97), - [aux_sym_of_token1] = ACTIONS(97), - [aux_sym_field_definition_token1] = ACTIONS(97), - [aux_sym_index_definition_token1] = ACTIONS(97), - [aux_sym_on_statement_token1] = ACTIONS(97), - [sym__namecolon] = ACTIONS(99), - [sym__or_operator] = ACTIONS(97), - [sym__and_operator] = ACTIONS(97), + [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_repeat_tuning_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(9), + [aux_sym_object_access_repeat1] = STATE(7), [anon_sym_SLASH_SLASH] = ACTIONS(59), [anon_sym_SLASH_STAR] = ACTIONS(61), - [anon_sym_SLASH] = ACTIONS(102), + [anon_sym_SLASH] = ACTIONS(105), [anon_sym_LBRACE] = ACTIONS(65), - [anon_sym_STAR] = ACTIONS(104), - [sym__terminator] = ACTIONS(104), - [anon_sym_LPAREN] = ACTIONS(104), - [anon_sym_RPAREN] = ACTIONS(104), - [anon_sym_PLUS] = ACTIONS(104), - [anon_sym_DASH] = ACTIONS(104), - [anon_sym_LT] = ACTIONS(102), - [anon_sym_LT_EQ] = ACTIONS(104), - [anon_sym_LT_GT] = ACTIONS(104), - [anon_sym_EQ] = ACTIONS(104), - [anon_sym_GT] = ACTIONS(102), - [anon_sym_GT_EQ] = ACTIONS(104), - [aux_sym__comparison_operator_token1] = ACTIONS(104), - [aux_sym__comparison_operator_token2] = ACTIONS(104), - [aux_sym__comparison_operator_token3] = ACTIONS(104), - [aux_sym__comparison_operator_token4] = ACTIONS(104), - [aux_sym__comparison_operator_token5] = ACTIONS(104), - [aux_sym__comparison_operator_token6] = ACTIONS(104), - [aux_sym__comparison_operator_token7] = ACTIONS(104), - [aux_sym__comparison_operator_token8] = ACTIONS(104), - [aux_sym__comparison_operator_token9] = ACTIONS(104), - [aux_sym_variable_tuning_token1] = ACTIONS(104), - [aux_sym_variable_tuning_token2] = ACTIONS(104), - [aux_sym_variable_tuning_token3] = ACTIONS(104), - [aux_sym_variable_tuning_token4] = ACTIONS(104), - [aux_sym_variable_tuning_token5] = ACTIONS(104), - [aux_sym_variable_tuning_token6] = ACTIONS(104), - [anon_sym_COMMA] = ACTIONS(104), - [aux_sym_function_call_token1] = ACTIONS(104), - [aux_sym_if_statement_token2] = ACTIONS(104), - [aux_sym_else_if_statement_token1] = ACTIONS(104), - [anon_sym_COLON] = ACTIONS(104), - [aux_sym_while_phrase_token1] = ACTIONS(104), - [aux_sym_property_tuning_token1] = ACTIONS(104), - [aux_sym_event_definition_token1] = ACTIONS(104), - [aux_sym_using_statement_token1] = ACTIONS(104), - [aux_sym_input_stream_tuning_token1] = ACTIONS(104), - [aux_sym_input_stream_tuning_token2] = ACTIONS(104), - [aux_sym_input_stream_tuning_token3] = ACTIONS(104), - [aux_sym_input_stream_tuning_token4] = ACTIONS(104), - [aux_sym_input_stream_tuning_token5] = ACTIONS(104), - [aux_sym_input_stream_tuning_token6] = ACTIONS(104), - [aux_sym_input_stream_tuning_token7] = ACTIONS(104), - [aux_sym_input_stream_tuning_token8] = ACTIONS(104), - [aux_sym_input_stream_tuning_token9] = ACTIONS(104), - [aux_sym_input_stream_tuning_token11] = ACTIONS(104), - [aux_sym_output_stream_tuning_token1] = ACTIONS(104), - [aux_sym_output_stream_tuning_token2] = ACTIONS(104), - [aux_sym_output_stream_tuning_token3] = ACTIONS(104), - [aux_sym_output_stream_tuning_token4] = ACTIONS(104), - [aux_sym_output_stream_tuning_token5] = ACTIONS(104), - [aux_sym_output_stream_tuning_token6] = ACTIONS(104), - [aux_sym_output_stream_tuning_token7] = ACTIONS(104), - [aux_sym_output_stream_tuning_token8] = ACTIONS(104), - [aux_sym_output_stream_statement_token1] = ACTIONS(104), - [aux_sym_on_error_phrase_token1] = ACTIONS(104), - [aux_sym_stop_after_phrase_token1] = ACTIONS(104), - [aux_sym_do_tuning_token1] = ACTIONS(104), - [anon_sym_BY] = ACTIONS(104), - [aux_sym_where_clause_token1] = ACTIONS(104), - [aux_sym_query_tuning_token1] = ACTIONS(104), - [aux_sym_query_tuning_token2] = ACTIONS(104), - [aux_sym_query_tuning_token3] = ACTIONS(104), - [aux_sym_query_tuning_token4] = ACTIONS(104), - [aux_sym_query_tuning_token5] = ACTIONS(104), - [aux_sym_of_token1] = ACTIONS(104), - [aux_sym_field_definition_token1] = ACTIONS(104), - [aux_sym_index_definition_token1] = ACTIONS(104), - [aux_sym_on_statement_token1] = ACTIONS(104), - [sym__namedot] = ACTIONS(106), - [sym__or_operator] = ACTIONS(104), - [sym__and_operator] = ACTIONS(104), + [anon_sym_STAR] = ACTIONS(107), + [sym__terminator] = ACTIONS(107), + [anon_sym_LPAREN] = ACTIONS(107), + [anon_sym_RPAREN] = ACTIONS(107), + [anon_sym_PLUS] = ACTIONS(107), + [anon_sym_DASH] = ACTIONS(107), + [anon_sym_LT] = ACTIONS(105), + [anon_sym_LT_EQ] = ACTIONS(107), + [anon_sym_LT_GT] = ACTIONS(107), + [anon_sym_EQ] = ACTIONS(107), + [anon_sym_GT] = ACTIONS(105), + [anon_sym_GT_EQ] = ACTIONS(107), + [aux_sym__comparison_operator_token1] = ACTIONS(107), + [aux_sym__comparison_operator_token2] = ACTIONS(107), + [aux_sym__comparison_operator_token3] = ACTIONS(107), + [aux_sym__comparison_operator_token4] = ACTIONS(107), + [aux_sym__comparison_operator_token5] = ACTIONS(107), + [aux_sym__comparison_operator_token6] = ACTIONS(107), + [aux_sym__comparison_operator_token7] = ACTIONS(107), + [aux_sym__comparison_operator_token8] = ACTIONS(107), + [aux_sym__comparison_operator_token9] = ACTIONS(107), + [aux_sym_variable_tuning_token1] = ACTIONS(107), + [aux_sym_variable_tuning_token2] = ACTIONS(107), + [aux_sym_variable_tuning_token3] = ACTIONS(107), + [aux_sym_variable_tuning_token4] = ACTIONS(107), + [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), + [aux_sym_while_phrase_token1] = ACTIONS(107), + [aux_sym_repeat_tuning_token1] = ACTIONS(107), + [aux_sym_property_tuning_token1] = ACTIONS(107), + [aux_sym_event_definition_token1] = ACTIONS(107), + [aux_sym_using_statement_token1] = ACTIONS(107), + [aux_sym_input_stream_tuning_token1] = ACTIONS(107), + [aux_sym_input_stream_tuning_token2] = ACTIONS(107), + [aux_sym_input_stream_tuning_token3] = ACTIONS(107), + [aux_sym_input_stream_tuning_token4] = ACTIONS(107), + [aux_sym_input_stream_tuning_token5] = ACTIONS(107), + [aux_sym_input_stream_tuning_token6] = ACTIONS(107), + [aux_sym_input_stream_tuning_token7] = ACTIONS(107), + [aux_sym_input_stream_tuning_token8] = ACTIONS(107), + [aux_sym_input_stream_tuning_token9] = ACTIONS(107), + [aux_sym_input_stream_tuning_token11] = ACTIONS(107), + [aux_sym_output_stream_tuning_token1] = ACTIONS(107), + [aux_sym_output_stream_tuning_token2] = ACTIONS(107), + [aux_sym_output_stream_tuning_token3] = ACTIONS(107), + [aux_sym_output_stream_tuning_token4] = ACTIONS(107), + [aux_sym_output_stream_tuning_token5] = ACTIONS(107), + [aux_sym_output_stream_tuning_token6] = ACTIONS(107), + [aux_sym_output_stream_tuning_token7] = ACTIONS(107), + [aux_sym_output_stream_tuning_token8] = ACTIONS(107), + [aux_sym_output_stream_statement_token1] = ACTIONS(107), + [aux_sym_on_error_phrase_token1] = ACTIONS(107), + [aux_sym_stop_after_phrase_token1] = ACTIONS(107), + [aux_sym_do_tuning_token1] = ACTIONS(107), + [anon_sym_BY] = ACTIONS(107), + [aux_sym_where_clause_token1] = ACTIONS(107), + [aux_sym_query_tuning_token1] = ACTIONS(107), + [aux_sym_query_tuning_token2] = ACTIONS(107), + [aux_sym_query_tuning_token3] = ACTIONS(107), + [aux_sym_query_tuning_token4] = ACTIONS(107), + [aux_sym_query_tuning_token5] = 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__namecolon] = ACTIONS(73), + [sym__or_operator] = ACTIONS(107), + [sym__and_operator] = ACTIONS(107), }, [10] = { [sym_comment] = STATE(10), @@ -27447,6 +27732,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_else_if_statement_token1] = ACTIONS(111), [anon_sym_COLON] = ACTIONS(111), [aux_sym_while_phrase_token1] = ACTIONS(111), + [aux_sym_repeat_tuning_token1] = ACTIONS(111), [aux_sym_property_tuning_token1] = ACTIONS(111), [aux_sym_event_definition_token1] = ACTIONS(111), [aux_sym_using_statement_token1] = ACTIONS(111), @@ -27527,6 +27813,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_else_if_statement_token1] = ACTIONS(117), [anon_sym_COLON] = ACTIONS(117), [aux_sym_while_phrase_token1] = ACTIONS(117), + [aux_sym_repeat_tuning_token1] = ACTIONS(117), [aux_sym_property_tuning_token1] = ACTIONS(117), [aux_sym_event_definition_token1] = ACTIONS(117), [aux_sym_using_statement_token1] = ACTIONS(117), @@ -27572,244 +27859,87 @@ 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(102), + [anon_sym_SLASH] = ACTIONS(98), [anon_sym_LBRACE] = ACTIONS(65), - [anon_sym_STAR] = ACTIONS(104), - [sym__terminator] = ACTIONS(104), - [anon_sym_LPAREN] = ACTIONS(104), - [anon_sym_RPAREN] = ACTIONS(104), - [anon_sym_PLUS] = ACTIONS(104), - [anon_sym_DASH] = ACTIONS(104), - [anon_sym_LT] = ACTIONS(102), - [anon_sym_LT_EQ] = ACTIONS(104), - [anon_sym_LT_GT] = ACTIONS(104), - [anon_sym_EQ] = ACTIONS(104), - [anon_sym_GT] = ACTIONS(102), - [anon_sym_GT_EQ] = ACTIONS(104), - [aux_sym__comparison_operator_token1] = ACTIONS(104), - [aux_sym__comparison_operator_token2] = ACTIONS(104), - [aux_sym__comparison_operator_token3] = ACTIONS(104), - [aux_sym__comparison_operator_token4] = ACTIONS(104), - [aux_sym__comparison_operator_token5] = ACTIONS(104), - [aux_sym__comparison_operator_token6] = ACTIONS(104), - [aux_sym__comparison_operator_token7] = ACTIONS(104), - [aux_sym__comparison_operator_token8] = ACTIONS(104), - [aux_sym__comparison_operator_token9] = ACTIONS(104), - [aux_sym_variable_tuning_token1] = ACTIONS(104), - [aux_sym_variable_tuning_token2] = ACTIONS(104), - [aux_sym_variable_tuning_token3] = ACTIONS(104), - [aux_sym_variable_tuning_token4] = ACTIONS(104), - [aux_sym_variable_tuning_token5] = ACTIONS(104), - [aux_sym_variable_tuning_token6] = ACTIONS(104), - [anon_sym_COMMA] = ACTIONS(104), - [aux_sym_function_call_token1] = ACTIONS(104), - [aux_sym_if_statement_token2] = ACTIONS(104), - [aux_sym_else_if_statement_token1] = ACTIONS(104), - [anon_sym_COLON] = ACTIONS(104), - [aux_sym_while_phrase_token1] = ACTIONS(104), - [aux_sym_property_tuning_token1] = ACTIONS(104), - [aux_sym_event_definition_token1] = ACTIONS(104), - [aux_sym_using_statement_token1] = ACTIONS(104), - [aux_sym_input_stream_tuning_token1] = ACTIONS(104), - [aux_sym_input_stream_tuning_token2] = ACTIONS(104), - [aux_sym_input_stream_tuning_token3] = ACTIONS(104), - [aux_sym_input_stream_tuning_token4] = ACTIONS(104), - [aux_sym_input_stream_tuning_token5] = ACTIONS(104), - [aux_sym_input_stream_tuning_token6] = ACTIONS(104), - [aux_sym_input_stream_tuning_token7] = ACTIONS(104), - [aux_sym_input_stream_tuning_token8] = ACTIONS(104), - [aux_sym_input_stream_tuning_token9] = ACTIONS(104), - [aux_sym_input_stream_tuning_token11] = ACTIONS(104), - [aux_sym_output_stream_tuning_token1] = ACTIONS(104), - [aux_sym_output_stream_tuning_token2] = ACTIONS(104), - [aux_sym_output_stream_tuning_token3] = ACTIONS(104), - [aux_sym_output_stream_tuning_token4] = ACTIONS(104), - [aux_sym_output_stream_tuning_token5] = ACTIONS(104), - [aux_sym_output_stream_tuning_token6] = ACTIONS(104), - [aux_sym_output_stream_tuning_token7] = ACTIONS(104), - [aux_sym_output_stream_tuning_token8] = ACTIONS(104), - [aux_sym_output_stream_statement_token1] = ACTIONS(104), - [aux_sym_on_error_phrase_token1] = ACTIONS(104), - [aux_sym_stop_after_phrase_token1] = ACTIONS(104), - [aux_sym_do_tuning_token1] = ACTIONS(104), - [anon_sym_BY] = ACTIONS(104), - [aux_sym_where_clause_token1] = ACTIONS(104), - [aux_sym_query_tuning_token1] = ACTIONS(104), - [aux_sym_query_tuning_token2] = ACTIONS(104), - [aux_sym_query_tuning_token3] = ACTIONS(104), - [aux_sym_query_tuning_token4] = ACTIONS(104), - [aux_sym_query_tuning_token5] = ACTIONS(104), - [aux_sym_of_token1] = ACTIONS(104), - [aux_sym_field_definition_token1] = ACTIONS(104), - [aux_sym_index_definition_token1] = ACTIONS(104), - [aux_sym_on_statement_token1] = ACTIONS(104), - [sym__namedot] = ACTIONS(104), - [sym__or_operator] = ACTIONS(104), - [sym__and_operator] = ACTIONS(104), + [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_repeat_tuning_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), [sym_include] = STATE(13), [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), - }, - [14] = { - [sym_comment] = STATE(14), - [sym_include] = STATE(14), - [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), - }, - [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(119), [anon_sym_LBRACE] = ACTIONS(65), [anon_sym_STAR] = ACTIONS(121), @@ -27845,6 +27975,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_else_if_statement_token1] = ACTIONS(121), [anon_sym_COLON] = ACTIONS(121), [aux_sym_while_phrase_token1] = ACTIONS(121), + [aux_sym_repeat_tuning_token1] = ACTIONS(121), [aux_sym_property_tuning_token1] = ACTIONS(121), [aux_sym_event_definition_token1] = ACTIONS(121), [aux_sym_using_statement_token1] = ACTIONS(121), @@ -27884,9 +28015,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__or_operator] = ACTIONS(121), [sym__and_operator] = ACTIONS(121), }, - [16] = { - [sym_comment] = STATE(16), - [sym_include] = STATE(16), + [14] = { + [sym_comment] = STATE(14), + [sym_include] = STATE(14), [anon_sym_SLASH_SLASH] = ACTIONS(59), [anon_sym_SLASH_STAR] = ACTIONS(61), [anon_sym_SLASH] = ACTIONS(123), @@ -27924,6 +28055,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_else_if_statement_token1] = ACTIONS(125), [anon_sym_COLON] = ACTIONS(125), [aux_sym_while_phrase_token1] = ACTIONS(125), + [aux_sym_repeat_tuning_token1] = ACTIONS(125), [aux_sym_property_tuning_token1] = ACTIONS(125), [aux_sym_event_definition_token1] = ACTIONS(125), [aux_sym_using_statement_token1] = ACTIONS(125), @@ -27963,9 +28095,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__or_operator] = ACTIONS(125), [sym__and_operator] = ACTIONS(125), }, - [17] = { - [sym_comment] = STATE(17), - [sym_include] = STATE(17), + [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(127), @@ -27998,11 +28130,12 @@ 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(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), [aux_sym_while_phrase_token1] = ACTIONS(129), + [aux_sym_repeat_tuning_token1] = ACTIONS(129), [aux_sym_property_tuning_token1] = ACTIONS(129), [aux_sym_event_definition_token1] = ACTIONS(129), [aux_sym_using_statement_token1] = ACTIONS(129), @@ -28042,88 +28175,89 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__or_operator] = ACTIONS(129), [sym__and_operator] = ACTIONS(129), }, - [18] = { - [sym_comment] = STATE(18), - [sym_include] = STATE(18), + [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_SLASH] = ACTIONS(133), [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), + [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(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_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), + [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_repeat_tuning_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), + [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(137), @@ -28161,6 +28295,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_else_if_statement_token1] = ACTIONS(139), [anon_sym_COLON] = ACTIONS(139), [aux_sym_while_phrase_token1] = ACTIONS(139), + [aux_sym_repeat_tuning_token1] = ACTIONS(139), [aux_sym_property_tuning_token1] = ACTIONS(139), [aux_sym_event_definition_token1] = ACTIONS(139), [aux_sym_using_statement_token1] = ACTIONS(139), @@ -28200,9 +28335,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__or_operator] = ACTIONS(139), [sym__and_operator] = ACTIONS(139), }, - [20] = { - [sym_comment] = STATE(20), - [sym_include] = STATE(20), + [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(141), @@ -28240,6 +28375,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_else_if_statement_token1] = ACTIONS(143), [anon_sym_COLON] = ACTIONS(143), [aux_sym_while_phrase_token1] = ACTIONS(143), + [aux_sym_repeat_tuning_token1] = ACTIONS(143), [aux_sym_property_tuning_token1] = ACTIONS(143), [aux_sym_event_definition_token1] = ACTIONS(143), [aux_sym_using_statement_token1] = ACTIONS(143), @@ -28279,9 +28415,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__or_operator] = ACTIONS(143), [sym__and_operator] = ACTIONS(143), }, - [21] = { - [sym_comment] = STATE(21), - [sym_include] = STATE(21), + [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(145), @@ -28319,6 +28455,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_else_if_statement_token1] = ACTIONS(147), [anon_sym_COLON] = ACTIONS(147), [aux_sym_while_phrase_token1] = ACTIONS(147), + [aux_sym_repeat_tuning_token1] = ACTIONS(147), [aux_sym_property_tuning_token1] = ACTIONS(147), [aux_sym_event_definition_token1] = ACTIONS(147), [aux_sym_using_statement_token1] = ACTIONS(147), @@ -28358,88 +28495,89 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__or_operator] = ACTIONS(147), [sym__and_operator] = ACTIONS(147), }, - [22] = { - [sym_comment] = STATE(22), - [sym_include] = STATE(22), + [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(83), + [anon_sym_SLASH] = ACTIONS(63), [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), + [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_repeat_tuning_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), }, - [23] = { - [sym_comment] = STATE(23), - [sym_include] = STATE(23), + [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(149), @@ -28477,6 +28615,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_else_if_statement_token1] = ACTIONS(151), [anon_sym_COLON] = ACTIONS(151), [aux_sym_while_phrase_token1] = ACTIONS(151), + [aux_sym_repeat_tuning_token1] = ACTIONS(151), [aux_sym_property_tuning_token1] = ACTIONS(151), [aux_sym_event_definition_token1] = ACTIONS(151), [aux_sym_using_statement_token1] = ACTIONS(151), @@ -28516,9 +28655,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__or_operator] = ACTIONS(151), [sym__and_operator] = ACTIONS(151), }, - [24] = { - [sym_comment] = STATE(24), - [sym_include] = STATE(24), + [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(153), @@ -28551,11 +28690,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_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_repeat_tuning_token1] = ACTIONS(155), [aux_sym_property_tuning_token1] = ACTIONS(155), [aux_sym_event_definition_token1] = ACTIONS(155), [aux_sym_using_statement_token1] = ACTIONS(155), @@ -28595,878 +28735,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__or_operator] = ACTIONS(155), [sym__and_operator] = ACTIONS(155), }, - [25] = { - [sym_comment] = STATE(25), - [sym_include] = STATE(25), - [anon_sym_SLASH_SLASH] = ACTIONS(59), - [anon_sym_SLASH_STAR] = ACTIONS(61), - [anon_sym_SLASH] = ACTIONS(157), - [anon_sym_LBRACE] = ACTIONS(65), - [anon_sym_STAR] = ACTIONS(159), - [sym__terminator] = ACTIONS(159), - [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_RPAREN] = ACTIONS(159), - [anon_sym_PLUS] = ACTIONS(159), - [anon_sym_DASH] = ACTIONS(159), - [anon_sym_LT] = ACTIONS(157), - [anon_sym_LT_EQ] = ACTIONS(159), - [anon_sym_LT_GT] = ACTIONS(159), - [anon_sym_EQ] = ACTIONS(159), - [anon_sym_GT] = ACTIONS(157), - [anon_sym_GT_EQ] = ACTIONS(159), - [aux_sym__comparison_operator_token1] = ACTIONS(159), - [aux_sym__comparison_operator_token2] = ACTIONS(159), - [aux_sym__comparison_operator_token3] = ACTIONS(159), - [aux_sym__comparison_operator_token4] = ACTIONS(159), - [aux_sym__comparison_operator_token5] = ACTIONS(159), - [aux_sym__comparison_operator_token6] = ACTIONS(159), - [aux_sym__comparison_operator_token7] = ACTIONS(159), - [aux_sym__comparison_operator_token8] = ACTIONS(159), - [aux_sym__comparison_operator_token9] = ACTIONS(159), - [aux_sym_variable_tuning_token1] = ACTIONS(159), - [aux_sym_variable_tuning_token2] = ACTIONS(159), - [aux_sym_variable_tuning_token3] = ACTIONS(159), - [aux_sym_variable_tuning_token4] = ACTIONS(159), - [aux_sym_variable_tuning_token5] = ACTIONS(159), - [aux_sym_variable_tuning_token6] = ACTIONS(159), - [anon_sym_COMMA] = ACTIONS(159), - [aux_sym_function_call_token1] = ACTIONS(159), - [aux_sym_if_statement_token2] = ACTIONS(159), - [aux_sym_else_if_statement_token1] = ACTIONS(159), - [anon_sym_COLON] = ACTIONS(159), - [aux_sym_while_phrase_token1] = ACTIONS(159), - [aux_sym_property_tuning_token1] = ACTIONS(159), - [aux_sym_event_definition_token1] = ACTIONS(159), - [aux_sym_using_statement_token1] = ACTIONS(159), - [aux_sym_input_stream_tuning_token1] = ACTIONS(159), - [aux_sym_input_stream_tuning_token2] = ACTIONS(159), - [aux_sym_input_stream_tuning_token3] = ACTIONS(159), - [aux_sym_input_stream_tuning_token4] = ACTIONS(159), - [aux_sym_input_stream_tuning_token5] = ACTIONS(159), - [aux_sym_input_stream_tuning_token6] = ACTIONS(159), - [aux_sym_input_stream_tuning_token7] = ACTIONS(159), - [aux_sym_input_stream_tuning_token8] = ACTIONS(159), - [aux_sym_input_stream_tuning_token9] = ACTIONS(159), - [aux_sym_input_stream_tuning_token11] = ACTIONS(159), - [aux_sym_output_stream_tuning_token1] = ACTIONS(159), - [aux_sym_output_stream_tuning_token2] = ACTIONS(159), - [aux_sym_output_stream_tuning_token3] = ACTIONS(159), - [aux_sym_output_stream_tuning_token4] = ACTIONS(159), - [aux_sym_output_stream_tuning_token5] = ACTIONS(159), - [aux_sym_output_stream_tuning_token6] = ACTIONS(159), - [aux_sym_output_stream_tuning_token7] = ACTIONS(159), - [aux_sym_output_stream_tuning_token8] = ACTIONS(159), - [aux_sym_output_stream_statement_token1] = ACTIONS(159), - [aux_sym_on_error_phrase_token1] = ACTIONS(159), - [aux_sym_stop_after_phrase_token1] = ACTIONS(159), - [aux_sym_do_tuning_token1] = ACTIONS(159), - [anon_sym_BY] = ACTIONS(159), - [aux_sym_where_clause_token1] = ACTIONS(159), - [aux_sym_query_tuning_token1] = ACTIONS(159), - [aux_sym_query_tuning_token2] = ACTIONS(159), - [aux_sym_query_tuning_token3] = ACTIONS(159), - [aux_sym_query_tuning_token4] = ACTIONS(159), - [aux_sym_query_tuning_token5] = ACTIONS(159), - [aux_sym_of_token1] = ACTIONS(159), - [aux_sym_field_definition_token1] = ACTIONS(159), - [aux_sym_index_definition_token1] = ACTIONS(159), - [aux_sym_on_statement_token1] = ACTIONS(159), - [sym__or_operator] = ACTIONS(159), - [sym__and_operator] = ACTIONS(159), - }, - [26] = { - [sym_comment] = STATE(26), - [sym_include] = STATE(26), - [anon_sym_SLASH_SLASH] = ACTIONS(59), - [anon_sym_SLASH_STAR] = ACTIONS(61), - [anon_sym_SLASH] = ACTIONS(161), - [anon_sym_LBRACE] = ACTIONS(65), - [anon_sym_STAR] = ACTIONS(163), - [sym__terminator] = ACTIONS(163), - [anon_sym_LPAREN] = ACTIONS(163), - [anon_sym_RPAREN] = ACTIONS(163), - [anon_sym_PLUS] = ACTIONS(163), - [anon_sym_DASH] = ACTIONS(163), - [anon_sym_LT] = ACTIONS(161), - [anon_sym_LT_EQ] = ACTIONS(163), - [anon_sym_LT_GT] = ACTIONS(163), - [anon_sym_EQ] = ACTIONS(163), - [anon_sym_GT] = ACTIONS(161), - [anon_sym_GT_EQ] = ACTIONS(163), - [aux_sym__comparison_operator_token1] = ACTIONS(163), - [aux_sym__comparison_operator_token2] = ACTIONS(163), - [aux_sym__comparison_operator_token3] = ACTIONS(163), - [aux_sym__comparison_operator_token4] = ACTIONS(163), - [aux_sym__comparison_operator_token5] = ACTIONS(163), - [aux_sym__comparison_operator_token6] = ACTIONS(163), - [aux_sym__comparison_operator_token7] = ACTIONS(163), - [aux_sym__comparison_operator_token8] = ACTIONS(163), - [aux_sym__comparison_operator_token9] = ACTIONS(163), - [aux_sym_variable_tuning_token1] = ACTIONS(163), - [aux_sym_variable_tuning_token2] = ACTIONS(163), - [aux_sym_variable_tuning_token3] = ACTIONS(163), - [aux_sym_variable_tuning_token4] = ACTIONS(163), - [aux_sym_variable_tuning_token5] = ACTIONS(163), - [aux_sym_variable_tuning_token6] = ACTIONS(163), - [anon_sym_COMMA] = ACTIONS(163), - [aux_sym_function_call_token1] = ACTIONS(163), - [aux_sym_if_statement_token2] = ACTIONS(163), - [aux_sym_else_if_statement_token1] = ACTIONS(163), - [anon_sym_COLON] = ACTIONS(163), - [aux_sym_while_phrase_token1] = ACTIONS(163), - [aux_sym_property_tuning_token1] = ACTIONS(163), - [aux_sym_event_definition_token1] = ACTIONS(163), - [aux_sym_using_statement_token1] = ACTIONS(163), - [aux_sym_input_stream_tuning_token1] = ACTIONS(163), - [aux_sym_input_stream_tuning_token2] = ACTIONS(163), - [aux_sym_input_stream_tuning_token3] = ACTIONS(163), - [aux_sym_input_stream_tuning_token4] = ACTIONS(163), - [aux_sym_input_stream_tuning_token5] = ACTIONS(163), - [aux_sym_input_stream_tuning_token6] = ACTIONS(163), - [aux_sym_input_stream_tuning_token7] = ACTIONS(163), - [aux_sym_input_stream_tuning_token8] = ACTIONS(163), - [aux_sym_input_stream_tuning_token9] = ACTIONS(163), - [aux_sym_input_stream_tuning_token11] = ACTIONS(163), - [aux_sym_output_stream_tuning_token1] = ACTIONS(163), - [aux_sym_output_stream_tuning_token2] = ACTIONS(163), - [aux_sym_output_stream_tuning_token3] = ACTIONS(163), - [aux_sym_output_stream_tuning_token4] = ACTIONS(163), - [aux_sym_output_stream_tuning_token5] = ACTIONS(163), - [aux_sym_output_stream_tuning_token6] = ACTIONS(163), - [aux_sym_output_stream_tuning_token7] = ACTIONS(163), - [aux_sym_output_stream_tuning_token8] = ACTIONS(163), - [aux_sym_output_stream_statement_token1] = ACTIONS(163), - [aux_sym_on_error_phrase_token1] = ACTIONS(163), - [aux_sym_stop_after_phrase_token1] = ACTIONS(163), - [aux_sym_do_tuning_token1] = ACTIONS(163), - [anon_sym_BY] = ACTIONS(163), - [aux_sym_where_clause_token1] = ACTIONS(163), - [aux_sym_query_tuning_token1] = ACTIONS(163), - [aux_sym_query_tuning_token2] = ACTIONS(163), - [aux_sym_query_tuning_token3] = ACTIONS(163), - [aux_sym_query_tuning_token4] = ACTIONS(163), - [aux_sym_query_tuning_token5] = ACTIONS(163), - [aux_sym_of_token1] = ACTIONS(163), - [aux_sym_field_definition_token1] = ACTIONS(163), - [aux_sym_index_definition_token1] = ACTIONS(163), - [aux_sym_on_statement_token1] = ACTIONS(163), - [sym__or_operator] = ACTIONS(163), - [sym__and_operator] = ACTIONS(163), - }, - [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(165), - [anon_sym_LBRACE] = ACTIONS(65), - [anon_sym_STAR] = ACTIONS(167), - [sym__terminator] = ACTIONS(167), - [anon_sym_LPAREN] = ACTIONS(167), - [anon_sym_RPAREN] = ACTIONS(167), - [anon_sym_PLUS] = ACTIONS(167), - [anon_sym_DASH] = ACTIONS(167), - [anon_sym_LT] = ACTIONS(165), - [anon_sym_LT_EQ] = ACTIONS(167), - [anon_sym_LT_GT] = ACTIONS(167), - [anon_sym_EQ] = ACTIONS(167), - [anon_sym_GT] = ACTIONS(165), - [anon_sym_GT_EQ] = ACTIONS(167), - [aux_sym__comparison_operator_token1] = ACTIONS(167), - [aux_sym__comparison_operator_token2] = ACTIONS(167), - [aux_sym__comparison_operator_token3] = ACTIONS(167), - [aux_sym__comparison_operator_token4] = ACTIONS(167), - [aux_sym__comparison_operator_token5] = ACTIONS(167), - [aux_sym__comparison_operator_token6] = ACTIONS(167), - [aux_sym__comparison_operator_token7] = ACTIONS(167), - [aux_sym__comparison_operator_token8] = ACTIONS(167), - [aux_sym__comparison_operator_token9] = ACTIONS(167), - [aux_sym_variable_tuning_token1] = ACTIONS(167), - [aux_sym_variable_tuning_token2] = ACTIONS(167), - [aux_sym_variable_tuning_token3] = ACTIONS(167), - [aux_sym_variable_tuning_token4] = ACTIONS(167), - [aux_sym_variable_tuning_token5] = ACTIONS(167), - [aux_sym_variable_tuning_token6] = ACTIONS(167), - [anon_sym_COMMA] = ACTIONS(167), - [aux_sym_function_call_token1] = ACTIONS(167), - [aux_sym_if_statement_token2] = ACTIONS(167), - [aux_sym_else_if_statement_token1] = ACTIONS(167), - [anon_sym_COLON] = ACTIONS(167), - [aux_sym_while_phrase_token1] = ACTIONS(167), - [aux_sym_property_tuning_token1] = ACTIONS(167), - [aux_sym_event_definition_token1] = ACTIONS(167), - [aux_sym_using_statement_token1] = ACTIONS(167), - [aux_sym_input_stream_tuning_token1] = ACTIONS(167), - [aux_sym_input_stream_tuning_token2] = ACTIONS(167), - [aux_sym_input_stream_tuning_token3] = ACTIONS(167), - [aux_sym_input_stream_tuning_token4] = ACTIONS(167), - [aux_sym_input_stream_tuning_token5] = ACTIONS(167), - [aux_sym_input_stream_tuning_token6] = ACTIONS(167), - [aux_sym_input_stream_tuning_token7] = ACTIONS(167), - [aux_sym_input_stream_tuning_token8] = ACTIONS(167), - [aux_sym_input_stream_tuning_token9] = ACTIONS(167), - [aux_sym_input_stream_tuning_token11] = ACTIONS(167), - [aux_sym_output_stream_tuning_token1] = ACTIONS(167), - [aux_sym_output_stream_tuning_token2] = ACTIONS(167), - [aux_sym_output_stream_tuning_token3] = ACTIONS(167), - [aux_sym_output_stream_tuning_token4] = ACTIONS(167), - [aux_sym_output_stream_tuning_token5] = ACTIONS(167), - [aux_sym_output_stream_tuning_token6] = ACTIONS(167), - [aux_sym_output_stream_tuning_token7] = ACTIONS(167), - [aux_sym_output_stream_tuning_token8] = ACTIONS(167), - [aux_sym_output_stream_statement_token1] = ACTIONS(167), - [aux_sym_on_error_phrase_token1] = ACTIONS(167), - [aux_sym_stop_after_phrase_token1] = ACTIONS(167), - [aux_sym_do_tuning_token1] = ACTIONS(167), - [anon_sym_BY] = ACTIONS(167), - [aux_sym_where_clause_token1] = ACTIONS(167), - [aux_sym_query_tuning_token1] = ACTIONS(167), - [aux_sym_query_tuning_token2] = ACTIONS(167), - [aux_sym_query_tuning_token3] = ACTIONS(167), - [aux_sym_query_tuning_token4] = ACTIONS(167), - [aux_sym_query_tuning_token5] = ACTIONS(167), - [aux_sym_of_token1] = ACTIONS(167), - [aux_sym_field_definition_token1] = ACTIONS(167), - [aux_sym_index_definition_token1] = ACTIONS(167), - [aux_sym_on_statement_token1] = ACTIONS(167), - [sym__or_operator] = ACTIONS(167), - [sym__and_operator] = ACTIONS(167), - }, - [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(169), - [anon_sym_LBRACE] = ACTIONS(65), - [anon_sym_STAR] = ACTIONS(171), - [sym__terminator] = ACTIONS(171), - [anon_sym_LPAREN] = ACTIONS(171), - [anon_sym_RPAREN] = ACTIONS(171), - [anon_sym_PLUS] = ACTIONS(171), - [anon_sym_DASH] = ACTIONS(171), - [anon_sym_LT] = ACTIONS(169), - [anon_sym_LT_EQ] = ACTIONS(171), - [anon_sym_LT_GT] = ACTIONS(171), - [anon_sym_EQ] = ACTIONS(171), - [anon_sym_GT] = ACTIONS(169), - [anon_sym_GT_EQ] = ACTIONS(171), - [aux_sym__comparison_operator_token1] = ACTIONS(171), - [aux_sym__comparison_operator_token2] = ACTIONS(171), - [aux_sym__comparison_operator_token3] = ACTIONS(171), - [aux_sym__comparison_operator_token4] = ACTIONS(171), - [aux_sym__comparison_operator_token5] = ACTIONS(171), - [aux_sym__comparison_operator_token6] = ACTIONS(171), - [aux_sym__comparison_operator_token7] = ACTIONS(171), - [aux_sym__comparison_operator_token8] = ACTIONS(171), - [aux_sym__comparison_operator_token9] = ACTIONS(171), - [aux_sym_variable_tuning_token1] = ACTIONS(171), - [aux_sym_variable_tuning_token2] = ACTIONS(171), - [aux_sym_variable_tuning_token3] = ACTIONS(171), - [aux_sym_variable_tuning_token4] = ACTIONS(171), - [aux_sym_variable_tuning_token5] = ACTIONS(171), - [aux_sym_variable_tuning_token6] = ACTIONS(171), - [anon_sym_COMMA] = ACTIONS(171), - [aux_sym_function_call_token1] = ACTIONS(171), - [aux_sym_if_statement_token2] = ACTIONS(171), - [aux_sym_else_if_statement_token1] = ACTIONS(171), - [anon_sym_COLON] = ACTIONS(171), - [aux_sym_while_phrase_token1] = ACTIONS(171), - [aux_sym_property_tuning_token1] = ACTIONS(171), - [aux_sym_event_definition_token1] = ACTIONS(171), - [aux_sym_using_statement_token1] = ACTIONS(171), - [aux_sym_input_stream_tuning_token1] = ACTIONS(171), - [aux_sym_input_stream_tuning_token2] = ACTIONS(171), - [aux_sym_input_stream_tuning_token3] = ACTIONS(171), - [aux_sym_input_stream_tuning_token4] = ACTIONS(171), - [aux_sym_input_stream_tuning_token5] = ACTIONS(171), - [aux_sym_input_stream_tuning_token6] = ACTIONS(171), - [aux_sym_input_stream_tuning_token7] = ACTIONS(171), - [aux_sym_input_stream_tuning_token8] = ACTIONS(171), - [aux_sym_input_stream_tuning_token9] = ACTIONS(171), - [aux_sym_input_stream_tuning_token11] = ACTIONS(171), - [aux_sym_output_stream_tuning_token1] = ACTIONS(171), - [aux_sym_output_stream_tuning_token2] = ACTIONS(171), - [aux_sym_output_stream_tuning_token3] = ACTIONS(171), - [aux_sym_output_stream_tuning_token4] = ACTIONS(171), - [aux_sym_output_stream_tuning_token5] = ACTIONS(171), - [aux_sym_output_stream_tuning_token6] = ACTIONS(171), - [aux_sym_output_stream_tuning_token7] = ACTIONS(171), - [aux_sym_output_stream_tuning_token8] = ACTIONS(171), - [aux_sym_output_stream_statement_token1] = ACTIONS(171), - [aux_sym_on_error_phrase_token1] = ACTIONS(171), - [aux_sym_stop_after_phrase_token1] = ACTIONS(171), - [aux_sym_do_tuning_token1] = ACTIONS(171), - [anon_sym_BY] = ACTIONS(171), - [aux_sym_where_clause_token1] = ACTIONS(171), - [aux_sym_query_tuning_token1] = ACTIONS(171), - [aux_sym_query_tuning_token2] = ACTIONS(171), - [aux_sym_query_tuning_token3] = ACTIONS(171), - [aux_sym_query_tuning_token4] = ACTIONS(171), - [aux_sym_query_tuning_token5] = ACTIONS(171), - [aux_sym_of_token1] = ACTIONS(171), - [aux_sym_field_definition_token1] = ACTIONS(171), - [aux_sym_index_definition_token1] = ACTIONS(171), - [aux_sym_on_statement_token1] = ACTIONS(171), - [sym__or_operator] = ACTIONS(171), - [sym__and_operator] = ACTIONS(171), - }, - [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(173), - [anon_sym_LBRACE] = ACTIONS(65), - [anon_sym_STAR] = ACTIONS(175), - [sym__terminator] = ACTIONS(175), - [anon_sym_LPAREN] = ACTIONS(175), - [anon_sym_RPAREN] = ACTIONS(175), - [anon_sym_PLUS] = ACTIONS(175), - [anon_sym_DASH] = ACTIONS(175), - [anon_sym_LT] = ACTIONS(173), - [anon_sym_LT_EQ] = ACTIONS(175), - [anon_sym_LT_GT] = ACTIONS(175), - [anon_sym_EQ] = ACTIONS(175), - [anon_sym_GT] = ACTIONS(173), - [anon_sym_GT_EQ] = ACTIONS(175), - [aux_sym__comparison_operator_token1] = ACTIONS(175), - [aux_sym__comparison_operator_token2] = ACTIONS(175), - [aux_sym__comparison_operator_token3] = ACTIONS(175), - [aux_sym__comparison_operator_token4] = ACTIONS(175), - [aux_sym__comparison_operator_token5] = ACTIONS(175), - [aux_sym__comparison_operator_token6] = ACTIONS(175), - [aux_sym__comparison_operator_token7] = ACTIONS(175), - [aux_sym__comparison_operator_token8] = ACTIONS(175), - [aux_sym__comparison_operator_token9] = ACTIONS(175), - [aux_sym_variable_tuning_token1] = ACTIONS(175), - [aux_sym_variable_tuning_token2] = ACTIONS(175), - [aux_sym_variable_tuning_token3] = ACTIONS(175), - [aux_sym_variable_tuning_token4] = ACTIONS(175), - [aux_sym_variable_tuning_token5] = ACTIONS(175), - [aux_sym_variable_tuning_token6] = ACTIONS(175), - [anon_sym_COMMA] = ACTIONS(175), - [aux_sym_function_call_token1] = ACTIONS(175), - [aux_sym_if_statement_token2] = ACTIONS(175), - [aux_sym_else_if_statement_token1] = ACTIONS(175), - [anon_sym_COLON] = ACTIONS(175), - [aux_sym_while_phrase_token1] = ACTIONS(175), - [aux_sym_property_tuning_token1] = ACTIONS(175), - [aux_sym_event_definition_token1] = ACTIONS(175), - [aux_sym_using_statement_token1] = ACTIONS(175), - [aux_sym_input_stream_tuning_token1] = ACTIONS(175), - [aux_sym_input_stream_tuning_token2] = ACTIONS(175), - [aux_sym_input_stream_tuning_token3] = ACTIONS(175), - [aux_sym_input_stream_tuning_token4] = ACTIONS(175), - [aux_sym_input_stream_tuning_token5] = ACTIONS(175), - [aux_sym_input_stream_tuning_token6] = ACTIONS(175), - [aux_sym_input_stream_tuning_token7] = ACTIONS(175), - [aux_sym_input_stream_tuning_token8] = ACTIONS(175), - [aux_sym_input_stream_tuning_token9] = ACTIONS(175), - [aux_sym_input_stream_tuning_token11] = ACTIONS(175), - [aux_sym_output_stream_tuning_token1] = ACTIONS(175), - [aux_sym_output_stream_tuning_token2] = ACTIONS(175), - [aux_sym_output_stream_tuning_token3] = ACTIONS(175), - [aux_sym_output_stream_tuning_token4] = ACTIONS(175), - [aux_sym_output_stream_tuning_token5] = ACTIONS(175), - [aux_sym_output_stream_tuning_token6] = ACTIONS(175), - [aux_sym_output_stream_tuning_token7] = ACTIONS(175), - [aux_sym_output_stream_tuning_token8] = ACTIONS(175), - [aux_sym_output_stream_statement_token1] = ACTIONS(175), - [aux_sym_on_error_phrase_token1] = ACTIONS(175), - [aux_sym_stop_after_phrase_token1] = ACTIONS(175), - [aux_sym_do_tuning_token1] = ACTIONS(175), - [anon_sym_BY] = ACTIONS(175), - [aux_sym_where_clause_token1] = ACTIONS(175), - [aux_sym_query_tuning_token1] = ACTIONS(175), - [aux_sym_query_tuning_token2] = ACTIONS(175), - [aux_sym_query_tuning_token3] = ACTIONS(175), - [aux_sym_query_tuning_token4] = ACTIONS(175), - [aux_sym_query_tuning_token5] = ACTIONS(175), - [aux_sym_of_token1] = ACTIONS(175), - [aux_sym_field_definition_token1] = ACTIONS(175), - [aux_sym_index_definition_token1] = ACTIONS(175), - [aux_sym_on_statement_token1] = ACTIONS(175), - [sym__or_operator] = ACTIONS(175), - [sym__and_operator] = ACTIONS(175), - }, - [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(177), - [anon_sym_LBRACE] = ACTIONS(65), - [anon_sym_STAR] = ACTIONS(179), - [sym__terminator] = ACTIONS(179), - [anon_sym_LPAREN] = ACTIONS(179), - [anon_sym_RPAREN] = ACTIONS(179), - [anon_sym_PLUS] = ACTIONS(179), - [anon_sym_DASH] = ACTIONS(179), - [anon_sym_LT] = ACTIONS(177), - [anon_sym_LT_EQ] = ACTIONS(179), - [anon_sym_LT_GT] = ACTIONS(179), - [anon_sym_EQ] = ACTIONS(179), - [anon_sym_GT] = ACTIONS(177), - [anon_sym_GT_EQ] = ACTIONS(179), - [aux_sym__comparison_operator_token1] = ACTIONS(179), - [aux_sym__comparison_operator_token2] = ACTIONS(179), - [aux_sym__comparison_operator_token3] = ACTIONS(179), - [aux_sym__comparison_operator_token4] = ACTIONS(179), - [aux_sym__comparison_operator_token5] = ACTIONS(179), - [aux_sym__comparison_operator_token6] = ACTIONS(179), - [aux_sym__comparison_operator_token7] = ACTIONS(179), - [aux_sym__comparison_operator_token8] = ACTIONS(179), - [aux_sym__comparison_operator_token9] = ACTIONS(179), - [aux_sym_variable_tuning_token1] = ACTIONS(179), - [aux_sym_variable_tuning_token2] = ACTIONS(179), - [aux_sym_variable_tuning_token3] = ACTIONS(179), - [aux_sym_variable_tuning_token4] = ACTIONS(179), - [aux_sym_variable_tuning_token5] = ACTIONS(179), - [aux_sym_variable_tuning_token6] = ACTIONS(179), - [anon_sym_COMMA] = ACTIONS(179), - [aux_sym_function_call_token1] = ACTIONS(179), - [aux_sym_if_statement_token2] = ACTIONS(179), - [aux_sym_else_if_statement_token1] = ACTIONS(179), - [anon_sym_COLON] = ACTIONS(179), - [aux_sym_while_phrase_token1] = ACTIONS(179), - [aux_sym_property_tuning_token1] = ACTIONS(179), - [aux_sym_event_definition_token1] = ACTIONS(179), - [aux_sym_using_statement_token1] = ACTIONS(179), - [aux_sym_input_stream_tuning_token1] = ACTIONS(179), - [aux_sym_input_stream_tuning_token2] = ACTIONS(179), - [aux_sym_input_stream_tuning_token3] = ACTIONS(179), - [aux_sym_input_stream_tuning_token4] = ACTIONS(179), - [aux_sym_input_stream_tuning_token5] = ACTIONS(179), - [aux_sym_input_stream_tuning_token6] = ACTIONS(179), - [aux_sym_input_stream_tuning_token7] = ACTIONS(179), - [aux_sym_input_stream_tuning_token8] = ACTIONS(179), - [aux_sym_input_stream_tuning_token9] = ACTIONS(179), - [aux_sym_input_stream_tuning_token11] = ACTIONS(179), - [aux_sym_output_stream_tuning_token1] = ACTIONS(179), - [aux_sym_output_stream_tuning_token2] = ACTIONS(179), - [aux_sym_output_stream_tuning_token3] = ACTIONS(179), - [aux_sym_output_stream_tuning_token4] = ACTIONS(179), - [aux_sym_output_stream_tuning_token5] = ACTIONS(179), - [aux_sym_output_stream_tuning_token6] = ACTIONS(179), - [aux_sym_output_stream_tuning_token7] = ACTIONS(179), - [aux_sym_output_stream_tuning_token8] = ACTIONS(179), - [aux_sym_output_stream_statement_token1] = ACTIONS(179), - [aux_sym_on_error_phrase_token1] = ACTIONS(179), - [aux_sym_stop_after_phrase_token1] = ACTIONS(179), - [aux_sym_do_tuning_token1] = ACTIONS(179), - [anon_sym_BY] = ACTIONS(179), - [aux_sym_where_clause_token1] = ACTIONS(179), - [aux_sym_query_tuning_token1] = ACTIONS(179), - [aux_sym_query_tuning_token2] = ACTIONS(179), - [aux_sym_query_tuning_token3] = ACTIONS(179), - [aux_sym_query_tuning_token4] = ACTIONS(179), - [aux_sym_query_tuning_token5] = ACTIONS(179), - [aux_sym_of_token1] = ACTIONS(179), - [aux_sym_field_definition_token1] = ACTIONS(179), - [aux_sym_index_definition_token1] = ACTIONS(179), - [aux_sym_on_statement_token1] = ACTIONS(179), - [sym__or_operator] = ACTIONS(179), - [sym__and_operator] = ACTIONS(179), - }, - [31] = { - [sym_comment] = STATE(31), - [sym_include] = STATE(31), - [anon_sym_SLASH_SLASH] = ACTIONS(59), - [anon_sym_SLASH_STAR] = ACTIONS(61), - [anon_sym_SLASH] = ACTIONS(181), - [anon_sym_LBRACE] = ACTIONS(65), - [anon_sym_STAR] = ACTIONS(183), - [sym__terminator] = ACTIONS(183), - [anon_sym_LPAREN] = ACTIONS(183), - [anon_sym_RPAREN] = ACTIONS(183), - [anon_sym_PLUS] = ACTIONS(183), - [anon_sym_DASH] = ACTIONS(183), - [anon_sym_LT] = ACTIONS(181), - [anon_sym_LT_EQ] = ACTIONS(183), - [anon_sym_LT_GT] = ACTIONS(183), - [anon_sym_EQ] = ACTIONS(183), - [anon_sym_GT] = ACTIONS(181), - [anon_sym_GT_EQ] = ACTIONS(183), - [aux_sym__comparison_operator_token1] = ACTIONS(183), - [aux_sym__comparison_operator_token2] = ACTIONS(183), - [aux_sym__comparison_operator_token3] = ACTIONS(183), - [aux_sym__comparison_operator_token4] = ACTIONS(183), - [aux_sym__comparison_operator_token5] = ACTIONS(183), - [aux_sym__comparison_operator_token6] = ACTIONS(183), - [aux_sym__comparison_operator_token7] = ACTIONS(183), - [aux_sym__comparison_operator_token8] = ACTIONS(183), - [aux_sym__comparison_operator_token9] = ACTIONS(183), - [aux_sym_variable_tuning_token1] = ACTIONS(183), - [aux_sym_variable_tuning_token2] = ACTIONS(183), - [aux_sym_variable_tuning_token3] = ACTIONS(183), - [aux_sym_variable_tuning_token4] = ACTIONS(183), - [aux_sym_variable_tuning_token5] = ACTIONS(183), - [aux_sym_variable_tuning_token6] = ACTIONS(183), - [anon_sym_COMMA] = ACTIONS(183), - [aux_sym_function_call_token1] = ACTIONS(183), - [aux_sym_if_statement_token2] = ACTIONS(183), - [aux_sym_else_if_statement_token1] = ACTIONS(183), - [anon_sym_COLON] = ACTIONS(183), - [aux_sym_while_phrase_token1] = ACTIONS(183), - [aux_sym_property_tuning_token1] = ACTIONS(183), - [aux_sym_event_definition_token1] = ACTIONS(183), - [aux_sym_using_statement_token1] = ACTIONS(183), - [aux_sym_input_stream_tuning_token1] = ACTIONS(183), - [aux_sym_input_stream_tuning_token2] = ACTIONS(183), - [aux_sym_input_stream_tuning_token3] = ACTIONS(183), - [aux_sym_input_stream_tuning_token4] = ACTIONS(183), - [aux_sym_input_stream_tuning_token5] = ACTIONS(183), - [aux_sym_input_stream_tuning_token6] = ACTIONS(183), - [aux_sym_input_stream_tuning_token7] = ACTIONS(183), - [aux_sym_input_stream_tuning_token8] = ACTIONS(183), - [aux_sym_input_stream_tuning_token9] = ACTIONS(183), - [aux_sym_input_stream_tuning_token11] = ACTIONS(183), - [aux_sym_output_stream_tuning_token1] = ACTIONS(183), - [aux_sym_output_stream_tuning_token2] = ACTIONS(183), - [aux_sym_output_stream_tuning_token3] = ACTIONS(183), - [aux_sym_output_stream_tuning_token4] = ACTIONS(183), - [aux_sym_output_stream_tuning_token5] = ACTIONS(183), - [aux_sym_output_stream_tuning_token6] = ACTIONS(183), - [aux_sym_output_stream_tuning_token7] = ACTIONS(183), - [aux_sym_output_stream_tuning_token8] = ACTIONS(183), - [aux_sym_output_stream_statement_token1] = ACTIONS(183), - [aux_sym_on_error_phrase_token1] = ACTIONS(183), - [aux_sym_stop_after_phrase_token1] = ACTIONS(183), - [aux_sym_do_tuning_token1] = ACTIONS(183), - [anon_sym_BY] = ACTIONS(183), - [aux_sym_where_clause_token1] = ACTIONS(183), - [aux_sym_query_tuning_token1] = ACTIONS(183), - [aux_sym_query_tuning_token2] = ACTIONS(183), - [aux_sym_query_tuning_token3] = ACTIONS(183), - [aux_sym_query_tuning_token4] = ACTIONS(183), - [aux_sym_query_tuning_token5] = ACTIONS(183), - [aux_sym_of_token1] = ACTIONS(183), - [aux_sym_field_definition_token1] = ACTIONS(183), - [aux_sym_index_definition_token1] = ACTIONS(183), - [aux_sym_on_statement_token1] = ACTIONS(183), - [sym__or_operator] = ACTIONS(183), - [sym__and_operator] = ACTIONS(183), - }, - [32] = { - [sym_comment] = STATE(32), - [sym_include] = STATE(32), - [anon_sym_SLASH_SLASH] = ACTIONS(59), - [anon_sym_SLASH_STAR] = ACTIONS(61), - [anon_sym_SLASH] = ACTIONS(185), - [anon_sym_LBRACE] = ACTIONS(65), - [anon_sym_STAR] = ACTIONS(187), - [sym__terminator] = ACTIONS(187), - [anon_sym_LPAREN] = ACTIONS(187), - [anon_sym_RPAREN] = ACTIONS(187), - [anon_sym_PLUS] = ACTIONS(187), - [anon_sym_DASH] = ACTIONS(187), - [anon_sym_LT] = ACTIONS(185), - [anon_sym_LT_EQ] = ACTIONS(187), - [anon_sym_LT_GT] = ACTIONS(187), - [anon_sym_EQ] = ACTIONS(187), - [anon_sym_GT] = ACTIONS(185), - [anon_sym_GT_EQ] = ACTIONS(187), - [aux_sym__comparison_operator_token1] = ACTIONS(187), - [aux_sym__comparison_operator_token2] = ACTIONS(187), - [aux_sym__comparison_operator_token3] = ACTIONS(187), - [aux_sym__comparison_operator_token4] = ACTIONS(187), - [aux_sym__comparison_operator_token5] = ACTIONS(187), - [aux_sym__comparison_operator_token6] = ACTIONS(187), - [aux_sym__comparison_operator_token7] = ACTIONS(187), - [aux_sym__comparison_operator_token8] = ACTIONS(187), - [aux_sym__comparison_operator_token9] = ACTIONS(187), - [aux_sym_variable_tuning_token1] = ACTIONS(187), - [aux_sym_variable_tuning_token2] = ACTIONS(187), - [aux_sym_variable_tuning_token3] = ACTIONS(187), - [aux_sym_variable_tuning_token4] = ACTIONS(187), - [aux_sym_variable_tuning_token5] = ACTIONS(187), - [aux_sym_variable_tuning_token6] = ACTIONS(187), - [anon_sym_COMMA] = ACTIONS(187), - [aux_sym_function_call_token1] = ACTIONS(187), - [aux_sym_if_statement_token2] = ACTIONS(187), - [aux_sym_else_if_statement_token1] = ACTIONS(187), - [anon_sym_COLON] = ACTIONS(187), - [aux_sym_while_phrase_token1] = ACTIONS(187), - [aux_sym_property_tuning_token1] = ACTIONS(187), - [aux_sym_event_definition_token1] = ACTIONS(187), - [aux_sym_using_statement_token1] = ACTIONS(187), - [aux_sym_input_stream_tuning_token1] = ACTIONS(187), - [aux_sym_input_stream_tuning_token2] = ACTIONS(187), - [aux_sym_input_stream_tuning_token3] = ACTIONS(187), - [aux_sym_input_stream_tuning_token4] = ACTIONS(187), - [aux_sym_input_stream_tuning_token5] = ACTIONS(187), - [aux_sym_input_stream_tuning_token6] = ACTIONS(187), - [aux_sym_input_stream_tuning_token7] = ACTIONS(187), - [aux_sym_input_stream_tuning_token8] = ACTIONS(187), - [aux_sym_input_stream_tuning_token9] = ACTIONS(187), - [aux_sym_input_stream_tuning_token11] = ACTIONS(187), - [aux_sym_output_stream_tuning_token1] = ACTIONS(187), - [aux_sym_output_stream_tuning_token2] = ACTIONS(187), - [aux_sym_output_stream_tuning_token3] = ACTIONS(187), - [aux_sym_output_stream_tuning_token4] = ACTIONS(187), - [aux_sym_output_stream_tuning_token5] = ACTIONS(187), - [aux_sym_output_stream_tuning_token6] = ACTIONS(187), - [aux_sym_output_stream_tuning_token7] = ACTIONS(187), - [aux_sym_output_stream_tuning_token8] = ACTIONS(187), - [aux_sym_output_stream_statement_token1] = ACTIONS(187), - [aux_sym_on_error_phrase_token1] = ACTIONS(187), - [aux_sym_stop_after_phrase_token1] = ACTIONS(187), - [aux_sym_do_tuning_token1] = ACTIONS(187), - [anon_sym_BY] = ACTIONS(187), - [aux_sym_where_clause_token1] = ACTIONS(187), - [aux_sym_query_tuning_token1] = ACTIONS(187), - [aux_sym_query_tuning_token2] = ACTIONS(187), - [aux_sym_query_tuning_token3] = ACTIONS(187), - [aux_sym_query_tuning_token4] = ACTIONS(187), - [aux_sym_query_tuning_token5] = ACTIONS(187), - [aux_sym_of_token1] = ACTIONS(187), - [aux_sym_field_definition_token1] = ACTIONS(187), - [aux_sym_index_definition_token1] = ACTIONS(187), - [aux_sym_on_statement_token1] = ACTIONS(187), - [sym__or_operator] = ACTIONS(187), - [sym__and_operator] = ACTIONS(187), - }, - [33] = { - [sym_comment] = STATE(33), - [sym_include] = STATE(33), - [anon_sym_SLASH_SLASH] = ACTIONS(59), - [anon_sym_SLASH_STAR] = ACTIONS(61), - [anon_sym_SLASH] = ACTIONS(189), - [anon_sym_LBRACE] = ACTIONS(65), - [anon_sym_STAR] = ACTIONS(191), - [sym__terminator] = ACTIONS(191), - [anon_sym_LPAREN] = ACTIONS(191), - [anon_sym_RPAREN] = ACTIONS(191), - [anon_sym_PLUS] = ACTIONS(191), - [anon_sym_DASH] = ACTIONS(191), - [anon_sym_LT] = ACTIONS(189), - [anon_sym_LT_EQ] = ACTIONS(191), - [anon_sym_LT_GT] = ACTIONS(191), - [anon_sym_EQ] = ACTIONS(191), - [anon_sym_GT] = ACTIONS(189), - [anon_sym_GT_EQ] = ACTIONS(191), - [aux_sym__comparison_operator_token1] = ACTIONS(191), - [aux_sym__comparison_operator_token2] = ACTIONS(191), - [aux_sym__comparison_operator_token3] = ACTIONS(191), - [aux_sym__comparison_operator_token4] = ACTIONS(191), - [aux_sym__comparison_operator_token5] = ACTIONS(191), - [aux_sym__comparison_operator_token6] = ACTIONS(191), - [aux_sym__comparison_operator_token7] = ACTIONS(191), - [aux_sym__comparison_operator_token8] = ACTIONS(191), - [aux_sym__comparison_operator_token9] = ACTIONS(191), - [aux_sym_variable_tuning_token1] = ACTIONS(191), - [aux_sym_variable_tuning_token2] = ACTIONS(191), - [aux_sym_variable_tuning_token3] = ACTIONS(191), - [aux_sym_variable_tuning_token4] = ACTIONS(191), - [aux_sym_variable_tuning_token5] = ACTIONS(191), - [aux_sym_variable_tuning_token6] = ACTIONS(191), - [anon_sym_COMMA] = ACTIONS(191), - [aux_sym_function_call_token1] = ACTIONS(191), - [aux_sym_if_statement_token2] = ACTIONS(191), - [aux_sym_else_if_statement_token1] = ACTIONS(191), - [anon_sym_COLON] = ACTIONS(191), - [aux_sym_while_phrase_token1] = ACTIONS(191), - [aux_sym_property_tuning_token1] = ACTIONS(191), - [aux_sym_event_definition_token1] = ACTIONS(191), - [aux_sym_using_statement_token1] = ACTIONS(191), - [aux_sym_input_stream_tuning_token1] = ACTIONS(191), - [aux_sym_input_stream_tuning_token2] = ACTIONS(191), - [aux_sym_input_stream_tuning_token3] = ACTIONS(191), - [aux_sym_input_stream_tuning_token4] = ACTIONS(191), - [aux_sym_input_stream_tuning_token5] = ACTIONS(191), - [aux_sym_input_stream_tuning_token6] = ACTIONS(191), - [aux_sym_input_stream_tuning_token7] = ACTIONS(191), - [aux_sym_input_stream_tuning_token8] = ACTIONS(191), - [aux_sym_input_stream_tuning_token9] = ACTIONS(191), - [aux_sym_input_stream_tuning_token11] = ACTIONS(191), - [aux_sym_output_stream_tuning_token1] = ACTIONS(191), - [aux_sym_output_stream_tuning_token2] = ACTIONS(191), - [aux_sym_output_stream_tuning_token3] = ACTIONS(191), - [aux_sym_output_stream_tuning_token4] = ACTIONS(191), - [aux_sym_output_stream_tuning_token5] = ACTIONS(191), - [aux_sym_output_stream_tuning_token6] = ACTIONS(191), - [aux_sym_output_stream_tuning_token7] = ACTIONS(191), - [aux_sym_output_stream_tuning_token8] = ACTIONS(191), - [aux_sym_output_stream_statement_token1] = ACTIONS(191), - [aux_sym_on_error_phrase_token1] = ACTIONS(191), - [aux_sym_stop_after_phrase_token1] = ACTIONS(191), - [aux_sym_do_tuning_token1] = ACTIONS(191), - [anon_sym_BY] = ACTIONS(191), - [aux_sym_where_clause_token1] = ACTIONS(191), - [aux_sym_query_tuning_token1] = ACTIONS(191), - [aux_sym_query_tuning_token2] = ACTIONS(191), - [aux_sym_query_tuning_token3] = ACTIONS(191), - [aux_sym_query_tuning_token4] = ACTIONS(191), - [aux_sym_query_tuning_token5] = ACTIONS(191), - [aux_sym_of_token1] = ACTIONS(191), - [aux_sym_field_definition_token1] = ACTIONS(191), - [aux_sym_index_definition_token1] = ACTIONS(191), - [aux_sym_on_statement_token1] = ACTIONS(191), - [sym__or_operator] = ACTIONS(191), - [sym__and_operator] = ACTIONS(191), - }, - [34] = { - [sym_comment] = STATE(34), - [sym_include] = STATE(34), - [anon_sym_SLASH_SLASH] = ACTIONS(59), - [anon_sym_SLASH_STAR] = ACTIONS(61), - [anon_sym_SLASH] = ACTIONS(193), - [anon_sym_LBRACE] = ACTIONS(65), - [anon_sym_STAR] = ACTIONS(195), - [sym__terminator] = ACTIONS(195), - [anon_sym_LPAREN] = ACTIONS(195), - [anon_sym_RPAREN] = ACTIONS(195), - [anon_sym_PLUS] = ACTIONS(195), - [anon_sym_DASH] = ACTIONS(195), - [anon_sym_LT] = ACTIONS(193), - [anon_sym_LT_EQ] = ACTIONS(195), - [anon_sym_LT_GT] = ACTIONS(195), - [anon_sym_EQ] = ACTIONS(195), - [anon_sym_GT] = ACTIONS(193), - [anon_sym_GT_EQ] = ACTIONS(195), - [aux_sym__comparison_operator_token1] = ACTIONS(195), - [aux_sym__comparison_operator_token2] = ACTIONS(195), - [aux_sym__comparison_operator_token3] = ACTIONS(195), - [aux_sym__comparison_operator_token4] = ACTIONS(195), - [aux_sym__comparison_operator_token5] = ACTIONS(195), - [aux_sym__comparison_operator_token6] = ACTIONS(195), - [aux_sym__comparison_operator_token7] = ACTIONS(195), - [aux_sym__comparison_operator_token8] = ACTIONS(195), - [aux_sym__comparison_operator_token9] = ACTIONS(195), - [aux_sym_variable_tuning_token1] = ACTIONS(195), - [aux_sym_variable_tuning_token2] = ACTIONS(195), - [aux_sym_variable_tuning_token3] = ACTIONS(195), - [aux_sym_variable_tuning_token4] = ACTIONS(195), - [aux_sym_variable_tuning_token5] = ACTIONS(195), - [aux_sym_variable_tuning_token6] = ACTIONS(195), - [anon_sym_COMMA] = ACTIONS(195), - [aux_sym_function_call_token1] = ACTIONS(195), - [aux_sym_if_statement_token2] = ACTIONS(195), - [aux_sym_else_if_statement_token1] = ACTIONS(195), - [anon_sym_COLON] = ACTIONS(195), - [aux_sym_while_phrase_token1] = ACTIONS(195), - [aux_sym_property_tuning_token1] = ACTIONS(195), - [aux_sym_event_definition_token1] = ACTIONS(195), - [aux_sym_using_statement_token1] = ACTIONS(195), - [aux_sym_input_stream_tuning_token1] = ACTIONS(195), - [aux_sym_input_stream_tuning_token2] = ACTIONS(195), - [aux_sym_input_stream_tuning_token3] = ACTIONS(195), - [aux_sym_input_stream_tuning_token4] = ACTIONS(195), - [aux_sym_input_stream_tuning_token5] = ACTIONS(195), - [aux_sym_input_stream_tuning_token6] = ACTIONS(195), - [aux_sym_input_stream_tuning_token7] = ACTIONS(195), - [aux_sym_input_stream_tuning_token8] = ACTIONS(195), - [aux_sym_input_stream_tuning_token9] = ACTIONS(195), - [aux_sym_input_stream_tuning_token11] = ACTIONS(195), - [aux_sym_output_stream_tuning_token1] = ACTIONS(195), - [aux_sym_output_stream_tuning_token2] = ACTIONS(195), - [aux_sym_output_stream_tuning_token3] = ACTIONS(195), - [aux_sym_output_stream_tuning_token4] = ACTIONS(195), - [aux_sym_output_stream_tuning_token5] = ACTIONS(195), - [aux_sym_output_stream_tuning_token6] = ACTIONS(195), - [aux_sym_output_stream_tuning_token7] = ACTIONS(195), - [aux_sym_output_stream_tuning_token8] = ACTIONS(195), - [aux_sym_output_stream_statement_token1] = ACTIONS(195), - [aux_sym_on_error_phrase_token1] = ACTIONS(195), - [aux_sym_stop_after_phrase_token1] = ACTIONS(195), - [aux_sym_do_tuning_token1] = ACTIONS(195), - [anon_sym_BY] = ACTIONS(195), - [aux_sym_where_clause_token1] = ACTIONS(195), - [aux_sym_query_tuning_token1] = ACTIONS(195), - [aux_sym_query_tuning_token2] = ACTIONS(195), - [aux_sym_query_tuning_token3] = ACTIONS(195), - [aux_sym_query_tuning_token4] = ACTIONS(195), - [aux_sym_query_tuning_token5] = ACTIONS(195), - [aux_sym_of_token1] = ACTIONS(195), - [aux_sym_field_definition_token1] = ACTIONS(195), - [aux_sym_index_definition_token1] = ACTIONS(195), - [aux_sym_on_statement_token1] = ACTIONS(195), - [sym__or_operator] = ACTIONS(195), - [sym__and_operator] = ACTIONS(195), - }, - [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(197), - [anon_sym_LBRACE] = ACTIONS(65), - [anon_sym_STAR] = ACTIONS(199), - [sym__terminator] = ACTIONS(199), - [anon_sym_LPAREN] = ACTIONS(199), - [anon_sym_RPAREN] = ACTIONS(199), - [anon_sym_PLUS] = ACTIONS(199), - [anon_sym_DASH] = ACTIONS(199), - [anon_sym_LT] = ACTIONS(197), - [anon_sym_LT_EQ] = ACTIONS(199), - [anon_sym_LT_GT] = ACTIONS(199), - [anon_sym_EQ] = ACTIONS(199), - [anon_sym_GT] = ACTIONS(197), - [anon_sym_GT_EQ] = ACTIONS(199), - [aux_sym__comparison_operator_token1] = ACTIONS(199), - [aux_sym__comparison_operator_token2] = ACTIONS(199), - [aux_sym__comparison_operator_token3] = ACTIONS(199), - [aux_sym__comparison_operator_token4] = ACTIONS(199), - [aux_sym__comparison_operator_token5] = ACTIONS(199), - [aux_sym__comparison_operator_token6] = ACTIONS(199), - [aux_sym__comparison_operator_token7] = ACTIONS(199), - [aux_sym__comparison_operator_token8] = ACTIONS(199), - [aux_sym__comparison_operator_token9] = ACTIONS(199), - [aux_sym_variable_tuning_token1] = ACTIONS(199), - [aux_sym_variable_tuning_token2] = ACTIONS(199), - [aux_sym_variable_tuning_token3] = ACTIONS(199), - [aux_sym_variable_tuning_token4] = ACTIONS(199), - [aux_sym_variable_tuning_token5] = ACTIONS(199), - [aux_sym_variable_tuning_token6] = ACTIONS(199), - [anon_sym_COMMA] = ACTIONS(199), - [aux_sym_function_call_token1] = ACTIONS(199), - [aux_sym_if_statement_token2] = ACTIONS(199), - [aux_sym_else_if_statement_token1] = ACTIONS(199), - [anon_sym_COLON] = ACTIONS(199), - [aux_sym_while_phrase_token1] = ACTIONS(199), - [aux_sym_property_tuning_token1] = ACTIONS(199), - [aux_sym_event_definition_token1] = ACTIONS(199), - [aux_sym_using_statement_token1] = ACTIONS(199), - [aux_sym_input_stream_tuning_token1] = ACTIONS(199), - [aux_sym_input_stream_tuning_token2] = ACTIONS(199), - [aux_sym_input_stream_tuning_token3] = ACTIONS(199), - [aux_sym_input_stream_tuning_token4] = ACTIONS(199), - [aux_sym_input_stream_tuning_token5] = ACTIONS(199), - [aux_sym_input_stream_tuning_token6] = ACTIONS(199), - [aux_sym_input_stream_tuning_token7] = ACTIONS(199), - [aux_sym_input_stream_tuning_token8] = ACTIONS(199), - [aux_sym_input_stream_tuning_token9] = ACTIONS(199), - [aux_sym_input_stream_tuning_token11] = ACTIONS(199), - [aux_sym_output_stream_tuning_token1] = ACTIONS(199), - [aux_sym_output_stream_tuning_token2] = ACTIONS(199), - [aux_sym_output_stream_tuning_token3] = ACTIONS(199), - [aux_sym_output_stream_tuning_token4] = ACTIONS(199), - [aux_sym_output_stream_tuning_token5] = ACTIONS(199), - [aux_sym_output_stream_tuning_token6] = ACTIONS(199), - [aux_sym_output_stream_tuning_token7] = ACTIONS(199), - [aux_sym_output_stream_tuning_token8] = ACTIONS(199), - [aux_sym_output_stream_statement_token1] = ACTIONS(199), - [aux_sym_on_error_phrase_token1] = ACTIONS(199), - [aux_sym_stop_after_phrase_token1] = ACTIONS(199), - [aux_sym_do_tuning_token1] = ACTIONS(199), - [anon_sym_BY] = ACTIONS(199), - [aux_sym_where_clause_token1] = ACTIONS(199), - [aux_sym_query_tuning_token1] = ACTIONS(199), - [aux_sym_query_tuning_token2] = ACTIONS(199), - [aux_sym_query_tuning_token3] = ACTIONS(199), - [aux_sym_query_tuning_token4] = ACTIONS(199), - [aux_sym_query_tuning_token5] = ACTIONS(199), - [aux_sym_of_token1] = ACTIONS(199), - [aux_sym_field_definition_token1] = ACTIONS(199), - [aux_sym_index_definition_token1] = ACTIONS(199), - [aux_sym_on_statement_token1] = ACTIONS(199), - [sym__or_operator] = ACTIONS(199), - [sym__and_operator] = ACTIONS(199), - }, - [36] = { - [sym_comment] = STATE(36), - [sym_include] = STATE(36), + [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(109), @@ -29504,6 +28775,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_else_if_statement_token1] = ACTIONS(111), [anon_sym_COLON] = ACTIONS(111), [aux_sym_while_phrase_token1] = ACTIONS(111), + [aux_sym_repeat_tuning_token1] = ACTIONS(111), [aux_sym_property_tuning_token1] = ACTIONS(111), [aux_sym_event_definition_token1] = ACTIONS(111), [aux_sym_using_statement_token1] = ACTIONS(111), @@ -29543,411 +28815,416 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__or_operator] = ACTIONS(111), [sym__and_operator] = ACTIONS(111), }, - [37] = { - [sym_comment] = STATE(37), - [sym_include] = STATE(37), + [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(201), + [anon_sym_SLASH] = ACTIONS(159), [anon_sym_LBRACE] = ACTIONS(65), - [anon_sym_STAR] = ACTIONS(203), - [sym__terminator] = ACTIONS(203), - [anon_sym_LPAREN] = ACTIONS(203), - [anon_sym_RPAREN] = ACTIONS(203), - [anon_sym_PLUS] = ACTIONS(203), - [anon_sym_DASH] = ACTIONS(203), - [anon_sym_LT] = ACTIONS(201), - [anon_sym_LT_EQ] = ACTIONS(203), - [anon_sym_LT_GT] = ACTIONS(203), - [anon_sym_EQ] = ACTIONS(203), - [anon_sym_GT] = ACTIONS(201), - [anon_sym_GT_EQ] = ACTIONS(203), - [aux_sym__comparison_operator_token1] = ACTIONS(203), - [aux_sym__comparison_operator_token2] = ACTIONS(203), - [aux_sym__comparison_operator_token3] = ACTIONS(203), - [aux_sym__comparison_operator_token4] = ACTIONS(203), - [aux_sym__comparison_operator_token5] = ACTIONS(203), - [aux_sym__comparison_operator_token6] = ACTIONS(203), - [aux_sym__comparison_operator_token7] = ACTIONS(203), - [aux_sym__comparison_operator_token8] = ACTIONS(203), - [aux_sym__comparison_operator_token9] = ACTIONS(203), - [aux_sym_variable_tuning_token1] = ACTIONS(203), - [aux_sym_variable_tuning_token2] = ACTIONS(203), - [aux_sym_variable_tuning_token3] = ACTIONS(203), - [aux_sym_variable_tuning_token4] = ACTIONS(203), - [aux_sym_variable_tuning_token5] = ACTIONS(203), - [aux_sym_variable_tuning_token6] = ACTIONS(203), - [anon_sym_COMMA] = ACTIONS(203), - [aux_sym_function_call_token1] = ACTIONS(203), - [aux_sym_if_statement_token2] = ACTIONS(203), - [aux_sym_else_if_statement_token1] = ACTIONS(203), - [anon_sym_COLON] = ACTIONS(203), - [aux_sym_while_phrase_token1] = ACTIONS(203), - [aux_sym_property_tuning_token1] = ACTIONS(203), - [aux_sym_event_definition_token1] = ACTIONS(203), - [aux_sym_using_statement_token1] = ACTIONS(203), - [aux_sym_input_stream_tuning_token1] = ACTIONS(203), - [aux_sym_input_stream_tuning_token2] = ACTIONS(203), - [aux_sym_input_stream_tuning_token3] = ACTIONS(203), - [aux_sym_input_stream_tuning_token4] = ACTIONS(203), - [aux_sym_input_stream_tuning_token5] = ACTIONS(203), - [aux_sym_input_stream_tuning_token6] = ACTIONS(203), - [aux_sym_input_stream_tuning_token7] = ACTIONS(203), - [aux_sym_input_stream_tuning_token8] = ACTIONS(203), - [aux_sym_input_stream_tuning_token9] = ACTIONS(203), - [aux_sym_input_stream_tuning_token11] = ACTIONS(203), - [aux_sym_output_stream_tuning_token1] = ACTIONS(203), - [aux_sym_output_stream_tuning_token2] = ACTIONS(203), - [aux_sym_output_stream_tuning_token3] = ACTIONS(203), - [aux_sym_output_stream_tuning_token4] = ACTIONS(203), - [aux_sym_output_stream_tuning_token5] = ACTIONS(203), - [aux_sym_output_stream_tuning_token6] = ACTIONS(203), - [aux_sym_output_stream_tuning_token7] = ACTIONS(203), - [aux_sym_output_stream_tuning_token8] = ACTIONS(203), - [aux_sym_output_stream_statement_token1] = ACTIONS(203), - [aux_sym_on_error_phrase_token1] = ACTIONS(203), - [aux_sym_stop_after_phrase_token1] = ACTIONS(203), - [aux_sym_do_tuning_token1] = ACTIONS(203), - [anon_sym_BY] = ACTIONS(203), - [aux_sym_where_clause_token1] = ACTIONS(203), - [aux_sym_query_tuning_token1] = ACTIONS(203), - [aux_sym_query_tuning_token2] = ACTIONS(203), - [aux_sym_query_tuning_token3] = ACTIONS(203), - [aux_sym_query_tuning_token4] = ACTIONS(203), - [aux_sym_query_tuning_token5] = ACTIONS(203), - [aux_sym_of_token1] = ACTIONS(203), - [aux_sym_field_definition_token1] = ACTIONS(203), - [aux_sym_index_definition_token1] = ACTIONS(203), - [aux_sym_on_statement_token1] = ACTIONS(203), - [sym__or_operator] = ACTIONS(203), - [sym__and_operator] = ACTIONS(203), + [anon_sym_STAR] = ACTIONS(161), + [sym__terminator] = ACTIONS(161), + [anon_sym_LPAREN] = ACTIONS(161), + [anon_sym_RPAREN] = ACTIONS(161), + [anon_sym_PLUS] = ACTIONS(161), + [anon_sym_DASH] = ACTIONS(161), + [anon_sym_LT] = ACTIONS(159), + [anon_sym_LT_EQ] = ACTIONS(161), + [anon_sym_LT_GT] = ACTIONS(161), + [anon_sym_EQ] = ACTIONS(161), + [anon_sym_GT] = ACTIONS(159), + [anon_sym_GT_EQ] = ACTIONS(161), + [aux_sym__comparison_operator_token1] = ACTIONS(161), + [aux_sym__comparison_operator_token2] = ACTIONS(161), + [aux_sym__comparison_operator_token3] = ACTIONS(161), + [aux_sym__comparison_operator_token4] = ACTIONS(161), + [aux_sym__comparison_operator_token5] = ACTIONS(161), + [aux_sym__comparison_operator_token6] = ACTIONS(161), + [aux_sym__comparison_operator_token7] = ACTIONS(161), + [aux_sym__comparison_operator_token8] = ACTIONS(161), + [aux_sym__comparison_operator_token9] = ACTIONS(161), + [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_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), + [aux_sym_while_phrase_token1] = ACTIONS(161), + [aux_sym_repeat_tuning_token1] = ACTIONS(161), + [aux_sym_property_tuning_token1] = ACTIONS(161), + [aux_sym_event_definition_token1] = ACTIONS(161), + [aux_sym_using_statement_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_where_clause_token1] = ACTIONS(161), + [aux_sym_query_tuning_token1] = ACTIONS(161), + [aux_sym_query_tuning_token2] = ACTIONS(161), + [aux_sym_query_tuning_token3] = ACTIONS(161), + [aux_sym_query_tuning_token4] = ACTIONS(161), + [aux_sym_query_tuning_token5] = 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), }, - [38] = { - [sym_comment] = STATE(38), - [sym_include] = STATE(38), + [25] = { + [sym_comment] = STATE(25), + [sym_include] = STATE(25), [anon_sym_SLASH_SLASH] = ACTIONS(59), [anon_sym_SLASH_STAR] = ACTIONS(61), - [anon_sym_SLASH] = ACTIONS(75), + [anon_sym_SLASH] = ACTIONS(163), [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_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), + [anon_sym_STAR] = ACTIONS(165), + [sym__terminator] = ACTIONS(165), + [anon_sym_LPAREN] = ACTIONS(165), + [anon_sym_RPAREN] = ACTIONS(165), + [anon_sym_PLUS] = ACTIONS(165), + [anon_sym_DASH] = ACTIONS(165), + [anon_sym_LT] = ACTIONS(163), + [anon_sym_LT_EQ] = ACTIONS(165), + [anon_sym_LT_GT] = ACTIONS(165), + [anon_sym_EQ] = ACTIONS(165), + [anon_sym_GT] = ACTIONS(163), + [anon_sym_GT_EQ] = ACTIONS(165), + [aux_sym__comparison_operator_token1] = ACTIONS(165), + [aux_sym__comparison_operator_token2] = ACTIONS(165), + [aux_sym__comparison_operator_token3] = ACTIONS(165), + [aux_sym__comparison_operator_token4] = ACTIONS(165), + [aux_sym__comparison_operator_token5] = ACTIONS(165), + [aux_sym__comparison_operator_token6] = ACTIONS(165), + [aux_sym__comparison_operator_token7] = ACTIONS(165), + [aux_sym__comparison_operator_token8] = ACTIONS(165), + [aux_sym__comparison_operator_token9] = ACTIONS(165), + [aux_sym_variable_tuning_token1] = ACTIONS(165), + [aux_sym_variable_tuning_token2] = ACTIONS(165), + [aux_sym_variable_tuning_token3] = ACTIONS(165), + [aux_sym_variable_tuning_token4] = ACTIONS(165), + [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), + [aux_sym_while_phrase_token1] = ACTIONS(165), + [aux_sym_repeat_tuning_token1] = ACTIONS(165), + [aux_sym_property_tuning_token1] = ACTIONS(165), + [aux_sym_event_definition_token1] = ACTIONS(165), + [aux_sym_using_statement_token1] = ACTIONS(165), + [aux_sym_input_stream_tuning_token1] = ACTIONS(165), + [aux_sym_input_stream_tuning_token2] = ACTIONS(165), + [aux_sym_input_stream_tuning_token3] = ACTIONS(165), + [aux_sym_input_stream_tuning_token4] = ACTIONS(165), + [aux_sym_input_stream_tuning_token5] = ACTIONS(165), + [aux_sym_input_stream_tuning_token6] = ACTIONS(165), + [aux_sym_input_stream_tuning_token7] = ACTIONS(165), + [aux_sym_input_stream_tuning_token8] = ACTIONS(165), + [aux_sym_input_stream_tuning_token9] = ACTIONS(165), + [aux_sym_input_stream_tuning_token11] = ACTIONS(165), + [aux_sym_output_stream_tuning_token1] = ACTIONS(165), + [aux_sym_output_stream_tuning_token2] = ACTIONS(165), + [aux_sym_output_stream_tuning_token3] = ACTIONS(165), + [aux_sym_output_stream_tuning_token4] = ACTIONS(165), + [aux_sym_output_stream_tuning_token5] = ACTIONS(165), + [aux_sym_output_stream_tuning_token6] = ACTIONS(165), + [aux_sym_output_stream_tuning_token7] = ACTIONS(165), + [aux_sym_output_stream_tuning_token8] = ACTIONS(165), + [aux_sym_output_stream_statement_token1] = ACTIONS(165), + [aux_sym_on_error_phrase_token1] = ACTIONS(165), + [aux_sym_stop_after_phrase_token1] = ACTIONS(165), + [aux_sym_do_tuning_token1] = ACTIONS(165), + [anon_sym_BY] = ACTIONS(165), + [aux_sym_where_clause_token1] = ACTIONS(165), + [aux_sym_query_tuning_token1] = ACTIONS(165), + [aux_sym_query_tuning_token2] = ACTIONS(165), + [aux_sym_query_tuning_token3] = ACTIONS(165), + [aux_sym_query_tuning_token4] = ACTIONS(165), + [aux_sym_query_tuning_token5] = ACTIONS(165), + [aux_sym_of_token1] = ACTIONS(165), + [aux_sym_field_definition_token1] = ACTIONS(165), + [aux_sym_index_definition_token1] = ACTIONS(165), + [aux_sym_on_statement_token1] = ACTIONS(165), + [sym__or_operator] = ACTIONS(165), + [sym__and_operator] = ACTIONS(165), }, - [39] = { - [sym_comment] = STATE(39), - [sym_include] = STATE(39), + [26] = { + [sym_comment] = STATE(26), + [sym_include] = STATE(26), [anon_sym_SLASH_SLASH] = ACTIONS(59), [anon_sym_SLASH_STAR] = ACTIONS(61), - [anon_sym_SLASH] = ACTIONS(205), + [anon_sym_SLASH] = ACTIONS(167), [anon_sym_LBRACE] = ACTIONS(65), - [anon_sym_STAR] = ACTIONS(207), - [sym__terminator] = ACTIONS(207), - [anon_sym_LPAREN] = ACTIONS(207), - [anon_sym_RPAREN] = ACTIONS(207), - [anon_sym_PLUS] = ACTIONS(207), - [anon_sym_DASH] = ACTIONS(207), - [anon_sym_LT] = ACTIONS(205), - [anon_sym_LT_EQ] = ACTIONS(207), - [anon_sym_LT_GT] = ACTIONS(207), - [anon_sym_EQ] = ACTIONS(207), - [anon_sym_GT] = ACTIONS(205), - [anon_sym_GT_EQ] = ACTIONS(207), - [aux_sym__comparison_operator_token1] = ACTIONS(207), - [aux_sym__comparison_operator_token2] = ACTIONS(207), - [aux_sym__comparison_operator_token3] = ACTIONS(207), - [aux_sym__comparison_operator_token4] = ACTIONS(207), - [aux_sym__comparison_operator_token5] = ACTIONS(207), - [aux_sym__comparison_operator_token6] = ACTIONS(207), - [aux_sym__comparison_operator_token7] = ACTIONS(207), - [aux_sym__comparison_operator_token8] = ACTIONS(207), - [aux_sym__comparison_operator_token9] = ACTIONS(207), - [aux_sym_variable_tuning_token1] = ACTIONS(207), - [aux_sym_variable_tuning_token2] = ACTIONS(207), - [aux_sym_variable_tuning_token3] = ACTIONS(207), - [aux_sym_variable_tuning_token4] = ACTIONS(207), - [aux_sym_variable_tuning_token5] = ACTIONS(207), - [aux_sym_variable_tuning_token6] = ACTIONS(207), - [anon_sym_COMMA] = ACTIONS(207), - [aux_sym_function_call_token1] = ACTIONS(207), - [aux_sym_if_statement_token2] = ACTIONS(207), - [aux_sym_else_if_statement_token1] = ACTIONS(207), - [anon_sym_COLON] = ACTIONS(207), - [aux_sym_while_phrase_token1] = ACTIONS(207), - [aux_sym_property_tuning_token1] = ACTIONS(207), - [aux_sym_event_definition_token1] = ACTIONS(207), - [aux_sym_using_statement_token1] = ACTIONS(207), - [aux_sym_input_stream_tuning_token1] = ACTIONS(207), - [aux_sym_input_stream_tuning_token2] = ACTIONS(207), - [aux_sym_input_stream_tuning_token3] = ACTIONS(207), - [aux_sym_input_stream_tuning_token4] = ACTIONS(207), - [aux_sym_input_stream_tuning_token5] = ACTIONS(207), - [aux_sym_input_stream_tuning_token6] = ACTIONS(207), - [aux_sym_input_stream_tuning_token7] = ACTIONS(207), - [aux_sym_input_stream_tuning_token8] = ACTIONS(207), - [aux_sym_input_stream_tuning_token9] = ACTIONS(207), - [aux_sym_input_stream_tuning_token11] = ACTIONS(207), - [aux_sym_output_stream_tuning_token1] = ACTIONS(207), - [aux_sym_output_stream_tuning_token2] = ACTIONS(207), - [aux_sym_output_stream_tuning_token3] = ACTIONS(207), - [aux_sym_output_stream_tuning_token4] = ACTIONS(207), - [aux_sym_output_stream_tuning_token5] = ACTIONS(207), - [aux_sym_output_stream_tuning_token6] = ACTIONS(207), - [aux_sym_output_stream_tuning_token7] = ACTIONS(207), - [aux_sym_output_stream_tuning_token8] = ACTIONS(207), - [aux_sym_output_stream_statement_token1] = ACTIONS(207), - [aux_sym_on_error_phrase_token1] = ACTIONS(207), - [aux_sym_stop_after_phrase_token1] = ACTIONS(207), - [aux_sym_do_tuning_token1] = ACTIONS(207), - [anon_sym_BY] = ACTIONS(207), - [aux_sym_where_clause_token1] = ACTIONS(207), - [aux_sym_query_tuning_token1] = ACTIONS(207), - [aux_sym_query_tuning_token2] = ACTIONS(207), - [aux_sym_query_tuning_token3] = ACTIONS(207), - [aux_sym_query_tuning_token4] = ACTIONS(207), - [aux_sym_query_tuning_token5] = ACTIONS(207), - [aux_sym_of_token1] = ACTIONS(207), - [aux_sym_field_definition_token1] = ACTIONS(207), - [aux_sym_index_definition_token1] = ACTIONS(207), - [aux_sym_on_statement_token1] = ACTIONS(207), - [sym__or_operator] = ACTIONS(207), - [sym__and_operator] = ACTIONS(207), + [anon_sym_STAR] = ACTIONS(169), + [sym__terminator] = ACTIONS(169), + [anon_sym_LPAREN] = ACTIONS(169), + [anon_sym_RPAREN] = ACTIONS(169), + [anon_sym_PLUS] = ACTIONS(169), + [anon_sym_DASH] = ACTIONS(169), + [anon_sym_LT] = ACTIONS(167), + [anon_sym_LT_EQ] = ACTIONS(169), + [anon_sym_LT_GT] = ACTIONS(169), + [anon_sym_EQ] = ACTIONS(169), + [anon_sym_GT] = ACTIONS(167), + [anon_sym_GT_EQ] = ACTIONS(169), + [aux_sym__comparison_operator_token1] = ACTIONS(169), + [aux_sym__comparison_operator_token2] = ACTIONS(169), + [aux_sym__comparison_operator_token3] = ACTIONS(169), + [aux_sym__comparison_operator_token4] = ACTIONS(169), + [aux_sym__comparison_operator_token5] = ACTIONS(169), + [aux_sym__comparison_operator_token6] = ACTIONS(169), + [aux_sym__comparison_operator_token7] = ACTIONS(169), + [aux_sym__comparison_operator_token8] = ACTIONS(169), + [aux_sym__comparison_operator_token9] = ACTIONS(169), + [aux_sym_variable_tuning_token1] = ACTIONS(169), + [aux_sym_variable_tuning_token2] = ACTIONS(169), + [aux_sym_variable_tuning_token3] = ACTIONS(169), + [aux_sym_variable_tuning_token4] = ACTIONS(169), + [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), + [aux_sym_while_phrase_token1] = ACTIONS(169), + [aux_sym_repeat_tuning_token1] = ACTIONS(169), + [aux_sym_property_tuning_token1] = ACTIONS(169), + [aux_sym_event_definition_token1] = ACTIONS(169), + [aux_sym_using_statement_token1] = ACTIONS(169), + [aux_sym_input_stream_tuning_token1] = ACTIONS(169), + [aux_sym_input_stream_tuning_token2] = ACTIONS(169), + [aux_sym_input_stream_tuning_token3] = ACTIONS(169), + [aux_sym_input_stream_tuning_token4] = ACTIONS(169), + [aux_sym_input_stream_tuning_token5] = ACTIONS(169), + [aux_sym_input_stream_tuning_token6] = ACTIONS(169), + [aux_sym_input_stream_tuning_token7] = ACTIONS(169), + [aux_sym_input_stream_tuning_token8] = ACTIONS(169), + [aux_sym_input_stream_tuning_token9] = ACTIONS(169), + [aux_sym_input_stream_tuning_token11] = ACTIONS(169), + [aux_sym_output_stream_tuning_token1] = ACTIONS(169), + [aux_sym_output_stream_tuning_token2] = ACTIONS(169), + [aux_sym_output_stream_tuning_token3] = ACTIONS(169), + [aux_sym_output_stream_tuning_token4] = ACTIONS(169), + [aux_sym_output_stream_tuning_token5] = ACTIONS(169), + [aux_sym_output_stream_tuning_token6] = ACTIONS(169), + [aux_sym_output_stream_tuning_token7] = ACTIONS(169), + [aux_sym_output_stream_tuning_token8] = ACTIONS(169), + [aux_sym_output_stream_statement_token1] = ACTIONS(169), + [aux_sym_on_error_phrase_token1] = ACTIONS(169), + [aux_sym_stop_after_phrase_token1] = ACTIONS(169), + [aux_sym_do_tuning_token1] = ACTIONS(169), + [anon_sym_BY] = ACTIONS(169), + [aux_sym_where_clause_token1] = ACTIONS(169), + [aux_sym_query_tuning_token1] = ACTIONS(169), + [aux_sym_query_tuning_token2] = ACTIONS(169), + [aux_sym_query_tuning_token3] = ACTIONS(169), + [aux_sym_query_tuning_token4] = ACTIONS(169), + [aux_sym_query_tuning_token5] = ACTIONS(169), + [aux_sym_of_token1] = ACTIONS(169), + [aux_sym_field_definition_token1] = ACTIONS(169), + [aux_sym_index_definition_token1] = ACTIONS(169), + [aux_sym_on_statement_token1] = ACTIONS(169), + [sym__or_operator] = ACTIONS(169), + [sym__and_operator] = ACTIONS(169), }, - [40] = { - [sym_comment] = STATE(40), - [sym_include] = STATE(40), + [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(209), + [anon_sym_SLASH] = ACTIONS(171), [anon_sym_LBRACE] = ACTIONS(65), - [anon_sym_STAR] = ACTIONS(211), - [sym__terminator] = ACTIONS(211), - [anon_sym_LPAREN] = ACTIONS(211), - [anon_sym_RPAREN] = ACTIONS(211), - [anon_sym_PLUS] = ACTIONS(211), - [anon_sym_DASH] = ACTIONS(211), - [anon_sym_LT] = ACTIONS(209), - [anon_sym_LT_EQ] = ACTIONS(211), - [anon_sym_LT_GT] = ACTIONS(211), - [anon_sym_EQ] = ACTIONS(211), - [anon_sym_GT] = ACTIONS(209), - [anon_sym_GT_EQ] = ACTIONS(211), - [aux_sym__comparison_operator_token1] = ACTIONS(211), - [aux_sym__comparison_operator_token2] = ACTIONS(211), - [aux_sym__comparison_operator_token3] = ACTIONS(211), - [aux_sym__comparison_operator_token4] = ACTIONS(211), - [aux_sym__comparison_operator_token5] = ACTIONS(211), - [aux_sym__comparison_operator_token6] = ACTIONS(211), - [aux_sym__comparison_operator_token7] = ACTIONS(211), - [aux_sym__comparison_operator_token8] = ACTIONS(211), - [aux_sym__comparison_operator_token9] = ACTIONS(211), - [aux_sym_variable_tuning_token1] = ACTIONS(211), - [aux_sym_variable_tuning_token2] = ACTIONS(211), - [aux_sym_variable_tuning_token3] = ACTIONS(211), - [aux_sym_variable_tuning_token4] = ACTIONS(211), - [aux_sym_variable_tuning_token5] = ACTIONS(211), - [aux_sym_variable_tuning_token6] = ACTIONS(211), - [anon_sym_COMMA] = ACTIONS(211), - [aux_sym_function_call_token1] = ACTIONS(211), - [aux_sym_if_statement_token2] = ACTIONS(211), - [aux_sym_else_if_statement_token1] = ACTIONS(211), - [anon_sym_COLON] = ACTIONS(211), - [aux_sym_while_phrase_token1] = ACTIONS(211), - [aux_sym_property_tuning_token1] = ACTIONS(211), - [aux_sym_event_definition_token1] = ACTIONS(211), - [aux_sym_using_statement_token1] = ACTIONS(211), - [aux_sym_input_stream_tuning_token1] = ACTIONS(211), - [aux_sym_input_stream_tuning_token2] = ACTIONS(211), - [aux_sym_input_stream_tuning_token3] = ACTIONS(211), - [aux_sym_input_stream_tuning_token4] = ACTIONS(211), - [aux_sym_input_stream_tuning_token5] = ACTIONS(211), - [aux_sym_input_stream_tuning_token6] = ACTIONS(211), - [aux_sym_input_stream_tuning_token7] = ACTIONS(211), - [aux_sym_input_stream_tuning_token8] = ACTIONS(211), - [aux_sym_input_stream_tuning_token9] = ACTIONS(211), - [aux_sym_input_stream_tuning_token11] = ACTIONS(211), - [aux_sym_output_stream_tuning_token1] = ACTIONS(211), - [aux_sym_output_stream_tuning_token2] = ACTIONS(211), - [aux_sym_output_stream_tuning_token3] = ACTIONS(211), - [aux_sym_output_stream_tuning_token4] = ACTIONS(211), - [aux_sym_output_stream_tuning_token5] = ACTIONS(211), - [aux_sym_output_stream_tuning_token6] = ACTIONS(211), - [aux_sym_output_stream_tuning_token7] = ACTIONS(211), - [aux_sym_output_stream_tuning_token8] = ACTIONS(211), - [aux_sym_output_stream_statement_token1] = ACTIONS(211), - [aux_sym_on_error_phrase_token1] = ACTIONS(211), - [aux_sym_stop_after_phrase_token1] = ACTIONS(211), - [aux_sym_do_tuning_token1] = ACTIONS(211), - [anon_sym_BY] = ACTIONS(211), - [aux_sym_where_clause_token1] = ACTIONS(211), - [aux_sym_query_tuning_token1] = ACTIONS(211), - [aux_sym_query_tuning_token2] = ACTIONS(211), - [aux_sym_query_tuning_token3] = ACTIONS(211), - [aux_sym_query_tuning_token4] = ACTIONS(211), - [aux_sym_query_tuning_token5] = ACTIONS(211), - [aux_sym_of_token1] = ACTIONS(211), - [aux_sym_field_definition_token1] = ACTIONS(211), - [aux_sym_index_definition_token1] = ACTIONS(211), - [aux_sym_on_statement_token1] = ACTIONS(211), - [sym__or_operator] = ACTIONS(211), - [sym__and_operator] = ACTIONS(211), + [anon_sym_STAR] = ACTIONS(173), + [sym__terminator] = ACTIONS(173), + [anon_sym_LPAREN] = ACTIONS(173), + [anon_sym_RPAREN] = ACTIONS(173), + [anon_sym_PLUS] = ACTIONS(173), + [anon_sym_DASH] = ACTIONS(173), + [anon_sym_LT] = ACTIONS(171), + [anon_sym_LT_EQ] = ACTIONS(173), + [anon_sym_LT_GT] = ACTIONS(173), + [anon_sym_EQ] = ACTIONS(173), + [anon_sym_GT] = ACTIONS(171), + [anon_sym_GT_EQ] = ACTIONS(173), + [aux_sym__comparison_operator_token1] = ACTIONS(173), + [aux_sym__comparison_operator_token2] = ACTIONS(173), + [aux_sym__comparison_operator_token3] = ACTIONS(173), + [aux_sym__comparison_operator_token4] = ACTIONS(173), + [aux_sym__comparison_operator_token5] = ACTIONS(173), + [aux_sym__comparison_operator_token6] = ACTIONS(173), + [aux_sym__comparison_operator_token7] = ACTIONS(173), + [aux_sym__comparison_operator_token8] = ACTIONS(173), + [aux_sym__comparison_operator_token9] = ACTIONS(173), + [aux_sym_variable_tuning_token1] = ACTIONS(173), + [aux_sym_variable_tuning_token2] = ACTIONS(173), + [aux_sym_variable_tuning_token3] = ACTIONS(173), + [aux_sym_variable_tuning_token4] = ACTIONS(173), + [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), + [aux_sym_while_phrase_token1] = ACTIONS(173), + [aux_sym_repeat_tuning_token1] = ACTIONS(173), + [aux_sym_property_tuning_token1] = ACTIONS(173), + [aux_sym_event_definition_token1] = ACTIONS(173), + [aux_sym_using_statement_token1] = ACTIONS(173), + [aux_sym_input_stream_tuning_token1] = ACTIONS(173), + [aux_sym_input_stream_tuning_token2] = ACTIONS(173), + [aux_sym_input_stream_tuning_token3] = ACTIONS(173), + [aux_sym_input_stream_tuning_token4] = ACTIONS(173), + [aux_sym_input_stream_tuning_token5] = ACTIONS(173), + [aux_sym_input_stream_tuning_token6] = ACTIONS(173), + [aux_sym_input_stream_tuning_token7] = ACTIONS(173), + [aux_sym_input_stream_tuning_token8] = ACTIONS(173), + [aux_sym_input_stream_tuning_token9] = ACTIONS(173), + [aux_sym_input_stream_tuning_token11] = ACTIONS(173), + [aux_sym_output_stream_tuning_token1] = ACTIONS(173), + [aux_sym_output_stream_tuning_token2] = ACTIONS(173), + [aux_sym_output_stream_tuning_token3] = ACTIONS(173), + [aux_sym_output_stream_tuning_token4] = ACTIONS(173), + [aux_sym_output_stream_tuning_token5] = ACTIONS(173), + [aux_sym_output_stream_tuning_token6] = ACTIONS(173), + [aux_sym_output_stream_tuning_token7] = ACTIONS(173), + [aux_sym_output_stream_tuning_token8] = ACTIONS(173), + [aux_sym_output_stream_statement_token1] = ACTIONS(173), + [aux_sym_on_error_phrase_token1] = ACTIONS(173), + [aux_sym_stop_after_phrase_token1] = ACTIONS(173), + [aux_sym_do_tuning_token1] = ACTIONS(173), + [anon_sym_BY] = ACTIONS(173), + [aux_sym_where_clause_token1] = ACTIONS(173), + [aux_sym_query_tuning_token1] = ACTIONS(173), + [aux_sym_query_tuning_token2] = ACTIONS(173), + [aux_sym_query_tuning_token3] = ACTIONS(173), + [aux_sym_query_tuning_token4] = ACTIONS(173), + [aux_sym_query_tuning_token5] = ACTIONS(173), + [aux_sym_of_token1] = ACTIONS(173), + [aux_sym_field_definition_token1] = ACTIONS(173), + [aux_sym_index_definition_token1] = ACTIONS(173), + [aux_sym_on_statement_token1] = ACTIONS(173), + [sym__or_operator] = ACTIONS(173), + [sym__and_operator] = ACTIONS(173), }, - [41] = { - [sym_comment] = STATE(41), - [sym_include] = STATE(41), + [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(213), + [anon_sym_SLASH] = ACTIONS(175), [anon_sym_LBRACE] = ACTIONS(65), - [anon_sym_STAR] = ACTIONS(215), - [sym__terminator] = ACTIONS(215), - [anon_sym_LPAREN] = ACTIONS(215), - [anon_sym_RPAREN] = ACTIONS(215), - [anon_sym_PLUS] = ACTIONS(215), - [anon_sym_DASH] = ACTIONS(215), - [anon_sym_LT] = ACTIONS(213), - [anon_sym_LT_EQ] = ACTIONS(215), - [anon_sym_LT_GT] = ACTIONS(215), - [anon_sym_EQ] = ACTIONS(215), - [anon_sym_GT] = ACTIONS(213), - [anon_sym_GT_EQ] = ACTIONS(215), - [aux_sym__comparison_operator_token1] = ACTIONS(215), - [aux_sym__comparison_operator_token2] = ACTIONS(215), - [aux_sym__comparison_operator_token3] = ACTIONS(215), - [aux_sym__comparison_operator_token4] = ACTIONS(215), - [aux_sym__comparison_operator_token5] = ACTIONS(215), - [aux_sym__comparison_operator_token6] = ACTIONS(215), - [aux_sym__comparison_operator_token7] = ACTIONS(215), - [aux_sym__comparison_operator_token8] = ACTIONS(215), - [aux_sym__comparison_operator_token9] = ACTIONS(215), - [aux_sym_variable_tuning_token1] = ACTIONS(215), - [aux_sym_variable_tuning_token2] = ACTIONS(215), - [aux_sym_variable_tuning_token3] = ACTIONS(215), - [aux_sym_variable_tuning_token4] = ACTIONS(215), - [aux_sym_variable_tuning_token5] = ACTIONS(215), - [aux_sym_variable_tuning_token6] = ACTIONS(215), - [anon_sym_COMMA] = ACTIONS(215), - [aux_sym_function_call_token1] = ACTIONS(215), - [aux_sym_if_statement_token2] = ACTIONS(215), - [aux_sym_else_if_statement_token1] = ACTIONS(215), - [anon_sym_COLON] = ACTIONS(215), - [aux_sym_while_phrase_token1] = ACTIONS(215), - [aux_sym_property_tuning_token1] = ACTIONS(215), - [aux_sym_event_definition_token1] = ACTIONS(215), - [aux_sym_using_statement_token1] = ACTIONS(215), - [aux_sym_input_stream_tuning_token1] = ACTIONS(215), - [aux_sym_input_stream_tuning_token2] = ACTIONS(215), - [aux_sym_input_stream_tuning_token3] = ACTIONS(215), - [aux_sym_input_stream_tuning_token4] = ACTIONS(215), - [aux_sym_input_stream_tuning_token5] = ACTIONS(215), - [aux_sym_input_stream_tuning_token6] = ACTIONS(215), - [aux_sym_input_stream_tuning_token7] = ACTIONS(215), - [aux_sym_input_stream_tuning_token8] = ACTIONS(215), - [aux_sym_input_stream_tuning_token9] = ACTIONS(215), - [aux_sym_input_stream_tuning_token11] = ACTIONS(215), - [aux_sym_output_stream_tuning_token1] = ACTIONS(215), - [aux_sym_output_stream_tuning_token2] = ACTIONS(215), - [aux_sym_output_stream_tuning_token3] = ACTIONS(215), - [aux_sym_output_stream_tuning_token4] = ACTIONS(215), - [aux_sym_output_stream_tuning_token5] = ACTIONS(215), - [aux_sym_output_stream_tuning_token6] = ACTIONS(215), - [aux_sym_output_stream_tuning_token7] = ACTIONS(215), - [aux_sym_output_stream_tuning_token8] = ACTIONS(215), - [aux_sym_output_stream_statement_token1] = ACTIONS(215), - [aux_sym_on_error_phrase_token1] = ACTIONS(215), - [aux_sym_stop_after_phrase_token1] = ACTIONS(215), - [aux_sym_do_tuning_token1] = ACTIONS(215), - [anon_sym_BY] = ACTIONS(215), - [aux_sym_where_clause_token1] = ACTIONS(215), - [aux_sym_query_tuning_token1] = ACTIONS(215), - [aux_sym_query_tuning_token2] = ACTIONS(215), - [aux_sym_query_tuning_token3] = ACTIONS(215), - [aux_sym_query_tuning_token4] = ACTIONS(215), - [aux_sym_query_tuning_token5] = ACTIONS(215), - [aux_sym_of_token1] = ACTIONS(215), - [aux_sym_field_definition_token1] = ACTIONS(215), - [aux_sym_index_definition_token1] = ACTIONS(215), - [aux_sym_on_statement_token1] = ACTIONS(215), - [sym__or_operator] = ACTIONS(215), - [sym__and_operator] = ACTIONS(215), + [anon_sym_STAR] = ACTIONS(177), + [sym__terminator] = ACTIONS(177), + [anon_sym_LPAREN] = ACTIONS(177), + [anon_sym_RPAREN] = ACTIONS(177), + [anon_sym_PLUS] = ACTIONS(177), + [anon_sym_DASH] = ACTIONS(177), + [anon_sym_LT] = ACTIONS(175), + [anon_sym_LT_EQ] = ACTIONS(177), + [anon_sym_LT_GT] = ACTIONS(177), + [anon_sym_EQ] = ACTIONS(177), + [anon_sym_GT] = ACTIONS(175), + [anon_sym_GT_EQ] = ACTIONS(177), + [aux_sym__comparison_operator_token1] = ACTIONS(177), + [aux_sym__comparison_operator_token2] = ACTIONS(177), + [aux_sym__comparison_operator_token3] = ACTIONS(177), + [aux_sym__comparison_operator_token4] = ACTIONS(177), + [aux_sym__comparison_operator_token5] = ACTIONS(177), + [aux_sym__comparison_operator_token6] = ACTIONS(177), + [aux_sym__comparison_operator_token7] = ACTIONS(177), + [aux_sym__comparison_operator_token8] = ACTIONS(177), + [aux_sym__comparison_operator_token9] = ACTIONS(177), + [aux_sym_variable_tuning_token1] = ACTIONS(177), + [aux_sym_variable_tuning_token2] = ACTIONS(177), + [aux_sym_variable_tuning_token3] = ACTIONS(177), + [aux_sym_variable_tuning_token4] = ACTIONS(177), + [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), + [aux_sym_while_phrase_token1] = ACTIONS(177), + [aux_sym_repeat_tuning_token1] = ACTIONS(177), + [aux_sym_property_tuning_token1] = ACTIONS(177), + [aux_sym_event_definition_token1] = ACTIONS(177), + [aux_sym_using_statement_token1] = ACTIONS(177), + [aux_sym_input_stream_tuning_token1] = ACTIONS(177), + [aux_sym_input_stream_tuning_token2] = ACTIONS(177), + [aux_sym_input_stream_tuning_token3] = ACTIONS(177), + [aux_sym_input_stream_tuning_token4] = ACTIONS(177), + [aux_sym_input_stream_tuning_token5] = ACTIONS(177), + [aux_sym_input_stream_tuning_token6] = ACTIONS(177), + [aux_sym_input_stream_tuning_token7] = ACTIONS(177), + [aux_sym_input_stream_tuning_token8] = ACTIONS(177), + [aux_sym_input_stream_tuning_token9] = ACTIONS(177), + [aux_sym_input_stream_tuning_token11] = ACTIONS(177), + [aux_sym_output_stream_tuning_token1] = ACTIONS(177), + [aux_sym_output_stream_tuning_token2] = ACTIONS(177), + [aux_sym_output_stream_tuning_token3] = ACTIONS(177), + [aux_sym_output_stream_tuning_token4] = ACTIONS(177), + [aux_sym_output_stream_tuning_token5] = ACTIONS(177), + [aux_sym_output_stream_tuning_token6] = ACTIONS(177), + [aux_sym_output_stream_tuning_token7] = ACTIONS(177), + [aux_sym_output_stream_tuning_token8] = ACTIONS(177), + [aux_sym_output_stream_statement_token1] = ACTIONS(177), + [aux_sym_on_error_phrase_token1] = ACTIONS(177), + [aux_sym_stop_after_phrase_token1] = ACTIONS(177), + [aux_sym_do_tuning_token1] = ACTIONS(177), + [anon_sym_BY] = ACTIONS(177), + [aux_sym_where_clause_token1] = ACTIONS(177), + [aux_sym_query_tuning_token1] = ACTIONS(177), + [aux_sym_query_tuning_token2] = ACTIONS(177), + [aux_sym_query_tuning_token3] = ACTIONS(177), + [aux_sym_query_tuning_token4] = ACTIONS(177), + [aux_sym_query_tuning_token5] = ACTIONS(177), + [aux_sym_of_token1] = ACTIONS(177), + [aux_sym_field_definition_token1] = ACTIONS(177), + [aux_sym_index_definition_token1] = ACTIONS(177), + [aux_sym_on_statement_token1] = ACTIONS(177), + [sym__or_operator] = ACTIONS(177), + [sym__and_operator] = ACTIONS(177), }, - [42] = { - [sym_comment] = STATE(42), - [sym_include] = STATE(42), + [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(63), [anon_sym_LBRACE] = ACTIONS(65), [anon_sym_STAR] = ACTIONS(67), [sym__terminator] = ACTIONS(67), - [anon_sym_LPAREN] = ACTIONS(67), + [anon_sym_LPAREN] = ACTIONS(69), [anon_sym_RPAREN] = ACTIONS(67), [anon_sym_PLUS] = ACTIONS(67), [anon_sym_DASH] = ACTIONS(67), @@ -29978,6 +29255,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_else_if_statement_token1] = ACTIONS(67), [anon_sym_COLON] = ACTIONS(67), [aux_sym_while_phrase_token1] = ACTIONS(67), + [aux_sym_repeat_tuning_token1] = ACTIONS(67), [aux_sym_property_tuning_token1] = ACTIONS(67), [aux_sym_event_definition_token1] = ACTIONS(67), [aux_sym_using_statement_token1] = ACTIONS(67), @@ -30017,246 +29295,489 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__or_operator] = ACTIONS(67), [sym__and_operator] = ACTIONS(67), }, - [43] = { - [sym_comment] = STATE(43), - [sym_include] = STATE(43), + [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(217), + [anon_sym_SLASH] = ACTIONS(179), [anon_sym_LBRACE] = ACTIONS(65), - [anon_sym_STAR] = ACTIONS(219), - [sym__terminator] = ACTIONS(219), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_RPAREN] = ACTIONS(219), - [anon_sym_PLUS] = ACTIONS(219), - [anon_sym_DASH] = ACTIONS(219), - [anon_sym_LT] = ACTIONS(217), - [anon_sym_LT_EQ] = ACTIONS(219), - [anon_sym_LT_GT] = ACTIONS(219), - [anon_sym_EQ] = ACTIONS(219), - [anon_sym_GT] = ACTIONS(217), - [anon_sym_GT_EQ] = ACTIONS(219), - [aux_sym__comparison_operator_token1] = ACTIONS(219), - [aux_sym__comparison_operator_token2] = ACTIONS(219), - [aux_sym__comparison_operator_token3] = ACTIONS(219), - [aux_sym__comparison_operator_token4] = ACTIONS(219), - [aux_sym__comparison_operator_token5] = ACTIONS(219), - [aux_sym__comparison_operator_token6] = ACTIONS(219), - [aux_sym__comparison_operator_token7] = ACTIONS(219), - [aux_sym__comparison_operator_token8] = ACTIONS(219), - [aux_sym__comparison_operator_token9] = ACTIONS(219), - [aux_sym_variable_tuning_token1] = ACTIONS(219), - [aux_sym_variable_tuning_token2] = ACTIONS(219), - [aux_sym_variable_tuning_token3] = ACTIONS(219), - [aux_sym_variable_tuning_token4] = ACTIONS(219), - [aux_sym_variable_tuning_token5] = ACTIONS(219), - [aux_sym_variable_tuning_token6] = ACTIONS(219), - [anon_sym_COMMA] = ACTIONS(219), - [aux_sym_function_call_token1] = ACTIONS(219), - [aux_sym_if_statement_token2] = ACTIONS(219), - [aux_sym_else_if_statement_token1] = ACTIONS(219), - [anon_sym_COLON] = ACTIONS(219), - [aux_sym_while_phrase_token1] = ACTIONS(219), - [aux_sym_property_tuning_token1] = ACTIONS(219), - [aux_sym_event_definition_token1] = ACTIONS(219), - [aux_sym_using_statement_token1] = ACTIONS(219), - [aux_sym_input_stream_tuning_token1] = ACTIONS(219), - [aux_sym_input_stream_tuning_token2] = ACTIONS(219), - [aux_sym_input_stream_tuning_token3] = ACTIONS(219), - [aux_sym_input_stream_tuning_token4] = ACTIONS(219), - [aux_sym_input_stream_tuning_token5] = ACTIONS(219), - [aux_sym_input_stream_tuning_token6] = ACTIONS(219), - [aux_sym_input_stream_tuning_token7] = ACTIONS(219), - [aux_sym_input_stream_tuning_token8] = ACTIONS(219), - [aux_sym_input_stream_tuning_token9] = ACTIONS(219), - [aux_sym_input_stream_tuning_token11] = ACTIONS(219), - [aux_sym_output_stream_tuning_token1] = ACTIONS(219), - [aux_sym_output_stream_tuning_token2] = ACTIONS(219), - [aux_sym_output_stream_tuning_token3] = ACTIONS(219), - [aux_sym_output_stream_tuning_token4] = ACTIONS(219), - [aux_sym_output_stream_tuning_token5] = ACTIONS(219), - [aux_sym_output_stream_tuning_token6] = ACTIONS(219), - [aux_sym_output_stream_tuning_token7] = ACTIONS(219), - [aux_sym_output_stream_tuning_token8] = ACTIONS(219), - [aux_sym_output_stream_statement_token1] = ACTIONS(219), - [aux_sym_on_error_phrase_token1] = ACTIONS(219), - [aux_sym_stop_after_phrase_token1] = ACTIONS(219), - [aux_sym_do_tuning_token1] = ACTIONS(219), - [anon_sym_BY] = ACTIONS(219), - [aux_sym_where_clause_token1] = ACTIONS(219), - [aux_sym_query_tuning_token1] = ACTIONS(219), - [aux_sym_query_tuning_token2] = ACTIONS(219), - [aux_sym_query_tuning_token3] = ACTIONS(219), - [aux_sym_query_tuning_token4] = ACTIONS(219), - [aux_sym_query_tuning_token5] = ACTIONS(219), - [aux_sym_of_token1] = ACTIONS(219), - [aux_sym_field_definition_token1] = ACTIONS(219), - [aux_sym_index_definition_token1] = ACTIONS(219), - [aux_sym_on_statement_token1] = ACTIONS(219), - [sym__or_operator] = ACTIONS(219), - [sym__and_operator] = ACTIONS(219), + [anon_sym_STAR] = ACTIONS(181), + [sym__terminator] = ACTIONS(181), + [anon_sym_LPAREN] = ACTIONS(181), + [anon_sym_RPAREN] = ACTIONS(181), + [anon_sym_PLUS] = ACTIONS(181), + [anon_sym_DASH] = ACTIONS(181), + [anon_sym_LT] = ACTIONS(179), + [anon_sym_LT_EQ] = ACTIONS(181), + [anon_sym_LT_GT] = ACTIONS(181), + [anon_sym_EQ] = ACTIONS(181), + [anon_sym_GT] = ACTIONS(179), + [anon_sym_GT_EQ] = ACTIONS(181), + [aux_sym__comparison_operator_token1] = ACTIONS(181), + [aux_sym__comparison_operator_token2] = ACTIONS(181), + [aux_sym__comparison_operator_token3] = ACTIONS(181), + [aux_sym__comparison_operator_token4] = ACTIONS(181), + [aux_sym__comparison_operator_token5] = ACTIONS(181), + [aux_sym__comparison_operator_token6] = ACTIONS(181), + [aux_sym__comparison_operator_token7] = ACTIONS(181), + [aux_sym__comparison_operator_token8] = ACTIONS(181), + [aux_sym__comparison_operator_token9] = ACTIONS(181), + [aux_sym_variable_tuning_token1] = ACTIONS(181), + [aux_sym_variable_tuning_token2] = ACTIONS(181), + [aux_sym_variable_tuning_token3] = ACTIONS(181), + [aux_sym_variable_tuning_token4] = ACTIONS(181), + [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), + [aux_sym_while_phrase_token1] = ACTIONS(181), + [aux_sym_repeat_tuning_token1] = ACTIONS(181), + [aux_sym_property_tuning_token1] = ACTIONS(181), + [aux_sym_event_definition_token1] = ACTIONS(181), + [aux_sym_using_statement_token1] = ACTIONS(181), + [aux_sym_input_stream_tuning_token1] = ACTIONS(181), + [aux_sym_input_stream_tuning_token2] = ACTIONS(181), + [aux_sym_input_stream_tuning_token3] = ACTIONS(181), + [aux_sym_input_stream_tuning_token4] = ACTIONS(181), + [aux_sym_input_stream_tuning_token5] = ACTIONS(181), + [aux_sym_input_stream_tuning_token6] = ACTIONS(181), + [aux_sym_input_stream_tuning_token7] = ACTIONS(181), + [aux_sym_input_stream_tuning_token8] = ACTIONS(181), + [aux_sym_input_stream_tuning_token9] = ACTIONS(181), + [aux_sym_input_stream_tuning_token11] = ACTIONS(181), + [aux_sym_output_stream_tuning_token1] = ACTIONS(181), + [aux_sym_output_stream_tuning_token2] = ACTIONS(181), + [aux_sym_output_stream_tuning_token3] = ACTIONS(181), + [aux_sym_output_stream_tuning_token4] = ACTIONS(181), + [aux_sym_output_stream_tuning_token5] = ACTIONS(181), + [aux_sym_output_stream_tuning_token6] = ACTIONS(181), + [aux_sym_output_stream_tuning_token7] = ACTIONS(181), + [aux_sym_output_stream_tuning_token8] = ACTIONS(181), + [aux_sym_output_stream_statement_token1] = ACTIONS(181), + [aux_sym_on_error_phrase_token1] = ACTIONS(181), + [aux_sym_stop_after_phrase_token1] = ACTIONS(181), + [aux_sym_do_tuning_token1] = ACTIONS(181), + [anon_sym_BY] = ACTIONS(181), + [aux_sym_where_clause_token1] = ACTIONS(181), + [aux_sym_query_tuning_token1] = ACTIONS(181), + [aux_sym_query_tuning_token2] = ACTIONS(181), + [aux_sym_query_tuning_token3] = ACTIONS(181), + [aux_sym_query_tuning_token4] = ACTIONS(181), + [aux_sym_query_tuning_token5] = ACTIONS(181), + [aux_sym_of_token1] = ACTIONS(181), + [aux_sym_field_definition_token1] = ACTIONS(181), + [aux_sym_index_definition_token1] = ACTIONS(181), + [aux_sym_on_statement_token1] = ACTIONS(181), + [sym__or_operator] = ACTIONS(181), + [sym__and_operator] = ACTIONS(181), }, - [44] = { - [sym_comment] = STATE(44), - [sym_include] = STATE(44), + [31] = { + [sym_comment] = STATE(31), + [sym_include] = STATE(31), [anon_sym_SLASH_SLASH] = ACTIONS(59), [anon_sym_SLASH_STAR] = ACTIONS(61), - [anon_sym_SLASH] = ACTIONS(221), + [anon_sym_SLASH] = ACTIONS(183), [anon_sym_LBRACE] = ACTIONS(65), - [anon_sym_STAR] = ACTIONS(223), - [sym__terminator] = ACTIONS(223), - [anon_sym_LPAREN] = ACTIONS(223), - [anon_sym_RPAREN] = ACTIONS(223), - [anon_sym_PLUS] = ACTIONS(223), - [anon_sym_DASH] = ACTIONS(223), - [anon_sym_LT] = ACTIONS(221), - [anon_sym_LT_EQ] = ACTIONS(223), - [anon_sym_LT_GT] = ACTIONS(223), - [anon_sym_EQ] = ACTIONS(223), - [anon_sym_GT] = ACTIONS(221), - [anon_sym_GT_EQ] = ACTIONS(223), - [aux_sym__comparison_operator_token1] = ACTIONS(223), - [aux_sym__comparison_operator_token2] = ACTIONS(223), - [aux_sym__comparison_operator_token3] = ACTIONS(223), - [aux_sym__comparison_operator_token4] = ACTIONS(223), - [aux_sym__comparison_operator_token5] = ACTIONS(223), - [aux_sym__comparison_operator_token6] = ACTIONS(223), - [aux_sym__comparison_operator_token7] = ACTIONS(223), - [aux_sym__comparison_operator_token8] = ACTIONS(223), - [aux_sym__comparison_operator_token9] = ACTIONS(223), - [aux_sym_variable_tuning_token1] = ACTIONS(223), - [aux_sym_variable_tuning_token2] = ACTIONS(223), - [aux_sym_variable_tuning_token3] = ACTIONS(223), - [aux_sym_variable_tuning_token4] = ACTIONS(223), - [aux_sym_variable_tuning_token5] = ACTIONS(223), - [aux_sym_variable_tuning_token6] = ACTIONS(223), - [anon_sym_COMMA] = ACTIONS(223), - [aux_sym_function_call_token1] = ACTIONS(223), - [aux_sym_if_statement_token2] = ACTIONS(223), - [aux_sym_else_if_statement_token1] = ACTIONS(223), - [anon_sym_COLON] = ACTIONS(223), - [aux_sym_while_phrase_token1] = ACTIONS(223), - [aux_sym_property_tuning_token1] = ACTIONS(223), - [aux_sym_event_definition_token1] = ACTIONS(223), - [aux_sym_using_statement_token1] = ACTIONS(223), - [aux_sym_input_stream_tuning_token1] = ACTIONS(223), - [aux_sym_input_stream_tuning_token2] = ACTIONS(223), - [aux_sym_input_stream_tuning_token3] = ACTIONS(223), - [aux_sym_input_stream_tuning_token4] = ACTIONS(223), - [aux_sym_input_stream_tuning_token5] = ACTIONS(223), - [aux_sym_input_stream_tuning_token6] = ACTIONS(223), - [aux_sym_input_stream_tuning_token7] = ACTIONS(223), - [aux_sym_input_stream_tuning_token8] = ACTIONS(223), - [aux_sym_input_stream_tuning_token9] = ACTIONS(223), - [aux_sym_input_stream_tuning_token11] = ACTIONS(223), - [aux_sym_output_stream_tuning_token1] = ACTIONS(223), - [aux_sym_output_stream_tuning_token2] = ACTIONS(223), - [aux_sym_output_stream_tuning_token3] = ACTIONS(223), - [aux_sym_output_stream_tuning_token4] = ACTIONS(223), - [aux_sym_output_stream_tuning_token5] = ACTIONS(223), - [aux_sym_output_stream_tuning_token6] = ACTIONS(223), - [aux_sym_output_stream_tuning_token7] = ACTIONS(223), - [aux_sym_output_stream_tuning_token8] = ACTIONS(223), - [aux_sym_output_stream_statement_token1] = ACTIONS(223), - [aux_sym_on_error_phrase_token1] = ACTIONS(223), - [aux_sym_stop_after_phrase_token1] = ACTIONS(223), - [aux_sym_do_tuning_token1] = ACTIONS(223), - [anon_sym_BY] = ACTIONS(223), - [aux_sym_where_clause_token1] = ACTIONS(223), - [aux_sym_query_tuning_token1] = ACTIONS(223), - [aux_sym_query_tuning_token2] = ACTIONS(223), - [aux_sym_query_tuning_token3] = ACTIONS(223), - [aux_sym_query_tuning_token4] = ACTIONS(223), - [aux_sym_query_tuning_token5] = ACTIONS(223), - [aux_sym_of_token1] = ACTIONS(223), - [aux_sym_field_definition_token1] = ACTIONS(223), - [aux_sym_index_definition_token1] = ACTIONS(223), - [aux_sym_on_statement_token1] = ACTIONS(223), - [sym__or_operator] = ACTIONS(223), - [sym__and_operator] = ACTIONS(223), + [anon_sym_STAR] = ACTIONS(185), + [sym__terminator] = ACTIONS(185), + [anon_sym_LPAREN] = ACTIONS(185), + [anon_sym_RPAREN] = ACTIONS(185), + [anon_sym_PLUS] = ACTIONS(185), + [anon_sym_DASH] = ACTIONS(185), + [anon_sym_LT] = ACTIONS(183), + [anon_sym_LT_EQ] = ACTIONS(185), + [anon_sym_LT_GT] = ACTIONS(185), + [anon_sym_EQ] = ACTIONS(185), + [anon_sym_GT] = ACTIONS(183), + [anon_sym_GT_EQ] = ACTIONS(185), + [aux_sym__comparison_operator_token1] = ACTIONS(185), + [aux_sym__comparison_operator_token2] = ACTIONS(185), + [aux_sym__comparison_operator_token3] = ACTIONS(185), + [aux_sym__comparison_operator_token4] = ACTIONS(185), + [aux_sym__comparison_operator_token5] = ACTIONS(185), + [aux_sym__comparison_operator_token6] = ACTIONS(185), + [aux_sym__comparison_operator_token7] = ACTIONS(185), + [aux_sym__comparison_operator_token8] = ACTIONS(185), + [aux_sym__comparison_operator_token9] = ACTIONS(185), + [aux_sym_variable_tuning_token1] = ACTIONS(185), + [aux_sym_variable_tuning_token2] = ACTIONS(185), + [aux_sym_variable_tuning_token3] = ACTIONS(185), + [aux_sym_variable_tuning_token4] = ACTIONS(185), + [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), + [aux_sym_while_phrase_token1] = ACTIONS(185), + [aux_sym_repeat_tuning_token1] = ACTIONS(185), + [aux_sym_property_tuning_token1] = ACTIONS(185), + [aux_sym_event_definition_token1] = ACTIONS(185), + [aux_sym_using_statement_token1] = ACTIONS(185), + [aux_sym_input_stream_tuning_token1] = ACTIONS(185), + [aux_sym_input_stream_tuning_token2] = ACTIONS(185), + [aux_sym_input_stream_tuning_token3] = ACTIONS(185), + [aux_sym_input_stream_tuning_token4] = ACTIONS(185), + [aux_sym_input_stream_tuning_token5] = ACTIONS(185), + [aux_sym_input_stream_tuning_token6] = ACTIONS(185), + [aux_sym_input_stream_tuning_token7] = ACTIONS(185), + [aux_sym_input_stream_tuning_token8] = ACTIONS(185), + [aux_sym_input_stream_tuning_token9] = ACTIONS(185), + [aux_sym_input_stream_tuning_token11] = ACTIONS(185), + [aux_sym_output_stream_tuning_token1] = ACTIONS(185), + [aux_sym_output_stream_tuning_token2] = ACTIONS(185), + [aux_sym_output_stream_tuning_token3] = ACTIONS(185), + [aux_sym_output_stream_tuning_token4] = ACTIONS(185), + [aux_sym_output_stream_tuning_token5] = ACTIONS(185), + [aux_sym_output_stream_tuning_token6] = ACTIONS(185), + [aux_sym_output_stream_tuning_token7] = ACTIONS(185), + [aux_sym_output_stream_tuning_token8] = ACTIONS(185), + [aux_sym_output_stream_statement_token1] = ACTIONS(185), + [aux_sym_on_error_phrase_token1] = ACTIONS(185), + [aux_sym_stop_after_phrase_token1] = ACTIONS(185), + [aux_sym_do_tuning_token1] = ACTIONS(185), + [anon_sym_BY] = ACTIONS(185), + [aux_sym_where_clause_token1] = ACTIONS(185), + [aux_sym_query_tuning_token1] = ACTIONS(185), + [aux_sym_query_tuning_token2] = ACTIONS(185), + [aux_sym_query_tuning_token3] = ACTIONS(185), + [aux_sym_query_tuning_token4] = ACTIONS(185), + [aux_sym_query_tuning_token5] = ACTIONS(185), + [aux_sym_of_token1] = ACTIONS(185), + [aux_sym_field_definition_token1] = ACTIONS(185), + [aux_sym_index_definition_token1] = ACTIONS(185), + [aux_sym_on_statement_token1] = ACTIONS(185), + [sym__or_operator] = ACTIONS(185), + [sym__and_operator] = ACTIONS(185), }, - [45] = { - [sym_comment] = STATE(45), - [sym_include] = STATE(45), + [32] = { + [sym_comment] = STATE(32), + [sym_include] = STATE(32), [anon_sym_SLASH_SLASH] = ACTIONS(59), [anon_sym_SLASH_STAR] = ACTIONS(61), - [anon_sym_SLASH] = ACTIONS(213), + [anon_sym_SLASH] = ACTIONS(187), [anon_sym_LBRACE] = ACTIONS(65), - [anon_sym_STAR] = ACTIONS(215), - [sym__terminator] = ACTIONS(215), - [anon_sym_LPAREN] = ACTIONS(215), - [anon_sym_RPAREN] = ACTIONS(215), - [anon_sym_PLUS] = ACTIONS(215), - [anon_sym_DASH] = ACTIONS(215), - [anon_sym_LT] = ACTIONS(213), - [anon_sym_LT_EQ] = ACTIONS(215), - [anon_sym_LT_GT] = ACTIONS(215), - [anon_sym_EQ] = ACTIONS(215), - [anon_sym_GT] = ACTIONS(213), - [anon_sym_GT_EQ] = ACTIONS(215), - [aux_sym__comparison_operator_token1] = ACTIONS(215), - [aux_sym__comparison_operator_token2] = ACTIONS(215), - [aux_sym__comparison_operator_token3] = ACTIONS(215), - [aux_sym__comparison_operator_token4] = ACTIONS(215), - [aux_sym__comparison_operator_token5] = ACTIONS(215), - [aux_sym__comparison_operator_token6] = ACTIONS(215), - [aux_sym__comparison_operator_token7] = ACTIONS(215), - [aux_sym__comparison_operator_token8] = ACTIONS(215), - [aux_sym__comparison_operator_token9] = ACTIONS(215), - [aux_sym_variable_tuning_token1] = ACTIONS(215), - [aux_sym_variable_tuning_token2] = ACTIONS(215), - [aux_sym_variable_tuning_token3] = ACTIONS(215), - [aux_sym_variable_tuning_token4] = ACTIONS(215), - [aux_sym_variable_tuning_token5] = ACTIONS(215), - [aux_sym_variable_tuning_token6] = ACTIONS(215), - [anon_sym_COMMA] = ACTIONS(215), - [aux_sym_function_call_token1] = ACTIONS(225), - [aux_sym_if_statement_token2] = ACTIONS(215), - [aux_sym_else_if_statement_token1] = ACTIONS(215), - [anon_sym_COLON] = ACTIONS(215), - [aux_sym_while_phrase_token1] = ACTIONS(215), - [aux_sym_property_tuning_token1] = ACTIONS(215), - [aux_sym_event_definition_token1] = ACTIONS(215), - [aux_sym_using_statement_token1] = ACTIONS(215), - [aux_sym_input_stream_tuning_token1] = ACTIONS(215), - [aux_sym_input_stream_tuning_token2] = ACTIONS(215), - [aux_sym_input_stream_tuning_token3] = ACTIONS(215), - [aux_sym_input_stream_tuning_token4] = ACTIONS(215), - [aux_sym_input_stream_tuning_token5] = ACTIONS(215), - [aux_sym_input_stream_tuning_token6] = ACTIONS(215), - [aux_sym_input_stream_tuning_token7] = ACTIONS(215), - [aux_sym_input_stream_tuning_token8] = ACTIONS(215), - [aux_sym_input_stream_tuning_token9] = ACTIONS(215), - [aux_sym_input_stream_tuning_token11] = ACTIONS(215), - [aux_sym_output_stream_tuning_token1] = ACTIONS(215), - [aux_sym_output_stream_tuning_token2] = ACTIONS(215), - [aux_sym_output_stream_tuning_token3] = ACTIONS(215), - [aux_sym_output_stream_tuning_token4] = ACTIONS(215), - [aux_sym_output_stream_tuning_token5] = ACTIONS(215), - [aux_sym_output_stream_tuning_token6] = ACTIONS(215), - [aux_sym_output_stream_tuning_token7] = ACTIONS(215), - [aux_sym_output_stream_tuning_token8] = ACTIONS(215), - [aux_sym_output_stream_statement_token1] = ACTIONS(215), - [aux_sym_on_error_phrase_token1] = ACTIONS(215), - [aux_sym_stop_after_phrase_token1] = ACTIONS(215), - [aux_sym_do_tuning_token1] = ACTIONS(215), - [anon_sym_BY] = ACTIONS(215), - [aux_sym_where_clause_token1] = ACTIONS(215), - [aux_sym_query_tuning_token1] = ACTIONS(215), - [aux_sym_query_tuning_token2] = ACTIONS(215), - [aux_sym_query_tuning_token3] = ACTIONS(215), - [aux_sym_query_tuning_token4] = ACTIONS(215), - [aux_sym_query_tuning_token5] = ACTIONS(215), - [aux_sym_of_token1] = ACTIONS(215), - [aux_sym_field_definition_token1] = ACTIONS(215), - [aux_sym_index_definition_token1] = ACTIONS(215), - [aux_sym_on_statement_token1] = ACTIONS(215), - [sym__or_operator] = ACTIONS(215), - [sym__and_operator] = ACTIONS(215), + [anon_sym_STAR] = ACTIONS(189), + [sym__terminator] = ACTIONS(189), + [anon_sym_LPAREN] = ACTIONS(189), + [anon_sym_RPAREN] = ACTIONS(189), + [anon_sym_PLUS] = ACTIONS(189), + [anon_sym_DASH] = ACTIONS(189), + [anon_sym_LT] = ACTIONS(187), + [anon_sym_LT_EQ] = ACTIONS(189), + [anon_sym_LT_GT] = ACTIONS(189), + [anon_sym_EQ] = ACTIONS(189), + [anon_sym_GT] = ACTIONS(187), + [anon_sym_GT_EQ] = ACTIONS(189), + [aux_sym__comparison_operator_token1] = ACTIONS(189), + [aux_sym__comparison_operator_token2] = ACTIONS(189), + [aux_sym__comparison_operator_token3] = ACTIONS(189), + [aux_sym__comparison_operator_token4] = ACTIONS(189), + [aux_sym__comparison_operator_token5] = ACTIONS(189), + [aux_sym__comparison_operator_token6] = ACTIONS(189), + [aux_sym__comparison_operator_token7] = ACTIONS(189), + [aux_sym__comparison_operator_token8] = ACTIONS(189), + [aux_sym__comparison_operator_token9] = ACTIONS(189), + [aux_sym_variable_tuning_token1] = ACTIONS(189), + [aux_sym_variable_tuning_token2] = ACTIONS(189), + [aux_sym_variable_tuning_token3] = ACTIONS(189), + [aux_sym_variable_tuning_token4] = ACTIONS(189), + [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), + [aux_sym_while_phrase_token1] = ACTIONS(189), + [aux_sym_repeat_tuning_token1] = ACTIONS(189), + [aux_sym_property_tuning_token1] = ACTIONS(189), + [aux_sym_event_definition_token1] = ACTIONS(189), + [aux_sym_using_statement_token1] = ACTIONS(189), + [aux_sym_input_stream_tuning_token1] = ACTIONS(189), + [aux_sym_input_stream_tuning_token2] = ACTIONS(189), + [aux_sym_input_stream_tuning_token3] = ACTIONS(189), + [aux_sym_input_stream_tuning_token4] = ACTIONS(189), + [aux_sym_input_stream_tuning_token5] = ACTIONS(189), + [aux_sym_input_stream_tuning_token6] = ACTIONS(189), + [aux_sym_input_stream_tuning_token7] = ACTIONS(189), + [aux_sym_input_stream_tuning_token8] = ACTIONS(189), + [aux_sym_input_stream_tuning_token9] = ACTIONS(189), + [aux_sym_input_stream_tuning_token11] = ACTIONS(189), + [aux_sym_output_stream_tuning_token1] = ACTIONS(189), + [aux_sym_output_stream_tuning_token2] = ACTIONS(189), + [aux_sym_output_stream_tuning_token3] = ACTIONS(189), + [aux_sym_output_stream_tuning_token4] = ACTIONS(189), + [aux_sym_output_stream_tuning_token5] = ACTIONS(189), + [aux_sym_output_stream_tuning_token6] = ACTIONS(189), + [aux_sym_output_stream_tuning_token7] = ACTIONS(189), + [aux_sym_output_stream_tuning_token8] = ACTIONS(189), + [aux_sym_output_stream_statement_token1] = ACTIONS(189), + [aux_sym_on_error_phrase_token1] = ACTIONS(189), + [aux_sym_stop_after_phrase_token1] = ACTIONS(189), + [aux_sym_do_tuning_token1] = ACTIONS(189), + [anon_sym_BY] = ACTIONS(189), + [aux_sym_where_clause_token1] = ACTIONS(189), + [aux_sym_query_tuning_token1] = ACTIONS(189), + [aux_sym_query_tuning_token2] = ACTIONS(189), + [aux_sym_query_tuning_token3] = ACTIONS(189), + [aux_sym_query_tuning_token4] = ACTIONS(189), + [aux_sym_query_tuning_token5] = ACTIONS(189), + [aux_sym_of_token1] = ACTIONS(189), + [aux_sym_field_definition_token1] = ACTIONS(189), + [aux_sym_index_definition_token1] = ACTIONS(189), + [aux_sym_on_statement_token1] = ACTIONS(189), + [sym__or_operator] = ACTIONS(189), + [sym__and_operator] = ACTIONS(189), }, - [46] = { - [sym_comment] = STATE(46), - [sym_include] = STATE(46), + [33] = { + [sym_comment] = STATE(33), + [sym_include] = STATE(33), + [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_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), + [aux_sym_while_phrase_token1] = ACTIONS(193), + [aux_sym_repeat_tuning_token1] = ACTIONS(193), + [aux_sym_property_tuning_token1] = ACTIONS(193), + [aux_sym_event_definition_token1] = ACTIONS(193), + [aux_sym_using_statement_token1] = ACTIONS(193), + [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_where_clause_token1] = ACTIONS(193), + [aux_sym_query_tuning_token1] = ACTIONS(193), + [aux_sym_query_tuning_token2] = ACTIONS(193), + [aux_sym_query_tuning_token3] = ACTIONS(193), + [aux_sym_query_tuning_token4] = ACTIONS(193), + [aux_sym_query_tuning_token5] = 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), + }, + [34] = { + [sym_comment] = STATE(34), + [sym_include] = STATE(34), + [anon_sym_SLASH_SLASH] = ACTIONS(59), + [anon_sym_SLASH_STAR] = ACTIONS(61), + [anon_sym_SLASH] = ACTIONS(195), + [anon_sym_LBRACE] = ACTIONS(65), + [anon_sym_STAR] = ACTIONS(197), + [sym__terminator] = ACTIONS(197), + [anon_sym_LPAREN] = ACTIONS(197), + [anon_sym_RPAREN] = ACTIONS(197), + [anon_sym_PLUS] = ACTIONS(197), + [anon_sym_DASH] = ACTIONS(197), + [anon_sym_LT] = ACTIONS(195), + [anon_sym_LT_EQ] = ACTIONS(197), + [anon_sym_LT_GT] = ACTIONS(197), + [anon_sym_EQ] = ACTIONS(197), + [anon_sym_GT] = ACTIONS(195), + [anon_sym_GT_EQ] = ACTIONS(197), + [aux_sym__comparison_operator_token1] = ACTIONS(197), + [aux_sym__comparison_operator_token2] = ACTIONS(197), + [aux_sym__comparison_operator_token3] = ACTIONS(197), + [aux_sym__comparison_operator_token4] = ACTIONS(197), + [aux_sym__comparison_operator_token5] = ACTIONS(197), + [aux_sym__comparison_operator_token6] = ACTIONS(197), + [aux_sym__comparison_operator_token7] = ACTIONS(197), + [aux_sym__comparison_operator_token8] = ACTIONS(197), + [aux_sym__comparison_operator_token9] = ACTIONS(197), + [aux_sym_variable_tuning_token1] = ACTIONS(197), + [aux_sym_variable_tuning_token2] = ACTIONS(197), + [aux_sym_variable_tuning_token3] = ACTIONS(197), + [aux_sym_variable_tuning_token4] = ACTIONS(197), + [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), + [aux_sym_while_phrase_token1] = ACTIONS(197), + [aux_sym_repeat_tuning_token1] = ACTIONS(197), + [aux_sym_property_tuning_token1] = ACTIONS(197), + [aux_sym_event_definition_token1] = ACTIONS(197), + [aux_sym_using_statement_token1] = ACTIONS(197), + [aux_sym_input_stream_tuning_token1] = ACTIONS(197), + [aux_sym_input_stream_tuning_token2] = ACTIONS(197), + [aux_sym_input_stream_tuning_token3] = ACTIONS(197), + [aux_sym_input_stream_tuning_token4] = ACTIONS(197), + [aux_sym_input_stream_tuning_token5] = ACTIONS(197), + [aux_sym_input_stream_tuning_token6] = ACTIONS(197), + [aux_sym_input_stream_tuning_token7] = ACTIONS(197), + [aux_sym_input_stream_tuning_token8] = ACTIONS(197), + [aux_sym_input_stream_tuning_token9] = ACTIONS(197), + [aux_sym_input_stream_tuning_token11] = ACTIONS(197), + [aux_sym_output_stream_tuning_token1] = ACTIONS(197), + [aux_sym_output_stream_tuning_token2] = ACTIONS(197), + [aux_sym_output_stream_tuning_token3] = ACTIONS(197), + [aux_sym_output_stream_tuning_token4] = ACTIONS(197), + [aux_sym_output_stream_tuning_token5] = ACTIONS(197), + [aux_sym_output_stream_tuning_token6] = ACTIONS(197), + [aux_sym_output_stream_tuning_token7] = ACTIONS(197), + [aux_sym_output_stream_tuning_token8] = ACTIONS(197), + [aux_sym_output_stream_statement_token1] = ACTIONS(197), + [aux_sym_on_error_phrase_token1] = ACTIONS(197), + [aux_sym_stop_after_phrase_token1] = ACTIONS(197), + [aux_sym_do_tuning_token1] = ACTIONS(197), + [anon_sym_BY] = ACTIONS(197), + [aux_sym_where_clause_token1] = ACTIONS(197), + [aux_sym_query_tuning_token1] = ACTIONS(197), + [aux_sym_query_tuning_token2] = ACTIONS(197), + [aux_sym_query_tuning_token3] = ACTIONS(197), + [aux_sym_query_tuning_token4] = ACTIONS(197), + [aux_sym_query_tuning_token5] = ACTIONS(197), + [aux_sym_of_token1] = ACTIONS(197), + [aux_sym_field_definition_token1] = ACTIONS(197), + [aux_sym_index_definition_token1] = ACTIONS(197), + [aux_sym_on_statement_token1] = ACTIONS(197), + [sym__or_operator] = ACTIONS(197), + [sym__and_operator] = ACTIONS(197), + }, + [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(199), + [anon_sym_LBRACE] = ACTIONS(65), + [anon_sym_STAR] = ACTIONS(201), + [sym__terminator] = ACTIONS(201), + [anon_sym_LPAREN] = ACTIONS(201), + [anon_sym_RPAREN] = ACTIONS(201), + [anon_sym_PLUS] = ACTIONS(201), + [anon_sym_DASH] = ACTIONS(201), + [anon_sym_LT] = ACTIONS(199), + [anon_sym_LT_EQ] = ACTIONS(201), + [anon_sym_LT_GT] = ACTIONS(201), + [anon_sym_EQ] = ACTIONS(201), + [anon_sym_GT] = ACTIONS(199), + [anon_sym_GT_EQ] = ACTIONS(201), + [aux_sym__comparison_operator_token1] = ACTIONS(201), + [aux_sym__comparison_operator_token2] = ACTIONS(201), + [aux_sym__comparison_operator_token3] = ACTIONS(201), + [aux_sym__comparison_operator_token4] = ACTIONS(201), + [aux_sym__comparison_operator_token5] = ACTIONS(201), + [aux_sym__comparison_operator_token6] = ACTIONS(201), + [aux_sym__comparison_operator_token7] = ACTIONS(201), + [aux_sym__comparison_operator_token8] = ACTIONS(201), + [aux_sym__comparison_operator_token9] = ACTIONS(201), + [aux_sym_variable_tuning_token1] = ACTIONS(201), + [aux_sym_variable_tuning_token2] = ACTIONS(201), + [aux_sym_variable_tuning_token3] = ACTIONS(201), + [aux_sym_variable_tuning_token4] = ACTIONS(201), + [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), + [aux_sym_while_phrase_token1] = ACTIONS(201), + [aux_sym_repeat_tuning_token1] = ACTIONS(201), + [aux_sym_property_tuning_token1] = ACTIONS(201), + [aux_sym_event_definition_token1] = ACTIONS(201), + [aux_sym_using_statement_token1] = ACTIONS(201), + [aux_sym_input_stream_tuning_token1] = ACTIONS(201), + [aux_sym_input_stream_tuning_token2] = ACTIONS(201), + [aux_sym_input_stream_tuning_token3] = ACTIONS(201), + [aux_sym_input_stream_tuning_token4] = ACTIONS(201), + [aux_sym_input_stream_tuning_token5] = ACTIONS(201), + [aux_sym_input_stream_tuning_token6] = ACTIONS(201), + [aux_sym_input_stream_tuning_token7] = ACTIONS(201), + [aux_sym_input_stream_tuning_token8] = ACTIONS(201), + [aux_sym_input_stream_tuning_token9] = ACTIONS(201), + [aux_sym_input_stream_tuning_token11] = ACTIONS(201), + [aux_sym_output_stream_tuning_token1] = ACTIONS(201), + [aux_sym_output_stream_tuning_token2] = ACTIONS(201), + [aux_sym_output_stream_tuning_token3] = ACTIONS(201), + [aux_sym_output_stream_tuning_token4] = ACTIONS(201), + [aux_sym_output_stream_tuning_token5] = ACTIONS(201), + [aux_sym_output_stream_tuning_token6] = ACTIONS(201), + [aux_sym_output_stream_tuning_token7] = ACTIONS(201), + [aux_sym_output_stream_tuning_token8] = ACTIONS(201), + [aux_sym_output_stream_statement_token1] = ACTIONS(201), + [aux_sym_on_error_phrase_token1] = ACTIONS(201), + [aux_sym_stop_after_phrase_token1] = ACTIONS(201), + [aux_sym_do_tuning_token1] = ACTIONS(201), + [anon_sym_BY] = ACTIONS(201), + [aux_sym_where_clause_token1] = ACTIONS(201), + [aux_sym_query_tuning_token1] = ACTIONS(201), + [aux_sym_query_tuning_token2] = ACTIONS(201), + [aux_sym_query_tuning_token3] = ACTIONS(201), + [aux_sym_query_tuning_token4] = ACTIONS(201), + [aux_sym_query_tuning_token5] = ACTIONS(201), + [aux_sym_of_token1] = ACTIONS(201), + [aux_sym_field_definition_token1] = ACTIONS(201), + [aux_sym_index_definition_token1] = ACTIONS(201), + [aux_sym_on_statement_token1] = ACTIONS(201), + [sym__or_operator] = ACTIONS(201), + [sym__and_operator] = ACTIONS(201), + }, + [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(87), @@ -30294,6 +29815,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_else_if_statement_token1] = ACTIONS(89), [anon_sym_COLON] = ACTIONS(89), [aux_sym_while_phrase_token1] = ACTIONS(89), + [aux_sym_repeat_tuning_token1] = ACTIONS(89), [aux_sym_property_tuning_token1] = ACTIONS(89), [aux_sym_event_definition_token1] = ACTIONS(89), [aux_sym_using_statement_token1] = ACTIONS(89), @@ -30333,16528 +29855,17567 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__or_operator] = ACTIONS(89), [sym__and_operator] = ACTIONS(89), }, + [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(203), + [anon_sym_LBRACE] = ACTIONS(65), + [anon_sym_STAR] = ACTIONS(205), + [sym__terminator] = ACTIONS(205), + [anon_sym_LPAREN] = ACTIONS(205), + [anon_sym_RPAREN] = ACTIONS(205), + [anon_sym_PLUS] = ACTIONS(205), + [anon_sym_DASH] = ACTIONS(205), + [anon_sym_LT] = ACTIONS(203), + [anon_sym_LT_EQ] = ACTIONS(205), + [anon_sym_LT_GT] = ACTIONS(205), + [anon_sym_EQ] = ACTIONS(205), + [anon_sym_GT] = ACTIONS(203), + [anon_sym_GT_EQ] = ACTIONS(205), + [aux_sym__comparison_operator_token1] = ACTIONS(205), + [aux_sym__comparison_operator_token2] = ACTIONS(205), + [aux_sym__comparison_operator_token3] = ACTIONS(205), + [aux_sym__comparison_operator_token4] = ACTIONS(205), + [aux_sym__comparison_operator_token5] = ACTIONS(205), + [aux_sym__comparison_operator_token6] = ACTIONS(205), + [aux_sym__comparison_operator_token7] = ACTIONS(205), + [aux_sym__comparison_operator_token8] = ACTIONS(205), + [aux_sym__comparison_operator_token9] = ACTIONS(205), + [aux_sym_variable_tuning_token1] = ACTIONS(205), + [aux_sym_variable_tuning_token2] = ACTIONS(205), + [aux_sym_variable_tuning_token3] = ACTIONS(205), + [aux_sym_variable_tuning_token4] = ACTIONS(205), + [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), + [aux_sym_while_phrase_token1] = ACTIONS(205), + [aux_sym_repeat_tuning_token1] = ACTIONS(205), + [aux_sym_property_tuning_token1] = ACTIONS(205), + [aux_sym_event_definition_token1] = ACTIONS(205), + [aux_sym_using_statement_token1] = ACTIONS(205), + [aux_sym_input_stream_tuning_token1] = ACTIONS(205), + [aux_sym_input_stream_tuning_token2] = ACTIONS(205), + [aux_sym_input_stream_tuning_token3] = ACTIONS(205), + [aux_sym_input_stream_tuning_token4] = ACTIONS(205), + [aux_sym_input_stream_tuning_token5] = ACTIONS(205), + [aux_sym_input_stream_tuning_token6] = ACTIONS(205), + [aux_sym_input_stream_tuning_token7] = ACTIONS(205), + [aux_sym_input_stream_tuning_token8] = ACTIONS(205), + [aux_sym_input_stream_tuning_token9] = ACTIONS(205), + [aux_sym_input_stream_tuning_token11] = ACTIONS(205), + [aux_sym_output_stream_tuning_token1] = ACTIONS(205), + [aux_sym_output_stream_tuning_token2] = ACTIONS(205), + [aux_sym_output_stream_tuning_token3] = ACTIONS(205), + [aux_sym_output_stream_tuning_token4] = ACTIONS(205), + [aux_sym_output_stream_tuning_token5] = ACTIONS(205), + [aux_sym_output_stream_tuning_token6] = ACTIONS(205), + [aux_sym_output_stream_tuning_token7] = ACTIONS(205), + [aux_sym_output_stream_tuning_token8] = ACTIONS(205), + [aux_sym_output_stream_statement_token1] = ACTIONS(205), + [aux_sym_on_error_phrase_token1] = ACTIONS(205), + [aux_sym_stop_after_phrase_token1] = ACTIONS(205), + [aux_sym_do_tuning_token1] = ACTIONS(205), + [anon_sym_BY] = ACTIONS(205), + [aux_sym_where_clause_token1] = ACTIONS(205), + [aux_sym_query_tuning_token1] = ACTIONS(205), + [aux_sym_query_tuning_token2] = ACTIONS(205), + [aux_sym_query_tuning_token3] = ACTIONS(205), + [aux_sym_query_tuning_token4] = ACTIONS(205), + [aux_sym_query_tuning_token5] = ACTIONS(205), + [aux_sym_of_token1] = ACTIONS(205), + [aux_sym_field_definition_token1] = ACTIONS(205), + [aux_sym_index_definition_token1] = ACTIONS(205), + [aux_sym_on_statement_token1] = ACTIONS(205), + [sym__or_operator] = ACTIONS(205), + [sym__and_operator] = ACTIONS(205), + }, + [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(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_repeat_tuning_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), + }, + [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(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_repeat_tuning_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), + }, + [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), + [anon_sym_LBRACE] = ACTIONS(65), + [anon_sym_STAR] = ACTIONS(209), + [sym__terminator] = ACTIONS(209), + [anon_sym_LPAREN] = ACTIONS(209), + [anon_sym_RPAREN] = ACTIONS(209), + [anon_sym_PLUS] = ACTIONS(209), + [anon_sym_DASH] = ACTIONS(209), + [anon_sym_LT] = ACTIONS(207), + [anon_sym_LT_EQ] = ACTIONS(209), + [anon_sym_LT_GT] = ACTIONS(209), + [anon_sym_EQ] = ACTIONS(209), + [anon_sym_GT] = ACTIONS(207), + [anon_sym_GT_EQ] = ACTIONS(209), + [aux_sym__comparison_operator_token1] = ACTIONS(209), + [aux_sym__comparison_operator_token2] = ACTIONS(209), + [aux_sym__comparison_operator_token3] = ACTIONS(209), + [aux_sym__comparison_operator_token4] = ACTIONS(209), + [aux_sym__comparison_operator_token5] = ACTIONS(209), + [aux_sym__comparison_operator_token6] = ACTIONS(209), + [aux_sym__comparison_operator_token7] = ACTIONS(209), + [aux_sym__comparison_operator_token8] = ACTIONS(209), + [aux_sym__comparison_operator_token9] = ACTIONS(209), + [aux_sym_variable_tuning_token1] = ACTIONS(209), + [aux_sym_variable_tuning_token2] = ACTIONS(209), + [aux_sym_variable_tuning_token3] = ACTIONS(209), + [aux_sym_variable_tuning_token4] = ACTIONS(209), + [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), + [aux_sym_while_phrase_token1] = ACTIONS(209), + [aux_sym_repeat_tuning_token1] = ACTIONS(209), + [aux_sym_property_tuning_token1] = ACTIONS(209), + [aux_sym_event_definition_token1] = ACTIONS(209), + [aux_sym_using_statement_token1] = ACTIONS(209), + [aux_sym_input_stream_tuning_token1] = ACTIONS(209), + [aux_sym_input_stream_tuning_token2] = ACTIONS(209), + [aux_sym_input_stream_tuning_token3] = ACTIONS(209), + [aux_sym_input_stream_tuning_token4] = ACTIONS(209), + [aux_sym_input_stream_tuning_token5] = ACTIONS(209), + [aux_sym_input_stream_tuning_token6] = ACTIONS(209), + [aux_sym_input_stream_tuning_token7] = ACTIONS(209), + [aux_sym_input_stream_tuning_token8] = ACTIONS(209), + [aux_sym_input_stream_tuning_token9] = ACTIONS(209), + [aux_sym_input_stream_tuning_token11] = ACTIONS(209), + [aux_sym_output_stream_tuning_token1] = ACTIONS(209), + [aux_sym_output_stream_tuning_token2] = ACTIONS(209), + [aux_sym_output_stream_tuning_token3] = ACTIONS(209), + [aux_sym_output_stream_tuning_token4] = ACTIONS(209), + [aux_sym_output_stream_tuning_token5] = ACTIONS(209), + [aux_sym_output_stream_tuning_token6] = ACTIONS(209), + [aux_sym_output_stream_tuning_token7] = ACTIONS(209), + [aux_sym_output_stream_tuning_token8] = ACTIONS(209), + [aux_sym_output_stream_statement_token1] = ACTIONS(209), + [aux_sym_on_error_phrase_token1] = ACTIONS(209), + [aux_sym_stop_after_phrase_token1] = ACTIONS(209), + [aux_sym_do_tuning_token1] = ACTIONS(209), + [anon_sym_BY] = ACTIONS(209), + [aux_sym_where_clause_token1] = ACTIONS(209), + [aux_sym_query_tuning_token1] = ACTIONS(209), + [aux_sym_query_tuning_token2] = ACTIONS(209), + [aux_sym_query_tuning_token3] = ACTIONS(209), + [aux_sym_query_tuning_token4] = ACTIONS(209), + [aux_sym_query_tuning_token5] = ACTIONS(209), + [aux_sym_of_token1] = ACTIONS(209), + [aux_sym_field_definition_token1] = ACTIONS(209), + [aux_sym_index_definition_token1] = ACTIONS(209), + [aux_sym_on_statement_token1] = ACTIONS(209), + [sym__or_operator] = ACTIONS(209), + [sym__and_operator] = ACTIONS(209), + }, + [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(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_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_repeat_tuning_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), + }, + [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(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_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), + [aux_sym_while_phrase_token1] = ACTIONS(213), + [aux_sym_repeat_tuning_token1] = ACTIONS(213), + [aux_sym_property_tuning_token1] = ACTIONS(213), + [aux_sym_event_definition_token1] = ACTIONS(213), + [aux_sym_using_statement_token1] = ACTIONS(213), + [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_where_clause_token1] = ACTIONS(213), + [aux_sym_query_tuning_token1] = ACTIONS(213), + [aux_sym_query_tuning_token2] = ACTIONS(213), + [aux_sym_query_tuning_token3] = ACTIONS(213), + [aux_sym_query_tuning_token4] = ACTIONS(213), + [aux_sym_query_tuning_token5] = 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), + }, + [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(215), + [anon_sym_LBRACE] = ACTIONS(65), + [anon_sym_STAR] = ACTIONS(217), + [sym__terminator] = ACTIONS(217), + [anon_sym_LPAREN] = ACTIONS(217), + [anon_sym_RPAREN] = ACTIONS(217), + [anon_sym_PLUS] = ACTIONS(217), + [anon_sym_DASH] = ACTIONS(217), + [anon_sym_LT] = ACTIONS(215), + [anon_sym_LT_EQ] = ACTIONS(217), + [anon_sym_LT_GT] = ACTIONS(217), + [anon_sym_EQ] = ACTIONS(217), + [anon_sym_GT] = ACTIONS(215), + [anon_sym_GT_EQ] = ACTIONS(217), + [aux_sym__comparison_operator_token1] = ACTIONS(217), + [aux_sym__comparison_operator_token2] = ACTIONS(217), + [aux_sym__comparison_operator_token3] = ACTIONS(217), + [aux_sym__comparison_operator_token4] = ACTIONS(217), + [aux_sym__comparison_operator_token5] = ACTIONS(217), + [aux_sym__comparison_operator_token6] = ACTIONS(217), + [aux_sym__comparison_operator_token7] = ACTIONS(217), + [aux_sym__comparison_operator_token8] = ACTIONS(217), + [aux_sym__comparison_operator_token9] = ACTIONS(217), + [aux_sym_variable_tuning_token1] = ACTIONS(217), + [aux_sym_variable_tuning_token2] = ACTIONS(217), + [aux_sym_variable_tuning_token3] = ACTIONS(217), + [aux_sym_variable_tuning_token4] = ACTIONS(217), + [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), + [aux_sym_while_phrase_token1] = ACTIONS(217), + [aux_sym_repeat_tuning_token1] = ACTIONS(217), + [aux_sym_property_tuning_token1] = ACTIONS(217), + [aux_sym_event_definition_token1] = ACTIONS(217), + [aux_sym_using_statement_token1] = ACTIONS(217), + [aux_sym_input_stream_tuning_token1] = ACTIONS(217), + [aux_sym_input_stream_tuning_token2] = ACTIONS(217), + [aux_sym_input_stream_tuning_token3] = ACTIONS(217), + [aux_sym_input_stream_tuning_token4] = ACTIONS(217), + [aux_sym_input_stream_tuning_token5] = ACTIONS(217), + [aux_sym_input_stream_tuning_token6] = ACTIONS(217), + [aux_sym_input_stream_tuning_token7] = ACTIONS(217), + [aux_sym_input_stream_tuning_token8] = ACTIONS(217), + [aux_sym_input_stream_tuning_token9] = ACTIONS(217), + [aux_sym_input_stream_tuning_token11] = ACTIONS(217), + [aux_sym_output_stream_tuning_token1] = ACTIONS(217), + [aux_sym_output_stream_tuning_token2] = ACTIONS(217), + [aux_sym_output_stream_tuning_token3] = ACTIONS(217), + [aux_sym_output_stream_tuning_token4] = ACTIONS(217), + [aux_sym_output_stream_tuning_token5] = ACTIONS(217), + [aux_sym_output_stream_tuning_token6] = ACTIONS(217), + [aux_sym_output_stream_tuning_token7] = ACTIONS(217), + [aux_sym_output_stream_tuning_token8] = ACTIONS(217), + [aux_sym_output_stream_statement_token1] = ACTIONS(217), + [aux_sym_on_error_phrase_token1] = ACTIONS(217), + [aux_sym_stop_after_phrase_token1] = ACTIONS(217), + [aux_sym_do_tuning_token1] = ACTIONS(217), + [anon_sym_BY] = ACTIONS(217), + [aux_sym_where_clause_token1] = ACTIONS(217), + [aux_sym_query_tuning_token1] = ACTIONS(217), + [aux_sym_query_tuning_token2] = ACTIONS(217), + [aux_sym_query_tuning_token3] = ACTIONS(217), + [aux_sym_query_tuning_token4] = ACTIONS(217), + [aux_sym_query_tuning_token5] = ACTIONS(217), + [aux_sym_of_token1] = ACTIONS(217), + [aux_sym_field_definition_token1] = ACTIONS(217), + [aux_sym_index_definition_token1] = ACTIONS(217), + [aux_sym_on_statement_token1] = ACTIONS(217), + [sym__or_operator] = ACTIONS(217), + [sym__and_operator] = ACTIONS(217), + }, + [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(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_repeat_tuning_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), + }, + [45] = { + [sym_comment] = STATE(45), + [sym_include] = STATE(45), + [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_repeat_tuning_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), + }, + [46] = { + [sym_comment] = STATE(46), + [sym_include] = STATE(46), + [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_repeat_tuning_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), + }, [47] = { - [sym_body] = STATE(3149), [sym_comment] = STATE(47), - [sym_qualified_name] = STATE(4733), - [sym__block_terminator] = STATE(1463), + [sym__logical_operator] = STATE(401), + [sym__additive_operator] = STATE(507), + [sym__multiplicative_operator] = STATE(516), + [sym__comparison_operator] = STATE(447), [sym_include] = STATE(47), - [sym_assignment] = STATE(4314), - [sym_variable_definition] = STATE(1535), - [sym_variable_assignment] = STATE(1535), - [sym_buffer_definition] = STATE(1535), - [sym_query_definition] = STATE(1535), - [sym_function_call_statement] = STATE(1535), - [sym_function_call] = STATE(4086), - [sym_if_statement] = STATE(1535), - [sym_label] = STATE(1536), - [sym_repeat_statement] = STATE(1535), - [sym__procedure_terminator] = STATE(1463), - [sym_procedure_statement] = STATE(1535), - [sym_procedure_parameter_definition] = STATE(1535), - [sym_function_statement] = STATE(1535), - [sym_return_statement] = STATE(1535), - [sym_interface_statement] = STATE(1535), - [sym_using_statement] = STATE(1535), - [sym_class_statement] = STATE(1535), - [sym_object_access] = STATE(3567), - [sym_stream_definition] = STATE(1535), - [sym_input_close_statement] = STATE(1535), - [sym_output_close_statement] = STATE(1535), - [sym__stream_statement] = STATE(1535), - [sym_input_stream_statement] = STATE(1537), - [sym_output_stream_statement] = STATE(1537), - [sym_do_block] = STATE(1535), - [sym_case_statement] = STATE(1535), - [sym_for_statement] = STATE(1535), - [sym_find_statement] = STATE(1535), - [sym_abl_statement] = STATE(1535), - [sym_assign_statement] = STATE(1535), - [sym_catch_statement] = STATE(1535), - [sym_finally_statement] = STATE(1535), - [sym_accumulate_statement] = STATE(1535), - [sym_undo_statement] = STATE(1535), - [sym_error_scope_statement] = STATE(1535), - [sym_temp_table_definition] = STATE(1535), - [sym_on_statement] = STATE(1535), - [sym__statement] = STATE(1538), - [aux_sym_source_code_repeat1] = STATE(276), - [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(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), + [anon_sym_SLASH_SLASH] = ACTIONS(59), + [anon_sym_SLASH_STAR] = ACTIONS(61), + [anon_sym_SLASH] = ACTIONS(227), + [anon_sym_LBRACE] = ACTIONS(65), + [anon_sym_STAR] = ACTIONS(229), + [sym__terminator] = ACTIONS(231), + [anon_sym_LPAREN] = ACTIONS(231), + [anon_sym_RPAREN] = ACTIONS(231), + [anon_sym_PLUS] = ACTIONS(233), + [anon_sym_DASH] = ACTIONS(233), + [anon_sym_LT] = ACTIONS(235), + [anon_sym_LT_EQ] = ACTIONS(237), + [anon_sym_LT_GT] = ACTIONS(237), + [anon_sym_EQ] = ACTIONS(237), + [anon_sym_GT] = ACTIONS(235), + [anon_sym_GT_EQ] = ACTIONS(237), + [aux_sym__comparison_operator_token1] = ACTIONS(237), + [aux_sym__comparison_operator_token2] = ACTIONS(237), + [aux_sym__comparison_operator_token3] = ACTIONS(237), + [aux_sym__comparison_operator_token4] = ACTIONS(237), + [aux_sym__comparison_operator_token5] = ACTIONS(237), + [aux_sym__comparison_operator_token6] = ACTIONS(237), + [aux_sym__comparison_operator_token7] = ACTIONS(237), + [aux_sym__comparison_operator_token8] = ACTIONS(237), + [aux_sym__comparison_operator_token9] = ACTIONS(237), + [aux_sym_variable_tuning_token1] = ACTIONS(231), + [aux_sym_variable_tuning_token2] = ACTIONS(231), + [aux_sym_variable_tuning_token3] = ACTIONS(231), + [aux_sym_variable_tuning_token4] = ACTIONS(231), + [aux_sym_variable_tuning_token5] = ACTIONS(231), + [aux_sym_variable_tuning_token6] = ACTIONS(231), + [anon_sym_COMMA] = ACTIONS(231), + [aux_sym_if_statement_token2] = ACTIONS(231), + [aux_sym_else_if_statement_token1] = ACTIONS(231), + [anon_sym_COLON] = ACTIONS(231), + [aux_sym_while_phrase_token1] = ACTIONS(231), + [aux_sym_repeat_tuning_token1] = ACTIONS(231), + [aux_sym_property_tuning_token1] = ACTIONS(231), + [aux_sym_event_definition_token1] = ACTIONS(231), + [aux_sym_input_stream_tuning_token1] = ACTIONS(231), + [aux_sym_input_stream_tuning_token2] = ACTIONS(231), + [aux_sym_input_stream_tuning_token3] = ACTIONS(231), + [aux_sym_input_stream_tuning_token4] = ACTIONS(231), + [aux_sym_input_stream_tuning_token5] = ACTIONS(231), + [aux_sym_input_stream_tuning_token6] = ACTIONS(231), + [aux_sym_input_stream_tuning_token7] = ACTIONS(231), + [aux_sym_input_stream_tuning_token8] = ACTIONS(231), + [aux_sym_input_stream_tuning_token9] = ACTIONS(231), + [aux_sym_input_stream_tuning_token11] = ACTIONS(231), + [aux_sym_output_stream_tuning_token1] = ACTIONS(231), + [aux_sym_output_stream_tuning_token2] = ACTIONS(231), + [aux_sym_output_stream_tuning_token3] = ACTIONS(231), + [aux_sym_output_stream_tuning_token4] = ACTIONS(231), + [aux_sym_output_stream_tuning_token5] = ACTIONS(231), + [aux_sym_output_stream_tuning_token6] = ACTIONS(231), + [aux_sym_output_stream_tuning_token7] = ACTIONS(231), + [aux_sym_output_stream_tuning_token8] = ACTIONS(231), + [aux_sym_output_stream_statement_token1] = ACTIONS(231), + [aux_sym_on_error_phrase_token1] = ACTIONS(231), + [aux_sym_stop_after_phrase_token1] = ACTIONS(231), + [aux_sym_do_tuning_token1] = ACTIONS(231), + [anon_sym_BY] = ACTIONS(231), + [aux_sym_of_token1] = ACTIONS(231), + [aux_sym_field_definition_token1] = ACTIONS(231), + [aux_sym_index_definition_token1] = ACTIONS(231), + [aux_sym_on_statement_token1] = ACTIONS(231), + [sym__or_operator] = ACTIONS(239), + [sym__and_operator] = ACTIONS(239), }, [48] = { - [sym_body] = STATE(3531), [sym_comment] = STATE(48), - [sym_qualified_name] = STATE(4733), - [sym__block_terminator] = STATE(1477), + [sym__logical_operator] = STATE(401), + [sym__additive_operator] = STATE(507), + [sym__multiplicative_operator] = STATE(516), + [sym__comparison_operator] = STATE(447), [sym_include] = STATE(48), - [sym_assignment] = STATE(4314), - [sym_variable_definition] = STATE(1535), - [sym_variable_assignment] = STATE(1535), - [sym_buffer_definition] = STATE(1535), - [sym_query_definition] = STATE(1535), - [sym_function_call_statement] = STATE(1535), - [sym_function_call] = STATE(4086), - [sym_if_statement] = STATE(1535), - [sym_label] = STATE(1536), - [sym_repeat_statement] = STATE(1535), - [sym_procedure_statement] = STATE(1535), - [sym_procedure_parameter_definition] = STATE(1535), - [sym__function_terminator] = STATE(1474), - [sym_function_statement] = STATE(1535), - [sym_return_statement] = STATE(1535), - [sym_interface_statement] = STATE(1535), - [sym_using_statement] = STATE(1535), - [sym_class_statement] = STATE(1535), - [sym_object_access] = STATE(3567), - [sym_stream_definition] = STATE(1535), - [sym_input_close_statement] = STATE(1535), - [sym_output_close_statement] = STATE(1535), - [sym__stream_statement] = STATE(1535), - [sym_input_stream_statement] = STATE(1537), - [sym_output_stream_statement] = STATE(1537), - [sym_do_block] = STATE(1535), - [sym_case_statement] = STATE(1535), - [sym_for_statement] = STATE(1535), - [sym_find_statement] = STATE(1535), - [sym_abl_statement] = STATE(1535), - [sym_assign_statement] = STATE(1535), - [sym_catch_statement] = STATE(1535), - [sym_finally_statement] = STATE(1535), - [sym_accumulate_statement] = STATE(1535), - [sym_undo_statement] = STATE(1535), - [sym_error_scope_statement] = STATE(1535), - [sym_temp_table_definition] = STATE(1535), - [sym_on_statement] = STATE(1535), - [sym__statement] = STATE(1538), - [aux_sym_source_code_repeat1] = STATE(276), - [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(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), + [anon_sym_SLASH_SLASH] = ACTIONS(59), + [anon_sym_SLASH_STAR] = ACTIONS(61), + [anon_sym_SLASH] = ACTIONS(227), + [anon_sym_LBRACE] = ACTIONS(65), + [anon_sym_STAR] = ACTIONS(229), + [sym__terminator] = ACTIONS(241), + [anon_sym_LPAREN] = ACTIONS(241), + [anon_sym_RPAREN] = ACTIONS(241), + [anon_sym_PLUS] = ACTIONS(233), + [anon_sym_DASH] = ACTIONS(233), + [anon_sym_LT] = ACTIONS(235), + [anon_sym_LT_EQ] = ACTIONS(237), + [anon_sym_LT_GT] = ACTIONS(237), + [anon_sym_EQ] = ACTIONS(237), + [anon_sym_GT] = ACTIONS(235), + [anon_sym_GT_EQ] = ACTIONS(237), + [aux_sym__comparison_operator_token1] = ACTIONS(237), + [aux_sym__comparison_operator_token2] = ACTIONS(237), + [aux_sym__comparison_operator_token3] = ACTIONS(237), + [aux_sym__comparison_operator_token4] = ACTIONS(237), + [aux_sym__comparison_operator_token5] = ACTIONS(237), + [aux_sym__comparison_operator_token6] = ACTIONS(237), + [aux_sym__comparison_operator_token7] = ACTIONS(237), + [aux_sym__comparison_operator_token8] = ACTIONS(237), + [aux_sym__comparison_operator_token9] = ACTIONS(237), + [aux_sym_variable_tuning_token1] = ACTIONS(241), + [aux_sym_variable_tuning_token2] = ACTIONS(241), + [aux_sym_variable_tuning_token3] = ACTIONS(241), + [aux_sym_variable_tuning_token4] = ACTIONS(241), + [aux_sym_variable_tuning_token5] = ACTIONS(241), + [aux_sym_variable_tuning_token6] = ACTIONS(241), + [anon_sym_COMMA] = ACTIONS(241), + [aux_sym_if_statement_token2] = ACTIONS(241), + [aux_sym_else_if_statement_token1] = ACTIONS(241), + [anon_sym_COLON] = ACTIONS(241), + [aux_sym_while_phrase_token1] = ACTIONS(241), + [aux_sym_repeat_tuning_token1] = ACTIONS(241), + [aux_sym_property_tuning_token1] = ACTIONS(241), + [aux_sym_event_definition_token1] = ACTIONS(241), + [aux_sym_input_stream_tuning_token1] = ACTIONS(241), + [aux_sym_input_stream_tuning_token2] = ACTIONS(241), + [aux_sym_input_stream_tuning_token3] = ACTIONS(241), + [aux_sym_input_stream_tuning_token4] = ACTIONS(241), + [aux_sym_input_stream_tuning_token5] = ACTIONS(241), + [aux_sym_input_stream_tuning_token6] = ACTIONS(241), + [aux_sym_input_stream_tuning_token7] = ACTIONS(241), + [aux_sym_input_stream_tuning_token8] = ACTIONS(241), + [aux_sym_input_stream_tuning_token9] = ACTIONS(241), + [aux_sym_input_stream_tuning_token11] = ACTIONS(241), + [aux_sym_output_stream_tuning_token1] = ACTIONS(241), + [aux_sym_output_stream_tuning_token2] = ACTIONS(241), + [aux_sym_output_stream_tuning_token3] = ACTIONS(241), + [aux_sym_output_stream_tuning_token4] = ACTIONS(241), + [aux_sym_output_stream_tuning_token5] = ACTIONS(241), + [aux_sym_output_stream_tuning_token6] = ACTIONS(241), + [aux_sym_output_stream_tuning_token7] = ACTIONS(241), + [aux_sym_output_stream_tuning_token8] = ACTIONS(241), + [aux_sym_output_stream_statement_token1] = ACTIONS(241), + [aux_sym_on_error_phrase_token1] = ACTIONS(241), + [aux_sym_stop_after_phrase_token1] = ACTIONS(241), + [aux_sym_do_tuning_token1] = ACTIONS(241), + [anon_sym_BY] = ACTIONS(241), + [aux_sym_of_token1] = ACTIONS(241), + [aux_sym_field_definition_token1] = ACTIONS(241), + [aux_sym_index_definition_token1] = ACTIONS(241), + [aux_sym_on_statement_token1] = ACTIONS(241), + [sym__or_operator] = ACTIONS(239), + [sym__and_operator] = ACTIONS(239), }, [49] = { - [sym_body] = STATE(3433), [sym_comment] = STATE(49), - [sym_qualified_name] = STATE(4733), - [sym__block_terminator] = STATE(1198), + [sym__logical_operator] = STATE(401), + [sym__additive_operator] = STATE(507), + [sym__multiplicative_operator] = STATE(516), + [sym__comparison_operator] = STATE(447), [sym_include] = STATE(49), - [sym_assignment] = STATE(4314), - [sym_variable_definition] = STATE(1535), - [sym_variable_assignment] = STATE(1535), - [sym_buffer_definition] = STATE(1535), - [sym_query_definition] = STATE(1535), - [sym_function_call_statement] = STATE(1535), - [sym_function_call] = STATE(4086), - [sym_if_statement] = STATE(1535), - [sym_label] = STATE(1536), - [sym_repeat_statement] = STATE(1535), - [sym_procedure_statement] = STATE(1535), - [sym_procedure_parameter_definition] = STATE(1535), - [sym__function_terminator] = STATE(1295), - [sym_function_statement] = STATE(1535), - [sym_return_statement] = STATE(1535), - [sym_interface_statement] = STATE(1535), - [sym_using_statement] = STATE(1535), - [sym_class_statement] = STATE(1535), - [sym_object_access] = STATE(3567), - [sym_stream_definition] = STATE(1535), - [sym_input_close_statement] = STATE(1535), - [sym_output_close_statement] = STATE(1535), - [sym__stream_statement] = STATE(1535), - [sym_input_stream_statement] = STATE(1537), - [sym_output_stream_statement] = STATE(1537), - [sym_do_block] = STATE(1535), - [sym_case_statement] = STATE(1535), - [sym_for_statement] = STATE(1535), - [sym_find_statement] = STATE(1535), - [sym_abl_statement] = STATE(1535), - [sym_assign_statement] = STATE(1535), - [sym_catch_statement] = STATE(1535), - [sym_finally_statement] = STATE(1535), - [sym_accumulate_statement] = STATE(1535), - [sym_undo_statement] = STATE(1535), - [sym_error_scope_statement] = STATE(1535), - [sym_temp_table_definition] = STATE(1535), - [sym_on_statement] = STATE(1535), - [sym__statement] = STATE(1538), - [aux_sym_source_code_repeat1] = STATE(276), - [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(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), + [anon_sym_SLASH_SLASH] = ACTIONS(59), + [anon_sym_SLASH_STAR] = ACTIONS(61), + [anon_sym_SLASH] = ACTIONS(227), + [anon_sym_LBRACE] = ACTIONS(65), + [anon_sym_STAR] = ACTIONS(229), + [sym__terminator] = ACTIONS(243), + [anon_sym_LPAREN] = ACTIONS(243), + [anon_sym_RPAREN] = ACTIONS(243), + [anon_sym_PLUS] = ACTIONS(233), + [anon_sym_DASH] = ACTIONS(233), + [anon_sym_LT] = ACTIONS(235), + [anon_sym_LT_EQ] = ACTIONS(237), + [anon_sym_LT_GT] = ACTIONS(237), + [anon_sym_EQ] = ACTIONS(237), + [anon_sym_GT] = ACTIONS(235), + [anon_sym_GT_EQ] = ACTIONS(237), + [aux_sym__comparison_operator_token1] = ACTIONS(237), + [aux_sym__comparison_operator_token2] = ACTIONS(237), + [aux_sym__comparison_operator_token3] = ACTIONS(237), + [aux_sym__comparison_operator_token4] = ACTIONS(237), + [aux_sym__comparison_operator_token5] = ACTIONS(237), + [aux_sym__comparison_operator_token6] = ACTIONS(237), + [aux_sym__comparison_operator_token7] = ACTIONS(237), + [aux_sym__comparison_operator_token8] = ACTIONS(237), + [aux_sym__comparison_operator_token9] = ACTIONS(237), + [aux_sym_variable_tuning_token1] = ACTIONS(243), + [aux_sym_variable_tuning_token2] = ACTIONS(243), + [aux_sym_variable_tuning_token3] = ACTIONS(243), + [aux_sym_variable_tuning_token4] = ACTIONS(243), + [aux_sym_variable_tuning_token5] = ACTIONS(243), + [aux_sym_variable_tuning_token6] = ACTIONS(243), + [anon_sym_COMMA] = ACTIONS(243), + [aux_sym_if_statement_token2] = ACTIONS(243), + [aux_sym_else_if_statement_token1] = ACTIONS(243), + [anon_sym_COLON] = ACTIONS(243), + [aux_sym_while_phrase_token1] = ACTIONS(243), + [aux_sym_repeat_tuning_token1] = ACTIONS(243), + [aux_sym_property_tuning_token1] = ACTIONS(243), + [aux_sym_event_definition_token1] = ACTIONS(243), + [aux_sym_input_stream_tuning_token1] = ACTIONS(243), + [aux_sym_input_stream_tuning_token2] = ACTIONS(243), + [aux_sym_input_stream_tuning_token3] = ACTIONS(243), + [aux_sym_input_stream_tuning_token4] = ACTIONS(243), + [aux_sym_input_stream_tuning_token5] = ACTIONS(243), + [aux_sym_input_stream_tuning_token6] = ACTIONS(243), + [aux_sym_input_stream_tuning_token7] = ACTIONS(243), + [aux_sym_input_stream_tuning_token8] = ACTIONS(243), + [aux_sym_input_stream_tuning_token9] = ACTIONS(243), + [aux_sym_input_stream_tuning_token11] = ACTIONS(243), + [aux_sym_output_stream_tuning_token1] = ACTIONS(243), + [aux_sym_output_stream_tuning_token2] = ACTIONS(243), + [aux_sym_output_stream_tuning_token3] = ACTIONS(243), + [aux_sym_output_stream_tuning_token4] = ACTIONS(243), + [aux_sym_output_stream_tuning_token5] = ACTIONS(243), + [aux_sym_output_stream_tuning_token6] = ACTIONS(243), + [aux_sym_output_stream_tuning_token7] = ACTIONS(243), + [aux_sym_output_stream_tuning_token8] = ACTIONS(243), + [aux_sym_output_stream_statement_token1] = ACTIONS(243), + [aux_sym_on_error_phrase_token1] = ACTIONS(243), + [aux_sym_stop_after_phrase_token1] = ACTIONS(243), + [aux_sym_do_tuning_token1] = ACTIONS(243), + [anon_sym_BY] = ACTIONS(243), + [aux_sym_of_token1] = ACTIONS(243), + [aux_sym_field_definition_token1] = ACTIONS(243), + [aux_sym_index_definition_token1] = ACTIONS(243), + [aux_sym_on_statement_token1] = ACTIONS(243), + [sym__or_operator] = ACTIONS(239), + [sym__and_operator] = ACTIONS(239), }, [50] = { - [sym_body] = STATE(3546), [sym_comment] = STATE(50), - [sym_qualified_name] = STATE(4733), - [sym__block_terminator] = STATE(1216), + [sym__logical_operator] = STATE(401), + [sym__additive_operator] = STATE(507), + [sym__multiplicative_operator] = STATE(516), + [sym__comparison_operator] = STATE(447), [sym_include] = STATE(50), - [sym_assignment] = STATE(4314), - [sym_variable_definition] = STATE(1535), - [sym_variable_assignment] = STATE(1535), - [sym_buffer_definition] = STATE(1535), - [sym_query_definition] = STATE(1535), - [sym_function_call_statement] = STATE(1535), - [sym_function_call] = STATE(4086), - [sym_if_statement] = STATE(1535), - [sym_label] = STATE(1536), - [sym_repeat_statement] = STATE(1535), - [sym__procedure_terminator] = STATE(1216), - [sym_procedure_statement] = STATE(1535), - [sym_procedure_parameter_definition] = STATE(1535), - [sym_function_statement] = STATE(1535), - [sym_return_statement] = STATE(1535), - [sym_interface_statement] = STATE(1535), - [sym_using_statement] = STATE(1535), - [sym_class_statement] = STATE(1535), - [sym_object_access] = STATE(3567), - [sym_stream_definition] = STATE(1535), - [sym_input_close_statement] = STATE(1535), - [sym_output_close_statement] = STATE(1535), - [sym__stream_statement] = STATE(1535), - [sym_input_stream_statement] = STATE(1537), - [sym_output_stream_statement] = STATE(1537), - [sym_do_block] = STATE(1535), - [sym_case_statement] = STATE(1535), - [sym_for_statement] = STATE(1535), - [sym_find_statement] = STATE(1535), - [sym_abl_statement] = STATE(1535), - [sym_assign_statement] = STATE(1535), - [sym_catch_statement] = STATE(1535), - [sym_finally_statement] = STATE(1535), - [sym_accumulate_statement] = STATE(1535), - [sym_undo_statement] = STATE(1535), - [sym_error_scope_statement] = STATE(1535), - [sym_temp_table_definition] = STATE(1535), - [sym_on_statement] = STATE(1535), - [sym__statement] = STATE(1538), - [aux_sym_source_code_repeat1] = STATE(276), - [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(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), + [anon_sym_SLASH_SLASH] = ACTIONS(59), + [anon_sym_SLASH_STAR] = ACTIONS(61), + [anon_sym_SLASH] = ACTIONS(227), + [anon_sym_LBRACE] = ACTIONS(65), + [anon_sym_STAR] = ACTIONS(229), + [sym__terminator] = ACTIONS(245), + [anon_sym_LPAREN] = ACTIONS(245), + [anon_sym_RPAREN] = ACTIONS(245), + [anon_sym_PLUS] = ACTIONS(233), + [anon_sym_DASH] = ACTIONS(233), + [anon_sym_LT] = ACTIONS(235), + [anon_sym_LT_EQ] = ACTIONS(237), + [anon_sym_LT_GT] = ACTIONS(237), + [anon_sym_EQ] = ACTIONS(237), + [anon_sym_GT] = ACTIONS(235), + [anon_sym_GT_EQ] = ACTIONS(237), + [aux_sym__comparison_operator_token1] = ACTIONS(237), + [aux_sym__comparison_operator_token2] = ACTIONS(237), + [aux_sym__comparison_operator_token3] = ACTIONS(237), + [aux_sym__comparison_operator_token4] = ACTIONS(237), + [aux_sym__comparison_operator_token5] = ACTIONS(237), + [aux_sym__comparison_operator_token6] = ACTIONS(237), + [aux_sym__comparison_operator_token7] = ACTIONS(237), + [aux_sym__comparison_operator_token8] = ACTIONS(237), + [aux_sym__comparison_operator_token9] = ACTIONS(237), + [aux_sym_variable_tuning_token1] = ACTIONS(245), + [aux_sym_variable_tuning_token2] = ACTIONS(245), + [aux_sym_variable_tuning_token3] = ACTIONS(245), + [aux_sym_variable_tuning_token4] = ACTIONS(245), + [aux_sym_variable_tuning_token5] = ACTIONS(245), + [aux_sym_variable_tuning_token6] = ACTIONS(245), + [anon_sym_COMMA] = ACTIONS(245), + [aux_sym_if_statement_token2] = ACTIONS(245), + [aux_sym_else_if_statement_token1] = ACTIONS(245), + [anon_sym_COLON] = ACTIONS(245), + [aux_sym_while_phrase_token1] = ACTIONS(245), + [aux_sym_repeat_tuning_token1] = ACTIONS(245), + [aux_sym_property_tuning_token1] = ACTIONS(245), + [aux_sym_event_definition_token1] = ACTIONS(245), + [aux_sym_input_stream_tuning_token1] = ACTIONS(245), + [aux_sym_input_stream_tuning_token2] = ACTIONS(245), + [aux_sym_input_stream_tuning_token3] = ACTIONS(245), + [aux_sym_input_stream_tuning_token4] = ACTIONS(245), + [aux_sym_input_stream_tuning_token5] = ACTIONS(245), + [aux_sym_input_stream_tuning_token6] = ACTIONS(245), + [aux_sym_input_stream_tuning_token7] = ACTIONS(245), + [aux_sym_input_stream_tuning_token8] = ACTIONS(245), + [aux_sym_input_stream_tuning_token9] = ACTIONS(245), + [aux_sym_input_stream_tuning_token11] = ACTIONS(245), + [aux_sym_output_stream_tuning_token1] = ACTIONS(245), + [aux_sym_output_stream_tuning_token2] = ACTIONS(245), + [aux_sym_output_stream_tuning_token3] = ACTIONS(245), + [aux_sym_output_stream_tuning_token4] = ACTIONS(245), + [aux_sym_output_stream_tuning_token5] = ACTIONS(245), + [aux_sym_output_stream_tuning_token6] = ACTIONS(245), + [aux_sym_output_stream_tuning_token7] = ACTIONS(245), + [aux_sym_output_stream_tuning_token8] = ACTIONS(245), + [aux_sym_output_stream_statement_token1] = ACTIONS(245), + [aux_sym_on_error_phrase_token1] = ACTIONS(245), + [aux_sym_stop_after_phrase_token1] = ACTIONS(245), + [aux_sym_do_tuning_token1] = ACTIONS(245), + [anon_sym_BY] = ACTIONS(245), + [aux_sym_of_token1] = ACTIONS(245), + [aux_sym_field_definition_token1] = ACTIONS(245), + [aux_sym_index_definition_token1] = ACTIONS(245), + [aux_sym_on_statement_token1] = ACTIONS(245), + [sym__or_operator] = ACTIONS(239), + [sym__and_operator] = ACTIONS(239), }, [51] = { - [sym_body] = STATE(3554), [sym_comment] = STATE(51), - [sym_qualified_name] = STATE(4733), - [sym__block_terminator] = STATE(1310), + [sym__logical_operator] = STATE(401), + [sym__additive_operator] = STATE(507), + [sym__multiplicative_operator] = STATE(516), + [sym__comparison_operator] = STATE(447), [sym_include] = STATE(51), - [sym_assignment] = STATE(4314), - [sym_variable_definition] = STATE(1535), - [sym_variable_assignment] = STATE(1535), - [sym_buffer_definition] = STATE(1535), - [sym_query_definition] = STATE(1535), - [sym_function_call_statement] = STATE(1535), - [sym_function_call] = STATE(4086), - [sym_if_statement] = STATE(1535), - [sym_label] = STATE(1536), - [sym_repeat_statement] = STATE(1535), - [sym__procedure_terminator] = STATE(1310), - [sym_procedure_statement] = STATE(1535), - [sym_procedure_parameter_definition] = STATE(1535), - [sym_function_statement] = STATE(1535), - [sym_return_statement] = STATE(1535), - [sym_interface_statement] = STATE(1535), - [sym_using_statement] = STATE(1535), - [sym_class_statement] = STATE(1535), - [sym_object_access] = STATE(3567), - [sym_stream_definition] = STATE(1535), - [sym_input_close_statement] = STATE(1535), - [sym_output_close_statement] = STATE(1535), - [sym__stream_statement] = STATE(1535), - [sym_input_stream_statement] = STATE(1537), - [sym_output_stream_statement] = STATE(1537), - [sym_do_block] = STATE(1535), - [sym_case_statement] = STATE(1535), - [sym_for_statement] = STATE(1535), - [sym_find_statement] = STATE(1535), - [sym_abl_statement] = STATE(1535), - [sym_assign_statement] = STATE(1535), - [sym_catch_statement] = STATE(1535), - [sym_finally_statement] = STATE(1535), - [sym_accumulate_statement] = STATE(1535), - [sym_undo_statement] = STATE(1535), - [sym_error_scope_statement] = STATE(1535), - [sym_temp_table_definition] = STATE(1535), - [sym_on_statement] = STATE(1535), - [sym__statement] = STATE(1538), - [aux_sym_source_code_repeat1] = STATE(276), - [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(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), + [anon_sym_SLASH_SLASH] = ACTIONS(59), + [anon_sym_SLASH_STAR] = ACTIONS(61), + [anon_sym_SLASH] = ACTIONS(227), + [anon_sym_LBRACE] = ACTIONS(65), + [anon_sym_STAR] = ACTIONS(229), + [sym__terminator] = ACTIONS(125), + [anon_sym_LPAREN] = ACTIONS(125), + [anon_sym_RPAREN] = ACTIONS(125), + [anon_sym_PLUS] = ACTIONS(233), + [anon_sym_DASH] = ACTIONS(233), + [anon_sym_LT] = ACTIONS(235), + [anon_sym_LT_EQ] = ACTIONS(237), + [anon_sym_LT_GT] = ACTIONS(237), + [anon_sym_EQ] = ACTIONS(237), + [anon_sym_GT] = ACTIONS(235), + [anon_sym_GT_EQ] = ACTIONS(237), + [aux_sym__comparison_operator_token1] = ACTIONS(237), + [aux_sym__comparison_operator_token2] = ACTIONS(237), + [aux_sym__comparison_operator_token3] = ACTIONS(237), + [aux_sym__comparison_operator_token4] = ACTIONS(237), + [aux_sym__comparison_operator_token5] = ACTIONS(237), + [aux_sym__comparison_operator_token6] = ACTIONS(237), + [aux_sym__comparison_operator_token7] = ACTIONS(237), + [aux_sym__comparison_operator_token8] = ACTIONS(237), + [aux_sym__comparison_operator_token9] = ACTIONS(237), + [aux_sym_variable_tuning_token1] = ACTIONS(125), + [aux_sym_variable_tuning_token2] = ACTIONS(125), + [aux_sym_variable_tuning_token3] = ACTIONS(125), + [aux_sym_variable_tuning_token4] = ACTIONS(125), + [aux_sym_variable_tuning_token5] = ACTIONS(125), + [aux_sym_variable_tuning_token6] = ACTIONS(125), + [anon_sym_COMMA] = ACTIONS(125), + [aux_sym_if_statement_token2] = ACTIONS(125), + [aux_sym_else_if_statement_token1] = ACTIONS(125), + [anon_sym_COLON] = ACTIONS(125), + [aux_sym_while_phrase_token1] = ACTIONS(125), + [aux_sym_repeat_tuning_token1] = ACTIONS(125), + [aux_sym_property_tuning_token1] = ACTIONS(125), + [aux_sym_event_definition_token1] = ACTIONS(125), + [aux_sym_input_stream_tuning_token1] = ACTIONS(125), + [aux_sym_input_stream_tuning_token2] = ACTIONS(125), + [aux_sym_input_stream_tuning_token3] = ACTIONS(125), + [aux_sym_input_stream_tuning_token4] = ACTIONS(125), + [aux_sym_input_stream_tuning_token5] = ACTIONS(125), + [aux_sym_input_stream_tuning_token6] = ACTIONS(125), + [aux_sym_input_stream_tuning_token7] = ACTIONS(125), + [aux_sym_input_stream_tuning_token8] = ACTIONS(125), + [aux_sym_input_stream_tuning_token9] = ACTIONS(125), + [aux_sym_input_stream_tuning_token11] = ACTIONS(125), + [aux_sym_output_stream_tuning_token1] = ACTIONS(125), + [aux_sym_output_stream_tuning_token2] = ACTIONS(125), + [aux_sym_output_stream_tuning_token3] = ACTIONS(125), + [aux_sym_output_stream_tuning_token4] = ACTIONS(125), + [aux_sym_output_stream_tuning_token5] = ACTIONS(125), + [aux_sym_output_stream_tuning_token6] = ACTIONS(125), + [aux_sym_output_stream_tuning_token7] = ACTIONS(125), + [aux_sym_output_stream_tuning_token8] = ACTIONS(125), + [aux_sym_output_stream_statement_token1] = ACTIONS(125), + [aux_sym_on_error_phrase_token1] = ACTIONS(125), + [aux_sym_stop_after_phrase_token1] = ACTIONS(125), + [aux_sym_do_tuning_token1] = ACTIONS(125), + [anon_sym_BY] = ACTIONS(125), + [aux_sym_of_token1] = ACTIONS(125), + [aux_sym_field_definition_token1] = ACTIONS(125), + [aux_sym_index_definition_token1] = ACTIONS(125), + [aux_sym_on_statement_token1] = ACTIONS(125), + [sym__or_operator] = ACTIONS(125), + [sym__and_operator] = ACTIONS(125), }, [52] = { - [sym_body] = STATE(3313), [sym_comment] = STATE(52), - [sym_qualified_name] = STATE(4733), - [sym__block_terminator] = STATE(1198), + [sym__logical_operator] = STATE(401), + [sym__additive_operator] = STATE(507), + [sym__multiplicative_operator] = STATE(516), + [sym__comparison_operator] = STATE(447), [sym_include] = STATE(52), - [sym_assignment] = STATE(4314), - [sym_variable_definition] = STATE(1535), - [sym_variable_assignment] = STATE(1535), - [sym_buffer_definition] = STATE(1535), - [sym_query_definition] = STATE(1535), - [sym_function_call_statement] = STATE(1535), - [sym_function_call] = STATE(4086), - [sym_if_statement] = STATE(1535), - [sym_label] = STATE(1536), - [sym_repeat_statement] = STATE(1535), - [sym_procedure_statement] = STATE(1535), - [sym_procedure_parameter_definition] = STATE(1535), - [sym__function_terminator] = STATE(1197), - [sym_function_statement] = STATE(1535), - [sym_return_statement] = STATE(1535), - [sym_interface_statement] = STATE(1535), - [sym_using_statement] = STATE(1535), - [sym_class_statement] = STATE(1535), - [sym_object_access] = STATE(3567), - [sym_stream_definition] = STATE(1535), - [sym_input_close_statement] = STATE(1535), - [sym_output_close_statement] = STATE(1535), - [sym__stream_statement] = STATE(1535), - [sym_input_stream_statement] = STATE(1537), - [sym_output_stream_statement] = STATE(1537), - [sym_do_block] = STATE(1535), - [sym_case_statement] = STATE(1535), - [sym_for_statement] = STATE(1535), - [sym_find_statement] = STATE(1535), - [sym_abl_statement] = STATE(1535), - [sym_assign_statement] = STATE(1535), - [sym_catch_statement] = STATE(1535), - [sym_finally_statement] = STATE(1535), - [sym_accumulate_statement] = STATE(1535), - [sym_undo_statement] = STATE(1535), - [sym_error_scope_statement] = STATE(1535), - [sym_temp_table_definition] = STATE(1535), - [sym_on_statement] = STATE(1535), - [sym__statement] = STATE(1538), - [aux_sym_source_code_repeat1] = STATE(276), - [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(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), + [anon_sym_SLASH_SLASH] = ACTIONS(59), + [anon_sym_SLASH_STAR] = ACTIONS(61), + [anon_sym_SLASH] = ACTIONS(227), + [anon_sym_LBRACE] = ACTIONS(65), + [anon_sym_STAR] = ACTIONS(229), + [sym__terminator] = ACTIONS(247), + [anon_sym_LPAREN] = ACTIONS(247), + [anon_sym_RPAREN] = ACTIONS(247), + [anon_sym_PLUS] = ACTIONS(233), + [anon_sym_DASH] = ACTIONS(233), + [anon_sym_LT] = ACTIONS(235), + [anon_sym_LT_EQ] = ACTIONS(237), + [anon_sym_LT_GT] = ACTIONS(237), + [anon_sym_EQ] = ACTIONS(237), + [anon_sym_GT] = ACTIONS(235), + [anon_sym_GT_EQ] = ACTIONS(237), + [aux_sym__comparison_operator_token1] = ACTIONS(237), + [aux_sym__comparison_operator_token2] = ACTIONS(237), + [aux_sym__comparison_operator_token3] = ACTIONS(237), + [aux_sym__comparison_operator_token4] = ACTIONS(237), + [aux_sym__comparison_operator_token5] = ACTIONS(237), + [aux_sym__comparison_operator_token6] = ACTIONS(237), + [aux_sym__comparison_operator_token7] = ACTIONS(237), + [aux_sym__comparison_operator_token8] = ACTIONS(237), + [aux_sym__comparison_operator_token9] = ACTIONS(237), + [aux_sym_variable_tuning_token1] = ACTIONS(247), + [aux_sym_variable_tuning_token2] = ACTIONS(247), + [aux_sym_variable_tuning_token3] = ACTIONS(247), + [aux_sym_variable_tuning_token4] = ACTIONS(247), + [aux_sym_variable_tuning_token5] = ACTIONS(247), + [aux_sym_variable_tuning_token6] = ACTIONS(247), + [anon_sym_COMMA] = ACTIONS(247), + [aux_sym_if_statement_token2] = ACTIONS(247), + [aux_sym_else_if_statement_token1] = ACTIONS(247), + [anon_sym_COLON] = ACTIONS(247), + [aux_sym_while_phrase_token1] = ACTIONS(247), + [aux_sym_repeat_tuning_token1] = ACTIONS(247), + [aux_sym_property_tuning_token1] = ACTIONS(247), + [aux_sym_event_definition_token1] = ACTIONS(247), + [aux_sym_input_stream_tuning_token1] = ACTIONS(247), + [aux_sym_input_stream_tuning_token2] = ACTIONS(247), + [aux_sym_input_stream_tuning_token3] = ACTIONS(247), + [aux_sym_input_stream_tuning_token4] = ACTIONS(247), + [aux_sym_input_stream_tuning_token5] = ACTIONS(247), + [aux_sym_input_stream_tuning_token6] = ACTIONS(247), + [aux_sym_input_stream_tuning_token7] = ACTIONS(247), + [aux_sym_input_stream_tuning_token8] = ACTIONS(247), + [aux_sym_input_stream_tuning_token9] = ACTIONS(247), + [aux_sym_input_stream_tuning_token11] = ACTIONS(247), + [aux_sym_output_stream_tuning_token1] = ACTIONS(247), + [aux_sym_output_stream_tuning_token2] = ACTIONS(247), + [aux_sym_output_stream_tuning_token3] = ACTIONS(247), + [aux_sym_output_stream_tuning_token4] = ACTIONS(247), + [aux_sym_output_stream_tuning_token5] = ACTIONS(247), + [aux_sym_output_stream_tuning_token6] = ACTIONS(247), + [aux_sym_output_stream_tuning_token7] = ACTIONS(247), + [aux_sym_output_stream_tuning_token8] = ACTIONS(247), + [aux_sym_output_stream_statement_token1] = ACTIONS(247), + [aux_sym_on_error_phrase_token1] = ACTIONS(247), + [aux_sym_stop_after_phrase_token1] = ACTIONS(247), + [aux_sym_do_tuning_token1] = ACTIONS(247), + [anon_sym_BY] = ACTIONS(247), + [aux_sym_of_token1] = ACTIONS(247), + [aux_sym_field_definition_token1] = ACTIONS(247), + [aux_sym_index_definition_token1] = ACTIONS(247), + [aux_sym_on_statement_token1] = ACTIONS(247), + [sym__or_operator] = ACTIONS(239), + [sym__and_operator] = ACTIONS(239), }, [53] = { - [sym_body] = STATE(3530), [sym_comment] = STATE(53), - [sym_qualified_name] = STATE(4733), - [sym__block_terminator] = STATE(1477), + [sym__logical_operator] = STATE(401), + [sym__additive_operator] = STATE(507), + [sym__multiplicative_operator] = STATE(516), + [sym__comparison_operator] = STATE(447), [sym_include] = STATE(53), - [sym_assignment] = STATE(4314), - [sym_variable_definition] = STATE(1535), - [sym_variable_assignment] = STATE(1535), - [sym_buffer_definition] = STATE(1535), - [sym_query_definition] = STATE(1535), - [sym_function_call_statement] = STATE(1535), - [sym_function_call] = STATE(4086), - [sym_if_statement] = STATE(1535), - [sym_label] = STATE(1536), - [sym_repeat_statement] = STATE(1535), - [sym_procedure_statement] = STATE(1535), - [sym_procedure_parameter_definition] = STATE(1535), - [sym__function_terminator] = STATE(1449), - [sym_function_statement] = STATE(1535), - [sym_return_statement] = STATE(1535), - [sym_interface_statement] = STATE(1535), - [sym_using_statement] = STATE(1535), - [sym_class_statement] = STATE(1535), - [sym_object_access] = STATE(3567), - [sym_stream_definition] = STATE(1535), - [sym_input_close_statement] = STATE(1535), - [sym_output_close_statement] = STATE(1535), - [sym__stream_statement] = STATE(1535), - [sym_input_stream_statement] = STATE(1537), - [sym_output_stream_statement] = STATE(1537), - [sym_do_block] = STATE(1535), - [sym_case_statement] = STATE(1535), - [sym_for_statement] = STATE(1535), - [sym_find_statement] = STATE(1535), - [sym_abl_statement] = STATE(1535), - [sym_assign_statement] = STATE(1535), - [sym_catch_statement] = STATE(1535), - [sym_finally_statement] = STATE(1535), - [sym_accumulate_statement] = STATE(1535), - [sym_undo_statement] = STATE(1535), - [sym_error_scope_statement] = STATE(1535), - [sym_temp_table_definition] = STATE(1535), - [sym_on_statement] = STATE(1535), - [sym__statement] = STATE(1538), - [aux_sym_source_code_repeat1] = STATE(276), - [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(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), + [anon_sym_SLASH_SLASH] = ACTIONS(59), + [anon_sym_SLASH_STAR] = ACTIONS(61), + [anon_sym_SLASH] = ACTIONS(227), + [anon_sym_LBRACE] = ACTIONS(65), + [anon_sym_STAR] = ACTIONS(229), + [sym__terminator] = ACTIONS(249), + [anon_sym_LPAREN] = ACTIONS(249), + [anon_sym_RPAREN] = ACTIONS(249), + [anon_sym_PLUS] = ACTIONS(249), + [anon_sym_DASH] = ACTIONS(249), + [anon_sym_LT] = ACTIONS(251), + [anon_sym_LT_EQ] = ACTIONS(249), + [anon_sym_LT_GT] = ACTIONS(249), + [anon_sym_EQ] = ACTIONS(249), + [anon_sym_GT] = ACTIONS(251), + [anon_sym_GT_EQ] = ACTIONS(249), + [aux_sym__comparison_operator_token1] = ACTIONS(249), + [aux_sym__comparison_operator_token2] = ACTIONS(249), + [aux_sym__comparison_operator_token3] = ACTIONS(249), + [aux_sym__comparison_operator_token4] = ACTIONS(249), + [aux_sym__comparison_operator_token5] = ACTIONS(249), + [aux_sym__comparison_operator_token6] = ACTIONS(249), + [aux_sym__comparison_operator_token7] = ACTIONS(249), + [aux_sym__comparison_operator_token8] = ACTIONS(249), + [aux_sym__comparison_operator_token9] = ACTIONS(249), + [aux_sym_variable_tuning_token1] = ACTIONS(249), + [aux_sym_variable_tuning_token2] = ACTIONS(249), + [aux_sym_variable_tuning_token3] = ACTIONS(249), + [aux_sym_variable_tuning_token4] = ACTIONS(249), + [aux_sym_variable_tuning_token5] = ACTIONS(249), + [aux_sym_variable_tuning_token6] = ACTIONS(249), + [anon_sym_COMMA] = ACTIONS(249), + [aux_sym_if_statement_token2] = ACTIONS(249), + [aux_sym_else_if_statement_token1] = ACTIONS(249), + [anon_sym_COLON] = ACTIONS(249), + [aux_sym_while_phrase_token1] = ACTIONS(249), + [aux_sym_repeat_tuning_token1] = ACTIONS(249), + [aux_sym_property_tuning_token1] = ACTIONS(249), + [aux_sym_event_definition_token1] = ACTIONS(249), + [aux_sym_input_stream_tuning_token1] = ACTIONS(249), + [aux_sym_input_stream_tuning_token2] = ACTIONS(249), + [aux_sym_input_stream_tuning_token3] = ACTIONS(249), + [aux_sym_input_stream_tuning_token4] = ACTIONS(249), + [aux_sym_input_stream_tuning_token5] = ACTIONS(249), + [aux_sym_input_stream_tuning_token6] = ACTIONS(249), + [aux_sym_input_stream_tuning_token7] = ACTIONS(249), + [aux_sym_input_stream_tuning_token8] = ACTIONS(249), + [aux_sym_input_stream_tuning_token9] = ACTIONS(249), + [aux_sym_input_stream_tuning_token11] = ACTIONS(249), + [aux_sym_output_stream_tuning_token1] = ACTIONS(249), + [aux_sym_output_stream_tuning_token2] = ACTIONS(249), + [aux_sym_output_stream_tuning_token3] = ACTIONS(249), + [aux_sym_output_stream_tuning_token4] = ACTIONS(249), + [aux_sym_output_stream_tuning_token5] = ACTIONS(249), + [aux_sym_output_stream_tuning_token6] = ACTIONS(249), + [aux_sym_output_stream_tuning_token7] = ACTIONS(249), + [aux_sym_output_stream_tuning_token8] = ACTIONS(249), + [aux_sym_output_stream_statement_token1] = ACTIONS(249), + [aux_sym_on_error_phrase_token1] = ACTIONS(249), + [aux_sym_stop_after_phrase_token1] = ACTIONS(249), + [aux_sym_do_tuning_token1] = ACTIONS(249), + [anon_sym_BY] = ACTIONS(249), + [aux_sym_of_token1] = ACTIONS(249), + [aux_sym_field_definition_token1] = ACTIONS(249), + [aux_sym_index_definition_token1] = ACTIONS(249), + [aux_sym_on_statement_token1] = ACTIONS(249), + [sym__or_operator] = ACTIONS(249), + [sym__and_operator] = ACTIONS(249), }, [54] = { - [sym_body] = STATE(3180), [sym_comment] = STATE(54), - [sym_qualified_name] = STATE(4733), - [sym__block_terminator] = STATE(1195), + [sym__logical_operator] = STATE(401), + [sym__additive_operator] = STATE(507), + [sym__multiplicative_operator] = STATE(516), + [sym__comparison_operator] = STATE(447), [sym_include] = STATE(54), - [sym_assignment] = STATE(4314), - [sym_variable_definition] = STATE(1535), - [sym_variable_assignment] = STATE(1535), - [sym_buffer_definition] = STATE(1535), - [sym_query_definition] = STATE(1535), - [sym_function_call_statement] = STATE(1535), - [sym_function_call] = STATE(4086), - [sym_if_statement] = STATE(1535), - [sym_label] = STATE(1536), - [sym_repeat_statement] = STATE(1535), - [sym__procedure_terminator] = STATE(1195), - [sym_procedure_statement] = STATE(1535), - [sym_procedure_parameter_definition] = STATE(1535), - [sym_function_statement] = STATE(1535), - [sym_return_statement] = STATE(1535), - [sym_interface_statement] = STATE(1535), - [sym_using_statement] = STATE(1535), - [sym_class_statement] = STATE(1535), - [sym_object_access] = STATE(3567), - [sym_stream_definition] = STATE(1535), - [sym_input_close_statement] = STATE(1535), - [sym_output_close_statement] = STATE(1535), - [sym__stream_statement] = STATE(1535), - [sym_input_stream_statement] = STATE(1537), - [sym_output_stream_statement] = STATE(1537), - [sym_do_block] = STATE(1535), - [sym_case_statement] = STATE(1535), - [sym_for_statement] = STATE(1535), - [sym_find_statement] = STATE(1535), - [sym_abl_statement] = STATE(1535), - [sym_assign_statement] = STATE(1535), - [sym_catch_statement] = STATE(1535), - [sym_finally_statement] = STATE(1535), - [sym_accumulate_statement] = STATE(1535), - [sym_undo_statement] = STATE(1535), - [sym_error_scope_statement] = STATE(1535), - [sym_temp_table_definition] = STATE(1535), - [sym_on_statement] = STATE(1535), - [sym__statement] = STATE(1538), - [aux_sym_source_code_repeat1] = STATE(276), - [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(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), + [anon_sym_SLASH_SLASH] = ACTIONS(59), + [anon_sym_SLASH_STAR] = ACTIONS(61), + [anon_sym_SLASH] = ACTIONS(253), + [anon_sym_LBRACE] = ACTIONS(65), + [anon_sym_STAR] = ACTIONS(255), + [sym__terminator] = ACTIONS(255), + [anon_sym_LPAREN] = ACTIONS(255), + [anon_sym_RPAREN] = ACTIONS(255), + [anon_sym_PLUS] = ACTIONS(255), + [anon_sym_DASH] = ACTIONS(255), + [anon_sym_LT] = ACTIONS(253), + [anon_sym_LT_EQ] = ACTIONS(255), + [anon_sym_LT_GT] = ACTIONS(255), + [anon_sym_EQ] = ACTIONS(255), + [anon_sym_GT] = ACTIONS(253), + [anon_sym_GT_EQ] = ACTIONS(255), + [aux_sym__comparison_operator_token1] = ACTIONS(255), + [aux_sym__comparison_operator_token2] = ACTIONS(255), + [aux_sym__comparison_operator_token3] = ACTIONS(255), + [aux_sym__comparison_operator_token4] = ACTIONS(255), + [aux_sym__comparison_operator_token5] = ACTIONS(255), + [aux_sym__comparison_operator_token6] = ACTIONS(255), + [aux_sym__comparison_operator_token7] = ACTIONS(255), + [aux_sym__comparison_operator_token8] = ACTIONS(255), + [aux_sym__comparison_operator_token9] = ACTIONS(255), + [aux_sym_variable_tuning_token1] = ACTIONS(255), + [aux_sym_variable_tuning_token2] = ACTIONS(255), + [aux_sym_variable_tuning_token3] = ACTIONS(255), + [aux_sym_variable_tuning_token4] = ACTIONS(255), + [aux_sym_variable_tuning_token5] = ACTIONS(255), + [aux_sym_variable_tuning_token6] = ACTIONS(255), + [anon_sym_COMMA] = ACTIONS(255), + [aux_sym_if_statement_token2] = ACTIONS(255), + [aux_sym_else_if_statement_token1] = ACTIONS(255), + [anon_sym_COLON] = ACTIONS(255), + [aux_sym_while_phrase_token1] = ACTIONS(255), + [aux_sym_repeat_tuning_token1] = ACTIONS(255), + [aux_sym_property_tuning_token1] = ACTIONS(255), + [aux_sym_event_definition_token1] = ACTIONS(255), + [aux_sym_input_stream_tuning_token1] = ACTIONS(255), + [aux_sym_input_stream_tuning_token2] = ACTIONS(255), + [aux_sym_input_stream_tuning_token3] = ACTIONS(255), + [aux_sym_input_stream_tuning_token4] = ACTIONS(255), + [aux_sym_input_stream_tuning_token5] = ACTIONS(255), + [aux_sym_input_stream_tuning_token6] = ACTIONS(255), + [aux_sym_input_stream_tuning_token7] = ACTIONS(255), + [aux_sym_input_stream_tuning_token8] = ACTIONS(255), + [aux_sym_input_stream_tuning_token9] = ACTIONS(255), + [aux_sym_input_stream_tuning_token11] = ACTIONS(255), + [aux_sym_output_stream_tuning_token1] = ACTIONS(255), + [aux_sym_output_stream_tuning_token2] = ACTIONS(255), + [aux_sym_output_stream_tuning_token3] = ACTIONS(255), + [aux_sym_output_stream_tuning_token4] = ACTIONS(255), + [aux_sym_output_stream_tuning_token5] = ACTIONS(255), + [aux_sym_output_stream_tuning_token6] = ACTIONS(255), + [aux_sym_output_stream_tuning_token7] = ACTIONS(255), + [aux_sym_output_stream_tuning_token8] = ACTIONS(255), + [aux_sym_output_stream_statement_token1] = ACTIONS(255), + [aux_sym_on_error_phrase_token1] = ACTIONS(255), + [aux_sym_stop_after_phrase_token1] = ACTIONS(255), + [aux_sym_do_tuning_token1] = ACTIONS(255), + [anon_sym_BY] = ACTIONS(255), + [aux_sym_of_token1] = ACTIONS(255), + [aux_sym_field_definition_token1] = ACTIONS(255), + [aux_sym_index_definition_token1] = ACTIONS(255), + [aux_sym_on_statement_token1] = ACTIONS(255), + [sym__or_operator] = ACTIONS(255), + [sym__and_operator] = ACTIONS(255), }, [55] = { - [sym_body] = STATE(3527), [sym_comment] = STATE(55), - [sym_qualified_name] = STATE(4733), - [sym__block_terminator] = STATE(1477), + [sym__logical_operator] = STATE(401), + [sym__additive_operator] = STATE(507), + [sym__multiplicative_operator] = STATE(516), + [sym__comparison_operator] = STATE(447), [sym_include] = STATE(55), - [sym_assignment] = STATE(4314), - [sym_variable_definition] = STATE(1535), - [sym_variable_assignment] = STATE(1535), - [sym_buffer_definition] = STATE(1535), - [sym_query_definition] = STATE(1535), - [sym_function_call_statement] = STATE(1535), - [sym_function_call] = STATE(4086), - [sym_if_statement] = STATE(1535), - [sym_label] = STATE(1536), - [sym_repeat_statement] = STATE(1535), - [sym_procedure_statement] = STATE(1535), - [sym_procedure_parameter_definition] = STATE(1535), - [sym__function_terminator] = STATE(1432), - [sym_function_statement] = STATE(1535), - [sym_return_statement] = STATE(1535), - [sym_interface_statement] = STATE(1535), - [sym_using_statement] = STATE(1535), - [sym_class_statement] = STATE(1535), - [sym_object_access] = STATE(3567), - [sym_stream_definition] = STATE(1535), - [sym_input_close_statement] = STATE(1535), - [sym_output_close_statement] = STATE(1535), - [sym__stream_statement] = STATE(1535), - [sym_input_stream_statement] = STATE(1537), - [sym_output_stream_statement] = STATE(1537), - [sym_do_block] = STATE(1535), - [sym_case_statement] = STATE(1535), - [sym_for_statement] = STATE(1535), - [sym_find_statement] = STATE(1535), - [sym_abl_statement] = STATE(1535), - [sym_assign_statement] = STATE(1535), - [sym_catch_statement] = STATE(1535), - [sym_finally_statement] = STATE(1535), - [sym_accumulate_statement] = STATE(1535), - [sym_undo_statement] = STATE(1535), - [sym_error_scope_statement] = STATE(1535), - [sym_temp_table_definition] = STATE(1535), - [sym_on_statement] = STATE(1535), - [sym__statement] = STATE(1538), - [aux_sym_source_code_repeat1] = STATE(276), - [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(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), + [anon_sym_SLASH_SLASH] = ACTIONS(59), + [anon_sym_SLASH_STAR] = ACTIONS(61), + [anon_sym_SLASH] = ACTIONS(227), + [anon_sym_LBRACE] = ACTIONS(65), + [anon_sym_STAR] = ACTIONS(229), + [sym__terminator] = ACTIONS(257), + [anon_sym_LPAREN] = ACTIONS(257), + [anon_sym_RPAREN] = ACTIONS(257), + [anon_sym_PLUS] = ACTIONS(233), + [anon_sym_DASH] = ACTIONS(233), + [anon_sym_LT] = ACTIONS(259), + [anon_sym_LT_EQ] = ACTIONS(257), + [anon_sym_LT_GT] = ACTIONS(257), + [anon_sym_EQ] = ACTIONS(257), + [anon_sym_GT] = ACTIONS(259), + [anon_sym_GT_EQ] = ACTIONS(257), + [aux_sym__comparison_operator_token1] = ACTIONS(257), + [aux_sym__comparison_operator_token2] = ACTIONS(257), + [aux_sym__comparison_operator_token3] = ACTIONS(257), + [aux_sym__comparison_operator_token4] = ACTIONS(257), + [aux_sym__comparison_operator_token5] = ACTIONS(257), + [aux_sym__comparison_operator_token6] = ACTIONS(257), + [aux_sym__comparison_operator_token7] = ACTIONS(257), + [aux_sym__comparison_operator_token8] = ACTIONS(257), + [aux_sym__comparison_operator_token9] = ACTIONS(257), + [aux_sym_variable_tuning_token1] = ACTIONS(257), + [aux_sym_variable_tuning_token2] = ACTIONS(257), + [aux_sym_variable_tuning_token3] = ACTIONS(257), + [aux_sym_variable_tuning_token4] = ACTIONS(257), + [aux_sym_variable_tuning_token5] = ACTIONS(257), + [aux_sym_variable_tuning_token6] = ACTIONS(257), + [anon_sym_COMMA] = ACTIONS(257), + [aux_sym_if_statement_token2] = ACTIONS(257), + [aux_sym_else_if_statement_token1] = ACTIONS(257), + [anon_sym_COLON] = ACTIONS(257), + [aux_sym_while_phrase_token1] = ACTIONS(257), + [aux_sym_repeat_tuning_token1] = ACTIONS(257), + [aux_sym_property_tuning_token1] = ACTIONS(257), + [aux_sym_event_definition_token1] = ACTIONS(257), + [aux_sym_input_stream_tuning_token1] = ACTIONS(257), + [aux_sym_input_stream_tuning_token2] = ACTIONS(257), + [aux_sym_input_stream_tuning_token3] = ACTIONS(257), + [aux_sym_input_stream_tuning_token4] = ACTIONS(257), + [aux_sym_input_stream_tuning_token5] = ACTIONS(257), + [aux_sym_input_stream_tuning_token6] = ACTIONS(257), + [aux_sym_input_stream_tuning_token7] = ACTIONS(257), + [aux_sym_input_stream_tuning_token8] = ACTIONS(257), + [aux_sym_input_stream_tuning_token9] = ACTIONS(257), + [aux_sym_input_stream_tuning_token11] = ACTIONS(257), + [aux_sym_output_stream_tuning_token1] = ACTIONS(257), + [aux_sym_output_stream_tuning_token2] = ACTIONS(257), + [aux_sym_output_stream_tuning_token3] = ACTIONS(257), + [aux_sym_output_stream_tuning_token4] = ACTIONS(257), + [aux_sym_output_stream_tuning_token5] = ACTIONS(257), + [aux_sym_output_stream_tuning_token6] = ACTIONS(257), + [aux_sym_output_stream_tuning_token7] = ACTIONS(257), + [aux_sym_output_stream_tuning_token8] = ACTIONS(257), + [aux_sym_output_stream_statement_token1] = ACTIONS(257), [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), + [aux_sym_stop_after_phrase_token1] = ACTIONS(257), + [aux_sym_do_tuning_token1] = ACTIONS(257), + [anon_sym_BY] = ACTIONS(257), + [aux_sym_of_token1] = ACTIONS(257), + [aux_sym_field_definition_token1] = ACTIONS(257), + [aux_sym_index_definition_token1] = ACTIONS(257), + [aux_sym_on_statement_token1] = ACTIONS(257), + [sym__or_operator] = ACTIONS(257), + [sym__and_operator] = ACTIONS(257), }, [56] = { - [sym_body] = STATE(3337), [sym_comment] = STATE(56), - [sym_qualified_name] = STATE(4733), - [sym__block_terminator] = STATE(1198), + [sym__logical_operator] = STATE(401), + [sym__additive_operator] = STATE(507), + [sym__multiplicative_operator] = STATE(516), + [sym__comparison_operator] = STATE(447), [sym_include] = STATE(56), - [sym_assignment] = STATE(4314), - [sym_variable_definition] = STATE(1535), - [sym_variable_assignment] = STATE(1535), - [sym_buffer_definition] = STATE(1535), - [sym_query_definition] = STATE(1535), - [sym_function_call_statement] = STATE(1535), - [sym_function_call] = STATE(4086), - [sym_if_statement] = STATE(1535), - [sym_label] = STATE(1536), - [sym_repeat_statement] = STATE(1535), - [sym_procedure_statement] = STATE(1535), - [sym_procedure_parameter_definition] = STATE(1535), - [sym__function_terminator] = STATE(1201), - [sym_function_statement] = STATE(1535), - [sym_return_statement] = STATE(1535), - [sym_interface_statement] = STATE(1535), - [sym_using_statement] = STATE(1535), - [sym_class_statement] = STATE(1535), - [sym_object_access] = STATE(3567), - [sym_stream_definition] = STATE(1535), - [sym_input_close_statement] = STATE(1535), - [sym_output_close_statement] = STATE(1535), - [sym__stream_statement] = STATE(1535), - [sym_input_stream_statement] = STATE(1537), - [sym_output_stream_statement] = STATE(1537), - [sym_do_block] = STATE(1535), - [sym_case_statement] = STATE(1535), - [sym_for_statement] = STATE(1535), - [sym_find_statement] = STATE(1535), - [sym_abl_statement] = STATE(1535), - [sym_assign_statement] = STATE(1535), - [sym_catch_statement] = STATE(1535), - [sym_finally_statement] = STATE(1535), - [sym_accumulate_statement] = STATE(1535), - [sym_undo_statement] = STATE(1535), - [sym_error_scope_statement] = STATE(1535), - [sym_temp_table_definition] = STATE(1535), - [sym_on_statement] = STATE(1535), - [sym__statement] = STATE(1538), - [aux_sym_source_code_repeat1] = STATE(276), - [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(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), + [anon_sym_SLASH_SLASH] = ACTIONS(59), + [anon_sym_SLASH_STAR] = ACTIONS(61), + [anon_sym_SLASH] = ACTIONS(227), + [anon_sym_LBRACE] = ACTIONS(65), + [anon_sym_STAR] = ACTIONS(229), + [sym__terminator] = ACTIONS(261), + [anon_sym_LPAREN] = ACTIONS(261), + [anon_sym_RPAREN] = ACTIONS(261), + [anon_sym_PLUS] = ACTIONS(233), + [anon_sym_DASH] = ACTIONS(233), + [anon_sym_LT] = ACTIONS(235), + [anon_sym_LT_EQ] = ACTIONS(237), + [anon_sym_LT_GT] = ACTIONS(237), + [anon_sym_EQ] = ACTIONS(237), + [anon_sym_GT] = ACTIONS(235), + [anon_sym_GT_EQ] = ACTIONS(237), + [aux_sym__comparison_operator_token1] = ACTIONS(237), + [aux_sym__comparison_operator_token2] = ACTIONS(237), + [aux_sym__comparison_operator_token3] = ACTIONS(237), + [aux_sym__comparison_operator_token4] = ACTIONS(237), + [aux_sym__comparison_operator_token5] = ACTIONS(237), + [aux_sym__comparison_operator_token6] = ACTIONS(237), + [aux_sym__comparison_operator_token7] = ACTIONS(237), + [aux_sym__comparison_operator_token8] = ACTIONS(237), + [aux_sym__comparison_operator_token9] = ACTIONS(237), + [aux_sym_variable_tuning_token1] = ACTIONS(261), + [aux_sym_variable_tuning_token2] = ACTIONS(261), + [aux_sym_variable_tuning_token3] = ACTIONS(261), + [aux_sym_variable_tuning_token4] = ACTIONS(261), + [aux_sym_variable_tuning_token5] = ACTIONS(261), + [aux_sym_variable_tuning_token6] = ACTIONS(261), + [anon_sym_COMMA] = ACTIONS(261), + [aux_sym_if_statement_token2] = ACTIONS(261), + [aux_sym_else_if_statement_token1] = ACTIONS(261), + [anon_sym_COLON] = ACTIONS(261), + [aux_sym_while_phrase_token1] = ACTIONS(261), + [aux_sym_repeat_tuning_token1] = ACTIONS(261), + [aux_sym_property_tuning_token1] = ACTIONS(261), + [aux_sym_event_definition_token1] = ACTIONS(261), + [aux_sym_input_stream_tuning_token1] = ACTIONS(261), + [aux_sym_input_stream_tuning_token2] = ACTIONS(261), + [aux_sym_input_stream_tuning_token3] = ACTIONS(261), + [aux_sym_input_stream_tuning_token4] = ACTIONS(261), + [aux_sym_input_stream_tuning_token5] = ACTIONS(261), + [aux_sym_input_stream_tuning_token6] = ACTIONS(261), + [aux_sym_input_stream_tuning_token7] = ACTIONS(261), + [aux_sym_input_stream_tuning_token8] = ACTIONS(261), + [aux_sym_input_stream_tuning_token9] = ACTIONS(261), + [aux_sym_input_stream_tuning_token11] = ACTIONS(261), + [aux_sym_output_stream_tuning_token1] = ACTIONS(261), + [aux_sym_output_stream_tuning_token2] = ACTIONS(261), + [aux_sym_output_stream_tuning_token3] = ACTIONS(261), + [aux_sym_output_stream_tuning_token4] = ACTIONS(261), + [aux_sym_output_stream_tuning_token5] = ACTIONS(261), + [aux_sym_output_stream_tuning_token6] = ACTIONS(261), + [aux_sym_output_stream_tuning_token7] = ACTIONS(261), + [aux_sym_output_stream_tuning_token8] = ACTIONS(261), + [aux_sym_output_stream_statement_token1] = ACTIONS(261), + [aux_sym_on_error_phrase_token1] = ACTIONS(261), + [aux_sym_stop_after_phrase_token1] = ACTIONS(261), + [aux_sym_do_tuning_token1] = ACTIONS(261), + [anon_sym_BY] = ACTIONS(261), + [aux_sym_of_token1] = ACTIONS(261), + [aux_sym_field_definition_token1] = ACTIONS(261), + [aux_sym_index_definition_token1] = ACTIONS(261), + [aux_sym_on_statement_token1] = ACTIONS(261), + [sym__or_operator] = ACTIONS(239), + [sym__and_operator] = ACTIONS(239), }, [57] = { + [sym_body] = STATE(3578), [sym_comment] = STATE(57), - [sym__logical_operator] = STATE(411), - [sym__additive_operator] = STATE(408), - [sym__multiplicative_operator] = STATE(347), - [sym__comparison_operator] = STATE(375), + [sym_qualified_name] = STATE(4814), + [sym__block_terminator] = STATE(1414), [sym_include] = STATE(57), - [anon_sym_SLASH_SLASH] = ACTIONS(59), - [anon_sym_SLASH_STAR] = ACTIONS(61), - [anon_sym_SLASH] = ACTIONS(283), - [anon_sym_LBRACE] = ACTIONS(65), - [anon_sym_STAR] = ACTIONS(285), - [sym__terminator] = ACTIONS(287), - [anon_sym_LPAREN] = ACTIONS(287), - [anon_sym_RPAREN] = ACTIONS(287), - [anon_sym_PLUS] = ACTIONS(289), - [anon_sym_DASH] = ACTIONS(289), - [anon_sym_LT] = ACTIONS(291), - [anon_sym_LT_EQ] = ACTIONS(293), - [anon_sym_LT_GT] = ACTIONS(293), - [anon_sym_EQ] = ACTIONS(293), - [anon_sym_GT] = ACTIONS(291), - [anon_sym_GT_EQ] = ACTIONS(293), - [aux_sym__comparison_operator_token1] = ACTIONS(293), - [aux_sym__comparison_operator_token2] = ACTIONS(293), - [aux_sym__comparison_operator_token3] = ACTIONS(293), - [aux_sym__comparison_operator_token4] = ACTIONS(293), - [aux_sym__comparison_operator_token5] = ACTIONS(293), - [aux_sym__comparison_operator_token6] = ACTIONS(293), - [aux_sym__comparison_operator_token7] = ACTIONS(293), - [aux_sym__comparison_operator_token8] = ACTIONS(293), - [aux_sym__comparison_operator_token9] = ACTIONS(293), - [aux_sym_variable_tuning_token1] = ACTIONS(287), - [aux_sym_variable_tuning_token2] = ACTIONS(287), - [aux_sym_variable_tuning_token3] = ACTIONS(287), - [aux_sym_variable_tuning_token4] = ACTIONS(287), - [aux_sym_variable_tuning_token5] = ACTIONS(287), - [aux_sym_variable_tuning_token6] = ACTIONS(287), - [anon_sym_COMMA] = ACTIONS(287), - [aux_sym_if_statement_token2] = ACTIONS(287), - [aux_sym_else_if_statement_token1] = ACTIONS(287), - [anon_sym_COLON] = ACTIONS(287), - [aux_sym_while_phrase_token1] = ACTIONS(287), - [aux_sym_property_tuning_token1] = ACTIONS(287), - [aux_sym_event_definition_token1] = ACTIONS(287), - [aux_sym_input_stream_tuning_token1] = ACTIONS(287), - [aux_sym_input_stream_tuning_token2] = ACTIONS(287), - [aux_sym_input_stream_tuning_token3] = ACTIONS(287), - [aux_sym_input_stream_tuning_token4] = ACTIONS(287), - [aux_sym_input_stream_tuning_token5] = ACTIONS(287), - [aux_sym_input_stream_tuning_token6] = ACTIONS(287), - [aux_sym_input_stream_tuning_token7] = ACTIONS(287), - [aux_sym_input_stream_tuning_token8] = ACTIONS(287), - [aux_sym_input_stream_tuning_token9] = ACTIONS(287), - [aux_sym_input_stream_tuning_token11] = ACTIONS(287), - [aux_sym_output_stream_tuning_token1] = ACTIONS(287), - [aux_sym_output_stream_tuning_token2] = ACTIONS(287), - [aux_sym_output_stream_tuning_token3] = ACTIONS(287), - [aux_sym_output_stream_tuning_token4] = ACTIONS(287), - [aux_sym_output_stream_tuning_token5] = ACTIONS(287), - [aux_sym_output_stream_tuning_token6] = ACTIONS(287), - [aux_sym_output_stream_tuning_token7] = ACTIONS(287), - [aux_sym_output_stream_tuning_token8] = ACTIONS(287), - [aux_sym_output_stream_statement_token1] = ACTIONS(287), - [aux_sym_on_error_phrase_token1] = ACTIONS(287), - [aux_sym_stop_after_phrase_token1] = ACTIONS(287), - [aux_sym_do_tuning_token1] = ACTIONS(287), - [anon_sym_BY] = ACTIONS(287), - [aux_sym_of_token1] = ACTIONS(287), - [aux_sym_field_definition_token1] = ACTIONS(287), - [aux_sym_index_definition_token1] = ACTIONS(287), - [aux_sym_on_statement_token1] = ACTIONS(287), - [sym__or_operator] = ACTIONS(295), - [sym__and_operator] = ACTIONS(295), + [sym_assignment] = STATE(4463), + [sym_variable_definition] = STATE(1550), + [sym_variable_assignment] = STATE(1550), + [sym_buffer_definition] = STATE(1550), + [sym_query_definition] = STATE(1550), + [sym_function_call_statement] = STATE(1550), + [sym_function_call] = STATE(4558), + [sym_if_statement] = STATE(1550), + [sym_label] = STATE(1551), + [sym_repeat_statement] = STATE(1550), + [sym_procedure_statement] = STATE(1550), + [sym_procedure_parameter_definition] = STATE(1550), + [sym__function_terminator] = STATE(1503), + [sym_function_statement] = STATE(1550), + [sym_return_statement] = STATE(1550), + [sym_interface_statement] = STATE(1550), + [sym_using_statement] = STATE(1550), + [sym_class_statement] = STATE(1550), + [sym_object_access] = STATE(3661), + [sym_stream_definition] = STATE(1550), + [sym_input_close_statement] = STATE(1550), + [sym_output_close_statement] = STATE(1550), + [sym__stream_statement] = STATE(1550), + [sym_input_stream_statement] = STATE(1552), + [sym_output_stream_statement] = STATE(1552), + [sym_do_block] = STATE(1550), + [sym_case_statement] = STATE(1550), + [sym_for_statement] = STATE(1550), + [sym_find_statement] = STATE(1550), + [sym_abl_statement] = STATE(1550), + [sym_assign_statement] = STATE(1550), + [sym_catch_statement] = STATE(1550), + [sym_finally_statement] = STATE(1550), + [sym_accumulate_statement] = STATE(1550), + [sym_undo_statement] = STATE(1550), + [sym_error_scope_statement] = STATE(1550), + [sym_temp_table_definition] = STATE(1550), + [sym_on_statement] = STATE(1550), + [sym__statement] = STATE(1553), + [aux_sym_source_code_repeat1] = STATE(286), + [sym_identifier] = ACTIONS(263), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_LBRACE] = ACTIONS(7), + [aux_sym__block_terminator_token1] = ACTIONS(265), + [aux_sym_input_expression_token1] = ACTIONS(267), + [aux_sym_primitive_type_token19] = ACTIONS(269), + [aux_sym_variable_definition_token1] = ACTIONS(271), + [aux_sym_variable_definition_token2] = ACTIONS(273), + [aux_sym_buffer_definition_token2] = ACTIONS(275), + [aux_sym_argument_mode_token1] = ACTIONS(277), + [aux_sym_if_statement_token1] = ACTIONS(279), + [aux_sym_repeat_statement_token1] = ACTIONS(281), + [aux_sym__procedure_terminator_token1] = ACTIONS(283), + [aux_sym_procedure_parameter_definition_token1] = ACTIONS(285), + [aux_sym__function_terminator_token1] = ACTIONS(287), + [aux_sym_interface_statement_token1] = ACTIONS(289), + [aux_sym_using_statement_token1] = ACTIONS(291), + [aux_sym_on_error_phrase_token1] = ACTIONS(293), + [aux_sym_on_error_phrase_token3] = ACTIONS(295), + [aux_sym_do_block_token1] = ACTIONS(297), + [aux_sym__case_terminator_token1] = ACTIONS(299), + [aux_sym_find_statement_token1] = ACTIONS(301), + [aux_sym_assign_statement_token1] = ACTIONS(303), + [aux_sym_catch_statement_token1] = ACTIONS(305), + [aux_sym_finally_statement_token1] = ACTIONS(307), + [aux_sym_accumulate_statement_token1] = ACTIONS(309), + [anon_sym_ROUTINE_DASHLEVEL] = ACTIONS(311), + [anon_sym_BLOCK_DASHLEVEL] = ACTIONS(311), }, [58] = { - [sym_body] = STATE(3733), + [sym_body] = STATE(3586), [sym_comment] = STATE(58), - [sym_qualified_name] = STATE(4733), - [sym__block_terminator] = STATE(3401), + [sym_qualified_name] = STATE(4814), + [sym__block_terminator] = STATE(1414), [sym_include] = STATE(58), - [sym_assignment] = STATE(4314), - [sym_variable_definition] = STATE(1535), - [sym_variable_assignment] = STATE(1535), - [sym_buffer_definition] = STATE(1535), - [sym_query_definition] = STATE(1535), - [sym_function_call_statement] = STATE(1535), - [sym_function_call] = STATE(4086), - [sym_if_statement] = STATE(1535), - [sym_label] = STATE(1536), - [sym_repeat_statement] = STATE(1535), - [sym_procedure_statement] = STATE(1535), - [sym_procedure_parameter_definition] = STATE(1535), - [sym_function_statement] = STATE(1535), - [sym_return_statement] = STATE(1535), - [sym_interface_statement] = STATE(1535), - [sym_using_statement] = STATE(1535), - [sym_class_statement] = STATE(1535), - [sym_object_access] = STATE(3567), - [sym_stream_definition] = STATE(1535), - [sym_input_close_statement] = STATE(1535), - [sym_output_close_statement] = STATE(1535), - [sym__stream_statement] = STATE(1535), - [sym_input_stream_statement] = STATE(1537), - [sym_output_stream_statement] = STATE(1537), - [sym_do_block] = STATE(1535), - [sym_case_statement] = STATE(1535), - [sym_for_statement] = STATE(1535), - [sym_find_statement] = STATE(1535), - [sym_abl_statement] = STATE(1535), - [sym_assign_statement] = STATE(1535), - [sym_catch_statement] = STATE(1535), - [sym_finally_statement] = STATE(1535), - [sym_accumulate_statement] = STATE(1535), - [sym_undo_statement] = STATE(1535), - [sym_error_scope_statement] = STATE(1535), - [sym_temp_table_definition] = STATE(1535), - [sym_on_statement] = STATE(1535), - [sym__statement] = STATE(1538), - [aux_sym_source_code_repeat1] = STATE(276), - [sym_identifier] = ACTIONS(227), + [sym_assignment] = STATE(4463), + [sym_variable_definition] = STATE(1550), + [sym_variable_assignment] = STATE(1550), + [sym_buffer_definition] = STATE(1550), + [sym_query_definition] = STATE(1550), + [sym_function_call_statement] = STATE(1550), + [sym_function_call] = STATE(4558), + [sym_if_statement] = STATE(1550), + [sym_label] = STATE(1551), + [sym_repeat_statement] = STATE(1550), + [sym_procedure_statement] = STATE(1550), + [sym_procedure_parameter_definition] = STATE(1550), + [sym__function_terminator] = STATE(1467), + [sym_function_statement] = STATE(1550), + [sym_return_statement] = STATE(1550), + [sym_interface_statement] = STATE(1550), + [sym_using_statement] = STATE(1550), + [sym_class_statement] = STATE(1550), + [sym_object_access] = STATE(3661), + [sym_stream_definition] = STATE(1550), + [sym_input_close_statement] = STATE(1550), + [sym_output_close_statement] = STATE(1550), + [sym__stream_statement] = STATE(1550), + [sym_input_stream_statement] = STATE(1552), + [sym_output_stream_statement] = STATE(1552), + [sym_do_block] = STATE(1550), + [sym_case_statement] = STATE(1550), + [sym_for_statement] = STATE(1550), + [sym_find_statement] = STATE(1550), + [sym_abl_statement] = STATE(1550), + [sym_assign_statement] = STATE(1550), + [sym_catch_statement] = STATE(1550), + [sym_finally_statement] = STATE(1550), + [sym_accumulate_statement] = STATE(1550), + [sym_undo_statement] = STATE(1550), + [sym_error_scope_statement] = STATE(1550), + [sym_temp_table_definition] = STATE(1550), + [sym_on_statement] = STATE(1550), + [sym__statement] = STATE(1553), + [aux_sym_source_code_repeat1] = STATE(286), + [sym_identifier] = ACTIONS(263), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), [anon_sym_LBRACE] = ACTIONS(7), - [aux_sym__block_terminator_token1] = ACTIONS(297), - [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), + [aux_sym__block_terminator_token1] = ACTIONS(265), + [aux_sym_input_expression_token1] = ACTIONS(267), + [aux_sym_primitive_type_token19] = ACTIONS(269), + [aux_sym_variable_definition_token1] = ACTIONS(271), + [aux_sym_variable_definition_token2] = ACTIONS(273), + [aux_sym_buffer_definition_token2] = ACTIONS(275), + [aux_sym_argument_mode_token1] = ACTIONS(277), + [aux_sym_if_statement_token1] = ACTIONS(279), + [aux_sym_repeat_statement_token1] = ACTIONS(281), + [aux_sym__procedure_terminator_token1] = ACTIONS(283), + [aux_sym_procedure_parameter_definition_token1] = ACTIONS(285), + [aux_sym__function_terminator_token1] = ACTIONS(287), + [aux_sym_interface_statement_token1] = ACTIONS(289), + [aux_sym_using_statement_token1] = ACTIONS(291), + [aux_sym_on_error_phrase_token1] = ACTIONS(293), + [aux_sym_on_error_phrase_token3] = ACTIONS(295), + [aux_sym_do_block_token1] = ACTIONS(297), + [aux_sym__case_terminator_token1] = ACTIONS(299), + [aux_sym_find_statement_token1] = ACTIONS(301), + [aux_sym_assign_statement_token1] = ACTIONS(303), + [aux_sym_catch_statement_token1] = ACTIONS(305), + [aux_sym_finally_statement_token1] = ACTIONS(307), + [aux_sym_accumulate_statement_token1] = ACTIONS(309), + [anon_sym_ROUTINE_DASHLEVEL] = ACTIONS(311), + [anon_sym_BLOCK_DASHLEVEL] = ACTIONS(311), }, [59] = { - [sym_body] = STATE(3846), + [sym_body] = STATE(3552), [sym_comment] = STATE(59), - [sym_qualified_name] = STATE(4733), - [sym__block_terminator] = STATE(1210), + [sym_qualified_name] = STATE(4814), + [sym__block_terminator] = STATE(1430), [sym_include] = STATE(59), - [sym_assignment] = STATE(4314), - [sym_variable_definition] = STATE(1535), - [sym_variable_assignment] = STATE(1535), - [sym_buffer_definition] = STATE(1535), - [sym_query_definition] = STATE(1535), - [sym_function_call_statement] = STATE(1535), - [sym_function_call] = STATE(4086), - [sym_if_statement] = STATE(1535), - [sym_label] = STATE(1536), - [sym_repeat_statement] = STATE(1535), - [sym_procedure_statement] = STATE(1535), - [sym_procedure_parameter_definition] = STATE(1535), - [sym_function_statement] = STATE(1535), - [sym_return_statement] = STATE(1535), - [sym_interface_statement] = STATE(1535), - [sym_using_statement] = STATE(1535), - [sym_class_statement] = STATE(1535), - [sym_object_access] = STATE(3567), - [sym_stream_definition] = STATE(1535), - [sym_input_close_statement] = STATE(1535), - [sym_output_close_statement] = STATE(1535), - [sym__stream_statement] = STATE(1535), - [sym_input_stream_statement] = STATE(1537), - [sym_output_stream_statement] = STATE(1537), - [sym_do_block] = STATE(1535), - [sym_case_statement] = STATE(1535), - [sym_for_statement] = STATE(1535), - [sym_find_statement] = STATE(1535), - [sym_abl_statement] = STATE(1535), - [sym_assign_statement] = STATE(1535), - [sym_catch_statement] = STATE(1535), - [sym_finally_statement] = STATE(1535), - [sym_accumulate_statement] = STATE(1535), - [sym_undo_statement] = STATE(1535), - [sym_error_scope_statement] = STATE(1535), - [sym_temp_table_definition] = STATE(1535), - [sym_on_statement] = STATE(1535), - [sym__statement] = STATE(1538), - [aux_sym_source_code_repeat1] = STATE(276), - [sym_identifier] = ACTIONS(227), + [sym_assignment] = STATE(4463), + [sym_variable_definition] = STATE(1550), + [sym_variable_assignment] = STATE(1550), + [sym_buffer_definition] = STATE(1550), + [sym_query_definition] = STATE(1550), + [sym_function_call_statement] = STATE(1550), + [sym_function_call] = STATE(4558), + [sym_if_statement] = STATE(1550), + [sym_label] = STATE(1551), + [sym_repeat_statement] = STATE(1550), + [sym__procedure_terminator] = STATE(1430), + [sym_procedure_statement] = STATE(1550), + [sym_procedure_parameter_definition] = STATE(1550), + [sym_function_statement] = STATE(1550), + [sym_return_statement] = STATE(1550), + [sym_interface_statement] = STATE(1550), + [sym_using_statement] = STATE(1550), + [sym_class_statement] = STATE(1550), + [sym_object_access] = STATE(3661), + [sym_stream_definition] = STATE(1550), + [sym_input_close_statement] = STATE(1550), + [sym_output_close_statement] = STATE(1550), + [sym__stream_statement] = STATE(1550), + [sym_input_stream_statement] = STATE(1552), + [sym_output_stream_statement] = STATE(1552), + [sym_do_block] = STATE(1550), + [sym_case_statement] = STATE(1550), + [sym_for_statement] = STATE(1550), + [sym_find_statement] = STATE(1550), + [sym_abl_statement] = STATE(1550), + [sym_assign_statement] = STATE(1550), + [sym_catch_statement] = STATE(1550), + [sym_finally_statement] = STATE(1550), + [sym_accumulate_statement] = STATE(1550), + [sym_undo_statement] = STATE(1550), + [sym_error_scope_statement] = STATE(1550), + [sym_temp_table_definition] = STATE(1550), + [sym_on_statement] = STATE(1550), + [sym__statement] = STATE(1553), + [aux_sym_source_code_repeat1] = STATE(286), + [sym_identifier] = ACTIONS(263), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), [anon_sym_LBRACE] = ACTIONS(7), - [aux_sym__block_terminator_token1] = ACTIONS(299), - [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), + [aux_sym__block_terminator_token1] = ACTIONS(313), + [aux_sym_input_expression_token1] = ACTIONS(267), + [aux_sym_primitive_type_token19] = ACTIONS(269), + [aux_sym_variable_definition_token1] = ACTIONS(271), + [aux_sym_variable_definition_token2] = ACTIONS(273), + [aux_sym_buffer_definition_token2] = ACTIONS(275), + [aux_sym_argument_mode_token1] = ACTIONS(277), + [aux_sym_if_statement_token1] = ACTIONS(279), + [aux_sym_repeat_statement_token1] = ACTIONS(281), + [aux_sym__procedure_terminator_token1] = ACTIONS(283), + [aux_sym_procedure_parameter_definition_token1] = ACTIONS(285), + [aux_sym__function_terminator_token1] = ACTIONS(287), + [aux_sym_interface_statement_token1] = ACTIONS(289), + [aux_sym_using_statement_token1] = ACTIONS(291), + [aux_sym_on_error_phrase_token1] = ACTIONS(293), + [aux_sym_on_error_phrase_token3] = ACTIONS(295), + [aux_sym_do_block_token1] = ACTIONS(297), + [aux_sym__case_terminator_token1] = ACTIONS(299), + [aux_sym_find_statement_token1] = ACTIONS(301), + [aux_sym_assign_statement_token1] = ACTIONS(303), + [aux_sym_catch_statement_token1] = ACTIONS(305), + [aux_sym_finally_statement_token1] = ACTIONS(307), + [aux_sym_accumulate_statement_token1] = ACTIONS(309), + [anon_sym_ROUTINE_DASHLEVEL] = ACTIONS(311), + [anon_sym_BLOCK_DASHLEVEL] = ACTIONS(311), }, [60] = { - [sym_body] = STATE(3651), + [sym_body] = STATE(3557), [sym_comment] = STATE(60), - [sym_qualified_name] = STATE(4733), - [sym__block_terminator] = STATE(1127), + [sym_qualified_name] = STATE(4814), + [sym__block_terminator] = STATE(1278), [sym_include] = STATE(60), - [sym_assignment] = STATE(4314), - [sym_variable_definition] = STATE(1535), - [sym_variable_assignment] = STATE(1535), - [sym_buffer_definition] = STATE(1535), - [sym_query_definition] = STATE(1535), - [sym_function_call_statement] = STATE(1535), - [sym_function_call] = STATE(4086), - [sym_if_statement] = STATE(1535), - [sym_label] = STATE(1536), - [sym_repeat_statement] = STATE(1535), - [sym_procedure_statement] = STATE(1535), - [sym_procedure_parameter_definition] = STATE(1535), - [sym_function_statement] = STATE(1535), - [sym_return_statement] = STATE(1535), - [sym_interface_statement] = STATE(1535), - [sym_using_statement] = STATE(1535), - [sym_class_statement] = STATE(1535), - [sym_object_access] = STATE(3567), - [sym_stream_definition] = STATE(1535), - [sym_input_close_statement] = STATE(1535), - [sym_output_close_statement] = STATE(1535), - [sym__stream_statement] = STATE(1535), - [sym_input_stream_statement] = STATE(1537), - [sym_output_stream_statement] = STATE(1537), - [sym_do_block] = STATE(1535), - [sym_case_statement] = STATE(1535), - [sym_for_statement] = STATE(1535), - [sym_find_statement] = STATE(1535), - [sym_abl_statement] = STATE(1535), - [sym_assign_statement] = STATE(1535), - [sym_catch_statement] = STATE(1535), - [sym_finally_statement] = STATE(1535), - [sym_accumulate_statement] = STATE(1535), - [sym_undo_statement] = STATE(1535), - [sym_error_scope_statement] = STATE(1535), - [sym_temp_table_definition] = STATE(1535), - [sym_on_statement] = STATE(1535), - [sym__statement] = STATE(1538), - [aux_sym_source_code_repeat1] = STATE(276), - [sym_identifier] = ACTIONS(227), + [sym_assignment] = STATE(4463), + [sym_variable_definition] = STATE(1550), + [sym_variable_assignment] = STATE(1550), + [sym_buffer_definition] = STATE(1550), + [sym_query_definition] = STATE(1550), + [sym_function_call_statement] = STATE(1550), + [sym_function_call] = STATE(4558), + [sym_if_statement] = STATE(1550), + [sym_label] = STATE(1551), + [sym_repeat_statement] = STATE(1550), + [sym__procedure_terminator] = STATE(1278), + [sym_procedure_statement] = STATE(1550), + [sym_procedure_parameter_definition] = STATE(1550), + [sym_function_statement] = STATE(1550), + [sym_return_statement] = STATE(1550), + [sym_interface_statement] = STATE(1550), + [sym_using_statement] = STATE(1550), + [sym_class_statement] = STATE(1550), + [sym_object_access] = STATE(3661), + [sym_stream_definition] = STATE(1550), + [sym_input_close_statement] = STATE(1550), + [sym_output_close_statement] = STATE(1550), + [sym__stream_statement] = STATE(1550), + [sym_input_stream_statement] = STATE(1552), + [sym_output_stream_statement] = STATE(1552), + [sym_do_block] = STATE(1550), + [sym_case_statement] = STATE(1550), + [sym_for_statement] = STATE(1550), + [sym_find_statement] = STATE(1550), + [sym_abl_statement] = STATE(1550), + [sym_assign_statement] = STATE(1550), + [sym_catch_statement] = STATE(1550), + [sym_finally_statement] = STATE(1550), + [sym_accumulate_statement] = STATE(1550), + [sym_undo_statement] = STATE(1550), + [sym_error_scope_statement] = STATE(1550), + [sym_temp_table_definition] = STATE(1550), + [sym_on_statement] = STATE(1550), + [sym__statement] = STATE(1553), + [aux_sym_source_code_repeat1] = STATE(286), + [sym_identifier] = ACTIONS(263), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), [anon_sym_LBRACE] = ACTIONS(7), - [aux_sym__block_terminator_token1] = ACTIONS(301), - [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), + [aux_sym__block_terminator_token1] = ACTIONS(313), + [aux_sym_input_expression_token1] = ACTIONS(267), + [aux_sym_primitive_type_token19] = ACTIONS(269), + [aux_sym_variable_definition_token1] = ACTIONS(271), + [aux_sym_variable_definition_token2] = ACTIONS(273), + [aux_sym_buffer_definition_token2] = ACTIONS(275), + [aux_sym_argument_mode_token1] = ACTIONS(277), + [aux_sym_if_statement_token1] = ACTIONS(279), + [aux_sym_repeat_statement_token1] = ACTIONS(281), + [aux_sym__procedure_terminator_token1] = ACTIONS(283), + [aux_sym_procedure_parameter_definition_token1] = ACTIONS(285), + [aux_sym__function_terminator_token1] = ACTIONS(287), + [aux_sym_interface_statement_token1] = ACTIONS(289), + [aux_sym_using_statement_token1] = ACTIONS(291), + [aux_sym_on_error_phrase_token1] = ACTIONS(293), + [aux_sym_on_error_phrase_token3] = ACTIONS(295), + [aux_sym_do_block_token1] = ACTIONS(297), + [aux_sym__case_terminator_token1] = ACTIONS(299), + [aux_sym_find_statement_token1] = ACTIONS(301), + [aux_sym_assign_statement_token1] = ACTIONS(303), + [aux_sym_catch_statement_token1] = ACTIONS(305), + [aux_sym_finally_statement_token1] = ACTIONS(307), + [aux_sym_accumulate_statement_token1] = ACTIONS(309), + [anon_sym_ROUTINE_DASHLEVEL] = ACTIONS(311), + [anon_sym_BLOCK_DASHLEVEL] = ACTIONS(311), }, [61] = { - [sym_body] = STATE(4076), + [sym_body] = STATE(3576), [sym_comment] = STATE(61), - [sym_qualified_name] = STATE(4733), - [sym__block_terminator] = STATE(1378), + [sym_qualified_name] = STATE(4814), + [sym__block_terminator] = STATE(1414), [sym_include] = STATE(61), - [sym_assignment] = STATE(4314), - [sym_variable_definition] = STATE(1535), - [sym_variable_assignment] = STATE(1535), - [sym_buffer_definition] = STATE(1535), - [sym_query_definition] = STATE(1535), - [sym_function_call_statement] = STATE(1535), - [sym_function_call] = STATE(4086), - [sym_if_statement] = STATE(1535), - [sym_label] = STATE(1536), - [sym_repeat_statement] = STATE(1535), - [sym_procedure_statement] = STATE(1535), - [sym_procedure_parameter_definition] = STATE(1535), - [sym_function_statement] = STATE(1535), - [sym_return_statement] = STATE(1535), - [sym_interface_statement] = STATE(1535), - [sym_using_statement] = STATE(1535), - [sym_class_statement] = STATE(1535), - [sym_object_access] = STATE(3567), - [sym_stream_definition] = STATE(1535), - [sym_input_close_statement] = STATE(1535), - [sym_output_close_statement] = STATE(1535), - [sym__stream_statement] = STATE(1535), - [sym_input_stream_statement] = STATE(1537), - [sym_output_stream_statement] = STATE(1537), - [sym_do_block] = STATE(1535), - [sym_case_statement] = STATE(1535), - [sym_for_statement] = STATE(1535), - [sym_find_statement] = STATE(1535), - [sym_abl_statement] = STATE(1535), - [sym_assign_statement] = STATE(1535), - [sym_catch_statement] = STATE(1535), - [sym_finally_statement] = STATE(1535), - [sym_accumulate_statement] = STATE(1535), - [sym_undo_statement] = STATE(1535), - [sym_error_scope_statement] = STATE(1535), - [sym_temp_table_definition] = STATE(1535), - [sym_on_statement] = STATE(1535), - [sym__statement] = STATE(1538), - [aux_sym_source_code_repeat1] = STATE(276), - [sym_identifier] = ACTIONS(227), + [sym_assignment] = STATE(4463), + [sym_variable_definition] = STATE(1550), + [sym_variable_assignment] = STATE(1550), + [sym_buffer_definition] = STATE(1550), + [sym_query_definition] = STATE(1550), + [sym_function_call_statement] = STATE(1550), + [sym_function_call] = STATE(4558), + [sym_if_statement] = STATE(1550), + [sym_label] = STATE(1551), + [sym_repeat_statement] = STATE(1550), + [sym_procedure_statement] = STATE(1550), + [sym_procedure_parameter_definition] = STATE(1550), + [sym__function_terminator] = STATE(1415), + [sym_function_statement] = STATE(1550), + [sym_return_statement] = STATE(1550), + [sym_interface_statement] = STATE(1550), + [sym_using_statement] = STATE(1550), + [sym_class_statement] = STATE(1550), + [sym_object_access] = STATE(3661), + [sym_stream_definition] = STATE(1550), + [sym_input_close_statement] = STATE(1550), + [sym_output_close_statement] = STATE(1550), + [sym__stream_statement] = STATE(1550), + [sym_input_stream_statement] = STATE(1552), + [sym_output_stream_statement] = STATE(1552), + [sym_do_block] = STATE(1550), + [sym_case_statement] = STATE(1550), + [sym_for_statement] = STATE(1550), + [sym_find_statement] = STATE(1550), + [sym_abl_statement] = STATE(1550), + [sym_assign_statement] = STATE(1550), + [sym_catch_statement] = STATE(1550), + [sym_finally_statement] = STATE(1550), + [sym_accumulate_statement] = STATE(1550), + [sym_undo_statement] = STATE(1550), + [sym_error_scope_statement] = STATE(1550), + [sym_temp_table_definition] = STATE(1550), + [sym_on_statement] = STATE(1550), + [sym__statement] = STATE(1553), + [aux_sym_source_code_repeat1] = STATE(286), + [sym_identifier] = ACTIONS(263), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), [anon_sym_LBRACE] = ACTIONS(7), - [aux_sym__block_terminator_token1] = ACTIONS(299), - [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), + [aux_sym__block_terminator_token1] = ACTIONS(265), + [aux_sym_input_expression_token1] = ACTIONS(267), + [aux_sym_primitive_type_token19] = ACTIONS(269), + [aux_sym_variable_definition_token1] = ACTIONS(271), + [aux_sym_variable_definition_token2] = ACTIONS(273), + [aux_sym_buffer_definition_token2] = ACTIONS(275), + [aux_sym_argument_mode_token1] = ACTIONS(277), + [aux_sym_if_statement_token1] = ACTIONS(279), + [aux_sym_repeat_statement_token1] = ACTIONS(281), + [aux_sym__procedure_terminator_token1] = ACTIONS(283), + [aux_sym_procedure_parameter_definition_token1] = ACTIONS(285), + [aux_sym__function_terminator_token1] = ACTIONS(287), + [aux_sym_interface_statement_token1] = ACTIONS(289), + [aux_sym_using_statement_token1] = ACTIONS(291), + [aux_sym_on_error_phrase_token1] = ACTIONS(293), + [aux_sym_on_error_phrase_token3] = ACTIONS(295), + [aux_sym_do_block_token1] = ACTIONS(297), + [aux_sym__case_terminator_token1] = ACTIONS(299), + [aux_sym_find_statement_token1] = ACTIONS(301), + [aux_sym_assign_statement_token1] = ACTIONS(303), + [aux_sym_catch_statement_token1] = ACTIONS(305), + [aux_sym_finally_statement_token1] = ACTIONS(307), + [aux_sym_accumulate_statement_token1] = ACTIONS(309), + [anon_sym_ROUTINE_DASHLEVEL] = ACTIONS(311), + [anon_sym_BLOCK_DASHLEVEL] = ACTIONS(311), }, [62] = { - [sym_body] = STATE(3799), + [sym_body] = STATE(3260), [sym_comment] = STATE(62), - [sym_qualified_name] = STATE(4733), - [sym__block_terminator] = STATE(1287), + [sym_qualified_name] = STATE(4814), + [sym__block_terminator] = STATE(1317), [sym_include] = STATE(62), - [sym_assignment] = STATE(4314), - [sym_variable_definition] = STATE(1535), - [sym_variable_assignment] = STATE(1535), - [sym_buffer_definition] = STATE(1535), - [sym_query_definition] = STATE(1535), - [sym_function_call_statement] = STATE(1535), - [sym_function_call] = STATE(4086), - [sym_if_statement] = STATE(1535), - [sym_label] = STATE(1536), - [sym_repeat_statement] = STATE(1535), - [sym_procedure_statement] = STATE(1535), - [sym_procedure_parameter_definition] = STATE(1535), - [sym_function_statement] = STATE(1535), - [sym_return_statement] = STATE(1535), - [sym_interface_statement] = STATE(1535), - [sym_using_statement] = STATE(1535), - [sym_class_statement] = STATE(1535), - [sym_object_access] = STATE(3567), - [sym_stream_definition] = STATE(1535), - [sym_input_close_statement] = STATE(1535), - [sym_output_close_statement] = STATE(1535), - [sym__stream_statement] = STATE(1535), - [sym_input_stream_statement] = STATE(1537), - [sym_output_stream_statement] = STATE(1537), - [sym_do_block] = STATE(1535), - [sym_case_statement] = STATE(1535), - [sym_for_statement] = STATE(1535), - [sym_find_statement] = STATE(1535), - [sym_abl_statement] = STATE(1535), - [sym_assign_statement] = STATE(1535), - [sym_catch_statement] = STATE(1535), - [sym_finally_statement] = STATE(1535), - [sym_accumulate_statement] = STATE(1535), - [sym_undo_statement] = STATE(1535), - [sym_error_scope_statement] = STATE(1535), - [sym_temp_table_definition] = STATE(1535), - [sym_on_statement] = STATE(1535), - [sym__statement] = STATE(1538), - [aux_sym_source_code_repeat1] = STATE(276), - [sym_identifier] = ACTIONS(227), + [sym_assignment] = STATE(4463), + [sym_variable_definition] = STATE(1550), + [sym_variable_assignment] = STATE(1550), + [sym_buffer_definition] = STATE(1550), + [sym_query_definition] = STATE(1550), + [sym_function_call_statement] = STATE(1550), + [sym_function_call] = STATE(4558), + [sym_if_statement] = STATE(1550), + [sym_label] = STATE(1551), + [sym_repeat_statement] = STATE(1550), + [sym__procedure_terminator] = STATE(1317), + [sym_procedure_statement] = STATE(1550), + [sym_procedure_parameter_definition] = STATE(1550), + [sym_function_statement] = STATE(1550), + [sym_return_statement] = STATE(1550), + [sym_interface_statement] = STATE(1550), + [sym_using_statement] = STATE(1550), + [sym_class_statement] = STATE(1550), + [sym_object_access] = STATE(3661), + [sym_stream_definition] = STATE(1550), + [sym_input_close_statement] = STATE(1550), + [sym_output_close_statement] = STATE(1550), + [sym__stream_statement] = STATE(1550), + [sym_input_stream_statement] = STATE(1552), + [sym_output_stream_statement] = STATE(1552), + [sym_do_block] = STATE(1550), + [sym_case_statement] = STATE(1550), + [sym_for_statement] = STATE(1550), + [sym_find_statement] = STATE(1550), + [sym_abl_statement] = STATE(1550), + [sym_assign_statement] = STATE(1550), + [sym_catch_statement] = STATE(1550), + [sym_finally_statement] = STATE(1550), + [sym_accumulate_statement] = STATE(1550), + [sym_undo_statement] = STATE(1550), + [sym_error_scope_statement] = STATE(1550), + [sym_temp_table_definition] = STATE(1550), + [sym_on_statement] = STATE(1550), + [sym__statement] = STATE(1553), + [aux_sym_source_code_repeat1] = STATE(286), + [sym_identifier] = ACTIONS(263), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), [anon_sym_LBRACE] = ACTIONS(7), - [aux_sym__block_terminator_token1] = ACTIONS(299), - [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), + [aux_sym__block_terminator_token1] = ACTIONS(315), + [aux_sym_input_expression_token1] = ACTIONS(267), + [aux_sym_primitive_type_token19] = ACTIONS(269), + [aux_sym_variable_definition_token1] = ACTIONS(271), + [aux_sym_variable_definition_token2] = ACTIONS(273), + [aux_sym_buffer_definition_token2] = ACTIONS(275), + [aux_sym_argument_mode_token1] = ACTIONS(277), + [aux_sym_if_statement_token1] = ACTIONS(279), + [aux_sym_repeat_statement_token1] = ACTIONS(281), + [aux_sym__procedure_terminator_token1] = ACTIONS(283), + [aux_sym_procedure_parameter_definition_token1] = ACTIONS(285), + [aux_sym__function_terminator_token1] = ACTIONS(287), + [aux_sym_interface_statement_token1] = ACTIONS(289), + [aux_sym_using_statement_token1] = ACTIONS(291), + [aux_sym_on_error_phrase_token1] = ACTIONS(293), + [aux_sym_on_error_phrase_token3] = ACTIONS(295), + [aux_sym_do_block_token1] = ACTIONS(297), + [aux_sym__case_terminator_token1] = ACTIONS(299), + [aux_sym_find_statement_token1] = ACTIONS(301), + [aux_sym_assign_statement_token1] = ACTIONS(303), + [aux_sym_catch_statement_token1] = ACTIONS(305), + [aux_sym_finally_statement_token1] = ACTIONS(307), + [aux_sym_accumulate_statement_token1] = ACTIONS(309), + [anon_sym_ROUTINE_DASHLEVEL] = ACTIONS(311), + [anon_sym_BLOCK_DASHLEVEL] = ACTIONS(311), }, [63] = { - [sym_body] = STATE(3786), + [sym_body] = STATE(3442), [sym_comment] = STATE(63), - [sym_qualified_name] = STATE(4733), - [sym__block_terminator] = STATE(1301), + [sym_qualified_name] = STATE(4814), + [sym__block_terminator] = STATE(1220), [sym_include] = STATE(63), - [sym_assignment] = STATE(4314), - [sym_variable_definition] = STATE(1535), - [sym_variable_assignment] = STATE(1535), - [sym_buffer_definition] = STATE(1535), - [sym_query_definition] = STATE(1535), - [sym_function_call_statement] = STATE(1535), - [sym_function_call] = STATE(4086), - [sym_if_statement] = STATE(1535), - [sym_label] = STATE(1536), - [sym_repeat_statement] = STATE(1535), - [sym_procedure_statement] = STATE(1535), - [sym_procedure_parameter_definition] = STATE(1535), - [sym_function_statement] = STATE(1535), - [sym_return_statement] = STATE(1535), - [sym_interface_statement] = STATE(1535), - [sym_using_statement] = STATE(1535), - [sym_class_statement] = STATE(1535), - [sym_object_access] = STATE(3567), - [sym_stream_definition] = STATE(1535), - [sym_input_close_statement] = STATE(1535), - [sym_output_close_statement] = STATE(1535), - [sym__stream_statement] = STATE(1535), - [sym_input_stream_statement] = STATE(1537), - [sym_output_stream_statement] = STATE(1537), - [sym_do_block] = STATE(1535), - [sym_case_statement] = STATE(1535), - [sym_for_statement] = STATE(1535), - [sym_find_statement] = STATE(1535), - [sym_abl_statement] = STATE(1535), - [sym_assign_statement] = STATE(1535), - [sym_catch_statement] = STATE(1535), - [sym_finally_statement] = STATE(1535), - [sym_accumulate_statement] = STATE(1535), - [sym_undo_statement] = STATE(1535), - [sym_error_scope_statement] = STATE(1535), - [sym_temp_table_definition] = STATE(1535), - [sym_on_statement] = STATE(1535), - [sym__statement] = STATE(1538), - [aux_sym_source_code_repeat1] = STATE(276), - [sym_identifier] = ACTIONS(227), + [sym_assignment] = STATE(4463), + [sym_variable_definition] = STATE(1550), + [sym_variable_assignment] = STATE(1550), + [sym_buffer_definition] = STATE(1550), + [sym_query_definition] = STATE(1550), + [sym_function_call_statement] = STATE(1550), + [sym_function_call] = STATE(4558), + [sym_if_statement] = STATE(1550), + [sym_label] = STATE(1551), + [sym_repeat_statement] = STATE(1550), + [sym_procedure_statement] = STATE(1550), + [sym_procedure_parameter_definition] = STATE(1550), + [sym__function_terminator] = STATE(1309), + [sym_function_statement] = STATE(1550), + [sym_return_statement] = STATE(1550), + [sym_interface_statement] = STATE(1550), + [sym_using_statement] = STATE(1550), + [sym_class_statement] = STATE(1550), + [sym_object_access] = STATE(3661), + [sym_stream_definition] = STATE(1550), + [sym_input_close_statement] = STATE(1550), + [sym_output_close_statement] = STATE(1550), + [sym__stream_statement] = STATE(1550), + [sym_input_stream_statement] = STATE(1552), + [sym_output_stream_statement] = STATE(1552), + [sym_do_block] = STATE(1550), + [sym_case_statement] = STATE(1550), + [sym_for_statement] = STATE(1550), + [sym_find_statement] = STATE(1550), + [sym_abl_statement] = STATE(1550), + [sym_assign_statement] = STATE(1550), + [sym_catch_statement] = STATE(1550), + [sym_finally_statement] = STATE(1550), + [sym_accumulate_statement] = STATE(1550), + [sym_undo_statement] = STATE(1550), + [sym_error_scope_statement] = STATE(1550), + [sym_temp_table_definition] = STATE(1550), + [sym_on_statement] = STATE(1550), + [sym__statement] = STATE(1553), + [aux_sym_source_code_repeat1] = STATE(286), + [sym_identifier] = ACTIONS(263), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), [anon_sym_LBRACE] = ACTIONS(7), - [aux_sym__block_terminator_token1] = ACTIONS(299), - [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), + [aux_sym__block_terminator_token1] = ACTIONS(317), + [aux_sym_input_expression_token1] = ACTIONS(267), + [aux_sym_primitive_type_token19] = ACTIONS(269), + [aux_sym_variable_definition_token1] = ACTIONS(271), + [aux_sym_variable_definition_token2] = ACTIONS(273), + [aux_sym_buffer_definition_token2] = ACTIONS(275), + [aux_sym_argument_mode_token1] = ACTIONS(277), + [aux_sym_if_statement_token1] = ACTIONS(279), + [aux_sym_repeat_statement_token1] = ACTIONS(281), + [aux_sym__procedure_terminator_token1] = ACTIONS(283), + [aux_sym_procedure_parameter_definition_token1] = ACTIONS(285), + [aux_sym__function_terminator_token1] = ACTIONS(287), + [aux_sym_interface_statement_token1] = ACTIONS(289), + [aux_sym_using_statement_token1] = ACTIONS(291), + [aux_sym_on_error_phrase_token1] = ACTIONS(293), + [aux_sym_on_error_phrase_token3] = ACTIONS(295), + [aux_sym_do_block_token1] = ACTIONS(297), + [aux_sym__case_terminator_token1] = ACTIONS(299), + [aux_sym_find_statement_token1] = ACTIONS(301), + [aux_sym_assign_statement_token1] = ACTIONS(303), + [aux_sym_catch_statement_token1] = ACTIONS(305), + [aux_sym_finally_statement_token1] = ACTIONS(307), + [aux_sym_accumulate_statement_token1] = ACTIONS(309), + [anon_sym_ROUTINE_DASHLEVEL] = ACTIONS(311), + [anon_sym_BLOCK_DASHLEVEL] = ACTIONS(311), }, [64] = { - [sym_body] = STATE(3580), + [sym_body] = STATE(3422), [sym_comment] = STATE(64), - [sym_qualified_name] = STATE(4733), - [sym__block_terminator] = STATE(1103), + [sym_qualified_name] = STATE(4814), + [sym__block_terminator] = STATE(1220), [sym_include] = STATE(64), - [sym_assignment] = STATE(4314), - [sym_variable_definition] = STATE(1535), - [sym_variable_assignment] = STATE(1535), - [sym_buffer_definition] = STATE(1535), - [sym_query_definition] = STATE(1535), - [sym_function_call_statement] = STATE(1535), - [sym_function_call] = STATE(4086), - [sym_if_statement] = STATE(1535), - [sym_label] = STATE(1536), - [sym_repeat_statement] = STATE(1535), - [sym_procedure_statement] = STATE(1535), - [sym_procedure_parameter_definition] = STATE(1535), - [sym_function_statement] = STATE(1535), - [sym_return_statement] = STATE(1535), - [sym_interface_statement] = STATE(1535), - [sym_using_statement] = STATE(1535), - [sym_class_statement] = STATE(1535), - [sym_object_access] = STATE(3567), - [sym_stream_definition] = STATE(1535), - [sym_input_close_statement] = STATE(1535), - [sym_output_close_statement] = STATE(1535), - [sym__stream_statement] = STATE(1535), - [sym_input_stream_statement] = STATE(1537), - [sym_output_stream_statement] = STATE(1537), - [sym_do_block] = STATE(1535), - [sym_case_statement] = STATE(1535), - [sym_for_statement] = STATE(1535), - [sym_find_statement] = STATE(1535), - [sym_abl_statement] = STATE(1535), - [sym_assign_statement] = STATE(1535), - [sym_catch_statement] = STATE(1535), - [sym_finally_statement] = STATE(1535), - [sym_accumulate_statement] = STATE(1535), - [sym_undo_statement] = STATE(1535), - [sym_error_scope_statement] = STATE(1535), - [sym_temp_table_definition] = STATE(1535), - [sym_on_statement] = STATE(1535), - [sym__statement] = STATE(1538), - [aux_sym_source_code_repeat1] = STATE(276), - [sym_identifier] = ACTIONS(227), + [sym_assignment] = STATE(4463), + [sym_variable_definition] = STATE(1550), + [sym_variable_assignment] = STATE(1550), + [sym_buffer_definition] = STATE(1550), + [sym_query_definition] = STATE(1550), + [sym_function_call_statement] = STATE(1550), + [sym_function_call] = STATE(4558), + [sym_if_statement] = STATE(1550), + [sym_label] = STATE(1551), + [sym_repeat_statement] = STATE(1550), + [sym_procedure_statement] = STATE(1550), + [sym_procedure_parameter_definition] = STATE(1550), + [sym__function_terminator] = STATE(1214), + [sym_function_statement] = STATE(1550), + [sym_return_statement] = STATE(1550), + [sym_interface_statement] = STATE(1550), + [sym_using_statement] = STATE(1550), + [sym_class_statement] = STATE(1550), + [sym_object_access] = STATE(3661), + [sym_stream_definition] = STATE(1550), + [sym_input_close_statement] = STATE(1550), + [sym_output_close_statement] = STATE(1550), + [sym__stream_statement] = STATE(1550), + [sym_input_stream_statement] = STATE(1552), + [sym_output_stream_statement] = STATE(1552), + [sym_do_block] = STATE(1550), + [sym_case_statement] = STATE(1550), + [sym_for_statement] = STATE(1550), + [sym_find_statement] = STATE(1550), + [sym_abl_statement] = STATE(1550), + [sym_assign_statement] = STATE(1550), + [sym_catch_statement] = STATE(1550), + [sym_finally_statement] = STATE(1550), + [sym_accumulate_statement] = STATE(1550), + [sym_undo_statement] = STATE(1550), + [sym_error_scope_statement] = STATE(1550), + [sym_temp_table_definition] = STATE(1550), + [sym_on_statement] = STATE(1550), + [sym__statement] = STATE(1553), + [aux_sym_source_code_repeat1] = STATE(286), + [sym_identifier] = ACTIONS(263), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), [anon_sym_LBRACE] = ACTIONS(7), - [aux_sym__block_terminator_token1] = ACTIONS(301), - [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), + [aux_sym__block_terminator_token1] = ACTIONS(317), + [aux_sym_input_expression_token1] = ACTIONS(267), + [aux_sym_primitive_type_token19] = ACTIONS(269), + [aux_sym_variable_definition_token1] = ACTIONS(271), + [aux_sym_variable_definition_token2] = ACTIONS(273), + [aux_sym_buffer_definition_token2] = ACTIONS(275), + [aux_sym_argument_mode_token1] = ACTIONS(277), + [aux_sym_if_statement_token1] = ACTIONS(279), + [aux_sym_repeat_statement_token1] = ACTIONS(281), + [aux_sym__procedure_terminator_token1] = ACTIONS(283), + [aux_sym_procedure_parameter_definition_token1] = ACTIONS(285), + [aux_sym__function_terminator_token1] = ACTIONS(287), + [aux_sym_interface_statement_token1] = ACTIONS(289), + [aux_sym_using_statement_token1] = ACTIONS(291), + [aux_sym_on_error_phrase_token1] = ACTIONS(293), + [aux_sym_on_error_phrase_token3] = ACTIONS(295), + [aux_sym_do_block_token1] = ACTIONS(297), + [aux_sym__case_terminator_token1] = ACTIONS(299), + [aux_sym_find_statement_token1] = ACTIONS(301), + [aux_sym_assign_statement_token1] = ACTIONS(303), + [aux_sym_catch_statement_token1] = ACTIONS(305), + [aux_sym_finally_statement_token1] = ACTIONS(307), + [aux_sym_accumulate_statement_token1] = ACTIONS(309), + [anon_sym_ROUTINE_DASHLEVEL] = ACTIONS(311), + [anon_sym_BLOCK_DASHLEVEL] = ACTIONS(311), }, [65] = { - [sym_body] = STATE(3686), + [sym_body] = STATE(3392), [sym_comment] = STATE(65), - [sym_qualified_name] = STATE(4733), - [sym__block_terminator] = STATE(3386), + [sym_qualified_name] = STATE(4814), + [sym__block_terminator] = STATE(1220), [sym_include] = STATE(65), - [sym_assignment] = STATE(4314), - [sym_variable_definition] = STATE(1535), - [sym_variable_assignment] = STATE(1535), - [sym_buffer_definition] = STATE(1535), - [sym_query_definition] = STATE(1535), - [sym_function_call_statement] = STATE(1535), - [sym_function_call] = STATE(4086), - [sym_if_statement] = STATE(1535), - [sym_label] = STATE(1536), - [sym_repeat_statement] = STATE(1535), - [sym_procedure_statement] = STATE(1535), - [sym_procedure_parameter_definition] = STATE(1535), - [sym_function_statement] = STATE(1535), - [sym_return_statement] = STATE(1535), - [sym_interface_statement] = STATE(1535), - [sym_using_statement] = STATE(1535), - [sym_class_statement] = STATE(1535), - [sym_object_access] = STATE(3567), - [sym_stream_definition] = STATE(1535), - [sym_input_close_statement] = STATE(1535), - [sym_output_close_statement] = STATE(1535), - [sym__stream_statement] = STATE(1535), - [sym_input_stream_statement] = STATE(1537), - [sym_output_stream_statement] = STATE(1537), - [sym_do_block] = STATE(1535), - [sym_case_statement] = STATE(1535), - [sym_for_statement] = STATE(1535), - [sym_find_statement] = STATE(1535), - [sym_abl_statement] = STATE(1535), - [sym_assign_statement] = STATE(1535), - [sym_catch_statement] = STATE(1535), - [sym_finally_statement] = STATE(1535), - [sym_accumulate_statement] = STATE(1535), - [sym_undo_statement] = STATE(1535), - [sym_error_scope_statement] = STATE(1535), - [sym_temp_table_definition] = STATE(1535), - [sym_on_statement] = STATE(1535), - [sym__statement] = STATE(1538), - [aux_sym_source_code_repeat1] = STATE(276), - [sym_identifier] = ACTIONS(227), + [sym_assignment] = STATE(4463), + [sym_variable_definition] = STATE(1550), + [sym_variable_assignment] = STATE(1550), + [sym_buffer_definition] = STATE(1550), + [sym_query_definition] = STATE(1550), + [sym_function_call_statement] = STATE(1550), + [sym_function_call] = STATE(4558), + [sym_if_statement] = STATE(1550), + [sym_label] = STATE(1551), + [sym_repeat_statement] = STATE(1550), + [sym_procedure_statement] = STATE(1550), + [sym_procedure_parameter_definition] = STATE(1550), + [sym__function_terminator] = STATE(1218), + [sym_function_statement] = STATE(1550), + [sym_return_statement] = STATE(1550), + [sym_interface_statement] = STATE(1550), + [sym_using_statement] = STATE(1550), + [sym_class_statement] = STATE(1550), + [sym_object_access] = STATE(3661), + [sym_stream_definition] = STATE(1550), + [sym_input_close_statement] = STATE(1550), + [sym_output_close_statement] = STATE(1550), + [sym__stream_statement] = STATE(1550), + [sym_input_stream_statement] = STATE(1552), + [sym_output_stream_statement] = STATE(1552), + [sym_do_block] = STATE(1550), + [sym_case_statement] = STATE(1550), + [sym_for_statement] = STATE(1550), + [sym_find_statement] = STATE(1550), + [sym_abl_statement] = STATE(1550), + [sym_assign_statement] = STATE(1550), + [sym_catch_statement] = STATE(1550), + [sym_finally_statement] = STATE(1550), + [sym_accumulate_statement] = STATE(1550), + [sym_undo_statement] = STATE(1550), + [sym_error_scope_statement] = STATE(1550), + [sym_temp_table_definition] = STATE(1550), + [sym_on_statement] = STATE(1550), + [sym__statement] = STATE(1553), + [aux_sym_source_code_repeat1] = STATE(286), + [sym_identifier] = ACTIONS(263), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), [anon_sym_LBRACE] = ACTIONS(7), - [aux_sym__block_terminator_token1] = ACTIONS(297), - [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), + [aux_sym__block_terminator_token1] = ACTIONS(317), + [aux_sym_input_expression_token1] = ACTIONS(267), + [aux_sym_primitive_type_token19] = ACTIONS(269), + [aux_sym_variable_definition_token1] = ACTIONS(271), + [aux_sym_variable_definition_token2] = ACTIONS(273), + [aux_sym_buffer_definition_token2] = ACTIONS(275), + [aux_sym_argument_mode_token1] = ACTIONS(277), + [aux_sym_if_statement_token1] = ACTIONS(279), + [aux_sym_repeat_statement_token1] = ACTIONS(281), + [aux_sym__procedure_terminator_token1] = ACTIONS(283), + [aux_sym_procedure_parameter_definition_token1] = ACTIONS(285), + [aux_sym__function_terminator_token1] = ACTIONS(287), + [aux_sym_interface_statement_token1] = ACTIONS(289), + [aux_sym_using_statement_token1] = ACTIONS(291), + [aux_sym_on_error_phrase_token1] = ACTIONS(293), + [aux_sym_on_error_phrase_token3] = ACTIONS(295), + [aux_sym_do_block_token1] = ACTIONS(297), + [aux_sym__case_terminator_token1] = ACTIONS(299), + [aux_sym_find_statement_token1] = ACTIONS(301), + [aux_sym_assign_statement_token1] = ACTIONS(303), + [aux_sym_catch_statement_token1] = ACTIONS(305), + [aux_sym_finally_statement_token1] = ACTIONS(307), + [aux_sym_accumulate_statement_token1] = ACTIONS(309), + [anon_sym_ROUTINE_DASHLEVEL] = ACTIONS(311), + [anon_sym_BLOCK_DASHLEVEL] = ACTIONS(311), }, [66] = { - [sym_body] = STATE(3736), + [sym_body] = STATE(3289), [sym_comment] = STATE(66), - [sym_qualified_name] = STATE(4733), - [sym__block_terminator] = STATE(1364), + [sym_qualified_name] = STATE(4814), + [sym__block_terminator] = STATE(1401), [sym_include] = STATE(66), - [sym_assignment] = STATE(4314), - [sym_variable_definition] = STATE(1535), - [sym_variable_assignment] = STATE(1535), - [sym_buffer_definition] = STATE(1535), - [sym_query_definition] = STATE(1535), - [sym_function_call_statement] = STATE(1535), - [sym_function_call] = STATE(4086), - [sym_if_statement] = STATE(1535), - [sym_label] = STATE(1536), - [sym_repeat_statement] = STATE(1535), - [sym_procedure_statement] = STATE(1535), - [sym_procedure_parameter_definition] = STATE(1535), - [sym_function_statement] = STATE(1535), - [sym_return_statement] = STATE(1535), - [sym_interface_statement] = STATE(1535), - [sym_using_statement] = STATE(1535), - [sym_class_statement] = STATE(1535), - [sym_object_access] = STATE(3567), - [sym_stream_definition] = STATE(1535), - [sym_input_close_statement] = STATE(1535), - [sym_output_close_statement] = STATE(1535), - [sym__stream_statement] = STATE(1535), - [sym_input_stream_statement] = STATE(1537), - [sym_output_stream_statement] = STATE(1537), - [sym_do_block] = STATE(1535), - [sym_case_statement] = STATE(1535), - [sym_for_statement] = STATE(1535), - [sym_find_statement] = STATE(1535), - [sym_abl_statement] = STATE(1535), - [sym_assign_statement] = STATE(1535), - [sym_catch_statement] = STATE(1535), - [sym_finally_statement] = STATE(1535), - [sym_accumulate_statement] = STATE(1535), - [sym_undo_statement] = STATE(1535), - [sym_error_scope_statement] = STATE(1535), - [sym_temp_table_definition] = STATE(1535), - [sym_on_statement] = STATE(1535), - [sym__statement] = STATE(1538), - [aux_sym_source_code_repeat1] = STATE(276), - [sym_identifier] = ACTIONS(227), + [sym_assignment] = STATE(4463), + [sym_variable_definition] = STATE(1550), + [sym_variable_assignment] = STATE(1550), + [sym_buffer_definition] = STATE(1550), + [sym_query_definition] = STATE(1550), + [sym_function_call_statement] = STATE(1550), + [sym_function_call] = STATE(4558), + [sym_if_statement] = STATE(1550), + [sym_label] = STATE(1551), + [sym_repeat_statement] = STATE(1550), + [sym__procedure_terminator] = STATE(1401), + [sym_procedure_statement] = STATE(1550), + [sym_procedure_parameter_definition] = STATE(1550), + [sym_function_statement] = STATE(1550), + [sym_return_statement] = STATE(1550), + [sym_interface_statement] = STATE(1550), + [sym_using_statement] = STATE(1550), + [sym_class_statement] = STATE(1550), + [sym_object_access] = STATE(3661), + [sym_stream_definition] = STATE(1550), + [sym_input_close_statement] = STATE(1550), + [sym_output_close_statement] = STATE(1550), + [sym__stream_statement] = STATE(1550), + [sym_input_stream_statement] = STATE(1552), + [sym_output_stream_statement] = STATE(1552), + [sym_do_block] = STATE(1550), + [sym_case_statement] = STATE(1550), + [sym_for_statement] = STATE(1550), + [sym_find_statement] = STATE(1550), + [sym_abl_statement] = STATE(1550), + [sym_assign_statement] = STATE(1550), + [sym_catch_statement] = STATE(1550), + [sym_finally_statement] = STATE(1550), + [sym_accumulate_statement] = STATE(1550), + [sym_undo_statement] = STATE(1550), + [sym_error_scope_statement] = STATE(1550), + [sym_temp_table_definition] = STATE(1550), + [sym_on_statement] = STATE(1550), + [sym__statement] = STATE(1553), + [aux_sym_source_code_repeat1] = STATE(286), + [sym_identifier] = ACTIONS(263), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), [anon_sym_LBRACE] = ACTIONS(7), - [aux_sym__block_terminator_token1] = ACTIONS(299), - [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), + [aux_sym__block_terminator_token1] = ACTIONS(315), + [aux_sym_input_expression_token1] = ACTIONS(267), + [aux_sym_primitive_type_token19] = ACTIONS(269), + [aux_sym_variable_definition_token1] = ACTIONS(271), + [aux_sym_variable_definition_token2] = ACTIONS(273), + [aux_sym_buffer_definition_token2] = ACTIONS(275), + [aux_sym_argument_mode_token1] = ACTIONS(277), + [aux_sym_if_statement_token1] = ACTIONS(279), + [aux_sym_repeat_statement_token1] = ACTIONS(281), + [aux_sym__procedure_terminator_token1] = ACTIONS(283), + [aux_sym_procedure_parameter_definition_token1] = ACTIONS(285), + [aux_sym__function_terminator_token1] = ACTIONS(287), + [aux_sym_interface_statement_token1] = ACTIONS(289), + [aux_sym_using_statement_token1] = ACTIONS(291), + [aux_sym_on_error_phrase_token1] = ACTIONS(293), + [aux_sym_on_error_phrase_token3] = ACTIONS(295), + [aux_sym_do_block_token1] = ACTIONS(297), + [aux_sym__case_terminator_token1] = ACTIONS(299), + [aux_sym_find_statement_token1] = ACTIONS(301), + [aux_sym_assign_statement_token1] = ACTIONS(303), + [aux_sym_catch_statement_token1] = ACTIONS(305), + [aux_sym_finally_statement_token1] = ACTIONS(307), + [aux_sym_accumulate_statement_token1] = ACTIONS(309), + [anon_sym_ROUTINE_DASHLEVEL] = ACTIONS(311), + [anon_sym_BLOCK_DASHLEVEL] = ACTIONS(311), }, [67] = { - [sym_body] = STATE(3674), + [sym_body] = STATE(3721), [sym_comment] = STATE(67), - [sym_qualified_name] = STATE(4733), - [sym__block_terminator] = STATE(3382), + [sym_qualified_name] = STATE(4814), + [sym__block_terminator] = STATE(3176), [sym_include] = STATE(67), - [sym_assignment] = STATE(4314), - [sym_variable_definition] = STATE(1535), - [sym_variable_assignment] = STATE(1535), - [sym_buffer_definition] = STATE(1535), - [sym_query_definition] = STATE(1535), - [sym_function_call_statement] = STATE(1535), - [sym_function_call] = STATE(4086), - [sym_if_statement] = STATE(1535), - [sym_label] = STATE(1536), - [sym_repeat_statement] = STATE(1535), - [sym_procedure_statement] = STATE(1535), - [sym_procedure_parameter_definition] = STATE(1535), - [sym_function_statement] = STATE(1535), - [sym_return_statement] = STATE(1535), - [sym_interface_statement] = STATE(1535), - [sym_using_statement] = STATE(1535), - [sym_class_statement] = STATE(1535), - [sym_object_access] = STATE(3567), - [sym_stream_definition] = STATE(1535), - [sym_input_close_statement] = STATE(1535), - [sym_output_close_statement] = STATE(1535), - [sym__stream_statement] = STATE(1535), - [sym_input_stream_statement] = STATE(1537), - [sym_output_stream_statement] = STATE(1537), - [sym_do_block] = STATE(1535), - [sym_case_statement] = STATE(1535), - [sym_for_statement] = STATE(1535), - [sym_find_statement] = STATE(1535), - [sym_abl_statement] = STATE(1535), - [sym_assign_statement] = STATE(1535), - [sym_catch_statement] = STATE(1535), - [sym_finally_statement] = STATE(1535), - [sym_accumulate_statement] = STATE(1535), - [sym_undo_statement] = STATE(1535), - [sym_error_scope_statement] = STATE(1535), - [sym_temp_table_definition] = STATE(1535), - [sym_on_statement] = STATE(1535), - [sym__statement] = STATE(1538), - [aux_sym_source_code_repeat1] = STATE(276), - [sym_identifier] = ACTIONS(227), + [sym_assignment] = STATE(4463), + [sym_variable_definition] = STATE(1550), + [sym_variable_assignment] = STATE(1550), + [sym_buffer_definition] = STATE(1550), + [sym_query_definition] = STATE(1550), + [sym_function_call_statement] = STATE(1550), + [sym_function_call] = STATE(4558), + [sym_if_statement] = STATE(1550), + [sym_label] = STATE(1551), + [sym_repeat_statement] = STATE(1550), + [sym_procedure_statement] = STATE(1550), + [sym_procedure_parameter_definition] = STATE(1550), + [sym_function_statement] = STATE(1550), + [sym_return_statement] = STATE(1550), + [sym_interface_statement] = STATE(1550), + [sym_using_statement] = STATE(1550), + [sym_class_statement] = STATE(1550), + [sym_object_access] = STATE(3661), + [sym_stream_definition] = STATE(1550), + [sym_input_close_statement] = STATE(1550), + [sym_output_close_statement] = STATE(1550), + [sym__stream_statement] = STATE(1550), + [sym_input_stream_statement] = STATE(1552), + [sym_output_stream_statement] = STATE(1552), + [sym_do_block] = STATE(1550), + [sym_case_statement] = STATE(1550), + [sym_for_statement] = STATE(1550), + [sym_find_statement] = STATE(1550), + [sym_abl_statement] = STATE(1550), + [sym_assign_statement] = STATE(1550), + [sym_catch_statement] = STATE(1550), + [sym_finally_statement] = STATE(1550), + [sym_accumulate_statement] = STATE(1550), + [sym_undo_statement] = STATE(1550), + [sym_error_scope_statement] = STATE(1550), + [sym_temp_table_definition] = STATE(1550), + [sym_on_statement] = STATE(1550), + [sym__statement] = STATE(1553), + [aux_sym_source_code_repeat1] = STATE(286), + [sym_identifier] = ACTIONS(263), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), [anon_sym_LBRACE] = ACTIONS(7), - [aux_sym__block_terminator_token1] = ACTIONS(297), - [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), + [aux_sym__block_terminator_token1] = ACTIONS(319), + [aux_sym_input_expression_token1] = ACTIONS(267), + [aux_sym_primitive_type_token19] = ACTIONS(269), + [aux_sym_variable_definition_token1] = ACTIONS(271), + [aux_sym_variable_definition_token2] = ACTIONS(273), + [aux_sym_buffer_definition_token2] = ACTIONS(275), + [aux_sym_argument_mode_token1] = ACTIONS(277), + [aux_sym_if_statement_token1] = ACTIONS(279), + [aux_sym_repeat_statement_token1] = ACTIONS(281), + [aux_sym__procedure_terminator_token1] = ACTIONS(283), + [aux_sym_procedure_parameter_definition_token1] = ACTIONS(285), + [aux_sym__function_terminator_token1] = ACTIONS(287), + [aux_sym_interface_statement_token1] = ACTIONS(289), + [aux_sym_using_statement_token1] = ACTIONS(291), + [aux_sym_on_error_phrase_token1] = ACTIONS(293), + [aux_sym_on_error_phrase_token3] = ACTIONS(295), + [aux_sym_do_block_token1] = ACTIONS(297), + [aux_sym__case_terminator_token1] = ACTIONS(299), + [aux_sym_find_statement_token1] = ACTIONS(301), + [aux_sym_assign_statement_token1] = ACTIONS(303), + [aux_sym_catch_statement_token1] = ACTIONS(305), + [aux_sym_finally_statement_token1] = ACTIONS(307), + [aux_sym_accumulate_statement_token1] = ACTIONS(309), + [anon_sym_ROUTINE_DASHLEVEL] = ACTIONS(311), + [anon_sym_BLOCK_DASHLEVEL] = ACTIONS(311), }, [68] = { - [sym_body] = STATE(3729), + [sym_body] = STATE(3679), [sym_comment] = STATE(68), - [sym_qualified_name] = STATE(4733), - [sym__block_terminator] = STATE(1371), + [sym_qualified_name] = STATE(4814), + [sym__block_terminator] = STATE(3520), [sym_include] = STATE(68), - [sym_assignment] = STATE(4314), - [sym_variable_definition] = STATE(1535), - [sym_variable_assignment] = STATE(1535), - [sym_buffer_definition] = STATE(1535), - [sym_query_definition] = STATE(1535), - [sym_function_call_statement] = STATE(1535), - [sym_function_call] = STATE(4086), - [sym_if_statement] = STATE(1535), - [sym_label] = STATE(1536), - [sym_repeat_statement] = STATE(1535), - [sym_procedure_statement] = STATE(1535), - [sym_procedure_parameter_definition] = STATE(1535), - [sym_function_statement] = STATE(1535), - [sym_return_statement] = STATE(1535), - [sym_interface_statement] = STATE(1535), - [sym_using_statement] = STATE(1535), - [sym_class_statement] = STATE(1535), - [sym_object_access] = STATE(3567), - [sym_stream_definition] = STATE(1535), - [sym_input_close_statement] = STATE(1535), - [sym_output_close_statement] = STATE(1535), - [sym__stream_statement] = STATE(1535), - [sym_input_stream_statement] = STATE(1537), - [sym_output_stream_statement] = STATE(1537), - [sym_do_block] = STATE(1535), - [sym_case_statement] = STATE(1535), - [sym_for_statement] = STATE(1535), - [sym_find_statement] = STATE(1535), - [sym_abl_statement] = STATE(1535), - [sym_assign_statement] = STATE(1535), - [sym_catch_statement] = STATE(1535), - [sym_finally_statement] = STATE(1535), - [sym_accumulate_statement] = STATE(1535), - [sym_undo_statement] = STATE(1535), - [sym_error_scope_statement] = STATE(1535), - [sym_temp_table_definition] = STATE(1535), - [sym_on_statement] = STATE(1535), - [sym__statement] = STATE(1538), - [aux_sym_source_code_repeat1] = STATE(276), - [sym_identifier] = ACTIONS(227), + [sym_assignment] = STATE(4463), + [sym_variable_definition] = STATE(1550), + [sym_variable_assignment] = STATE(1550), + [sym_buffer_definition] = STATE(1550), + [sym_query_definition] = STATE(1550), + [sym_function_call_statement] = STATE(1550), + [sym_function_call] = STATE(4558), + [sym_if_statement] = STATE(1550), + [sym_label] = STATE(1551), + [sym_repeat_statement] = STATE(1550), + [sym_procedure_statement] = STATE(1550), + [sym_procedure_parameter_definition] = STATE(1550), + [sym_function_statement] = STATE(1550), + [sym_return_statement] = STATE(1550), + [sym_interface_statement] = STATE(1550), + [sym_using_statement] = STATE(1550), + [sym_class_statement] = STATE(1550), + [sym_object_access] = STATE(3661), + [sym_stream_definition] = STATE(1550), + [sym_input_close_statement] = STATE(1550), + [sym_output_close_statement] = STATE(1550), + [sym__stream_statement] = STATE(1550), + [sym_input_stream_statement] = STATE(1552), + [sym_output_stream_statement] = STATE(1552), + [sym_do_block] = STATE(1550), + [sym_case_statement] = STATE(1550), + [sym_for_statement] = STATE(1550), + [sym_find_statement] = STATE(1550), + [sym_abl_statement] = STATE(1550), + [sym_assign_statement] = STATE(1550), + [sym_catch_statement] = STATE(1550), + [sym_finally_statement] = STATE(1550), + [sym_accumulate_statement] = STATE(1550), + [sym_undo_statement] = STATE(1550), + [sym_error_scope_statement] = STATE(1550), + [sym_temp_table_definition] = STATE(1550), + [sym_on_statement] = STATE(1550), + [sym__statement] = STATE(1553), + [aux_sym_source_code_repeat1] = STATE(286), + [sym_identifier] = ACTIONS(263), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), [anon_sym_LBRACE] = ACTIONS(7), - [aux_sym__block_terminator_token1] = ACTIONS(299), - [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), + [aux_sym__block_terminator_token1] = ACTIONS(319), + [aux_sym_input_expression_token1] = ACTIONS(267), + [aux_sym_primitive_type_token19] = ACTIONS(269), + [aux_sym_variable_definition_token1] = ACTIONS(271), + [aux_sym_variable_definition_token2] = ACTIONS(273), + [aux_sym_buffer_definition_token2] = ACTIONS(275), + [aux_sym_argument_mode_token1] = ACTIONS(277), + [aux_sym_if_statement_token1] = ACTIONS(279), + [aux_sym_repeat_statement_token1] = ACTIONS(281), + [aux_sym__procedure_terminator_token1] = ACTIONS(283), + [aux_sym_procedure_parameter_definition_token1] = ACTIONS(285), + [aux_sym__function_terminator_token1] = ACTIONS(287), + [aux_sym_interface_statement_token1] = ACTIONS(289), + [aux_sym_using_statement_token1] = ACTIONS(291), + [aux_sym_on_error_phrase_token1] = ACTIONS(293), + [aux_sym_on_error_phrase_token3] = ACTIONS(295), + [aux_sym_do_block_token1] = ACTIONS(297), + [aux_sym__case_terminator_token1] = ACTIONS(299), + [aux_sym_find_statement_token1] = ACTIONS(301), + [aux_sym_assign_statement_token1] = ACTIONS(303), + [aux_sym_catch_statement_token1] = ACTIONS(305), + [aux_sym_finally_statement_token1] = ACTIONS(307), + [aux_sym_accumulate_statement_token1] = ACTIONS(309), + [anon_sym_ROUTINE_DASHLEVEL] = ACTIONS(311), + [anon_sym_BLOCK_DASHLEVEL] = ACTIONS(311), }, [69] = { - [sym_body] = STATE(3588), + [sym_body] = STATE(3802), [sym_comment] = STATE(69), - [sym_qualified_name] = STATE(4733), - [sym__block_terminator] = STATE(3363), + [sym_qualified_name] = STATE(4814), + [sym__block_terminator] = STATE(913), [sym_include] = STATE(69), - [sym_assignment] = STATE(4314), - [sym_variable_definition] = STATE(1535), - [sym_variable_assignment] = STATE(1535), - [sym_buffer_definition] = STATE(1535), - [sym_query_definition] = STATE(1535), - [sym_function_call_statement] = STATE(1535), - [sym_function_call] = STATE(4086), - [sym_if_statement] = STATE(1535), - [sym_label] = STATE(1536), - [sym_repeat_statement] = STATE(1535), - [sym_procedure_statement] = STATE(1535), - [sym_procedure_parameter_definition] = STATE(1535), - [sym_function_statement] = STATE(1535), - [sym_return_statement] = STATE(1535), - [sym_interface_statement] = STATE(1535), - [sym_using_statement] = STATE(1535), - [sym_class_statement] = STATE(1535), - [sym_object_access] = STATE(3567), - [sym_stream_definition] = STATE(1535), - [sym_input_close_statement] = STATE(1535), - [sym_output_close_statement] = STATE(1535), - [sym__stream_statement] = STATE(1535), - [sym_input_stream_statement] = STATE(1537), - [sym_output_stream_statement] = STATE(1537), - [sym_do_block] = STATE(1535), - [sym_case_statement] = STATE(1535), - [sym_for_statement] = STATE(1535), - [sym_find_statement] = STATE(1535), - [sym_abl_statement] = STATE(1535), - [sym_assign_statement] = STATE(1535), - [sym_catch_statement] = STATE(1535), - [sym_finally_statement] = STATE(1535), - [sym_accumulate_statement] = STATE(1535), - [sym_undo_statement] = STATE(1535), - [sym_error_scope_statement] = STATE(1535), - [sym_temp_table_definition] = STATE(1535), - [sym_on_statement] = STATE(1535), - [sym__statement] = STATE(1538), - [aux_sym_source_code_repeat1] = STATE(276), - [sym_identifier] = ACTIONS(227), + [sym_assignment] = STATE(4463), + [sym_variable_definition] = STATE(1550), + [sym_variable_assignment] = STATE(1550), + [sym_buffer_definition] = STATE(1550), + [sym_query_definition] = STATE(1550), + [sym_function_call_statement] = STATE(1550), + [sym_function_call] = STATE(4558), + [sym_if_statement] = STATE(1550), + [sym_label] = STATE(1551), + [sym_repeat_statement] = STATE(1550), + [sym_procedure_statement] = STATE(1550), + [sym_procedure_parameter_definition] = STATE(1550), + [sym_function_statement] = STATE(1550), + [sym_return_statement] = STATE(1550), + [sym_interface_statement] = STATE(1550), + [sym_using_statement] = STATE(1550), + [sym_class_statement] = STATE(1550), + [sym_object_access] = STATE(3661), + [sym_stream_definition] = STATE(1550), + [sym_input_close_statement] = STATE(1550), + [sym_output_close_statement] = STATE(1550), + [sym__stream_statement] = STATE(1550), + [sym_input_stream_statement] = STATE(1552), + [sym_output_stream_statement] = STATE(1552), + [sym_do_block] = STATE(1550), + [sym_case_statement] = STATE(1550), + [sym_for_statement] = STATE(1550), + [sym_find_statement] = STATE(1550), + [sym_abl_statement] = STATE(1550), + [sym_assign_statement] = STATE(1550), + [sym_catch_statement] = STATE(1550), + [sym_finally_statement] = STATE(1550), + [sym_accumulate_statement] = STATE(1550), + [sym_undo_statement] = STATE(1550), + [sym_error_scope_statement] = STATE(1550), + [sym_temp_table_definition] = STATE(1550), + [sym_on_statement] = STATE(1550), + [sym__statement] = STATE(1553), + [aux_sym_source_code_repeat1] = STATE(286), + [sym_identifier] = ACTIONS(263), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), [anon_sym_LBRACE] = ACTIONS(7), - [aux_sym__block_terminator_token1] = ACTIONS(297), - [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), + [aux_sym__block_terminator_token1] = ACTIONS(321), + [aux_sym_input_expression_token1] = ACTIONS(267), + [aux_sym_primitive_type_token19] = ACTIONS(269), + [aux_sym_variable_definition_token1] = ACTIONS(271), + [aux_sym_variable_definition_token2] = ACTIONS(273), + [aux_sym_buffer_definition_token2] = ACTIONS(275), + [aux_sym_argument_mode_token1] = ACTIONS(277), + [aux_sym_if_statement_token1] = ACTIONS(279), + [aux_sym_repeat_statement_token1] = ACTIONS(281), + [aux_sym__procedure_terminator_token1] = ACTIONS(283), + [aux_sym_procedure_parameter_definition_token1] = ACTIONS(285), + [aux_sym__function_terminator_token1] = ACTIONS(287), + [aux_sym_interface_statement_token1] = ACTIONS(289), + [aux_sym_using_statement_token1] = ACTIONS(291), + [aux_sym_on_error_phrase_token1] = ACTIONS(293), + [aux_sym_on_error_phrase_token3] = ACTIONS(295), + [aux_sym_do_block_token1] = ACTIONS(297), + [aux_sym__case_terminator_token1] = ACTIONS(299), + [aux_sym_find_statement_token1] = ACTIONS(301), + [aux_sym_assign_statement_token1] = ACTIONS(303), + [aux_sym_catch_statement_token1] = ACTIONS(305), + [aux_sym_finally_statement_token1] = ACTIONS(307), + [aux_sym_accumulate_statement_token1] = ACTIONS(309), + [anon_sym_ROUTINE_DASHLEVEL] = ACTIONS(311), + [anon_sym_BLOCK_DASHLEVEL] = ACTIONS(311), }, [70] = { - [sym_body] = STATE(3562), + [sym_body] = STATE(3666), [sym_comment] = STATE(70), - [sym_qualified_name] = STATE(4733), - [sym__block_terminator] = STATE(843), + [sym_qualified_name] = STATE(4814), + [sym__block_terminator] = STATE(911), [sym_include] = STATE(70), - [sym_assignment] = STATE(4314), - [sym_variable_definition] = STATE(1535), - [sym_variable_assignment] = STATE(1535), - [sym_buffer_definition] = STATE(1535), - [sym_query_definition] = STATE(1535), - [sym_function_call_statement] = STATE(1535), - [sym_function_call] = STATE(4086), - [sym_if_statement] = STATE(1535), - [sym_label] = STATE(1536), - [sym_repeat_statement] = STATE(1535), - [sym_procedure_statement] = STATE(1535), - [sym_procedure_parameter_definition] = STATE(1535), - [sym_function_statement] = STATE(1535), - [sym_return_statement] = STATE(1535), - [sym_interface_statement] = STATE(1535), - [sym_using_statement] = STATE(1535), - [sym_class_statement] = STATE(1535), - [sym_object_access] = STATE(3567), - [sym_stream_definition] = STATE(1535), - [sym_input_close_statement] = STATE(1535), - [sym_output_close_statement] = STATE(1535), - [sym__stream_statement] = STATE(1535), - [sym_input_stream_statement] = STATE(1537), - [sym_output_stream_statement] = STATE(1537), - [sym_do_block] = STATE(1535), - [sym_case_statement] = STATE(1535), - [sym_for_statement] = STATE(1535), - [sym_find_statement] = STATE(1535), - [sym_abl_statement] = STATE(1535), - [sym_assign_statement] = STATE(1535), - [sym_catch_statement] = STATE(1535), - [sym_finally_statement] = STATE(1535), - [sym_accumulate_statement] = STATE(1535), - [sym_undo_statement] = STATE(1535), - [sym_error_scope_statement] = STATE(1535), - [sym_temp_table_definition] = STATE(1535), - [sym_on_statement] = STATE(1535), - [sym__statement] = STATE(1538), - [aux_sym_source_code_repeat1] = STATE(276), - [sym_identifier] = ACTIONS(227), + [sym_assignment] = STATE(4463), + [sym_variable_definition] = STATE(1550), + [sym_variable_assignment] = STATE(1550), + [sym_buffer_definition] = STATE(1550), + [sym_query_definition] = STATE(1550), + [sym_function_call_statement] = STATE(1550), + [sym_function_call] = STATE(4558), + [sym_if_statement] = STATE(1550), + [sym_label] = STATE(1551), + [sym_repeat_statement] = STATE(1550), + [sym_procedure_statement] = STATE(1550), + [sym_procedure_parameter_definition] = STATE(1550), + [sym_function_statement] = STATE(1550), + [sym_return_statement] = STATE(1550), + [sym_interface_statement] = STATE(1550), + [sym_using_statement] = STATE(1550), + [sym_class_statement] = STATE(1550), + [sym_object_access] = STATE(3661), + [sym_stream_definition] = STATE(1550), + [sym_input_close_statement] = STATE(1550), + [sym_output_close_statement] = STATE(1550), + [sym__stream_statement] = STATE(1550), + [sym_input_stream_statement] = STATE(1552), + [sym_output_stream_statement] = STATE(1552), + [sym_do_block] = STATE(1550), + [sym_case_statement] = STATE(1550), + [sym_for_statement] = STATE(1550), + [sym_find_statement] = STATE(1550), + [sym_abl_statement] = STATE(1550), + [sym_assign_statement] = STATE(1550), + [sym_catch_statement] = STATE(1550), + [sym_finally_statement] = STATE(1550), + [sym_accumulate_statement] = STATE(1550), + [sym_undo_statement] = STATE(1550), + [sym_error_scope_statement] = STATE(1550), + [sym_temp_table_definition] = STATE(1550), + [sym_on_statement] = STATE(1550), + [sym__statement] = STATE(1553), + [aux_sym_source_code_repeat1] = STATE(286), + [sym_identifier] = ACTIONS(263), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), [anon_sym_LBRACE] = ACTIONS(7), - [aux_sym__block_terminator_token1] = ACTIONS(301), - [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), + [aux_sym__block_terminator_token1] = ACTIONS(321), + [aux_sym_input_expression_token1] = ACTIONS(267), + [aux_sym_primitive_type_token19] = ACTIONS(269), + [aux_sym_variable_definition_token1] = ACTIONS(271), + [aux_sym_variable_definition_token2] = ACTIONS(273), + [aux_sym_buffer_definition_token2] = ACTIONS(275), + [aux_sym_argument_mode_token1] = ACTIONS(277), + [aux_sym_if_statement_token1] = ACTIONS(279), + [aux_sym_repeat_statement_token1] = ACTIONS(281), + [aux_sym__procedure_terminator_token1] = ACTIONS(283), + [aux_sym_procedure_parameter_definition_token1] = ACTIONS(285), + [aux_sym__function_terminator_token1] = ACTIONS(287), + [aux_sym_interface_statement_token1] = ACTIONS(289), + [aux_sym_using_statement_token1] = ACTIONS(291), + [aux_sym_on_error_phrase_token1] = ACTIONS(293), + [aux_sym_on_error_phrase_token3] = ACTIONS(295), + [aux_sym_do_block_token1] = ACTIONS(297), + [aux_sym__case_terminator_token1] = ACTIONS(299), + [aux_sym_find_statement_token1] = ACTIONS(301), + [aux_sym_assign_statement_token1] = ACTIONS(303), + [aux_sym_catch_statement_token1] = ACTIONS(305), + [aux_sym_finally_statement_token1] = ACTIONS(307), + [aux_sym_accumulate_statement_token1] = ACTIONS(309), + [anon_sym_ROUTINE_DASHLEVEL] = ACTIONS(311), + [anon_sym_BLOCK_DASHLEVEL] = ACTIONS(311), }, [71] = { - [sym_body] = STATE(3660), + [sym_body] = STATE(3831), [sym_comment] = STATE(71), - [sym_qualified_name] = STATE(4733), - [sym__block_terminator] = STATE(1125), + [sym_qualified_name] = STATE(4814), + [sym__block_terminator] = STATE(928), [sym_include] = STATE(71), - [sym_assignment] = STATE(4314), - [sym_variable_definition] = STATE(1535), - [sym_variable_assignment] = STATE(1535), - [sym_buffer_definition] = STATE(1535), - [sym_query_definition] = STATE(1535), - [sym_function_call_statement] = STATE(1535), - [sym_function_call] = STATE(4086), - [sym_if_statement] = STATE(1535), - [sym_label] = STATE(1536), - [sym_repeat_statement] = STATE(1535), - [sym_procedure_statement] = STATE(1535), - [sym_procedure_parameter_definition] = STATE(1535), - [sym_function_statement] = STATE(1535), - [sym_return_statement] = STATE(1535), - [sym_interface_statement] = STATE(1535), - [sym_using_statement] = STATE(1535), - [sym_class_statement] = STATE(1535), - [sym_object_access] = STATE(3567), - [sym_stream_definition] = STATE(1535), - [sym_input_close_statement] = STATE(1535), - [sym_output_close_statement] = STATE(1535), - [sym__stream_statement] = STATE(1535), - [sym_input_stream_statement] = STATE(1537), - [sym_output_stream_statement] = STATE(1537), - [sym_do_block] = STATE(1535), - [sym_case_statement] = STATE(1535), - [sym_for_statement] = STATE(1535), - [sym_find_statement] = STATE(1535), - [sym_abl_statement] = STATE(1535), - [sym_assign_statement] = STATE(1535), - [sym_catch_statement] = STATE(1535), - [sym_finally_statement] = STATE(1535), - [sym_accumulate_statement] = STATE(1535), - [sym_undo_statement] = STATE(1535), - [sym_error_scope_statement] = STATE(1535), - [sym_temp_table_definition] = STATE(1535), - [sym_on_statement] = STATE(1535), - [sym__statement] = STATE(1538), - [aux_sym_source_code_repeat1] = STATE(276), - [sym_identifier] = ACTIONS(227), + [sym_assignment] = STATE(4463), + [sym_variable_definition] = STATE(1550), + [sym_variable_assignment] = STATE(1550), + [sym_buffer_definition] = STATE(1550), + [sym_query_definition] = STATE(1550), + [sym_function_call_statement] = STATE(1550), + [sym_function_call] = STATE(4558), + [sym_if_statement] = STATE(1550), + [sym_label] = STATE(1551), + [sym_repeat_statement] = STATE(1550), + [sym_procedure_statement] = STATE(1550), + [sym_procedure_parameter_definition] = STATE(1550), + [sym_function_statement] = STATE(1550), + [sym_return_statement] = STATE(1550), + [sym_interface_statement] = STATE(1550), + [sym_using_statement] = STATE(1550), + [sym_class_statement] = STATE(1550), + [sym_object_access] = STATE(3661), + [sym_stream_definition] = STATE(1550), + [sym_input_close_statement] = STATE(1550), + [sym_output_close_statement] = STATE(1550), + [sym__stream_statement] = STATE(1550), + [sym_input_stream_statement] = STATE(1552), + [sym_output_stream_statement] = STATE(1552), + [sym_do_block] = STATE(1550), + [sym_case_statement] = STATE(1550), + [sym_for_statement] = STATE(1550), + [sym_find_statement] = STATE(1550), + [sym_abl_statement] = STATE(1550), + [sym_assign_statement] = STATE(1550), + [sym_catch_statement] = STATE(1550), + [sym_finally_statement] = STATE(1550), + [sym_accumulate_statement] = STATE(1550), + [sym_undo_statement] = STATE(1550), + [sym_error_scope_statement] = STATE(1550), + [sym_temp_table_definition] = STATE(1550), + [sym_on_statement] = STATE(1550), + [sym__statement] = STATE(1553), + [aux_sym_source_code_repeat1] = STATE(286), + [sym_identifier] = ACTIONS(263), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), [anon_sym_LBRACE] = ACTIONS(7), - [aux_sym__block_terminator_token1] = ACTIONS(301), - [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), + [aux_sym__block_terminator_token1] = ACTIONS(321), + [aux_sym_input_expression_token1] = ACTIONS(267), + [aux_sym_primitive_type_token19] = ACTIONS(269), + [aux_sym_variable_definition_token1] = ACTIONS(271), + [aux_sym_variable_definition_token2] = ACTIONS(273), + [aux_sym_buffer_definition_token2] = ACTIONS(275), + [aux_sym_argument_mode_token1] = ACTIONS(277), + [aux_sym_if_statement_token1] = ACTIONS(279), + [aux_sym_repeat_statement_token1] = ACTIONS(281), + [aux_sym__procedure_terminator_token1] = ACTIONS(283), + [aux_sym_procedure_parameter_definition_token1] = ACTIONS(285), + [aux_sym__function_terminator_token1] = ACTIONS(287), + [aux_sym_interface_statement_token1] = ACTIONS(289), + [aux_sym_using_statement_token1] = ACTIONS(291), + [aux_sym_on_error_phrase_token1] = ACTIONS(293), + [aux_sym_on_error_phrase_token3] = ACTIONS(295), + [aux_sym_do_block_token1] = ACTIONS(297), + [aux_sym__case_terminator_token1] = ACTIONS(299), + [aux_sym_find_statement_token1] = ACTIONS(301), + [aux_sym_assign_statement_token1] = ACTIONS(303), + [aux_sym_catch_statement_token1] = ACTIONS(305), + [aux_sym_finally_statement_token1] = ACTIONS(307), + [aux_sym_accumulate_statement_token1] = ACTIONS(309), + [anon_sym_ROUTINE_DASHLEVEL] = ACTIONS(311), + [anon_sym_BLOCK_DASHLEVEL] = ACTIONS(311), }, [72] = { - [sym_body] = STATE(3561), + [sym_body] = STATE(3835), [sym_comment] = STATE(72), - [sym_qualified_name] = STATE(4733), - [sym__block_terminator] = STATE(1073), + [sym_qualified_name] = STATE(4814), + [sym__block_terminator] = STATE(932), [sym_include] = STATE(72), - [sym_assignment] = STATE(4314), - [sym_variable_definition] = STATE(1535), - [sym_variable_assignment] = STATE(1535), - [sym_buffer_definition] = STATE(1535), - [sym_query_definition] = STATE(1535), - [sym_function_call_statement] = STATE(1535), - [sym_function_call] = STATE(4086), - [sym_if_statement] = STATE(1535), - [sym_label] = STATE(1536), - [sym_repeat_statement] = STATE(1535), - [sym_procedure_statement] = STATE(1535), - [sym_procedure_parameter_definition] = STATE(1535), - [sym_function_statement] = STATE(1535), - [sym_return_statement] = STATE(1535), - [sym_interface_statement] = STATE(1535), - [sym_using_statement] = STATE(1535), - [sym_class_statement] = STATE(1535), - [sym_object_access] = STATE(3567), - [sym_stream_definition] = STATE(1535), - [sym_input_close_statement] = STATE(1535), - [sym_output_close_statement] = STATE(1535), - [sym__stream_statement] = STATE(1535), - [sym_input_stream_statement] = STATE(1537), - [sym_output_stream_statement] = STATE(1537), - [sym_do_block] = STATE(1535), - [sym_case_statement] = STATE(1535), - [sym_for_statement] = STATE(1535), - [sym_find_statement] = STATE(1535), - [sym_abl_statement] = STATE(1535), - [sym_assign_statement] = STATE(1535), - [sym_catch_statement] = STATE(1535), - [sym_finally_statement] = STATE(1535), - [sym_accumulate_statement] = STATE(1535), - [sym_undo_statement] = STATE(1535), - [sym_error_scope_statement] = STATE(1535), - [sym_temp_table_definition] = STATE(1535), - [sym_on_statement] = STATE(1535), - [sym__statement] = STATE(1538), - [aux_sym_source_code_repeat1] = STATE(276), - [sym_identifier] = ACTIONS(227), + [sym_assignment] = STATE(4463), + [sym_variable_definition] = STATE(1550), + [sym_variable_assignment] = STATE(1550), + [sym_buffer_definition] = STATE(1550), + [sym_query_definition] = STATE(1550), + [sym_function_call_statement] = STATE(1550), + [sym_function_call] = STATE(4558), + [sym_if_statement] = STATE(1550), + [sym_label] = STATE(1551), + [sym_repeat_statement] = STATE(1550), + [sym_procedure_statement] = STATE(1550), + [sym_procedure_parameter_definition] = STATE(1550), + [sym_function_statement] = STATE(1550), + [sym_return_statement] = STATE(1550), + [sym_interface_statement] = STATE(1550), + [sym_using_statement] = STATE(1550), + [sym_class_statement] = STATE(1550), + [sym_object_access] = STATE(3661), + [sym_stream_definition] = STATE(1550), + [sym_input_close_statement] = STATE(1550), + [sym_output_close_statement] = STATE(1550), + [sym__stream_statement] = STATE(1550), + [sym_input_stream_statement] = STATE(1552), + [sym_output_stream_statement] = STATE(1552), + [sym_do_block] = STATE(1550), + [sym_case_statement] = STATE(1550), + [sym_for_statement] = STATE(1550), + [sym_find_statement] = STATE(1550), + [sym_abl_statement] = STATE(1550), + [sym_assign_statement] = STATE(1550), + [sym_catch_statement] = STATE(1550), + [sym_finally_statement] = STATE(1550), + [sym_accumulate_statement] = STATE(1550), + [sym_undo_statement] = STATE(1550), + [sym_error_scope_statement] = STATE(1550), + [sym_temp_table_definition] = STATE(1550), + [sym_on_statement] = STATE(1550), + [sym__statement] = STATE(1553), + [aux_sym_source_code_repeat1] = STATE(286), + [sym_identifier] = ACTIONS(263), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), [anon_sym_LBRACE] = ACTIONS(7), - [aux_sym__block_terminator_token1] = ACTIONS(301), - [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), + [aux_sym__block_terminator_token1] = ACTIONS(321), + [aux_sym_input_expression_token1] = ACTIONS(267), + [aux_sym_primitive_type_token19] = ACTIONS(269), + [aux_sym_variable_definition_token1] = ACTIONS(271), + [aux_sym_variable_definition_token2] = ACTIONS(273), + [aux_sym_buffer_definition_token2] = ACTIONS(275), + [aux_sym_argument_mode_token1] = ACTIONS(277), + [aux_sym_if_statement_token1] = ACTIONS(279), + [aux_sym_repeat_statement_token1] = ACTIONS(281), + [aux_sym__procedure_terminator_token1] = ACTIONS(283), + [aux_sym_procedure_parameter_definition_token1] = ACTIONS(285), + [aux_sym__function_terminator_token1] = ACTIONS(287), + [aux_sym_interface_statement_token1] = ACTIONS(289), + [aux_sym_using_statement_token1] = ACTIONS(291), + [aux_sym_on_error_phrase_token1] = ACTIONS(293), + [aux_sym_on_error_phrase_token3] = ACTIONS(295), + [aux_sym_do_block_token1] = ACTIONS(297), + [aux_sym__case_terminator_token1] = ACTIONS(299), + [aux_sym_find_statement_token1] = ACTIONS(301), + [aux_sym_assign_statement_token1] = ACTIONS(303), + [aux_sym_catch_statement_token1] = ACTIONS(305), + [aux_sym_finally_statement_token1] = ACTIONS(307), + [aux_sym_accumulate_statement_token1] = ACTIONS(309), + [anon_sym_ROUTINE_DASHLEVEL] = ACTIONS(311), + [anon_sym_BLOCK_DASHLEVEL] = ACTIONS(311), }, [73] = { - [sym_body] = STATE(3577), + [sym_body] = STATE(3705), [sym_comment] = STATE(73), - [sym_qualified_name] = STATE(4733), - [sym__block_terminator] = STATE(1102), + [sym_qualified_name] = STATE(4814), + [sym__block_terminator] = STATE(889), [sym_include] = STATE(73), - [sym_assignment] = STATE(4314), - [sym_variable_definition] = STATE(1535), - [sym_variable_assignment] = STATE(1535), - [sym_buffer_definition] = STATE(1535), - [sym_query_definition] = STATE(1535), - [sym_function_call_statement] = STATE(1535), - [sym_function_call] = STATE(4086), - [sym_if_statement] = STATE(1535), - [sym_label] = STATE(1536), - [sym_repeat_statement] = STATE(1535), - [sym_procedure_statement] = STATE(1535), - [sym_procedure_parameter_definition] = STATE(1535), - [sym_function_statement] = STATE(1535), - [sym_return_statement] = STATE(1535), - [sym_interface_statement] = STATE(1535), - [sym_using_statement] = STATE(1535), - [sym_class_statement] = STATE(1535), - [sym_object_access] = STATE(3567), - [sym_stream_definition] = STATE(1535), - [sym_input_close_statement] = STATE(1535), - [sym_output_close_statement] = STATE(1535), - [sym__stream_statement] = STATE(1535), - [sym_input_stream_statement] = STATE(1537), - [sym_output_stream_statement] = STATE(1537), - [sym_do_block] = STATE(1535), - [sym_case_statement] = STATE(1535), - [sym_for_statement] = STATE(1535), - [sym_find_statement] = STATE(1535), - [sym_abl_statement] = STATE(1535), - [sym_assign_statement] = STATE(1535), - [sym_catch_statement] = STATE(1535), - [sym_finally_statement] = STATE(1535), - [sym_accumulate_statement] = STATE(1535), - [sym_undo_statement] = STATE(1535), - [sym_error_scope_statement] = STATE(1535), - [sym_temp_table_definition] = STATE(1535), - [sym_on_statement] = STATE(1535), - [sym__statement] = STATE(1538), - [aux_sym_source_code_repeat1] = STATE(276), - [sym_identifier] = ACTIONS(227), + [sym_assignment] = STATE(4463), + [sym_variable_definition] = STATE(1550), + [sym_variable_assignment] = STATE(1550), + [sym_buffer_definition] = STATE(1550), + [sym_query_definition] = STATE(1550), + [sym_function_call_statement] = STATE(1550), + [sym_function_call] = STATE(4558), + [sym_if_statement] = STATE(1550), + [sym_label] = STATE(1551), + [sym_repeat_statement] = STATE(1550), + [sym_procedure_statement] = STATE(1550), + [sym_procedure_parameter_definition] = STATE(1550), + [sym_function_statement] = STATE(1550), + [sym_return_statement] = STATE(1550), + [sym_interface_statement] = STATE(1550), + [sym_using_statement] = STATE(1550), + [sym_class_statement] = STATE(1550), + [sym_object_access] = STATE(3661), + [sym_stream_definition] = STATE(1550), + [sym_input_close_statement] = STATE(1550), + [sym_output_close_statement] = STATE(1550), + [sym__stream_statement] = STATE(1550), + [sym_input_stream_statement] = STATE(1552), + [sym_output_stream_statement] = STATE(1552), + [sym_do_block] = STATE(1550), + [sym_case_statement] = STATE(1550), + [sym_for_statement] = STATE(1550), + [sym_find_statement] = STATE(1550), + [sym_abl_statement] = STATE(1550), + [sym_assign_statement] = STATE(1550), + [sym_catch_statement] = STATE(1550), + [sym_finally_statement] = STATE(1550), + [sym_accumulate_statement] = STATE(1550), + [sym_undo_statement] = STATE(1550), + [sym_error_scope_statement] = STATE(1550), + [sym_temp_table_definition] = STATE(1550), + [sym_on_statement] = STATE(1550), + [sym__statement] = STATE(1553), + [aux_sym_source_code_repeat1] = STATE(286), + [sym_identifier] = ACTIONS(263), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), [anon_sym_LBRACE] = ACTIONS(7), - [aux_sym__block_terminator_token1] = ACTIONS(301), - [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), + [aux_sym__block_terminator_token1] = ACTIONS(321), + [aux_sym_input_expression_token1] = ACTIONS(267), + [aux_sym_primitive_type_token19] = ACTIONS(269), + [aux_sym_variable_definition_token1] = ACTIONS(271), + [aux_sym_variable_definition_token2] = ACTIONS(273), + [aux_sym_buffer_definition_token2] = ACTIONS(275), + [aux_sym_argument_mode_token1] = ACTIONS(277), + [aux_sym_if_statement_token1] = ACTIONS(279), + [aux_sym_repeat_statement_token1] = ACTIONS(281), + [aux_sym__procedure_terminator_token1] = ACTIONS(283), + [aux_sym_procedure_parameter_definition_token1] = ACTIONS(285), + [aux_sym__function_terminator_token1] = ACTIONS(287), + [aux_sym_interface_statement_token1] = ACTIONS(289), + [aux_sym_using_statement_token1] = ACTIONS(291), + [aux_sym_on_error_phrase_token1] = ACTIONS(293), + [aux_sym_on_error_phrase_token3] = ACTIONS(295), + [aux_sym_do_block_token1] = ACTIONS(297), + [aux_sym__case_terminator_token1] = ACTIONS(299), + [aux_sym_find_statement_token1] = ACTIONS(301), + [aux_sym_assign_statement_token1] = ACTIONS(303), + [aux_sym_catch_statement_token1] = ACTIONS(305), + [aux_sym_finally_statement_token1] = ACTIONS(307), + [aux_sym_accumulate_statement_token1] = ACTIONS(309), + [anon_sym_ROUTINE_DASHLEVEL] = ACTIONS(311), + [anon_sym_BLOCK_DASHLEVEL] = ACTIONS(311), }, [74] = { - [sym_body] = STATE(3734), + [sym_body] = STATE(3655), [sym_comment] = STATE(74), - [sym_qualified_name] = STATE(4733), - [sym__block_terminator] = STATE(3406), + [sym_qualified_name] = STATE(4814), + [sym__block_terminator] = STATE(887), [sym_include] = STATE(74), - [sym_assignment] = STATE(4314), - [sym_variable_definition] = STATE(1535), - [sym_variable_assignment] = STATE(1535), - [sym_buffer_definition] = STATE(1535), - [sym_query_definition] = STATE(1535), - [sym_function_call_statement] = STATE(1535), - [sym_function_call] = STATE(4086), - [sym_if_statement] = STATE(1535), - [sym_label] = STATE(1536), - [sym_repeat_statement] = STATE(1535), - [sym_procedure_statement] = STATE(1535), - [sym_procedure_parameter_definition] = STATE(1535), - [sym_function_statement] = STATE(1535), - [sym_return_statement] = STATE(1535), - [sym_interface_statement] = STATE(1535), - [sym_using_statement] = STATE(1535), - [sym_class_statement] = STATE(1535), - [sym_object_access] = STATE(3567), - [sym_stream_definition] = STATE(1535), - [sym_input_close_statement] = STATE(1535), - [sym_output_close_statement] = STATE(1535), - [sym__stream_statement] = STATE(1535), - [sym_input_stream_statement] = STATE(1537), - [sym_output_stream_statement] = STATE(1537), - [sym_do_block] = STATE(1535), - [sym_case_statement] = STATE(1535), - [sym_for_statement] = STATE(1535), - [sym_find_statement] = STATE(1535), - [sym_abl_statement] = STATE(1535), - [sym_assign_statement] = STATE(1535), - [sym_catch_statement] = STATE(1535), - [sym_finally_statement] = STATE(1535), - [sym_accumulate_statement] = STATE(1535), - [sym_undo_statement] = STATE(1535), - [sym_error_scope_statement] = STATE(1535), - [sym_temp_table_definition] = STATE(1535), - [sym_on_statement] = STATE(1535), - [sym__statement] = STATE(1538), - [aux_sym_source_code_repeat1] = STATE(276), - [sym_identifier] = ACTIONS(227), + [sym_assignment] = STATE(4463), + [sym_variable_definition] = STATE(1550), + [sym_variable_assignment] = STATE(1550), + [sym_buffer_definition] = STATE(1550), + [sym_query_definition] = STATE(1550), + [sym_function_call_statement] = STATE(1550), + [sym_function_call] = STATE(4558), + [sym_if_statement] = STATE(1550), + [sym_label] = STATE(1551), + [sym_repeat_statement] = STATE(1550), + [sym_procedure_statement] = STATE(1550), + [sym_procedure_parameter_definition] = STATE(1550), + [sym_function_statement] = STATE(1550), + [sym_return_statement] = STATE(1550), + [sym_interface_statement] = STATE(1550), + [sym_using_statement] = STATE(1550), + [sym_class_statement] = STATE(1550), + [sym_object_access] = STATE(3661), + [sym_stream_definition] = STATE(1550), + [sym_input_close_statement] = STATE(1550), + [sym_output_close_statement] = STATE(1550), + [sym__stream_statement] = STATE(1550), + [sym_input_stream_statement] = STATE(1552), + [sym_output_stream_statement] = STATE(1552), + [sym_do_block] = STATE(1550), + [sym_case_statement] = STATE(1550), + [sym_for_statement] = STATE(1550), + [sym_find_statement] = STATE(1550), + [sym_abl_statement] = STATE(1550), + [sym_assign_statement] = STATE(1550), + [sym_catch_statement] = STATE(1550), + [sym_finally_statement] = STATE(1550), + [sym_accumulate_statement] = STATE(1550), + [sym_undo_statement] = STATE(1550), + [sym_error_scope_statement] = STATE(1550), + [sym_temp_table_definition] = STATE(1550), + [sym_on_statement] = STATE(1550), + [sym__statement] = STATE(1553), + [aux_sym_source_code_repeat1] = STATE(286), + [sym_identifier] = ACTIONS(263), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), [anon_sym_LBRACE] = ACTIONS(7), - [aux_sym__block_terminator_token1] = ACTIONS(297), - [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), + [aux_sym__block_terminator_token1] = ACTIONS(321), + [aux_sym_input_expression_token1] = ACTIONS(267), + [aux_sym_primitive_type_token19] = ACTIONS(269), + [aux_sym_variable_definition_token1] = ACTIONS(271), + [aux_sym_variable_definition_token2] = ACTIONS(273), + [aux_sym_buffer_definition_token2] = ACTIONS(275), + [aux_sym_argument_mode_token1] = ACTIONS(277), + [aux_sym_if_statement_token1] = ACTIONS(279), + [aux_sym_repeat_statement_token1] = ACTIONS(281), + [aux_sym__procedure_terminator_token1] = ACTIONS(283), + [aux_sym_procedure_parameter_definition_token1] = ACTIONS(285), + [aux_sym__function_terminator_token1] = ACTIONS(287), + [aux_sym_interface_statement_token1] = ACTIONS(289), + [aux_sym_using_statement_token1] = ACTIONS(291), + [aux_sym_on_error_phrase_token1] = ACTIONS(293), + [aux_sym_on_error_phrase_token3] = ACTIONS(295), + [aux_sym_do_block_token1] = ACTIONS(297), + [aux_sym__case_terminator_token1] = ACTIONS(299), + [aux_sym_find_statement_token1] = ACTIONS(301), + [aux_sym_assign_statement_token1] = ACTIONS(303), + [aux_sym_catch_statement_token1] = ACTIONS(305), + [aux_sym_finally_statement_token1] = ACTIONS(307), + [aux_sym_accumulate_statement_token1] = ACTIONS(309), + [anon_sym_ROUTINE_DASHLEVEL] = ACTIONS(311), + [anon_sym_BLOCK_DASHLEVEL] = ACTIONS(311), }, [75] = { - [sym_body] = STATE(3760), + [sym_body] = STATE(3849), [sym_comment] = STATE(75), - [sym_qualified_name] = STATE(4733), - [sym__block_terminator] = STATE(3418), + [sym_qualified_name] = STATE(4814), + [sym__block_terminator] = STATE(941), [sym_include] = STATE(75), - [sym_assignment] = STATE(4314), - [sym_variable_definition] = STATE(1535), - [sym_variable_assignment] = STATE(1535), - [sym_buffer_definition] = STATE(1535), - [sym_query_definition] = STATE(1535), - [sym_function_call_statement] = STATE(1535), - [sym_function_call] = STATE(4086), - [sym_if_statement] = STATE(1535), - [sym_label] = STATE(1536), - [sym_repeat_statement] = STATE(1535), - [sym_procedure_statement] = STATE(1535), - [sym_procedure_parameter_definition] = STATE(1535), - [sym_function_statement] = STATE(1535), - [sym_return_statement] = STATE(1535), - [sym_interface_statement] = STATE(1535), - [sym_using_statement] = STATE(1535), - [sym_class_statement] = STATE(1535), - [sym_object_access] = STATE(3567), - [sym_stream_definition] = STATE(1535), - [sym_input_close_statement] = STATE(1535), - [sym_output_close_statement] = STATE(1535), - [sym__stream_statement] = STATE(1535), - [sym_input_stream_statement] = STATE(1537), - [sym_output_stream_statement] = STATE(1537), - [sym_do_block] = STATE(1535), - [sym_case_statement] = STATE(1535), - [sym_for_statement] = STATE(1535), - [sym_find_statement] = STATE(1535), - [sym_abl_statement] = STATE(1535), - [sym_assign_statement] = STATE(1535), - [sym_catch_statement] = STATE(1535), - [sym_finally_statement] = STATE(1535), - [sym_accumulate_statement] = STATE(1535), - [sym_undo_statement] = STATE(1535), - [sym_error_scope_statement] = STATE(1535), - [sym_temp_table_definition] = STATE(1535), - [sym_on_statement] = STATE(1535), - [sym__statement] = STATE(1538), - [aux_sym_source_code_repeat1] = STATE(276), - [sym_identifier] = ACTIONS(227), + [sym_assignment] = STATE(4463), + [sym_variable_definition] = STATE(1550), + [sym_variable_assignment] = STATE(1550), + [sym_buffer_definition] = STATE(1550), + [sym_query_definition] = STATE(1550), + [sym_function_call_statement] = STATE(1550), + [sym_function_call] = STATE(4558), + [sym_if_statement] = STATE(1550), + [sym_label] = STATE(1551), + [sym_repeat_statement] = STATE(1550), + [sym_procedure_statement] = STATE(1550), + [sym_procedure_parameter_definition] = STATE(1550), + [sym_function_statement] = STATE(1550), + [sym_return_statement] = STATE(1550), + [sym_interface_statement] = STATE(1550), + [sym_using_statement] = STATE(1550), + [sym_class_statement] = STATE(1550), + [sym_object_access] = STATE(3661), + [sym_stream_definition] = STATE(1550), + [sym_input_close_statement] = STATE(1550), + [sym_output_close_statement] = STATE(1550), + [sym__stream_statement] = STATE(1550), + [sym_input_stream_statement] = STATE(1552), + [sym_output_stream_statement] = STATE(1552), + [sym_do_block] = STATE(1550), + [sym_case_statement] = STATE(1550), + [sym_for_statement] = STATE(1550), + [sym_find_statement] = STATE(1550), + [sym_abl_statement] = STATE(1550), + [sym_assign_statement] = STATE(1550), + [sym_catch_statement] = STATE(1550), + [sym_finally_statement] = STATE(1550), + [sym_accumulate_statement] = STATE(1550), + [sym_undo_statement] = STATE(1550), + [sym_error_scope_statement] = STATE(1550), + [sym_temp_table_definition] = STATE(1550), + [sym_on_statement] = STATE(1550), + [sym__statement] = STATE(1553), + [aux_sym_source_code_repeat1] = STATE(286), + [sym_identifier] = ACTIONS(263), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), [anon_sym_LBRACE] = ACTIONS(7), - [aux_sym__block_terminator_token1] = ACTIONS(297), - [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), + [aux_sym__block_terminator_token1] = ACTIONS(321), + [aux_sym_input_expression_token1] = ACTIONS(267), + [aux_sym_primitive_type_token19] = ACTIONS(269), + [aux_sym_variable_definition_token1] = ACTIONS(271), + [aux_sym_variable_definition_token2] = ACTIONS(273), + [aux_sym_buffer_definition_token2] = ACTIONS(275), + [aux_sym_argument_mode_token1] = ACTIONS(277), + [aux_sym_if_statement_token1] = ACTIONS(279), + [aux_sym_repeat_statement_token1] = ACTIONS(281), + [aux_sym__procedure_terminator_token1] = ACTIONS(283), + [aux_sym_procedure_parameter_definition_token1] = ACTIONS(285), + [aux_sym__function_terminator_token1] = ACTIONS(287), + [aux_sym_interface_statement_token1] = ACTIONS(289), + [aux_sym_using_statement_token1] = ACTIONS(291), + [aux_sym_on_error_phrase_token1] = ACTIONS(293), + [aux_sym_on_error_phrase_token3] = ACTIONS(295), + [aux_sym_do_block_token1] = ACTIONS(297), + [aux_sym__case_terminator_token1] = ACTIONS(299), + [aux_sym_find_statement_token1] = ACTIONS(301), + [aux_sym_assign_statement_token1] = ACTIONS(303), + [aux_sym_catch_statement_token1] = ACTIONS(305), + [aux_sym_finally_statement_token1] = ACTIONS(307), + [aux_sym_accumulate_statement_token1] = ACTIONS(309), + [anon_sym_ROUTINE_DASHLEVEL] = ACTIONS(311), + [anon_sym_BLOCK_DASHLEVEL] = ACTIONS(311), }, [76] = { - [sym_body] = STATE(3744), + [sym_body] = STATE(3770), [sym_comment] = STATE(76), - [sym_qualified_name] = STATE(4733), - [sym__block_terminator] = STATE(3409), + [sym_qualified_name] = STATE(4814), + [sym__block_terminator] = STATE(1115), [sym_include] = STATE(76), - [sym_assignment] = STATE(4314), - [sym_variable_definition] = STATE(1535), - [sym_variable_assignment] = STATE(1535), - [sym_buffer_definition] = STATE(1535), - [sym_query_definition] = STATE(1535), - [sym_function_call_statement] = STATE(1535), - [sym_function_call] = STATE(4086), - [sym_if_statement] = STATE(1535), - [sym_label] = STATE(1536), - [sym_repeat_statement] = STATE(1535), - [sym_procedure_statement] = STATE(1535), - [sym_procedure_parameter_definition] = STATE(1535), - [sym_function_statement] = STATE(1535), - [sym_return_statement] = STATE(1535), - [sym_interface_statement] = STATE(1535), - [sym_using_statement] = STATE(1535), - [sym_class_statement] = STATE(1535), - [sym_object_access] = STATE(3567), - [sym_stream_definition] = STATE(1535), - [sym_input_close_statement] = STATE(1535), - [sym_output_close_statement] = STATE(1535), - [sym__stream_statement] = STATE(1535), - [sym_input_stream_statement] = STATE(1537), - [sym_output_stream_statement] = STATE(1537), - [sym_do_block] = STATE(1535), - [sym_case_statement] = STATE(1535), - [sym_for_statement] = STATE(1535), - [sym_find_statement] = STATE(1535), - [sym_abl_statement] = STATE(1535), - [sym_assign_statement] = STATE(1535), - [sym_catch_statement] = STATE(1535), - [sym_finally_statement] = STATE(1535), - [sym_accumulate_statement] = STATE(1535), - [sym_undo_statement] = STATE(1535), - [sym_error_scope_statement] = STATE(1535), - [sym_temp_table_definition] = STATE(1535), - [sym_on_statement] = STATE(1535), - [sym__statement] = STATE(1538), - [aux_sym_source_code_repeat1] = STATE(276), - [sym_identifier] = ACTIONS(227), + [sym_assignment] = STATE(4463), + [sym_variable_definition] = STATE(1550), + [sym_variable_assignment] = STATE(1550), + [sym_buffer_definition] = STATE(1550), + [sym_query_definition] = STATE(1550), + [sym_function_call_statement] = STATE(1550), + [sym_function_call] = STATE(4558), + [sym_if_statement] = STATE(1550), + [sym_label] = STATE(1551), + [sym_repeat_statement] = STATE(1550), + [sym_procedure_statement] = STATE(1550), + [sym_procedure_parameter_definition] = STATE(1550), + [sym_function_statement] = STATE(1550), + [sym_return_statement] = STATE(1550), + [sym_interface_statement] = STATE(1550), + [sym_using_statement] = STATE(1550), + [sym_class_statement] = STATE(1550), + [sym_object_access] = STATE(3661), + [sym_stream_definition] = STATE(1550), + [sym_input_close_statement] = STATE(1550), + [sym_output_close_statement] = STATE(1550), + [sym__stream_statement] = STATE(1550), + [sym_input_stream_statement] = STATE(1552), + [sym_output_stream_statement] = STATE(1552), + [sym_do_block] = STATE(1550), + [sym_case_statement] = STATE(1550), + [sym_for_statement] = STATE(1550), + [sym_find_statement] = STATE(1550), + [sym_abl_statement] = STATE(1550), + [sym_assign_statement] = STATE(1550), + [sym_catch_statement] = STATE(1550), + [sym_finally_statement] = STATE(1550), + [sym_accumulate_statement] = STATE(1550), + [sym_undo_statement] = STATE(1550), + [sym_error_scope_statement] = STATE(1550), + [sym_temp_table_definition] = STATE(1550), + [sym_on_statement] = STATE(1550), + [sym__statement] = STATE(1553), + [aux_sym_source_code_repeat1] = STATE(286), + [sym_identifier] = ACTIONS(263), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), [anon_sym_LBRACE] = ACTIONS(7), - [aux_sym__block_terminator_token1] = ACTIONS(297), - [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), + [aux_sym__block_terminator_token1] = ACTIONS(323), + [aux_sym_input_expression_token1] = ACTIONS(267), + [aux_sym_primitive_type_token19] = ACTIONS(269), + [aux_sym_variable_definition_token1] = ACTIONS(271), + [aux_sym_variable_definition_token2] = ACTIONS(273), + [aux_sym_buffer_definition_token2] = ACTIONS(275), + [aux_sym_argument_mode_token1] = ACTIONS(277), + [aux_sym_if_statement_token1] = ACTIONS(279), + [aux_sym_repeat_statement_token1] = ACTIONS(281), + [aux_sym__procedure_terminator_token1] = ACTIONS(283), + [aux_sym_procedure_parameter_definition_token1] = ACTIONS(285), + [aux_sym__function_terminator_token1] = ACTIONS(287), + [aux_sym_interface_statement_token1] = ACTIONS(289), + [aux_sym_using_statement_token1] = ACTIONS(291), + [aux_sym_on_error_phrase_token1] = ACTIONS(293), + [aux_sym_on_error_phrase_token3] = ACTIONS(295), + [aux_sym_do_block_token1] = ACTIONS(297), + [aux_sym__case_terminator_token1] = ACTIONS(299), + [aux_sym_find_statement_token1] = ACTIONS(301), + [aux_sym_assign_statement_token1] = ACTIONS(303), + [aux_sym_catch_statement_token1] = ACTIONS(305), + [aux_sym_finally_statement_token1] = ACTIONS(307), + [aux_sym_accumulate_statement_token1] = ACTIONS(309), + [anon_sym_ROUTINE_DASHLEVEL] = ACTIONS(311), + [anon_sym_BLOCK_DASHLEVEL] = ACTIONS(311), }, [77] = { - [sym_body] = STATE(3854), + [sym_body] = STATE(3771), [sym_comment] = STATE(77), - [sym_qualified_name] = STATE(4733), - [sym__block_terminator] = STATE(1214), + [sym_qualified_name] = STATE(4814), + [sym__block_terminator] = STATE(1123), [sym_include] = STATE(77), - [sym_assignment] = STATE(4314), - [sym_variable_definition] = STATE(1535), - [sym_variable_assignment] = STATE(1535), - [sym_buffer_definition] = STATE(1535), - [sym_query_definition] = STATE(1535), - [sym_function_call_statement] = STATE(1535), - [sym_function_call] = STATE(4086), - [sym_if_statement] = STATE(1535), - [sym_label] = STATE(1536), - [sym_repeat_statement] = STATE(1535), - [sym_procedure_statement] = STATE(1535), - [sym_procedure_parameter_definition] = STATE(1535), - [sym_function_statement] = STATE(1535), - [sym_return_statement] = STATE(1535), - [sym_interface_statement] = STATE(1535), - [sym_using_statement] = STATE(1535), - [sym_class_statement] = STATE(1535), - [sym_object_access] = STATE(3567), - [sym_stream_definition] = STATE(1535), - [sym_input_close_statement] = STATE(1535), - [sym_output_close_statement] = STATE(1535), - [sym__stream_statement] = STATE(1535), - [sym_input_stream_statement] = STATE(1537), - [sym_output_stream_statement] = STATE(1537), - [sym_do_block] = STATE(1535), - [sym_case_statement] = STATE(1535), - [sym_for_statement] = STATE(1535), - [sym_find_statement] = STATE(1535), - [sym_abl_statement] = STATE(1535), - [sym_assign_statement] = STATE(1535), - [sym_catch_statement] = STATE(1535), - [sym_finally_statement] = STATE(1535), - [sym_accumulate_statement] = STATE(1535), - [sym_undo_statement] = STATE(1535), - [sym_error_scope_statement] = STATE(1535), - [sym_temp_table_definition] = STATE(1535), - [sym_on_statement] = STATE(1535), - [sym__statement] = STATE(1538), - [aux_sym_source_code_repeat1] = STATE(276), - [sym_identifier] = ACTIONS(227), + [sym_assignment] = STATE(4463), + [sym_variable_definition] = STATE(1550), + [sym_variable_assignment] = STATE(1550), + [sym_buffer_definition] = STATE(1550), + [sym_query_definition] = STATE(1550), + [sym_function_call_statement] = STATE(1550), + [sym_function_call] = STATE(4558), + [sym_if_statement] = STATE(1550), + [sym_label] = STATE(1551), + [sym_repeat_statement] = STATE(1550), + [sym_procedure_statement] = STATE(1550), + [sym_procedure_parameter_definition] = STATE(1550), + [sym_function_statement] = STATE(1550), + [sym_return_statement] = STATE(1550), + [sym_interface_statement] = STATE(1550), + [sym_using_statement] = STATE(1550), + [sym_class_statement] = STATE(1550), + [sym_object_access] = STATE(3661), + [sym_stream_definition] = STATE(1550), + [sym_input_close_statement] = STATE(1550), + [sym_output_close_statement] = STATE(1550), + [sym__stream_statement] = STATE(1550), + [sym_input_stream_statement] = STATE(1552), + [sym_output_stream_statement] = STATE(1552), + [sym_do_block] = STATE(1550), + [sym_case_statement] = STATE(1550), + [sym_for_statement] = STATE(1550), + [sym_find_statement] = STATE(1550), + [sym_abl_statement] = STATE(1550), + [sym_assign_statement] = STATE(1550), + [sym_catch_statement] = STATE(1550), + [sym_finally_statement] = STATE(1550), + [sym_accumulate_statement] = STATE(1550), + [sym_undo_statement] = STATE(1550), + [sym_error_scope_statement] = STATE(1550), + [sym_temp_table_definition] = STATE(1550), + [sym_on_statement] = STATE(1550), + [sym__statement] = STATE(1553), + [aux_sym_source_code_repeat1] = STATE(286), + [sym_identifier] = ACTIONS(263), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), [anon_sym_LBRACE] = ACTIONS(7), - [aux_sym__block_terminator_token1] = ACTIONS(299), - [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), + [aux_sym__block_terminator_token1] = ACTIONS(323), + [aux_sym_input_expression_token1] = ACTIONS(267), + [aux_sym_primitive_type_token19] = ACTIONS(269), + [aux_sym_variable_definition_token1] = ACTIONS(271), + [aux_sym_variable_definition_token2] = ACTIONS(273), + [aux_sym_buffer_definition_token2] = ACTIONS(275), + [aux_sym_argument_mode_token1] = ACTIONS(277), + [aux_sym_if_statement_token1] = ACTIONS(279), + [aux_sym_repeat_statement_token1] = ACTIONS(281), + [aux_sym__procedure_terminator_token1] = ACTIONS(283), + [aux_sym_procedure_parameter_definition_token1] = ACTIONS(285), + [aux_sym__function_terminator_token1] = ACTIONS(287), + [aux_sym_interface_statement_token1] = ACTIONS(289), + [aux_sym_using_statement_token1] = ACTIONS(291), + [aux_sym_on_error_phrase_token1] = ACTIONS(293), + [aux_sym_on_error_phrase_token3] = ACTIONS(295), + [aux_sym_do_block_token1] = ACTIONS(297), + [aux_sym__case_terminator_token1] = ACTIONS(299), + [aux_sym_find_statement_token1] = ACTIONS(301), + [aux_sym_assign_statement_token1] = ACTIONS(303), + [aux_sym_catch_statement_token1] = ACTIONS(305), + [aux_sym_finally_statement_token1] = ACTIONS(307), + [aux_sym_accumulate_statement_token1] = ACTIONS(309), + [anon_sym_ROUTINE_DASHLEVEL] = ACTIONS(311), + [anon_sym_BLOCK_DASHLEVEL] = ACTIONS(311), }, [78] = { - [sym_body] = STATE(3587), + [sym_body] = STATE(3772), [sym_comment] = STATE(78), - [sym_qualified_name] = STATE(4733), - [sym__block_terminator] = STATE(1109), + [sym_qualified_name] = STATE(4814), + [sym__block_terminator] = STATE(1126), [sym_include] = STATE(78), - [sym_assignment] = STATE(4314), - [sym_variable_definition] = STATE(1535), - [sym_variable_assignment] = STATE(1535), - [sym_buffer_definition] = STATE(1535), - [sym_query_definition] = STATE(1535), - [sym_function_call_statement] = STATE(1535), - [sym_function_call] = STATE(4086), - [sym_if_statement] = STATE(1535), - [sym_label] = STATE(1536), - [sym_repeat_statement] = STATE(1535), - [sym_procedure_statement] = STATE(1535), - [sym_procedure_parameter_definition] = STATE(1535), - [sym_function_statement] = STATE(1535), - [sym_return_statement] = STATE(1535), - [sym_interface_statement] = STATE(1535), - [sym_using_statement] = STATE(1535), - [sym_class_statement] = STATE(1535), - [sym_object_access] = STATE(3567), - [sym_stream_definition] = STATE(1535), - [sym_input_close_statement] = STATE(1535), - [sym_output_close_statement] = STATE(1535), - [sym__stream_statement] = STATE(1535), - [sym_input_stream_statement] = STATE(1537), - [sym_output_stream_statement] = STATE(1537), - [sym_do_block] = STATE(1535), - [sym_case_statement] = STATE(1535), - [sym_for_statement] = STATE(1535), - [sym_find_statement] = STATE(1535), - [sym_abl_statement] = STATE(1535), - [sym_assign_statement] = STATE(1535), - [sym_catch_statement] = STATE(1535), - [sym_finally_statement] = STATE(1535), - [sym_accumulate_statement] = STATE(1535), - [sym_undo_statement] = STATE(1535), - [sym_error_scope_statement] = STATE(1535), - [sym_temp_table_definition] = STATE(1535), - [sym_on_statement] = STATE(1535), - [sym__statement] = STATE(1538), - [aux_sym_source_code_repeat1] = STATE(276), - [sym_identifier] = ACTIONS(227), + [sym_assignment] = STATE(4463), + [sym_variable_definition] = STATE(1550), + [sym_variable_assignment] = STATE(1550), + [sym_buffer_definition] = STATE(1550), + [sym_query_definition] = STATE(1550), + [sym_function_call_statement] = STATE(1550), + [sym_function_call] = STATE(4558), + [sym_if_statement] = STATE(1550), + [sym_label] = STATE(1551), + [sym_repeat_statement] = STATE(1550), + [sym_procedure_statement] = STATE(1550), + [sym_procedure_parameter_definition] = STATE(1550), + [sym_function_statement] = STATE(1550), + [sym_return_statement] = STATE(1550), + [sym_interface_statement] = STATE(1550), + [sym_using_statement] = STATE(1550), + [sym_class_statement] = STATE(1550), + [sym_object_access] = STATE(3661), + [sym_stream_definition] = STATE(1550), + [sym_input_close_statement] = STATE(1550), + [sym_output_close_statement] = STATE(1550), + [sym__stream_statement] = STATE(1550), + [sym_input_stream_statement] = STATE(1552), + [sym_output_stream_statement] = STATE(1552), + [sym_do_block] = STATE(1550), + [sym_case_statement] = STATE(1550), + [sym_for_statement] = STATE(1550), + [sym_find_statement] = STATE(1550), + [sym_abl_statement] = STATE(1550), + [sym_assign_statement] = STATE(1550), + [sym_catch_statement] = STATE(1550), + [sym_finally_statement] = STATE(1550), + [sym_accumulate_statement] = STATE(1550), + [sym_undo_statement] = STATE(1550), + [sym_error_scope_statement] = STATE(1550), + [sym_temp_table_definition] = STATE(1550), + [sym_on_statement] = STATE(1550), + [sym__statement] = STATE(1553), + [aux_sym_source_code_repeat1] = STATE(286), + [sym_identifier] = ACTIONS(263), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), [anon_sym_LBRACE] = ACTIONS(7), - [aux_sym__block_terminator_token1] = ACTIONS(301), - [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), + [aux_sym__block_terminator_token1] = ACTIONS(323), + [aux_sym_input_expression_token1] = ACTIONS(267), + [aux_sym_primitive_type_token19] = ACTIONS(269), + [aux_sym_variable_definition_token1] = ACTIONS(271), + [aux_sym_variable_definition_token2] = ACTIONS(273), + [aux_sym_buffer_definition_token2] = ACTIONS(275), + [aux_sym_argument_mode_token1] = ACTIONS(277), + [aux_sym_if_statement_token1] = ACTIONS(279), + [aux_sym_repeat_statement_token1] = ACTIONS(281), + [aux_sym__procedure_terminator_token1] = ACTIONS(283), + [aux_sym_procedure_parameter_definition_token1] = ACTIONS(285), + [aux_sym__function_terminator_token1] = ACTIONS(287), + [aux_sym_interface_statement_token1] = ACTIONS(289), + [aux_sym_using_statement_token1] = ACTIONS(291), + [aux_sym_on_error_phrase_token1] = ACTIONS(293), + [aux_sym_on_error_phrase_token3] = ACTIONS(295), + [aux_sym_do_block_token1] = ACTIONS(297), + [aux_sym__case_terminator_token1] = ACTIONS(299), + [aux_sym_find_statement_token1] = ACTIONS(301), + [aux_sym_assign_statement_token1] = ACTIONS(303), + [aux_sym_catch_statement_token1] = ACTIONS(305), + [aux_sym_finally_statement_token1] = ACTIONS(307), + [aux_sym_accumulate_statement_token1] = ACTIONS(309), + [anon_sym_ROUTINE_DASHLEVEL] = ACTIONS(311), + [anon_sym_BLOCK_DASHLEVEL] = ACTIONS(311), }, [79] = { - [sym_body] = STATE(3685), + [sym_body] = STATE(3773), [sym_comment] = STATE(79), - [sym_qualified_name] = STATE(4733), - [sym__block_terminator] = STATE(1123), + [sym_qualified_name] = STATE(4814), + [sym__block_terminator] = STATE(1128), [sym_include] = STATE(79), - [sym_assignment] = STATE(4314), - [sym_variable_definition] = STATE(1535), - [sym_variable_assignment] = STATE(1535), - [sym_buffer_definition] = STATE(1535), - [sym_query_definition] = STATE(1535), - [sym_function_call_statement] = STATE(1535), - [sym_function_call] = STATE(4086), - [sym_if_statement] = STATE(1535), - [sym_label] = STATE(1536), - [sym_repeat_statement] = STATE(1535), - [sym_procedure_statement] = STATE(1535), - [sym_procedure_parameter_definition] = STATE(1535), - [sym_function_statement] = STATE(1535), - [sym_return_statement] = STATE(1535), - [sym_interface_statement] = STATE(1535), - [sym_using_statement] = STATE(1535), - [sym_class_statement] = STATE(1535), - [sym_object_access] = STATE(3567), - [sym_stream_definition] = STATE(1535), - [sym_input_close_statement] = STATE(1535), - [sym_output_close_statement] = STATE(1535), - [sym__stream_statement] = STATE(1535), - [sym_input_stream_statement] = STATE(1537), - [sym_output_stream_statement] = STATE(1537), - [sym_do_block] = STATE(1535), - [sym_case_statement] = STATE(1535), - [sym_for_statement] = STATE(1535), - [sym_find_statement] = STATE(1535), - [sym_abl_statement] = STATE(1535), - [sym_assign_statement] = STATE(1535), - [sym_catch_statement] = STATE(1535), - [sym_finally_statement] = STATE(1535), - [sym_accumulate_statement] = STATE(1535), - [sym_undo_statement] = STATE(1535), - [sym_error_scope_statement] = STATE(1535), - [sym_temp_table_definition] = STATE(1535), - [sym_on_statement] = STATE(1535), - [sym__statement] = STATE(1538), - [aux_sym_source_code_repeat1] = STATE(276), - [sym_identifier] = ACTIONS(227), + [sym_assignment] = STATE(4463), + [sym_variable_definition] = STATE(1550), + [sym_variable_assignment] = STATE(1550), + [sym_buffer_definition] = STATE(1550), + [sym_query_definition] = STATE(1550), + [sym_function_call_statement] = STATE(1550), + [sym_function_call] = STATE(4558), + [sym_if_statement] = STATE(1550), + [sym_label] = STATE(1551), + [sym_repeat_statement] = STATE(1550), + [sym_procedure_statement] = STATE(1550), + [sym_procedure_parameter_definition] = STATE(1550), + [sym_function_statement] = STATE(1550), + [sym_return_statement] = STATE(1550), + [sym_interface_statement] = STATE(1550), + [sym_using_statement] = STATE(1550), + [sym_class_statement] = STATE(1550), + [sym_object_access] = STATE(3661), + [sym_stream_definition] = STATE(1550), + [sym_input_close_statement] = STATE(1550), + [sym_output_close_statement] = STATE(1550), + [sym__stream_statement] = STATE(1550), + [sym_input_stream_statement] = STATE(1552), + [sym_output_stream_statement] = STATE(1552), + [sym_do_block] = STATE(1550), + [sym_case_statement] = STATE(1550), + [sym_for_statement] = STATE(1550), + [sym_find_statement] = STATE(1550), + [sym_abl_statement] = STATE(1550), + [sym_assign_statement] = STATE(1550), + [sym_catch_statement] = STATE(1550), + [sym_finally_statement] = STATE(1550), + [sym_accumulate_statement] = STATE(1550), + [sym_undo_statement] = STATE(1550), + [sym_error_scope_statement] = STATE(1550), + [sym_temp_table_definition] = STATE(1550), + [sym_on_statement] = STATE(1550), + [sym__statement] = STATE(1553), + [aux_sym_source_code_repeat1] = STATE(286), + [sym_identifier] = ACTIONS(263), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), [anon_sym_LBRACE] = ACTIONS(7), - [aux_sym__block_terminator_token1] = ACTIONS(301), - [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), + [aux_sym__block_terminator_token1] = ACTIONS(323), + [aux_sym_input_expression_token1] = ACTIONS(267), + [aux_sym_primitive_type_token19] = ACTIONS(269), + [aux_sym_variable_definition_token1] = ACTIONS(271), + [aux_sym_variable_definition_token2] = ACTIONS(273), + [aux_sym_buffer_definition_token2] = ACTIONS(275), + [aux_sym_argument_mode_token1] = ACTIONS(277), + [aux_sym_if_statement_token1] = ACTIONS(279), + [aux_sym_repeat_statement_token1] = ACTIONS(281), + [aux_sym__procedure_terminator_token1] = ACTIONS(283), + [aux_sym_procedure_parameter_definition_token1] = ACTIONS(285), + [aux_sym__function_terminator_token1] = ACTIONS(287), + [aux_sym_interface_statement_token1] = ACTIONS(289), + [aux_sym_using_statement_token1] = ACTIONS(291), + [aux_sym_on_error_phrase_token1] = ACTIONS(293), + [aux_sym_on_error_phrase_token3] = ACTIONS(295), + [aux_sym_do_block_token1] = ACTIONS(297), + [aux_sym__case_terminator_token1] = ACTIONS(299), + [aux_sym_find_statement_token1] = ACTIONS(301), + [aux_sym_assign_statement_token1] = ACTIONS(303), + [aux_sym_catch_statement_token1] = ACTIONS(305), + [aux_sym_finally_statement_token1] = ACTIONS(307), + [aux_sym_accumulate_statement_token1] = ACTIONS(309), + [anon_sym_ROUTINE_DASHLEVEL] = ACTIONS(311), + [anon_sym_BLOCK_DASHLEVEL] = ACTIONS(311), }, [80] = { - [sym_body] = STATE(3646), + [sym_body] = STATE(3787), [sym_comment] = STATE(80), - [sym_qualified_name] = STATE(4733), - [sym__block_terminator] = STATE(3367), + [sym_qualified_name] = STATE(4814), + [sym__block_terminator] = STATE(1129), [sym_include] = STATE(80), - [sym_assignment] = STATE(4314), - [sym_variable_definition] = STATE(1535), - [sym_variable_assignment] = STATE(1535), - [sym_buffer_definition] = STATE(1535), - [sym_query_definition] = STATE(1535), - [sym_function_call_statement] = STATE(1535), - [sym_function_call] = STATE(4086), - [sym_if_statement] = STATE(1535), - [sym_label] = STATE(1536), - [sym_repeat_statement] = STATE(1535), - [sym_procedure_statement] = STATE(1535), - [sym_procedure_parameter_definition] = STATE(1535), - [sym_function_statement] = STATE(1535), - [sym_return_statement] = STATE(1535), - [sym_interface_statement] = STATE(1535), - [sym_using_statement] = STATE(1535), - [sym_class_statement] = STATE(1535), - [sym_object_access] = STATE(3567), - [sym_stream_definition] = STATE(1535), - [sym_input_close_statement] = STATE(1535), - [sym_output_close_statement] = STATE(1535), - [sym__stream_statement] = STATE(1535), - [sym_input_stream_statement] = STATE(1537), - [sym_output_stream_statement] = STATE(1537), - [sym_do_block] = STATE(1535), - [sym_case_statement] = STATE(1535), - [sym_for_statement] = STATE(1535), - [sym_find_statement] = STATE(1535), - [sym_abl_statement] = STATE(1535), - [sym_assign_statement] = STATE(1535), - [sym_catch_statement] = STATE(1535), - [sym_finally_statement] = STATE(1535), - [sym_accumulate_statement] = STATE(1535), - [sym_undo_statement] = STATE(1535), - [sym_error_scope_statement] = STATE(1535), - [sym_temp_table_definition] = STATE(1535), - [sym_on_statement] = STATE(1535), - [sym__statement] = STATE(1538), - [aux_sym_source_code_repeat1] = STATE(276), - [sym_identifier] = ACTIONS(227), + [sym_assignment] = STATE(4463), + [sym_variable_definition] = STATE(1550), + [sym_variable_assignment] = STATE(1550), + [sym_buffer_definition] = STATE(1550), + [sym_query_definition] = STATE(1550), + [sym_function_call_statement] = STATE(1550), + [sym_function_call] = STATE(4558), + [sym_if_statement] = STATE(1550), + [sym_label] = STATE(1551), + [sym_repeat_statement] = STATE(1550), + [sym_procedure_statement] = STATE(1550), + [sym_procedure_parameter_definition] = STATE(1550), + [sym_function_statement] = STATE(1550), + [sym_return_statement] = STATE(1550), + [sym_interface_statement] = STATE(1550), + [sym_using_statement] = STATE(1550), + [sym_class_statement] = STATE(1550), + [sym_object_access] = STATE(3661), + [sym_stream_definition] = STATE(1550), + [sym_input_close_statement] = STATE(1550), + [sym_output_close_statement] = STATE(1550), + [sym__stream_statement] = STATE(1550), + [sym_input_stream_statement] = STATE(1552), + [sym_output_stream_statement] = STATE(1552), + [sym_do_block] = STATE(1550), + [sym_case_statement] = STATE(1550), + [sym_for_statement] = STATE(1550), + [sym_find_statement] = STATE(1550), + [sym_abl_statement] = STATE(1550), + [sym_assign_statement] = STATE(1550), + [sym_catch_statement] = STATE(1550), + [sym_finally_statement] = STATE(1550), + [sym_accumulate_statement] = STATE(1550), + [sym_undo_statement] = STATE(1550), + [sym_error_scope_statement] = STATE(1550), + [sym_temp_table_definition] = STATE(1550), + [sym_on_statement] = STATE(1550), + [sym__statement] = STATE(1553), + [aux_sym_source_code_repeat1] = STATE(286), + [sym_identifier] = ACTIONS(263), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), [anon_sym_LBRACE] = ACTIONS(7), - [aux_sym__block_terminator_token1] = ACTIONS(297), - [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), + [aux_sym__block_terminator_token1] = ACTIONS(323), + [aux_sym_input_expression_token1] = ACTIONS(267), + [aux_sym_primitive_type_token19] = ACTIONS(269), + [aux_sym_variable_definition_token1] = ACTIONS(271), + [aux_sym_variable_definition_token2] = ACTIONS(273), + [aux_sym_buffer_definition_token2] = ACTIONS(275), + [aux_sym_argument_mode_token1] = ACTIONS(277), + [aux_sym_if_statement_token1] = ACTIONS(279), + [aux_sym_repeat_statement_token1] = ACTIONS(281), + [aux_sym__procedure_terminator_token1] = ACTIONS(283), + [aux_sym_procedure_parameter_definition_token1] = ACTIONS(285), + [aux_sym__function_terminator_token1] = ACTIONS(287), + [aux_sym_interface_statement_token1] = ACTIONS(289), + [aux_sym_using_statement_token1] = ACTIONS(291), + [aux_sym_on_error_phrase_token1] = ACTIONS(293), + [aux_sym_on_error_phrase_token3] = ACTIONS(295), + [aux_sym_do_block_token1] = ACTIONS(297), + [aux_sym__case_terminator_token1] = ACTIONS(299), + [aux_sym_find_statement_token1] = ACTIONS(301), + [aux_sym_assign_statement_token1] = ACTIONS(303), + [aux_sym_catch_statement_token1] = ACTIONS(305), + [aux_sym_finally_statement_token1] = ACTIONS(307), + [aux_sym_accumulate_statement_token1] = ACTIONS(309), + [anon_sym_ROUTINE_DASHLEVEL] = ACTIONS(311), + [anon_sym_BLOCK_DASHLEVEL] = ACTIONS(311), }, [81] = { - [sym_body] = STATE(3574), + [sym_body] = STATE(3791), [sym_comment] = STATE(81), - [sym_qualified_name] = STATE(4733), - [sym__block_terminator] = STATE(1100), + [sym_qualified_name] = STATE(4814), + [sym__block_terminator] = STATE(1130), [sym_include] = STATE(81), - [sym_assignment] = STATE(4314), - [sym_variable_definition] = STATE(1535), - [sym_variable_assignment] = STATE(1535), - [sym_buffer_definition] = STATE(1535), - [sym_query_definition] = STATE(1535), - [sym_function_call_statement] = STATE(1535), - [sym_function_call] = STATE(4086), - [sym_if_statement] = STATE(1535), - [sym_label] = STATE(1536), - [sym_repeat_statement] = STATE(1535), - [sym_procedure_statement] = STATE(1535), - [sym_procedure_parameter_definition] = STATE(1535), - [sym_function_statement] = STATE(1535), - [sym_return_statement] = STATE(1535), - [sym_interface_statement] = STATE(1535), - [sym_using_statement] = STATE(1535), - [sym_class_statement] = STATE(1535), - [sym_object_access] = STATE(3567), - [sym_stream_definition] = STATE(1535), - [sym_input_close_statement] = STATE(1535), - [sym_output_close_statement] = STATE(1535), - [sym__stream_statement] = STATE(1535), - [sym_input_stream_statement] = STATE(1537), - [sym_output_stream_statement] = STATE(1537), - [sym_do_block] = STATE(1535), - [sym_case_statement] = STATE(1535), - [sym_for_statement] = STATE(1535), - [sym_find_statement] = STATE(1535), - [sym_abl_statement] = STATE(1535), - [sym_assign_statement] = STATE(1535), - [sym_catch_statement] = STATE(1535), - [sym_finally_statement] = STATE(1535), - [sym_accumulate_statement] = STATE(1535), - [sym_undo_statement] = STATE(1535), - [sym_error_scope_statement] = STATE(1535), - [sym_temp_table_definition] = STATE(1535), - [sym_on_statement] = STATE(1535), - [sym__statement] = STATE(1538), - [aux_sym_source_code_repeat1] = STATE(276), - [sym_identifier] = ACTIONS(227), + [sym_assignment] = STATE(4463), + [sym_variable_definition] = STATE(1550), + [sym_variable_assignment] = STATE(1550), + [sym_buffer_definition] = STATE(1550), + [sym_query_definition] = STATE(1550), + [sym_function_call_statement] = STATE(1550), + [sym_function_call] = STATE(4558), + [sym_if_statement] = STATE(1550), + [sym_label] = STATE(1551), + [sym_repeat_statement] = STATE(1550), + [sym_procedure_statement] = STATE(1550), + [sym_procedure_parameter_definition] = STATE(1550), + [sym_function_statement] = STATE(1550), + [sym_return_statement] = STATE(1550), + [sym_interface_statement] = STATE(1550), + [sym_using_statement] = STATE(1550), + [sym_class_statement] = STATE(1550), + [sym_object_access] = STATE(3661), + [sym_stream_definition] = STATE(1550), + [sym_input_close_statement] = STATE(1550), + [sym_output_close_statement] = STATE(1550), + [sym__stream_statement] = STATE(1550), + [sym_input_stream_statement] = STATE(1552), + [sym_output_stream_statement] = STATE(1552), + [sym_do_block] = STATE(1550), + [sym_case_statement] = STATE(1550), + [sym_for_statement] = STATE(1550), + [sym_find_statement] = STATE(1550), + [sym_abl_statement] = STATE(1550), + [sym_assign_statement] = STATE(1550), + [sym_catch_statement] = STATE(1550), + [sym_finally_statement] = STATE(1550), + [sym_accumulate_statement] = STATE(1550), + [sym_undo_statement] = STATE(1550), + [sym_error_scope_statement] = STATE(1550), + [sym_temp_table_definition] = STATE(1550), + [sym_on_statement] = STATE(1550), + [sym__statement] = STATE(1553), + [aux_sym_source_code_repeat1] = STATE(286), + [sym_identifier] = ACTIONS(263), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), [anon_sym_LBRACE] = ACTIONS(7), - [aux_sym__block_terminator_token1] = ACTIONS(301), - [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), + [aux_sym__block_terminator_token1] = ACTIONS(323), + [aux_sym_input_expression_token1] = ACTIONS(267), + [aux_sym_primitive_type_token19] = ACTIONS(269), + [aux_sym_variable_definition_token1] = ACTIONS(271), + [aux_sym_variable_definition_token2] = ACTIONS(273), + [aux_sym_buffer_definition_token2] = ACTIONS(275), + [aux_sym_argument_mode_token1] = ACTIONS(277), + [aux_sym_if_statement_token1] = ACTIONS(279), + [aux_sym_repeat_statement_token1] = ACTIONS(281), + [aux_sym__procedure_terminator_token1] = ACTIONS(283), + [aux_sym_procedure_parameter_definition_token1] = ACTIONS(285), + [aux_sym__function_terminator_token1] = ACTIONS(287), + [aux_sym_interface_statement_token1] = ACTIONS(289), + [aux_sym_using_statement_token1] = ACTIONS(291), + [aux_sym_on_error_phrase_token1] = ACTIONS(293), + [aux_sym_on_error_phrase_token3] = ACTIONS(295), + [aux_sym_do_block_token1] = ACTIONS(297), + [aux_sym__case_terminator_token1] = ACTIONS(299), + [aux_sym_find_statement_token1] = ACTIONS(301), + [aux_sym_assign_statement_token1] = ACTIONS(303), + [aux_sym_catch_statement_token1] = ACTIONS(305), + [aux_sym_finally_statement_token1] = ACTIONS(307), + [aux_sym_accumulate_statement_token1] = ACTIONS(309), + [anon_sym_ROUTINE_DASHLEVEL] = ACTIONS(311), + [anon_sym_BLOCK_DASHLEVEL] = ACTIONS(311), }, [82] = { - [sym_body] = STATE(3602), + [sym_body] = STATE(3803), [sym_comment] = STATE(82), - [sym_qualified_name] = STATE(4733), - [sym__block_terminator] = STATE(1121), + [sym_qualified_name] = STATE(4814), + [sym__block_terminator] = STATE(1120), [sym_include] = STATE(82), - [sym_assignment] = STATE(4314), - [sym_variable_definition] = STATE(1535), - [sym_variable_assignment] = STATE(1535), - [sym_buffer_definition] = STATE(1535), - [sym_query_definition] = STATE(1535), - [sym_function_call_statement] = STATE(1535), - [sym_function_call] = STATE(4086), - [sym_if_statement] = STATE(1535), - [sym_label] = STATE(1536), - [sym_repeat_statement] = STATE(1535), - [sym_procedure_statement] = STATE(1535), - [sym_procedure_parameter_definition] = STATE(1535), - [sym_function_statement] = STATE(1535), - [sym_return_statement] = STATE(1535), - [sym_interface_statement] = STATE(1535), - [sym_using_statement] = STATE(1535), - [sym_class_statement] = STATE(1535), - [sym_object_access] = STATE(3567), - [sym_stream_definition] = STATE(1535), - [sym_input_close_statement] = STATE(1535), - [sym_output_close_statement] = STATE(1535), - [sym__stream_statement] = STATE(1535), - [sym_input_stream_statement] = STATE(1537), - [sym_output_stream_statement] = STATE(1537), - [sym_do_block] = STATE(1535), - [sym_case_statement] = STATE(1535), - [sym_for_statement] = STATE(1535), - [sym_find_statement] = STATE(1535), - [sym_abl_statement] = STATE(1535), - [sym_assign_statement] = STATE(1535), - [sym_catch_statement] = STATE(1535), - [sym_finally_statement] = STATE(1535), - [sym_accumulate_statement] = STATE(1535), - [sym_undo_statement] = STATE(1535), - [sym_error_scope_statement] = STATE(1535), - [sym_temp_table_definition] = STATE(1535), - [sym_on_statement] = STATE(1535), - [sym__statement] = STATE(1538), - [aux_sym_source_code_repeat1] = STATE(276), - [sym_identifier] = ACTIONS(227), + [sym_assignment] = STATE(4463), + [sym_variable_definition] = STATE(1550), + [sym_variable_assignment] = STATE(1550), + [sym_buffer_definition] = STATE(1550), + [sym_query_definition] = STATE(1550), + [sym_function_call_statement] = STATE(1550), + [sym_function_call] = STATE(4558), + [sym_if_statement] = STATE(1550), + [sym_label] = STATE(1551), + [sym_repeat_statement] = STATE(1550), + [sym_procedure_statement] = STATE(1550), + [sym_procedure_parameter_definition] = STATE(1550), + [sym_function_statement] = STATE(1550), + [sym_return_statement] = STATE(1550), + [sym_interface_statement] = STATE(1550), + [sym_using_statement] = STATE(1550), + [sym_class_statement] = STATE(1550), + [sym_object_access] = STATE(3661), + [sym_stream_definition] = STATE(1550), + [sym_input_close_statement] = STATE(1550), + [sym_output_close_statement] = STATE(1550), + [sym__stream_statement] = STATE(1550), + [sym_input_stream_statement] = STATE(1552), + [sym_output_stream_statement] = STATE(1552), + [sym_do_block] = STATE(1550), + [sym_case_statement] = STATE(1550), + [sym_for_statement] = STATE(1550), + [sym_find_statement] = STATE(1550), + [sym_abl_statement] = STATE(1550), + [sym_assign_statement] = STATE(1550), + [sym_catch_statement] = STATE(1550), + [sym_finally_statement] = STATE(1550), + [sym_accumulate_statement] = STATE(1550), + [sym_undo_statement] = STATE(1550), + [sym_error_scope_statement] = STATE(1550), + [sym_temp_table_definition] = STATE(1550), + [sym_on_statement] = STATE(1550), + [sym__statement] = STATE(1553), + [aux_sym_source_code_repeat1] = STATE(286), + [sym_identifier] = ACTIONS(263), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), [anon_sym_LBRACE] = ACTIONS(7), - [aux_sym__block_terminator_token1] = ACTIONS(301), - [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), + [aux_sym__block_terminator_token1] = ACTIONS(323), + [aux_sym_input_expression_token1] = ACTIONS(267), + [aux_sym_primitive_type_token19] = ACTIONS(269), + [aux_sym_variable_definition_token1] = ACTIONS(271), + [aux_sym_variable_definition_token2] = ACTIONS(273), + [aux_sym_buffer_definition_token2] = ACTIONS(275), + [aux_sym_argument_mode_token1] = ACTIONS(277), + [aux_sym_if_statement_token1] = ACTIONS(279), + [aux_sym_repeat_statement_token1] = ACTIONS(281), + [aux_sym__procedure_terminator_token1] = ACTIONS(283), + [aux_sym_procedure_parameter_definition_token1] = ACTIONS(285), + [aux_sym__function_terminator_token1] = ACTIONS(287), + [aux_sym_interface_statement_token1] = ACTIONS(289), + [aux_sym_using_statement_token1] = ACTIONS(291), + [aux_sym_on_error_phrase_token1] = ACTIONS(293), + [aux_sym_on_error_phrase_token3] = ACTIONS(295), + [aux_sym_do_block_token1] = ACTIONS(297), + [aux_sym__case_terminator_token1] = ACTIONS(299), + [aux_sym_find_statement_token1] = ACTIONS(301), + [aux_sym_assign_statement_token1] = ACTIONS(303), + [aux_sym_catch_statement_token1] = ACTIONS(305), + [aux_sym_finally_statement_token1] = ACTIONS(307), + [aux_sym_accumulate_statement_token1] = ACTIONS(309), + [anon_sym_ROUTINE_DASHLEVEL] = ACTIONS(311), + [anon_sym_BLOCK_DASHLEVEL] = ACTIONS(311), }, [83] = { - [sym_body] = STATE(3573), + [sym_body] = STATE(3805), [sym_comment] = STATE(83), - [sym_qualified_name] = STATE(4733), - [sym__block_terminator] = STATE(1095), + [sym_qualified_name] = STATE(4814), + [sym__block_terminator] = STATE(881), [sym_include] = STATE(83), - [sym_assignment] = STATE(4314), - [sym_variable_definition] = STATE(1535), - [sym_variable_assignment] = STATE(1535), - [sym_buffer_definition] = STATE(1535), - [sym_query_definition] = STATE(1535), - [sym_function_call_statement] = STATE(1535), - [sym_function_call] = STATE(4086), - [sym_if_statement] = STATE(1535), - [sym_label] = STATE(1536), - [sym_repeat_statement] = STATE(1535), - [sym_procedure_statement] = STATE(1535), - [sym_procedure_parameter_definition] = STATE(1535), - [sym_function_statement] = STATE(1535), - [sym_return_statement] = STATE(1535), - [sym_interface_statement] = STATE(1535), - [sym_using_statement] = STATE(1535), - [sym_class_statement] = STATE(1535), - [sym_object_access] = STATE(3567), - [sym_stream_definition] = STATE(1535), - [sym_input_close_statement] = STATE(1535), - [sym_output_close_statement] = STATE(1535), - [sym__stream_statement] = STATE(1535), - [sym_input_stream_statement] = STATE(1537), - [sym_output_stream_statement] = STATE(1537), - [sym_do_block] = STATE(1535), - [sym_case_statement] = STATE(1535), - [sym_for_statement] = STATE(1535), - [sym_find_statement] = STATE(1535), - [sym_abl_statement] = STATE(1535), - [sym_assign_statement] = STATE(1535), - [sym_catch_statement] = STATE(1535), - [sym_finally_statement] = STATE(1535), - [sym_accumulate_statement] = STATE(1535), - [sym_undo_statement] = STATE(1535), - [sym_error_scope_statement] = STATE(1535), - [sym_temp_table_definition] = STATE(1535), - [sym_on_statement] = STATE(1535), - [sym__statement] = STATE(1538), - [aux_sym_source_code_repeat1] = STATE(276), - [sym_identifier] = ACTIONS(227), + [sym_assignment] = STATE(4463), + [sym_variable_definition] = STATE(1550), + [sym_variable_assignment] = STATE(1550), + [sym_buffer_definition] = STATE(1550), + [sym_query_definition] = STATE(1550), + [sym_function_call_statement] = STATE(1550), + [sym_function_call] = STATE(4558), + [sym_if_statement] = STATE(1550), + [sym_label] = STATE(1551), + [sym_repeat_statement] = STATE(1550), + [sym_procedure_statement] = STATE(1550), + [sym_procedure_parameter_definition] = STATE(1550), + [sym_function_statement] = STATE(1550), + [sym_return_statement] = STATE(1550), + [sym_interface_statement] = STATE(1550), + [sym_using_statement] = STATE(1550), + [sym_class_statement] = STATE(1550), + [sym_object_access] = STATE(3661), + [sym_stream_definition] = STATE(1550), + [sym_input_close_statement] = STATE(1550), + [sym_output_close_statement] = STATE(1550), + [sym__stream_statement] = STATE(1550), + [sym_input_stream_statement] = STATE(1552), + [sym_output_stream_statement] = STATE(1552), + [sym_do_block] = STATE(1550), + [sym_case_statement] = STATE(1550), + [sym_for_statement] = STATE(1550), + [sym_find_statement] = STATE(1550), + [sym_abl_statement] = STATE(1550), + [sym_assign_statement] = STATE(1550), + [sym_catch_statement] = STATE(1550), + [sym_finally_statement] = STATE(1550), + [sym_accumulate_statement] = STATE(1550), + [sym_undo_statement] = STATE(1550), + [sym_error_scope_statement] = STATE(1550), + [sym_temp_table_definition] = STATE(1550), + [sym_on_statement] = STATE(1550), + [sym__statement] = STATE(1553), + [aux_sym_source_code_repeat1] = STATE(286), + [sym_identifier] = ACTIONS(263), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), [anon_sym_LBRACE] = ACTIONS(7), - [aux_sym__block_terminator_token1] = ACTIONS(301), - [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), + [aux_sym__block_terminator_token1] = ACTIONS(323), + [aux_sym_input_expression_token1] = ACTIONS(267), + [aux_sym_primitive_type_token19] = ACTIONS(269), + [aux_sym_variable_definition_token1] = ACTIONS(271), + [aux_sym_variable_definition_token2] = ACTIONS(273), + [aux_sym_buffer_definition_token2] = ACTIONS(275), + [aux_sym_argument_mode_token1] = ACTIONS(277), + [aux_sym_if_statement_token1] = ACTIONS(279), + [aux_sym_repeat_statement_token1] = ACTIONS(281), + [aux_sym__procedure_terminator_token1] = ACTIONS(283), + [aux_sym_procedure_parameter_definition_token1] = ACTIONS(285), + [aux_sym__function_terminator_token1] = ACTIONS(287), + [aux_sym_interface_statement_token1] = ACTIONS(289), + [aux_sym_using_statement_token1] = ACTIONS(291), + [aux_sym_on_error_phrase_token1] = ACTIONS(293), + [aux_sym_on_error_phrase_token3] = ACTIONS(295), + [aux_sym_do_block_token1] = ACTIONS(297), + [aux_sym__case_terminator_token1] = ACTIONS(299), + [aux_sym_find_statement_token1] = ACTIONS(301), + [aux_sym_assign_statement_token1] = ACTIONS(303), + [aux_sym_catch_statement_token1] = ACTIONS(305), + [aux_sym_finally_statement_token1] = ACTIONS(307), + [aux_sym_accumulate_statement_token1] = ACTIONS(309), + [anon_sym_ROUTINE_DASHLEVEL] = ACTIONS(311), + [anon_sym_BLOCK_DASHLEVEL] = ACTIONS(311), }, [84] = { - [sym_body] = STATE(3571), + [sym_body] = STATE(3809), [sym_comment] = STATE(84), - [sym_qualified_name] = STATE(4733), - [sym__block_terminator] = STATE(1094), + [sym_qualified_name] = STATE(4814), + [sym__block_terminator] = STATE(872), [sym_include] = STATE(84), - [sym_assignment] = STATE(4314), - [sym_variable_definition] = STATE(1535), - [sym_variable_assignment] = STATE(1535), - [sym_buffer_definition] = STATE(1535), - [sym_query_definition] = STATE(1535), - [sym_function_call_statement] = STATE(1535), - [sym_function_call] = STATE(4086), - [sym_if_statement] = STATE(1535), - [sym_label] = STATE(1536), - [sym_repeat_statement] = STATE(1535), - [sym_procedure_statement] = STATE(1535), - [sym_procedure_parameter_definition] = STATE(1535), - [sym_function_statement] = STATE(1535), - [sym_return_statement] = STATE(1535), - [sym_interface_statement] = STATE(1535), - [sym_using_statement] = STATE(1535), - [sym_class_statement] = STATE(1535), - [sym_object_access] = STATE(3567), - [sym_stream_definition] = STATE(1535), - [sym_input_close_statement] = STATE(1535), - [sym_output_close_statement] = STATE(1535), - [sym__stream_statement] = STATE(1535), - [sym_input_stream_statement] = STATE(1537), - [sym_output_stream_statement] = STATE(1537), - [sym_do_block] = STATE(1535), - [sym_case_statement] = STATE(1535), - [sym_for_statement] = STATE(1535), - [sym_find_statement] = STATE(1535), - [sym_abl_statement] = STATE(1535), - [sym_assign_statement] = STATE(1535), - [sym_catch_statement] = STATE(1535), - [sym_finally_statement] = STATE(1535), - [sym_accumulate_statement] = STATE(1535), - [sym_undo_statement] = STATE(1535), - [sym_error_scope_statement] = STATE(1535), - [sym_temp_table_definition] = STATE(1535), - [sym_on_statement] = STATE(1535), - [sym__statement] = STATE(1538), - [aux_sym_source_code_repeat1] = STATE(276), - [sym_identifier] = ACTIONS(227), + [sym_assignment] = STATE(4463), + [sym_variable_definition] = STATE(1550), + [sym_variable_assignment] = STATE(1550), + [sym_buffer_definition] = STATE(1550), + [sym_query_definition] = STATE(1550), + [sym_function_call_statement] = STATE(1550), + [sym_function_call] = STATE(4558), + [sym_if_statement] = STATE(1550), + [sym_label] = STATE(1551), + [sym_repeat_statement] = STATE(1550), + [sym_procedure_statement] = STATE(1550), + [sym_procedure_parameter_definition] = STATE(1550), + [sym_function_statement] = STATE(1550), + [sym_return_statement] = STATE(1550), + [sym_interface_statement] = STATE(1550), + [sym_using_statement] = STATE(1550), + [sym_class_statement] = STATE(1550), + [sym_object_access] = STATE(3661), + [sym_stream_definition] = STATE(1550), + [sym_input_close_statement] = STATE(1550), + [sym_output_close_statement] = STATE(1550), + [sym__stream_statement] = STATE(1550), + [sym_input_stream_statement] = STATE(1552), + [sym_output_stream_statement] = STATE(1552), + [sym_do_block] = STATE(1550), + [sym_case_statement] = STATE(1550), + [sym_for_statement] = STATE(1550), + [sym_find_statement] = STATE(1550), + [sym_abl_statement] = STATE(1550), + [sym_assign_statement] = STATE(1550), + [sym_catch_statement] = STATE(1550), + [sym_finally_statement] = STATE(1550), + [sym_accumulate_statement] = STATE(1550), + [sym_undo_statement] = STATE(1550), + [sym_error_scope_statement] = STATE(1550), + [sym_temp_table_definition] = STATE(1550), + [sym_on_statement] = STATE(1550), + [sym__statement] = STATE(1553), + [aux_sym_source_code_repeat1] = STATE(286), + [sym_identifier] = ACTIONS(263), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), [anon_sym_LBRACE] = ACTIONS(7), - [aux_sym__block_terminator_token1] = ACTIONS(301), - [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), + [aux_sym__block_terminator_token1] = ACTIONS(323), + [aux_sym_input_expression_token1] = ACTIONS(267), + [aux_sym_primitive_type_token19] = ACTIONS(269), + [aux_sym_variable_definition_token1] = ACTIONS(271), + [aux_sym_variable_definition_token2] = ACTIONS(273), + [aux_sym_buffer_definition_token2] = ACTIONS(275), + [aux_sym_argument_mode_token1] = ACTIONS(277), + [aux_sym_if_statement_token1] = ACTIONS(279), + [aux_sym_repeat_statement_token1] = ACTIONS(281), + [aux_sym__procedure_terminator_token1] = ACTIONS(283), + [aux_sym_procedure_parameter_definition_token1] = ACTIONS(285), + [aux_sym__function_terminator_token1] = ACTIONS(287), + [aux_sym_interface_statement_token1] = ACTIONS(289), + [aux_sym_using_statement_token1] = ACTIONS(291), + [aux_sym_on_error_phrase_token1] = ACTIONS(293), + [aux_sym_on_error_phrase_token3] = ACTIONS(295), + [aux_sym_do_block_token1] = ACTIONS(297), + [aux_sym__case_terminator_token1] = ACTIONS(299), + [aux_sym_find_statement_token1] = ACTIONS(301), + [aux_sym_assign_statement_token1] = ACTIONS(303), + [aux_sym_catch_statement_token1] = ACTIONS(305), + [aux_sym_finally_statement_token1] = ACTIONS(307), + [aux_sym_accumulate_statement_token1] = ACTIONS(309), + [anon_sym_ROUTINE_DASHLEVEL] = ACTIONS(311), + [anon_sym_BLOCK_DASHLEVEL] = ACTIONS(311), }, [85] = { - [sym_body] = STATE(3677), + [sym_body] = STATE(3810), [sym_comment] = STATE(85), - [sym_qualified_name] = STATE(4733), - [sym__block_terminator] = STATE(1420), + [sym_qualified_name] = STATE(4814), + [sym__block_terminator] = STATE(1034), [sym_include] = STATE(85), - [sym_assignment] = STATE(4314), - [sym_variable_definition] = STATE(1535), - [sym_variable_assignment] = STATE(1535), - [sym_buffer_definition] = STATE(1535), - [sym_query_definition] = STATE(1535), - [sym_function_call_statement] = STATE(1535), - [sym_function_call] = STATE(4086), - [sym_if_statement] = STATE(1535), - [sym_label] = STATE(1536), - [sym_repeat_statement] = STATE(1535), - [sym_procedure_statement] = STATE(1535), - [sym_procedure_parameter_definition] = STATE(1535), - [sym_function_statement] = STATE(1535), - [sym_return_statement] = STATE(1535), - [sym_interface_statement] = STATE(1535), - [sym_using_statement] = STATE(1535), - [sym_class_statement] = STATE(1535), - [sym_object_access] = STATE(3567), - [sym_stream_definition] = STATE(1535), - [sym_input_close_statement] = STATE(1535), - [sym_output_close_statement] = STATE(1535), - [sym__stream_statement] = STATE(1535), - [sym_input_stream_statement] = STATE(1537), - [sym_output_stream_statement] = STATE(1537), - [sym_do_block] = STATE(1535), - [sym_case_statement] = STATE(1535), - [sym_for_statement] = STATE(1535), - [sym_find_statement] = STATE(1535), - [sym_abl_statement] = STATE(1535), - [sym_assign_statement] = STATE(1535), - [sym_catch_statement] = STATE(1535), - [sym_finally_statement] = STATE(1535), - [sym_accumulate_statement] = STATE(1535), - [sym_undo_statement] = STATE(1535), - [sym_error_scope_statement] = STATE(1535), - [sym_temp_table_definition] = STATE(1535), - [sym_on_statement] = STATE(1535), - [sym__statement] = STATE(1538), - [aux_sym_source_code_repeat1] = STATE(276), - [sym_identifier] = ACTIONS(227), + [sym_assignment] = STATE(4463), + [sym_variable_definition] = STATE(1550), + [sym_variable_assignment] = STATE(1550), + [sym_buffer_definition] = STATE(1550), + [sym_query_definition] = STATE(1550), + [sym_function_call_statement] = STATE(1550), + [sym_function_call] = STATE(4558), + [sym_if_statement] = STATE(1550), + [sym_label] = STATE(1551), + [sym_repeat_statement] = STATE(1550), + [sym_procedure_statement] = STATE(1550), + [sym_procedure_parameter_definition] = STATE(1550), + [sym_function_statement] = STATE(1550), + [sym_return_statement] = STATE(1550), + [sym_interface_statement] = STATE(1550), + [sym_using_statement] = STATE(1550), + [sym_class_statement] = STATE(1550), + [sym_object_access] = STATE(3661), + [sym_stream_definition] = STATE(1550), + [sym_input_close_statement] = STATE(1550), + [sym_output_close_statement] = STATE(1550), + [sym__stream_statement] = STATE(1550), + [sym_input_stream_statement] = STATE(1552), + [sym_output_stream_statement] = STATE(1552), + [sym_do_block] = STATE(1550), + [sym_case_statement] = STATE(1550), + [sym_for_statement] = STATE(1550), + [sym_find_statement] = STATE(1550), + [sym_abl_statement] = STATE(1550), + [sym_assign_statement] = STATE(1550), + [sym_catch_statement] = STATE(1550), + [sym_finally_statement] = STATE(1550), + [sym_accumulate_statement] = STATE(1550), + [sym_undo_statement] = STATE(1550), + [sym_error_scope_statement] = STATE(1550), + [sym_temp_table_definition] = STATE(1550), + [sym_on_statement] = STATE(1550), + [sym__statement] = STATE(1553), + [aux_sym_source_code_repeat1] = STATE(286), + [sym_identifier] = ACTIONS(263), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), [anon_sym_LBRACE] = ACTIONS(7), - [aux_sym__block_terminator_token1] = ACTIONS(299), - [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), + [aux_sym__block_terminator_token1] = ACTIONS(323), + [aux_sym_input_expression_token1] = ACTIONS(267), + [aux_sym_primitive_type_token19] = ACTIONS(269), + [aux_sym_variable_definition_token1] = ACTIONS(271), + [aux_sym_variable_definition_token2] = ACTIONS(273), + [aux_sym_buffer_definition_token2] = ACTIONS(275), + [aux_sym_argument_mode_token1] = ACTIONS(277), + [aux_sym_if_statement_token1] = ACTIONS(279), + [aux_sym_repeat_statement_token1] = ACTIONS(281), + [aux_sym__procedure_terminator_token1] = ACTIONS(283), + [aux_sym_procedure_parameter_definition_token1] = ACTIONS(285), + [aux_sym__function_terminator_token1] = ACTIONS(287), + [aux_sym_interface_statement_token1] = ACTIONS(289), + [aux_sym_using_statement_token1] = ACTIONS(291), + [aux_sym_on_error_phrase_token1] = ACTIONS(293), + [aux_sym_on_error_phrase_token3] = ACTIONS(295), + [aux_sym_do_block_token1] = ACTIONS(297), + [aux_sym__case_terminator_token1] = ACTIONS(299), + [aux_sym_find_statement_token1] = ACTIONS(301), + [aux_sym_assign_statement_token1] = ACTIONS(303), + [aux_sym_catch_statement_token1] = ACTIONS(305), + [aux_sym_finally_statement_token1] = ACTIONS(307), + [aux_sym_accumulate_statement_token1] = ACTIONS(309), + [anon_sym_ROUTINE_DASHLEVEL] = ACTIONS(311), + [anon_sym_BLOCK_DASHLEVEL] = ACTIONS(311), }, [86] = { - [sym_body] = STATE(3585), + [sym_body] = STATE(3814), [sym_comment] = STATE(86), - [sym_qualified_name] = STATE(4733), - [sym__block_terminator] = STATE(1107), + [sym_qualified_name] = STATE(4814), + [sym__block_terminator] = STATE(1000), [sym_include] = STATE(86), - [sym_assignment] = STATE(4314), - [sym_variable_definition] = STATE(1535), - [sym_variable_assignment] = STATE(1535), - [sym_buffer_definition] = STATE(1535), - [sym_query_definition] = STATE(1535), - [sym_function_call_statement] = STATE(1535), - [sym_function_call] = STATE(4086), - [sym_if_statement] = STATE(1535), - [sym_label] = STATE(1536), - [sym_repeat_statement] = STATE(1535), - [sym_procedure_statement] = STATE(1535), - [sym_procedure_parameter_definition] = STATE(1535), - [sym_function_statement] = STATE(1535), - [sym_return_statement] = STATE(1535), - [sym_interface_statement] = STATE(1535), - [sym_using_statement] = STATE(1535), - [sym_class_statement] = STATE(1535), - [sym_object_access] = STATE(3567), - [sym_stream_definition] = STATE(1535), - [sym_input_close_statement] = STATE(1535), - [sym_output_close_statement] = STATE(1535), - [sym__stream_statement] = STATE(1535), - [sym_input_stream_statement] = STATE(1537), - [sym_output_stream_statement] = STATE(1537), - [sym_do_block] = STATE(1535), - [sym_case_statement] = STATE(1535), - [sym_for_statement] = STATE(1535), - [sym_find_statement] = STATE(1535), - [sym_abl_statement] = STATE(1535), - [sym_assign_statement] = STATE(1535), - [sym_catch_statement] = STATE(1535), - [sym_finally_statement] = STATE(1535), - [sym_accumulate_statement] = STATE(1535), - [sym_undo_statement] = STATE(1535), - [sym_error_scope_statement] = STATE(1535), - [sym_temp_table_definition] = STATE(1535), - [sym_on_statement] = STATE(1535), - [sym__statement] = STATE(1538), - [aux_sym_source_code_repeat1] = STATE(276), - [sym_identifier] = ACTIONS(227), + [sym_assignment] = STATE(4463), + [sym_variable_definition] = STATE(1550), + [sym_variable_assignment] = STATE(1550), + [sym_buffer_definition] = STATE(1550), + [sym_query_definition] = STATE(1550), + [sym_function_call_statement] = STATE(1550), + [sym_function_call] = STATE(4558), + [sym_if_statement] = STATE(1550), + [sym_label] = STATE(1551), + [sym_repeat_statement] = STATE(1550), + [sym_procedure_statement] = STATE(1550), + [sym_procedure_parameter_definition] = STATE(1550), + [sym_function_statement] = STATE(1550), + [sym_return_statement] = STATE(1550), + [sym_interface_statement] = STATE(1550), + [sym_using_statement] = STATE(1550), + [sym_class_statement] = STATE(1550), + [sym_object_access] = STATE(3661), + [sym_stream_definition] = STATE(1550), + [sym_input_close_statement] = STATE(1550), + [sym_output_close_statement] = STATE(1550), + [sym__stream_statement] = STATE(1550), + [sym_input_stream_statement] = STATE(1552), + [sym_output_stream_statement] = STATE(1552), + [sym_do_block] = STATE(1550), + [sym_case_statement] = STATE(1550), + [sym_for_statement] = STATE(1550), + [sym_find_statement] = STATE(1550), + [sym_abl_statement] = STATE(1550), + [sym_assign_statement] = STATE(1550), + [sym_catch_statement] = STATE(1550), + [sym_finally_statement] = STATE(1550), + [sym_accumulate_statement] = STATE(1550), + [sym_undo_statement] = STATE(1550), + [sym_error_scope_statement] = STATE(1550), + [sym_temp_table_definition] = STATE(1550), + [sym_on_statement] = STATE(1550), + [sym__statement] = STATE(1553), + [aux_sym_source_code_repeat1] = STATE(286), + [sym_identifier] = ACTIONS(263), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), [anon_sym_LBRACE] = ACTIONS(7), - [aux_sym__block_terminator_token1] = ACTIONS(301), - [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), + [aux_sym__block_terminator_token1] = ACTIONS(323), + [aux_sym_input_expression_token1] = ACTIONS(267), + [aux_sym_primitive_type_token19] = ACTIONS(269), + [aux_sym_variable_definition_token1] = ACTIONS(271), + [aux_sym_variable_definition_token2] = ACTIONS(273), + [aux_sym_buffer_definition_token2] = ACTIONS(275), + [aux_sym_argument_mode_token1] = ACTIONS(277), + [aux_sym_if_statement_token1] = ACTIONS(279), + [aux_sym_repeat_statement_token1] = ACTIONS(281), + [aux_sym__procedure_terminator_token1] = ACTIONS(283), + [aux_sym_procedure_parameter_definition_token1] = ACTIONS(285), + [aux_sym__function_terminator_token1] = ACTIONS(287), + [aux_sym_interface_statement_token1] = ACTIONS(289), + [aux_sym_using_statement_token1] = ACTIONS(291), + [aux_sym_on_error_phrase_token1] = ACTIONS(293), + [aux_sym_on_error_phrase_token3] = ACTIONS(295), + [aux_sym_do_block_token1] = ACTIONS(297), + [aux_sym__case_terminator_token1] = ACTIONS(299), + [aux_sym_find_statement_token1] = ACTIONS(301), + [aux_sym_assign_statement_token1] = ACTIONS(303), + [aux_sym_catch_statement_token1] = ACTIONS(305), + [aux_sym_finally_statement_token1] = ACTIONS(307), + [aux_sym_accumulate_statement_token1] = ACTIONS(309), + [anon_sym_ROUTINE_DASHLEVEL] = ACTIONS(311), + [anon_sym_BLOCK_DASHLEVEL] = ACTIONS(311), }, [87] = { - [sym_body] = STATE(4069), + [sym_body] = STATE(3923), [sym_comment] = STATE(87), - [sym_qualified_name] = STATE(4733), - [sym__block_terminator] = STATE(1327), + [sym_qualified_name] = STATE(4814), + [sym__block_terminator] = STATE(957), [sym_include] = STATE(87), - [sym_assignment] = STATE(4314), - [sym_variable_definition] = STATE(1535), - [sym_variable_assignment] = STATE(1535), - [sym_buffer_definition] = STATE(1535), - [sym_query_definition] = STATE(1535), - [sym_function_call_statement] = STATE(1535), - [sym_function_call] = STATE(4086), - [sym_if_statement] = STATE(1535), - [sym_label] = STATE(1536), - [sym_repeat_statement] = STATE(1535), - [sym_procedure_statement] = STATE(1535), - [sym_procedure_parameter_definition] = STATE(1535), - [sym_function_statement] = STATE(1535), - [sym_return_statement] = STATE(1535), - [sym_interface_statement] = STATE(1535), - [sym_using_statement] = STATE(1535), - [sym_class_statement] = STATE(1535), - [sym_object_access] = STATE(3567), - [sym_stream_definition] = STATE(1535), - [sym_input_close_statement] = STATE(1535), - [sym_output_close_statement] = STATE(1535), - [sym__stream_statement] = STATE(1535), - [sym_input_stream_statement] = STATE(1537), - [sym_output_stream_statement] = STATE(1537), - [sym_do_block] = STATE(1535), - [sym_case_statement] = STATE(1535), - [sym_for_statement] = STATE(1535), - [sym_find_statement] = STATE(1535), - [sym_abl_statement] = STATE(1535), - [sym_assign_statement] = STATE(1535), - [sym_catch_statement] = STATE(1535), - [sym_finally_statement] = STATE(1535), - [sym_accumulate_statement] = STATE(1535), - [sym_undo_statement] = STATE(1535), - [sym_error_scope_statement] = STATE(1535), - [sym_temp_table_definition] = STATE(1535), - [sym_on_statement] = STATE(1535), - [sym__statement] = STATE(1538), - [aux_sym_source_code_repeat1] = STATE(276), - [sym_identifier] = ACTIONS(227), + [sym_assignment] = STATE(4463), + [sym_variable_definition] = STATE(1550), + [sym_variable_assignment] = STATE(1550), + [sym_buffer_definition] = STATE(1550), + [sym_query_definition] = STATE(1550), + [sym_function_call_statement] = STATE(1550), + [sym_function_call] = STATE(4558), + [sym_if_statement] = STATE(1550), + [sym_label] = STATE(1551), + [sym_repeat_statement] = STATE(1550), + [sym_procedure_statement] = STATE(1550), + [sym_procedure_parameter_definition] = STATE(1550), + [sym_function_statement] = STATE(1550), + [sym_return_statement] = STATE(1550), + [sym_interface_statement] = STATE(1550), + [sym_using_statement] = STATE(1550), + [sym_class_statement] = STATE(1550), + [sym_object_access] = STATE(3661), + [sym_stream_definition] = STATE(1550), + [sym_input_close_statement] = STATE(1550), + [sym_output_close_statement] = STATE(1550), + [sym__stream_statement] = STATE(1550), + [sym_input_stream_statement] = STATE(1552), + [sym_output_stream_statement] = STATE(1552), + [sym_do_block] = STATE(1550), + [sym_case_statement] = STATE(1550), + [sym_for_statement] = STATE(1550), + [sym_find_statement] = STATE(1550), + [sym_abl_statement] = STATE(1550), + [sym_assign_statement] = STATE(1550), + [sym_catch_statement] = STATE(1550), + [sym_finally_statement] = STATE(1550), + [sym_accumulate_statement] = STATE(1550), + [sym_undo_statement] = STATE(1550), + [sym_error_scope_statement] = STATE(1550), + [sym_temp_table_definition] = STATE(1550), + [sym_on_statement] = STATE(1550), + [sym__statement] = STATE(1553), + [aux_sym_source_code_repeat1] = STATE(286), + [sym_identifier] = ACTIONS(263), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), [anon_sym_LBRACE] = ACTIONS(7), - [aux_sym__block_terminator_token1] = ACTIONS(299), - [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), + [aux_sym__block_terminator_token1] = ACTIONS(321), + [aux_sym_input_expression_token1] = ACTIONS(267), + [aux_sym_primitive_type_token19] = ACTIONS(269), + [aux_sym_variable_definition_token1] = ACTIONS(271), + [aux_sym_variable_definition_token2] = ACTIONS(273), + [aux_sym_buffer_definition_token2] = ACTIONS(275), + [aux_sym_argument_mode_token1] = ACTIONS(277), + [aux_sym_if_statement_token1] = ACTIONS(279), + [aux_sym_repeat_statement_token1] = ACTIONS(281), + [aux_sym__procedure_terminator_token1] = ACTIONS(283), + [aux_sym_procedure_parameter_definition_token1] = ACTIONS(285), + [aux_sym__function_terminator_token1] = ACTIONS(287), + [aux_sym_interface_statement_token1] = ACTIONS(289), + [aux_sym_using_statement_token1] = ACTIONS(291), + [aux_sym_on_error_phrase_token1] = ACTIONS(293), + [aux_sym_on_error_phrase_token3] = ACTIONS(295), + [aux_sym_do_block_token1] = ACTIONS(297), + [aux_sym__case_terminator_token1] = ACTIONS(299), + [aux_sym_find_statement_token1] = ACTIONS(301), + [aux_sym_assign_statement_token1] = ACTIONS(303), + [aux_sym_catch_statement_token1] = ACTIONS(305), + [aux_sym_finally_statement_token1] = ACTIONS(307), + [aux_sym_accumulate_statement_token1] = ACTIONS(309), + [anon_sym_ROUTINE_DASHLEVEL] = ACTIONS(311), + [anon_sym_BLOCK_DASHLEVEL] = ACTIONS(311), }, [88] = { - [sym_body] = STATE(3606), + [sym_body] = STATE(3823), [sym_comment] = STATE(88), - [sym_qualified_name] = STATE(4733), - [sym__block_terminator] = STATE(1069), + [sym_qualified_name] = STATE(4814), + [sym__block_terminator] = STATE(1085), [sym_include] = STATE(88), - [sym_assignment] = STATE(4314), - [sym_variable_definition] = STATE(1535), - [sym_variable_assignment] = STATE(1535), - [sym_buffer_definition] = STATE(1535), - [sym_query_definition] = STATE(1535), - [sym_function_call_statement] = STATE(1535), - [sym_function_call] = STATE(4086), - [sym_if_statement] = STATE(1535), - [sym_label] = STATE(1536), - [sym_repeat_statement] = STATE(1535), - [sym_procedure_statement] = STATE(1535), - [sym_procedure_parameter_definition] = STATE(1535), - [sym_function_statement] = STATE(1535), - [sym_return_statement] = STATE(1535), - [sym_interface_statement] = STATE(1535), - [sym_using_statement] = STATE(1535), - [sym_class_statement] = STATE(1535), - [sym_object_access] = STATE(3567), - [sym_stream_definition] = STATE(1535), - [sym_input_close_statement] = STATE(1535), - [sym_output_close_statement] = STATE(1535), - [sym__stream_statement] = STATE(1535), - [sym_input_stream_statement] = STATE(1537), - [sym_output_stream_statement] = STATE(1537), - [sym_do_block] = STATE(1535), - [sym_case_statement] = STATE(1535), - [sym_for_statement] = STATE(1535), - [sym_find_statement] = STATE(1535), - [sym_abl_statement] = STATE(1535), - [sym_assign_statement] = STATE(1535), - [sym_catch_statement] = STATE(1535), - [sym_finally_statement] = STATE(1535), - [sym_accumulate_statement] = STATE(1535), - [sym_undo_statement] = STATE(1535), - [sym_error_scope_statement] = STATE(1535), - [sym_temp_table_definition] = STATE(1535), - [sym_on_statement] = STATE(1535), - [sym__statement] = STATE(1538), - [aux_sym_source_code_repeat1] = STATE(276), - [sym_identifier] = ACTIONS(227), + [sym_assignment] = STATE(4463), + [sym_variable_definition] = STATE(1550), + [sym_variable_assignment] = STATE(1550), + [sym_buffer_definition] = STATE(1550), + [sym_query_definition] = STATE(1550), + [sym_function_call_statement] = STATE(1550), + [sym_function_call] = STATE(4558), + [sym_if_statement] = STATE(1550), + [sym_label] = STATE(1551), + [sym_repeat_statement] = STATE(1550), + [sym_procedure_statement] = STATE(1550), + [sym_procedure_parameter_definition] = STATE(1550), + [sym_function_statement] = STATE(1550), + [sym_return_statement] = STATE(1550), + [sym_interface_statement] = STATE(1550), + [sym_using_statement] = STATE(1550), + [sym_class_statement] = STATE(1550), + [sym_object_access] = STATE(3661), + [sym_stream_definition] = STATE(1550), + [sym_input_close_statement] = STATE(1550), + [sym_output_close_statement] = STATE(1550), + [sym__stream_statement] = STATE(1550), + [sym_input_stream_statement] = STATE(1552), + [sym_output_stream_statement] = STATE(1552), + [sym_do_block] = STATE(1550), + [sym_case_statement] = STATE(1550), + [sym_for_statement] = STATE(1550), + [sym_find_statement] = STATE(1550), + [sym_abl_statement] = STATE(1550), + [sym_assign_statement] = STATE(1550), + [sym_catch_statement] = STATE(1550), + [sym_finally_statement] = STATE(1550), + [sym_accumulate_statement] = STATE(1550), + [sym_undo_statement] = STATE(1550), + [sym_error_scope_statement] = STATE(1550), + [sym_temp_table_definition] = STATE(1550), + [sym_on_statement] = STATE(1550), + [sym__statement] = STATE(1553), + [aux_sym_source_code_repeat1] = STATE(286), + [sym_identifier] = ACTIONS(263), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), [anon_sym_LBRACE] = ACTIONS(7), - [aux_sym__block_terminator_token1] = ACTIONS(301), - [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), + [aux_sym__block_terminator_token1] = ACTIONS(323), + [aux_sym_input_expression_token1] = ACTIONS(267), + [aux_sym_primitive_type_token19] = ACTIONS(269), + [aux_sym_variable_definition_token1] = ACTIONS(271), + [aux_sym_variable_definition_token2] = ACTIONS(273), + [aux_sym_buffer_definition_token2] = ACTIONS(275), + [aux_sym_argument_mode_token1] = ACTIONS(277), + [aux_sym_if_statement_token1] = ACTIONS(279), + [aux_sym_repeat_statement_token1] = ACTIONS(281), + [aux_sym__procedure_terminator_token1] = ACTIONS(283), + [aux_sym_procedure_parameter_definition_token1] = ACTIONS(285), + [aux_sym__function_terminator_token1] = ACTIONS(287), + [aux_sym_interface_statement_token1] = ACTIONS(289), + [aux_sym_using_statement_token1] = ACTIONS(291), + [aux_sym_on_error_phrase_token1] = ACTIONS(293), + [aux_sym_on_error_phrase_token3] = ACTIONS(295), + [aux_sym_do_block_token1] = ACTIONS(297), + [aux_sym__case_terminator_token1] = ACTIONS(299), + [aux_sym_find_statement_token1] = ACTIONS(301), + [aux_sym_assign_statement_token1] = ACTIONS(303), + [aux_sym_catch_statement_token1] = ACTIONS(305), + [aux_sym_finally_statement_token1] = ACTIONS(307), + [aux_sym_accumulate_statement_token1] = ACTIONS(309), + [anon_sym_ROUTINE_DASHLEVEL] = ACTIONS(311), + [anon_sym_BLOCK_DASHLEVEL] = ACTIONS(311), }, [89] = { - [sym_body] = STATE(4020), + [sym_body] = STATE(3826), [sym_comment] = STATE(89), - [sym_qualified_name] = STATE(4733), - [sym__block_terminator] = STATE(1285), + [sym_qualified_name] = STATE(4814), + [sym__block_terminator] = STATE(1133), [sym_include] = STATE(89), - [sym_assignment] = STATE(4314), - [sym_variable_definition] = STATE(1535), - [sym_variable_assignment] = STATE(1535), - [sym_buffer_definition] = STATE(1535), - [sym_query_definition] = STATE(1535), - [sym_function_call_statement] = STATE(1535), - [sym_function_call] = STATE(4086), - [sym_if_statement] = STATE(1535), - [sym_label] = STATE(1536), - [sym_repeat_statement] = STATE(1535), - [sym_procedure_statement] = STATE(1535), - [sym_procedure_parameter_definition] = STATE(1535), - [sym_function_statement] = STATE(1535), - [sym_return_statement] = STATE(1535), - [sym_interface_statement] = STATE(1535), - [sym_using_statement] = STATE(1535), - [sym_class_statement] = STATE(1535), - [sym_object_access] = STATE(3567), - [sym_stream_definition] = STATE(1535), - [sym_input_close_statement] = STATE(1535), - [sym_output_close_statement] = STATE(1535), - [sym__stream_statement] = STATE(1535), - [sym_input_stream_statement] = STATE(1537), - [sym_output_stream_statement] = STATE(1537), - [sym_do_block] = STATE(1535), - [sym_case_statement] = STATE(1535), - [sym_for_statement] = STATE(1535), - [sym_find_statement] = STATE(1535), - [sym_abl_statement] = STATE(1535), - [sym_assign_statement] = STATE(1535), - [sym_catch_statement] = STATE(1535), - [sym_finally_statement] = STATE(1535), - [sym_accumulate_statement] = STATE(1535), - [sym_undo_statement] = STATE(1535), - [sym_error_scope_statement] = STATE(1535), - [sym_temp_table_definition] = STATE(1535), - [sym_on_statement] = STATE(1535), - [sym__statement] = STATE(1538), - [aux_sym_source_code_repeat1] = STATE(276), - [sym_identifier] = ACTIONS(227), + [sym_assignment] = STATE(4463), + [sym_variable_definition] = STATE(1550), + [sym_variable_assignment] = STATE(1550), + [sym_buffer_definition] = STATE(1550), + [sym_query_definition] = STATE(1550), + [sym_function_call_statement] = STATE(1550), + [sym_function_call] = STATE(4558), + [sym_if_statement] = STATE(1550), + [sym_label] = STATE(1551), + [sym_repeat_statement] = STATE(1550), + [sym_procedure_statement] = STATE(1550), + [sym_procedure_parameter_definition] = STATE(1550), + [sym_function_statement] = STATE(1550), + [sym_return_statement] = STATE(1550), + [sym_interface_statement] = STATE(1550), + [sym_using_statement] = STATE(1550), + [sym_class_statement] = STATE(1550), + [sym_object_access] = STATE(3661), + [sym_stream_definition] = STATE(1550), + [sym_input_close_statement] = STATE(1550), + [sym_output_close_statement] = STATE(1550), + [sym__stream_statement] = STATE(1550), + [sym_input_stream_statement] = STATE(1552), + [sym_output_stream_statement] = STATE(1552), + [sym_do_block] = STATE(1550), + [sym_case_statement] = STATE(1550), + [sym_for_statement] = STATE(1550), + [sym_find_statement] = STATE(1550), + [sym_abl_statement] = STATE(1550), + [sym_assign_statement] = STATE(1550), + [sym_catch_statement] = STATE(1550), + [sym_finally_statement] = STATE(1550), + [sym_accumulate_statement] = STATE(1550), + [sym_undo_statement] = STATE(1550), + [sym_error_scope_statement] = STATE(1550), + [sym_temp_table_definition] = STATE(1550), + [sym_on_statement] = STATE(1550), + [sym__statement] = STATE(1553), + [aux_sym_source_code_repeat1] = STATE(286), + [sym_identifier] = ACTIONS(263), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), [anon_sym_LBRACE] = ACTIONS(7), - [aux_sym__block_terminator_token1] = ACTIONS(299), - [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), + [aux_sym__block_terminator_token1] = ACTIONS(323), + [aux_sym_input_expression_token1] = ACTIONS(267), + [aux_sym_primitive_type_token19] = ACTIONS(269), + [aux_sym_variable_definition_token1] = ACTIONS(271), + [aux_sym_variable_definition_token2] = ACTIONS(273), + [aux_sym_buffer_definition_token2] = ACTIONS(275), + [aux_sym_argument_mode_token1] = ACTIONS(277), + [aux_sym_if_statement_token1] = ACTIONS(279), + [aux_sym_repeat_statement_token1] = ACTIONS(281), + [aux_sym__procedure_terminator_token1] = ACTIONS(283), + [aux_sym_procedure_parameter_definition_token1] = ACTIONS(285), + [aux_sym__function_terminator_token1] = ACTIONS(287), + [aux_sym_interface_statement_token1] = ACTIONS(289), + [aux_sym_using_statement_token1] = ACTIONS(291), + [aux_sym_on_error_phrase_token1] = ACTIONS(293), + [aux_sym_on_error_phrase_token3] = ACTIONS(295), + [aux_sym_do_block_token1] = ACTIONS(297), + [aux_sym__case_terminator_token1] = ACTIONS(299), + [aux_sym_find_statement_token1] = ACTIONS(301), + [aux_sym_assign_statement_token1] = ACTIONS(303), + [aux_sym_catch_statement_token1] = ACTIONS(305), + [aux_sym_finally_statement_token1] = ACTIONS(307), + [aux_sym_accumulate_statement_token1] = ACTIONS(309), + [anon_sym_ROUTINE_DASHLEVEL] = ACTIONS(311), + [anon_sym_BLOCK_DASHLEVEL] = ACTIONS(311), }, [90] = { - [sym_body] = STATE(3753), + [sym_body] = STATE(3832), [sym_comment] = STATE(90), - [sym_qualified_name] = STATE(4733), - [sym__block_terminator] = STATE(1083), + [sym_qualified_name] = STATE(4814), + [sym__block_terminator] = STATE(1116), [sym_include] = STATE(90), - [sym_assignment] = STATE(4314), - [sym_variable_definition] = STATE(1535), - [sym_variable_assignment] = STATE(1535), - [sym_buffer_definition] = STATE(1535), - [sym_query_definition] = STATE(1535), - [sym_function_call_statement] = STATE(1535), - [sym_function_call] = STATE(4086), - [sym_if_statement] = STATE(1535), - [sym_label] = STATE(1536), - [sym_repeat_statement] = STATE(1535), - [sym_procedure_statement] = STATE(1535), - [sym_procedure_parameter_definition] = STATE(1535), - [sym_function_statement] = STATE(1535), - [sym_return_statement] = STATE(1535), - [sym_interface_statement] = STATE(1535), - [sym_using_statement] = STATE(1535), - [sym_class_statement] = STATE(1535), - [sym_object_access] = STATE(3567), - [sym_stream_definition] = STATE(1535), - [sym_input_close_statement] = STATE(1535), - [sym_output_close_statement] = STATE(1535), - [sym__stream_statement] = STATE(1535), - [sym_input_stream_statement] = STATE(1537), - [sym_output_stream_statement] = STATE(1537), - [sym_do_block] = STATE(1535), - [sym_case_statement] = STATE(1535), - [sym_for_statement] = STATE(1535), - [sym_find_statement] = STATE(1535), - [sym_abl_statement] = STATE(1535), - [sym_assign_statement] = STATE(1535), - [sym_catch_statement] = STATE(1535), - [sym_finally_statement] = STATE(1535), - [sym_accumulate_statement] = STATE(1535), - [sym_undo_statement] = STATE(1535), - [sym_error_scope_statement] = STATE(1535), - [sym_temp_table_definition] = STATE(1535), - [sym_on_statement] = STATE(1535), - [sym__statement] = STATE(1538), - [aux_sym_source_code_repeat1] = STATE(276), - [sym_identifier] = ACTIONS(227), + [sym_assignment] = STATE(4463), + [sym_variable_definition] = STATE(1550), + [sym_variable_assignment] = STATE(1550), + [sym_buffer_definition] = STATE(1550), + [sym_query_definition] = STATE(1550), + [sym_function_call_statement] = STATE(1550), + [sym_function_call] = STATE(4558), + [sym_if_statement] = STATE(1550), + [sym_label] = STATE(1551), + [sym_repeat_statement] = STATE(1550), + [sym_procedure_statement] = STATE(1550), + [sym_procedure_parameter_definition] = STATE(1550), + [sym_function_statement] = STATE(1550), + [sym_return_statement] = STATE(1550), + [sym_interface_statement] = STATE(1550), + [sym_using_statement] = STATE(1550), + [sym_class_statement] = STATE(1550), + [sym_object_access] = STATE(3661), + [sym_stream_definition] = STATE(1550), + [sym_input_close_statement] = STATE(1550), + [sym_output_close_statement] = STATE(1550), + [sym__stream_statement] = STATE(1550), + [sym_input_stream_statement] = STATE(1552), + [sym_output_stream_statement] = STATE(1552), + [sym_do_block] = STATE(1550), + [sym_case_statement] = STATE(1550), + [sym_for_statement] = STATE(1550), + [sym_find_statement] = STATE(1550), + [sym_abl_statement] = STATE(1550), + [sym_assign_statement] = STATE(1550), + [sym_catch_statement] = STATE(1550), + [sym_finally_statement] = STATE(1550), + [sym_accumulate_statement] = STATE(1550), + [sym_undo_statement] = STATE(1550), + [sym_error_scope_statement] = STATE(1550), + [sym_temp_table_definition] = STATE(1550), + [sym_on_statement] = STATE(1550), + [sym__statement] = STATE(1553), + [aux_sym_source_code_repeat1] = STATE(286), + [sym_identifier] = ACTIONS(263), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), [anon_sym_LBRACE] = ACTIONS(7), - [aux_sym__block_terminator_token1] = ACTIONS(303), - [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), + [aux_sym__block_terminator_token1] = ACTIONS(323), + [aux_sym_input_expression_token1] = ACTIONS(267), + [aux_sym_primitive_type_token19] = ACTIONS(269), + [aux_sym_variable_definition_token1] = ACTIONS(271), + [aux_sym_variable_definition_token2] = ACTIONS(273), + [aux_sym_buffer_definition_token2] = ACTIONS(275), + [aux_sym_argument_mode_token1] = ACTIONS(277), + [aux_sym_if_statement_token1] = ACTIONS(279), + [aux_sym_repeat_statement_token1] = ACTIONS(281), + [aux_sym__procedure_terminator_token1] = ACTIONS(283), + [aux_sym_procedure_parameter_definition_token1] = ACTIONS(285), + [aux_sym__function_terminator_token1] = ACTIONS(287), + [aux_sym_interface_statement_token1] = ACTIONS(289), + [aux_sym_using_statement_token1] = ACTIONS(291), + [aux_sym_on_error_phrase_token1] = ACTIONS(293), + [aux_sym_on_error_phrase_token3] = ACTIONS(295), + [aux_sym_do_block_token1] = ACTIONS(297), + [aux_sym__case_terminator_token1] = ACTIONS(299), + [aux_sym_find_statement_token1] = ACTIONS(301), + [aux_sym_assign_statement_token1] = ACTIONS(303), + [aux_sym_catch_statement_token1] = ACTIONS(305), + [aux_sym_finally_statement_token1] = ACTIONS(307), + [aux_sym_accumulate_statement_token1] = ACTIONS(309), + [anon_sym_ROUTINE_DASHLEVEL] = ACTIONS(311), + [anon_sym_BLOCK_DASHLEVEL] = ACTIONS(311), }, [91] = { - [sym_body] = STATE(3767), + [sym_body] = STATE(4018), [sym_comment] = STATE(91), - [sym_qualified_name] = STATE(4733), - [sym__block_terminator] = STATE(3425), + [sym_qualified_name] = STATE(4814), + [sym__block_terminator] = STATE(959), [sym_include] = STATE(91), - [sym_assignment] = STATE(4314), - [sym_variable_definition] = STATE(1535), - [sym_variable_assignment] = STATE(1535), - [sym_buffer_definition] = STATE(1535), - [sym_query_definition] = STATE(1535), - [sym_function_call_statement] = STATE(1535), - [sym_function_call] = STATE(4086), - [sym_if_statement] = STATE(1535), - [sym_label] = STATE(1536), - [sym_repeat_statement] = STATE(1535), - [sym_procedure_statement] = STATE(1535), - [sym_procedure_parameter_definition] = STATE(1535), - [sym_function_statement] = STATE(1535), - [sym_return_statement] = STATE(1535), - [sym_interface_statement] = STATE(1535), - [sym_using_statement] = STATE(1535), - [sym_class_statement] = STATE(1535), - [sym_object_access] = STATE(3567), - [sym_stream_definition] = STATE(1535), - [sym_input_close_statement] = STATE(1535), - [sym_output_close_statement] = STATE(1535), - [sym__stream_statement] = STATE(1535), - [sym_input_stream_statement] = STATE(1537), - [sym_output_stream_statement] = STATE(1537), - [sym_do_block] = STATE(1535), - [sym_case_statement] = STATE(1535), - [sym_for_statement] = STATE(1535), - [sym_find_statement] = STATE(1535), - [sym_abl_statement] = STATE(1535), - [sym_assign_statement] = STATE(1535), - [sym_catch_statement] = STATE(1535), - [sym_finally_statement] = STATE(1535), - [sym_accumulate_statement] = STATE(1535), - [sym_undo_statement] = STATE(1535), - [sym_error_scope_statement] = STATE(1535), - [sym_temp_table_definition] = STATE(1535), - [sym_on_statement] = STATE(1535), - [sym__statement] = STATE(1538), - [aux_sym_source_code_repeat1] = STATE(276), - [sym_identifier] = ACTIONS(227), + [sym_assignment] = STATE(4463), + [sym_variable_definition] = STATE(1550), + [sym_variable_assignment] = STATE(1550), + [sym_buffer_definition] = STATE(1550), + [sym_query_definition] = STATE(1550), + [sym_function_call_statement] = STATE(1550), + [sym_function_call] = STATE(4558), + [sym_if_statement] = STATE(1550), + [sym_label] = STATE(1551), + [sym_repeat_statement] = STATE(1550), + [sym_procedure_statement] = STATE(1550), + [sym_procedure_parameter_definition] = STATE(1550), + [sym_function_statement] = STATE(1550), + [sym_return_statement] = STATE(1550), + [sym_interface_statement] = STATE(1550), + [sym_using_statement] = STATE(1550), + [sym_class_statement] = STATE(1550), + [sym_object_access] = STATE(3661), + [sym_stream_definition] = STATE(1550), + [sym_input_close_statement] = STATE(1550), + [sym_output_close_statement] = STATE(1550), + [sym__stream_statement] = STATE(1550), + [sym_input_stream_statement] = STATE(1552), + [sym_output_stream_statement] = STATE(1552), + [sym_do_block] = STATE(1550), + [sym_case_statement] = STATE(1550), + [sym_for_statement] = STATE(1550), + [sym_find_statement] = STATE(1550), + [sym_abl_statement] = STATE(1550), + [sym_assign_statement] = STATE(1550), + [sym_catch_statement] = STATE(1550), + [sym_finally_statement] = STATE(1550), + [sym_accumulate_statement] = STATE(1550), + [sym_undo_statement] = STATE(1550), + [sym_error_scope_statement] = STATE(1550), + [sym_temp_table_definition] = STATE(1550), + [sym_on_statement] = STATE(1550), + [sym__statement] = STATE(1553), + [aux_sym_source_code_repeat1] = STATE(286), + [sym_identifier] = ACTIONS(263), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), [anon_sym_LBRACE] = ACTIONS(7), - [aux_sym__block_terminator_token1] = ACTIONS(297), - [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), + [aux_sym__block_terminator_token1] = ACTIONS(321), + [aux_sym_input_expression_token1] = ACTIONS(267), + [aux_sym_primitive_type_token19] = ACTIONS(269), + [aux_sym_variable_definition_token1] = ACTIONS(271), + [aux_sym_variable_definition_token2] = ACTIONS(273), + [aux_sym_buffer_definition_token2] = ACTIONS(275), + [aux_sym_argument_mode_token1] = ACTIONS(277), + [aux_sym_if_statement_token1] = ACTIONS(279), + [aux_sym_repeat_statement_token1] = ACTIONS(281), + [aux_sym__procedure_terminator_token1] = ACTIONS(283), + [aux_sym_procedure_parameter_definition_token1] = ACTIONS(285), + [aux_sym__function_terminator_token1] = ACTIONS(287), + [aux_sym_interface_statement_token1] = ACTIONS(289), + [aux_sym_using_statement_token1] = ACTIONS(291), + [aux_sym_on_error_phrase_token1] = ACTIONS(293), + [aux_sym_on_error_phrase_token3] = ACTIONS(295), + [aux_sym_do_block_token1] = ACTIONS(297), + [aux_sym__case_terminator_token1] = ACTIONS(299), + [aux_sym_find_statement_token1] = ACTIONS(301), + [aux_sym_assign_statement_token1] = ACTIONS(303), + [aux_sym_catch_statement_token1] = ACTIONS(305), + [aux_sym_finally_statement_token1] = ACTIONS(307), + [aux_sym_accumulate_statement_token1] = ACTIONS(309), + [anon_sym_ROUTINE_DASHLEVEL] = ACTIONS(311), + [anon_sym_BLOCK_DASHLEVEL] = ACTIONS(311), }, [92] = { - [sym_body] = STATE(3669), + [sym_body] = STATE(3833), [sym_comment] = STATE(92), - [sym_qualified_name] = STATE(4733), - [sym__block_terminator] = STATE(1424), + [sym_qualified_name] = STATE(4814), + [sym__block_terminator] = STATE(1117), [sym_include] = STATE(92), - [sym_assignment] = STATE(4314), - [sym_variable_definition] = STATE(1535), - [sym_variable_assignment] = STATE(1535), - [sym_buffer_definition] = STATE(1535), - [sym_query_definition] = STATE(1535), - [sym_function_call_statement] = STATE(1535), - [sym_function_call] = STATE(4086), - [sym_if_statement] = STATE(1535), - [sym_label] = STATE(1536), - [sym_repeat_statement] = STATE(1535), - [sym_procedure_statement] = STATE(1535), - [sym_procedure_parameter_definition] = STATE(1535), - [sym_function_statement] = STATE(1535), - [sym_return_statement] = STATE(1535), - [sym_interface_statement] = STATE(1535), - [sym_using_statement] = STATE(1535), - [sym_class_statement] = STATE(1535), - [sym_object_access] = STATE(3567), - [sym_stream_definition] = STATE(1535), - [sym_input_close_statement] = STATE(1535), - [sym_output_close_statement] = STATE(1535), - [sym__stream_statement] = STATE(1535), - [sym_input_stream_statement] = STATE(1537), - [sym_output_stream_statement] = STATE(1537), - [sym_do_block] = STATE(1535), - [sym_case_statement] = STATE(1535), - [sym_for_statement] = STATE(1535), - [sym_find_statement] = STATE(1535), - [sym_abl_statement] = STATE(1535), - [sym_assign_statement] = STATE(1535), - [sym_catch_statement] = STATE(1535), - [sym_finally_statement] = STATE(1535), - [sym_accumulate_statement] = STATE(1535), - [sym_undo_statement] = STATE(1535), - [sym_error_scope_statement] = STATE(1535), - [sym_temp_table_definition] = STATE(1535), - [sym_on_statement] = STATE(1535), - [sym__statement] = STATE(1538), - [aux_sym_source_code_repeat1] = STATE(276), - [sym_identifier] = ACTIONS(227), + [sym_assignment] = STATE(4463), + [sym_variable_definition] = STATE(1550), + [sym_variable_assignment] = STATE(1550), + [sym_buffer_definition] = STATE(1550), + [sym_query_definition] = STATE(1550), + [sym_function_call_statement] = STATE(1550), + [sym_function_call] = STATE(4558), + [sym_if_statement] = STATE(1550), + [sym_label] = STATE(1551), + [sym_repeat_statement] = STATE(1550), + [sym_procedure_statement] = STATE(1550), + [sym_procedure_parameter_definition] = STATE(1550), + [sym_function_statement] = STATE(1550), + [sym_return_statement] = STATE(1550), + [sym_interface_statement] = STATE(1550), + [sym_using_statement] = STATE(1550), + [sym_class_statement] = STATE(1550), + [sym_object_access] = STATE(3661), + [sym_stream_definition] = STATE(1550), + [sym_input_close_statement] = STATE(1550), + [sym_output_close_statement] = STATE(1550), + [sym__stream_statement] = STATE(1550), + [sym_input_stream_statement] = STATE(1552), + [sym_output_stream_statement] = STATE(1552), + [sym_do_block] = STATE(1550), + [sym_case_statement] = STATE(1550), + [sym_for_statement] = STATE(1550), + [sym_find_statement] = STATE(1550), + [sym_abl_statement] = STATE(1550), + [sym_assign_statement] = STATE(1550), + [sym_catch_statement] = STATE(1550), + [sym_finally_statement] = STATE(1550), + [sym_accumulate_statement] = STATE(1550), + [sym_undo_statement] = STATE(1550), + [sym_error_scope_statement] = STATE(1550), + [sym_temp_table_definition] = STATE(1550), + [sym_on_statement] = STATE(1550), + [sym__statement] = STATE(1553), + [aux_sym_source_code_repeat1] = STATE(286), + [sym_identifier] = ACTIONS(263), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), [anon_sym_LBRACE] = ACTIONS(7), - [aux_sym__block_terminator_token1] = ACTIONS(299), - [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), + [aux_sym__block_terminator_token1] = ACTIONS(323), + [aux_sym_input_expression_token1] = ACTIONS(267), + [aux_sym_primitive_type_token19] = ACTIONS(269), + [aux_sym_variable_definition_token1] = ACTIONS(271), + [aux_sym_variable_definition_token2] = ACTIONS(273), + [aux_sym_buffer_definition_token2] = ACTIONS(275), + [aux_sym_argument_mode_token1] = ACTIONS(277), + [aux_sym_if_statement_token1] = ACTIONS(279), + [aux_sym_repeat_statement_token1] = ACTIONS(281), + [aux_sym__procedure_terminator_token1] = ACTIONS(283), + [aux_sym_procedure_parameter_definition_token1] = ACTIONS(285), + [aux_sym__function_terminator_token1] = ACTIONS(287), + [aux_sym_interface_statement_token1] = ACTIONS(289), + [aux_sym_using_statement_token1] = ACTIONS(291), + [aux_sym_on_error_phrase_token1] = ACTIONS(293), + [aux_sym_on_error_phrase_token3] = ACTIONS(295), + [aux_sym_do_block_token1] = ACTIONS(297), + [aux_sym__case_terminator_token1] = ACTIONS(299), + [aux_sym_find_statement_token1] = ACTIONS(301), + [aux_sym_assign_statement_token1] = ACTIONS(303), + [aux_sym_catch_statement_token1] = ACTIONS(305), + [aux_sym_finally_statement_token1] = ACTIONS(307), + [aux_sym_accumulate_statement_token1] = ACTIONS(309), + [anon_sym_ROUTINE_DASHLEVEL] = ACTIONS(311), + [anon_sym_BLOCK_DASHLEVEL] = ACTIONS(311), }, [93] = { - [sym_body] = STATE(3601), + [sym_body] = STATE(3837), [sym_comment] = STATE(93), - [sym_qualified_name] = STATE(4733), - [sym__block_terminator] = STATE(1063), + [sym_qualified_name] = STATE(4814), + [sym__block_terminator] = STATE(1103), [sym_include] = STATE(93), - [sym_assignment] = STATE(4314), - [sym_variable_definition] = STATE(1535), - [sym_variable_assignment] = STATE(1535), - [sym_buffer_definition] = STATE(1535), - [sym_query_definition] = STATE(1535), - [sym_function_call_statement] = STATE(1535), - [sym_function_call] = STATE(4086), - [sym_if_statement] = STATE(1535), - [sym_label] = STATE(1536), - [sym_repeat_statement] = STATE(1535), - [sym_procedure_statement] = STATE(1535), - [sym_procedure_parameter_definition] = STATE(1535), - [sym_function_statement] = STATE(1535), - [sym_return_statement] = STATE(1535), - [sym_interface_statement] = STATE(1535), - [sym_using_statement] = STATE(1535), - [sym_class_statement] = STATE(1535), - [sym_object_access] = STATE(3567), - [sym_stream_definition] = STATE(1535), - [sym_input_close_statement] = STATE(1535), - [sym_output_close_statement] = STATE(1535), - [sym__stream_statement] = STATE(1535), - [sym_input_stream_statement] = STATE(1537), - [sym_output_stream_statement] = STATE(1537), - [sym_do_block] = STATE(1535), - [sym_case_statement] = STATE(1535), - [sym_for_statement] = STATE(1535), - [sym_find_statement] = STATE(1535), - [sym_abl_statement] = STATE(1535), - [sym_assign_statement] = STATE(1535), - [sym_catch_statement] = STATE(1535), - [sym_finally_statement] = STATE(1535), - [sym_accumulate_statement] = STATE(1535), - [sym_undo_statement] = STATE(1535), - [sym_error_scope_statement] = STATE(1535), - [sym_temp_table_definition] = STATE(1535), - [sym_on_statement] = STATE(1535), - [sym__statement] = STATE(1538), - [aux_sym_source_code_repeat1] = STATE(276), - [sym_identifier] = ACTIONS(227), + [sym_assignment] = STATE(4463), + [sym_variable_definition] = STATE(1550), + [sym_variable_assignment] = STATE(1550), + [sym_buffer_definition] = STATE(1550), + [sym_query_definition] = STATE(1550), + [sym_function_call_statement] = STATE(1550), + [sym_function_call] = STATE(4558), + [sym_if_statement] = STATE(1550), + [sym_label] = STATE(1551), + [sym_repeat_statement] = STATE(1550), + [sym_procedure_statement] = STATE(1550), + [sym_procedure_parameter_definition] = STATE(1550), + [sym_function_statement] = STATE(1550), + [sym_return_statement] = STATE(1550), + [sym_interface_statement] = STATE(1550), + [sym_using_statement] = STATE(1550), + [sym_class_statement] = STATE(1550), + [sym_object_access] = STATE(3661), + [sym_stream_definition] = STATE(1550), + [sym_input_close_statement] = STATE(1550), + [sym_output_close_statement] = STATE(1550), + [sym__stream_statement] = STATE(1550), + [sym_input_stream_statement] = STATE(1552), + [sym_output_stream_statement] = STATE(1552), + [sym_do_block] = STATE(1550), + [sym_case_statement] = STATE(1550), + [sym_for_statement] = STATE(1550), + [sym_find_statement] = STATE(1550), + [sym_abl_statement] = STATE(1550), + [sym_assign_statement] = STATE(1550), + [sym_catch_statement] = STATE(1550), + [sym_finally_statement] = STATE(1550), + [sym_accumulate_statement] = STATE(1550), + [sym_undo_statement] = STATE(1550), + [sym_error_scope_statement] = STATE(1550), + [sym_temp_table_definition] = STATE(1550), + [sym_on_statement] = STATE(1550), + [sym__statement] = STATE(1553), + [aux_sym_source_code_repeat1] = STATE(286), + [sym_identifier] = ACTIONS(263), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), [anon_sym_LBRACE] = ACTIONS(7), - [aux_sym__block_terminator_token1] = ACTIONS(301), - [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), + [aux_sym__block_terminator_token1] = ACTIONS(323), + [aux_sym_input_expression_token1] = ACTIONS(267), + [aux_sym_primitive_type_token19] = ACTIONS(269), + [aux_sym_variable_definition_token1] = ACTIONS(271), + [aux_sym_variable_definition_token2] = ACTIONS(273), + [aux_sym_buffer_definition_token2] = ACTIONS(275), + [aux_sym_argument_mode_token1] = ACTIONS(277), + [aux_sym_if_statement_token1] = ACTIONS(279), + [aux_sym_repeat_statement_token1] = ACTIONS(281), + [aux_sym__procedure_terminator_token1] = ACTIONS(283), + [aux_sym_procedure_parameter_definition_token1] = ACTIONS(285), + [aux_sym__function_terminator_token1] = ACTIONS(287), + [aux_sym_interface_statement_token1] = ACTIONS(289), + [aux_sym_using_statement_token1] = ACTIONS(291), + [aux_sym_on_error_phrase_token1] = ACTIONS(293), + [aux_sym_on_error_phrase_token3] = ACTIONS(295), + [aux_sym_do_block_token1] = ACTIONS(297), + [aux_sym__case_terminator_token1] = ACTIONS(299), + [aux_sym_find_statement_token1] = ACTIONS(301), + [aux_sym_assign_statement_token1] = ACTIONS(303), + [aux_sym_catch_statement_token1] = ACTIONS(305), + [aux_sym_finally_statement_token1] = ACTIONS(307), + [aux_sym_accumulate_statement_token1] = ACTIONS(309), + [anon_sym_ROUTINE_DASHLEVEL] = ACTIONS(311), + [anon_sym_BLOCK_DASHLEVEL] = ACTIONS(311), }, [94] = { - [sym_body] = STATE(3720), + [sym_body] = STATE(3842), [sym_comment] = STATE(94), - [sym_qualified_name] = STATE(4733), - [sym__block_terminator] = STATE(3399), + [sym_qualified_name] = STATE(4814), + [sym__block_terminator] = STATE(876), [sym_include] = STATE(94), - [sym_assignment] = STATE(4314), - [sym_variable_definition] = STATE(1535), - [sym_variable_assignment] = STATE(1535), - [sym_buffer_definition] = STATE(1535), - [sym_query_definition] = STATE(1535), - [sym_function_call_statement] = STATE(1535), - [sym_function_call] = STATE(4086), - [sym_if_statement] = STATE(1535), - [sym_label] = STATE(1536), - [sym_repeat_statement] = STATE(1535), - [sym_procedure_statement] = STATE(1535), - [sym_procedure_parameter_definition] = STATE(1535), - [sym_function_statement] = STATE(1535), - [sym_return_statement] = STATE(1535), - [sym_interface_statement] = STATE(1535), - [sym_using_statement] = STATE(1535), - [sym_class_statement] = STATE(1535), - [sym_object_access] = STATE(3567), - [sym_stream_definition] = STATE(1535), - [sym_input_close_statement] = STATE(1535), - [sym_output_close_statement] = STATE(1535), - [sym__stream_statement] = STATE(1535), - [sym_input_stream_statement] = STATE(1537), - [sym_output_stream_statement] = STATE(1537), - [sym_do_block] = STATE(1535), - [sym_case_statement] = STATE(1535), - [sym_for_statement] = STATE(1535), - [sym_find_statement] = STATE(1535), - [sym_abl_statement] = STATE(1535), - [sym_assign_statement] = STATE(1535), - [sym_catch_statement] = STATE(1535), - [sym_finally_statement] = STATE(1535), - [sym_accumulate_statement] = STATE(1535), - [sym_undo_statement] = STATE(1535), - [sym_error_scope_statement] = STATE(1535), - [sym_temp_table_definition] = STATE(1535), - [sym_on_statement] = STATE(1535), - [sym__statement] = STATE(1538), - [aux_sym_source_code_repeat1] = STATE(276), - [sym_identifier] = ACTIONS(227), + [sym_assignment] = STATE(4463), + [sym_variable_definition] = STATE(1550), + [sym_variable_assignment] = STATE(1550), + [sym_buffer_definition] = STATE(1550), + [sym_query_definition] = STATE(1550), + [sym_function_call_statement] = STATE(1550), + [sym_function_call] = STATE(4558), + [sym_if_statement] = STATE(1550), + [sym_label] = STATE(1551), + [sym_repeat_statement] = STATE(1550), + [sym_procedure_statement] = STATE(1550), + [sym_procedure_parameter_definition] = STATE(1550), + [sym_function_statement] = STATE(1550), + [sym_return_statement] = STATE(1550), + [sym_interface_statement] = STATE(1550), + [sym_using_statement] = STATE(1550), + [sym_class_statement] = STATE(1550), + [sym_object_access] = STATE(3661), + [sym_stream_definition] = STATE(1550), + [sym_input_close_statement] = STATE(1550), + [sym_output_close_statement] = STATE(1550), + [sym__stream_statement] = STATE(1550), + [sym_input_stream_statement] = STATE(1552), + [sym_output_stream_statement] = STATE(1552), + [sym_do_block] = STATE(1550), + [sym_case_statement] = STATE(1550), + [sym_for_statement] = STATE(1550), + [sym_find_statement] = STATE(1550), + [sym_abl_statement] = STATE(1550), + [sym_assign_statement] = STATE(1550), + [sym_catch_statement] = STATE(1550), + [sym_finally_statement] = STATE(1550), + [sym_accumulate_statement] = STATE(1550), + [sym_undo_statement] = STATE(1550), + [sym_error_scope_statement] = STATE(1550), + [sym_temp_table_definition] = STATE(1550), + [sym_on_statement] = STATE(1550), + [sym__statement] = STATE(1553), + [aux_sym_source_code_repeat1] = STATE(286), + [sym_identifier] = ACTIONS(263), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), [anon_sym_LBRACE] = ACTIONS(7), - [aux_sym__block_terminator_token1] = ACTIONS(297), - [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), + [aux_sym__block_terminator_token1] = ACTIONS(323), + [aux_sym_input_expression_token1] = ACTIONS(267), + [aux_sym_primitive_type_token19] = ACTIONS(269), + [aux_sym_variable_definition_token1] = ACTIONS(271), + [aux_sym_variable_definition_token2] = ACTIONS(273), + [aux_sym_buffer_definition_token2] = ACTIONS(275), + [aux_sym_argument_mode_token1] = ACTIONS(277), + [aux_sym_if_statement_token1] = ACTIONS(279), + [aux_sym_repeat_statement_token1] = ACTIONS(281), + [aux_sym__procedure_terminator_token1] = ACTIONS(283), + [aux_sym_procedure_parameter_definition_token1] = ACTIONS(285), + [aux_sym__function_terminator_token1] = ACTIONS(287), + [aux_sym_interface_statement_token1] = ACTIONS(289), + [aux_sym_using_statement_token1] = ACTIONS(291), + [aux_sym_on_error_phrase_token1] = ACTIONS(293), + [aux_sym_on_error_phrase_token3] = ACTIONS(295), + [aux_sym_do_block_token1] = ACTIONS(297), + [aux_sym__case_terminator_token1] = ACTIONS(299), + [aux_sym_find_statement_token1] = ACTIONS(301), + [aux_sym_assign_statement_token1] = ACTIONS(303), + [aux_sym_catch_statement_token1] = ACTIONS(305), + [aux_sym_finally_statement_token1] = ACTIONS(307), + [aux_sym_accumulate_statement_token1] = ACTIONS(309), + [anon_sym_ROUTINE_DASHLEVEL] = ACTIONS(311), + [anon_sym_BLOCK_DASHLEVEL] = ACTIONS(311), }, [95] = { - [sym_body] = STATE(3762), + [sym_body] = STATE(3843), [sym_comment] = STATE(95), - [sym_qualified_name] = STATE(4733), - [sym__block_terminator] = STATE(1079), + [sym_qualified_name] = STATE(4814), + [sym__block_terminator] = STATE(851), [sym_include] = STATE(95), - [sym_assignment] = STATE(4314), - [sym_variable_definition] = STATE(1535), - [sym_variable_assignment] = STATE(1535), - [sym_buffer_definition] = STATE(1535), - [sym_query_definition] = STATE(1535), - [sym_function_call_statement] = STATE(1535), - [sym_function_call] = STATE(4086), - [sym_if_statement] = STATE(1535), - [sym_label] = STATE(1536), - [sym_repeat_statement] = STATE(1535), - [sym_procedure_statement] = STATE(1535), - [sym_procedure_parameter_definition] = STATE(1535), - [sym_function_statement] = STATE(1535), - [sym_return_statement] = STATE(1535), - [sym_interface_statement] = STATE(1535), - [sym_using_statement] = STATE(1535), - [sym_class_statement] = STATE(1535), - [sym_object_access] = STATE(3567), - [sym_stream_definition] = STATE(1535), - [sym_input_close_statement] = STATE(1535), - [sym_output_close_statement] = STATE(1535), - [sym__stream_statement] = STATE(1535), - [sym_input_stream_statement] = STATE(1537), - [sym_output_stream_statement] = STATE(1537), - [sym_do_block] = STATE(1535), - [sym_case_statement] = STATE(1535), - [sym_for_statement] = STATE(1535), - [sym_find_statement] = STATE(1535), - [sym_abl_statement] = STATE(1535), - [sym_assign_statement] = STATE(1535), - [sym_catch_statement] = STATE(1535), - [sym_finally_statement] = STATE(1535), - [sym_accumulate_statement] = STATE(1535), - [sym_undo_statement] = STATE(1535), - [sym_error_scope_statement] = STATE(1535), - [sym_temp_table_definition] = STATE(1535), - [sym_on_statement] = STATE(1535), - [sym__statement] = STATE(1538), - [aux_sym_source_code_repeat1] = STATE(276), - [sym_identifier] = ACTIONS(227), + [sym_assignment] = STATE(4463), + [sym_variable_definition] = STATE(1550), + [sym_variable_assignment] = STATE(1550), + [sym_buffer_definition] = STATE(1550), + [sym_query_definition] = STATE(1550), + [sym_function_call_statement] = STATE(1550), + [sym_function_call] = STATE(4558), + [sym_if_statement] = STATE(1550), + [sym_label] = STATE(1551), + [sym_repeat_statement] = STATE(1550), + [sym_procedure_statement] = STATE(1550), + [sym_procedure_parameter_definition] = STATE(1550), + [sym_function_statement] = STATE(1550), + [sym_return_statement] = STATE(1550), + [sym_interface_statement] = STATE(1550), + [sym_using_statement] = STATE(1550), + [sym_class_statement] = STATE(1550), + [sym_object_access] = STATE(3661), + [sym_stream_definition] = STATE(1550), + [sym_input_close_statement] = STATE(1550), + [sym_output_close_statement] = STATE(1550), + [sym__stream_statement] = STATE(1550), + [sym_input_stream_statement] = STATE(1552), + [sym_output_stream_statement] = STATE(1552), + [sym_do_block] = STATE(1550), + [sym_case_statement] = STATE(1550), + [sym_for_statement] = STATE(1550), + [sym_find_statement] = STATE(1550), + [sym_abl_statement] = STATE(1550), + [sym_assign_statement] = STATE(1550), + [sym_catch_statement] = STATE(1550), + [sym_finally_statement] = STATE(1550), + [sym_accumulate_statement] = STATE(1550), + [sym_undo_statement] = STATE(1550), + [sym_error_scope_statement] = STATE(1550), + [sym_temp_table_definition] = STATE(1550), + [sym_on_statement] = STATE(1550), + [sym__statement] = STATE(1553), + [aux_sym_source_code_repeat1] = STATE(286), + [sym_identifier] = ACTIONS(263), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), [anon_sym_LBRACE] = ACTIONS(7), - [aux_sym__block_terminator_token1] = ACTIONS(303), - [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), + [aux_sym__block_terminator_token1] = ACTIONS(323), + [aux_sym_input_expression_token1] = ACTIONS(267), + [aux_sym_primitive_type_token19] = ACTIONS(269), + [aux_sym_variable_definition_token1] = ACTIONS(271), + [aux_sym_variable_definition_token2] = ACTIONS(273), + [aux_sym_buffer_definition_token2] = ACTIONS(275), + [aux_sym_argument_mode_token1] = ACTIONS(277), + [aux_sym_if_statement_token1] = ACTIONS(279), + [aux_sym_repeat_statement_token1] = ACTIONS(281), + [aux_sym__procedure_terminator_token1] = ACTIONS(283), + [aux_sym_procedure_parameter_definition_token1] = ACTIONS(285), + [aux_sym__function_terminator_token1] = ACTIONS(287), + [aux_sym_interface_statement_token1] = ACTIONS(289), + [aux_sym_using_statement_token1] = ACTIONS(291), + [aux_sym_on_error_phrase_token1] = ACTIONS(293), + [aux_sym_on_error_phrase_token3] = ACTIONS(295), + [aux_sym_do_block_token1] = ACTIONS(297), + [aux_sym__case_terminator_token1] = ACTIONS(299), + [aux_sym_find_statement_token1] = ACTIONS(301), + [aux_sym_assign_statement_token1] = ACTIONS(303), + [aux_sym_catch_statement_token1] = ACTIONS(305), + [aux_sym_finally_statement_token1] = ACTIONS(307), + [aux_sym_accumulate_statement_token1] = ACTIONS(309), + [anon_sym_ROUTINE_DASHLEVEL] = ACTIONS(311), + [anon_sym_BLOCK_DASHLEVEL] = ACTIONS(311), }, [96] = { - [sym_body] = STATE(3717), + [sym_body] = STATE(3950), [sym_comment] = STATE(96), - [sym_qualified_name] = STATE(4733), - [sym__block_terminator] = STATE(3398), + [sym_qualified_name] = STATE(4814), + [sym__block_terminator] = STATE(966), [sym_include] = STATE(96), - [sym_assignment] = STATE(4314), - [sym_variable_definition] = STATE(1535), - [sym_variable_assignment] = STATE(1535), - [sym_buffer_definition] = STATE(1535), - [sym_query_definition] = STATE(1535), - [sym_function_call_statement] = STATE(1535), - [sym_function_call] = STATE(4086), - [sym_if_statement] = STATE(1535), - [sym_label] = STATE(1536), - [sym_repeat_statement] = STATE(1535), - [sym_procedure_statement] = STATE(1535), - [sym_procedure_parameter_definition] = STATE(1535), - [sym_function_statement] = STATE(1535), - [sym_return_statement] = STATE(1535), - [sym_interface_statement] = STATE(1535), - [sym_using_statement] = STATE(1535), - [sym_class_statement] = STATE(1535), - [sym_object_access] = STATE(3567), - [sym_stream_definition] = STATE(1535), - [sym_input_close_statement] = STATE(1535), - [sym_output_close_statement] = STATE(1535), - [sym__stream_statement] = STATE(1535), - [sym_input_stream_statement] = STATE(1537), - [sym_output_stream_statement] = STATE(1537), - [sym_do_block] = STATE(1535), - [sym_case_statement] = STATE(1535), - [sym_for_statement] = STATE(1535), - [sym_find_statement] = STATE(1535), - [sym_abl_statement] = STATE(1535), - [sym_assign_statement] = STATE(1535), - [sym_catch_statement] = STATE(1535), - [sym_finally_statement] = STATE(1535), - [sym_accumulate_statement] = STATE(1535), - [sym_undo_statement] = STATE(1535), - [sym_error_scope_statement] = STATE(1535), - [sym_temp_table_definition] = STATE(1535), - [sym_on_statement] = STATE(1535), - [sym__statement] = STATE(1538), - [aux_sym_source_code_repeat1] = STATE(276), - [sym_identifier] = ACTIONS(227), + [sym_assignment] = STATE(4463), + [sym_variable_definition] = STATE(1550), + [sym_variable_assignment] = STATE(1550), + [sym_buffer_definition] = STATE(1550), + [sym_query_definition] = STATE(1550), + [sym_function_call_statement] = STATE(1550), + [sym_function_call] = STATE(4558), + [sym_if_statement] = STATE(1550), + [sym_label] = STATE(1551), + [sym_repeat_statement] = STATE(1550), + [sym_procedure_statement] = STATE(1550), + [sym_procedure_parameter_definition] = STATE(1550), + [sym_function_statement] = STATE(1550), + [sym_return_statement] = STATE(1550), + [sym_interface_statement] = STATE(1550), + [sym_using_statement] = STATE(1550), + [sym_class_statement] = STATE(1550), + [sym_object_access] = STATE(3661), + [sym_stream_definition] = STATE(1550), + [sym_input_close_statement] = STATE(1550), + [sym_output_close_statement] = STATE(1550), + [sym__stream_statement] = STATE(1550), + [sym_input_stream_statement] = STATE(1552), + [sym_output_stream_statement] = STATE(1552), + [sym_do_block] = STATE(1550), + [sym_case_statement] = STATE(1550), + [sym_for_statement] = STATE(1550), + [sym_find_statement] = STATE(1550), + [sym_abl_statement] = STATE(1550), + [sym_assign_statement] = STATE(1550), + [sym_catch_statement] = STATE(1550), + [sym_finally_statement] = STATE(1550), + [sym_accumulate_statement] = STATE(1550), + [sym_undo_statement] = STATE(1550), + [sym_error_scope_statement] = STATE(1550), + [sym_temp_table_definition] = STATE(1550), + [sym_on_statement] = STATE(1550), + [sym__statement] = STATE(1553), + [aux_sym_source_code_repeat1] = STATE(286), + [sym_identifier] = ACTIONS(263), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), [anon_sym_LBRACE] = ACTIONS(7), - [aux_sym__block_terminator_token1] = ACTIONS(297), - [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), + [aux_sym__block_terminator_token1] = ACTIONS(321), + [aux_sym_input_expression_token1] = ACTIONS(267), + [aux_sym_primitive_type_token19] = ACTIONS(269), + [aux_sym_variable_definition_token1] = ACTIONS(271), + [aux_sym_variable_definition_token2] = ACTIONS(273), + [aux_sym_buffer_definition_token2] = ACTIONS(275), + [aux_sym_argument_mode_token1] = ACTIONS(277), + [aux_sym_if_statement_token1] = ACTIONS(279), + [aux_sym_repeat_statement_token1] = ACTIONS(281), + [aux_sym__procedure_terminator_token1] = ACTIONS(283), + [aux_sym_procedure_parameter_definition_token1] = ACTIONS(285), + [aux_sym__function_terminator_token1] = ACTIONS(287), + [aux_sym_interface_statement_token1] = ACTIONS(289), + [aux_sym_using_statement_token1] = ACTIONS(291), + [aux_sym_on_error_phrase_token1] = ACTIONS(293), + [aux_sym_on_error_phrase_token3] = ACTIONS(295), + [aux_sym_do_block_token1] = ACTIONS(297), + [aux_sym__case_terminator_token1] = ACTIONS(299), + [aux_sym_find_statement_token1] = ACTIONS(301), + [aux_sym_assign_statement_token1] = ACTIONS(303), + [aux_sym_catch_statement_token1] = ACTIONS(305), + [aux_sym_finally_statement_token1] = ACTIONS(307), + [aux_sym_accumulate_statement_token1] = ACTIONS(309), + [anon_sym_ROUTINE_DASHLEVEL] = ACTIONS(311), + [anon_sym_BLOCK_DASHLEVEL] = ACTIONS(311), }, [97] = { - [sym_body] = STATE(3678), + [sym_body] = STATE(3844), [sym_comment] = STATE(97), - [sym_qualified_name] = STATE(4733), - [sym__block_terminator] = STATE(1055), + [sym_qualified_name] = STATE(4814), + [sym__block_terminator] = STATE(854), [sym_include] = STATE(97), - [sym_assignment] = STATE(4314), - [sym_variable_definition] = STATE(1535), - [sym_variable_assignment] = STATE(1535), - [sym_buffer_definition] = STATE(1535), - [sym_query_definition] = STATE(1535), - [sym_function_call_statement] = STATE(1535), - [sym_function_call] = STATE(4086), - [sym_if_statement] = STATE(1535), - [sym_label] = STATE(1536), - [sym_repeat_statement] = STATE(1535), - [sym_procedure_statement] = STATE(1535), - [sym_procedure_parameter_definition] = STATE(1535), - [sym_function_statement] = STATE(1535), - [sym_return_statement] = STATE(1535), - [sym_interface_statement] = STATE(1535), - [sym_using_statement] = STATE(1535), - [sym_class_statement] = STATE(1535), - [sym_object_access] = STATE(3567), - [sym_stream_definition] = STATE(1535), - [sym_input_close_statement] = STATE(1535), - [sym_output_close_statement] = STATE(1535), - [sym__stream_statement] = STATE(1535), - [sym_input_stream_statement] = STATE(1537), - [sym_output_stream_statement] = STATE(1537), - [sym_do_block] = STATE(1535), - [sym_case_statement] = STATE(1535), - [sym_for_statement] = STATE(1535), - [sym_find_statement] = STATE(1535), - [sym_abl_statement] = STATE(1535), - [sym_assign_statement] = STATE(1535), - [sym_catch_statement] = STATE(1535), - [sym_finally_statement] = STATE(1535), - [sym_accumulate_statement] = STATE(1535), - [sym_undo_statement] = STATE(1535), - [sym_error_scope_statement] = STATE(1535), - [sym_temp_table_definition] = STATE(1535), - [sym_on_statement] = STATE(1535), - [sym__statement] = STATE(1538), - [aux_sym_source_code_repeat1] = STATE(276), - [sym_identifier] = ACTIONS(227), + [sym_assignment] = STATE(4463), + [sym_variable_definition] = STATE(1550), + [sym_variable_assignment] = STATE(1550), + [sym_buffer_definition] = STATE(1550), + [sym_query_definition] = STATE(1550), + [sym_function_call_statement] = STATE(1550), + [sym_function_call] = STATE(4558), + [sym_if_statement] = STATE(1550), + [sym_label] = STATE(1551), + [sym_repeat_statement] = STATE(1550), + [sym_procedure_statement] = STATE(1550), + [sym_procedure_parameter_definition] = STATE(1550), + [sym_function_statement] = STATE(1550), + [sym_return_statement] = STATE(1550), + [sym_interface_statement] = STATE(1550), + [sym_using_statement] = STATE(1550), + [sym_class_statement] = STATE(1550), + [sym_object_access] = STATE(3661), + [sym_stream_definition] = STATE(1550), + [sym_input_close_statement] = STATE(1550), + [sym_output_close_statement] = STATE(1550), + [sym__stream_statement] = STATE(1550), + [sym_input_stream_statement] = STATE(1552), + [sym_output_stream_statement] = STATE(1552), + [sym_do_block] = STATE(1550), + [sym_case_statement] = STATE(1550), + [sym_for_statement] = STATE(1550), + [sym_find_statement] = STATE(1550), + [sym_abl_statement] = STATE(1550), + [sym_assign_statement] = STATE(1550), + [sym_catch_statement] = STATE(1550), + [sym_finally_statement] = STATE(1550), + [sym_accumulate_statement] = STATE(1550), + [sym_undo_statement] = STATE(1550), + [sym_error_scope_statement] = STATE(1550), + [sym_temp_table_definition] = STATE(1550), + [sym_on_statement] = STATE(1550), + [sym__statement] = STATE(1553), + [aux_sym_source_code_repeat1] = STATE(286), + [sym_identifier] = ACTIONS(263), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), [anon_sym_LBRACE] = ACTIONS(7), - [aux_sym__block_terminator_token1] = ACTIONS(301), - [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), + [aux_sym__block_terminator_token1] = ACTIONS(323), + [aux_sym_input_expression_token1] = ACTIONS(267), + [aux_sym_primitive_type_token19] = ACTIONS(269), + [aux_sym_variable_definition_token1] = ACTIONS(271), + [aux_sym_variable_definition_token2] = ACTIONS(273), + [aux_sym_buffer_definition_token2] = ACTIONS(275), + [aux_sym_argument_mode_token1] = ACTIONS(277), + [aux_sym_if_statement_token1] = ACTIONS(279), + [aux_sym_repeat_statement_token1] = ACTIONS(281), + [aux_sym__procedure_terminator_token1] = ACTIONS(283), + [aux_sym_procedure_parameter_definition_token1] = ACTIONS(285), + [aux_sym__function_terminator_token1] = ACTIONS(287), + [aux_sym_interface_statement_token1] = ACTIONS(289), + [aux_sym_using_statement_token1] = ACTIONS(291), + [aux_sym_on_error_phrase_token1] = ACTIONS(293), + [aux_sym_on_error_phrase_token3] = ACTIONS(295), + [aux_sym_do_block_token1] = ACTIONS(297), + [aux_sym__case_terminator_token1] = ACTIONS(299), + [aux_sym_find_statement_token1] = ACTIONS(301), + [aux_sym_assign_statement_token1] = ACTIONS(303), + [aux_sym_catch_statement_token1] = ACTIONS(305), + [aux_sym_finally_statement_token1] = ACTIONS(307), + [aux_sym_accumulate_statement_token1] = ACTIONS(309), + [anon_sym_ROUTINE_DASHLEVEL] = ACTIONS(311), + [anon_sym_BLOCK_DASHLEVEL] = ACTIONS(311), }, [98] = { - [sym_body] = STATE(3583), + [sym_body] = STATE(3846), [sym_comment] = STATE(98), - [sym_qualified_name] = STATE(4733), - [sym__block_terminator] = STATE(1104), + [sym_qualified_name] = STATE(4814), + [sym__block_terminator] = STATE(856), [sym_include] = STATE(98), - [sym_assignment] = STATE(4314), - [sym_variable_definition] = STATE(1535), - [sym_variable_assignment] = STATE(1535), - [sym_buffer_definition] = STATE(1535), - [sym_query_definition] = STATE(1535), - [sym_function_call_statement] = STATE(1535), - [sym_function_call] = STATE(4086), - [sym_if_statement] = STATE(1535), - [sym_label] = STATE(1536), - [sym_repeat_statement] = STATE(1535), - [sym_procedure_statement] = STATE(1535), - [sym_procedure_parameter_definition] = STATE(1535), - [sym_function_statement] = STATE(1535), - [sym_return_statement] = STATE(1535), - [sym_interface_statement] = STATE(1535), - [sym_using_statement] = STATE(1535), - [sym_class_statement] = STATE(1535), - [sym_object_access] = STATE(3567), - [sym_stream_definition] = STATE(1535), - [sym_input_close_statement] = STATE(1535), - [sym_output_close_statement] = STATE(1535), - [sym__stream_statement] = STATE(1535), - [sym_input_stream_statement] = STATE(1537), - [sym_output_stream_statement] = STATE(1537), - [sym_do_block] = STATE(1535), - [sym_case_statement] = STATE(1535), - [sym_for_statement] = STATE(1535), - [sym_find_statement] = STATE(1535), - [sym_abl_statement] = STATE(1535), - [sym_assign_statement] = STATE(1535), - [sym_catch_statement] = STATE(1535), - [sym_finally_statement] = STATE(1535), - [sym_accumulate_statement] = STATE(1535), - [sym_undo_statement] = STATE(1535), - [sym_error_scope_statement] = STATE(1535), - [sym_temp_table_definition] = STATE(1535), - [sym_on_statement] = STATE(1535), - [sym__statement] = STATE(1538), - [aux_sym_source_code_repeat1] = STATE(276), - [sym_identifier] = ACTIONS(227), + [sym_assignment] = STATE(4463), + [sym_variable_definition] = STATE(1550), + [sym_variable_assignment] = STATE(1550), + [sym_buffer_definition] = STATE(1550), + [sym_query_definition] = STATE(1550), + [sym_function_call_statement] = STATE(1550), + [sym_function_call] = STATE(4558), + [sym_if_statement] = STATE(1550), + [sym_label] = STATE(1551), + [sym_repeat_statement] = STATE(1550), + [sym_procedure_statement] = STATE(1550), + [sym_procedure_parameter_definition] = STATE(1550), + [sym_function_statement] = STATE(1550), + [sym_return_statement] = STATE(1550), + [sym_interface_statement] = STATE(1550), + [sym_using_statement] = STATE(1550), + [sym_class_statement] = STATE(1550), + [sym_object_access] = STATE(3661), + [sym_stream_definition] = STATE(1550), + [sym_input_close_statement] = STATE(1550), + [sym_output_close_statement] = STATE(1550), + [sym__stream_statement] = STATE(1550), + [sym_input_stream_statement] = STATE(1552), + [sym_output_stream_statement] = STATE(1552), + [sym_do_block] = STATE(1550), + [sym_case_statement] = STATE(1550), + [sym_for_statement] = STATE(1550), + [sym_find_statement] = STATE(1550), + [sym_abl_statement] = STATE(1550), + [sym_assign_statement] = STATE(1550), + [sym_catch_statement] = STATE(1550), + [sym_finally_statement] = STATE(1550), + [sym_accumulate_statement] = STATE(1550), + [sym_undo_statement] = STATE(1550), + [sym_error_scope_statement] = STATE(1550), + [sym_temp_table_definition] = STATE(1550), + [sym_on_statement] = STATE(1550), + [sym__statement] = STATE(1553), + [aux_sym_source_code_repeat1] = STATE(286), + [sym_identifier] = ACTIONS(263), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), [anon_sym_LBRACE] = ACTIONS(7), - [aux_sym__block_terminator_token1] = ACTIONS(301), - [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), + [aux_sym__block_terminator_token1] = ACTIONS(323), + [aux_sym_input_expression_token1] = ACTIONS(267), + [aux_sym_primitive_type_token19] = ACTIONS(269), + [aux_sym_variable_definition_token1] = ACTIONS(271), + [aux_sym_variable_definition_token2] = ACTIONS(273), + [aux_sym_buffer_definition_token2] = ACTIONS(275), + [aux_sym_argument_mode_token1] = ACTIONS(277), + [aux_sym_if_statement_token1] = ACTIONS(279), + [aux_sym_repeat_statement_token1] = ACTIONS(281), + [aux_sym__procedure_terminator_token1] = ACTIONS(283), + [aux_sym_procedure_parameter_definition_token1] = ACTIONS(285), + [aux_sym__function_terminator_token1] = ACTIONS(287), + [aux_sym_interface_statement_token1] = ACTIONS(289), + [aux_sym_using_statement_token1] = ACTIONS(291), + [aux_sym_on_error_phrase_token1] = ACTIONS(293), + [aux_sym_on_error_phrase_token3] = ACTIONS(295), + [aux_sym_do_block_token1] = ACTIONS(297), + [aux_sym__case_terminator_token1] = ACTIONS(299), + [aux_sym_find_statement_token1] = ACTIONS(301), + [aux_sym_assign_statement_token1] = ACTIONS(303), + [aux_sym_catch_statement_token1] = ACTIONS(305), + [aux_sym_finally_statement_token1] = ACTIONS(307), + [aux_sym_accumulate_statement_token1] = ACTIONS(309), + [anon_sym_ROUTINE_DASHLEVEL] = ACTIONS(311), + [anon_sym_BLOCK_DASHLEVEL] = ACTIONS(311), }, [99] = { - [sym_body] = STATE(3672), + [sym_body] = STATE(3978), [sym_comment] = STATE(99), - [sym_qualified_name] = STATE(4733), - [sym__block_terminator] = STATE(3380), + [sym_qualified_name] = STATE(4814), + [sym__block_terminator] = STATE(974), [sym_include] = STATE(99), - [sym_assignment] = STATE(4314), - [sym_variable_definition] = STATE(1535), - [sym_variable_assignment] = STATE(1535), - [sym_buffer_definition] = STATE(1535), - [sym_query_definition] = STATE(1535), - [sym_function_call_statement] = STATE(1535), - [sym_function_call] = STATE(4086), - [sym_if_statement] = STATE(1535), - [sym_label] = STATE(1536), - [sym_repeat_statement] = STATE(1535), - [sym_procedure_statement] = STATE(1535), - [sym_procedure_parameter_definition] = STATE(1535), - [sym_function_statement] = STATE(1535), - [sym_return_statement] = STATE(1535), - [sym_interface_statement] = STATE(1535), - [sym_using_statement] = STATE(1535), - [sym_class_statement] = STATE(1535), - [sym_object_access] = STATE(3567), - [sym_stream_definition] = STATE(1535), - [sym_input_close_statement] = STATE(1535), - [sym_output_close_statement] = STATE(1535), - [sym__stream_statement] = STATE(1535), - [sym_input_stream_statement] = STATE(1537), - [sym_output_stream_statement] = STATE(1537), - [sym_do_block] = STATE(1535), - [sym_case_statement] = STATE(1535), - [sym_for_statement] = STATE(1535), - [sym_find_statement] = STATE(1535), - [sym_abl_statement] = STATE(1535), - [sym_assign_statement] = STATE(1535), - [sym_catch_statement] = STATE(1535), - [sym_finally_statement] = STATE(1535), - [sym_accumulate_statement] = STATE(1535), - [sym_undo_statement] = STATE(1535), - [sym_error_scope_statement] = STATE(1535), - [sym_temp_table_definition] = STATE(1535), - [sym_on_statement] = STATE(1535), - [sym__statement] = STATE(1538), - [aux_sym_source_code_repeat1] = STATE(276), - [sym_identifier] = ACTIONS(227), + [sym_assignment] = STATE(4463), + [sym_variable_definition] = STATE(1550), + [sym_variable_assignment] = STATE(1550), + [sym_buffer_definition] = STATE(1550), + [sym_query_definition] = STATE(1550), + [sym_function_call_statement] = STATE(1550), + [sym_function_call] = STATE(4558), + [sym_if_statement] = STATE(1550), + [sym_label] = STATE(1551), + [sym_repeat_statement] = STATE(1550), + [sym_procedure_statement] = STATE(1550), + [sym_procedure_parameter_definition] = STATE(1550), + [sym_function_statement] = STATE(1550), + [sym_return_statement] = STATE(1550), + [sym_interface_statement] = STATE(1550), + [sym_using_statement] = STATE(1550), + [sym_class_statement] = STATE(1550), + [sym_object_access] = STATE(3661), + [sym_stream_definition] = STATE(1550), + [sym_input_close_statement] = STATE(1550), + [sym_output_close_statement] = STATE(1550), + [sym__stream_statement] = STATE(1550), + [sym_input_stream_statement] = STATE(1552), + [sym_output_stream_statement] = STATE(1552), + [sym_do_block] = STATE(1550), + [sym_case_statement] = STATE(1550), + [sym_for_statement] = STATE(1550), + [sym_find_statement] = STATE(1550), + [sym_abl_statement] = STATE(1550), + [sym_assign_statement] = STATE(1550), + [sym_catch_statement] = STATE(1550), + [sym_finally_statement] = STATE(1550), + [sym_accumulate_statement] = STATE(1550), + [sym_undo_statement] = STATE(1550), + [sym_error_scope_statement] = STATE(1550), + [sym_temp_table_definition] = STATE(1550), + [sym_on_statement] = STATE(1550), + [sym__statement] = STATE(1553), + [aux_sym_source_code_repeat1] = STATE(286), + [sym_identifier] = ACTIONS(263), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), [anon_sym_LBRACE] = ACTIONS(7), - [aux_sym__block_terminator_token1] = ACTIONS(297), - [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), + [aux_sym__block_terminator_token1] = ACTIONS(321), + [aux_sym_input_expression_token1] = ACTIONS(267), + [aux_sym_primitive_type_token19] = ACTIONS(269), + [aux_sym_variable_definition_token1] = ACTIONS(271), + [aux_sym_variable_definition_token2] = ACTIONS(273), + [aux_sym_buffer_definition_token2] = ACTIONS(275), + [aux_sym_argument_mode_token1] = ACTIONS(277), + [aux_sym_if_statement_token1] = ACTIONS(279), + [aux_sym_repeat_statement_token1] = ACTIONS(281), + [aux_sym__procedure_terminator_token1] = ACTIONS(283), + [aux_sym_procedure_parameter_definition_token1] = ACTIONS(285), + [aux_sym__function_terminator_token1] = ACTIONS(287), + [aux_sym_interface_statement_token1] = ACTIONS(289), + [aux_sym_using_statement_token1] = ACTIONS(291), + [aux_sym_on_error_phrase_token1] = ACTIONS(293), + [aux_sym_on_error_phrase_token3] = ACTIONS(295), + [aux_sym_do_block_token1] = ACTIONS(297), + [aux_sym__case_terminator_token1] = ACTIONS(299), + [aux_sym_find_statement_token1] = ACTIONS(301), + [aux_sym_assign_statement_token1] = ACTIONS(303), + [aux_sym_catch_statement_token1] = ACTIONS(305), + [aux_sym_finally_statement_token1] = ACTIONS(307), + [aux_sym_accumulate_statement_token1] = ACTIONS(309), + [anon_sym_ROUTINE_DASHLEVEL] = ACTIONS(311), + [anon_sym_BLOCK_DASHLEVEL] = ACTIONS(311), }, [100] = { - [sym_body] = STATE(3875), + [sym_body] = STATE(3664), [sym_comment] = STATE(100), - [sym_qualified_name] = STATE(4733), - [sym__block_terminator] = STATE(1191), + [sym_qualified_name] = STATE(4814), + [sym__block_terminator] = STATE(862), [sym_include] = STATE(100), - [sym_assignment] = STATE(4314), - [sym_variable_definition] = STATE(1535), - [sym_variable_assignment] = STATE(1535), - [sym_buffer_definition] = STATE(1535), - [sym_query_definition] = STATE(1535), - [sym_function_call_statement] = STATE(1535), - [sym_function_call] = STATE(4086), - [sym_if_statement] = STATE(1535), - [sym_label] = STATE(1536), - [sym_repeat_statement] = STATE(1535), - [sym_procedure_statement] = STATE(1535), - [sym_procedure_parameter_definition] = STATE(1535), - [sym_function_statement] = STATE(1535), - [sym_return_statement] = STATE(1535), - [sym_interface_statement] = STATE(1535), - [sym_using_statement] = STATE(1535), - [sym_class_statement] = STATE(1535), - [sym_object_access] = STATE(3567), - [sym_stream_definition] = STATE(1535), - [sym_input_close_statement] = STATE(1535), - [sym_output_close_statement] = STATE(1535), - [sym__stream_statement] = STATE(1535), - [sym_input_stream_statement] = STATE(1537), - [sym_output_stream_statement] = STATE(1537), - [sym_do_block] = STATE(1535), - [sym_case_statement] = STATE(1535), - [sym_for_statement] = STATE(1535), - [sym_find_statement] = STATE(1535), - [sym_abl_statement] = STATE(1535), - [sym_assign_statement] = STATE(1535), - [sym_catch_statement] = STATE(1535), - [sym_finally_statement] = STATE(1535), - [sym_accumulate_statement] = STATE(1535), - [sym_undo_statement] = STATE(1535), - [sym_error_scope_statement] = STATE(1535), - [sym_temp_table_definition] = STATE(1535), - [sym_on_statement] = STATE(1535), - [sym__statement] = STATE(1538), - [aux_sym_source_code_repeat1] = STATE(276), - [sym_identifier] = ACTIONS(227), + [sym_assignment] = STATE(4463), + [sym_variable_definition] = STATE(1550), + [sym_variable_assignment] = STATE(1550), + [sym_buffer_definition] = STATE(1550), + [sym_query_definition] = STATE(1550), + [sym_function_call_statement] = STATE(1550), + [sym_function_call] = STATE(4558), + [sym_if_statement] = STATE(1550), + [sym_label] = STATE(1551), + [sym_repeat_statement] = STATE(1550), + [sym_procedure_statement] = STATE(1550), + [sym_procedure_parameter_definition] = STATE(1550), + [sym_function_statement] = STATE(1550), + [sym_return_statement] = STATE(1550), + [sym_interface_statement] = STATE(1550), + [sym_using_statement] = STATE(1550), + [sym_class_statement] = STATE(1550), + [sym_object_access] = STATE(3661), + [sym_stream_definition] = STATE(1550), + [sym_input_close_statement] = STATE(1550), + [sym_output_close_statement] = STATE(1550), + [sym__stream_statement] = STATE(1550), + [sym_input_stream_statement] = STATE(1552), + [sym_output_stream_statement] = STATE(1552), + [sym_do_block] = STATE(1550), + [sym_case_statement] = STATE(1550), + [sym_for_statement] = STATE(1550), + [sym_find_statement] = STATE(1550), + [sym_abl_statement] = STATE(1550), + [sym_assign_statement] = STATE(1550), + [sym_catch_statement] = STATE(1550), + [sym_finally_statement] = STATE(1550), + [sym_accumulate_statement] = STATE(1550), + [sym_undo_statement] = STATE(1550), + [sym_error_scope_statement] = STATE(1550), + [sym_temp_table_definition] = STATE(1550), + [sym_on_statement] = STATE(1550), + [sym__statement] = STATE(1553), + [aux_sym_source_code_repeat1] = STATE(286), + [sym_identifier] = ACTIONS(263), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), [anon_sym_LBRACE] = ACTIONS(7), - [aux_sym__block_terminator_token1] = ACTIONS(299), - [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), + [aux_sym__block_terminator_token1] = ACTIONS(323), + [aux_sym_input_expression_token1] = ACTIONS(267), + [aux_sym_primitive_type_token19] = ACTIONS(269), + [aux_sym_variable_definition_token1] = ACTIONS(271), + [aux_sym_variable_definition_token2] = ACTIONS(273), + [aux_sym_buffer_definition_token2] = ACTIONS(275), + [aux_sym_argument_mode_token1] = ACTIONS(277), + [aux_sym_if_statement_token1] = ACTIONS(279), + [aux_sym_repeat_statement_token1] = ACTIONS(281), + [aux_sym__procedure_terminator_token1] = ACTIONS(283), + [aux_sym_procedure_parameter_definition_token1] = ACTIONS(285), + [aux_sym__function_terminator_token1] = ACTIONS(287), + [aux_sym_interface_statement_token1] = ACTIONS(289), + [aux_sym_using_statement_token1] = ACTIONS(291), + [aux_sym_on_error_phrase_token1] = ACTIONS(293), + [aux_sym_on_error_phrase_token3] = ACTIONS(295), + [aux_sym_do_block_token1] = ACTIONS(297), + [aux_sym__case_terminator_token1] = ACTIONS(299), + [aux_sym_find_statement_token1] = ACTIONS(301), + [aux_sym_assign_statement_token1] = ACTIONS(303), + [aux_sym_catch_statement_token1] = ACTIONS(305), + [aux_sym_finally_statement_token1] = ACTIONS(307), + [aux_sym_accumulate_statement_token1] = ACTIONS(309), + [anon_sym_ROUTINE_DASHLEVEL] = ACTIONS(311), + [anon_sym_BLOCK_DASHLEVEL] = ACTIONS(311), }, [101] = { - [sym_body] = STATE(3910), + [sym_body] = STATE(3858), [sym_comment] = STATE(101), - [sym_qualified_name] = STATE(4733), - [sym__block_terminator] = STATE(1297), + [sym_qualified_name] = STATE(4814), + [sym__block_terminator] = STATE(865), [sym_include] = STATE(101), - [sym_assignment] = STATE(4314), - [sym_variable_definition] = STATE(1535), - [sym_variable_assignment] = STATE(1535), - [sym_buffer_definition] = STATE(1535), - [sym_query_definition] = STATE(1535), - [sym_function_call_statement] = STATE(1535), - [sym_function_call] = STATE(4086), - [sym_if_statement] = STATE(1535), - [sym_label] = STATE(1536), - [sym_repeat_statement] = STATE(1535), - [sym_procedure_statement] = STATE(1535), - [sym_procedure_parameter_definition] = STATE(1535), - [sym_function_statement] = STATE(1535), - [sym_return_statement] = STATE(1535), - [sym_interface_statement] = STATE(1535), - [sym_using_statement] = STATE(1535), - [sym_class_statement] = STATE(1535), - [sym_object_access] = STATE(3567), - [sym_stream_definition] = STATE(1535), - [sym_input_close_statement] = STATE(1535), - [sym_output_close_statement] = STATE(1535), - [sym__stream_statement] = STATE(1535), - [sym_input_stream_statement] = STATE(1537), - [sym_output_stream_statement] = STATE(1537), - [sym_do_block] = STATE(1535), - [sym_case_statement] = STATE(1535), - [sym_for_statement] = STATE(1535), - [sym_find_statement] = STATE(1535), - [sym_abl_statement] = STATE(1535), - [sym_assign_statement] = STATE(1535), - [sym_catch_statement] = STATE(1535), - [sym_finally_statement] = STATE(1535), - [sym_accumulate_statement] = STATE(1535), - [sym_undo_statement] = STATE(1535), - [sym_error_scope_statement] = STATE(1535), - [sym_temp_table_definition] = STATE(1535), - [sym_on_statement] = STATE(1535), - [sym__statement] = STATE(1538), - [aux_sym_source_code_repeat1] = STATE(276), - [sym_identifier] = ACTIONS(227), + [sym_assignment] = STATE(4463), + [sym_variable_definition] = STATE(1550), + [sym_variable_assignment] = STATE(1550), + [sym_buffer_definition] = STATE(1550), + [sym_query_definition] = STATE(1550), + [sym_function_call_statement] = STATE(1550), + [sym_function_call] = STATE(4558), + [sym_if_statement] = STATE(1550), + [sym_label] = STATE(1551), + [sym_repeat_statement] = STATE(1550), + [sym_procedure_statement] = STATE(1550), + [sym_procedure_parameter_definition] = STATE(1550), + [sym_function_statement] = STATE(1550), + [sym_return_statement] = STATE(1550), + [sym_interface_statement] = STATE(1550), + [sym_using_statement] = STATE(1550), + [sym_class_statement] = STATE(1550), + [sym_object_access] = STATE(3661), + [sym_stream_definition] = STATE(1550), + [sym_input_close_statement] = STATE(1550), + [sym_output_close_statement] = STATE(1550), + [sym__stream_statement] = STATE(1550), + [sym_input_stream_statement] = STATE(1552), + [sym_output_stream_statement] = STATE(1552), + [sym_do_block] = STATE(1550), + [sym_case_statement] = STATE(1550), + [sym_for_statement] = STATE(1550), + [sym_find_statement] = STATE(1550), + [sym_abl_statement] = STATE(1550), + [sym_assign_statement] = STATE(1550), + [sym_catch_statement] = STATE(1550), + [sym_finally_statement] = STATE(1550), + [sym_accumulate_statement] = STATE(1550), + [sym_undo_statement] = STATE(1550), + [sym_error_scope_statement] = STATE(1550), + [sym_temp_table_definition] = STATE(1550), + [sym_on_statement] = STATE(1550), + [sym__statement] = STATE(1553), + [aux_sym_source_code_repeat1] = STATE(286), + [sym_identifier] = ACTIONS(263), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), [anon_sym_LBRACE] = ACTIONS(7), - [aux_sym__block_terminator_token1] = ACTIONS(299), - [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), + [aux_sym__block_terminator_token1] = ACTIONS(323), + [aux_sym_input_expression_token1] = ACTIONS(267), + [aux_sym_primitive_type_token19] = ACTIONS(269), + [aux_sym_variable_definition_token1] = ACTIONS(271), + [aux_sym_variable_definition_token2] = ACTIONS(273), + [aux_sym_buffer_definition_token2] = ACTIONS(275), + [aux_sym_argument_mode_token1] = ACTIONS(277), + [aux_sym_if_statement_token1] = ACTIONS(279), + [aux_sym_repeat_statement_token1] = ACTIONS(281), + [aux_sym__procedure_terminator_token1] = ACTIONS(283), + [aux_sym_procedure_parameter_definition_token1] = ACTIONS(285), + [aux_sym__function_terminator_token1] = ACTIONS(287), + [aux_sym_interface_statement_token1] = ACTIONS(289), + [aux_sym_using_statement_token1] = ACTIONS(291), + [aux_sym_on_error_phrase_token1] = ACTIONS(293), + [aux_sym_on_error_phrase_token3] = ACTIONS(295), + [aux_sym_do_block_token1] = ACTIONS(297), + [aux_sym__case_terminator_token1] = ACTIONS(299), + [aux_sym_find_statement_token1] = ACTIONS(301), + [aux_sym_assign_statement_token1] = ACTIONS(303), + [aux_sym_catch_statement_token1] = ACTIONS(305), + [aux_sym_finally_statement_token1] = ACTIONS(307), + [aux_sym_accumulate_statement_token1] = ACTIONS(309), + [anon_sym_ROUTINE_DASHLEVEL] = ACTIONS(311), + [anon_sym_BLOCK_DASHLEVEL] = ACTIONS(311), }, [102] = { - [sym_body] = STATE(3689), + [sym_body] = STATE(3860), [sym_comment] = STATE(102), - [sym_qualified_name] = STATE(4733), - [sym__block_terminator] = STATE(3381), + [sym_qualified_name] = STATE(4814), + [sym__block_terminator] = STATE(871), [sym_include] = STATE(102), - [sym_assignment] = STATE(4314), - [sym_variable_definition] = STATE(1535), - [sym_variable_assignment] = STATE(1535), - [sym_buffer_definition] = STATE(1535), - [sym_query_definition] = STATE(1535), - [sym_function_call_statement] = STATE(1535), - [sym_function_call] = STATE(4086), - [sym_if_statement] = STATE(1535), - [sym_label] = STATE(1536), - [sym_repeat_statement] = STATE(1535), - [sym_procedure_statement] = STATE(1535), - [sym_procedure_parameter_definition] = STATE(1535), - [sym_function_statement] = STATE(1535), - [sym_return_statement] = STATE(1535), - [sym_interface_statement] = STATE(1535), - [sym_using_statement] = STATE(1535), - [sym_class_statement] = STATE(1535), - [sym_object_access] = STATE(3567), - [sym_stream_definition] = STATE(1535), - [sym_input_close_statement] = STATE(1535), - [sym_output_close_statement] = STATE(1535), - [sym__stream_statement] = STATE(1535), - [sym_input_stream_statement] = STATE(1537), - [sym_output_stream_statement] = STATE(1537), - [sym_do_block] = STATE(1535), - [sym_case_statement] = STATE(1535), - [sym_for_statement] = STATE(1535), - [sym_find_statement] = STATE(1535), - [sym_abl_statement] = STATE(1535), - [sym_assign_statement] = STATE(1535), - [sym_catch_statement] = STATE(1535), - [sym_finally_statement] = STATE(1535), - [sym_accumulate_statement] = STATE(1535), - [sym_undo_statement] = STATE(1535), - [sym_error_scope_statement] = STATE(1535), - [sym_temp_table_definition] = STATE(1535), - [sym_on_statement] = STATE(1535), - [sym__statement] = STATE(1538), - [aux_sym_source_code_repeat1] = STATE(276), - [sym_identifier] = ACTIONS(227), + [sym_assignment] = STATE(4463), + [sym_variable_definition] = STATE(1550), + [sym_variable_assignment] = STATE(1550), + [sym_buffer_definition] = STATE(1550), + [sym_query_definition] = STATE(1550), + [sym_function_call_statement] = STATE(1550), + [sym_function_call] = STATE(4558), + [sym_if_statement] = STATE(1550), + [sym_label] = STATE(1551), + [sym_repeat_statement] = STATE(1550), + [sym_procedure_statement] = STATE(1550), + [sym_procedure_parameter_definition] = STATE(1550), + [sym_function_statement] = STATE(1550), + [sym_return_statement] = STATE(1550), + [sym_interface_statement] = STATE(1550), + [sym_using_statement] = STATE(1550), + [sym_class_statement] = STATE(1550), + [sym_object_access] = STATE(3661), + [sym_stream_definition] = STATE(1550), + [sym_input_close_statement] = STATE(1550), + [sym_output_close_statement] = STATE(1550), + [sym__stream_statement] = STATE(1550), + [sym_input_stream_statement] = STATE(1552), + [sym_output_stream_statement] = STATE(1552), + [sym_do_block] = STATE(1550), + [sym_case_statement] = STATE(1550), + [sym_for_statement] = STATE(1550), + [sym_find_statement] = STATE(1550), + [sym_abl_statement] = STATE(1550), + [sym_assign_statement] = STATE(1550), + [sym_catch_statement] = STATE(1550), + [sym_finally_statement] = STATE(1550), + [sym_accumulate_statement] = STATE(1550), + [sym_undo_statement] = STATE(1550), + [sym_error_scope_statement] = STATE(1550), + [sym_temp_table_definition] = STATE(1550), + [sym_on_statement] = STATE(1550), + [sym__statement] = STATE(1553), + [aux_sym_source_code_repeat1] = STATE(286), + [sym_identifier] = ACTIONS(263), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), [anon_sym_LBRACE] = ACTIONS(7), - [aux_sym__block_terminator_token1] = ACTIONS(297), - [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), + [aux_sym__block_terminator_token1] = ACTIONS(323), + [aux_sym_input_expression_token1] = ACTIONS(267), + [aux_sym_primitive_type_token19] = ACTIONS(269), + [aux_sym_variable_definition_token1] = ACTIONS(271), + [aux_sym_variable_definition_token2] = ACTIONS(273), + [aux_sym_buffer_definition_token2] = ACTIONS(275), + [aux_sym_argument_mode_token1] = ACTIONS(277), + [aux_sym_if_statement_token1] = ACTIONS(279), + [aux_sym_repeat_statement_token1] = ACTIONS(281), + [aux_sym__procedure_terminator_token1] = ACTIONS(283), + [aux_sym_procedure_parameter_definition_token1] = ACTIONS(285), + [aux_sym__function_terminator_token1] = ACTIONS(287), + [aux_sym_interface_statement_token1] = ACTIONS(289), + [aux_sym_using_statement_token1] = ACTIONS(291), + [aux_sym_on_error_phrase_token1] = ACTIONS(293), + [aux_sym_on_error_phrase_token3] = ACTIONS(295), + [aux_sym_do_block_token1] = ACTIONS(297), + [aux_sym__case_terminator_token1] = ACTIONS(299), + [aux_sym_find_statement_token1] = ACTIONS(301), + [aux_sym_assign_statement_token1] = ACTIONS(303), + [aux_sym_catch_statement_token1] = ACTIONS(305), + [aux_sym_finally_statement_token1] = ACTIONS(307), + [aux_sym_accumulate_statement_token1] = ACTIONS(309), + [anon_sym_ROUTINE_DASHLEVEL] = ACTIONS(311), + [anon_sym_BLOCK_DASHLEVEL] = ACTIONS(311), }, [103] = { - [sym_body] = STATE(3586), + [sym_body] = STATE(3760), [sym_comment] = STATE(103), - [sym_qualified_name] = STATE(4733), - [sym__block_terminator] = STATE(3362), + [sym_qualified_name] = STATE(4814), + [sym__block_terminator] = STATE(1199), [sym_include] = STATE(103), - [sym_assignment] = STATE(4314), - [sym_variable_definition] = STATE(1535), - [sym_variable_assignment] = STATE(1535), - [sym_buffer_definition] = STATE(1535), - [sym_query_definition] = STATE(1535), - [sym_function_call_statement] = STATE(1535), - [sym_function_call] = STATE(4086), - [sym_if_statement] = STATE(1535), - [sym_label] = STATE(1536), - [sym_repeat_statement] = STATE(1535), - [sym_procedure_statement] = STATE(1535), - [sym_procedure_parameter_definition] = STATE(1535), - [sym_function_statement] = STATE(1535), - [sym_return_statement] = STATE(1535), - [sym_interface_statement] = STATE(1535), - [sym_using_statement] = STATE(1535), - [sym_class_statement] = STATE(1535), - [sym_object_access] = STATE(3567), - [sym_stream_definition] = STATE(1535), - [sym_input_close_statement] = STATE(1535), - [sym_output_close_statement] = STATE(1535), - [sym__stream_statement] = STATE(1535), - [sym_input_stream_statement] = STATE(1537), - [sym_output_stream_statement] = STATE(1537), - [sym_do_block] = STATE(1535), - [sym_case_statement] = STATE(1535), - [sym_for_statement] = STATE(1535), - [sym_find_statement] = STATE(1535), - [sym_abl_statement] = STATE(1535), - [sym_assign_statement] = STATE(1535), - [sym_catch_statement] = STATE(1535), - [sym_finally_statement] = STATE(1535), - [sym_accumulate_statement] = STATE(1535), - [sym_undo_statement] = STATE(1535), - [sym_error_scope_statement] = STATE(1535), - [sym_temp_table_definition] = STATE(1535), - [sym_on_statement] = STATE(1535), - [sym__statement] = STATE(1538), - [aux_sym_source_code_repeat1] = STATE(276), - [sym_identifier] = ACTIONS(227), + [sym_assignment] = STATE(4463), + [sym_variable_definition] = STATE(1550), + [sym_variable_assignment] = STATE(1550), + [sym_buffer_definition] = STATE(1550), + [sym_query_definition] = STATE(1550), + [sym_function_call_statement] = STATE(1550), + [sym_function_call] = STATE(4558), + [sym_if_statement] = STATE(1550), + [sym_label] = STATE(1551), + [sym_repeat_statement] = STATE(1550), + [sym_procedure_statement] = STATE(1550), + [sym_procedure_parameter_definition] = STATE(1550), + [sym_function_statement] = STATE(1550), + [sym_return_statement] = STATE(1550), + [sym_interface_statement] = STATE(1550), + [sym_using_statement] = STATE(1550), + [sym_class_statement] = STATE(1550), + [sym_object_access] = STATE(3661), + [sym_stream_definition] = STATE(1550), + [sym_input_close_statement] = STATE(1550), + [sym_output_close_statement] = STATE(1550), + [sym__stream_statement] = STATE(1550), + [sym_input_stream_statement] = STATE(1552), + [sym_output_stream_statement] = STATE(1552), + [sym_do_block] = STATE(1550), + [sym_case_statement] = STATE(1550), + [sym_for_statement] = STATE(1550), + [sym_find_statement] = STATE(1550), + [sym_abl_statement] = STATE(1550), + [sym_assign_statement] = STATE(1550), + [sym_catch_statement] = STATE(1550), + [sym_finally_statement] = STATE(1550), + [sym_accumulate_statement] = STATE(1550), + [sym_undo_statement] = STATE(1550), + [sym_error_scope_statement] = STATE(1550), + [sym_temp_table_definition] = STATE(1550), + [sym_on_statement] = STATE(1550), + [sym__statement] = STATE(1553), + [aux_sym_source_code_repeat1] = STATE(286), + [sym_identifier] = ACTIONS(263), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), [anon_sym_LBRACE] = ACTIONS(7), - [aux_sym__block_terminator_token1] = ACTIONS(297), - [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), + [aux_sym__block_terminator_token1] = ACTIONS(325), + [aux_sym_input_expression_token1] = ACTIONS(267), + [aux_sym_primitive_type_token19] = ACTIONS(269), + [aux_sym_variable_definition_token1] = ACTIONS(271), + [aux_sym_variable_definition_token2] = ACTIONS(273), + [aux_sym_buffer_definition_token2] = ACTIONS(275), + [aux_sym_argument_mode_token1] = ACTIONS(277), + [aux_sym_if_statement_token1] = ACTIONS(279), + [aux_sym_repeat_statement_token1] = ACTIONS(281), + [aux_sym__procedure_terminator_token1] = ACTIONS(283), + [aux_sym_procedure_parameter_definition_token1] = ACTIONS(285), + [aux_sym__function_terminator_token1] = ACTIONS(287), + [aux_sym_interface_statement_token1] = ACTIONS(289), + [aux_sym_using_statement_token1] = ACTIONS(291), + [aux_sym_on_error_phrase_token1] = ACTIONS(293), + [aux_sym_on_error_phrase_token3] = ACTIONS(295), + [aux_sym_do_block_token1] = ACTIONS(297), + [aux_sym__case_terminator_token1] = ACTIONS(299), + [aux_sym_find_statement_token1] = ACTIONS(301), + [aux_sym_assign_statement_token1] = ACTIONS(303), + [aux_sym_catch_statement_token1] = ACTIONS(305), + [aux_sym_finally_statement_token1] = ACTIONS(307), + [aux_sym_accumulate_statement_token1] = ACTIONS(309), + [anon_sym_ROUTINE_DASHLEVEL] = ACTIONS(311), + [anon_sym_BLOCK_DASHLEVEL] = ACTIONS(311), }, [104] = { - [sym_body] = STATE(3706), + [sym_body] = STATE(3869), [sym_comment] = STATE(104), - [sym_qualified_name] = STATE(4733), - [sym__block_terminator] = STATE(3388), + [sym_qualified_name] = STATE(4814), + [sym__block_terminator] = STATE(878), [sym_include] = STATE(104), - [sym_assignment] = STATE(4314), - [sym_variable_definition] = STATE(1535), - [sym_variable_assignment] = STATE(1535), - [sym_buffer_definition] = STATE(1535), - [sym_query_definition] = STATE(1535), - [sym_function_call_statement] = STATE(1535), - [sym_function_call] = STATE(4086), - [sym_if_statement] = STATE(1535), - [sym_label] = STATE(1536), - [sym_repeat_statement] = STATE(1535), - [sym_procedure_statement] = STATE(1535), - [sym_procedure_parameter_definition] = STATE(1535), - [sym_function_statement] = STATE(1535), - [sym_return_statement] = STATE(1535), - [sym_interface_statement] = STATE(1535), - [sym_using_statement] = STATE(1535), - [sym_class_statement] = STATE(1535), - [sym_object_access] = STATE(3567), - [sym_stream_definition] = STATE(1535), - [sym_input_close_statement] = STATE(1535), - [sym_output_close_statement] = STATE(1535), - [sym__stream_statement] = STATE(1535), - [sym_input_stream_statement] = STATE(1537), - [sym_output_stream_statement] = STATE(1537), - [sym_do_block] = STATE(1535), - [sym_case_statement] = STATE(1535), - [sym_for_statement] = STATE(1535), - [sym_find_statement] = STATE(1535), - [sym_abl_statement] = STATE(1535), - [sym_assign_statement] = STATE(1535), - [sym_catch_statement] = STATE(1535), - [sym_finally_statement] = STATE(1535), - [sym_accumulate_statement] = STATE(1535), - [sym_undo_statement] = STATE(1535), - [sym_error_scope_statement] = STATE(1535), - [sym_temp_table_definition] = STATE(1535), - [sym_on_statement] = STATE(1535), - [sym__statement] = STATE(1538), - [aux_sym_source_code_repeat1] = STATE(276), - [sym_identifier] = ACTIONS(227), + [sym_assignment] = STATE(4463), + [sym_variable_definition] = STATE(1550), + [sym_variable_assignment] = STATE(1550), + [sym_buffer_definition] = STATE(1550), + [sym_query_definition] = STATE(1550), + [sym_function_call_statement] = STATE(1550), + [sym_function_call] = STATE(4558), + [sym_if_statement] = STATE(1550), + [sym_label] = STATE(1551), + [sym_repeat_statement] = STATE(1550), + [sym_procedure_statement] = STATE(1550), + [sym_procedure_parameter_definition] = STATE(1550), + [sym_function_statement] = STATE(1550), + [sym_return_statement] = STATE(1550), + [sym_interface_statement] = STATE(1550), + [sym_using_statement] = STATE(1550), + [sym_class_statement] = STATE(1550), + [sym_object_access] = STATE(3661), + [sym_stream_definition] = STATE(1550), + [sym_input_close_statement] = STATE(1550), + [sym_output_close_statement] = STATE(1550), + [sym__stream_statement] = STATE(1550), + [sym_input_stream_statement] = STATE(1552), + [sym_output_stream_statement] = STATE(1552), + [sym_do_block] = STATE(1550), + [sym_case_statement] = STATE(1550), + [sym_for_statement] = STATE(1550), + [sym_find_statement] = STATE(1550), + [sym_abl_statement] = STATE(1550), + [sym_assign_statement] = STATE(1550), + [sym_catch_statement] = STATE(1550), + [sym_finally_statement] = STATE(1550), + [sym_accumulate_statement] = STATE(1550), + [sym_undo_statement] = STATE(1550), + [sym_error_scope_statement] = STATE(1550), + [sym_temp_table_definition] = STATE(1550), + [sym_on_statement] = STATE(1550), + [sym__statement] = STATE(1553), + [aux_sym_source_code_repeat1] = STATE(286), + [sym_identifier] = ACTIONS(263), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), [anon_sym_LBRACE] = ACTIONS(7), - [aux_sym__block_terminator_token1] = ACTIONS(297), - [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), + [aux_sym__block_terminator_token1] = ACTIONS(323), + [aux_sym_input_expression_token1] = ACTIONS(267), + [aux_sym_primitive_type_token19] = ACTIONS(269), + [aux_sym_variable_definition_token1] = ACTIONS(271), + [aux_sym_variable_definition_token2] = ACTIONS(273), + [aux_sym_buffer_definition_token2] = ACTIONS(275), + [aux_sym_argument_mode_token1] = ACTIONS(277), + [aux_sym_if_statement_token1] = ACTIONS(279), + [aux_sym_repeat_statement_token1] = ACTIONS(281), + [aux_sym__procedure_terminator_token1] = ACTIONS(283), + [aux_sym_procedure_parameter_definition_token1] = ACTIONS(285), + [aux_sym__function_terminator_token1] = ACTIONS(287), + [aux_sym_interface_statement_token1] = ACTIONS(289), + [aux_sym_using_statement_token1] = ACTIONS(291), + [aux_sym_on_error_phrase_token1] = ACTIONS(293), + [aux_sym_on_error_phrase_token3] = ACTIONS(295), + [aux_sym_do_block_token1] = ACTIONS(297), + [aux_sym__case_terminator_token1] = ACTIONS(299), + [aux_sym_find_statement_token1] = ACTIONS(301), + [aux_sym_assign_statement_token1] = ACTIONS(303), + [aux_sym_catch_statement_token1] = ACTIONS(305), + [aux_sym_finally_statement_token1] = ACTIONS(307), + [aux_sym_accumulate_statement_token1] = ACTIONS(309), + [anon_sym_ROUTINE_DASHLEVEL] = ACTIONS(311), + [anon_sym_BLOCK_DASHLEVEL] = ACTIONS(311), }, [105] = { - [sym_body] = STATE(3665), + [sym_body] = STATE(4009), [sym_comment] = STATE(105), - [sym_qualified_name] = STATE(4733), - [sym__block_terminator] = STATE(1473), + [sym_qualified_name] = STATE(4814), + [sym__block_terminator] = STATE(1002), [sym_include] = STATE(105), - [sym_assignment] = STATE(4314), - [sym_variable_definition] = STATE(1535), - [sym_variable_assignment] = STATE(1535), - [sym_buffer_definition] = STATE(1535), - [sym_query_definition] = STATE(1535), - [sym_function_call_statement] = STATE(1535), - [sym_function_call] = STATE(4086), - [sym_if_statement] = STATE(1535), - [sym_label] = STATE(1536), - [sym_repeat_statement] = STATE(1535), - [sym_procedure_statement] = STATE(1535), - [sym_procedure_parameter_definition] = STATE(1535), - [sym_function_statement] = STATE(1535), - [sym_return_statement] = STATE(1535), - [sym_interface_statement] = STATE(1535), - [sym_using_statement] = STATE(1535), - [sym_class_statement] = STATE(1535), - [sym_object_access] = STATE(3567), - [sym_stream_definition] = STATE(1535), - [sym_input_close_statement] = STATE(1535), - [sym_output_close_statement] = STATE(1535), - [sym__stream_statement] = STATE(1535), - [sym_input_stream_statement] = STATE(1537), - [sym_output_stream_statement] = STATE(1537), - [sym_do_block] = STATE(1535), - [sym_case_statement] = STATE(1535), - [sym_for_statement] = STATE(1535), - [sym_find_statement] = STATE(1535), - [sym_abl_statement] = STATE(1535), - [sym_assign_statement] = STATE(1535), - [sym_catch_statement] = STATE(1535), - [sym_finally_statement] = STATE(1535), - [sym_accumulate_statement] = STATE(1535), - [sym_undo_statement] = STATE(1535), - [sym_error_scope_statement] = STATE(1535), - [sym_temp_table_definition] = STATE(1535), - [sym_on_statement] = STATE(1535), - [sym__statement] = STATE(1538), - [aux_sym_source_code_repeat1] = STATE(276), - [sym_identifier] = ACTIONS(227), + [sym_assignment] = STATE(4463), + [sym_variable_definition] = STATE(1550), + [sym_variable_assignment] = STATE(1550), + [sym_buffer_definition] = STATE(1550), + [sym_query_definition] = STATE(1550), + [sym_function_call_statement] = STATE(1550), + [sym_function_call] = STATE(4558), + [sym_if_statement] = STATE(1550), + [sym_label] = STATE(1551), + [sym_repeat_statement] = STATE(1550), + [sym_procedure_statement] = STATE(1550), + [sym_procedure_parameter_definition] = STATE(1550), + [sym_function_statement] = STATE(1550), + [sym_return_statement] = STATE(1550), + [sym_interface_statement] = STATE(1550), + [sym_using_statement] = STATE(1550), + [sym_class_statement] = STATE(1550), + [sym_object_access] = STATE(3661), + [sym_stream_definition] = STATE(1550), + [sym_input_close_statement] = STATE(1550), + [sym_output_close_statement] = STATE(1550), + [sym__stream_statement] = STATE(1550), + [sym_input_stream_statement] = STATE(1552), + [sym_output_stream_statement] = STATE(1552), + [sym_do_block] = STATE(1550), + [sym_case_statement] = STATE(1550), + [sym_for_statement] = STATE(1550), + [sym_find_statement] = STATE(1550), + [sym_abl_statement] = STATE(1550), + [sym_assign_statement] = STATE(1550), + [sym_catch_statement] = STATE(1550), + [sym_finally_statement] = STATE(1550), + [sym_accumulate_statement] = STATE(1550), + [sym_undo_statement] = STATE(1550), + [sym_error_scope_statement] = STATE(1550), + [sym_temp_table_definition] = STATE(1550), + [sym_on_statement] = STATE(1550), + [sym__statement] = STATE(1553), + [aux_sym_source_code_repeat1] = STATE(286), + [sym_identifier] = ACTIONS(263), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), [anon_sym_LBRACE] = ACTIONS(7), - [aux_sym__block_terminator_token1] = ACTIONS(299), - [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), + [aux_sym__block_terminator_token1] = ACTIONS(321), + [aux_sym_input_expression_token1] = ACTIONS(267), + [aux_sym_primitive_type_token19] = ACTIONS(269), + [aux_sym_variable_definition_token1] = ACTIONS(271), + [aux_sym_variable_definition_token2] = ACTIONS(273), + [aux_sym_buffer_definition_token2] = ACTIONS(275), + [aux_sym_argument_mode_token1] = ACTIONS(277), + [aux_sym_if_statement_token1] = ACTIONS(279), + [aux_sym_repeat_statement_token1] = ACTIONS(281), + [aux_sym__procedure_terminator_token1] = ACTIONS(283), + [aux_sym_procedure_parameter_definition_token1] = ACTIONS(285), + [aux_sym__function_terminator_token1] = ACTIONS(287), + [aux_sym_interface_statement_token1] = ACTIONS(289), + [aux_sym_using_statement_token1] = ACTIONS(291), + [aux_sym_on_error_phrase_token1] = ACTIONS(293), + [aux_sym_on_error_phrase_token3] = ACTIONS(295), + [aux_sym_do_block_token1] = ACTIONS(297), + [aux_sym__case_terminator_token1] = ACTIONS(299), + [aux_sym_find_statement_token1] = ACTIONS(301), + [aux_sym_assign_statement_token1] = ACTIONS(303), + [aux_sym_catch_statement_token1] = ACTIONS(305), + [aux_sym_finally_statement_token1] = ACTIONS(307), + [aux_sym_accumulate_statement_token1] = ACTIONS(309), + [anon_sym_ROUTINE_DASHLEVEL] = ACTIONS(311), + [anon_sym_BLOCK_DASHLEVEL] = ACTIONS(311), }, [106] = { - [sym_body] = STATE(3626), + [sym_body] = STATE(3873), [sym_comment] = STATE(106), - [sym_qualified_name] = STATE(4733), - [sym__block_terminator] = STATE(1461), + [sym_qualified_name] = STATE(4814), + [sym__block_terminator] = STATE(895), [sym_include] = STATE(106), - [sym_assignment] = STATE(4314), - [sym_variable_definition] = STATE(1535), - [sym_variable_assignment] = STATE(1535), - [sym_buffer_definition] = STATE(1535), - [sym_query_definition] = STATE(1535), - [sym_function_call_statement] = STATE(1535), - [sym_function_call] = STATE(4086), - [sym_if_statement] = STATE(1535), - [sym_label] = STATE(1536), - [sym_repeat_statement] = STATE(1535), - [sym_procedure_statement] = STATE(1535), - [sym_procedure_parameter_definition] = STATE(1535), - [sym_function_statement] = STATE(1535), - [sym_return_statement] = STATE(1535), - [sym_interface_statement] = STATE(1535), - [sym_using_statement] = STATE(1535), - [sym_class_statement] = STATE(1535), - [sym_object_access] = STATE(3567), - [sym_stream_definition] = STATE(1535), - [sym_input_close_statement] = STATE(1535), - [sym_output_close_statement] = STATE(1535), - [sym__stream_statement] = STATE(1535), - [sym_input_stream_statement] = STATE(1537), - [sym_output_stream_statement] = STATE(1537), - [sym_do_block] = STATE(1535), - [sym_case_statement] = STATE(1535), - [sym_for_statement] = STATE(1535), - [sym_find_statement] = STATE(1535), - [sym_abl_statement] = STATE(1535), - [sym_assign_statement] = STATE(1535), - [sym_catch_statement] = STATE(1535), - [sym_finally_statement] = STATE(1535), - [sym_accumulate_statement] = STATE(1535), - [sym_undo_statement] = STATE(1535), - [sym_error_scope_statement] = STATE(1535), - [sym_temp_table_definition] = STATE(1535), - [sym_on_statement] = STATE(1535), - [sym__statement] = STATE(1538), - [aux_sym_source_code_repeat1] = STATE(276), - [sym_identifier] = ACTIONS(227), + [sym_assignment] = STATE(4463), + [sym_variable_definition] = STATE(1550), + [sym_variable_assignment] = STATE(1550), + [sym_buffer_definition] = STATE(1550), + [sym_query_definition] = STATE(1550), + [sym_function_call_statement] = STATE(1550), + [sym_function_call] = STATE(4558), + [sym_if_statement] = STATE(1550), + [sym_label] = STATE(1551), + [sym_repeat_statement] = STATE(1550), + [sym_procedure_statement] = STATE(1550), + [sym_procedure_parameter_definition] = STATE(1550), + [sym_function_statement] = STATE(1550), + [sym_return_statement] = STATE(1550), + [sym_interface_statement] = STATE(1550), + [sym_using_statement] = STATE(1550), + [sym_class_statement] = STATE(1550), + [sym_object_access] = STATE(3661), + [sym_stream_definition] = STATE(1550), + [sym_input_close_statement] = STATE(1550), + [sym_output_close_statement] = STATE(1550), + [sym__stream_statement] = STATE(1550), + [sym_input_stream_statement] = STATE(1552), + [sym_output_stream_statement] = STATE(1552), + [sym_do_block] = STATE(1550), + [sym_case_statement] = STATE(1550), + [sym_for_statement] = STATE(1550), + [sym_find_statement] = STATE(1550), + [sym_abl_statement] = STATE(1550), + [sym_assign_statement] = STATE(1550), + [sym_catch_statement] = STATE(1550), + [sym_finally_statement] = STATE(1550), + [sym_accumulate_statement] = STATE(1550), + [sym_undo_statement] = STATE(1550), + [sym_error_scope_statement] = STATE(1550), + [sym_temp_table_definition] = STATE(1550), + [sym_on_statement] = STATE(1550), + [sym__statement] = STATE(1553), + [aux_sym_source_code_repeat1] = STATE(286), + [sym_identifier] = ACTIONS(263), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), [anon_sym_LBRACE] = ACTIONS(7), - [aux_sym__block_terminator_token1] = ACTIONS(299), - [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), + [aux_sym__block_terminator_token1] = ACTIONS(323), + [aux_sym_input_expression_token1] = ACTIONS(267), + [aux_sym_primitive_type_token19] = ACTIONS(269), + [aux_sym_variable_definition_token1] = ACTIONS(271), + [aux_sym_variable_definition_token2] = ACTIONS(273), + [aux_sym_buffer_definition_token2] = ACTIONS(275), + [aux_sym_argument_mode_token1] = ACTIONS(277), + [aux_sym_if_statement_token1] = ACTIONS(279), + [aux_sym_repeat_statement_token1] = ACTIONS(281), + [aux_sym__procedure_terminator_token1] = ACTIONS(283), + [aux_sym_procedure_parameter_definition_token1] = ACTIONS(285), + [aux_sym__function_terminator_token1] = ACTIONS(287), + [aux_sym_interface_statement_token1] = ACTIONS(289), + [aux_sym_using_statement_token1] = ACTIONS(291), + [aux_sym_on_error_phrase_token1] = ACTIONS(293), + [aux_sym_on_error_phrase_token3] = ACTIONS(295), + [aux_sym_do_block_token1] = ACTIONS(297), + [aux_sym__case_terminator_token1] = ACTIONS(299), + [aux_sym_find_statement_token1] = ACTIONS(301), + [aux_sym_assign_statement_token1] = ACTIONS(303), + [aux_sym_catch_statement_token1] = ACTIONS(305), + [aux_sym_finally_statement_token1] = ACTIONS(307), + [aux_sym_accumulate_statement_token1] = ACTIONS(309), + [anon_sym_ROUTINE_DASHLEVEL] = ACTIONS(311), + [anon_sym_BLOCK_DASHLEVEL] = ACTIONS(311), }, [107] = { - [sym_body] = STATE(3625), + [sym_body] = STATE(4016), [sym_comment] = STATE(107), - [sym_qualified_name] = STATE(4733), - [sym__block_terminator] = STATE(1464), + [sym_qualified_name] = STATE(4814), + [sym__block_terminator] = STATE(1007), [sym_include] = STATE(107), - [sym_assignment] = STATE(4314), - [sym_variable_definition] = STATE(1535), - [sym_variable_assignment] = STATE(1535), - [sym_buffer_definition] = STATE(1535), - [sym_query_definition] = STATE(1535), - [sym_function_call_statement] = STATE(1535), - [sym_function_call] = STATE(4086), - [sym_if_statement] = STATE(1535), - [sym_label] = STATE(1536), - [sym_repeat_statement] = STATE(1535), - [sym_procedure_statement] = STATE(1535), - [sym_procedure_parameter_definition] = STATE(1535), - [sym_function_statement] = STATE(1535), - [sym_return_statement] = STATE(1535), - [sym_interface_statement] = STATE(1535), - [sym_using_statement] = STATE(1535), - [sym_class_statement] = STATE(1535), - [sym_object_access] = STATE(3567), - [sym_stream_definition] = STATE(1535), - [sym_input_close_statement] = STATE(1535), - [sym_output_close_statement] = STATE(1535), - [sym__stream_statement] = STATE(1535), - [sym_input_stream_statement] = STATE(1537), - [sym_output_stream_statement] = STATE(1537), - [sym_do_block] = STATE(1535), - [sym_case_statement] = STATE(1535), - [sym_for_statement] = STATE(1535), - [sym_find_statement] = STATE(1535), - [sym_abl_statement] = STATE(1535), - [sym_assign_statement] = STATE(1535), - [sym_catch_statement] = STATE(1535), - [sym_finally_statement] = STATE(1535), - [sym_accumulate_statement] = STATE(1535), - [sym_undo_statement] = STATE(1535), - [sym_error_scope_statement] = STATE(1535), - [sym_temp_table_definition] = STATE(1535), - [sym_on_statement] = STATE(1535), - [sym__statement] = STATE(1538), - [aux_sym_source_code_repeat1] = STATE(276), - [sym_identifier] = ACTIONS(227), + [sym_assignment] = STATE(4463), + [sym_variable_definition] = STATE(1550), + [sym_variable_assignment] = STATE(1550), + [sym_buffer_definition] = STATE(1550), + [sym_query_definition] = STATE(1550), + [sym_function_call_statement] = STATE(1550), + [sym_function_call] = STATE(4558), + [sym_if_statement] = STATE(1550), + [sym_label] = STATE(1551), + [sym_repeat_statement] = STATE(1550), + [sym_procedure_statement] = STATE(1550), + [sym_procedure_parameter_definition] = STATE(1550), + [sym_function_statement] = STATE(1550), + [sym_return_statement] = STATE(1550), + [sym_interface_statement] = STATE(1550), + [sym_using_statement] = STATE(1550), + [sym_class_statement] = STATE(1550), + [sym_object_access] = STATE(3661), + [sym_stream_definition] = STATE(1550), + [sym_input_close_statement] = STATE(1550), + [sym_output_close_statement] = STATE(1550), + [sym__stream_statement] = STATE(1550), + [sym_input_stream_statement] = STATE(1552), + [sym_output_stream_statement] = STATE(1552), + [sym_do_block] = STATE(1550), + [sym_case_statement] = STATE(1550), + [sym_for_statement] = STATE(1550), + [sym_find_statement] = STATE(1550), + [sym_abl_statement] = STATE(1550), + [sym_assign_statement] = STATE(1550), + [sym_catch_statement] = STATE(1550), + [sym_finally_statement] = STATE(1550), + [sym_accumulate_statement] = STATE(1550), + [sym_undo_statement] = STATE(1550), + [sym_error_scope_statement] = STATE(1550), + [sym_temp_table_definition] = STATE(1550), + [sym_on_statement] = STATE(1550), + [sym__statement] = STATE(1553), + [aux_sym_source_code_repeat1] = STATE(286), + [sym_identifier] = ACTIONS(263), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), [anon_sym_LBRACE] = ACTIONS(7), - [aux_sym__block_terminator_token1] = ACTIONS(299), - [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), + [aux_sym__block_terminator_token1] = ACTIONS(321), + [aux_sym_input_expression_token1] = ACTIONS(267), + [aux_sym_primitive_type_token19] = ACTIONS(269), + [aux_sym_variable_definition_token1] = ACTIONS(271), + [aux_sym_variable_definition_token2] = ACTIONS(273), + [aux_sym_buffer_definition_token2] = ACTIONS(275), + [aux_sym_argument_mode_token1] = ACTIONS(277), + [aux_sym_if_statement_token1] = ACTIONS(279), + [aux_sym_repeat_statement_token1] = ACTIONS(281), + [aux_sym__procedure_terminator_token1] = ACTIONS(283), + [aux_sym_procedure_parameter_definition_token1] = ACTIONS(285), + [aux_sym__function_terminator_token1] = ACTIONS(287), + [aux_sym_interface_statement_token1] = ACTIONS(289), + [aux_sym_using_statement_token1] = ACTIONS(291), + [aux_sym_on_error_phrase_token1] = ACTIONS(293), + [aux_sym_on_error_phrase_token3] = ACTIONS(295), + [aux_sym_do_block_token1] = ACTIONS(297), + [aux_sym__case_terminator_token1] = ACTIONS(299), + [aux_sym_find_statement_token1] = ACTIONS(301), + [aux_sym_assign_statement_token1] = ACTIONS(303), + [aux_sym_catch_statement_token1] = ACTIONS(305), + [aux_sym_finally_statement_token1] = ACTIONS(307), + [aux_sym_accumulate_statement_token1] = ACTIONS(309), + [anon_sym_ROUTINE_DASHLEVEL] = ACTIONS(311), + [anon_sym_BLOCK_DASHLEVEL] = ACTIONS(311), }, [108] = { - [sym_body] = STATE(3638), + [sym_body] = STATE(3893), [sym_comment] = STATE(108), - [sym_qualified_name] = STATE(4733), - [sym__block_terminator] = STATE(1129), + [sym_qualified_name] = STATE(4814), + [sym__block_terminator] = STATE(901), [sym_include] = STATE(108), - [sym_assignment] = STATE(4314), - [sym_variable_definition] = STATE(1535), - [sym_variable_assignment] = STATE(1535), - [sym_buffer_definition] = STATE(1535), - [sym_query_definition] = STATE(1535), - [sym_function_call_statement] = STATE(1535), - [sym_function_call] = STATE(4086), - [sym_if_statement] = STATE(1535), - [sym_label] = STATE(1536), - [sym_repeat_statement] = STATE(1535), - [sym_procedure_statement] = STATE(1535), - [sym_procedure_parameter_definition] = STATE(1535), - [sym_function_statement] = STATE(1535), - [sym_return_statement] = STATE(1535), - [sym_interface_statement] = STATE(1535), - [sym_using_statement] = STATE(1535), - [sym_class_statement] = STATE(1535), - [sym_object_access] = STATE(3567), - [sym_stream_definition] = STATE(1535), - [sym_input_close_statement] = STATE(1535), - [sym_output_close_statement] = STATE(1535), - [sym__stream_statement] = STATE(1535), - [sym_input_stream_statement] = STATE(1537), - [sym_output_stream_statement] = STATE(1537), - [sym_do_block] = STATE(1535), - [sym_case_statement] = STATE(1535), - [sym_for_statement] = STATE(1535), - [sym_find_statement] = STATE(1535), - [sym_abl_statement] = STATE(1535), - [sym_assign_statement] = STATE(1535), - [sym_catch_statement] = STATE(1535), - [sym_finally_statement] = STATE(1535), - [sym_accumulate_statement] = STATE(1535), - [sym_undo_statement] = STATE(1535), - [sym_error_scope_statement] = STATE(1535), - [sym_temp_table_definition] = STATE(1535), - [sym_on_statement] = STATE(1535), - [sym__statement] = STATE(1538), - [aux_sym_source_code_repeat1] = STATE(276), - [sym_identifier] = ACTIONS(227), + [sym_assignment] = STATE(4463), + [sym_variable_definition] = STATE(1550), + [sym_variable_assignment] = STATE(1550), + [sym_buffer_definition] = STATE(1550), + [sym_query_definition] = STATE(1550), + [sym_function_call_statement] = STATE(1550), + [sym_function_call] = STATE(4558), + [sym_if_statement] = STATE(1550), + [sym_label] = STATE(1551), + [sym_repeat_statement] = STATE(1550), + [sym_procedure_statement] = STATE(1550), + [sym_procedure_parameter_definition] = STATE(1550), + [sym_function_statement] = STATE(1550), + [sym_return_statement] = STATE(1550), + [sym_interface_statement] = STATE(1550), + [sym_using_statement] = STATE(1550), + [sym_class_statement] = STATE(1550), + [sym_object_access] = STATE(3661), + [sym_stream_definition] = STATE(1550), + [sym_input_close_statement] = STATE(1550), + [sym_output_close_statement] = STATE(1550), + [sym__stream_statement] = STATE(1550), + [sym_input_stream_statement] = STATE(1552), + [sym_output_stream_statement] = STATE(1552), + [sym_do_block] = STATE(1550), + [sym_case_statement] = STATE(1550), + [sym_for_statement] = STATE(1550), + [sym_find_statement] = STATE(1550), + [sym_abl_statement] = STATE(1550), + [sym_assign_statement] = STATE(1550), + [sym_catch_statement] = STATE(1550), + [sym_finally_statement] = STATE(1550), + [sym_accumulate_statement] = STATE(1550), + [sym_undo_statement] = STATE(1550), + [sym_error_scope_statement] = STATE(1550), + [sym_temp_table_definition] = STATE(1550), + [sym_on_statement] = STATE(1550), + [sym__statement] = STATE(1553), + [aux_sym_source_code_repeat1] = STATE(286), + [sym_identifier] = ACTIONS(263), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), [anon_sym_LBRACE] = ACTIONS(7), - [aux_sym__block_terminator_token1] = ACTIONS(301), - [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), + [aux_sym__block_terminator_token1] = ACTIONS(323), + [aux_sym_input_expression_token1] = ACTIONS(267), + [aux_sym_primitive_type_token19] = ACTIONS(269), + [aux_sym_variable_definition_token1] = ACTIONS(271), + [aux_sym_variable_definition_token2] = ACTIONS(273), + [aux_sym_buffer_definition_token2] = ACTIONS(275), + [aux_sym_argument_mode_token1] = ACTIONS(277), + [aux_sym_if_statement_token1] = ACTIONS(279), + [aux_sym_repeat_statement_token1] = ACTIONS(281), + [aux_sym__procedure_terminator_token1] = ACTIONS(283), + [aux_sym_procedure_parameter_definition_token1] = ACTIONS(285), + [aux_sym__function_terminator_token1] = ACTIONS(287), + [aux_sym_interface_statement_token1] = ACTIONS(289), + [aux_sym_using_statement_token1] = ACTIONS(291), + [aux_sym_on_error_phrase_token1] = ACTIONS(293), + [aux_sym_on_error_phrase_token3] = ACTIONS(295), + [aux_sym_do_block_token1] = ACTIONS(297), + [aux_sym__case_terminator_token1] = ACTIONS(299), + [aux_sym_find_statement_token1] = ACTIONS(301), + [aux_sym_assign_statement_token1] = ACTIONS(303), + [aux_sym_catch_statement_token1] = ACTIONS(305), + [aux_sym_finally_statement_token1] = ACTIONS(307), + [aux_sym_accumulate_statement_token1] = ACTIONS(309), + [anon_sym_ROUTINE_DASHLEVEL] = ACTIONS(311), + [anon_sym_BLOCK_DASHLEVEL] = ACTIONS(311), }, [109] = { - [sym_body] = STATE(3667), + [sym_body] = STATE(4023), [sym_comment] = STATE(109), - [sym_qualified_name] = STATE(4733), - [sym__block_terminator] = STATE(3375), + [sym_qualified_name] = STATE(4814), + [sym__block_terminator] = STATE(1010), [sym_include] = STATE(109), - [sym_assignment] = STATE(4314), - [sym_variable_definition] = STATE(1535), - [sym_variable_assignment] = STATE(1535), - [sym_buffer_definition] = STATE(1535), - [sym_query_definition] = STATE(1535), - [sym_function_call_statement] = STATE(1535), - [sym_function_call] = STATE(4086), - [sym_if_statement] = STATE(1535), - [sym_label] = STATE(1536), - [sym_repeat_statement] = STATE(1535), - [sym_procedure_statement] = STATE(1535), - [sym_procedure_parameter_definition] = STATE(1535), - [sym_function_statement] = STATE(1535), - [sym_return_statement] = STATE(1535), - [sym_interface_statement] = STATE(1535), - [sym_using_statement] = STATE(1535), - [sym_class_statement] = STATE(1535), - [sym_object_access] = STATE(3567), - [sym_stream_definition] = STATE(1535), - [sym_input_close_statement] = STATE(1535), - [sym_output_close_statement] = STATE(1535), - [sym__stream_statement] = STATE(1535), - [sym_input_stream_statement] = STATE(1537), - [sym_output_stream_statement] = STATE(1537), - [sym_do_block] = STATE(1535), - [sym_case_statement] = STATE(1535), - [sym_for_statement] = STATE(1535), - [sym_find_statement] = STATE(1535), - [sym_abl_statement] = STATE(1535), - [sym_assign_statement] = STATE(1535), - [sym_catch_statement] = STATE(1535), - [sym_finally_statement] = STATE(1535), - [sym_accumulate_statement] = STATE(1535), - [sym_undo_statement] = STATE(1535), - [sym_error_scope_statement] = STATE(1535), - [sym_temp_table_definition] = STATE(1535), - [sym_on_statement] = STATE(1535), - [sym__statement] = STATE(1538), - [aux_sym_source_code_repeat1] = STATE(276), - [sym_identifier] = ACTIONS(227), + [sym_assignment] = STATE(4463), + [sym_variable_definition] = STATE(1550), + [sym_variable_assignment] = STATE(1550), + [sym_buffer_definition] = STATE(1550), + [sym_query_definition] = STATE(1550), + [sym_function_call_statement] = STATE(1550), + [sym_function_call] = STATE(4558), + [sym_if_statement] = STATE(1550), + [sym_label] = STATE(1551), + [sym_repeat_statement] = STATE(1550), + [sym_procedure_statement] = STATE(1550), + [sym_procedure_parameter_definition] = STATE(1550), + [sym_function_statement] = STATE(1550), + [sym_return_statement] = STATE(1550), + [sym_interface_statement] = STATE(1550), + [sym_using_statement] = STATE(1550), + [sym_class_statement] = STATE(1550), + [sym_object_access] = STATE(3661), + [sym_stream_definition] = STATE(1550), + [sym_input_close_statement] = STATE(1550), + [sym_output_close_statement] = STATE(1550), + [sym__stream_statement] = STATE(1550), + [sym_input_stream_statement] = STATE(1552), + [sym_output_stream_statement] = STATE(1552), + [sym_do_block] = STATE(1550), + [sym_case_statement] = STATE(1550), + [sym_for_statement] = STATE(1550), + [sym_find_statement] = STATE(1550), + [sym_abl_statement] = STATE(1550), + [sym_assign_statement] = STATE(1550), + [sym_catch_statement] = STATE(1550), + [sym_finally_statement] = STATE(1550), + [sym_accumulate_statement] = STATE(1550), + [sym_undo_statement] = STATE(1550), + [sym_error_scope_statement] = STATE(1550), + [sym_temp_table_definition] = STATE(1550), + [sym_on_statement] = STATE(1550), + [sym__statement] = STATE(1553), + [aux_sym_source_code_repeat1] = STATE(286), + [sym_identifier] = ACTIONS(263), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), [anon_sym_LBRACE] = ACTIONS(7), - [aux_sym__block_terminator_token1] = ACTIONS(297), - [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), + [aux_sym__block_terminator_token1] = ACTIONS(321), + [aux_sym_input_expression_token1] = ACTIONS(267), + [aux_sym_primitive_type_token19] = ACTIONS(269), + [aux_sym_variable_definition_token1] = ACTIONS(271), + [aux_sym_variable_definition_token2] = ACTIONS(273), + [aux_sym_buffer_definition_token2] = ACTIONS(275), + [aux_sym_argument_mode_token1] = ACTIONS(277), + [aux_sym_if_statement_token1] = ACTIONS(279), + [aux_sym_repeat_statement_token1] = ACTIONS(281), + [aux_sym__procedure_terminator_token1] = ACTIONS(283), + [aux_sym_procedure_parameter_definition_token1] = ACTIONS(285), + [aux_sym__function_terminator_token1] = ACTIONS(287), + [aux_sym_interface_statement_token1] = ACTIONS(289), + [aux_sym_using_statement_token1] = ACTIONS(291), + [aux_sym_on_error_phrase_token1] = ACTIONS(293), + [aux_sym_on_error_phrase_token3] = ACTIONS(295), + [aux_sym_do_block_token1] = ACTIONS(297), + [aux_sym__case_terminator_token1] = ACTIONS(299), + [aux_sym_find_statement_token1] = ACTIONS(301), + [aux_sym_assign_statement_token1] = ACTIONS(303), + [aux_sym_catch_statement_token1] = ACTIONS(305), + [aux_sym_finally_statement_token1] = ACTIONS(307), + [aux_sym_accumulate_statement_token1] = ACTIONS(309), + [anon_sym_ROUTINE_DASHLEVEL] = ACTIONS(311), + [anon_sym_BLOCK_DASHLEVEL] = ACTIONS(311), }, [110] = { - [sym_body] = STATE(4026), + [sym_body] = STATE(3898), [sym_comment] = STATE(110), - [sym_qualified_name] = STATE(4733), - [sym__block_terminator] = STATE(924), + [sym_qualified_name] = STATE(4814), + [sym__block_terminator] = STATE(902), [sym_include] = STATE(110), - [sym_assignment] = STATE(4314), - [sym_variable_definition] = STATE(1535), - [sym_variable_assignment] = STATE(1535), - [sym_buffer_definition] = STATE(1535), - [sym_query_definition] = STATE(1535), - [sym_function_call_statement] = STATE(1535), - [sym_function_call] = STATE(4086), - [sym_if_statement] = STATE(1535), - [sym_label] = STATE(1536), - [sym_repeat_statement] = STATE(1535), - [sym_procedure_statement] = STATE(1535), - [sym_procedure_parameter_definition] = STATE(1535), - [sym_function_statement] = STATE(1535), - [sym_return_statement] = STATE(1535), - [sym_interface_statement] = STATE(1535), - [sym_using_statement] = STATE(1535), - [sym_class_statement] = STATE(1535), - [sym_object_access] = STATE(3567), - [sym_stream_definition] = STATE(1535), - [sym_input_close_statement] = STATE(1535), - [sym_output_close_statement] = STATE(1535), - [sym__stream_statement] = STATE(1535), - [sym_input_stream_statement] = STATE(1537), - [sym_output_stream_statement] = STATE(1537), - [sym_do_block] = STATE(1535), - [sym_case_statement] = STATE(1535), - [sym_for_statement] = STATE(1535), - [sym_find_statement] = STATE(1535), - [sym_abl_statement] = STATE(1535), - [sym_assign_statement] = STATE(1535), - [sym_catch_statement] = STATE(1535), - [sym_finally_statement] = STATE(1535), - [sym_accumulate_statement] = STATE(1535), - [sym_undo_statement] = STATE(1535), - [sym_error_scope_statement] = STATE(1535), - [sym_temp_table_definition] = STATE(1535), - [sym_on_statement] = STATE(1535), - [sym__statement] = STATE(1538), - [aux_sym_source_code_repeat1] = STATE(276), - [sym_identifier] = ACTIONS(227), + [sym_assignment] = STATE(4463), + [sym_variable_definition] = STATE(1550), + [sym_variable_assignment] = STATE(1550), + [sym_buffer_definition] = STATE(1550), + [sym_query_definition] = STATE(1550), + [sym_function_call_statement] = STATE(1550), + [sym_function_call] = STATE(4558), + [sym_if_statement] = STATE(1550), + [sym_label] = STATE(1551), + [sym_repeat_statement] = STATE(1550), + [sym_procedure_statement] = STATE(1550), + [sym_procedure_parameter_definition] = STATE(1550), + [sym_function_statement] = STATE(1550), + [sym_return_statement] = STATE(1550), + [sym_interface_statement] = STATE(1550), + [sym_using_statement] = STATE(1550), + [sym_class_statement] = STATE(1550), + [sym_object_access] = STATE(3661), + [sym_stream_definition] = STATE(1550), + [sym_input_close_statement] = STATE(1550), + [sym_output_close_statement] = STATE(1550), + [sym__stream_statement] = STATE(1550), + [sym_input_stream_statement] = STATE(1552), + [sym_output_stream_statement] = STATE(1552), + [sym_do_block] = STATE(1550), + [sym_case_statement] = STATE(1550), + [sym_for_statement] = STATE(1550), + [sym_find_statement] = STATE(1550), + [sym_abl_statement] = STATE(1550), + [sym_assign_statement] = STATE(1550), + [sym_catch_statement] = STATE(1550), + [sym_finally_statement] = STATE(1550), + [sym_accumulate_statement] = STATE(1550), + [sym_undo_statement] = STATE(1550), + [sym_error_scope_statement] = STATE(1550), + [sym_temp_table_definition] = STATE(1550), + [sym_on_statement] = STATE(1550), + [sym__statement] = STATE(1553), + [aux_sym_source_code_repeat1] = STATE(286), + [sym_identifier] = ACTIONS(263), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), [anon_sym_LBRACE] = ACTIONS(7), - [aux_sym__block_terminator_token1] = ACTIONS(303), - [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), + [aux_sym__block_terminator_token1] = ACTIONS(323), + [aux_sym_input_expression_token1] = ACTIONS(267), + [aux_sym_primitive_type_token19] = ACTIONS(269), + [aux_sym_variable_definition_token1] = ACTIONS(271), + [aux_sym_variable_definition_token2] = ACTIONS(273), + [aux_sym_buffer_definition_token2] = ACTIONS(275), + [aux_sym_argument_mode_token1] = ACTIONS(277), + [aux_sym_if_statement_token1] = ACTIONS(279), + [aux_sym_repeat_statement_token1] = ACTIONS(281), + [aux_sym__procedure_terminator_token1] = ACTIONS(283), + [aux_sym_procedure_parameter_definition_token1] = ACTIONS(285), + [aux_sym__function_terminator_token1] = ACTIONS(287), + [aux_sym_interface_statement_token1] = ACTIONS(289), + [aux_sym_using_statement_token1] = ACTIONS(291), + [aux_sym_on_error_phrase_token1] = ACTIONS(293), + [aux_sym_on_error_phrase_token3] = ACTIONS(295), + [aux_sym_do_block_token1] = ACTIONS(297), + [aux_sym__case_terminator_token1] = ACTIONS(299), + [aux_sym_find_statement_token1] = ACTIONS(301), + [aux_sym_assign_statement_token1] = ACTIONS(303), + [aux_sym_catch_statement_token1] = ACTIONS(305), + [aux_sym_finally_statement_token1] = ACTIONS(307), + [aux_sym_accumulate_statement_token1] = ACTIONS(309), + [anon_sym_ROUTINE_DASHLEVEL] = ACTIONS(311), + [anon_sym_BLOCK_DASHLEVEL] = ACTIONS(311), }, [111] = { - [sym_body] = STATE(3563), + [sym_body] = STATE(4025), [sym_comment] = STATE(111), - [sym_qualified_name] = STATE(4733), - [sym__block_terminator] = STATE(1492), + [sym_qualified_name] = STATE(4814), + [sym__block_terminator] = STATE(1014), [sym_include] = STATE(111), - [sym_assignment] = STATE(4314), - [sym_variable_definition] = STATE(1535), - [sym_variable_assignment] = STATE(1535), - [sym_buffer_definition] = STATE(1535), - [sym_query_definition] = STATE(1535), - [sym_function_call_statement] = STATE(1535), - [sym_function_call] = STATE(4086), - [sym_if_statement] = STATE(1535), - [sym_label] = STATE(1536), - [sym_repeat_statement] = STATE(1535), - [sym_procedure_statement] = STATE(1535), - [sym_procedure_parameter_definition] = STATE(1535), - [sym_function_statement] = STATE(1535), - [sym_return_statement] = STATE(1535), - [sym_interface_statement] = STATE(1535), - [sym_using_statement] = STATE(1535), - [sym_class_statement] = STATE(1535), - [sym_object_access] = STATE(3567), - [sym_stream_definition] = STATE(1535), - [sym_input_close_statement] = STATE(1535), - [sym_output_close_statement] = STATE(1535), - [sym__stream_statement] = STATE(1535), - [sym_input_stream_statement] = STATE(1537), - [sym_output_stream_statement] = STATE(1537), - [sym_do_block] = STATE(1535), - [sym_case_statement] = STATE(1535), - [sym_for_statement] = STATE(1535), - [sym_find_statement] = STATE(1535), - [sym_abl_statement] = STATE(1535), - [sym_assign_statement] = STATE(1535), - [sym_catch_statement] = STATE(1535), - [sym_finally_statement] = STATE(1535), - [sym_accumulate_statement] = STATE(1535), - [sym_undo_statement] = STATE(1535), - [sym_error_scope_statement] = STATE(1535), - [sym_temp_table_definition] = STATE(1535), - [sym_on_statement] = STATE(1535), - [sym__statement] = STATE(1538), - [aux_sym_source_code_repeat1] = STATE(276), - [sym_identifier] = ACTIONS(227), + [sym_assignment] = STATE(4463), + [sym_variable_definition] = STATE(1550), + [sym_variable_assignment] = STATE(1550), + [sym_buffer_definition] = STATE(1550), + [sym_query_definition] = STATE(1550), + [sym_function_call_statement] = STATE(1550), + [sym_function_call] = STATE(4558), + [sym_if_statement] = STATE(1550), + [sym_label] = STATE(1551), + [sym_repeat_statement] = STATE(1550), + [sym_procedure_statement] = STATE(1550), + [sym_procedure_parameter_definition] = STATE(1550), + [sym_function_statement] = STATE(1550), + [sym_return_statement] = STATE(1550), + [sym_interface_statement] = STATE(1550), + [sym_using_statement] = STATE(1550), + [sym_class_statement] = STATE(1550), + [sym_object_access] = STATE(3661), + [sym_stream_definition] = STATE(1550), + [sym_input_close_statement] = STATE(1550), + [sym_output_close_statement] = STATE(1550), + [sym__stream_statement] = STATE(1550), + [sym_input_stream_statement] = STATE(1552), + [sym_output_stream_statement] = STATE(1552), + [sym_do_block] = STATE(1550), + [sym_case_statement] = STATE(1550), + [sym_for_statement] = STATE(1550), + [sym_find_statement] = STATE(1550), + [sym_abl_statement] = STATE(1550), + [sym_assign_statement] = STATE(1550), + [sym_catch_statement] = STATE(1550), + [sym_finally_statement] = STATE(1550), + [sym_accumulate_statement] = STATE(1550), + [sym_undo_statement] = STATE(1550), + [sym_error_scope_statement] = STATE(1550), + [sym_temp_table_definition] = STATE(1550), + [sym_on_statement] = STATE(1550), + [sym__statement] = STATE(1553), + [aux_sym_source_code_repeat1] = STATE(286), + [sym_identifier] = ACTIONS(263), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), [anon_sym_LBRACE] = ACTIONS(7), - [aux_sym__block_terminator_token1] = ACTIONS(299), - [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), + [aux_sym__block_terminator_token1] = ACTIONS(321), + [aux_sym_input_expression_token1] = ACTIONS(267), + [aux_sym_primitive_type_token19] = ACTIONS(269), + [aux_sym_variable_definition_token1] = ACTIONS(271), + [aux_sym_variable_definition_token2] = ACTIONS(273), + [aux_sym_buffer_definition_token2] = ACTIONS(275), + [aux_sym_argument_mode_token1] = ACTIONS(277), + [aux_sym_if_statement_token1] = ACTIONS(279), + [aux_sym_repeat_statement_token1] = ACTIONS(281), + [aux_sym__procedure_terminator_token1] = ACTIONS(283), + [aux_sym_procedure_parameter_definition_token1] = ACTIONS(285), + [aux_sym__function_terminator_token1] = ACTIONS(287), + [aux_sym_interface_statement_token1] = ACTIONS(289), + [aux_sym_using_statement_token1] = ACTIONS(291), + [aux_sym_on_error_phrase_token1] = ACTIONS(293), + [aux_sym_on_error_phrase_token3] = ACTIONS(295), + [aux_sym_do_block_token1] = ACTIONS(297), + [aux_sym__case_terminator_token1] = ACTIONS(299), + [aux_sym_find_statement_token1] = ACTIONS(301), + [aux_sym_assign_statement_token1] = ACTIONS(303), + [aux_sym_catch_statement_token1] = ACTIONS(305), + [aux_sym_finally_statement_token1] = ACTIONS(307), + [aux_sym_accumulate_statement_token1] = ACTIONS(309), + [anon_sym_ROUTINE_DASHLEVEL] = ACTIONS(311), + [anon_sym_BLOCK_DASHLEVEL] = ACTIONS(311), }, [112] = { - [sym_body] = STATE(3604), + [sym_body] = STATE(3936), [sym_comment] = STATE(112), - [sym_qualified_name] = STATE(4733), - [sym__block_terminator] = STATE(1119), + [sym_qualified_name] = STATE(4814), + [sym__block_terminator] = STATE(942), [sym_include] = STATE(112), - [sym_assignment] = STATE(4314), - [sym_variable_definition] = STATE(1535), - [sym_variable_assignment] = STATE(1535), - [sym_buffer_definition] = STATE(1535), - [sym_query_definition] = STATE(1535), - [sym_function_call_statement] = STATE(1535), - [sym_function_call] = STATE(4086), - [sym_if_statement] = STATE(1535), - [sym_label] = STATE(1536), - [sym_repeat_statement] = STATE(1535), - [sym_procedure_statement] = STATE(1535), - [sym_procedure_parameter_definition] = STATE(1535), - [sym_function_statement] = STATE(1535), - [sym_return_statement] = STATE(1535), - [sym_interface_statement] = STATE(1535), - [sym_using_statement] = STATE(1535), - [sym_class_statement] = STATE(1535), - [sym_object_access] = STATE(3567), - [sym_stream_definition] = STATE(1535), - [sym_input_close_statement] = STATE(1535), - [sym_output_close_statement] = STATE(1535), - [sym__stream_statement] = STATE(1535), - [sym_input_stream_statement] = STATE(1537), - [sym_output_stream_statement] = STATE(1537), - [sym_do_block] = STATE(1535), - [sym_case_statement] = STATE(1535), - [sym_for_statement] = STATE(1535), - [sym_find_statement] = STATE(1535), - [sym_abl_statement] = STATE(1535), - [sym_assign_statement] = STATE(1535), - [sym_catch_statement] = STATE(1535), - [sym_finally_statement] = STATE(1535), - [sym_accumulate_statement] = STATE(1535), - [sym_undo_statement] = STATE(1535), - [sym_error_scope_statement] = STATE(1535), - [sym_temp_table_definition] = STATE(1535), - [sym_on_statement] = STATE(1535), - [sym__statement] = STATE(1538), - [aux_sym_source_code_repeat1] = STATE(276), - [sym_identifier] = ACTIONS(227), + [sym_assignment] = STATE(4463), + [sym_variable_definition] = STATE(1550), + [sym_variable_assignment] = STATE(1550), + [sym_buffer_definition] = STATE(1550), + [sym_query_definition] = STATE(1550), + [sym_function_call_statement] = STATE(1550), + [sym_function_call] = STATE(4558), + [sym_if_statement] = STATE(1550), + [sym_label] = STATE(1551), + [sym_repeat_statement] = STATE(1550), + [sym_procedure_statement] = STATE(1550), + [sym_procedure_parameter_definition] = STATE(1550), + [sym_function_statement] = STATE(1550), + [sym_return_statement] = STATE(1550), + [sym_interface_statement] = STATE(1550), + [sym_using_statement] = STATE(1550), + [sym_class_statement] = STATE(1550), + [sym_object_access] = STATE(3661), + [sym_stream_definition] = STATE(1550), + [sym_input_close_statement] = STATE(1550), + [sym_output_close_statement] = STATE(1550), + [sym__stream_statement] = STATE(1550), + [sym_input_stream_statement] = STATE(1552), + [sym_output_stream_statement] = STATE(1552), + [sym_do_block] = STATE(1550), + [sym_case_statement] = STATE(1550), + [sym_for_statement] = STATE(1550), + [sym_find_statement] = STATE(1550), + [sym_abl_statement] = STATE(1550), + [sym_assign_statement] = STATE(1550), + [sym_catch_statement] = STATE(1550), + [sym_finally_statement] = STATE(1550), + [sym_accumulate_statement] = STATE(1550), + [sym_undo_statement] = STATE(1550), + [sym_error_scope_statement] = STATE(1550), + [sym_temp_table_definition] = STATE(1550), + [sym_on_statement] = STATE(1550), + [sym__statement] = STATE(1553), + [aux_sym_source_code_repeat1] = STATE(286), + [sym_identifier] = ACTIONS(263), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), [anon_sym_LBRACE] = ACTIONS(7), - [aux_sym__block_terminator_token1] = ACTIONS(301), - [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), + [aux_sym__block_terminator_token1] = ACTIONS(323), + [aux_sym_input_expression_token1] = ACTIONS(267), + [aux_sym_primitive_type_token19] = ACTIONS(269), + [aux_sym_variable_definition_token1] = ACTIONS(271), + [aux_sym_variable_definition_token2] = ACTIONS(273), + [aux_sym_buffer_definition_token2] = ACTIONS(275), + [aux_sym_argument_mode_token1] = ACTIONS(277), + [aux_sym_if_statement_token1] = ACTIONS(279), + [aux_sym_repeat_statement_token1] = ACTIONS(281), + [aux_sym__procedure_terminator_token1] = ACTIONS(283), + [aux_sym_procedure_parameter_definition_token1] = ACTIONS(285), + [aux_sym__function_terminator_token1] = ACTIONS(287), + [aux_sym_interface_statement_token1] = ACTIONS(289), + [aux_sym_using_statement_token1] = ACTIONS(291), + [aux_sym_on_error_phrase_token1] = ACTIONS(293), + [aux_sym_on_error_phrase_token3] = ACTIONS(295), + [aux_sym_do_block_token1] = ACTIONS(297), + [aux_sym__case_terminator_token1] = ACTIONS(299), + [aux_sym_find_statement_token1] = ACTIONS(301), + [aux_sym_assign_statement_token1] = ACTIONS(303), + [aux_sym_catch_statement_token1] = ACTIONS(305), + [aux_sym_finally_statement_token1] = ACTIONS(307), + [aux_sym_accumulate_statement_token1] = ACTIONS(309), + [anon_sym_ROUTINE_DASHLEVEL] = ACTIONS(311), + [anon_sym_BLOCK_DASHLEVEL] = ACTIONS(311), }, [113] = { - [sym_body] = STATE(4045), + [sym_body] = STATE(3960), [sym_comment] = STATE(113), - [sym_qualified_name] = STATE(4733), - [sym__block_terminator] = STATE(1321), + [sym_qualified_name] = STATE(4814), + [sym__block_terminator] = STATE(975), [sym_include] = STATE(113), - [sym_assignment] = STATE(4314), - [sym_variable_definition] = STATE(1535), - [sym_variable_assignment] = STATE(1535), - [sym_buffer_definition] = STATE(1535), - [sym_query_definition] = STATE(1535), - [sym_function_call_statement] = STATE(1535), - [sym_function_call] = STATE(4086), - [sym_if_statement] = STATE(1535), - [sym_label] = STATE(1536), - [sym_repeat_statement] = STATE(1535), - [sym_procedure_statement] = STATE(1535), - [sym_procedure_parameter_definition] = STATE(1535), - [sym_function_statement] = STATE(1535), - [sym_return_statement] = STATE(1535), - [sym_interface_statement] = STATE(1535), - [sym_using_statement] = STATE(1535), - [sym_class_statement] = STATE(1535), - [sym_object_access] = STATE(3567), - [sym_stream_definition] = STATE(1535), - [sym_input_close_statement] = STATE(1535), - [sym_output_close_statement] = STATE(1535), - [sym__stream_statement] = STATE(1535), - [sym_input_stream_statement] = STATE(1537), - [sym_output_stream_statement] = STATE(1537), - [sym_do_block] = STATE(1535), - [sym_case_statement] = STATE(1535), - [sym_for_statement] = STATE(1535), - [sym_find_statement] = STATE(1535), - [sym_abl_statement] = STATE(1535), - [sym_assign_statement] = STATE(1535), - [sym_catch_statement] = STATE(1535), - [sym_finally_statement] = STATE(1535), - [sym_accumulate_statement] = STATE(1535), - [sym_undo_statement] = STATE(1535), - [sym_error_scope_statement] = STATE(1535), - [sym_temp_table_definition] = STATE(1535), - [sym_on_statement] = STATE(1535), - [sym__statement] = STATE(1538), - [aux_sym_source_code_repeat1] = STATE(276), - [sym_identifier] = ACTIONS(227), + [sym_assignment] = STATE(4463), + [sym_variable_definition] = STATE(1550), + [sym_variable_assignment] = STATE(1550), + [sym_buffer_definition] = STATE(1550), + [sym_query_definition] = STATE(1550), + [sym_function_call_statement] = STATE(1550), + [sym_function_call] = STATE(4558), + [sym_if_statement] = STATE(1550), + [sym_label] = STATE(1551), + [sym_repeat_statement] = STATE(1550), + [sym_procedure_statement] = STATE(1550), + [sym_procedure_parameter_definition] = STATE(1550), + [sym_function_statement] = STATE(1550), + [sym_return_statement] = STATE(1550), + [sym_interface_statement] = STATE(1550), + [sym_using_statement] = STATE(1550), + [sym_class_statement] = STATE(1550), + [sym_object_access] = STATE(3661), + [sym_stream_definition] = STATE(1550), + [sym_input_close_statement] = STATE(1550), + [sym_output_close_statement] = STATE(1550), + [sym__stream_statement] = STATE(1550), + [sym_input_stream_statement] = STATE(1552), + [sym_output_stream_statement] = STATE(1552), + [sym_do_block] = STATE(1550), + [sym_case_statement] = STATE(1550), + [sym_for_statement] = STATE(1550), + [sym_find_statement] = STATE(1550), + [sym_abl_statement] = STATE(1550), + [sym_assign_statement] = STATE(1550), + [sym_catch_statement] = STATE(1550), + [sym_finally_statement] = STATE(1550), + [sym_accumulate_statement] = STATE(1550), + [sym_undo_statement] = STATE(1550), + [sym_error_scope_statement] = STATE(1550), + [sym_temp_table_definition] = STATE(1550), + [sym_on_statement] = STATE(1550), + [sym__statement] = STATE(1553), + [aux_sym_source_code_repeat1] = STATE(286), + [sym_identifier] = ACTIONS(263), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), [anon_sym_LBRACE] = ACTIONS(7), - [aux_sym__block_terminator_token1] = ACTIONS(299), - [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), + [aux_sym__block_terminator_token1] = ACTIONS(323), + [aux_sym_input_expression_token1] = ACTIONS(267), + [aux_sym_primitive_type_token19] = ACTIONS(269), + [aux_sym_variable_definition_token1] = ACTIONS(271), + [aux_sym_variable_definition_token2] = ACTIONS(273), + [aux_sym_buffer_definition_token2] = ACTIONS(275), + [aux_sym_argument_mode_token1] = ACTIONS(277), + [aux_sym_if_statement_token1] = ACTIONS(279), + [aux_sym_repeat_statement_token1] = ACTIONS(281), + [aux_sym__procedure_terminator_token1] = ACTIONS(283), + [aux_sym_procedure_parameter_definition_token1] = ACTIONS(285), + [aux_sym__function_terminator_token1] = ACTIONS(287), + [aux_sym_interface_statement_token1] = ACTIONS(289), + [aux_sym_using_statement_token1] = ACTIONS(291), + [aux_sym_on_error_phrase_token1] = ACTIONS(293), + [aux_sym_on_error_phrase_token3] = ACTIONS(295), + [aux_sym_do_block_token1] = ACTIONS(297), + [aux_sym__case_terminator_token1] = ACTIONS(299), + [aux_sym_find_statement_token1] = ACTIONS(301), + [aux_sym_assign_statement_token1] = ACTIONS(303), + [aux_sym_catch_statement_token1] = ACTIONS(305), + [aux_sym_finally_statement_token1] = ACTIONS(307), + [aux_sym_accumulate_statement_token1] = ACTIONS(309), + [anon_sym_ROUTINE_DASHLEVEL] = ACTIONS(311), + [anon_sym_BLOCK_DASHLEVEL] = ACTIONS(311), }, [114] = { - [sym_body] = STATE(3595), + [sym_body] = STATE(4034), [sym_comment] = STATE(114), - [sym_qualified_name] = STATE(4733), - [sym__block_terminator] = STATE(1494), + [sym_qualified_name] = STATE(4814), + [sym__block_terminator] = STATE(1029), [sym_include] = STATE(114), - [sym_assignment] = STATE(4314), - [sym_variable_definition] = STATE(1535), - [sym_variable_assignment] = STATE(1535), - [sym_buffer_definition] = STATE(1535), - [sym_query_definition] = STATE(1535), - [sym_function_call_statement] = STATE(1535), - [sym_function_call] = STATE(4086), - [sym_if_statement] = STATE(1535), - [sym_label] = STATE(1536), - [sym_repeat_statement] = STATE(1535), - [sym_procedure_statement] = STATE(1535), - [sym_procedure_parameter_definition] = STATE(1535), - [sym_function_statement] = STATE(1535), - [sym_return_statement] = STATE(1535), - [sym_interface_statement] = STATE(1535), - [sym_using_statement] = STATE(1535), - [sym_class_statement] = STATE(1535), - [sym_object_access] = STATE(3567), - [sym_stream_definition] = STATE(1535), - [sym_input_close_statement] = STATE(1535), - [sym_output_close_statement] = STATE(1535), - [sym__stream_statement] = STATE(1535), - [sym_input_stream_statement] = STATE(1537), - [sym_output_stream_statement] = STATE(1537), - [sym_do_block] = STATE(1535), - [sym_case_statement] = STATE(1535), - [sym_for_statement] = STATE(1535), - [sym_find_statement] = STATE(1535), - [sym_abl_statement] = STATE(1535), - [sym_assign_statement] = STATE(1535), - [sym_catch_statement] = STATE(1535), - [sym_finally_statement] = STATE(1535), - [sym_accumulate_statement] = STATE(1535), - [sym_undo_statement] = STATE(1535), - [sym_error_scope_statement] = STATE(1535), - [sym_temp_table_definition] = STATE(1535), - [sym_on_statement] = STATE(1535), - [sym__statement] = STATE(1538), - [aux_sym_source_code_repeat1] = STATE(276), - [sym_identifier] = ACTIONS(227), + [sym_assignment] = STATE(4463), + [sym_variable_definition] = STATE(1550), + [sym_variable_assignment] = STATE(1550), + [sym_buffer_definition] = STATE(1550), + [sym_query_definition] = STATE(1550), + [sym_function_call_statement] = STATE(1550), + [sym_function_call] = STATE(4558), + [sym_if_statement] = STATE(1550), + [sym_label] = STATE(1551), + [sym_repeat_statement] = STATE(1550), + [sym_procedure_statement] = STATE(1550), + [sym_procedure_parameter_definition] = STATE(1550), + [sym_function_statement] = STATE(1550), + [sym_return_statement] = STATE(1550), + [sym_interface_statement] = STATE(1550), + [sym_using_statement] = STATE(1550), + [sym_class_statement] = STATE(1550), + [sym_object_access] = STATE(3661), + [sym_stream_definition] = STATE(1550), + [sym_input_close_statement] = STATE(1550), + [sym_output_close_statement] = STATE(1550), + [sym__stream_statement] = STATE(1550), + [sym_input_stream_statement] = STATE(1552), + [sym_output_stream_statement] = STATE(1552), + [sym_do_block] = STATE(1550), + [sym_case_statement] = STATE(1550), + [sym_for_statement] = STATE(1550), + [sym_find_statement] = STATE(1550), + [sym_abl_statement] = STATE(1550), + [sym_assign_statement] = STATE(1550), + [sym_catch_statement] = STATE(1550), + [sym_finally_statement] = STATE(1550), + [sym_accumulate_statement] = STATE(1550), + [sym_undo_statement] = STATE(1550), + [sym_error_scope_statement] = STATE(1550), + [sym_temp_table_definition] = STATE(1550), + [sym_on_statement] = STATE(1550), + [sym__statement] = STATE(1553), + [aux_sym_source_code_repeat1] = STATE(286), + [sym_identifier] = ACTIONS(263), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), [anon_sym_LBRACE] = ACTIONS(7), - [aux_sym__block_terminator_token1] = ACTIONS(299), - [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), + [aux_sym__block_terminator_token1] = ACTIONS(321), + [aux_sym_input_expression_token1] = ACTIONS(267), + [aux_sym_primitive_type_token19] = ACTIONS(269), + [aux_sym_variable_definition_token1] = ACTIONS(271), + [aux_sym_variable_definition_token2] = ACTIONS(273), + [aux_sym_buffer_definition_token2] = ACTIONS(275), + [aux_sym_argument_mode_token1] = ACTIONS(277), + [aux_sym_if_statement_token1] = ACTIONS(279), + [aux_sym_repeat_statement_token1] = ACTIONS(281), + [aux_sym__procedure_terminator_token1] = ACTIONS(283), + [aux_sym_procedure_parameter_definition_token1] = ACTIONS(285), + [aux_sym__function_terminator_token1] = ACTIONS(287), + [aux_sym_interface_statement_token1] = ACTIONS(289), + [aux_sym_using_statement_token1] = ACTIONS(291), + [aux_sym_on_error_phrase_token1] = ACTIONS(293), + [aux_sym_on_error_phrase_token3] = ACTIONS(295), + [aux_sym_do_block_token1] = ACTIONS(297), + [aux_sym__case_terminator_token1] = ACTIONS(299), + [aux_sym_find_statement_token1] = ACTIONS(301), + [aux_sym_assign_statement_token1] = ACTIONS(303), + [aux_sym_catch_statement_token1] = ACTIONS(305), + [aux_sym_finally_statement_token1] = ACTIONS(307), + [aux_sym_accumulate_statement_token1] = ACTIONS(309), + [anon_sym_ROUTINE_DASHLEVEL] = ACTIONS(311), + [anon_sym_BLOCK_DASHLEVEL] = ACTIONS(311), }, [115] = { - [sym_body] = STATE(3576), + [sym_body] = STATE(3967), [sym_comment] = STATE(115), - [sym_qualified_name] = STATE(4733), - [sym__block_terminator] = STATE(3356), + [sym_qualified_name] = STATE(4814), + [sym__block_terminator] = STATE(983), [sym_include] = STATE(115), - [sym_assignment] = STATE(4314), - [sym_variable_definition] = STATE(1535), - [sym_variable_assignment] = STATE(1535), - [sym_buffer_definition] = STATE(1535), - [sym_query_definition] = STATE(1535), - [sym_function_call_statement] = STATE(1535), - [sym_function_call] = STATE(4086), - [sym_if_statement] = STATE(1535), - [sym_label] = STATE(1536), - [sym_repeat_statement] = STATE(1535), - [sym_procedure_statement] = STATE(1535), - [sym_procedure_parameter_definition] = STATE(1535), - [sym_function_statement] = STATE(1535), - [sym_return_statement] = STATE(1535), - [sym_interface_statement] = STATE(1535), - [sym_using_statement] = STATE(1535), - [sym_class_statement] = STATE(1535), - [sym_object_access] = STATE(3567), - [sym_stream_definition] = STATE(1535), - [sym_input_close_statement] = STATE(1535), - [sym_output_close_statement] = STATE(1535), - [sym__stream_statement] = STATE(1535), - [sym_input_stream_statement] = STATE(1537), - [sym_output_stream_statement] = STATE(1537), - [sym_do_block] = STATE(1535), - [sym_case_statement] = STATE(1535), - [sym_for_statement] = STATE(1535), - [sym_find_statement] = STATE(1535), - [sym_abl_statement] = STATE(1535), - [sym_assign_statement] = STATE(1535), - [sym_catch_statement] = STATE(1535), - [sym_finally_statement] = STATE(1535), - [sym_accumulate_statement] = STATE(1535), - [sym_undo_statement] = STATE(1535), - [sym_error_scope_statement] = STATE(1535), - [sym_temp_table_definition] = STATE(1535), - [sym_on_statement] = STATE(1535), - [sym__statement] = STATE(1538), - [aux_sym_source_code_repeat1] = STATE(276), - [sym_identifier] = ACTIONS(227), + [sym_assignment] = STATE(4463), + [sym_variable_definition] = STATE(1550), + [sym_variable_assignment] = STATE(1550), + [sym_buffer_definition] = STATE(1550), + [sym_query_definition] = STATE(1550), + [sym_function_call_statement] = STATE(1550), + [sym_function_call] = STATE(4558), + [sym_if_statement] = STATE(1550), + [sym_label] = STATE(1551), + [sym_repeat_statement] = STATE(1550), + [sym_procedure_statement] = STATE(1550), + [sym_procedure_parameter_definition] = STATE(1550), + [sym_function_statement] = STATE(1550), + [sym_return_statement] = STATE(1550), + [sym_interface_statement] = STATE(1550), + [sym_using_statement] = STATE(1550), + [sym_class_statement] = STATE(1550), + [sym_object_access] = STATE(3661), + [sym_stream_definition] = STATE(1550), + [sym_input_close_statement] = STATE(1550), + [sym_output_close_statement] = STATE(1550), + [sym__stream_statement] = STATE(1550), + [sym_input_stream_statement] = STATE(1552), + [sym_output_stream_statement] = STATE(1552), + [sym_do_block] = STATE(1550), + [sym_case_statement] = STATE(1550), + [sym_for_statement] = STATE(1550), + [sym_find_statement] = STATE(1550), + [sym_abl_statement] = STATE(1550), + [sym_assign_statement] = STATE(1550), + [sym_catch_statement] = STATE(1550), + [sym_finally_statement] = STATE(1550), + [sym_accumulate_statement] = STATE(1550), + [sym_undo_statement] = STATE(1550), + [sym_error_scope_statement] = STATE(1550), + [sym_temp_table_definition] = STATE(1550), + [sym_on_statement] = STATE(1550), + [sym__statement] = STATE(1553), + [aux_sym_source_code_repeat1] = STATE(286), + [sym_identifier] = ACTIONS(263), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), [anon_sym_LBRACE] = ACTIONS(7), - [aux_sym__block_terminator_token1] = ACTIONS(297), - [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), + [aux_sym__block_terminator_token1] = ACTIONS(323), + [aux_sym_input_expression_token1] = ACTIONS(267), + [aux_sym_primitive_type_token19] = ACTIONS(269), + [aux_sym_variable_definition_token1] = ACTIONS(271), + [aux_sym_variable_definition_token2] = ACTIONS(273), + [aux_sym_buffer_definition_token2] = ACTIONS(275), + [aux_sym_argument_mode_token1] = ACTIONS(277), + [aux_sym_if_statement_token1] = ACTIONS(279), + [aux_sym_repeat_statement_token1] = ACTIONS(281), + [aux_sym__procedure_terminator_token1] = ACTIONS(283), + [aux_sym_procedure_parameter_definition_token1] = ACTIONS(285), + [aux_sym__function_terminator_token1] = ACTIONS(287), + [aux_sym_interface_statement_token1] = ACTIONS(289), + [aux_sym_using_statement_token1] = ACTIONS(291), + [aux_sym_on_error_phrase_token1] = ACTIONS(293), + [aux_sym_on_error_phrase_token3] = ACTIONS(295), + [aux_sym_do_block_token1] = ACTIONS(297), + [aux_sym__case_terminator_token1] = ACTIONS(299), + [aux_sym_find_statement_token1] = ACTIONS(301), + [aux_sym_assign_statement_token1] = ACTIONS(303), + [aux_sym_catch_statement_token1] = ACTIONS(305), + [aux_sym_finally_statement_token1] = ACTIONS(307), + [aux_sym_accumulate_statement_token1] = ACTIONS(309), + [anon_sym_ROUTINE_DASHLEVEL] = ACTIONS(311), + [anon_sym_BLOCK_DASHLEVEL] = ACTIONS(311), }, [116] = { - [sym_body] = STATE(3932), + [sym_body] = STATE(4039), [sym_comment] = STATE(116), - [sym_qualified_name] = STATE(4733), - [sym__block_terminator] = STATE(1138), + [sym_qualified_name] = STATE(4814), + [sym__block_terminator] = STATE(1030), [sym_include] = STATE(116), - [sym_assignment] = STATE(4314), - [sym_variable_definition] = STATE(1535), - [sym_variable_assignment] = STATE(1535), - [sym_buffer_definition] = STATE(1535), - [sym_query_definition] = STATE(1535), - [sym_function_call_statement] = STATE(1535), - [sym_function_call] = STATE(4086), - [sym_if_statement] = STATE(1535), - [sym_label] = STATE(1536), - [sym_repeat_statement] = STATE(1535), - [sym_procedure_statement] = STATE(1535), - [sym_procedure_parameter_definition] = STATE(1535), - [sym_function_statement] = STATE(1535), - [sym_return_statement] = STATE(1535), - [sym_interface_statement] = STATE(1535), - [sym_using_statement] = STATE(1535), - [sym_class_statement] = STATE(1535), - [sym_object_access] = STATE(3567), - [sym_stream_definition] = STATE(1535), - [sym_input_close_statement] = STATE(1535), - [sym_output_close_statement] = STATE(1535), - [sym__stream_statement] = STATE(1535), - [sym_input_stream_statement] = STATE(1537), - [sym_output_stream_statement] = STATE(1537), - [sym_do_block] = STATE(1535), - [sym_case_statement] = STATE(1535), - [sym_for_statement] = STATE(1535), - [sym_find_statement] = STATE(1535), - [sym_abl_statement] = STATE(1535), - [sym_assign_statement] = STATE(1535), - [sym_catch_statement] = STATE(1535), - [sym_finally_statement] = STATE(1535), - [sym_accumulate_statement] = STATE(1535), - [sym_undo_statement] = STATE(1535), - [sym_error_scope_statement] = STATE(1535), - [sym_temp_table_definition] = STATE(1535), - [sym_on_statement] = STATE(1535), - [sym__statement] = STATE(1538), - [aux_sym_source_code_repeat1] = STATE(276), - [sym_identifier] = ACTIONS(227), + [sym_assignment] = STATE(4463), + [sym_variable_definition] = STATE(1550), + [sym_variable_assignment] = STATE(1550), + [sym_buffer_definition] = STATE(1550), + [sym_query_definition] = STATE(1550), + [sym_function_call_statement] = STATE(1550), + [sym_function_call] = STATE(4558), + [sym_if_statement] = STATE(1550), + [sym_label] = STATE(1551), + [sym_repeat_statement] = STATE(1550), + [sym_procedure_statement] = STATE(1550), + [sym_procedure_parameter_definition] = STATE(1550), + [sym_function_statement] = STATE(1550), + [sym_return_statement] = STATE(1550), + [sym_interface_statement] = STATE(1550), + [sym_using_statement] = STATE(1550), + [sym_class_statement] = STATE(1550), + [sym_object_access] = STATE(3661), + [sym_stream_definition] = STATE(1550), + [sym_input_close_statement] = STATE(1550), + [sym_output_close_statement] = STATE(1550), + [sym__stream_statement] = STATE(1550), + [sym_input_stream_statement] = STATE(1552), + [sym_output_stream_statement] = STATE(1552), + [sym_do_block] = STATE(1550), + [sym_case_statement] = STATE(1550), + [sym_for_statement] = STATE(1550), + [sym_find_statement] = STATE(1550), + [sym_abl_statement] = STATE(1550), + [sym_assign_statement] = STATE(1550), + [sym_catch_statement] = STATE(1550), + [sym_finally_statement] = STATE(1550), + [sym_accumulate_statement] = STATE(1550), + [sym_undo_statement] = STATE(1550), + [sym_error_scope_statement] = STATE(1550), + [sym_temp_table_definition] = STATE(1550), + [sym_on_statement] = STATE(1550), + [sym__statement] = STATE(1553), + [aux_sym_source_code_repeat1] = STATE(286), + [sym_identifier] = ACTIONS(263), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), [anon_sym_LBRACE] = ACTIONS(7), - [aux_sym__block_terminator_token1] = ACTIONS(299), - [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), + [aux_sym__block_terminator_token1] = ACTIONS(321), + [aux_sym_input_expression_token1] = ACTIONS(267), + [aux_sym_primitive_type_token19] = ACTIONS(269), + [aux_sym_variable_definition_token1] = ACTIONS(271), + [aux_sym_variable_definition_token2] = ACTIONS(273), + [aux_sym_buffer_definition_token2] = ACTIONS(275), + [aux_sym_argument_mode_token1] = ACTIONS(277), + [aux_sym_if_statement_token1] = ACTIONS(279), + [aux_sym_repeat_statement_token1] = ACTIONS(281), + [aux_sym__procedure_terminator_token1] = ACTIONS(283), + [aux_sym_procedure_parameter_definition_token1] = ACTIONS(285), + [aux_sym__function_terminator_token1] = ACTIONS(287), + [aux_sym_interface_statement_token1] = ACTIONS(289), + [aux_sym_using_statement_token1] = ACTIONS(291), + [aux_sym_on_error_phrase_token1] = ACTIONS(293), + [aux_sym_on_error_phrase_token3] = ACTIONS(295), + [aux_sym_do_block_token1] = ACTIONS(297), + [aux_sym__case_terminator_token1] = ACTIONS(299), + [aux_sym_find_statement_token1] = ACTIONS(301), + [aux_sym_assign_statement_token1] = ACTIONS(303), + [aux_sym_catch_statement_token1] = ACTIONS(305), + [aux_sym_finally_statement_token1] = ACTIONS(307), + [aux_sym_accumulate_statement_token1] = ACTIONS(309), + [anon_sym_ROUTINE_DASHLEVEL] = ACTIONS(311), + [anon_sym_BLOCK_DASHLEVEL] = ACTIONS(311), }, [117] = { - [sym_body] = STATE(3880), + [sym_body] = STATE(4045), [sym_comment] = STATE(117), - [sym_qualified_name] = STATE(4733), - [sym__block_terminator] = STATE(1194), + [sym_qualified_name] = STATE(4814), + [sym__block_terminator] = STATE(1040), [sym_include] = STATE(117), - [sym_assignment] = STATE(4314), - [sym_variable_definition] = STATE(1535), - [sym_variable_assignment] = STATE(1535), - [sym_buffer_definition] = STATE(1535), - [sym_query_definition] = STATE(1535), - [sym_function_call_statement] = STATE(1535), - [sym_function_call] = STATE(4086), - [sym_if_statement] = STATE(1535), - [sym_label] = STATE(1536), - [sym_repeat_statement] = STATE(1535), - [sym_procedure_statement] = STATE(1535), - [sym_procedure_parameter_definition] = STATE(1535), - [sym_function_statement] = STATE(1535), - [sym_return_statement] = STATE(1535), - [sym_interface_statement] = STATE(1535), - [sym_using_statement] = STATE(1535), - [sym_class_statement] = STATE(1535), - [sym_object_access] = STATE(3567), - [sym_stream_definition] = STATE(1535), - [sym_input_close_statement] = STATE(1535), - [sym_output_close_statement] = STATE(1535), - [sym__stream_statement] = STATE(1535), - [sym_input_stream_statement] = STATE(1537), - [sym_output_stream_statement] = STATE(1537), - [sym_do_block] = STATE(1535), - [sym_case_statement] = STATE(1535), - [sym_for_statement] = STATE(1535), - [sym_find_statement] = STATE(1535), - [sym_abl_statement] = STATE(1535), - [sym_assign_statement] = STATE(1535), - [sym_catch_statement] = STATE(1535), - [sym_finally_statement] = STATE(1535), - [sym_accumulate_statement] = STATE(1535), - [sym_undo_statement] = STATE(1535), - [sym_error_scope_statement] = STATE(1535), - [sym_temp_table_definition] = STATE(1535), - [sym_on_statement] = STATE(1535), - [sym__statement] = STATE(1538), - [aux_sym_source_code_repeat1] = STATE(276), - [sym_identifier] = ACTIONS(227), + [sym_assignment] = STATE(4463), + [sym_variable_definition] = STATE(1550), + [sym_variable_assignment] = STATE(1550), + [sym_buffer_definition] = STATE(1550), + [sym_query_definition] = STATE(1550), + [sym_function_call_statement] = STATE(1550), + [sym_function_call] = STATE(4558), + [sym_if_statement] = STATE(1550), + [sym_label] = STATE(1551), + [sym_repeat_statement] = STATE(1550), + [sym_procedure_statement] = STATE(1550), + [sym_procedure_parameter_definition] = STATE(1550), + [sym_function_statement] = STATE(1550), + [sym_return_statement] = STATE(1550), + [sym_interface_statement] = STATE(1550), + [sym_using_statement] = STATE(1550), + [sym_class_statement] = STATE(1550), + [sym_object_access] = STATE(3661), + [sym_stream_definition] = STATE(1550), + [sym_input_close_statement] = STATE(1550), + [sym_output_close_statement] = STATE(1550), + [sym__stream_statement] = STATE(1550), + [sym_input_stream_statement] = STATE(1552), + [sym_output_stream_statement] = STATE(1552), + [sym_do_block] = STATE(1550), + [sym_case_statement] = STATE(1550), + [sym_for_statement] = STATE(1550), + [sym_find_statement] = STATE(1550), + [sym_abl_statement] = STATE(1550), + [sym_assign_statement] = STATE(1550), + [sym_catch_statement] = STATE(1550), + [sym_finally_statement] = STATE(1550), + [sym_accumulate_statement] = STATE(1550), + [sym_undo_statement] = STATE(1550), + [sym_error_scope_statement] = STATE(1550), + [sym_temp_table_definition] = STATE(1550), + [sym_on_statement] = STATE(1550), + [sym__statement] = STATE(1553), + [aux_sym_source_code_repeat1] = STATE(286), + [sym_identifier] = ACTIONS(263), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), [anon_sym_LBRACE] = ACTIONS(7), - [aux_sym__block_terminator_token1] = ACTIONS(299), - [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), + [aux_sym__block_terminator_token1] = ACTIONS(321), + [aux_sym_input_expression_token1] = ACTIONS(267), + [aux_sym_primitive_type_token19] = ACTIONS(269), + [aux_sym_variable_definition_token1] = ACTIONS(271), + [aux_sym_variable_definition_token2] = ACTIONS(273), + [aux_sym_buffer_definition_token2] = ACTIONS(275), + [aux_sym_argument_mode_token1] = ACTIONS(277), + [aux_sym_if_statement_token1] = ACTIONS(279), + [aux_sym_repeat_statement_token1] = ACTIONS(281), + [aux_sym__procedure_terminator_token1] = ACTIONS(283), + [aux_sym_procedure_parameter_definition_token1] = ACTIONS(285), + [aux_sym__function_terminator_token1] = ACTIONS(287), + [aux_sym_interface_statement_token1] = ACTIONS(289), + [aux_sym_using_statement_token1] = ACTIONS(291), + [aux_sym_on_error_phrase_token1] = ACTIONS(293), + [aux_sym_on_error_phrase_token3] = ACTIONS(295), + [aux_sym_do_block_token1] = ACTIONS(297), + [aux_sym__case_terminator_token1] = ACTIONS(299), + [aux_sym_find_statement_token1] = ACTIONS(301), + [aux_sym_assign_statement_token1] = ACTIONS(303), + [aux_sym_catch_statement_token1] = ACTIONS(305), + [aux_sym_finally_statement_token1] = ACTIONS(307), + [aux_sym_accumulate_statement_token1] = ACTIONS(309), + [anon_sym_ROUTINE_DASHLEVEL] = ACTIONS(311), + [anon_sym_BLOCK_DASHLEVEL] = ACTIONS(311), }, [118] = { - [sym_body] = STATE(3936), + [sym_body] = STATE(3857), [sym_comment] = STATE(118), - [sym_qualified_name] = STATE(4733), - [sym__block_terminator] = STATE(1178), + [sym_qualified_name] = STATE(4814), + [sym__block_terminator] = STATE(1104), [sym_include] = STATE(118), - [sym_assignment] = STATE(4314), - [sym_variable_definition] = STATE(1535), - [sym_variable_assignment] = STATE(1535), - [sym_buffer_definition] = STATE(1535), - [sym_query_definition] = STATE(1535), - [sym_function_call_statement] = STATE(1535), - [sym_function_call] = STATE(4086), - [sym_if_statement] = STATE(1535), - [sym_label] = STATE(1536), - [sym_repeat_statement] = STATE(1535), - [sym_procedure_statement] = STATE(1535), - [sym_procedure_parameter_definition] = STATE(1535), - [sym_function_statement] = STATE(1535), - [sym_return_statement] = STATE(1535), - [sym_interface_statement] = STATE(1535), - [sym_using_statement] = STATE(1535), - [sym_class_statement] = STATE(1535), - [sym_object_access] = STATE(3567), - [sym_stream_definition] = STATE(1535), - [sym_input_close_statement] = STATE(1535), - [sym_output_close_statement] = STATE(1535), - [sym__stream_statement] = STATE(1535), - [sym_input_stream_statement] = STATE(1537), - [sym_output_stream_statement] = STATE(1537), - [sym_do_block] = STATE(1535), - [sym_case_statement] = STATE(1535), - [sym_for_statement] = STATE(1535), - [sym_find_statement] = STATE(1535), - [sym_abl_statement] = STATE(1535), - [sym_assign_statement] = STATE(1535), - [sym_catch_statement] = STATE(1535), - [sym_finally_statement] = STATE(1535), - [sym_accumulate_statement] = STATE(1535), - [sym_undo_statement] = STATE(1535), - [sym_error_scope_statement] = STATE(1535), - [sym_temp_table_definition] = STATE(1535), - [sym_on_statement] = STATE(1535), - [sym__statement] = STATE(1538), - [aux_sym_source_code_repeat1] = STATE(276), - [sym_identifier] = ACTIONS(227), + [sym_assignment] = STATE(4463), + [sym_variable_definition] = STATE(1550), + [sym_variable_assignment] = STATE(1550), + [sym_buffer_definition] = STATE(1550), + [sym_query_definition] = STATE(1550), + [sym_function_call_statement] = STATE(1550), + [sym_function_call] = STATE(4558), + [sym_if_statement] = STATE(1550), + [sym_label] = STATE(1551), + [sym_repeat_statement] = STATE(1550), + [sym_procedure_statement] = STATE(1550), + [sym_procedure_parameter_definition] = STATE(1550), + [sym_function_statement] = STATE(1550), + [sym_return_statement] = STATE(1550), + [sym_interface_statement] = STATE(1550), + [sym_using_statement] = STATE(1550), + [sym_class_statement] = STATE(1550), + [sym_object_access] = STATE(3661), + [sym_stream_definition] = STATE(1550), + [sym_input_close_statement] = STATE(1550), + [sym_output_close_statement] = STATE(1550), + [sym__stream_statement] = STATE(1550), + [sym_input_stream_statement] = STATE(1552), + [sym_output_stream_statement] = STATE(1552), + [sym_do_block] = STATE(1550), + [sym_case_statement] = STATE(1550), + [sym_for_statement] = STATE(1550), + [sym_find_statement] = STATE(1550), + [sym_abl_statement] = STATE(1550), + [sym_assign_statement] = STATE(1550), + [sym_catch_statement] = STATE(1550), + [sym_finally_statement] = STATE(1550), + [sym_accumulate_statement] = STATE(1550), + [sym_undo_statement] = STATE(1550), + [sym_error_scope_statement] = STATE(1550), + [sym_temp_table_definition] = STATE(1550), + [sym_on_statement] = STATE(1550), + [sym__statement] = STATE(1553), + [aux_sym_source_code_repeat1] = STATE(286), + [sym_identifier] = ACTIONS(263), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), [anon_sym_LBRACE] = ACTIONS(7), - [aux_sym__block_terminator_token1] = ACTIONS(299), - [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), + [aux_sym__block_terminator_token1] = ACTIONS(323), + [aux_sym_input_expression_token1] = ACTIONS(267), + [aux_sym_primitive_type_token19] = ACTIONS(269), + [aux_sym_variable_definition_token1] = ACTIONS(271), + [aux_sym_variable_definition_token2] = ACTIONS(273), + [aux_sym_buffer_definition_token2] = ACTIONS(275), + [aux_sym_argument_mode_token1] = ACTIONS(277), + [aux_sym_if_statement_token1] = ACTIONS(279), + [aux_sym_repeat_statement_token1] = ACTIONS(281), + [aux_sym__procedure_terminator_token1] = ACTIONS(283), + [aux_sym_procedure_parameter_definition_token1] = ACTIONS(285), + [aux_sym__function_terminator_token1] = ACTIONS(287), + [aux_sym_interface_statement_token1] = ACTIONS(289), + [aux_sym_using_statement_token1] = ACTIONS(291), + [aux_sym_on_error_phrase_token1] = ACTIONS(293), + [aux_sym_on_error_phrase_token3] = ACTIONS(295), + [aux_sym_do_block_token1] = ACTIONS(297), + [aux_sym__case_terminator_token1] = ACTIONS(299), + [aux_sym_find_statement_token1] = ACTIONS(301), + [aux_sym_assign_statement_token1] = ACTIONS(303), + [aux_sym_catch_statement_token1] = ACTIONS(305), + [aux_sym_finally_statement_token1] = ACTIONS(307), + [aux_sym_accumulate_statement_token1] = ACTIONS(309), + [anon_sym_ROUTINE_DASHLEVEL] = ACTIONS(311), + [anon_sym_BLOCK_DASHLEVEL] = ACTIONS(311), }, [119] = { - [sym_body] = STATE(3570), + [sym_body] = STATE(4058), [sym_comment] = STATE(119), - [sym_qualified_name] = STATE(4733), - [sym__block_terminator] = STATE(1091), + [sym_qualified_name] = STATE(4814), + [sym__block_terminator] = STATE(1052), [sym_include] = STATE(119), - [sym_assignment] = STATE(4314), - [sym_variable_definition] = STATE(1535), - [sym_variable_assignment] = STATE(1535), - [sym_buffer_definition] = STATE(1535), - [sym_query_definition] = STATE(1535), - [sym_function_call_statement] = STATE(1535), - [sym_function_call] = STATE(4086), - [sym_if_statement] = STATE(1535), - [sym_label] = STATE(1536), - [sym_repeat_statement] = STATE(1535), - [sym_procedure_statement] = STATE(1535), - [sym_procedure_parameter_definition] = STATE(1535), - [sym_function_statement] = STATE(1535), - [sym_return_statement] = STATE(1535), - [sym_interface_statement] = STATE(1535), - [sym_using_statement] = STATE(1535), - [sym_class_statement] = STATE(1535), - [sym_object_access] = STATE(3567), - [sym_stream_definition] = STATE(1535), - [sym_input_close_statement] = STATE(1535), - [sym_output_close_statement] = STATE(1535), - [sym__stream_statement] = STATE(1535), - [sym_input_stream_statement] = STATE(1537), - [sym_output_stream_statement] = STATE(1537), - [sym_do_block] = STATE(1535), - [sym_case_statement] = STATE(1535), - [sym_for_statement] = STATE(1535), - [sym_find_statement] = STATE(1535), - [sym_abl_statement] = STATE(1535), - [sym_assign_statement] = STATE(1535), - [sym_catch_statement] = STATE(1535), - [sym_finally_statement] = STATE(1535), - [sym_accumulate_statement] = STATE(1535), - [sym_undo_statement] = STATE(1535), - [sym_error_scope_statement] = STATE(1535), - [sym_temp_table_definition] = STATE(1535), - [sym_on_statement] = STATE(1535), - [sym__statement] = STATE(1538), - [aux_sym_source_code_repeat1] = STATE(276), - [sym_identifier] = ACTIONS(227), + [sym_assignment] = STATE(4463), + [sym_variable_definition] = STATE(1550), + [sym_variable_assignment] = STATE(1550), + [sym_buffer_definition] = STATE(1550), + [sym_query_definition] = STATE(1550), + [sym_function_call_statement] = STATE(1550), + [sym_function_call] = STATE(4558), + [sym_if_statement] = STATE(1550), + [sym_label] = STATE(1551), + [sym_repeat_statement] = STATE(1550), + [sym_procedure_statement] = STATE(1550), + [sym_procedure_parameter_definition] = STATE(1550), + [sym_function_statement] = STATE(1550), + [sym_return_statement] = STATE(1550), + [sym_interface_statement] = STATE(1550), + [sym_using_statement] = STATE(1550), + [sym_class_statement] = STATE(1550), + [sym_object_access] = STATE(3661), + [sym_stream_definition] = STATE(1550), + [sym_input_close_statement] = STATE(1550), + [sym_output_close_statement] = STATE(1550), + [sym__stream_statement] = STATE(1550), + [sym_input_stream_statement] = STATE(1552), + [sym_output_stream_statement] = STATE(1552), + [sym_do_block] = STATE(1550), + [sym_case_statement] = STATE(1550), + [sym_for_statement] = STATE(1550), + [sym_find_statement] = STATE(1550), + [sym_abl_statement] = STATE(1550), + [sym_assign_statement] = STATE(1550), + [sym_catch_statement] = STATE(1550), + [sym_finally_statement] = STATE(1550), + [sym_accumulate_statement] = STATE(1550), + [sym_undo_statement] = STATE(1550), + [sym_error_scope_statement] = STATE(1550), + [sym_temp_table_definition] = STATE(1550), + [sym_on_statement] = STATE(1550), + [sym__statement] = STATE(1553), + [aux_sym_source_code_repeat1] = STATE(286), + [sym_identifier] = ACTIONS(263), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), [anon_sym_LBRACE] = ACTIONS(7), - [aux_sym__block_terminator_token1] = ACTIONS(301), - [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), + [aux_sym__block_terminator_token1] = ACTIONS(321), + [aux_sym_input_expression_token1] = ACTIONS(267), + [aux_sym_primitive_type_token19] = ACTIONS(269), + [aux_sym_variable_definition_token1] = ACTIONS(271), + [aux_sym_variable_definition_token2] = ACTIONS(273), + [aux_sym_buffer_definition_token2] = ACTIONS(275), + [aux_sym_argument_mode_token1] = ACTIONS(277), + [aux_sym_if_statement_token1] = ACTIONS(279), + [aux_sym_repeat_statement_token1] = ACTIONS(281), + [aux_sym__procedure_terminator_token1] = ACTIONS(283), + [aux_sym_procedure_parameter_definition_token1] = ACTIONS(285), + [aux_sym__function_terminator_token1] = ACTIONS(287), + [aux_sym_interface_statement_token1] = ACTIONS(289), + [aux_sym_using_statement_token1] = ACTIONS(291), + [aux_sym_on_error_phrase_token1] = ACTIONS(293), + [aux_sym_on_error_phrase_token3] = ACTIONS(295), + [aux_sym_do_block_token1] = ACTIONS(297), + [aux_sym__case_terminator_token1] = ACTIONS(299), + [aux_sym_find_statement_token1] = ACTIONS(301), + [aux_sym_assign_statement_token1] = ACTIONS(303), + [aux_sym_catch_statement_token1] = ACTIONS(305), + [aux_sym_finally_statement_token1] = ACTIONS(307), + [aux_sym_accumulate_statement_token1] = ACTIONS(309), + [anon_sym_ROUTINE_DASHLEVEL] = ACTIONS(311), + [anon_sym_BLOCK_DASHLEVEL] = ACTIONS(311), }, [120] = { - [sym_body] = STATE(3593), + [sym_body] = STATE(4008), [sym_comment] = STATE(120), - [sym_qualified_name] = STATE(4733), - [sym__block_terminator] = STATE(1111), + [sym_qualified_name] = STATE(4814), + [sym__block_terminator] = STATE(1106), [sym_include] = STATE(120), - [sym_assignment] = STATE(4314), - [sym_variable_definition] = STATE(1535), - [sym_variable_assignment] = STATE(1535), - [sym_buffer_definition] = STATE(1535), - [sym_query_definition] = STATE(1535), - [sym_function_call_statement] = STATE(1535), - [sym_function_call] = STATE(4086), - [sym_if_statement] = STATE(1535), - [sym_label] = STATE(1536), - [sym_repeat_statement] = STATE(1535), - [sym_procedure_statement] = STATE(1535), - [sym_procedure_parameter_definition] = STATE(1535), - [sym_function_statement] = STATE(1535), - [sym_return_statement] = STATE(1535), - [sym_interface_statement] = STATE(1535), - [sym_using_statement] = STATE(1535), - [sym_class_statement] = STATE(1535), - [sym_object_access] = STATE(3567), - [sym_stream_definition] = STATE(1535), - [sym_input_close_statement] = STATE(1535), - [sym_output_close_statement] = STATE(1535), - [sym__stream_statement] = STATE(1535), - [sym_input_stream_statement] = STATE(1537), - [sym_output_stream_statement] = STATE(1537), - [sym_do_block] = STATE(1535), - [sym_case_statement] = STATE(1535), - [sym_for_statement] = STATE(1535), - [sym_find_statement] = STATE(1535), - [sym_abl_statement] = STATE(1535), - [sym_assign_statement] = STATE(1535), - [sym_catch_statement] = STATE(1535), - [sym_finally_statement] = STATE(1535), - [sym_accumulate_statement] = STATE(1535), - [sym_undo_statement] = STATE(1535), - [sym_error_scope_statement] = STATE(1535), - [sym_temp_table_definition] = STATE(1535), - [sym_on_statement] = STATE(1535), - [sym__statement] = STATE(1538), - [aux_sym_source_code_repeat1] = STATE(276), - [sym_identifier] = ACTIONS(227), + [sym_assignment] = STATE(4463), + [sym_variable_definition] = STATE(1550), + [sym_variable_assignment] = STATE(1550), + [sym_buffer_definition] = STATE(1550), + [sym_query_definition] = STATE(1550), + [sym_function_call_statement] = STATE(1550), + [sym_function_call] = STATE(4558), + [sym_if_statement] = STATE(1550), + [sym_label] = STATE(1551), + [sym_repeat_statement] = STATE(1550), + [sym_procedure_statement] = STATE(1550), + [sym_procedure_parameter_definition] = STATE(1550), + [sym_function_statement] = STATE(1550), + [sym_return_statement] = STATE(1550), + [sym_interface_statement] = STATE(1550), + [sym_using_statement] = STATE(1550), + [sym_class_statement] = STATE(1550), + [sym_object_access] = STATE(3661), + [sym_stream_definition] = STATE(1550), + [sym_input_close_statement] = STATE(1550), + [sym_output_close_statement] = STATE(1550), + [sym__stream_statement] = STATE(1550), + [sym_input_stream_statement] = STATE(1552), + [sym_output_stream_statement] = STATE(1552), + [sym_do_block] = STATE(1550), + [sym_case_statement] = STATE(1550), + [sym_for_statement] = STATE(1550), + [sym_find_statement] = STATE(1550), + [sym_abl_statement] = STATE(1550), + [sym_assign_statement] = STATE(1550), + [sym_catch_statement] = STATE(1550), + [sym_finally_statement] = STATE(1550), + [sym_accumulate_statement] = STATE(1550), + [sym_undo_statement] = STATE(1550), + [sym_error_scope_statement] = STATE(1550), + [sym_temp_table_definition] = STATE(1550), + [sym_on_statement] = STATE(1550), + [sym__statement] = STATE(1553), + [aux_sym_source_code_repeat1] = STATE(286), + [sym_identifier] = ACTIONS(263), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), [anon_sym_LBRACE] = ACTIONS(7), - [aux_sym__block_terminator_token1] = ACTIONS(301), - [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), + [aux_sym__block_terminator_token1] = ACTIONS(323), + [aux_sym_input_expression_token1] = ACTIONS(267), + [aux_sym_primitive_type_token19] = ACTIONS(269), + [aux_sym_variable_definition_token1] = ACTIONS(271), + [aux_sym_variable_definition_token2] = ACTIONS(273), + [aux_sym_buffer_definition_token2] = ACTIONS(275), + [aux_sym_argument_mode_token1] = ACTIONS(277), + [aux_sym_if_statement_token1] = ACTIONS(279), + [aux_sym_repeat_statement_token1] = ACTIONS(281), + [aux_sym__procedure_terminator_token1] = ACTIONS(283), + [aux_sym_procedure_parameter_definition_token1] = ACTIONS(285), + [aux_sym__function_terminator_token1] = ACTIONS(287), + [aux_sym_interface_statement_token1] = ACTIONS(289), + [aux_sym_using_statement_token1] = ACTIONS(291), + [aux_sym_on_error_phrase_token1] = ACTIONS(293), + [aux_sym_on_error_phrase_token3] = ACTIONS(295), + [aux_sym_do_block_token1] = ACTIONS(297), + [aux_sym__case_terminator_token1] = ACTIONS(299), + [aux_sym_find_statement_token1] = ACTIONS(301), + [aux_sym_assign_statement_token1] = ACTIONS(303), + [aux_sym_catch_statement_token1] = ACTIONS(305), + [aux_sym_finally_statement_token1] = ACTIONS(307), + [aux_sym_accumulate_statement_token1] = ACTIONS(309), + [anon_sym_ROUTINE_DASHLEVEL] = ACTIONS(311), + [anon_sym_BLOCK_DASHLEVEL] = ACTIONS(311), }, [121] = { + [sym_body] = STATE(4071), [sym_comment] = STATE(121), - [sym__logical_operator] = STATE(411), - [sym__additive_operator] = STATE(408), - [sym__multiplicative_operator] = STATE(347), - [sym__comparison_operator] = STATE(375), + [sym_qualified_name] = STATE(4814), + [sym__block_terminator] = STATE(1057), [sym_include] = STATE(121), - [anon_sym_SLASH_SLASH] = ACTIONS(59), - [anon_sym_SLASH_STAR] = ACTIONS(61), - [anon_sym_SLASH] = ACTIONS(283), - [anon_sym_LBRACE] = ACTIONS(65), - [anon_sym_STAR] = ACTIONS(285), - [sym__terminator] = ACTIONS(305), - [anon_sym_LPAREN] = ACTIONS(305), - [anon_sym_RPAREN] = ACTIONS(305), - [anon_sym_PLUS] = ACTIONS(289), - [anon_sym_DASH] = ACTIONS(289), - [anon_sym_LT] = ACTIONS(291), - [anon_sym_LT_EQ] = ACTIONS(293), - [anon_sym_LT_GT] = ACTIONS(293), - [anon_sym_EQ] = ACTIONS(293), - [anon_sym_GT] = ACTIONS(291), - [anon_sym_GT_EQ] = ACTIONS(293), - [aux_sym__comparison_operator_token1] = ACTIONS(293), - [aux_sym__comparison_operator_token2] = ACTIONS(293), - [aux_sym__comparison_operator_token3] = ACTIONS(293), - [aux_sym__comparison_operator_token4] = ACTIONS(293), - [aux_sym__comparison_operator_token5] = ACTIONS(293), - [aux_sym__comparison_operator_token6] = ACTIONS(293), - [aux_sym__comparison_operator_token7] = ACTIONS(293), - [aux_sym__comparison_operator_token8] = ACTIONS(293), - [aux_sym__comparison_operator_token9] = ACTIONS(293), - [aux_sym_variable_tuning_token1] = ACTIONS(305), - [aux_sym_variable_tuning_token2] = ACTIONS(305), - [aux_sym_variable_tuning_token3] = ACTIONS(305), - [aux_sym_variable_tuning_token4] = ACTIONS(305), - [aux_sym_variable_tuning_token5] = ACTIONS(305), - [aux_sym_variable_tuning_token6] = ACTIONS(305), - [anon_sym_COMMA] = ACTIONS(305), - [aux_sym_if_statement_token2] = ACTIONS(305), - [aux_sym_else_if_statement_token1] = ACTIONS(305), - [anon_sym_COLON] = ACTIONS(305), - [aux_sym_while_phrase_token1] = ACTIONS(305), - [aux_sym_property_tuning_token1] = ACTIONS(305), - [aux_sym_event_definition_token1] = ACTIONS(305), - [aux_sym_input_stream_tuning_token1] = ACTIONS(305), - [aux_sym_input_stream_tuning_token2] = ACTIONS(305), - [aux_sym_input_stream_tuning_token3] = ACTIONS(305), - [aux_sym_input_stream_tuning_token4] = ACTIONS(305), - [aux_sym_input_stream_tuning_token5] = ACTIONS(305), - [aux_sym_input_stream_tuning_token6] = ACTIONS(305), - [aux_sym_input_stream_tuning_token7] = ACTIONS(305), - [aux_sym_input_stream_tuning_token8] = ACTIONS(305), - [aux_sym_input_stream_tuning_token9] = ACTIONS(305), - [aux_sym_input_stream_tuning_token11] = ACTIONS(305), - [aux_sym_output_stream_tuning_token1] = ACTIONS(305), - [aux_sym_output_stream_tuning_token2] = ACTIONS(305), - [aux_sym_output_stream_tuning_token3] = ACTIONS(305), - [aux_sym_output_stream_tuning_token4] = ACTIONS(305), - [aux_sym_output_stream_tuning_token5] = ACTIONS(305), - [aux_sym_output_stream_tuning_token6] = ACTIONS(305), - [aux_sym_output_stream_tuning_token7] = ACTIONS(305), - [aux_sym_output_stream_tuning_token8] = ACTIONS(305), - [aux_sym_output_stream_statement_token1] = ACTIONS(305), - [aux_sym_on_error_phrase_token1] = ACTIONS(305), - [aux_sym_stop_after_phrase_token1] = ACTIONS(305), - [aux_sym_do_tuning_token1] = ACTIONS(305), - [anon_sym_BY] = ACTIONS(305), - [aux_sym_of_token1] = ACTIONS(305), - [aux_sym_field_definition_token1] = ACTIONS(305), - [aux_sym_index_definition_token1] = ACTIONS(305), - [aux_sym_on_statement_token1] = ACTIONS(305), - [sym__or_operator] = ACTIONS(295), - [sym__and_operator] = ACTIONS(295), + [sym_assignment] = STATE(4463), + [sym_variable_definition] = STATE(1550), + [sym_variable_assignment] = STATE(1550), + [sym_buffer_definition] = STATE(1550), + [sym_query_definition] = STATE(1550), + [sym_function_call_statement] = STATE(1550), + [sym_function_call] = STATE(4558), + [sym_if_statement] = STATE(1550), + [sym_label] = STATE(1551), + [sym_repeat_statement] = STATE(1550), + [sym_procedure_statement] = STATE(1550), + [sym_procedure_parameter_definition] = STATE(1550), + [sym_function_statement] = STATE(1550), + [sym_return_statement] = STATE(1550), + [sym_interface_statement] = STATE(1550), + [sym_using_statement] = STATE(1550), + [sym_class_statement] = STATE(1550), + [sym_object_access] = STATE(3661), + [sym_stream_definition] = STATE(1550), + [sym_input_close_statement] = STATE(1550), + [sym_output_close_statement] = STATE(1550), + [sym__stream_statement] = STATE(1550), + [sym_input_stream_statement] = STATE(1552), + [sym_output_stream_statement] = STATE(1552), + [sym_do_block] = STATE(1550), + [sym_case_statement] = STATE(1550), + [sym_for_statement] = STATE(1550), + [sym_find_statement] = STATE(1550), + [sym_abl_statement] = STATE(1550), + [sym_assign_statement] = STATE(1550), + [sym_catch_statement] = STATE(1550), + [sym_finally_statement] = STATE(1550), + [sym_accumulate_statement] = STATE(1550), + [sym_undo_statement] = STATE(1550), + [sym_error_scope_statement] = STATE(1550), + [sym_temp_table_definition] = STATE(1550), + [sym_on_statement] = STATE(1550), + [sym__statement] = STATE(1553), + [aux_sym_source_code_repeat1] = STATE(286), + [sym_identifier] = ACTIONS(263), + [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(267), + [aux_sym_primitive_type_token19] = ACTIONS(269), + [aux_sym_variable_definition_token1] = ACTIONS(271), + [aux_sym_variable_definition_token2] = ACTIONS(273), + [aux_sym_buffer_definition_token2] = ACTIONS(275), + [aux_sym_argument_mode_token1] = ACTIONS(277), + [aux_sym_if_statement_token1] = ACTIONS(279), + [aux_sym_repeat_statement_token1] = ACTIONS(281), + [aux_sym__procedure_terminator_token1] = ACTIONS(283), + [aux_sym_procedure_parameter_definition_token1] = ACTIONS(285), + [aux_sym__function_terminator_token1] = ACTIONS(287), + [aux_sym_interface_statement_token1] = ACTIONS(289), + [aux_sym_using_statement_token1] = ACTIONS(291), + [aux_sym_on_error_phrase_token1] = ACTIONS(293), + [aux_sym_on_error_phrase_token3] = ACTIONS(295), + [aux_sym_do_block_token1] = ACTIONS(297), + [aux_sym__case_terminator_token1] = ACTIONS(299), + [aux_sym_find_statement_token1] = ACTIONS(301), + [aux_sym_assign_statement_token1] = ACTIONS(303), + [aux_sym_catch_statement_token1] = ACTIONS(305), + [aux_sym_finally_statement_token1] = ACTIONS(307), + [aux_sym_accumulate_statement_token1] = ACTIONS(309), + [anon_sym_ROUTINE_DASHLEVEL] = ACTIONS(311), + [anon_sym_BLOCK_DASHLEVEL] = ACTIONS(311), }, [122] = { - [sym_body] = STATE(3953), + [sym_body] = STATE(4079), [sym_comment] = STATE(122), - [sym_qualified_name] = STATE(4733), - [sym__block_terminator] = STATE(1209), + [sym_qualified_name] = STATE(4814), + [sym__block_terminator] = STATE(1058), [sym_include] = STATE(122), - [sym_assignment] = STATE(4314), - [sym_variable_definition] = STATE(1535), - [sym_variable_assignment] = STATE(1535), - [sym_buffer_definition] = STATE(1535), - [sym_query_definition] = STATE(1535), - [sym_function_call_statement] = STATE(1535), - [sym_function_call] = STATE(4086), - [sym_if_statement] = STATE(1535), - [sym_label] = STATE(1536), - [sym_repeat_statement] = STATE(1535), - [sym_procedure_statement] = STATE(1535), - [sym_procedure_parameter_definition] = STATE(1535), - [sym_function_statement] = STATE(1535), - [sym_return_statement] = STATE(1535), - [sym_interface_statement] = STATE(1535), - [sym_using_statement] = STATE(1535), - [sym_class_statement] = STATE(1535), - [sym_object_access] = STATE(3567), - [sym_stream_definition] = STATE(1535), - [sym_input_close_statement] = STATE(1535), - [sym_output_close_statement] = STATE(1535), - [sym__stream_statement] = STATE(1535), - [sym_input_stream_statement] = STATE(1537), - [sym_output_stream_statement] = STATE(1537), - [sym_do_block] = STATE(1535), - [sym_case_statement] = STATE(1535), - [sym_for_statement] = STATE(1535), - [sym_find_statement] = STATE(1535), - [sym_abl_statement] = STATE(1535), - [sym_assign_statement] = STATE(1535), - [sym_catch_statement] = STATE(1535), - [sym_finally_statement] = STATE(1535), - [sym_accumulate_statement] = STATE(1535), - [sym_undo_statement] = STATE(1535), - [sym_error_scope_statement] = STATE(1535), - [sym_temp_table_definition] = STATE(1535), - [sym_on_statement] = STATE(1535), - [sym__statement] = STATE(1538), - [aux_sym_source_code_repeat1] = STATE(276), - [sym_identifier] = ACTIONS(227), + [sym_assignment] = STATE(4463), + [sym_variable_definition] = STATE(1550), + [sym_variable_assignment] = STATE(1550), + [sym_buffer_definition] = STATE(1550), + [sym_query_definition] = STATE(1550), + [sym_function_call_statement] = STATE(1550), + [sym_function_call] = STATE(4558), + [sym_if_statement] = STATE(1550), + [sym_label] = STATE(1551), + [sym_repeat_statement] = STATE(1550), + [sym_procedure_statement] = STATE(1550), + [sym_procedure_parameter_definition] = STATE(1550), + [sym_function_statement] = STATE(1550), + [sym_return_statement] = STATE(1550), + [sym_interface_statement] = STATE(1550), + [sym_using_statement] = STATE(1550), + [sym_class_statement] = STATE(1550), + [sym_object_access] = STATE(3661), + [sym_stream_definition] = STATE(1550), + [sym_input_close_statement] = STATE(1550), + [sym_output_close_statement] = STATE(1550), + [sym__stream_statement] = STATE(1550), + [sym_input_stream_statement] = STATE(1552), + [sym_output_stream_statement] = STATE(1552), + [sym_do_block] = STATE(1550), + [sym_case_statement] = STATE(1550), + [sym_for_statement] = STATE(1550), + [sym_find_statement] = STATE(1550), + [sym_abl_statement] = STATE(1550), + [sym_assign_statement] = STATE(1550), + [sym_catch_statement] = STATE(1550), + [sym_finally_statement] = STATE(1550), + [sym_accumulate_statement] = STATE(1550), + [sym_undo_statement] = STATE(1550), + [sym_error_scope_statement] = STATE(1550), + [sym_temp_table_definition] = STATE(1550), + [sym_on_statement] = STATE(1550), + [sym__statement] = STATE(1553), + [aux_sym_source_code_repeat1] = STATE(286), + [sym_identifier] = ACTIONS(263), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), [anon_sym_LBRACE] = ACTIONS(7), - [aux_sym__block_terminator_token1] = ACTIONS(299), - [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), + [aux_sym__block_terminator_token1] = ACTIONS(321), + [aux_sym_input_expression_token1] = ACTIONS(267), + [aux_sym_primitive_type_token19] = ACTIONS(269), + [aux_sym_variable_definition_token1] = ACTIONS(271), + [aux_sym_variable_definition_token2] = ACTIONS(273), + [aux_sym_buffer_definition_token2] = ACTIONS(275), + [aux_sym_argument_mode_token1] = ACTIONS(277), + [aux_sym_if_statement_token1] = ACTIONS(279), + [aux_sym_repeat_statement_token1] = ACTIONS(281), + [aux_sym__procedure_terminator_token1] = ACTIONS(283), + [aux_sym_procedure_parameter_definition_token1] = ACTIONS(285), + [aux_sym__function_terminator_token1] = ACTIONS(287), + [aux_sym_interface_statement_token1] = ACTIONS(289), + [aux_sym_using_statement_token1] = ACTIONS(291), + [aux_sym_on_error_phrase_token1] = ACTIONS(293), + [aux_sym_on_error_phrase_token3] = ACTIONS(295), + [aux_sym_do_block_token1] = ACTIONS(297), + [aux_sym__case_terminator_token1] = ACTIONS(299), + [aux_sym_find_statement_token1] = ACTIONS(301), + [aux_sym_assign_statement_token1] = ACTIONS(303), + [aux_sym_catch_statement_token1] = ACTIONS(305), + [aux_sym_finally_statement_token1] = ACTIONS(307), + [aux_sym_accumulate_statement_token1] = ACTIONS(309), + [anon_sym_ROUTINE_DASHLEVEL] = ACTIONS(311), + [anon_sym_BLOCK_DASHLEVEL] = ACTIONS(311), }, [123] = { - [sym_body] = STATE(4037), + [sym_body] = STATE(4083), [sym_comment] = STATE(123), - [sym_qualified_name] = STATE(4733), - [sym__block_terminator] = STATE(1190), + [sym_qualified_name] = STATE(4814), + [sym__block_terminator] = STATE(1063), [sym_include] = STATE(123), - [sym_assignment] = STATE(4314), - [sym_variable_definition] = STATE(1535), - [sym_variable_assignment] = STATE(1535), - [sym_buffer_definition] = STATE(1535), - [sym_query_definition] = STATE(1535), - [sym_function_call_statement] = STATE(1535), - [sym_function_call] = STATE(4086), - [sym_if_statement] = STATE(1535), - [sym_label] = STATE(1536), - [sym_repeat_statement] = STATE(1535), - [sym_procedure_statement] = STATE(1535), - [sym_procedure_parameter_definition] = STATE(1535), - [sym_function_statement] = STATE(1535), - [sym_return_statement] = STATE(1535), - [sym_interface_statement] = STATE(1535), - [sym_using_statement] = STATE(1535), - [sym_class_statement] = STATE(1535), - [sym_object_access] = STATE(3567), - [sym_stream_definition] = STATE(1535), - [sym_input_close_statement] = STATE(1535), - [sym_output_close_statement] = STATE(1535), - [sym__stream_statement] = STATE(1535), - [sym_input_stream_statement] = STATE(1537), - [sym_output_stream_statement] = STATE(1537), - [sym_do_block] = STATE(1535), - [sym_case_statement] = STATE(1535), - [sym_for_statement] = STATE(1535), - [sym_find_statement] = STATE(1535), - [sym_abl_statement] = STATE(1535), - [sym_assign_statement] = STATE(1535), - [sym_catch_statement] = STATE(1535), - [sym_finally_statement] = STATE(1535), - [sym_accumulate_statement] = STATE(1535), - [sym_undo_statement] = STATE(1535), - [sym_error_scope_statement] = STATE(1535), - [sym_temp_table_definition] = STATE(1535), - [sym_on_statement] = STATE(1535), - [sym__statement] = STATE(1538), - [aux_sym_source_code_repeat1] = STATE(276), - [sym_identifier] = ACTIONS(227), + [sym_assignment] = STATE(4463), + [sym_variable_definition] = STATE(1550), + [sym_variable_assignment] = STATE(1550), + [sym_buffer_definition] = STATE(1550), + [sym_query_definition] = STATE(1550), + [sym_function_call_statement] = STATE(1550), + [sym_function_call] = STATE(4558), + [sym_if_statement] = STATE(1550), + [sym_label] = STATE(1551), + [sym_repeat_statement] = STATE(1550), + [sym_procedure_statement] = STATE(1550), + [sym_procedure_parameter_definition] = STATE(1550), + [sym_function_statement] = STATE(1550), + [sym_return_statement] = STATE(1550), + [sym_interface_statement] = STATE(1550), + [sym_using_statement] = STATE(1550), + [sym_class_statement] = STATE(1550), + [sym_object_access] = STATE(3661), + [sym_stream_definition] = STATE(1550), + [sym_input_close_statement] = STATE(1550), + [sym_output_close_statement] = STATE(1550), + [sym__stream_statement] = STATE(1550), + [sym_input_stream_statement] = STATE(1552), + [sym_output_stream_statement] = STATE(1552), + [sym_do_block] = STATE(1550), + [sym_case_statement] = STATE(1550), + [sym_for_statement] = STATE(1550), + [sym_find_statement] = STATE(1550), + [sym_abl_statement] = STATE(1550), + [sym_assign_statement] = STATE(1550), + [sym_catch_statement] = STATE(1550), + [sym_finally_statement] = STATE(1550), + [sym_accumulate_statement] = STATE(1550), + [sym_undo_statement] = STATE(1550), + [sym_error_scope_statement] = STATE(1550), + [sym_temp_table_definition] = STATE(1550), + [sym_on_statement] = STATE(1550), + [sym__statement] = STATE(1553), + [aux_sym_source_code_repeat1] = STATE(286), + [sym_identifier] = ACTIONS(263), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), [anon_sym_LBRACE] = ACTIONS(7), - [aux_sym__block_terminator_token1] = ACTIONS(299), - [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), + [aux_sym__block_terminator_token1] = ACTIONS(321), + [aux_sym_input_expression_token1] = ACTIONS(267), + [aux_sym_primitive_type_token19] = ACTIONS(269), + [aux_sym_variable_definition_token1] = ACTIONS(271), + [aux_sym_variable_definition_token2] = ACTIONS(273), + [aux_sym_buffer_definition_token2] = ACTIONS(275), + [aux_sym_argument_mode_token1] = ACTIONS(277), + [aux_sym_if_statement_token1] = ACTIONS(279), + [aux_sym_repeat_statement_token1] = ACTIONS(281), + [aux_sym__procedure_terminator_token1] = ACTIONS(283), + [aux_sym_procedure_parameter_definition_token1] = ACTIONS(285), + [aux_sym__function_terminator_token1] = ACTIONS(287), + [aux_sym_interface_statement_token1] = ACTIONS(289), + [aux_sym_using_statement_token1] = ACTIONS(291), + [aux_sym_on_error_phrase_token1] = ACTIONS(293), + [aux_sym_on_error_phrase_token3] = ACTIONS(295), + [aux_sym_do_block_token1] = ACTIONS(297), + [aux_sym__case_terminator_token1] = ACTIONS(299), + [aux_sym_find_statement_token1] = ACTIONS(301), + [aux_sym_assign_statement_token1] = ACTIONS(303), + [aux_sym_catch_statement_token1] = ACTIONS(305), + [aux_sym_finally_statement_token1] = ACTIONS(307), + [aux_sym_accumulate_statement_token1] = ACTIONS(309), + [anon_sym_ROUTINE_DASHLEVEL] = ACTIONS(311), + [anon_sym_BLOCK_DASHLEVEL] = ACTIONS(311), }, [124] = { - [sym_body] = STATE(3712), + [sym_body] = STATE(4027), [sym_comment] = STATE(124), - [sym_qualified_name] = STATE(4733), - [sym__block_terminator] = STATE(1542), + [sym_qualified_name] = STATE(4814), + [sym__block_terminator] = STATE(1139), [sym_include] = STATE(124), - [sym_assignment] = STATE(4314), - [sym_variable_definition] = STATE(1535), - [sym_variable_assignment] = STATE(1535), - [sym_buffer_definition] = STATE(1535), - [sym_query_definition] = STATE(1535), - [sym_function_call_statement] = STATE(1535), - [sym_function_call] = STATE(4086), - [sym_if_statement] = STATE(1535), - [sym_label] = STATE(1536), - [sym_repeat_statement] = STATE(1535), - [sym_procedure_statement] = STATE(1535), - [sym_procedure_parameter_definition] = STATE(1535), - [sym_function_statement] = STATE(1535), - [sym_return_statement] = STATE(1535), - [sym_interface_statement] = STATE(1535), - [sym_using_statement] = STATE(1535), - [sym_class_statement] = STATE(1535), - [sym_object_access] = STATE(3567), - [sym_stream_definition] = STATE(1535), - [sym_input_close_statement] = STATE(1535), - [sym_output_close_statement] = STATE(1535), - [sym__stream_statement] = STATE(1535), - [sym_input_stream_statement] = STATE(1537), - [sym_output_stream_statement] = STATE(1537), - [sym_do_block] = STATE(1535), - [sym_case_statement] = STATE(1535), - [sym_for_statement] = STATE(1535), - [sym_find_statement] = STATE(1535), - [sym_abl_statement] = STATE(1535), - [sym_assign_statement] = STATE(1535), - [sym_catch_statement] = STATE(1535), - [sym_finally_statement] = STATE(1535), - [sym_accumulate_statement] = STATE(1535), - [sym_undo_statement] = STATE(1535), - [sym_error_scope_statement] = STATE(1535), - [sym_temp_table_definition] = STATE(1535), - [sym_on_statement] = STATE(1535), - [sym__statement] = STATE(1538), - [aux_sym_source_code_repeat1] = STATE(276), - [sym_identifier] = ACTIONS(227), + [sym_assignment] = STATE(4463), + [sym_variable_definition] = STATE(1550), + [sym_variable_assignment] = STATE(1550), + [sym_buffer_definition] = STATE(1550), + [sym_query_definition] = STATE(1550), + [sym_function_call_statement] = STATE(1550), + [sym_function_call] = STATE(4558), + [sym_if_statement] = STATE(1550), + [sym_label] = STATE(1551), + [sym_repeat_statement] = STATE(1550), + [sym_procedure_statement] = STATE(1550), + [sym_procedure_parameter_definition] = STATE(1550), + [sym_function_statement] = STATE(1550), + [sym_return_statement] = STATE(1550), + [sym_interface_statement] = STATE(1550), + [sym_using_statement] = STATE(1550), + [sym_class_statement] = STATE(1550), + [sym_object_access] = STATE(3661), + [sym_stream_definition] = STATE(1550), + [sym_input_close_statement] = STATE(1550), + [sym_output_close_statement] = STATE(1550), + [sym__stream_statement] = STATE(1550), + [sym_input_stream_statement] = STATE(1552), + [sym_output_stream_statement] = STATE(1552), + [sym_do_block] = STATE(1550), + [sym_case_statement] = STATE(1550), + [sym_for_statement] = STATE(1550), + [sym_find_statement] = STATE(1550), + [sym_abl_statement] = STATE(1550), + [sym_assign_statement] = STATE(1550), + [sym_catch_statement] = STATE(1550), + [sym_finally_statement] = STATE(1550), + [sym_accumulate_statement] = STATE(1550), + [sym_undo_statement] = STATE(1550), + [sym_error_scope_statement] = STATE(1550), + [sym_temp_table_definition] = STATE(1550), + [sym_on_statement] = STATE(1550), + [sym__statement] = STATE(1553), + [aux_sym_source_code_repeat1] = STATE(286), + [sym_identifier] = ACTIONS(263), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), [anon_sym_LBRACE] = ACTIONS(7), - [aux_sym__block_terminator_token1] = ACTIONS(299), - [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), + [aux_sym__block_terminator_token1] = ACTIONS(323), + [aux_sym_input_expression_token1] = ACTIONS(267), + [aux_sym_primitive_type_token19] = ACTIONS(269), + [aux_sym_variable_definition_token1] = ACTIONS(271), + [aux_sym_variable_definition_token2] = ACTIONS(273), + [aux_sym_buffer_definition_token2] = ACTIONS(275), + [aux_sym_argument_mode_token1] = ACTIONS(277), + [aux_sym_if_statement_token1] = ACTIONS(279), + [aux_sym_repeat_statement_token1] = ACTIONS(281), + [aux_sym__procedure_terminator_token1] = ACTIONS(283), + [aux_sym_procedure_parameter_definition_token1] = ACTIONS(285), + [aux_sym__function_terminator_token1] = ACTIONS(287), + [aux_sym_interface_statement_token1] = ACTIONS(289), + [aux_sym_using_statement_token1] = ACTIONS(291), + [aux_sym_on_error_phrase_token1] = ACTIONS(293), + [aux_sym_on_error_phrase_token3] = ACTIONS(295), + [aux_sym_do_block_token1] = ACTIONS(297), + [aux_sym__case_terminator_token1] = ACTIONS(299), + [aux_sym_find_statement_token1] = ACTIONS(301), + [aux_sym_assign_statement_token1] = ACTIONS(303), + [aux_sym_catch_statement_token1] = ACTIONS(305), + [aux_sym_finally_statement_token1] = ACTIONS(307), + [aux_sym_accumulate_statement_token1] = ACTIONS(309), + [anon_sym_ROUTINE_DASHLEVEL] = ACTIONS(311), + [anon_sym_BLOCK_DASHLEVEL] = ACTIONS(311), }, [125] = { - [sym_body] = STATE(3968), + [sym_body] = STATE(4032), [sym_comment] = STATE(125), - [sym_qualified_name] = STATE(4733), - [sym__block_terminator] = STATE(1221), + [sym_qualified_name] = STATE(4814), + [sym__block_terminator] = STATE(1132), [sym_include] = STATE(125), - [sym_assignment] = STATE(4314), - [sym_variable_definition] = STATE(1535), - [sym_variable_assignment] = STATE(1535), - [sym_buffer_definition] = STATE(1535), - [sym_query_definition] = STATE(1535), - [sym_function_call_statement] = STATE(1535), - [sym_function_call] = STATE(4086), - [sym_if_statement] = STATE(1535), - [sym_label] = STATE(1536), - [sym_repeat_statement] = STATE(1535), - [sym_procedure_statement] = STATE(1535), - [sym_procedure_parameter_definition] = STATE(1535), - [sym_function_statement] = STATE(1535), - [sym_return_statement] = STATE(1535), - [sym_interface_statement] = STATE(1535), - [sym_using_statement] = STATE(1535), - [sym_class_statement] = STATE(1535), - [sym_object_access] = STATE(3567), - [sym_stream_definition] = STATE(1535), - [sym_input_close_statement] = STATE(1535), - [sym_output_close_statement] = STATE(1535), - [sym__stream_statement] = STATE(1535), - [sym_input_stream_statement] = STATE(1537), - [sym_output_stream_statement] = STATE(1537), - [sym_do_block] = STATE(1535), - [sym_case_statement] = STATE(1535), - [sym_for_statement] = STATE(1535), - [sym_find_statement] = STATE(1535), - [sym_abl_statement] = STATE(1535), - [sym_assign_statement] = STATE(1535), - [sym_catch_statement] = STATE(1535), - [sym_finally_statement] = STATE(1535), - [sym_accumulate_statement] = STATE(1535), - [sym_undo_statement] = STATE(1535), - [sym_error_scope_statement] = STATE(1535), - [sym_temp_table_definition] = STATE(1535), - [sym_on_statement] = STATE(1535), - [sym__statement] = STATE(1538), - [aux_sym_source_code_repeat1] = STATE(276), - [sym_identifier] = ACTIONS(227), + [sym_assignment] = STATE(4463), + [sym_variable_definition] = STATE(1550), + [sym_variable_assignment] = STATE(1550), + [sym_buffer_definition] = STATE(1550), + [sym_query_definition] = STATE(1550), + [sym_function_call_statement] = STATE(1550), + [sym_function_call] = STATE(4558), + [sym_if_statement] = STATE(1550), + [sym_label] = STATE(1551), + [sym_repeat_statement] = STATE(1550), + [sym_procedure_statement] = STATE(1550), + [sym_procedure_parameter_definition] = STATE(1550), + [sym_function_statement] = STATE(1550), + [sym_return_statement] = STATE(1550), + [sym_interface_statement] = STATE(1550), + [sym_using_statement] = STATE(1550), + [sym_class_statement] = STATE(1550), + [sym_object_access] = STATE(3661), + [sym_stream_definition] = STATE(1550), + [sym_input_close_statement] = STATE(1550), + [sym_output_close_statement] = STATE(1550), + [sym__stream_statement] = STATE(1550), + [sym_input_stream_statement] = STATE(1552), + [sym_output_stream_statement] = STATE(1552), + [sym_do_block] = STATE(1550), + [sym_case_statement] = STATE(1550), + [sym_for_statement] = STATE(1550), + [sym_find_statement] = STATE(1550), + [sym_abl_statement] = STATE(1550), + [sym_assign_statement] = STATE(1550), + [sym_catch_statement] = STATE(1550), + [sym_finally_statement] = STATE(1550), + [sym_accumulate_statement] = STATE(1550), + [sym_undo_statement] = STATE(1550), + [sym_error_scope_statement] = STATE(1550), + [sym_temp_table_definition] = STATE(1550), + [sym_on_statement] = STATE(1550), + [sym__statement] = STATE(1553), + [aux_sym_source_code_repeat1] = STATE(286), + [sym_identifier] = ACTIONS(263), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), [anon_sym_LBRACE] = ACTIONS(7), - [aux_sym__block_terminator_token1] = ACTIONS(299), - [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), + [aux_sym__block_terminator_token1] = ACTIONS(323), + [aux_sym_input_expression_token1] = ACTIONS(267), + [aux_sym_primitive_type_token19] = ACTIONS(269), + [aux_sym_variable_definition_token1] = ACTIONS(271), + [aux_sym_variable_definition_token2] = ACTIONS(273), + [aux_sym_buffer_definition_token2] = ACTIONS(275), + [aux_sym_argument_mode_token1] = ACTIONS(277), + [aux_sym_if_statement_token1] = ACTIONS(279), + [aux_sym_repeat_statement_token1] = ACTIONS(281), + [aux_sym__procedure_terminator_token1] = ACTIONS(283), + [aux_sym_procedure_parameter_definition_token1] = ACTIONS(285), + [aux_sym__function_terminator_token1] = ACTIONS(287), + [aux_sym_interface_statement_token1] = ACTIONS(289), + [aux_sym_using_statement_token1] = ACTIONS(291), + [aux_sym_on_error_phrase_token1] = ACTIONS(293), + [aux_sym_on_error_phrase_token3] = ACTIONS(295), + [aux_sym_do_block_token1] = ACTIONS(297), + [aux_sym__case_terminator_token1] = ACTIONS(299), + [aux_sym_find_statement_token1] = ACTIONS(301), + [aux_sym_assign_statement_token1] = ACTIONS(303), + [aux_sym_catch_statement_token1] = ACTIONS(305), + [aux_sym_finally_statement_token1] = ACTIONS(307), + [aux_sym_accumulate_statement_token1] = ACTIONS(309), + [anon_sym_ROUTINE_DASHLEVEL] = ACTIONS(311), + [anon_sym_BLOCK_DASHLEVEL] = ACTIONS(311), }, [126] = { - [sym_body] = STATE(3578), + [sym_body] = STATE(3800), [sym_comment] = STATE(126), - [sym_qualified_name] = STATE(4733), - [sym__block_terminator] = STATE(1515), + [sym_qualified_name] = STATE(4814), + [sym__block_terminator] = STATE(1505), [sym_include] = STATE(126), - [sym_assignment] = STATE(4314), - [sym_variable_definition] = STATE(1535), - [sym_variable_assignment] = STATE(1535), - [sym_buffer_definition] = STATE(1535), - [sym_query_definition] = STATE(1535), - [sym_function_call_statement] = STATE(1535), - [sym_function_call] = STATE(4086), - [sym_if_statement] = STATE(1535), - [sym_label] = STATE(1536), - [sym_repeat_statement] = STATE(1535), - [sym_procedure_statement] = STATE(1535), - [sym_procedure_parameter_definition] = STATE(1535), - [sym_function_statement] = STATE(1535), - [sym_return_statement] = STATE(1535), - [sym_interface_statement] = STATE(1535), - [sym_using_statement] = STATE(1535), - [sym_class_statement] = STATE(1535), - [sym_object_access] = STATE(3567), - [sym_stream_definition] = STATE(1535), - [sym_input_close_statement] = STATE(1535), - [sym_output_close_statement] = STATE(1535), - [sym__stream_statement] = STATE(1535), - [sym_input_stream_statement] = STATE(1537), - [sym_output_stream_statement] = STATE(1537), - [sym_do_block] = STATE(1535), - [sym_case_statement] = STATE(1535), - [sym_for_statement] = STATE(1535), - [sym_find_statement] = STATE(1535), - [sym_abl_statement] = STATE(1535), - [sym_assign_statement] = STATE(1535), - [sym_catch_statement] = STATE(1535), - [sym_finally_statement] = STATE(1535), - [sym_accumulate_statement] = STATE(1535), - [sym_undo_statement] = STATE(1535), - [sym_error_scope_statement] = STATE(1535), - [sym_temp_table_definition] = STATE(1535), - [sym_on_statement] = STATE(1535), - [sym__statement] = STATE(1538), - [aux_sym_source_code_repeat1] = STATE(276), - [sym_identifier] = ACTIONS(227), + [sym_assignment] = STATE(4463), + [sym_variable_definition] = STATE(1550), + [sym_variable_assignment] = STATE(1550), + [sym_buffer_definition] = STATE(1550), + [sym_query_definition] = STATE(1550), + [sym_function_call_statement] = STATE(1550), + [sym_function_call] = STATE(4558), + [sym_if_statement] = STATE(1550), + [sym_label] = STATE(1551), + [sym_repeat_statement] = STATE(1550), + [sym_procedure_statement] = STATE(1550), + [sym_procedure_parameter_definition] = STATE(1550), + [sym_function_statement] = STATE(1550), + [sym_return_statement] = STATE(1550), + [sym_interface_statement] = STATE(1550), + [sym_using_statement] = STATE(1550), + [sym_class_statement] = STATE(1550), + [sym_object_access] = STATE(3661), + [sym_stream_definition] = STATE(1550), + [sym_input_close_statement] = STATE(1550), + [sym_output_close_statement] = STATE(1550), + [sym__stream_statement] = STATE(1550), + [sym_input_stream_statement] = STATE(1552), + [sym_output_stream_statement] = STATE(1552), + [sym_do_block] = STATE(1550), + [sym_case_statement] = STATE(1550), + [sym_for_statement] = STATE(1550), + [sym_find_statement] = STATE(1550), + [sym_abl_statement] = STATE(1550), + [sym_assign_statement] = STATE(1550), + [sym_catch_statement] = STATE(1550), + [sym_finally_statement] = STATE(1550), + [sym_accumulate_statement] = STATE(1550), + [sym_undo_statement] = STATE(1550), + [sym_error_scope_statement] = STATE(1550), + [sym_temp_table_definition] = STATE(1550), + [sym_on_statement] = STATE(1550), + [sym__statement] = STATE(1553), + [aux_sym_source_code_repeat1] = STATE(286), + [sym_identifier] = ACTIONS(263), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), [anon_sym_LBRACE] = ACTIONS(7), - [aux_sym__block_terminator_token1] = ACTIONS(299), - [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), + [aux_sym__block_terminator_token1] = ACTIONS(325), + [aux_sym_input_expression_token1] = ACTIONS(267), + [aux_sym_primitive_type_token19] = ACTIONS(269), + [aux_sym_variable_definition_token1] = ACTIONS(271), + [aux_sym_variable_definition_token2] = ACTIONS(273), + [aux_sym_buffer_definition_token2] = ACTIONS(275), + [aux_sym_argument_mode_token1] = ACTIONS(277), + [aux_sym_if_statement_token1] = ACTIONS(279), + [aux_sym_repeat_statement_token1] = ACTIONS(281), + [aux_sym__procedure_terminator_token1] = ACTIONS(283), + [aux_sym_procedure_parameter_definition_token1] = ACTIONS(285), + [aux_sym__function_terminator_token1] = ACTIONS(287), + [aux_sym_interface_statement_token1] = ACTIONS(289), + [aux_sym_using_statement_token1] = ACTIONS(291), + [aux_sym_on_error_phrase_token1] = ACTIONS(293), + [aux_sym_on_error_phrase_token3] = ACTIONS(295), + [aux_sym_do_block_token1] = ACTIONS(297), + [aux_sym__case_terminator_token1] = ACTIONS(299), + [aux_sym_find_statement_token1] = ACTIONS(301), + [aux_sym_assign_statement_token1] = ACTIONS(303), + [aux_sym_catch_statement_token1] = ACTIONS(305), + [aux_sym_finally_statement_token1] = ACTIONS(307), + [aux_sym_accumulate_statement_token1] = ACTIONS(309), + [anon_sym_ROUTINE_DASHLEVEL] = ACTIONS(311), + [anon_sym_BLOCK_DASHLEVEL] = ACTIONS(311), }, [127] = { - [sym_body] = STATE(3839), + [sym_body] = STATE(4109), [sym_comment] = STATE(127), - [sym_qualified_name] = STATE(4733), - [sym__block_terminator] = STATE(3493), + [sym_qualified_name] = STATE(4814), + [sym__block_terminator] = STATE(1062), [sym_include] = STATE(127), - [sym_assignment] = STATE(4314), - [sym_variable_definition] = STATE(1535), - [sym_variable_assignment] = STATE(1535), - [sym_buffer_definition] = STATE(1535), - [sym_query_definition] = STATE(1535), - [sym_function_call_statement] = STATE(1535), - [sym_function_call] = STATE(4086), - [sym_if_statement] = STATE(1535), - [sym_label] = STATE(1536), - [sym_repeat_statement] = STATE(1535), - [sym_procedure_statement] = STATE(1535), - [sym_procedure_parameter_definition] = STATE(1535), - [sym_function_statement] = STATE(1535), - [sym_return_statement] = STATE(1535), - [sym_interface_statement] = STATE(1535), - [sym_using_statement] = STATE(1535), - [sym_class_statement] = STATE(1535), - [sym_object_access] = STATE(3567), - [sym_stream_definition] = STATE(1535), - [sym_input_close_statement] = STATE(1535), - [sym_output_close_statement] = STATE(1535), - [sym__stream_statement] = STATE(1535), - [sym_input_stream_statement] = STATE(1537), - [sym_output_stream_statement] = STATE(1537), - [sym_do_block] = STATE(1535), - [sym_case_statement] = STATE(1535), - [sym_for_statement] = STATE(1535), - [sym_find_statement] = STATE(1535), - [sym_abl_statement] = STATE(1535), - [sym_assign_statement] = STATE(1535), - [sym_catch_statement] = STATE(1535), - [sym_finally_statement] = STATE(1535), - [sym_accumulate_statement] = STATE(1535), - [sym_undo_statement] = STATE(1535), - [sym_error_scope_statement] = STATE(1535), - [sym_temp_table_definition] = STATE(1535), - [sym_on_statement] = STATE(1535), - [sym__statement] = STATE(1538), - [aux_sym_source_code_repeat1] = STATE(276), - [sym_identifier] = ACTIONS(227), + [sym_assignment] = STATE(4463), + [sym_variable_definition] = STATE(1550), + [sym_variable_assignment] = STATE(1550), + [sym_buffer_definition] = STATE(1550), + [sym_query_definition] = STATE(1550), + [sym_function_call_statement] = STATE(1550), + [sym_function_call] = STATE(4558), + [sym_if_statement] = STATE(1550), + [sym_label] = STATE(1551), + [sym_repeat_statement] = STATE(1550), + [sym_procedure_statement] = STATE(1550), + [sym_procedure_parameter_definition] = STATE(1550), + [sym_function_statement] = STATE(1550), + [sym_return_statement] = STATE(1550), + [sym_interface_statement] = STATE(1550), + [sym_using_statement] = STATE(1550), + [sym_class_statement] = STATE(1550), + [sym_object_access] = STATE(3661), + [sym_stream_definition] = STATE(1550), + [sym_input_close_statement] = STATE(1550), + [sym_output_close_statement] = STATE(1550), + [sym__stream_statement] = STATE(1550), + [sym_input_stream_statement] = STATE(1552), + [sym_output_stream_statement] = STATE(1552), + [sym_do_block] = STATE(1550), + [sym_case_statement] = STATE(1550), + [sym_for_statement] = STATE(1550), + [sym_find_statement] = STATE(1550), + [sym_abl_statement] = STATE(1550), + [sym_assign_statement] = STATE(1550), + [sym_catch_statement] = STATE(1550), + [sym_finally_statement] = STATE(1550), + [sym_accumulate_statement] = STATE(1550), + [sym_undo_statement] = STATE(1550), + [sym_error_scope_statement] = STATE(1550), + [sym_temp_table_definition] = STATE(1550), + [sym_on_statement] = STATE(1550), + [sym__statement] = STATE(1553), + [aux_sym_source_code_repeat1] = STATE(286), + [sym_identifier] = ACTIONS(263), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), [anon_sym_LBRACE] = ACTIONS(7), - [aux_sym__block_terminator_token1] = ACTIONS(297), - [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), + [aux_sym__block_terminator_token1] = ACTIONS(321), + [aux_sym_input_expression_token1] = ACTIONS(267), + [aux_sym_primitive_type_token19] = ACTIONS(269), + [aux_sym_variable_definition_token1] = ACTIONS(271), + [aux_sym_variable_definition_token2] = ACTIONS(273), + [aux_sym_buffer_definition_token2] = ACTIONS(275), + [aux_sym_argument_mode_token1] = ACTIONS(277), + [aux_sym_if_statement_token1] = ACTIONS(279), + [aux_sym_repeat_statement_token1] = ACTIONS(281), + [aux_sym__procedure_terminator_token1] = ACTIONS(283), + [aux_sym_procedure_parameter_definition_token1] = ACTIONS(285), + [aux_sym__function_terminator_token1] = ACTIONS(287), + [aux_sym_interface_statement_token1] = ACTIONS(289), + [aux_sym_using_statement_token1] = ACTIONS(291), + [aux_sym_on_error_phrase_token1] = ACTIONS(293), + [aux_sym_on_error_phrase_token3] = ACTIONS(295), + [aux_sym_do_block_token1] = ACTIONS(297), + [aux_sym__case_terminator_token1] = ACTIONS(299), + [aux_sym_find_statement_token1] = ACTIONS(301), + [aux_sym_assign_statement_token1] = ACTIONS(303), + [aux_sym_catch_statement_token1] = ACTIONS(305), + [aux_sym_finally_statement_token1] = ACTIONS(307), + [aux_sym_accumulate_statement_token1] = ACTIONS(309), + [anon_sym_ROUTINE_DASHLEVEL] = ACTIONS(311), + [anon_sym_BLOCK_DASHLEVEL] = ACTIONS(311), }, [128] = { - [sym_body] = STATE(3874), + [sym_body] = STATE(4117), [sym_comment] = STATE(128), - [sym_qualified_name] = STATE(4733), - [sym__block_terminator] = STATE(1164), + [sym_qualified_name] = STATE(4814), + [sym__block_terminator] = STATE(1067), [sym_include] = STATE(128), - [sym_assignment] = STATE(4314), - [sym_variable_definition] = STATE(1535), - [sym_variable_assignment] = STATE(1535), - [sym_buffer_definition] = STATE(1535), - [sym_query_definition] = STATE(1535), - [sym_function_call_statement] = STATE(1535), - [sym_function_call] = STATE(4086), - [sym_if_statement] = STATE(1535), - [sym_label] = STATE(1536), - [sym_repeat_statement] = STATE(1535), - [sym_procedure_statement] = STATE(1535), - [sym_procedure_parameter_definition] = STATE(1535), - [sym_function_statement] = STATE(1535), - [sym_return_statement] = STATE(1535), - [sym_interface_statement] = STATE(1535), - [sym_using_statement] = STATE(1535), - [sym_class_statement] = STATE(1535), - [sym_object_access] = STATE(3567), - [sym_stream_definition] = STATE(1535), - [sym_input_close_statement] = STATE(1535), - [sym_output_close_statement] = STATE(1535), - [sym__stream_statement] = STATE(1535), - [sym_input_stream_statement] = STATE(1537), - [sym_output_stream_statement] = STATE(1537), - [sym_do_block] = STATE(1535), - [sym_case_statement] = STATE(1535), - [sym_for_statement] = STATE(1535), - [sym_find_statement] = STATE(1535), - [sym_abl_statement] = STATE(1535), - [sym_assign_statement] = STATE(1535), - [sym_catch_statement] = STATE(1535), - [sym_finally_statement] = STATE(1535), - [sym_accumulate_statement] = STATE(1535), - [sym_undo_statement] = STATE(1535), - [sym_error_scope_statement] = STATE(1535), - [sym_temp_table_definition] = STATE(1535), - [sym_on_statement] = STATE(1535), - [sym__statement] = STATE(1538), - [aux_sym_source_code_repeat1] = STATE(276), - [sym_identifier] = ACTIONS(227), + [sym_assignment] = STATE(4463), + [sym_variable_definition] = STATE(1550), + [sym_variable_assignment] = STATE(1550), + [sym_buffer_definition] = STATE(1550), + [sym_query_definition] = STATE(1550), + [sym_function_call_statement] = STATE(1550), + [sym_function_call] = STATE(4558), + [sym_if_statement] = STATE(1550), + [sym_label] = STATE(1551), + [sym_repeat_statement] = STATE(1550), + [sym_procedure_statement] = STATE(1550), + [sym_procedure_parameter_definition] = STATE(1550), + [sym_function_statement] = STATE(1550), + [sym_return_statement] = STATE(1550), + [sym_interface_statement] = STATE(1550), + [sym_using_statement] = STATE(1550), + [sym_class_statement] = STATE(1550), + [sym_object_access] = STATE(3661), + [sym_stream_definition] = STATE(1550), + [sym_input_close_statement] = STATE(1550), + [sym_output_close_statement] = STATE(1550), + [sym__stream_statement] = STATE(1550), + [sym_input_stream_statement] = STATE(1552), + [sym_output_stream_statement] = STATE(1552), + [sym_do_block] = STATE(1550), + [sym_case_statement] = STATE(1550), + [sym_for_statement] = STATE(1550), + [sym_find_statement] = STATE(1550), + [sym_abl_statement] = STATE(1550), + [sym_assign_statement] = STATE(1550), + [sym_catch_statement] = STATE(1550), + [sym_finally_statement] = STATE(1550), + [sym_accumulate_statement] = STATE(1550), + [sym_undo_statement] = STATE(1550), + [sym_error_scope_statement] = STATE(1550), + [sym_temp_table_definition] = STATE(1550), + [sym_on_statement] = STATE(1550), + [sym__statement] = STATE(1553), + [aux_sym_source_code_repeat1] = STATE(286), + [sym_identifier] = ACTIONS(263), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), [anon_sym_LBRACE] = ACTIONS(7), - [aux_sym__block_terminator_token1] = ACTIONS(299), - [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), + [aux_sym__block_terminator_token1] = ACTIONS(321), + [aux_sym_input_expression_token1] = ACTIONS(267), + [aux_sym_primitive_type_token19] = ACTIONS(269), + [aux_sym_variable_definition_token1] = ACTIONS(271), + [aux_sym_variable_definition_token2] = ACTIONS(273), + [aux_sym_buffer_definition_token2] = ACTIONS(275), + [aux_sym_argument_mode_token1] = ACTIONS(277), + [aux_sym_if_statement_token1] = ACTIONS(279), + [aux_sym_repeat_statement_token1] = ACTIONS(281), + [aux_sym__procedure_terminator_token1] = ACTIONS(283), + [aux_sym_procedure_parameter_definition_token1] = ACTIONS(285), + [aux_sym__function_terminator_token1] = ACTIONS(287), + [aux_sym_interface_statement_token1] = ACTIONS(289), + [aux_sym_using_statement_token1] = ACTIONS(291), + [aux_sym_on_error_phrase_token1] = ACTIONS(293), + [aux_sym_on_error_phrase_token3] = ACTIONS(295), + [aux_sym_do_block_token1] = ACTIONS(297), + [aux_sym__case_terminator_token1] = ACTIONS(299), + [aux_sym_find_statement_token1] = ACTIONS(301), + [aux_sym_assign_statement_token1] = ACTIONS(303), + [aux_sym_catch_statement_token1] = ACTIONS(305), + [aux_sym_finally_statement_token1] = ACTIONS(307), + [aux_sym_accumulate_statement_token1] = ACTIONS(309), + [anon_sym_ROUTINE_DASHLEVEL] = ACTIONS(311), + [anon_sym_BLOCK_DASHLEVEL] = ACTIONS(311), }, [129] = { + [sym_body] = STATE(4121), [sym_comment] = STATE(129), - [sym__logical_operator] = STATE(411), - [sym__additive_operator] = STATE(408), - [sym__multiplicative_operator] = STATE(347), - [sym__comparison_operator] = STATE(375), + [sym_qualified_name] = STATE(4814), + [sym__block_terminator] = STATE(1072), [sym_include] = STATE(129), - [anon_sym_SLASH_SLASH] = ACTIONS(59), - [anon_sym_SLASH_STAR] = ACTIONS(61), - [anon_sym_SLASH] = ACTIONS(283), - [anon_sym_LBRACE] = ACTIONS(65), - [anon_sym_STAR] = ACTIONS(285), - [sym__terminator] = ACTIONS(307), - [anon_sym_LPAREN] = ACTIONS(307), - [anon_sym_RPAREN] = ACTIONS(307), - [anon_sym_PLUS] = ACTIONS(289), - [anon_sym_DASH] = ACTIONS(289), - [anon_sym_LT] = ACTIONS(309), - [anon_sym_LT_EQ] = ACTIONS(307), - [anon_sym_LT_GT] = ACTIONS(307), - [anon_sym_EQ] = ACTIONS(307), - [anon_sym_GT] = ACTIONS(309), - [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(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(307), - [sym__and_operator] = ACTIONS(307), + [sym_assignment] = STATE(4463), + [sym_variable_definition] = STATE(1550), + [sym_variable_assignment] = STATE(1550), + [sym_buffer_definition] = STATE(1550), + [sym_query_definition] = STATE(1550), + [sym_function_call_statement] = STATE(1550), + [sym_function_call] = STATE(4558), + [sym_if_statement] = STATE(1550), + [sym_label] = STATE(1551), + [sym_repeat_statement] = STATE(1550), + [sym_procedure_statement] = STATE(1550), + [sym_procedure_parameter_definition] = STATE(1550), + [sym_function_statement] = STATE(1550), + [sym_return_statement] = STATE(1550), + [sym_interface_statement] = STATE(1550), + [sym_using_statement] = STATE(1550), + [sym_class_statement] = STATE(1550), + [sym_object_access] = STATE(3661), + [sym_stream_definition] = STATE(1550), + [sym_input_close_statement] = STATE(1550), + [sym_output_close_statement] = STATE(1550), + [sym__stream_statement] = STATE(1550), + [sym_input_stream_statement] = STATE(1552), + [sym_output_stream_statement] = STATE(1552), + [sym_do_block] = STATE(1550), + [sym_case_statement] = STATE(1550), + [sym_for_statement] = STATE(1550), + [sym_find_statement] = STATE(1550), + [sym_abl_statement] = STATE(1550), + [sym_assign_statement] = STATE(1550), + [sym_catch_statement] = STATE(1550), + [sym_finally_statement] = STATE(1550), + [sym_accumulate_statement] = STATE(1550), + [sym_undo_statement] = STATE(1550), + [sym_error_scope_statement] = STATE(1550), + [sym_temp_table_definition] = STATE(1550), + [sym_on_statement] = STATE(1550), + [sym__statement] = STATE(1553), + [aux_sym_source_code_repeat1] = STATE(286), + [sym_identifier] = ACTIONS(263), + [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(267), + [aux_sym_primitive_type_token19] = ACTIONS(269), + [aux_sym_variable_definition_token1] = ACTIONS(271), + [aux_sym_variable_definition_token2] = ACTIONS(273), + [aux_sym_buffer_definition_token2] = ACTIONS(275), + [aux_sym_argument_mode_token1] = ACTIONS(277), + [aux_sym_if_statement_token1] = ACTIONS(279), + [aux_sym_repeat_statement_token1] = ACTIONS(281), + [aux_sym__procedure_terminator_token1] = ACTIONS(283), + [aux_sym_procedure_parameter_definition_token1] = ACTIONS(285), + [aux_sym__function_terminator_token1] = ACTIONS(287), + [aux_sym_interface_statement_token1] = ACTIONS(289), + [aux_sym_using_statement_token1] = ACTIONS(291), + [aux_sym_on_error_phrase_token1] = ACTIONS(293), + [aux_sym_on_error_phrase_token3] = ACTIONS(295), + [aux_sym_do_block_token1] = ACTIONS(297), + [aux_sym__case_terminator_token1] = ACTIONS(299), + [aux_sym_find_statement_token1] = ACTIONS(301), + [aux_sym_assign_statement_token1] = ACTIONS(303), + [aux_sym_catch_statement_token1] = ACTIONS(305), + [aux_sym_finally_statement_token1] = ACTIONS(307), + [aux_sym_accumulate_statement_token1] = ACTIONS(309), + [anon_sym_ROUTINE_DASHLEVEL] = ACTIONS(311), + [anon_sym_BLOCK_DASHLEVEL] = ACTIONS(311), }, [130] = { - [sym_body] = STATE(3738), + [sym_body] = STATE(4130), [sym_comment] = STATE(130), - [sym_qualified_name] = STATE(4733), - [sym__block_terminator] = STATE(1034), + [sym_qualified_name] = STATE(4814), + [sym__block_terminator] = STATE(1069), [sym_include] = STATE(130), - [sym_assignment] = STATE(4314), - [sym_variable_definition] = STATE(1535), - [sym_variable_assignment] = STATE(1535), - [sym_buffer_definition] = STATE(1535), - [sym_query_definition] = STATE(1535), - [sym_function_call_statement] = STATE(1535), - [sym_function_call] = STATE(4086), - [sym_if_statement] = STATE(1535), - [sym_label] = STATE(1536), - [sym_repeat_statement] = STATE(1535), - [sym_procedure_statement] = STATE(1535), - [sym_procedure_parameter_definition] = STATE(1535), - [sym_function_statement] = STATE(1535), - [sym_return_statement] = STATE(1535), - [sym_interface_statement] = STATE(1535), - [sym_using_statement] = STATE(1535), - [sym_class_statement] = STATE(1535), - [sym_object_access] = STATE(3567), - [sym_stream_definition] = STATE(1535), - [sym_input_close_statement] = STATE(1535), - [sym_output_close_statement] = STATE(1535), - [sym__stream_statement] = STATE(1535), - [sym_input_stream_statement] = STATE(1537), - [sym_output_stream_statement] = STATE(1537), - [sym_do_block] = STATE(1535), - [sym_case_statement] = STATE(1535), - [sym_for_statement] = STATE(1535), - [sym_find_statement] = STATE(1535), - [sym_abl_statement] = STATE(1535), - [sym_assign_statement] = STATE(1535), - [sym_catch_statement] = STATE(1535), - [sym_finally_statement] = STATE(1535), - [sym_accumulate_statement] = STATE(1535), - [sym_undo_statement] = STATE(1535), - [sym_error_scope_statement] = STATE(1535), - [sym_temp_table_definition] = STATE(1535), - [sym_on_statement] = STATE(1535), - [sym__statement] = STATE(1538), - [aux_sym_source_code_repeat1] = STATE(276), - [sym_identifier] = ACTIONS(227), + [sym_assignment] = STATE(4463), + [sym_variable_definition] = STATE(1550), + [sym_variable_assignment] = STATE(1550), + [sym_buffer_definition] = STATE(1550), + [sym_query_definition] = STATE(1550), + [sym_function_call_statement] = STATE(1550), + [sym_function_call] = STATE(4558), + [sym_if_statement] = STATE(1550), + [sym_label] = STATE(1551), + [sym_repeat_statement] = STATE(1550), + [sym_procedure_statement] = STATE(1550), + [sym_procedure_parameter_definition] = STATE(1550), + [sym_function_statement] = STATE(1550), + [sym_return_statement] = STATE(1550), + [sym_interface_statement] = STATE(1550), + [sym_using_statement] = STATE(1550), + [sym_class_statement] = STATE(1550), + [sym_object_access] = STATE(3661), + [sym_stream_definition] = STATE(1550), + [sym_input_close_statement] = STATE(1550), + [sym_output_close_statement] = STATE(1550), + [sym__stream_statement] = STATE(1550), + [sym_input_stream_statement] = STATE(1552), + [sym_output_stream_statement] = STATE(1552), + [sym_do_block] = STATE(1550), + [sym_case_statement] = STATE(1550), + [sym_for_statement] = STATE(1550), + [sym_find_statement] = STATE(1550), + [sym_abl_statement] = STATE(1550), + [sym_assign_statement] = STATE(1550), + [sym_catch_statement] = STATE(1550), + [sym_finally_statement] = STATE(1550), + [sym_accumulate_statement] = STATE(1550), + [sym_undo_statement] = STATE(1550), + [sym_error_scope_statement] = STATE(1550), + [sym_temp_table_definition] = STATE(1550), + [sym_on_statement] = STATE(1550), + [sym__statement] = STATE(1553), + [aux_sym_source_code_repeat1] = STATE(286), + [sym_identifier] = ACTIONS(263), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), [anon_sym_LBRACE] = ACTIONS(7), - [aux_sym__block_terminator_token1] = ACTIONS(301), - [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), + [aux_sym__block_terminator_token1] = ACTIONS(321), + [aux_sym_input_expression_token1] = ACTIONS(267), + [aux_sym_primitive_type_token19] = ACTIONS(269), + [aux_sym_variable_definition_token1] = ACTIONS(271), + [aux_sym_variable_definition_token2] = ACTIONS(273), + [aux_sym_buffer_definition_token2] = ACTIONS(275), + [aux_sym_argument_mode_token1] = ACTIONS(277), + [aux_sym_if_statement_token1] = ACTIONS(279), + [aux_sym_repeat_statement_token1] = ACTIONS(281), + [aux_sym__procedure_terminator_token1] = ACTIONS(283), + [aux_sym_procedure_parameter_definition_token1] = ACTIONS(285), + [aux_sym__function_terminator_token1] = ACTIONS(287), + [aux_sym_interface_statement_token1] = ACTIONS(289), + [aux_sym_using_statement_token1] = ACTIONS(291), + [aux_sym_on_error_phrase_token1] = ACTIONS(293), + [aux_sym_on_error_phrase_token3] = ACTIONS(295), + [aux_sym_do_block_token1] = ACTIONS(297), + [aux_sym__case_terminator_token1] = ACTIONS(299), + [aux_sym_find_statement_token1] = ACTIONS(301), + [aux_sym_assign_statement_token1] = ACTIONS(303), + [aux_sym_catch_statement_token1] = ACTIONS(305), + [aux_sym_finally_statement_token1] = ACTIONS(307), + [aux_sym_accumulate_statement_token1] = ACTIONS(309), + [anon_sym_ROUTINE_DASHLEVEL] = ACTIONS(311), + [anon_sym_BLOCK_DASHLEVEL] = ACTIONS(311), }, [131] = { - [sym_body] = STATE(3832), + [sym_body] = STATE(4118), [sym_comment] = STATE(131), - [sym_qualified_name] = STATE(4733), - [sym__block_terminator] = STATE(1050), + [sym_qualified_name] = STATE(4814), + [sym__block_terminator] = STATE(1395), [sym_include] = STATE(131), - [sym_assignment] = STATE(4314), - [sym_variable_definition] = STATE(1535), - [sym_variable_assignment] = STATE(1535), - [sym_buffer_definition] = STATE(1535), - [sym_query_definition] = STATE(1535), - [sym_function_call_statement] = STATE(1535), - [sym_function_call] = STATE(4086), - [sym_if_statement] = STATE(1535), - [sym_label] = STATE(1536), - [sym_repeat_statement] = STATE(1535), - [sym_procedure_statement] = STATE(1535), - [sym_procedure_parameter_definition] = STATE(1535), - [sym_function_statement] = STATE(1535), - [sym_return_statement] = STATE(1535), - [sym_interface_statement] = STATE(1535), - [sym_using_statement] = STATE(1535), - [sym_class_statement] = STATE(1535), - [sym_object_access] = STATE(3567), - [sym_stream_definition] = STATE(1535), - [sym_input_close_statement] = STATE(1535), - [sym_output_close_statement] = STATE(1535), - [sym__stream_statement] = STATE(1535), - [sym_input_stream_statement] = STATE(1537), - [sym_output_stream_statement] = STATE(1537), - [sym_do_block] = STATE(1535), - [sym_case_statement] = STATE(1535), - [sym_for_statement] = STATE(1535), - [sym_find_statement] = STATE(1535), - [sym_abl_statement] = STATE(1535), - [sym_assign_statement] = STATE(1535), - [sym_catch_statement] = STATE(1535), - [sym_finally_statement] = STATE(1535), - [sym_accumulate_statement] = STATE(1535), - [sym_undo_statement] = STATE(1535), - [sym_error_scope_statement] = STATE(1535), - [sym_temp_table_definition] = STATE(1535), - [sym_on_statement] = STATE(1535), - [sym__statement] = STATE(1538), - [aux_sym_source_code_repeat1] = STATE(276), - [sym_identifier] = ACTIONS(227), + [sym_assignment] = STATE(4463), + [sym_variable_definition] = STATE(1550), + [sym_variable_assignment] = STATE(1550), + [sym_buffer_definition] = STATE(1550), + [sym_query_definition] = STATE(1550), + [sym_function_call_statement] = STATE(1550), + [sym_function_call] = STATE(4558), + [sym_if_statement] = STATE(1550), + [sym_label] = STATE(1551), + [sym_repeat_statement] = STATE(1550), + [sym_procedure_statement] = STATE(1550), + [sym_procedure_parameter_definition] = STATE(1550), + [sym_function_statement] = STATE(1550), + [sym_return_statement] = STATE(1550), + [sym_interface_statement] = STATE(1550), + [sym_using_statement] = STATE(1550), + [sym_class_statement] = STATE(1550), + [sym_object_access] = STATE(3661), + [sym_stream_definition] = STATE(1550), + [sym_input_close_statement] = STATE(1550), + [sym_output_close_statement] = STATE(1550), + [sym__stream_statement] = STATE(1550), + [sym_input_stream_statement] = STATE(1552), + [sym_output_stream_statement] = STATE(1552), + [sym_do_block] = STATE(1550), + [sym_case_statement] = STATE(1550), + [sym_for_statement] = STATE(1550), + [sym_find_statement] = STATE(1550), + [sym_abl_statement] = STATE(1550), + [sym_assign_statement] = STATE(1550), + [sym_catch_statement] = STATE(1550), + [sym_finally_statement] = STATE(1550), + [sym_accumulate_statement] = STATE(1550), + [sym_undo_statement] = STATE(1550), + [sym_error_scope_statement] = STATE(1550), + [sym_temp_table_definition] = STATE(1550), + [sym_on_statement] = STATE(1550), + [sym__statement] = STATE(1553), + [aux_sym_source_code_repeat1] = STATE(286), + [sym_identifier] = ACTIONS(263), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), [anon_sym_LBRACE] = ACTIONS(7), - [aux_sym__block_terminator_token1] = ACTIONS(303), - [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), + [aux_sym__block_terminator_token1] = ACTIONS(327), + [aux_sym_input_expression_token1] = ACTIONS(267), + [aux_sym_primitive_type_token19] = ACTIONS(269), + [aux_sym_variable_definition_token1] = ACTIONS(271), + [aux_sym_variable_definition_token2] = ACTIONS(273), + [aux_sym_buffer_definition_token2] = ACTIONS(275), + [aux_sym_argument_mode_token1] = ACTIONS(277), + [aux_sym_if_statement_token1] = ACTIONS(279), + [aux_sym_repeat_statement_token1] = ACTIONS(281), + [aux_sym__procedure_terminator_token1] = ACTIONS(283), + [aux_sym_procedure_parameter_definition_token1] = ACTIONS(285), + [aux_sym__function_terminator_token1] = ACTIONS(287), + [aux_sym_interface_statement_token1] = ACTIONS(289), + [aux_sym_using_statement_token1] = ACTIONS(291), + [aux_sym_on_error_phrase_token1] = ACTIONS(293), + [aux_sym_on_error_phrase_token3] = ACTIONS(295), + [aux_sym_do_block_token1] = ACTIONS(297), + [aux_sym__case_terminator_token1] = ACTIONS(299), + [aux_sym_find_statement_token1] = ACTIONS(301), + [aux_sym_assign_statement_token1] = ACTIONS(303), + [aux_sym_catch_statement_token1] = ACTIONS(305), + [aux_sym_finally_statement_token1] = ACTIONS(307), + [aux_sym_accumulate_statement_token1] = ACTIONS(309), + [anon_sym_ROUTINE_DASHLEVEL] = ACTIONS(311), + [anon_sym_BLOCK_DASHLEVEL] = ACTIONS(311), }, [132] = { - [sym_body] = STATE(3843), + [sym_body] = STATE(4137), [sym_comment] = STATE(132), - [sym_qualified_name] = STATE(4733), - [sym__block_terminator] = STATE(3497), + [sym_qualified_name] = STATE(4814), + [sym__block_terminator] = STATE(1087), [sym_include] = STATE(132), - [sym_assignment] = STATE(4314), - [sym_variable_definition] = STATE(1535), - [sym_variable_assignment] = STATE(1535), - [sym_buffer_definition] = STATE(1535), - [sym_query_definition] = STATE(1535), - [sym_function_call_statement] = STATE(1535), - [sym_function_call] = STATE(4086), - [sym_if_statement] = STATE(1535), - [sym_label] = STATE(1536), - [sym_repeat_statement] = STATE(1535), - [sym_procedure_statement] = STATE(1535), - [sym_procedure_parameter_definition] = STATE(1535), - [sym_function_statement] = STATE(1535), - [sym_return_statement] = STATE(1535), - [sym_interface_statement] = STATE(1535), - [sym_using_statement] = STATE(1535), - [sym_class_statement] = STATE(1535), - [sym_object_access] = STATE(3567), - [sym_stream_definition] = STATE(1535), - [sym_input_close_statement] = STATE(1535), - [sym_output_close_statement] = STATE(1535), - [sym__stream_statement] = STATE(1535), - [sym_input_stream_statement] = STATE(1537), - [sym_output_stream_statement] = STATE(1537), - [sym_do_block] = STATE(1535), - [sym_case_statement] = STATE(1535), - [sym_for_statement] = STATE(1535), - [sym_find_statement] = STATE(1535), - [sym_abl_statement] = STATE(1535), - [sym_assign_statement] = STATE(1535), - [sym_catch_statement] = STATE(1535), - [sym_finally_statement] = STATE(1535), - [sym_accumulate_statement] = STATE(1535), - [sym_undo_statement] = STATE(1535), - [sym_error_scope_statement] = STATE(1535), - [sym_temp_table_definition] = STATE(1535), - [sym_on_statement] = STATE(1535), - [sym__statement] = STATE(1538), - [aux_sym_source_code_repeat1] = STATE(276), - [sym_identifier] = ACTIONS(227), + [sym_assignment] = STATE(4463), + [sym_variable_definition] = STATE(1550), + [sym_variable_assignment] = STATE(1550), + [sym_buffer_definition] = STATE(1550), + [sym_query_definition] = STATE(1550), + [sym_function_call_statement] = STATE(1550), + [sym_function_call] = STATE(4558), + [sym_if_statement] = STATE(1550), + [sym_label] = STATE(1551), + [sym_repeat_statement] = STATE(1550), + [sym_procedure_statement] = STATE(1550), + [sym_procedure_parameter_definition] = STATE(1550), + [sym_function_statement] = STATE(1550), + [sym_return_statement] = STATE(1550), + [sym_interface_statement] = STATE(1550), + [sym_using_statement] = STATE(1550), + [sym_class_statement] = STATE(1550), + [sym_object_access] = STATE(3661), + [sym_stream_definition] = STATE(1550), + [sym_input_close_statement] = STATE(1550), + [sym_output_close_statement] = STATE(1550), + [sym__stream_statement] = STATE(1550), + [sym_input_stream_statement] = STATE(1552), + [sym_output_stream_statement] = STATE(1552), + [sym_do_block] = STATE(1550), + [sym_case_statement] = STATE(1550), + [sym_for_statement] = STATE(1550), + [sym_find_statement] = STATE(1550), + [sym_abl_statement] = STATE(1550), + [sym_assign_statement] = STATE(1550), + [sym_catch_statement] = STATE(1550), + [sym_finally_statement] = STATE(1550), + [sym_accumulate_statement] = STATE(1550), + [sym_undo_statement] = STATE(1550), + [sym_error_scope_statement] = STATE(1550), + [sym_temp_table_definition] = STATE(1550), + [sym_on_statement] = STATE(1550), + [sym__statement] = STATE(1553), + [aux_sym_source_code_repeat1] = STATE(286), + [sym_identifier] = ACTIONS(263), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), [anon_sym_LBRACE] = ACTIONS(7), - [aux_sym__block_terminator_token1] = ACTIONS(297), - [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), + [aux_sym__block_terminator_token1] = ACTIONS(321), + [aux_sym_input_expression_token1] = ACTIONS(267), + [aux_sym_primitive_type_token19] = ACTIONS(269), + [aux_sym_variable_definition_token1] = ACTIONS(271), + [aux_sym_variable_definition_token2] = ACTIONS(273), + [aux_sym_buffer_definition_token2] = ACTIONS(275), + [aux_sym_argument_mode_token1] = ACTIONS(277), + [aux_sym_if_statement_token1] = ACTIONS(279), + [aux_sym_repeat_statement_token1] = ACTIONS(281), + [aux_sym__procedure_terminator_token1] = ACTIONS(283), + [aux_sym_procedure_parameter_definition_token1] = ACTIONS(285), + [aux_sym__function_terminator_token1] = ACTIONS(287), + [aux_sym_interface_statement_token1] = ACTIONS(289), + [aux_sym_using_statement_token1] = ACTIONS(291), + [aux_sym_on_error_phrase_token1] = ACTIONS(293), + [aux_sym_on_error_phrase_token3] = ACTIONS(295), + [aux_sym_do_block_token1] = ACTIONS(297), + [aux_sym__case_terminator_token1] = ACTIONS(299), + [aux_sym_find_statement_token1] = ACTIONS(301), + [aux_sym_assign_statement_token1] = ACTIONS(303), + [aux_sym_catch_statement_token1] = ACTIONS(305), + [aux_sym_finally_statement_token1] = ACTIONS(307), + [aux_sym_accumulate_statement_token1] = ACTIONS(309), + [anon_sym_ROUTINE_DASHLEVEL] = ACTIONS(311), + [anon_sym_BLOCK_DASHLEVEL] = ACTIONS(311), }, [133] = { - [sym_body] = STATE(3851), + [sym_body] = STATE(4149), [sym_comment] = STATE(133), - [sym_qualified_name] = STATE(4733), - [sym__block_terminator] = STATE(1048), + [sym_qualified_name] = STATE(4814), + [sym__block_terminator] = STATE(1088), [sym_include] = STATE(133), - [sym_assignment] = STATE(4314), - [sym_variable_definition] = STATE(1535), - [sym_variable_assignment] = STATE(1535), - [sym_buffer_definition] = STATE(1535), - [sym_query_definition] = STATE(1535), - [sym_function_call_statement] = STATE(1535), - [sym_function_call] = STATE(4086), - [sym_if_statement] = STATE(1535), - [sym_label] = STATE(1536), - [sym_repeat_statement] = STATE(1535), - [sym_procedure_statement] = STATE(1535), - [sym_procedure_parameter_definition] = STATE(1535), - [sym_function_statement] = STATE(1535), - [sym_return_statement] = STATE(1535), - [sym_interface_statement] = STATE(1535), - [sym_using_statement] = STATE(1535), - [sym_class_statement] = STATE(1535), - [sym_object_access] = STATE(3567), - [sym_stream_definition] = STATE(1535), - [sym_input_close_statement] = STATE(1535), - [sym_output_close_statement] = STATE(1535), - [sym__stream_statement] = STATE(1535), - [sym_input_stream_statement] = STATE(1537), - [sym_output_stream_statement] = STATE(1537), - [sym_do_block] = STATE(1535), - [sym_case_statement] = STATE(1535), - [sym_for_statement] = STATE(1535), - [sym_find_statement] = STATE(1535), - [sym_abl_statement] = STATE(1535), - [sym_assign_statement] = STATE(1535), - [sym_catch_statement] = STATE(1535), - [sym_finally_statement] = STATE(1535), - [sym_accumulate_statement] = STATE(1535), - [sym_undo_statement] = STATE(1535), - [sym_error_scope_statement] = STATE(1535), - [sym_temp_table_definition] = STATE(1535), - [sym_on_statement] = STATE(1535), - [sym__statement] = STATE(1538), - [aux_sym_source_code_repeat1] = STATE(276), - [sym_identifier] = ACTIONS(227), + [sym_assignment] = STATE(4463), + [sym_variable_definition] = STATE(1550), + [sym_variable_assignment] = STATE(1550), + [sym_buffer_definition] = STATE(1550), + [sym_query_definition] = STATE(1550), + [sym_function_call_statement] = STATE(1550), + [sym_function_call] = STATE(4558), + [sym_if_statement] = STATE(1550), + [sym_label] = STATE(1551), + [sym_repeat_statement] = STATE(1550), + [sym_procedure_statement] = STATE(1550), + [sym_procedure_parameter_definition] = STATE(1550), + [sym_function_statement] = STATE(1550), + [sym_return_statement] = STATE(1550), + [sym_interface_statement] = STATE(1550), + [sym_using_statement] = STATE(1550), + [sym_class_statement] = STATE(1550), + [sym_object_access] = STATE(3661), + [sym_stream_definition] = STATE(1550), + [sym_input_close_statement] = STATE(1550), + [sym_output_close_statement] = STATE(1550), + [sym__stream_statement] = STATE(1550), + [sym_input_stream_statement] = STATE(1552), + [sym_output_stream_statement] = STATE(1552), + [sym_do_block] = STATE(1550), + [sym_case_statement] = STATE(1550), + [sym_for_statement] = STATE(1550), + [sym_find_statement] = STATE(1550), + [sym_abl_statement] = STATE(1550), + [sym_assign_statement] = STATE(1550), + [sym_catch_statement] = STATE(1550), + [sym_finally_statement] = STATE(1550), + [sym_accumulate_statement] = STATE(1550), + [sym_undo_statement] = STATE(1550), + [sym_error_scope_statement] = STATE(1550), + [sym_temp_table_definition] = STATE(1550), + [sym_on_statement] = STATE(1550), + [sym__statement] = STATE(1553), + [aux_sym_source_code_repeat1] = STATE(286), + [sym_identifier] = ACTIONS(263), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), [anon_sym_LBRACE] = ACTIONS(7), - [aux_sym__block_terminator_token1] = ACTIONS(303), - [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), + [aux_sym__block_terminator_token1] = ACTIONS(321), + [aux_sym_input_expression_token1] = ACTIONS(267), + [aux_sym_primitive_type_token19] = ACTIONS(269), + [aux_sym_variable_definition_token1] = ACTIONS(271), + [aux_sym_variable_definition_token2] = ACTIONS(273), + [aux_sym_buffer_definition_token2] = ACTIONS(275), + [aux_sym_argument_mode_token1] = ACTIONS(277), + [aux_sym_if_statement_token1] = ACTIONS(279), + [aux_sym_repeat_statement_token1] = ACTIONS(281), + [aux_sym__procedure_terminator_token1] = ACTIONS(283), + [aux_sym_procedure_parameter_definition_token1] = ACTIONS(285), + [aux_sym__function_terminator_token1] = ACTIONS(287), + [aux_sym_interface_statement_token1] = ACTIONS(289), + [aux_sym_using_statement_token1] = ACTIONS(291), + [aux_sym_on_error_phrase_token1] = ACTIONS(293), + [aux_sym_on_error_phrase_token3] = ACTIONS(295), + [aux_sym_do_block_token1] = ACTIONS(297), + [aux_sym__case_terminator_token1] = ACTIONS(299), + [aux_sym_find_statement_token1] = ACTIONS(301), + [aux_sym_assign_statement_token1] = ACTIONS(303), + [aux_sym_catch_statement_token1] = ACTIONS(305), + [aux_sym_finally_statement_token1] = ACTIONS(307), + [aux_sym_accumulate_statement_token1] = ACTIONS(309), + [anon_sym_ROUTINE_DASHLEVEL] = ACTIONS(311), + [anon_sym_BLOCK_DASHLEVEL] = ACTIONS(311), }, [134] = { - [sym_body] = STATE(3657), + [sym_body] = STATE(4126), [sym_comment] = STATE(134), - [sym_qualified_name] = STATE(4733), - [sym__block_terminator] = STATE(3369), + [sym_qualified_name] = STATE(4814), + [sym__block_terminator] = STATE(1400), [sym_include] = STATE(134), - [sym_assignment] = STATE(4314), - [sym_variable_definition] = STATE(1535), - [sym_variable_assignment] = STATE(1535), - [sym_buffer_definition] = STATE(1535), - [sym_query_definition] = STATE(1535), - [sym_function_call_statement] = STATE(1535), - [sym_function_call] = STATE(4086), - [sym_if_statement] = STATE(1535), - [sym_label] = STATE(1536), - [sym_repeat_statement] = STATE(1535), - [sym_procedure_statement] = STATE(1535), - [sym_procedure_parameter_definition] = STATE(1535), - [sym_function_statement] = STATE(1535), - [sym_return_statement] = STATE(1535), - [sym_interface_statement] = STATE(1535), - [sym_using_statement] = STATE(1535), - [sym_class_statement] = STATE(1535), - [sym_object_access] = STATE(3567), - [sym_stream_definition] = STATE(1535), - [sym_input_close_statement] = STATE(1535), - [sym_output_close_statement] = STATE(1535), - [sym__stream_statement] = STATE(1535), - [sym_input_stream_statement] = STATE(1537), - [sym_output_stream_statement] = STATE(1537), - [sym_do_block] = STATE(1535), - [sym_case_statement] = STATE(1535), - [sym_for_statement] = STATE(1535), - [sym_find_statement] = STATE(1535), - [sym_abl_statement] = STATE(1535), - [sym_assign_statement] = STATE(1535), - [sym_catch_statement] = STATE(1535), - [sym_finally_statement] = STATE(1535), - [sym_accumulate_statement] = STATE(1535), - [sym_undo_statement] = STATE(1535), - [sym_error_scope_statement] = STATE(1535), - [sym_temp_table_definition] = STATE(1535), - [sym_on_statement] = STATE(1535), - [sym__statement] = STATE(1538), - [aux_sym_source_code_repeat1] = STATE(276), - [sym_identifier] = ACTIONS(227), + [sym_assignment] = STATE(4463), + [sym_variable_definition] = STATE(1550), + [sym_variable_assignment] = STATE(1550), + [sym_buffer_definition] = STATE(1550), + [sym_query_definition] = STATE(1550), + [sym_function_call_statement] = STATE(1550), + [sym_function_call] = STATE(4558), + [sym_if_statement] = STATE(1550), + [sym_label] = STATE(1551), + [sym_repeat_statement] = STATE(1550), + [sym_procedure_statement] = STATE(1550), + [sym_procedure_parameter_definition] = STATE(1550), + [sym_function_statement] = STATE(1550), + [sym_return_statement] = STATE(1550), + [sym_interface_statement] = STATE(1550), + [sym_using_statement] = STATE(1550), + [sym_class_statement] = STATE(1550), + [sym_object_access] = STATE(3661), + [sym_stream_definition] = STATE(1550), + [sym_input_close_statement] = STATE(1550), + [sym_output_close_statement] = STATE(1550), + [sym__stream_statement] = STATE(1550), + [sym_input_stream_statement] = STATE(1552), + [sym_output_stream_statement] = STATE(1552), + [sym_do_block] = STATE(1550), + [sym_case_statement] = STATE(1550), + [sym_for_statement] = STATE(1550), + [sym_find_statement] = STATE(1550), + [sym_abl_statement] = STATE(1550), + [sym_assign_statement] = STATE(1550), + [sym_catch_statement] = STATE(1550), + [sym_finally_statement] = STATE(1550), + [sym_accumulate_statement] = STATE(1550), + [sym_undo_statement] = STATE(1550), + [sym_error_scope_statement] = STATE(1550), + [sym_temp_table_definition] = STATE(1550), + [sym_on_statement] = STATE(1550), + [sym__statement] = STATE(1553), + [aux_sym_source_code_repeat1] = STATE(286), + [sym_identifier] = ACTIONS(263), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), [anon_sym_LBRACE] = ACTIONS(7), - [aux_sym__block_terminator_token1] = ACTIONS(297), - [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), + [aux_sym__block_terminator_token1] = ACTIONS(327), + [aux_sym_input_expression_token1] = ACTIONS(267), + [aux_sym_primitive_type_token19] = ACTIONS(269), + [aux_sym_variable_definition_token1] = ACTIONS(271), + [aux_sym_variable_definition_token2] = ACTIONS(273), + [aux_sym_buffer_definition_token2] = ACTIONS(275), + [aux_sym_argument_mode_token1] = ACTIONS(277), + [aux_sym_if_statement_token1] = ACTIONS(279), + [aux_sym_repeat_statement_token1] = ACTIONS(281), + [aux_sym__procedure_terminator_token1] = ACTIONS(283), + [aux_sym_procedure_parameter_definition_token1] = ACTIONS(285), + [aux_sym__function_terminator_token1] = ACTIONS(287), + [aux_sym_interface_statement_token1] = ACTIONS(289), + [aux_sym_using_statement_token1] = ACTIONS(291), + [aux_sym_on_error_phrase_token1] = ACTIONS(293), + [aux_sym_on_error_phrase_token3] = ACTIONS(295), + [aux_sym_do_block_token1] = ACTIONS(297), + [aux_sym__case_terminator_token1] = ACTIONS(299), + [aux_sym_find_statement_token1] = ACTIONS(301), + [aux_sym_assign_statement_token1] = ACTIONS(303), + [aux_sym_catch_statement_token1] = ACTIONS(305), + [aux_sym_finally_statement_token1] = ACTIONS(307), + [aux_sym_accumulate_statement_token1] = ACTIONS(309), + [anon_sym_ROUTINE_DASHLEVEL] = ACTIONS(311), + [anon_sym_BLOCK_DASHLEVEL] = ACTIONS(311), }, [135] = { - [sym_body] = STATE(3930), + [sym_body] = STATE(4136), [sym_comment] = STATE(135), - [sym_qualified_name] = STATE(4733), - [sym__block_terminator] = STATE(1382), + [sym_qualified_name] = STATE(4814), + [sym__block_terminator] = STATE(1443), [sym_include] = STATE(135), - [sym_assignment] = STATE(4314), - [sym_variable_definition] = STATE(1535), - [sym_variable_assignment] = STATE(1535), - [sym_buffer_definition] = STATE(1535), - [sym_query_definition] = STATE(1535), - [sym_function_call_statement] = STATE(1535), - [sym_function_call] = STATE(4086), - [sym_if_statement] = STATE(1535), - [sym_label] = STATE(1536), - [sym_repeat_statement] = STATE(1535), - [sym_procedure_statement] = STATE(1535), - [sym_procedure_parameter_definition] = STATE(1535), - [sym_function_statement] = STATE(1535), - [sym_return_statement] = STATE(1535), - [sym_interface_statement] = STATE(1535), - [sym_using_statement] = STATE(1535), - [sym_class_statement] = STATE(1535), - [sym_object_access] = STATE(3567), - [sym_stream_definition] = STATE(1535), - [sym_input_close_statement] = STATE(1535), - [sym_output_close_statement] = STATE(1535), - [sym__stream_statement] = STATE(1535), - [sym_input_stream_statement] = STATE(1537), - [sym_output_stream_statement] = STATE(1537), - [sym_do_block] = STATE(1535), - [sym_case_statement] = STATE(1535), - [sym_for_statement] = STATE(1535), - [sym_find_statement] = STATE(1535), - [sym_abl_statement] = STATE(1535), - [sym_assign_statement] = STATE(1535), - [sym_catch_statement] = STATE(1535), - [sym_finally_statement] = STATE(1535), - [sym_accumulate_statement] = STATE(1535), - [sym_undo_statement] = STATE(1535), - [sym_error_scope_statement] = STATE(1535), - [sym_temp_table_definition] = STATE(1535), - [sym_on_statement] = STATE(1535), - [sym__statement] = STATE(1538), - [aux_sym_source_code_repeat1] = STATE(276), - [sym_identifier] = ACTIONS(227), + [sym_assignment] = STATE(4463), + [sym_variable_definition] = STATE(1550), + [sym_variable_assignment] = STATE(1550), + [sym_buffer_definition] = STATE(1550), + [sym_query_definition] = STATE(1550), + [sym_function_call_statement] = STATE(1550), + [sym_function_call] = STATE(4558), + [sym_if_statement] = STATE(1550), + [sym_label] = STATE(1551), + [sym_repeat_statement] = STATE(1550), + [sym_procedure_statement] = STATE(1550), + [sym_procedure_parameter_definition] = STATE(1550), + [sym_function_statement] = STATE(1550), + [sym_return_statement] = STATE(1550), + [sym_interface_statement] = STATE(1550), + [sym_using_statement] = STATE(1550), + [sym_class_statement] = STATE(1550), + [sym_object_access] = STATE(3661), + [sym_stream_definition] = STATE(1550), + [sym_input_close_statement] = STATE(1550), + [sym_output_close_statement] = STATE(1550), + [sym__stream_statement] = STATE(1550), + [sym_input_stream_statement] = STATE(1552), + [sym_output_stream_statement] = STATE(1552), + [sym_do_block] = STATE(1550), + [sym_case_statement] = STATE(1550), + [sym_for_statement] = STATE(1550), + [sym_find_statement] = STATE(1550), + [sym_abl_statement] = STATE(1550), + [sym_assign_statement] = STATE(1550), + [sym_catch_statement] = STATE(1550), + [sym_finally_statement] = STATE(1550), + [sym_accumulate_statement] = STATE(1550), + [sym_undo_statement] = STATE(1550), + [sym_error_scope_statement] = STATE(1550), + [sym_temp_table_definition] = STATE(1550), + [sym_on_statement] = STATE(1550), + [sym__statement] = STATE(1553), + [aux_sym_source_code_repeat1] = STATE(286), + [sym_identifier] = ACTIONS(263), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), [anon_sym_LBRACE] = ACTIONS(7), - [aux_sym__block_terminator_token1] = ACTIONS(311), - [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), + [aux_sym__block_terminator_token1] = ACTIONS(327), + [aux_sym_input_expression_token1] = ACTIONS(267), + [aux_sym_primitive_type_token19] = ACTIONS(269), + [aux_sym_variable_definition_token1] = ACTIONS(271), + [aux_sym_variable_definition_token2] = ACTIONS(273), + [aux_sym_buffer_definition_token2] = ACTIONS(275), + [aux_sym_argument_mode_token1] = ACTIONS(277), + [aux_sym_if_statement_token1] = ACTIONS(279), + [aux_sym_repeat_statement_token1] = ACTIONS(281), + [aux_sym__procedure_terminator_token1] = ACTIONS(283), + [aux_sym_procedure_parameter_definition_token1] = ACTIONS(285), + [aux_sym__function_terminator_token1] = ACTIONS(287), + [aux_sym_interface_statement_token1] = ACTIONS(289), + [aux_sym_using_statement_token1] = ACTIONS(291), + [aux_sym_on_error_phrase_token1] = ACTIONS(293), + [aux_sym_on_error_phrase_token3] = ACTIONS(295), + [aux_sym_do_block_token1] = ACTIONS(297), + [aux_sym__case_terminator_token1] = ACTIONS(299), + [aux_sym_find_statement_token1] = ACTIONS(301), + [aux_sym_assign_statement_token1] = ACTIONS(303), + [aux_sym_catch_statement_token1] = ACTIONS(305), + [aux_sym_finally_statement_token1] = ACTIONS(307), + [aux_sym_accumulate_statement_token1] = ACTIONS(309), + [anon_sym_ROUTINE_DASHLEVEL] = ACTIONS(311), + [anon_sym_BLOCK_DASHLEVEL] = ACTIONS(311), }, [136] = { - [sym_body] = STATE(3653), + [sym_body] = STATE(4153), [sym_comment] = STATE(136), - [sym_qualified_name] = STATE(4733), - [sym__block_terminator] = STATE(3368), + [sym_qualified_name] = STATE(4814), + [sym__block_terminator] = STATE(1091), [sym_include] = STATE(136), - [sym_assignment] = STATE(4314), - [sym_variable_definition] = STATE(1535), - [sym_variable_assignment] = STATE(1535), - [sym_buffer_definition] = STATE(1535), - [sym_query_definition] = STATE(1535), - [sym_function_call_statement] = STATE(1535), - [sym_function_call] = STATE(4086), - [sym_if_statement] = STATE(1535), - [sym_label] = STATE(1536), - [sym_repeat_statement] = STATE(1535), - [sym_procedure_statement] = STATE(1535), - [sym_procedure_parameter_definition] = STATE(1535), - [sym_function_statement] = STATE(1535), - [sym_return_statement] = STATE(1535), - [sym_interface_statement] = STATE(1535), - [sym_using_statement] = STATE(1535), - [sym_class_statement] = STATE(1535), - [sym_object_access] = STATE(3567), - [sym_stream_definition] = STATE(1535), - [sym_input_close_statement] = STATE(1535), - [sym_output_close_statement] = STATE(1535), - [sym__stream_statement] = STATE(1535), - [sym_input_stream_statement] = STATE(1537), - [sym_output_stream_statement] = STATE(1537), - [sym_do_block] = STATE(1535), - [sym_case_statement] = STATE(1535), - [sym_for_statement] = STATE(1535), - [sym_find_statement] = STATE(1535), - [sym_abl_statement] = STATE(1535), - [sym_assign_statement] = STATE(1535), - [sym_catch_statement] = STATE(1535), - [sym_finally_statement] = STATE(1535), - [sym_accumulate_statement] = STATE(1535), - [sym_undo_statement] = STATE(1535), - [sym_error_scope_statement] = STATE(1535), - [sym_temp_table_definition] = STATE(1535), - [sym_on_statement] = STATE(1535), - [sym__statement] = STATE(1538), - [aux_sym_source_code_repeat1] = STATE(276), - [sym_identifier] = ACTIONS(227), + [sym_assignment] = STATE(4463), + [sym_variable_definition] = STATE(1550), + [sym_variable_assignment] = STATE(1550), + [sym_buffer_definition] = STATE(1550), + [sym_query_definition] = STATE(1550), + [sym_function_call_statement] = STATE(1550), + [sym_function_call] = STATE(4558), + [sym_if_statement] = STATE(1550), + [sym_label] = STATE(1551), + [sym_repeat_statement] = STATE(1550), + [sym_procedure_statement] = STATE(1550), + [sym_procedure_parameter_definition] = STATE(1550), + [sym_function_statement] = STATE(1550), + [sym_return_statement] = STATE(1550), + [sym_interface_statement] = STATE(1550), + [sym_using_statement] = STATE(1550), + [sym_class_statement] = STATE(1550), + [sym_object_access] = STATE(3661), + [sym_stream_definition] = STATE(1550), + [sym_input_close_statement] = STATE(1550), + [sym_output_close_statement] = STATE(1550), + [sym__stream_statement] = STATE(1550), + [sym_input_stream_statement] = STATE(1552), + [sym_output_stream_statement] = STATE(1552), + [sym_do_block] = STATE(1550), + [sym_case_statement] = STATE(1550), + [sym_for_statement] = STATE(1550), + [sym_find_statement] = STATE(1550), + [sym_abl_statement] = STATE(1550), + [sym_assign_statement] = STATE(1550), + [sym_catch_statement] = STATE(1550), + [sym_finally_statement] = STATE(1550), + [sym_accumulate_statement] = STATE(1550), + [sym_undo_statement] = STATE(1550), + [sym_error_scope_statement] = STATE(1550), + [sym_temp_table_definition] = STATE(1550), + [sym_on_statement] = STATE(1550), + [sym__statement] = STATE(1553), + [aux_sym_source_code_repeat1] = STATE(286), + [sym_identifier] = ACTIONS(263), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), [anon_sym_LBRACE] = ACTIONS(7), - [aux_sym__block_terminator_token1] = ACTIONS(297), - [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), + [aux_sym__block_terminator_token1] = ACTIONS(321), + [aux_sym_input_expression_token1] = ACTIONS(267), + [aux_sym_primitive_type_token19] = ACTIONS(269), + [aux_sym_variable_definition_token1] = ACTIONS(271), + [aux_sym_variable_definition_token2] = ACTIONS(273), + [aux_sym_buffer_definition_token2] = ACTIONS(275), + [aux_sym_argument_mode_token1] = ACTIONS(277), + [aux_sym_if_statement_token1] = ACTIONS(279), + [aux_sym_repeat_statement_token1] = ACTIONS(281), + [aux_sym__procedure_terminator_token1] = ACTIONS(283), + [aux_sym_procedure_parameter_definition_token1] = ACTIONS(285), + [aux_sym__function_terminator_token1] = ACTIONS(287), + [aux_sym_interface_statement_token1] = ACTIONS(289), + [aux_sym_using_statement_token1] = ACTIONS(291), + [aux_sym_on_error_phrase_token1] = ACTIONS(293), + [aux_sym_on_error_phrase_token3] = ACTIONS(295), + [aux_sym_do_block_token1] = ACTIONS(297), + [aux_sym__case_terminator_token1] = ACTIONS(299), + [aux_sym_find_statement_token1] = ACTIONS(301), + [aux_sym_assign_statement_token1] = ACTIONS(303), + [aux_sym_catch_statement_token1] = ACTIONS(305), + [aux_sym_finally_statement_token1] = ACTIONS(307), + [aux_sym_accumulate_statement_token1] = ACTIONS(309), + [anon_sym_ROUTINE_DASHLEVEL] = ACTIONS(311), + [anon_sym_BLOCK_DASHLEVEL] = ACTIONS(311), }, [137] = { + [sym_body] = STATE(4144), [sym_comment] = STATE(137), - [sym__logical_operator] = STATE(411), - [sym__additive_operator] = STATE(408), - [sym__multiplicative_operator] = STATE(347), - [sym__comparison_operator] = STATE(375), + [sym_qualified_name] = STATE(4814), + [sym__block_terminator] = STATE(1408), [sym_include] = STATE(137), - [anon_sym_SLASH_SLASH] = ACTIONS(59), - [anon_sym_SLASH_STAR] = ACTIONS(61), - [anon_sym_SLASH] = ACTIONS(313), - [anon_sym_LBRACE] = ACTIONS(65), - [anon_sym_STAR] = ACTIONS(315), - [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(313), - [anon_sym_LT_EQ] = ACTIONS(315), - [anon_sym_LT_GT] = ACTIONS(315), - [anon_sym_EQ] = ACTIONS(315), - [anon_sym_GT] = ACTIONS(313), - [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), + [sym_assignment] = STATE(4463), + [sym_variable_definition] = STATE(1550), + [sym_variable_assignment] = STATE(1550), + [sym_buffer_definition] = STATE(1550), + [sym_query_definition] = STATE(1550), + [sym_function_call_statement] = STATE(1550), + [sym_function_call] = STATE(4558), + [sym_if_statement] = STATE(1550), + [sym_label] = STATE(1551), + [sym_repeat_statement] = STATE(1550), + [sym_procedure_statement] = STATE(1550), + [sym_procedure_parameter_definition] = STATE(1550), + [sym_function_statement] = STATE(1550), + [sym_return_statement] = STATE(1550), + [sym_interface_statement] = STATE(1550), + [sym_using_statement] = STATE(1550), + [sym_class_statement] = STATE(1550), + [sym_object_access] = STATE(3661), + [sym_stream_definition] = STATE(1550), + [sym_input_close_statement] = STATE(1550), + [sym_output_close_statement] = STATE(1550), + [sym__stream_statement] = STATE(1550), + [sym_input_stream_statement] = STATE(1552), + [sym_output_stream_statement] = STATE(1552), + [sym_do_block] = STATE(1550), + [sym_case_statement] = STATE(1550), + [sym_for_statement] = STATE(1550), + [sym_find_statement] = STATE(1550), + [sym_abl_statement] = STATE(1550), + [sym_assign_statement] = STATE(1550), + [sym_catch_statement] = STATE(1550), + [sym_finally_statement] = STATE(1550), + [sym_accumulate_statement] = STATE(1550), + [sym_undo_statement] = STATE(1550), + [sym_error_scope_statement] = STATE(1550), + [sym_temp_table_definition] = STATE(1550), + [sym_on_statement] = STATE(1550), + [sym__statement] = STATE(1553), + [aux_sym_source_code_repeat1] = STATE(286), + [sym_identifier] = ACTIONS(263), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_LBRACE] = ACTIONS(7), + [aux_sym__block_terminator_token1] = ACTIONS(327), + [aux_sym_input_expression_token1] = ACTIONS(267), + [aux_sym_primitive_type_token19] = ACTIONS(269), + [aux_sym_variable_definition_token1] = ACTIONS(271), + [aux_sym_variable_definition_token2] = ACTIONS(273), + [aux_sym_buffer_definition_token2] = ACTIONS(275), + [aux_sym_argument_mode_token1] = ACTIONS(277), + [aux_sym_if_statement_token1] = ACTIONS(279), + [aux_sym_repeat_statement_token1] = ACTIONS(281), + [aux_sym__procedure_terminator_token1] = ACTIONS(283), + [aux_sym_procedure_parameter_definition_token1] = ACTIONS(285), + [aux_sym__function_terminator_token1] = ACTIONS(287), + [aux_sym_interface_statement_token1] = ACTIONS(289), + [aux_sym_using_statement_token1] = ACTIONS(291), + [aux_sym_on_error_phrase_token1] = ACTIONS(293), + [aux_sym_on_error_phrase_token3] = ACTIONS(295), + [aux_sym_do_block_token1] = ACTIONS(297), + [aux_sym__case_terminator_token1] = ACTIONS(299), + [aux_sym_find_statement_token1] = ACTIONS(301), + [aux_sym_assign_statement_token1] = ACTIONS(303), + [aux_sym_catch_statement_token1] = ACTIONS(305), + [aux_sym_finally_statement_token1] = ACTIONS(307), + [aux_sym_accumulate_statement_token1] = ACTIONS(309), + [anon_sym_ROUTINE_DASHLEVEL] = ACTIONS(311), + [anon_sym_BLOCK_DASHLEVEL] = ACTIONS(311), }, [138] = { + [sym_body] = STATE(4166), [sym_comment] = STATE(138), - [sym__logical_operator] = STATE(411), - [sym__additive_operator] = STATE(408), - [sym__multiplicative_operator] = STATE(347), - [sym__comparison_operator] = STATE(375), + [sym_qualified_name] = STATE(4814), + [sym__block_terminator] = STATE(1092), [sym_include] = STATE(138), - [anon_sym_SLASH_SLASH] = ACTIONS(59), - [anon_sym_SLASH_STAR] = ACTIONS(61), - [anon_sym_SLASH] = ACTIONS(283), - [anon_sym_LBRACE] = ACTIONS(65), - [anon_sym_STAR] = ACTIONS(285), - [sym__terminator] = ACTIONS(317), - [anon_sym_LPAREN] = ACTIONS(317), - [anon_sym_RPAREN] = ACTIONS(317), - [anon_sym_PLUS] = ACTIONS(317), - [anon_sym_DASH] = ACTIONS(317), - [anon_sym_LT] = ACTIONS(319), - [anon_sym_LT_EQ] = ACTIONS(317), - [anon_sym_LT_GT] = ACTIONS(317), - [anon_sym_EQ] = ACTIONS(317), - [anon_sym_GT] = ACTIONS(319), - [anon_sym_GT_EQ] = ACTIONS(317), - [aux_sym__comparison_operator_token1] = ACTIONS(317), - [aux_sym__comparison_operator_token2] = ACTIONS(317), - [aux_sym__comparison_operator_token3] = ACTIONS(317), - [aux_sym__comparison_operator_token4] = ACTIONS(317), - [aux_sym__comparison_operator_token5] = ACTIONS(317), - [aux_sym__comparison_operator_token6] = ACTIONS(317), - [aux_sym__comparison_operator_token7] = ACTIONS(317), - [aux_sym__comparison_operator_token8] = ACTIONS(317), - [aux_sym__comparison_operator_token9] = ACTIONS(317), - [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(317), - [sym__and_operator] = ACTIONS(317), + [sym_assignment] = STATE(4463), + [sym_variable_definition] = STATE(1550), + [sym_variable_assignment] = STATE(1550), + [sym_buffer_definition] = STATE(1550), + [sym_query_definition] = STATE(1550), + [sym_function_call_statement] = STATE(1550), + [sym_function_call] = STATE(4558), + [sym_if_statement] = STATE(1550), + [sym_label] = STATE(1551), + [sym_repeat_statement] = STATE(1550), + [sym_procedure_statement] = STATE(1550), + [sym_procedure_parameter_definition] = STATE(1550), + [sym_function_statement] = STATE(1550), + [sym_return_statement] = STATE(1550), + [sym_interface_statement] = STATE(1550), + [sym_using_statement] = STATE(1550), + [sym_class_statement] = STATE(1550), + [sym_object_access] = STATE(3661), + [sym_stream_definition] = STATE(1550), + [sym_input_close_statement] = STATE(1550), + [sym_output_close_statement] = STATE(1550), + [sym__stream_statement] = STATE(1550), + [sym_input_stream_statement] = STATE(1552), + [sym_output_stream_statement] = STATE(1552), + [sym_do_block] = STATE(1550), + [sym_case_statement] = STATE(1550), + [sym_for_statement] = STATE(1550), + [sym_find_statement] = STATE(1550), + [sym_abl_statement] = STATE(1550), + [sym_assign_statement] = STATE(1550), + [sym_catch_statement] = STATE(1550), + [sym_finally_statement] = STATE(1550), + [sym_accumulate_statement] = STATE(1550), + [sym_undo_statement] = STATE(1550), + [sym_error_scope_statement] = STATE(1550), + [sym_temp_table_definition] = STATE(1550), + [sym_on_statement] = STATE(1550), + [sym__statement] = STATE(1553), + [aux_sym_source_code_repeat1] = STATE(286), + [sym_identifier] = ACTIONS(263), + [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(267), + [aux_sym_primitive_type_token19] = ACTIONS(269), + [aux_sym_variable_definition_token1] = ACTIONS(271), + [aux_sym_variable_definition_token2] = ACTIONS(273), + [aux_sym_buffer_definition_token2] = ACTIONS(275), + [aux_sym_argument_mode_token1] = ACTIONS(277), + [aux_sym_if_statement_token1] = ACTIONS(279), + [aux_sym_repeat_statement_token1] = ACTIONS(281), + [aux_sym__procedure_terminator_token1] = ACTIONS(283), + [aux_sym_procedure_parameter_definition_token1] = ACTIONS(285), + [aux_sym__function_terminator_token1] = ACTIONS(287), + [aux_sym_interface_statement_token1] = ACTIONS(289), + [aux_sym_using_statement_token1] = ACTIONS(291), + [aux_sym_on_error_phrase_token1] = ACTIONS(293), + [aux_sym_on_error_phrase_token3] = ACTIONS(295), + [aux_sym_do_block_token1] = ACTIONS(297), + [aux_sym__case_terminator_token1] = ACTIONS(299), + [aux_sym_find_statement_token1] = ACTIONS(301), + [aux_sym_assign_statement_token1] = ACTIONS(303), + [aux_sym_catch_statement_token1] = ACTIONS(305), + [aux_sym_finally_statement_token1] = ACTIONS(307), + [aux_sym_accumulate_statement_token1] = ACTIONS(309), + [anon_sym_ROUTINE_DASHLEVEL] = ACTIONS(311), + [anon_sym_BLOCK_DASHLEVEL] = ACTIONS(311), }, [139] = { - [sym_body] = STATE(3847), + [sym_body] = STATE(4150), [sym_comment] = STATE(139), - [sym_qualified_name] = STATE(4733), - [sym__block_terminator] = STATE(1199), + [sym_qualified_name] = STATE(4814), + [sym__block_terminator] = STATE(1421), [sym_include] = STATE(139), - [sym_assignment] = STATE(4314), - [sym_variable_definition] = STATE(1535), - [sym_variable_assignment] = STATE(1535), - [sym_buffer_definition] = STATE(1535), - [sym_query_definition] = STATE(1535), - [sym_function_call_statement] = STATE(1535), - [sym_function_call] = STATE(4086), - [sym_if_statement] = STATE(1535), - [sym_label] = STATE(1536), - [sym_repeat_statement] = STATE(1535), - [sym_procedure_statement] = STATE(1535), - [sym_procedure_parameter_definition] = STATE(1535), - [sym_function_statement] = STATE(1535), - [sym_return_statement] = STATE(1535), - [sym_interface_statement] = STATE(1535), - [sym_using_statement] = STATE(1535), - [sym_class_statement] = STATE(1535), - [sym_object_access] = STATE(3567), - [sym_stream_definition] = STATE(1535), - [sym_input_close_statement] = STATE(1535), - [sym_output_close_statement] = STATE(1535), - [sym__stream_statement] = STATE(1535), - [sym_input_stream_statement] = STATE(1537), - [sym_output_stream_statement] = STATE(1537), - [sym_do_block] = STATE(1535), - [sym_case_statement] = STATE(1535), - [sym_for_statement] = STATE(1535), - [sym_find_statement] = STATE(1535), - [sym_abl_statement] = STATE(1535), - [sym_assign_statement] = STATE(1535), - [sym_catch_statement] = STATE(1535), - [sym_finally_statement] = STATE(1535), - [sym_accumulate_statement] = STATE(1535), - [sym_undo_statement] = STATE(1535), - [sym_error_scope_statement] = STATE(1535), - [sym_temp_table_definition] = STATE(1535), - [sym_on_statement] = STATE(1535), - [sym__statement] = STATE(1538), - [aux_sym_source_code_repeat1] = STATE(276), - [sym_identifier] = ACTIONS(227), + [sym_assignment] = STATE(4463), + [sym_variable_definition] = STATE(1550), + [sym_variable_assignment] = STATE(1550), + [sym_buffer_definition] = STATE(1550), + [sym_query_definition] = STATE(1550), + [sym_function_call_statement] = STATE(1550), + [sym_function_call] = STATE(4558), + [sym_if_statement] = STATE(1550), + [sym_label] = STATE(1551), + [sym_repeat_statement] = STATE(1550), + [sym_procedure_statement] = STATE(1550), + [sym_procedure_parameter_definition] = STATE(1550), + [sym_function_statement] = STATE(1550), + [sym_return_statement] = STATE(1550), + [sym_interface_statement] = STATE(1550), + [sym_using_statement] = STATE(1550), + [sym_class_statement] = STATE(1550), + [sym_object_access] = STATE(3661), + [sym_stream_definition] = STATE(1550), + [sym_input_close_statement] = STATE(1550), + [sym_output_close_statement] = STATE(1550), + [sym__stream_statement] = STATE(1550), + [sym_input_stream_statement] = STATE(1552), + [sym_output_stream_statement] = STATE(1552), + [sym_do_block] = STATE(1550), + [sym_case_statement] = STATE(1550), + [sym_for_statement] = STATE(1550), + [sym_find_statement] = STATE(1550), + [sym_abl_statement] = STATE(1550), + [sym_assign_statement] = STATE(1550), + [sym_catch_statement] = STATE(1550), + [sym_finally_statement] = STATE(1550), + [sym_accumulate_statement] = STATE(1550), + [sym_undo_statement] = STATE(1550), + [sym_error_scope_statement] = STATE(1550), + [sym_temp_table_definition] = STATE(1550), + [sym_on_statement] = STATE(1550), + [sym__statement] = STATE(1553), + [aux_sym_source_code_repeat1] = STATE(286), + [sym_identifier] = ACTIONS(263), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), [anon_sym_LBRACE] = ACTIONS(7), - [aux_sym__block_terminator_token1] = ACTIONS(299), - [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), + [aux_sym__block_terminator_token1] = ACTIONS(327), + [aux_sym_input_expression_token1] = ACTIONS(267), + [aux_sym_primitive_type_token19] = ACTIONS(269), + [aux_sym_variable_definition_token1] = ACTIONS(271), + [aux_sym_variable_definition_token2] = ACTIONS(273), + [aux_sym_buffer_definition_token2] = ACTIONS(275), + [aux_sym_argument_mode_token1] = ACTIONS(277), + [aux_sym_if_statement_token1] = ACTIONS(279), + [aux_sym_repeat_statement_token1] = ACTIONS(281), + [aux_sym__procedure_terminator_token1] = ACTIONS(283), + [aux_sym_procedure_parameter_definition_token1] = ACTIONS(285), + [aux_sym__function_terminator_token1] = ACTIONS(287), + [aux_sym_interface_statement_token1] = ACTIONS(289), + [aux_sym_using_statement_token1] = ACTIONS(291), + [aux_sym_on_error_phrase_token1] = ACTIONS(293), + [aux_sym_on_error_phrase_token3] = ACTIONS(295), + [aux_sym_do_block_token1] = ACTIONS(297), + [aux_sym__case_terminator_token1] = ACTIONS(299), + [aux_sym_find_statement_token1] = ACTIONS(301), + [aux_sym_assign_statement_token1] = ACTIONS(303), + [aux_sym_catch_statement_token1] = ACTIONS(305), + [aux_sym_finally_statement_token1] = ACTIONS(307), + [aux_sym_accumulate_statement_token1] = ACTIONS(309), + [anon_sym_ROUTINE_DASHLEVEL] = ACTIONS(311), + [anon_sym_BLOCK_DASHLEVEL] = ACTIONS(311), }, [140] = { - [sym_body] = STATE(3745), + [sym_body] = STATE(4177), [sym_comment] = STATE(140), - [sym_qualified_name] = STATE(4733), - [sym__block_terminator] = STATE(1013), + [sym_qualified_name] = STATE(4814), + [sym__block_terminator] = STATE(1093), [sym_include] = STATE(140), - [sym_assignment] = STATE(4314), - [sym_variable_definition] = STATE(1535), - [sym_variable_assignment] = STATE(1535), - [sym_buffer_definition] = STATE(1535), - [sym_query_definition] = STATE(1535), - [sym_function_call_statement] = STATE(1535), - [sym_function_call] = STATE(4086), - [sym_if_statement] = STATE(1535), - [sym_label] = STATE(1536), - [sym_repeat_statement] = STATE(1535), - [sym_procedure_statement] = STATE(1535), - [sym_procedure_parameter_definition] = STATE(1535), - [sym_function_statement] = STATE(1535), - [sym_return_statement] = STATE(1535), - [sym_interface_statement] = STATE(1535), - [sym_using_statement] = STATE(1535), - [sym_class_statement] = STATE(1535), - [sym_object_access] = STATE(3567), - [sym_stream_definition] = STATE(1535), - [sym_input_close_statement] = STATE(1535), - [sym_output_close_statement] = STATE(1535), - [sym__stream_statement] = STATE(1535), - [sym_input_stream_statement] = STATE(1537), - [sym_output_stream_statement] = STATE(1537), - [sym_do_block] = STATE(1535), - [sym_case_statement] = STATE(1535), - [sym_for_statement] = STATE(1535), - [sym_find_statement] = STATE(1535), - [sym_abl_statement] = STATE(1535), - [sym_assign_statement] = STATE(1535), - [sym_catch_statement] = STATE(1535), - [sym_finally_statement] = STATE(1535), - [sym_accumulate_statement] = STATE(1535), - [sym_undo_statement] = STATE(1535), - [sym_error_scope_statement] = STATE(1535), - [sym_temp_table_definition] = STATE(1535), - [sym_on_statement] = STATE(1535), - [sym__statement] = STATE(1538), - [aux_sym_source_code_repeat1] = STATE(276), - [sym_identifier] = ACTIONS(227), + [sym_assignment] = STATE(4463), + [sym_variable_definition] = STATE(1550), + [sym_variable_assignment] = STATE(1550), + [sym_buffer_definition] = STATE(1550), + [sym_query_definition] = STATE(1550), + [sym_function_call_statement] = STATE(1550), + [sym_function_call] = STATE(4558), + [sym_if_statement] = STATE(1550), + [sym_label] = STATE(1551), + [sym_repeat_statement] = STATE(1550), + [sym_procedure_statement] = STATE(1550), + [sym_procedure_parameter_definition] = STATE(1550), + [sym_function_statement] = STATE(1550), + [sym_return_statement] = STATE(1550), + [sym_interface_statement] = STATE(1550), + [sym_using_statement] = STATE(1550), + [sym_class_statement] = STATE(1550), + [sym_object_access] = STATE(3661), + [sym_stream_definition] = STATE(1550), + [sym_input_close_statement] = STATE(1550), + [sym_output_close_statement] = STATE(1550), + [sym__stream_statement] = STATE(1550), + [sym_input_stream_statement] = STATE(1552), + [sym_output_stream_statement] = STATE(1552), + [sym_do_block] = STATE(1550), + [sym_case_statement] = STATE(1550), + [sym_for_statement] = STATE(1550), + [sym_find_statement] = STATE(1550), + [sym_abl_statement] = STATE(1550), + [sym_assign_statement] = STATE(1550), + [sym_catch_statement] = STATE(1550), + [sym_finally_statement] = STATE(1550), + [sym_accumulate_statement] = STATE(1550), + [sym_undo_statement] = STATE(1550), + [sym_error_scope_statement] = STATE(1550), + [sym_temp_table_definition] = STATE(1550), + [sym_on_statement] = STATE(1550), + [sym__statement] = STATE(1553), + [aux_sym_source_code_repeat1] = STATE(286), + [sym_identifier] = ACTIONS(263), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), [anon_sym_LBRACE] = ACTIONS(7), - [aux_sym__block_terminator_token1] = ACTIONS(301), - [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), + [aux_sym__block_terminator_token1] = ACTIONS(321), + [aux_sym_input_expression_token1] = ACTIONS(267), + [aux_sym_primitive_type_token19] = ACTIONS(269), + [aux_sym_variable_definition_token1] = ACTIONS(271), + [aux_sym_variable_definition_token2] = ACTIONS(273), + [aux_sym_buffer_definition_token2] = ACTIONS(275), + [aux_sym_argument_mode_token1] = ACTIONS(277), + [aux_sym_if_statement_token1] = ACTIONS(279), + [aux_sym_repeat_statement_token1] = ACTIONS(281), + [aux_sym__procedure_terminator_token1] = ACTIONS(283), + [aux_sym_procedure_parameter_definition_token1] = ACTIONS(285), + [aux_sym__function_terminator_token1] = ACTIONS(287), + [aux_sym_interface_statement_token1] = ACTIONS(289), + [aux_sym_using_statement_token1] = ACTIONS(291), + [aux_sym_on_error_phrase_token1] = ACTIONS(293), + [aux_sym_on_error_phrase_token3] = ACTIONS(295), + [aux_sym_do_block_token1] = ACTIONS(297), + [aux_sym__case_terminator_token1] = ACTIONS(299), + [aux_sym_find_statement_token1] = ACTIONS(301), + [aux_sym_assign_statement_token1] = ACTIONS(303), + [aux_sym_catch_statement_token1] = ACTIONS(305), + [aux_sym_finally_statement_token1] = ACTIONS(307), + [aux_sym_accumulate_statement_token1] = ACTIONS(309), + [anon_sym_ROUTINE_DASHLEVEL] = ACTIONS(311), + [anon_sym_BLOCK_DASHLEVEL] = ACTIONS(311), }, [141] = { - [sym_body] = STATE(3941), + [sym_body] = STATE(4157), [sym_comment] = STATE(141), - [sym_qualified_name] = STATE(4733), - [sym__block_terminator] = STATE(1368), + [sym_qualified_name] = STATE(4814), + [sym__block_terminator] = STATE(1422), [sym_include] = STATE(141), - [sym_assignment] = STATE(4314), - [sym_variable_definition] = STATE(1535), - [sym_variable_assignment] = STATE(1535), - [sym_buffer_definition] = STATE(1535), - [sym_query_definition] = STATE(1535), - [sym_function_call_statement] = STATE(1535), - [sym_function_call] = STATE(4086), - [sym_if_statement] = STATE(1535), - [sym_label] = STATE(1536), - [sym_repeat_statement] = STATE(1535), - [sym_procedure_statement] = STATE(1535), - [sym_procedure_parameter_definition] = STATE(1535), - [sym_function_statement] = STATE(1535), - [sym_return_statement] = STATE(1535), - [sym_interface_statement] = STATE(1535), - [sym_using_statement] = STATE(1535), - [sym_class_statement] = STATE(1535), - [sym_object_access] = STATE(3567), - [sym_stream_definition] = STATE(1535), - [sym_input_close_statement] = STATE(1535), - [sym_output_close_statement] = STATE(1535), - [sym__stream_statement] = STATE(1535), - [sym_input_stream_statement] = STATE(1537), - [sym_output_stream_statement] = STATE(1537), - [sym_do_block] = STATE(1535), - [sym_case_statement] = STATE(1535), - [sym_for_statement] = STATE(1535), - [sym_find_statement] = STATE(1535), - [sym_abl_statement] = STATE(1535), - [sym_assign_statement] = STATE(1535), - [sym_catch_statement] = STATE(1535), - [sym_finally_statement] = STATE(1535), - [sym_accumulate_statement] = STATE(1535), - [sym_undo_statement] = STATE(1535), - [sym_error_scope_statement] = STATE(1535), - [sym_temp_table_definition] = STATE(1535), - [sym_on_statement] = STATE(1535), - [sym__statement] = STATE(1538), - [aux_sym_source_code_repeat1] = STATE(276), - [sym_identifier] = ACTIONS(227), + [sym_assignment] = STATE(4463), + [sym_variable_definition] = STATE(1550), + [sym_variable_assignment] = STATE(1550), + [sym_buffer_definition] = STATE(1550), + [sym_query_definition] = STATE(1550), + [sym_function_call_statement] = STATE(1550), + [sym_function_call] = STATE(4558), + [sym_if_statement] = STATE(1550), + [sym_label] = STATE(1551), + [sym_repeat_statement] = STATE(1550), + [sym_procedure_statement] = STATE(1550), + [sym_procedure_parameter_definition] = STATE(1550), + [sym_function_statement] = STATE(1550), + [sym_return_statement] = STATE(1550), + [sym_interface_statement] = STATE(1550), + [sym_using_statement] = STATE(1550), + [sym_class_statement] = STATE(1550), + [sym_object_access] = STATE(3661), + [sym_stream_definition] = STATE(1550), + [sym_input_close_statement] = STATE(1550), + [sym_output_close_statement] = STATE(1550), + [sym__stream_statement] = STATE(1550), + [sym_input_stream_statement] = STATE(1552), + [sym_output_stream_statement] = STATE(1552), + [sym_do_block] = STATE(1550), + [sym_case_statement] = STATE(1550), + [sym_for_statement] = STATE(1550), + [sym_find_statement] = STATE(1550), + [sym_abl_statement] = STATE(1550), + [sym_assign_statement] = STATE(1550), + [sym_catch_statement] = STATE(1550), + [sym_finally_statement] = STATE(1550), + [sym_accumulate_statement] = STATE(1550), + [sym_undo_statement] = STATE(1550), + [sym_error_scope_statement] = STATE(1550), + [sym_temp_table_definition] = STATE(1550), + [sym_on_statement] = STATE(1550), + [sym__statement] = STATE(1553), + [aux_sym_source_code_repeat1] = STATE(286), + [sym_identifier] = ACTIONS(263), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), [anon_sym_LBRACE] = ACTIONS(7), - [aux_sym__block_terminator_token1] = ACTIONS(311), - [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), + [aux_sym__block_terminator_token1] = ACTIONS(327), + [aux_sym_input_expression_token1] = ACTIONS(267), + [aux_sym_primitive_type_token19] = ACTIONS(269), + [aux_sym_variable_definition_token1] = ACTIONS(271), + [aux_sym_variable_definition_token2] = ACTIONS(273), + [aux_sym_buffer_definition_token2] = ACTIONS(275), + [aux_sym_argument_mode_token1] = ACTIONS(277), + [aux_sym_if_statement_token1] = ACTIONS(279), + [aux_sym_repeat_statement_token1] = ACTIONS(281), + [aux_sym__procedure_terminator_token1] = ACTIONS(283), + [aux_sym_procedure_parameter_definition_token1] = ACTIONS(285), + [aux_sym__function_terminator_token1] = ACTIONS(287), + [aux_sym_interface_statement_token1] = ACTIONS(289), + [aux_sym_using_statement_token1] = ACTIONS(291), + [aux_sym_on_error_phrase_token1] = ACTIONS(293), + [aux_sym_on_error_phrase_token3] = ACTIONS(295), + [aux_sym_do_block_token1] = ACTIONS(297), + [aux_sym__case_terminator_token1] = ACTIONS(299), + [aux_sym_find_statement_token1] = ACTIONS(301), + [aux_sym_assign_statement_token1] = ACTIONS(303), + [aux_sym_catch_statement_token1] = ACTIONS(305), + [aux_sym_finally_statement_token1] = ACTIONS(307), + [aux_sym_accumulate_statement_token1] = ACTIONS(309), + [anon_sym_ROUTINE_DASHLEVEL] = ACTIONS(311), + [anon_sym_BLOCK_DASHLEVEL] = ACTIONS(311), }, [142] = { - [sym_body] = STATE(3914), + [sym_body] = STATE(4184), [sym_comment] = STATE(142), - [sym_qualified_name] = STATE(4733), - [sym__block_terminator] = STATE(878), + [sym_qualified_name] = STATE(4814), + [sym__block_terminator] = STATE(848), [sym_include] = STATE(142), - [sym_assignment] = STATE(4314), - [sym_variable_definition] = STATE(1535), - [sym_variable_assignment] = STATE(1535), - [sym_buffer_definition] = STATE(1535), - [sym_query_definition] = STATE(1535), - [sym_function_call_statement] = STATE(1535), - [sym_function_call] = STATE(4086), - [sym_if_statement] = STATE(1535), - [sym_label] = STATE(1536), - [sym_repeat_statement] = STATE(1535), - [sym_procedure_statement] = STATE(1535), - [sym_procedure_parameter_definition] = STATE(1535), - [sym_function_statement] = STATE(1535), - [sym_return_statement] = STATE(1535), - [sym_interface_statement] = STATE(1535), - [sym_using_statement] = STATE(1535), - [sym_class_statement] = STATE(1535), - [sym_object_access] = STATE(3567), - [sym_stream_definition] = STATE(1535), - [sym_input_close_statement] = STATE(1535), - [sym_output_close_statement] = STATE(1535), - [sym__stream_statement] = STATE(1535), - [sym_input_stream_statement] = STATE(1537), - [sym_output_stream_statement] = STATE(1537), - [sym_do_block] = STATE(1535), - [sym_case_statement] = STATE(1535), - [sym_for_statement] = STATE(1535), - [sym_find_statement] = STATE(1535), - [sym_abl_statement] = STATE(1535), - [sym_assign_statement] = STATE(1535), - [sym_catch_statement] = STATE(1535), - [sym_finally_statement] = STATE(1535), - [sym_accumulate_statement] = STATE(1535), - [sym_undo_statement] = STATE(1535), - [sym_error_scope_statement] = STATE(1535), - [sym_temp_table_definition] = STATE(1535), - [sym_on_statement] = STATE(1535), - [sym__statement] = STATE(1538), - [aux_sym_source_code_repeat1] = STATE(276), - [sym_identifier] = ACTIONS(227), + [sym_assignment] = STATE(4463), + [sym_variable_definition] = STATE(1550), + [sym_variable_assignment] = STATE(1550), + [sym_buffer_definition] = STATE(1550), + [sym_query_definition] = STATE(1550), + [sym_function_call_statement] = STATE(1550), + [sym_function_call] = STATE(4558), + [sym_if_statement] = STATE(1550), + [sym_label] = STATE(1551), + [sym_repeat_statement] = STATE(1550), + [sym_procedure_statement] = STATE(1550), + [sym_procedure_parameter_definition] = STATE(1550), + [sym_function_statement] = STATE(1550), + [sym_return_statement] = STATE(1550), + [sym_interface_statement] = STATE(1550), + [sym_using_statement] = STATE(1550), + [sym_class_statement] = STATE(1550), + [sym_object_access] = STATE(3661), + [sym_stream_definition] = STATE(1550), + [sym_input_close_statement] = STATE(1550), + [sym_output_close_statement] = STATE(1550), + [sym__stream_statement] = STATE(1550), + [sym_input_stream_statement] = STATE(1552), + [sym_output_stream_statement] = STATE(1552), + [sym_do_block] = STATE(1550), + [sym_case_statement] = STATE(1550), + [sym_for_statement] = STATE(1550), + [sym_find_statement] = STATE(1550), + [sym_abl_statement] = STATE(1550), + [sym_assign_statement] = STATE(1550), + [sym_catch_statement] = STATE(1550), + [sym_finally_statement] = STATE(1550), + [sym_accumulate_statement] = STATE(1550), + [sym_undo_statement] = STATE(1550), + [sym_error_scope_statement] = STATE(1550), + [sym_temp_table_definition] = STATE(1550), + [sym_on_statement] = STATE(1550), + [sym__statement] = STATE(1553), + [aux_sym_source_code_repeat1] = STATE(286), + [sym_identifier] = ACTIONS(263), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), [anon_sym_LBRACE] = ACTIONS(7), - [aux_sym__block_terminator_token1] = ACTIONS(303), - [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), + [aux_sym__block_terminator_token1] = ACTIONS(321), + [aux_sym_input_expression_token1] = ACTIONS(267), + [aux_sym_primitive_type_token19] = ACTIONS(269), + [aux_sym_variable_definition_token1] = ACTIONS(271), + [aux_sym_variable_definition_token2] = ACTIONS(273), + [aux_sym_buffer_definition_token2] = ACTIONS(275), + [aux_sym_argument_mode_token1] = ACTIONS(277), + [aux_sym_if_statement_token1] = ACTIONS(279), + [aux_sym_repeat_statement_token1] = ACTIONS(281), + [aux_sym__procedure_terminator_token1] = ACTIONS(283), + [aux_sym_procedure_parameter_definition_token1] = ACTIONS(285), + [aux_sym__function_terminator_token1] = ACTIONS(287), + [aux_sym_interface_statement_token1] = ACTIONS(289), + [aux_sym_using_statement_token1] = ACTIONS(291), + [aux_sym_on_error_phrase_token1] = ACTIONS(293), + [aux_sym_on_error_phrase_token3] = ACTIONS(295), + [aux_sym_do_block_token1] = ACTIONS(297), + [aux_sym__case_terminator_token1] = ACTIONS(299), + [aux_sym_find_statement_token1] = ACTIONS(301), + [aux_sym_assign_statement_token1] = ACTIONS(303), + [aux_sym_catch_statement_token1] = ACTIONS(305), + [aux_sym_finally_statement_token1] = ACTIONS(307), + [aux_sym_accumulate_statement_token1] = ACTIONS(309), + [anon_sym_ROUTINE_DASHLEVEL] = ACTIONS(311), + [anon_sym_BLOCK_DASHLEVEL] = ACTIONS(311), }, [143] = { + [sym_body] = STATE(4171), [sym_comment] = STATE(143), - [sym__logical_operator] = STATE(411), - [sym__additive_operator] = STATE(408), - [sym__multiplicative_operator] = STATE(347), - [sym__comparison_operator] = STATE(375), + [sym_qualified_name] = STATE(4814), + [sym__block_terminator] = STATE(1545), [sym_include] = STATE(143), - [anon_sym_SLASH_SLASH] = ACTIONS(59), - [anon_sym_SLASH_STAR] = ACTIONS(61), - [anon_sym_SLASH] = ACTIONS(283), - [anon_sym_LBRACE] = ACTIONS(65), - [anon_sym_STAR] = ACTIONS(285), - [sym__terminator] = ACTIONS(321), - [anon_sym_LPAREN] = ACTIONS(321), - [anon_sym_RPAREN] = ACTIONS(321), - [anon_sym_PLUS] = ACTIONS(289), - [anon_sym_DASH] = ACTIONS(289), - [anon_sym_LT] = ACTIONS(291), - [anon_sym_LT_EQ] = ACTIONS(293), - [anon_sym_LT_GT] = ACTIONS(293), - [anon_sym_EQ] = ACTIONS(293), - [anon_sym_GT] = ACTIONS(291), - [anon_sym_GT_EQ] = ACTIONS(293), - [aux_sym__comparison_operator_token1] = ACTIONS(293), - [aux_sym__comparison_operator_token2] = ACTIONS(293), - [aux_sym__comparison_operator_token3] = ACTIONS(293), - [aux_sym__comparison_operator_token4] = ACTIONS(293), - [aux_sym__comparison_operator_token5] = ACTIONS(293), - [aux_sym__comparison_operator_token6] = ACTIONS(293), - [aux_sym__comparison_operator_token7] = ACTIONS(293), - [aux_sym__comparison_operator_token8] = ACTIONS(293), - [aux_sym__comparison_operator_token9] = ACTIONS(293), - [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(295), - [sym__and_operator] = ACTIONS(295), + [sym_assignment] = STATE(4463), + [sym_variable_definition] = STATE(1550), + [sym_variable_assignment] = STATE(1550), + [sym_buffer_definition] = STATE(1550), + [sym_query_definition] = STATE(1550), + [sym_function_call_statement] = STATE(1550), + [sym_function_call] = STATE(4558), + [sym_if_statement] = STATE(1550), + [sym_label] = STATE(1551), + [sym_repeat_statement] = STATE(1550), + [sym_procedure_statement] = STATE(1550), + [sym_procedure_parameter_definition] = STATE(1550), + [sym_function_statement] = STATE(1550), + [sym_return_statement] = STATE(1550), + [sym_interface_statement] = STATE(1550), + [sym_using_statement] = STATE(1550), + [sym_class_statement] = STATE(1550), + [sym_object_access] = STATE(3661), + [sym_stream_definition] = STATE(1550), + [sym_input_close_statement] = STATE(1550), + [sym_output_close_statement] = STATE(1550), + [sym__stream_statement] = STATE(1550), + [sym_input_stream_statement] = STATE(1552), + [sym_output_stream_statement] = STATE(1552), + [sym_do_block] = STATE(1550), + [sym_case_statement] = STATE(1550), + [sym_for_statement] = STATE(1550), + [sym_find_statement] = STATE(1550), + [sym_abl_statement] = STATE(1550), + [sym_assign_statement] = STATE(1550), + [sym_catch_statement] = STATE(1550), + [sym_finally_statement] = STATE(1550), + [sym_accumulate_statement] = STATE(1550), + [sym_undo_statement] = STATE(1550), + [sym_error_scope_statement] = STATE(1550), + [sym_temp_table_definition] = STATE(1550), + [sym_on_statement] = STATE(1550), + [sym__statement] = STATE(1553), + [aux_sym_source_code_repeat1] = STATE(286), + [sym_identifier] = ACTIONS(263), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_LBRACE] = ACTIONS(7), + [aux_sym__block_terminator_token1] = ACTIONS(327), + [aux_sym_input_expression_token1] = ACTIONS(267), + [aux_sym_primitive_type_token19] = ACTIONS(269), + [aux_sym_variable_definition_token1] = ACTIONS(271), + [aux_sym_variable_definition_token2] = ACTIONS(273), + [aux_sym_buffer_definition_token2] = ACTIONS(275), + [aux_sym_argument_mode_token1] = ACTIONS(277), + [aux_sym_if_statement_token1] = ACTIONS(279), + [aux_sym_repeat_statement_token1] = ACTIONS(281), + [aux_sym__procedure_terminator_token1] = ACTIONS(283), + [aux_sym_procedure_parameter_definition_token1] = ACTIONS(285), + [aux_sym__function_terminator_token1] = ACTIONS(287), + [aux_sym_interface_statement_token1] = ACTIONS(289), + [aux_sym_using_statement_token1] = ACTIONS(291), + [aux_sym_on_error_phrase_token1] = ACTIONS(293), + [aux_sym_on_error_phrase_token3] = ACTIONS(295), + [aux_sym_do_block_token1] = ACTIONS(297), + [aux_sym__case_terminator_token1] = ACTIONS(299), + [aux_sym_find_statement_token1] = ACTIONS(301), + [aux_sym_assign_statement_token1] = ACTIONS(303), + [aux_sym_catch_statement_token1] = ACTIONS(305), + [aux_sym_finally_statement_token1] = ACTIONS(307), + [aux_sym_accumulate_statement_token1] = ACTIONS(309), + [anon_sym_ROUTINE_DASHLEVEL] = ACTIONS(311), + [anon_sym_BLOCK_DASHLEVEL] = ACTIONS(311), }, [144] = { - [sym_body] = STATE(3581), + [sym_body] = STATE(4061), [sym_comment] = STATE(144), - [sym_qualified_name] = STATE(4733), - [sym__block_terminator] = STATE(1108), + [sym_qualified_name] = STATE(4814), + [sym__block_terminator] = STATE(1094), [sym_include] = STATE(144), - [sym_assignment] = STATE(4314), - [sym_variable_definition] = STATE(1535), - [sym_variable_assignment] = STATE(1535), - [sym_buffer_definition] = STATE(1535), - [sym_query_definition] = STATE(1535), - [sym_function_call_statement] = STATE(1535), - [sym_function_call] = STATE(4086), - [sym_if_statement] = STATE(1535), - [sym_label] = STATE(1536), - [sym_repeat_statement] = STATE(1535), - [sym_procedure_statement] = STATE(1535), - [sym_procedure_parameter_definition] = STATE(1535), - [sym_function_statement] = STATE(1535), - [sym_return_statement] = STATE(1535), - [sym_interface_statement] = STATE(1535), - [sym_using_statement] = STATE(1535), - [sym_class_statement] = STATE(1535), - [sym_object_access] = STATE(3567), - [sym_stream_definition] = STATE(1535), - [sym_input_close_statement] = STATE(1535), - [sym_output_close_statement] = STATE(1535), - [sym__stream_statement] = STATE(1535), - [sym_input_stream_statement] = STATE(1537), - [sym_output_stream_statement] = STATE(1537), - [sym_do_block] = STATE(1535), - [sym_case_statement] = STATE(1535), - [sym_for_statement] = STATE(1535), - [sym_find_statement] = STATE(1535), - [sym_abl_statement] = STATE(1535), - [sym_assign_statement] = STATE(1535), - [sym_catch_statement] = STATE(1535), - [sym_finally_statement] = STATE(1535), - [sym_accumulate_statement] = STATE(1535), - [sym_undo_statement] = STATE(1535), - [sym_error_scope_statement] = STATE(1535), - [sym_temp_table_definition] = STATE(1535), - [sym_on_statement] = STATE(1535), - [sym__statement] = STATE(1538), - [aux_sym_source_code_repeat1] = STATE(276), - [sym_identifier] = ACTIONS(227), + [sym_assignment] = STATE(4463), + [sym_variable_definition] = STATE(1550), + [sym_variable_assignment] = STATE(1550), + [sym_buffer_definition] = STATE(1550), + [sym_query_definition] = STATE(1550), + [sym_function_call_statement] = STATE(1550), + [sym_function_call] = STATE(4558), + [sym_if_statement] = STATE(1550), + [sym_label] = STATE(1551), + [sym_repeat_statement] = STATE(1550), + [sym_procedure_statement] = STATE(1550), + [sym_procedure_parameter_definition] = STATE(1550), + [sym_function_statement] = STATE(1550), + [sym_return_statement] = STATE(1550), + [sym_interface_statement] = STATE(1550), + [sym_using_statement] = STATE(1550), + [sym_class_statement] = STATE(1550), + [sym_object_access] = STATE(3661), + [sym_stream_definition] = STATE(1550), + [sym_input_close_statement] = STATE(1550), + [sym_output_close_statement] = STATE(1550), + [sym__stream_statement] = STATE(1550), + [sym_input_stream_statement] = STATE(1552), + [sym_output_stream_statement] = STATE(1552), + [sym_do_block] = STATE(1550), + [sym_case_statement] = STATE(1550), + [sym_for_statement] = STATE(1550), + [sym_find_statement] = STATE(1550), + [sym_abl_statement] = STATE(1550), + [sym_assign_statement] = STATE(1550), + [sym_catch_statement] = STATE(1550), + [sym_finally_statement] = STATE(1550), + [sym_accumulate_statement] = STATE(1550), + [sym_undo_statement] = STATE(1550), + [sym_error_scope_statement] = STATE(1550), + [sym_temp_table_definition] = STATE(1550), + [sym_on_statement] = STATE(1550), + [sym__statement] = STATE(1553), + [aux_sym_source_code_repeat1] = STATE(286), + [sym_identifier] = ACTIONS(263), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), [anon_sym_LBRACE] = ACTIONS(7), - [aux_sym__block_terminator_token1] = ACTIONS(301), - [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), + [aux_sym__block_terminator_token1] = ACTIONS(321), + [aux_sym_input_expression_token1] = ACTIONS(267), + [aux_sym_primitive_type_token19] = ACTIONS(269), + [aux_sym_variable_definition_token1] = ACTIONS(271), + [aux_sym_variable_definition_token2] = ACTIONS(273), + [aux_sym_buffer_definition_token2] = ACTIONS(275), + [aux_sym_argument_mode_token1] = ACTIONS(277), + [aux_sym_if_statement_token1] = ACTIONS(279), + [aux_sym_repeat_statement_token1] = ACTIONS(281), + [aux_sym__procedure_terminator_token1] = ACTIONS(283), + [aux_sym_procedure_parameter_definition_token1] = ACTIONS(285), + [aux_sym__function_terminator_token1] = ACTIONS(287), + [aux_sym_interface_statement_token1] = ACTIONS(289), + [aux_sym_using_statement_token1] = ACTIONS(291), + [aux_sym_on_error_phrase_token1] = ACTIONS(293), + [aux_sym_on_error_phrase_token3] = ACTIONS(295), + [aux_sym_do_block_token1] = ACTIONS(297), + [aux_sym__case_terminator_token1] = ACTIONS(299), + [aux_sym_find_statement_token1] = ACTIONS(301), + [aux_sym_assign_statement_token1] = ACTIONS(303), + [aux_sym_catch_statement_token1] = ACTIONS(305), + [aux_sym_finally_statement_token1] = ACTIONS(307), + [aux_sym_accumulate_statement_token1] = ACTIONS(309), + [anon_sym_ROUTINE_DASHLEVEL] = ACTIONS(311), + [anon_sym_BLOCK_DASHLEVEL] = ACTIONS(311), }, [145] = { - [sym_body] = STATE(3926), + [sym_body] = STATE(4182), [sym_comment] = STATE(145), - [sym_qualified_name] = STATE(4733), - [sym__block_terminator] = STATE(880), + [sym_qualified_name] = STATE(4814), + [sym__block_terminator] = STATE(1095), [sym_include] = STATE(145), - [sym_assignment] = STATE(4314), - [sym_variable_definition] = STATE(1535), - [sym_variable_assignment] = STATE(1535), - [sym_buffer_definition] = STATE(1535), - [sym_query_definition] = STATE(1535), - [sym_function_call_statement] = STATE(1535), - [sym_function_call] = STATE(4086), - [sym_if_statement] = STATE(1535), - [sym_label] = STATE(1536), - [sym_repeat_statement] = STATE(1535), - [sym_procedure_statement] = STATE(1535), - [sym_procedure_parameter_definition] = STATE(1535), - [sym_function_statement] = STATE(1535), - [sym_return_statement] = STATE(1535), - [sym_interface_statement] = STATE(1535), - [sym_using_statement] = STATE(1535), - [sym_class_statement] = STATE(1535), - [sym_object_access] = STATE(3567), - [sym_stream_definition] = STATE(1535), - [sym_input_close_statement] = STATE(1535), - [sym_output_close_statement] = STATE(1535), - [sym__stream_statement] = STATE(1535), - [sym_input_stream_statement] = STATE(1537), - [sym_output_stream_statement] = STATE(1537), - [sym_do_block] = STATE(1535), - [sym_case_statement] = STATE(1535), - [sym_for_statement] = STATE(1535), - [sym_find_statement] = STATE(1535), - [sym_abl_statement] = STATE(1535), - [sym_assign_statement] = STATE(1535), - [sym_catch_statement] = STATE(1535), - [sym_finally_statement] = STATE(1535), - [sym_accumulate_statement] = STATE(1535), - [sym_undo_statement] = STATE(1535), - [sym_error_scope_statement] = STATE(1535), - [sym_temp_table_definition] = STATE(1535), - [sym_on_statement] = STATE(1535), - [sym__statement] = STATE(1538), - [aux_sym_source_code_repeat1] = STATE(276), - [sym_identifier] = ACTIONS(227), + [sym_assignment] = STATE(4463), + [sym_variable_definition] = STATE(1550), + [sym_variable_assignment] = STATE(1550), + [sym_buffer_definition] = STATE(1550), + [sym_query_definition] = STATE(1550), + [sym_function_call_statement] = STATE(1550), + [sym_function_call] = STATE(4558), + [sym_if_statement] = STATE(1550), + [sym_label] = STATE(1551), + [sym_repeat_statement] = STATE(1550), + [sym_procedure_statement] = STATE(1550), + [sym_procedure_parameter_definition] = STATE(1550), + [sym_function_statement] = STATE(1550), + [sym_return_statement] = STATE(1550), + [sym_interface_statement] = STATE(1550), + [sym_using_statement] = STATE(1550), + [sym_class_statement] = STATE(1550), + [sym_object_access] = STATE(3661), + [sym_stream_definition] = STATE(1550), + [sym_input_close_statement] = STATE(1550), + [sym_output_close_statement] = STATE(1550), + [sym__stream_statement] = STATE(1550), + [sym_input_stream_statement] = STATE(1552), + [sym_output_stream_statement] = STATE(1552), + [sym_do_block] = STATE(1550), + [sym_case_statement] = STATE(1550), + [sym_for_statement] = STATE(1550), + [sym_find_statement] = STATE(1550), + [sym_abl_statement] = STATE(1550), + [sym_assign_statement] = STATE(1550), + [sym_catch_statement] = STATE(1550), + [sym_finally_statement] = STATE(1550), + [sym_accumulate_statement] = STATE(1550), + [sym_undo_statement] = STATE(1550), + [sym_error_scope_statement] = STATE(1550), + [sym_temp_table_definition] = STATE(1550), + [sym_on_statement] = STATE(1550), + [sym__statement] = STATE(1553), + [aux_sym_source_code_repeat1] = STATE(286), + [sym_identifier] = ACTIONS(263), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), [anon_sym_LBRACE] = ACTIONS(7), - [aux_sym__block_terminator_token1] = ACTIONS(303), - [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), + [aux_sym__block_terminator_token1] = ACTIONS(321), + [aux_sym_input_expression_token1] = ACTIONS(267), + [aux_sym_primitive_type_token19] = ACTIONS(269), + [aux_sym_variable_definition_token1] = ACTIONS(271), + [aux_sym_variable_definition_token2] = ACTIONS(273), + [aux_sym_buffer_definition_token2] = ACTIONS(275), + [aux_sym_argument_mode_token1] = ACTIONS(277), + [aux_sym_if_statement_token1] = ACTIONS(279), + [aux_sym_repeat_statement_token1] = ACTIONS(281), + [aux_sym__procedure_terminator_token1] = ACTIONS(283), + [aux_sym_procedure_parameter_definition_token1] = ACTIONS(285), + [aux_sym__function_terminator_token1] = ACTIONS(287), + [aux_sym_interface_statement_token1] = ACTIONS(289), + [aux_sym_using_statement_token1] = ACTIONS(291), + [aux_sym_on_error_phrase_token1] = ACTIONS(293), + [aux_sym_on_error_phrase_token3] = ACTIONS(295), + [aux_sym_do_block_token1] = ACTIONS(297), + [aux_sym__case_terminator_token1] = ACTIONS(299), + [aux_sym_find_statement_token1] = ACTIONS(301), + [aux_sym_assign_statement_token1] = ACTIONS(303), + [aux_sym_catch_statement_token1] = ACTIONS(305), + [aux_sym_finally_statement_token1] = ACTIONS(307), + [aux_sym_accumulate_statement_token1] = ACTIONS(309), + [anon_sym_ROUTINE_DASHLEVEL] = ACTIONS(311), + [anon_sym_BLOCK_DASHLEVEL] = ACTIONS(311), }, [146] = { - [sym_body] = STATE(3747), + [sym_body] = STATE(4178), [sym_comment] = STATE(146), - [sym_qualified_name] = STATE(4733), - [sym__block_terminator] = STATE(1005), + [sym_qualified_name] = STATE(4814), + [sym__block_terminator] = STATE(1459), [sym_include] = STATE(146), - [sym_assignment] = STATE(4314), - [sym_variable_definition] = STATE(1535), - [sym_variable_assignment] = STATE(1535), - [sym_buffer_definition] = STATE(1535), - [sym_query_definition] = STATE(1535), - [sym_function_call_statement] = STATE(1535), - [sym_function_call] = STATE(4086), - [sym_if_statement] = STATE(1535), - [sym_label] = STATE(1536), - [sym_repeat_statement] = STATE(1535), - [sym_procedure_statement] = STATE(1535), - [sym_procedure_parameter_definition] = STATE(1535), - [sym_function_statement] = STATE(1535), - [sym_return_statement] = STATE(1535), - [sym_interface_statement] = STATE(1535), - [sym_using_statement] = STATE(1535), - [sym_class_statement] = STATE(1535), - [sym_object_access] = STATE(3567), - [sym_stream_definition] = STATE(1535), - [sym_input_close_statement] = STATE(1535), - [sym_output_close_statement] = STATE(1535), - [sym__stream_statement] = STATE(1535), - [sym_input_stream_statement] = STATE(1537), - [sym_output_stream_statement] = STATE(1537), - [sym_do_block] = STATE(1535), - [sym_case_statement] = STATE(1535), - [sym_for_statement] = STATE(1535), - [sym_find_statement] = STATE(1535), - [sym_abl_statement] = STATE(1535), - [sym_assign_statement] = STATE(1535), - [sym_catch_statement] = STATE(1535), - [sym_finally_statement] = STATE(1535), - [sym_accumulate_statement] = STATE(1535), - [sym_undo_statement] = STATE(1535), - [sym_error_scope_statement] = STATE(1535), - [sym_temp_table_definition] = STATE(1535), - [sym_on_statement] = STATE(1535), - [sym__statement] = STATE(1538), - [aux_sym_source_code_repeat1] = STATE(276), - [sym_identifier] = ACTIONS(227), + [sym_assignment] = STATE(4463), + [sym_variable_definition] = STATE(1550), + [sym_variable_assignment] = STATE(1550), + [sym_buffer_definition] = STATE(1550), + [sym_query_definition] = STATE(1550), + [sym_function_call_statement] = STATE(1550), + [sym_function_call] = STATE(4558), + [sym_if_statement] = STATE(1550), + [sym_label] = STATE(1551), + [sym_repeat_statement] = STATE(1550), + [sym_procedure_statement] = STATE(1550), + [sym_procedure_parameter_definition] = STATE(1550), + [sym_function_statement] = STATE(1550), + [sym_return_statement] = STATE(1550), + [sym_interface_statement] = STATE(1550), + [sym_using_statement] = STATE(1550), + [sym_class_statement] = STATE(1550), + [sym_object_access] = STATE(3661), + [sym_stream_definition] = STATE(1550), + [sym_input_close_statement] = STATE(1550), + [sym_output_close_statement] = STATE(1550), + [sym__stream_statement] = STATE(1550), + [sym_input_stream_statement] = STATE(1552), + [sym_output_stream_statement] = STATE(1552), + [sym_do_block] = STATE(1550), + [sym_case_statement] = STATE(1550), + [sym_for_statement] = STATE(1550), + [sym_find_statement] = STATE(1550), + [sym_abl_statement] = STATE(1550), + [sym_assign_statement] = STATE(1550), + [sym_catch_statement] = STATE(1550), + [sym_finally_statement] = STATE(1550), + [sym_accumulate_statement] = STATE(1550), + [sym_undo_statement] = STATE(1550), + [sym_error_scope_statement] = STATE(1550), + [sym_temp_table_definition] = STATE(1550), + [sym_on_statement] = STATE(1550), + [sym__statement] = STATE(1553), + [aux_sym_source_code_repeat1] = STATE(286), + [sym_identifier] = ACTIONS(263), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), [anon_sym_LBRACE] = ACTIONS(7), - [aux_sym__block_terminator_token1] = ACTIONS(301), - [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), + [aux_sym__block_terminator_token1] = ACTIONS(327), + [aux_sym_input_expression_token1] = ACTIONS(267), + [aux_sym_primitive_type_token19] = ACTIONS(269), + [aux_sym_variable_definition_token1] = ACTIONS(271), + [aux_sym_variable_definition_token2] = ACTIONS(273), + [aux_sym_buffer_definition_token2] = ACTIONS(275), + [aux_sym_argument_mode_token1] = ACTIONS(277), + [aux_sym_if_statement_token1] = ACTIONS(279), + [aux_sym_repeat_statement_token1] = ACTIONS(281), + [aux_sym__procedure_terminator_token1] = ACTIONS(283), + [aux_sym_procedure_parameter_definition_token1] = ACTIONS(285), + [aux_sym__function_terminator_token1] = ACTIONS(287), + [aux_sym_interface_statement_token1] = ACTIONS(289), + [aux_sym_using_statement_token1] = ACTIONS(291), + [aux_sym_on_error_phrase_token1] = ACTIONS(293), + [aux_sym_on_error_phrase_token3] = ACTIONS(295), + [aux_sym_do_block_token1] = ACTIONS(297), + [aux_sym__case_terminator_token1] = ACTIONS(299), + [aux_sym_find_statement_token1] = ACTIONS(301), + [aux_sym_assign_statement_token1] = ACTIONS(303), + [aux_sym_catch_statement_token1] = ACTIONS(305), + [aux_sym_finally_statement_token1] = ACTIONS(307), + [aux_sym_accumulate_statement_token1] = ACTIONS(309), + [anon_sym_ROUTINE_DASHLEVEL] = ACTIONS(311), + [anon_sym_BLOCK_DASHLEVEL] = ACTIONS(311), }, [147] = { - [sym_body] = STATE(3929), + [sym_body] = STATE(4167), [sym_comment] = STATE(147), - [sym_qualified_name] = STATE(4733), - [sym__block_terminator] = STATE(883), + [sym_qualified_name] = STATE(4814), + [sym__block_terminator] = STATE(1097), [sym_include] = STATE(147), - [sym_assignment] = STATE(4314), - [sym_variable_definition] = STATE(1535), - [sym_variable_assignment] = STATE(1535), - [sym_buffer_definition] = STATE(1535), - [sym_query_definition] = STATE(1535), - [sym_function_call_statement] = STATE(1535), - [sym_function_call] = STATE(4086), - [sym_if_statement] = STATE(1535), - [sym_label] = STATE(1536), - [sym_repeat_statement] = STATE(1535), - [sym_procedure_statement] = STATE(1535), - [sym_procedure_parameter_definition] = STATE(1535), - [sym_function_statement] = STATE(1535), - [sym_return_statement] = STATE(1535), - [sym_interface_statement] = STATE(1535), - [sym_using_statement] = STATE(1535), - [sym_class_statement] = STATE(1535), - [sym_object_access] = STATE(3567), - [sym_stream_definition] = STATE(1535), - [sym_input_close_statement] = STATE(1535), - [sym_output_close_statement] = STATE(1535), - [sym__stream_statement] = STATE(1535), - [sym_input_stream_statement] = STATE(1537), - [sym_output_stream_statement] = STATE(1537), - [sym_do_block] = STATE(1535), - [sym_case_statement] = STATE(1535), - [sym_for_statement] = STATE(1535), - [sym_find_statement] = STATE(1535), - [sym_abl_statement] = STATE(1535), - [sym_assign_statement] = STATE(1535), - [sym_catch_statement] = STATE(1535), - [sym_finally_statement] = STATE(1535), - [sym_accumulate_statement] = STATE(1535), - [sym_undo_statement] = STATE(1535), - [sym_error_scope_statement] = STATE(1535), - [sym_temp_table_definition] = STATE(1535), - [sym_on_statement] = STATE(1535), - [sym__statement] = STATE(1538), - [aux_sym_source_code_repeat1] = STATE(276), - [sym_identifier] = ACTIONS(227), + [sym_assignment] = STATE(4463), + [sym_variable_definition] = STATE(1550), + [sym_variable_assignment] = STATE(1550), + [sym_buffer_definition] = STATE(1550), + [sym_query_definition] = STATE(1550), + [sym_function_call_statement] = STATE(1550), + [sym_function_call] = STATE(4558), + [sym_if_statement] = STATE(1550), + [sym_label] = STATE(1551), + [sym_repeat_statement] = STATE(1550), + [sym_procedure_statement] = STATE(1550), + [sym_procedure_parameter_definition] = STATE(1550), + [sym_function_statement] = STATE(1550), + [sym_return_statement] = STATE(1550), + [sym_interface_statement] = STATE(1550), + [sym_using_statement] = STATE(1550), + [sym_class_statement] = STATE(1550), + [sym_object_access] = STATE(3661), + [sym_stream_definition] = STATE(1550), + [sym_input_close_statement] = STATE(1550), + [sym_output_close_statement] = STATE(1550), + [sym__stream_statement] = STATE(1550), + [sym_input_stream_statement] = STATE(1552), + [sym_output_stream_statement] = STATE(1552), + [sym_do_block] = STATE(1550), + [sym_case_statement] = STATE(1550), + [sym_for_statement] = STATE(1550), + [sym_find_statement] = STATE(1550), + [sym_abl_statement] = STATE(1550), + [sym_assign_statement] = STATE(1550), + [sym_catch_statement] = STATE(1550), + [sym_finally_statement] = STATE(1550), + [sym_accumulate_statement] = STATE(1550), + [sym_undo_statement] = STATE(1550), + [sym_error_scope_statement] = STATE(1550), + [sym_temp_table_definition] = STATE(1550), + [sym_on_statement] = STATE(1550), + [sym__statement] = STATE(1553), + [aux_sym_source_code_repeat1] = STATE(286), + [sym_identifier] = ACTIONS(263), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), [anon_sym_LBRACE] = ACTIONS(7), - [aux_sym__block_terminator_token1] = ACTIONS(303), - [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), + [aux_sym__block_terminator_token1] = ACTIONS(321), + [aux_sym_input_expression_token1] = ACTIONS(267), + [aux_sym_primitive_type_token19] = ACTIONS(269), + [aux_sym_variable_definition_token1] = ACTIONS(271), + [aux_sym_variable_definition_token2] = ACTIONS(273), + [aux_sym_buffer_definition_token2] = ACTIONS(275), + [aux_sym_argument_mode_token1] = ACTIONS(277), + [aux_sym_if_statement_token1] = ACTIONS(279), + [aux_sym_repeat_statement_token1] = ACTIONS(281), + [aux_sym__procedure_terminator_token1] = ACTIONS(283), + [aux_sym_procedure_parameter_definition_token1] = ACTIONS(285), + [aux_sym__function_terminator_token1] = ACTIONS(287), + [aux_sym_interface_statement_token1] = ACTIONS(289), + [aux_sym_using_statement_token1] = ACTIONS(291), + [aux_sym_on_error_phrase_token1] = ACTIONS(293), + [aux_sym_on_error_phrase_token3] = ACTIONS(295), + [aux_sym_do_block_token1] = ACTIONS(297), + [aux_sym__case_terminator_token1] = ACTIONS(299), + [aux_sym_find_statement_token1] = ACTIONS(301), + [aux_sym_assign_statement_token1] = ACTIONS(303), + [aux_sym_catch_statement_token1] = ACTIONS(305), + [aux_sym_finally_statement_token1] = ACTIONS(307), + [aux_sym_accumulate_statement_token1] = ACTIONS(309), + [anon_sym_ROUTINE_DASHLEVEL] = ACTIONS(311), + [anon_sym_BLOCK_DASHLEVEL] = ACTIONS(311), }, [148] = { - [sym_body] = STATE(4032), + [sym_body] = STATE(3652), [sym_comment] = STATE(148), - [sym_qualified_name] = STATE(4733), - [sym__block_terminator] = STATE(1294), + [sym_qualified_name] = STATE(4814), + [sym__block_terminator] = STATE(1469), [sym_include] = STATE(148), - [sym_assignment] = STATE(4314), - [sym_variable_definition] = STATE(1535), - [sym_variable_assignment] = STATE(1535), - [sym_buffer_definition] = STATE(1535), - [sym_query_definition] = STATE(1535), - [sym_function_call_statement] = STATE(1535), - [sym_function_call] = STATE(4086), - [sym_if_statement] = STATE(1535), - [sym_label] = STATE(1536), - [sym_repeat_statement] = STATE(1535), - [sym_procedure_statement] = STATE(1535), - [sym_procedure_parameter_definition] = STATE(1535), - [sym_function_statement] = STATE(1535), - [sym_return_statement] = STATE(1535), - [sym_interface_statement] = STATE(1535), - [sym_using_statement] = STATE(1535), - [sym_class_statement] = STATE(1535), - [sym_object_access] = STATE(3567), - [sym_stream_definition] = STATE(1535), - [sym_input_close_statement] = STATE(1535), - [sym_output_close_statement] = STATE(1535), - [sym__stream_statement] = STATE(1535), - [sym_input_stream_statement] = STATE(1537), - [sym_output_stream_statement] = STATE(1537), - [sym_do_block] = STATE(1535), - [sym_case_statement] = STATE(1535), - [sym_for_statement] = STATE(1535), - [sym_find_statement] = STATE(1535), - [sym_abl_statement] = STATE(1535), - [sym_assign_statement] = STATE(1535), - [sym_catch_statement] = STATE(1535), - [sym_finally_statement] = STATE(1535), - [sym_accumulate_statement] = STATE(1535), - [sym_undo_statement] = STATE(1535), - [sym_error_scope_statement] = STATE(1535), - [sym_temp_table_definition] = STATE(1535), - [sym_on_statement] = STATE(1535), - [sym__statement] = STATE(1538), - [aux_sym_source_code_repeat1] = STATE(276), - [sym_identifier] = ACTIONS(227), + [sym_assignment] = STATE(4463), + [sym_variable_definition] = STATE(1550), + [sym_variable_assignment] = STATE(1550), + [sym_buffer_definition] = STATE(1550), + [sym_query_definition] = STATE(1550), + [sym_function_call_statement] = STATE(1550), + [sym_function_call] = STATE(4558), + [sym_if_statement] = STATE(1550), + [sym_label] = STATE(1551), + [sym_repeat_statement] = STATE(1550), + [sym_procedure_statement] = STATE(1550), + [sym_procedure_parameter_definition] = STATE(1550), + [sym_function_statement] = STATE(1550), + [sym_return_statement] = STATE(1550), + [sym_interface_statement] = STATE(1550), + [sym_using_statement] = STATE(1550), + [sym_class_statement] = STATE(1550), + [sym_object_access] = STATE(3661), + [sym_stream_definition] = STATE(1550), + [sym_input_close_statement] = STATE(1550), + [sym_output_close_statement] = STATE(1550), + [sym__stream_statement] = STATE(1550), + [sym_input_stream_statement] = STATE(1552), + [sym_output_stream_statement] = STATE(1552), + [sym_do_block] = STATE(1550), + [sym_case_statement] = STATE(1550), + [sym_for_statement] = STATE(1550), + [sym_find_statement] = STATE(1550), + [sym_abl_statement] = STATE(1550), + [sym_assign_statement] = STATE(1550), + [sym_catch_statement] = STATE(1550), + [sym_finally_statement] = STATE(1550), + [sym_accumulate_statement] = STATE(1550), + [sym_undo_statement] = STATE(1550), + [sym_error_scope_statement] = STATE(1550), + [sym_temp_table_definition] = STATE(1550), + [sym_on_statement] = STATE(1550), + [sym__statement] = STATE(1553), + [aux_sym_source_code_repeat1] = STATE(286), + [sym_identifier] = ACTIONS(263), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), [anon_sym_LBRACE] = ACTIONS(7), - [aux_sym__block_terminator_token1] = ACTIONS(299), - [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), + [aux_sym__block_terminator_token1] = ACTIONS(327), + [aux_sym_input_expression_token1] = ACTIONS(267), + [aux_sym_primitive_type_token19] = ACTIONS(269), + [aux_sym_variable_definition_token1] = ACTIONS(271), + [aux_sym_variable_definition_token2] = ACTIONS(273), + [aux_sym_buffer_definition_token2] = ACTIONS(275), + [aux_sym_argument_mode_token1] = ACTIONS(277), + [aux_sym_if_statement_token1] = ACTIONS(279), + [aux_sym_repeat_statement_token1] = ACTIONS(281), + [aux_sym__procedure_terminator_token1] = ACTIONS(283), + [aux_sym_procedure_parameter_definition_token1] = ACTIONS(285), + [aux_sym__function_terminator_token1] = ACTIONS(287), + [aux_sym_interface_statement_token1] = ACTIONS(289), + [aux_sym_using_statement_token1] = ACTIONS(291), + [aux_sym_on_error_phrase_token1] = ACTIONS(293), + [aux_sym_on_error_phrase_token3] = ACTIONS(295), + [aux_sym_do_block_token1] = ACTIONS(297), + [aux_sym__case_terminator_token1] = ACTIONS(299), + [aux_sym_find_statement_token1] = ACTIONS(301), + [aux_sym_assign_statement_token1] = ACTIONS(303), + [aux_sym_catch_statement_token1] = ACTIONS(305), + [aux_sym_finally_statement_token1] = ACTIONS(307), + [aux_sym_accumulate_statement_token1] = ACTIONS(309), + [anon_sym_ROUTINE_DASHLEVEL] = ACTIONS(311), + [anon_sym_BLOCK_DASHLEVEL] = ACTIONS(311), }, [149] = { - [sym_body] = STATE(3994), + [sym_body] = STATE(4175), [sym_comment] = STATE(149), - [sym_qualified_name] = STATE(4733), - [sym__block_terminator] = STATE(1316), + [sym_qualified_name] = STATE(4814), + [sym__block_terminator] = STATE(1180), [sym_include] = STATE(149), - [sym_assignment] = STATE(4314), - [sym_variable_definition] = STATE(1535), - [sym_variable_assignment] = STATE(1535), - [sym_buffer_definition] = STATE(1535), - [sym_query_definition] = STATE(1535), - [sym_function_call_statement] = STATE(1535), - [sym_function_call] = STATE(4086), - [sym_if_statement] = STATE(1535), - [sym_label] = STATE(1536), - [sym_repeat_statement] = STATE(1535), - [sym_procedure_statement] = STATE(1535), - [sym_procedure_parameter_definition] = STATE(1535), - [sym_function_statement] = STATE(1535), - [sym_return_statement] = STATE(1535), - [sym_interface_statement] = STATE(1535), - [sym_using_statement] = STATE(1535), - [sym_class_statement] = STATE(1535), - [sym_object_access] = STATE(3567), - [sym_stream_definition] = STATE(1535), - [sym_input_close_statement] = STATE(1535), - [sym_output_close_statement] = STATE(1535), - [sym__stream_statement] = STATE(1535), - [sym_input_stream_statement] = STATE(1537), - [sym_output_stream_statement] = STATE(1537), - [sym_do_block] = STATE(1535), - [sym_case_statement] = STATE(1535), - [sym_for_statement] = STATE(1535), - [sym_find_statement] = STATE(1535), - [sym_abl_statement] = STATE(1535), - [sym_assign_statement] = STATE(1535), - [sym_catch_statement] = STATE(1535), - [sym_finally_statement] = STATE(1535), - [sym_accumulate_statement] = STATE(1535), - [sym_undo_statement] = STATE(1535), - [sym_error_scope_statement] = STATE(1535), - [sym_temp_table_definition] = STATE(1535), - [sym_on_statement] = STATE(1535), - [sym__statement] = STATE(1538), - [aux_sym_source_code_repeat1] = STATE(276), - [sym_identifier] = ACTIONS(227), + [sym_assignment] = STATE(4463), + [sym_variable_definition] = STATE(1550), + [sym_variable_assignment] = STATE(1550), + [sym_buffer_definition] = STATE(1550), + [sym_query_definition] = STATE(1550), + [sym_function_call_statement] = STATE(1550), + [sym_function_call] = STATE(4558), + [sym_if_statement] = STATE(1550), + [sym_label] = STATE(1551), + [sym_repeat_statement] = STATE(1550), + [sym_procedure_statement] = STATE(1550), + [sym_procedure_parameter_definition] = STATE(1550), + [sym_function_statement] = STATE(1550), + [sym_return_statement] = STATE(1550), + [sym_interface_statement] = STATE(1550), + [sym_using_statement] = STATE(1550), + [sym_class_statement] = STATE(1550), + [sym_object_access] = STATE(3661), + [sym_stream_definition] = STATE(1550), + [sym_input_close_statement] = STATE(1550), + [sym_output_close_statement] = STATE(1550), + [sym__stream_statement] = STATE(1550), + [sym_input_stream_statement] = STATE(1552), + [sym_output_stream_statement] = STATE(1552), + [sym_do_block] = STATE(1550), + [sym_case_statement] = STATE(1550), + [sym_for_statement] = STATE(1550), + [sym_find_statement] = STATE(1550), + [sym_abl_statement] = STATE(1550), + [sym_assign_statement] = STATE(1550), + [sym_catch_statement] = STATE(1550), + [sym_finally_statement] = STATE(1550), + [sym_accumulate_statement] = STATE(1550), + [sym_undo_statement] = STATE(1550), + [sym_error_scope_statement] = STATE(1550), + [sym_temp_table_definition] = STATE(1550), + [sym_on_statement] = STATE(1550), + [sym__statement] = STATE(1553), + [aux_sym_source_code_repeat1] = STATE(286), + [sym_identifier] = ACTIONS(263), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), [anon_sym_LBRACE] = ACTIONS(7), - [aux_sym__block_terminator_token1] = ACTIONS(311), - [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), + [aux_sym__block_terminator_token1] = ACTIONS(327), + [aux_sym_input_expression_token1] = ACTIONS(267), + [aux_sym_primitive_type_token19] = ACTIONS(269), + [aux_sym_variable_definition_token1] = ACTIONS(271), + [aux_sym_variable_definition_token2] = ACTIONS(273), + [aux_sym_buffer_definition_token2] = ACTIONS(275), + [aux_sym_argument_mode_token1] = ACTIONS(277), + [aux_sym_if_statement_token1] = ACTIONS(279), + [aux_sym_repeat_statement_token1] = ACTIONS(281), + [aux_sym__procedure_terminator_token1] = ACTIONS(283), + [aux_sym_procedure_parameter_definition_token1] = ACTIONS(285), + [aux_sym__function_terminator_token1] = ACTIONS(287), + [aux_sym_interface_statement_token1] = ACTIONS(289), + [aux_sym_using_statement_token1] = ACTIONS(291), + [aux_sym_on_error_phrase_token1] = ACTIONS(293), + [aux_sym_on_error_phrase_token3] = ACTIONS(295), + [aux_sym_do_block_token1] = ACTIONS(297), + [aux_sym__case_terminator_token1] = ACTIONS(299), + [aux_sym_find_statement_token1] = ACTIONS(301), + [aux_sym_assign_statement_token1] = ACTIONS(303), + [aux_sym_catch_statement_token1] = ACTIONS(305), + [aux_sym_finally_statement_token1] = ACTIONS(307), + [aux_sym_accumulate_statement_token1] = ACTIONS(309), + [anon_sym_ROUTINE_DASHLEVEL] = ACTIONS(311), + [anon_sym_BLOCK_DASHLEVEL] = ACTIONS(311), }, [150] = { - [sym_body] = STATE(3931), + [sym_body] = STATE(4165), [sym_comment] = STATE(150), - [sym_qualified_name] = STATE(4733), - [sym__block_terminator] = STATE(884), + [sym_qualified_name] = STATE(4814), + [sym__block_terminator] = STATE(1499), [sym_include] = STATE(150), - [sym_assignment] = STATE(4314), - [sym_variable_definition] = STATE(1535), - [sym_variable_assignment] = STATE(1535), - [sym_buffer_definition] = STATE(1535), - [sym_query_definition] = STATE(1535), - [sym_function_call_statement] = STATE(1535), - [sym_function_call] = STATE(4086), - [sym_if_statement] = STATE(1535), - [sym_label] = STATE(1536), - [sym_repeat_statement] = STATE(1535), - [sym_procedure_statement] = STATE(1535), - [sym_procedure_parameter_definition] = STATE(1535), - [sym_function_statement] = STATE(1535), - [sym_return_statement] = STATE(1535), - [sym_interface_statement] = STATE(1535), - [sym_using_statement] = STATE(1535), - [sym_class_statement] = STATE(1535), - [sym_object_access] = STATE(3567), - [sym_stream_definition] = STATE(1535), - [sym_input_close_statement] = STATE(1535), - [sym_output_close_statement] = STATE(1535), - [sym__stream_statement] = STATE(1535), - [sym_input_stream_statement] = STATE(1537), - [sym_output_stream_statement] = STATE(1537), - [sym_do_block] = STATE(1535), - [sym_case_statement] = STATE(1535), - [sym_for_statement] = STATE(1535), - [sym_find_statement] = STATE(1535), - [sym_abl_statement] = STATE(1535), - [sym_assign_statement] = STATE(1535), - [sym_catch_statement] = STATE(1535), - [sym_finally_statement] = STATE(1535), - [sym_accumulate_statement] = STATE(1535), - [sym_undo_statement] = STATE(1535), - [sym_error_scope_statement] = STATE(1535), - [sym_temp_table_definition] = STATE(1535), - [sym_on_statement] = STATE(1535), - [sym__statement] = STATE(1538), - [aux_sym_source_code_repeat1] = STATE(276), - [sym_identifier] = ACTIONS(227), + [sym_assignment] = STATE(4463), + [sym_variable_definition] = STATE(1550), + [sym_variable_assignment] = STATE(1550), + [sym_buffer_definition] = STATE(1550), + [sym_query_definition] = STATE(1550), + [sym_function_call_statement] = STATE(1550), + [sym_function_call] = STATE(4558), + [sym_if_statement] = STATE(1550), + [sym_label] = STATE(1551), + [sym_repeat_statement] = STATE(1550), + [sym_procedure_statement] = STATE(1550), + [sym_procedure_parameter_definition] = STATE(1550), + [sym_function_statement] = STATE(1550), + [sym_return_statement] = STATE(1550), + [sym_interface_statement] = STATE(1550), + [sym_using_statement] = STATE(1550), + [sym_class_statement] = STATE(1550), + [sym_object_access] = STATE(3661), + [sym_stream_definition] = STATE(1550), + [sym_input_close_statement] = STATE(1550), + [sym_output_close_statement] = STATE(1550), + [sym__stream_statement] = STATE(1550), + [sym_input_stream_statement] = STATE(1552), + [sym_output_stream_statement] = STATE(1552), + [sym_do_block] = STATE(1550), + [sym_case_statement] = STATE(1550), + [sym_for_statement] = STATE(1550), + [sym_find_statement] = STATE(1550), + [sym_abl_statement] = STATE(1550), + [sym_assign_statement] = STATE(1550), + [sym_catch_statement] = STATE(1550), + [sym_finally_statement] = STATE(1550), + [sym_accumulate_statement] = STATE(1550), + [sym_undo_statement] = STATE(1550), + [sym_error_scope_statement] = STATE(1550), + [sym_temp_table_definition] = STATE(1550), + [sym_on_statement] = STATE(1550), + [sym__statement] = STATE(1553), + [aux_sym_source_code_repeat1] = STATE(286), + [sym_identifier] = ACTIONS(263), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), [anon_sym_LBRACE] = ACTIONS(7), - [aux_sym__block_terminator_token1] = ACTIONS(303), - [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), + [aux_sym__block_terminator_token1] = ACTIONS(327), + [aux_sym_input_expression_token1] = ACTIONS(267), + [aux_sym_primitive_type_token19] = ACTIONS(269), + [aux_sym_variable_definition_token1] = ACTIONS(271), + [aux_sym_variable_definition_token2] = ACTIONS(273), + [aux_sym_buffer_definition_token2] = ACTIONS(275), + [aux_sym_argument_mode_token1] = ACTIONS(277), + [aux_sym_if_statement_token1] = ACTIONS(279), + [aux_sym_repeat_statement_token1] = ACTIONS(281), + [aux_sym__procedure_terminator_token1] = ACTIONS(283), + [aux_sym_procedure_parameter_definition_token1] = ACTIONS(285), + [aux_sym__function_terminator_token1] = ACTIONS(287), + [aux_sym_interface_statement_token1] = ACTIONS(289), + [aux_sym_using_statement_token1] = ACTIONS(291), + [aux_sym_on_error_phrase_token1] = ACTIONS(293), + [aux_sym_on_error_phrase_token3] = ACTIONS(295), + [aux_sym_do_block_token1] = ACTIONS(297), + [aux_sym__case_terminator_token1] = ACTIONS(299), + [aux_sym_find_statement_token1] = ACTIONS(301), + [aux_sym_assign_statement_token1] = ACTIONS(303), + [aux_sym_catch_statement_token1] = ACTIONS(305), + [aux_sym_finally_statement_token1] = ACTIONS(307), + [aux_sym_accumulate_statement_token1] = ACTIONS(309), + [anon_sym_ROUTINE_DASHLEVEL] = ACTIONS(311), + [anon_sym_BLOCK_DASHLEVEL] = ACTIONS(311), }, [151] = { - [sym_body] = STATE(3940), + [sym_body] = STATE(4160), [sym_comment] = STATE(151), - [sym_qualified_name] = STATE(4733), - [sym__block_terminator] = STATE(885), + [sym_qualified_name] = STATE(4814), + [sym__block_terminator] = STATE(1187), [sym_include] = STATE(151), - [sym_assignment] = STATE(4314), - [sym_variable_definition] = STATE(1535), - [sym_variable_assignment] = STATE(1535), - [sym_buffer_definition] = STATE(1535), - [sym_query_definition] = STATE(1535), - [sym_function_call_statement] = STATE(1535), - [sym_function_call] = STATE(4086), - [sym_if_statement] = STATE(1535), - [sym_label] = STATE(1536), - [sym_repeat_statement] = STATE(1535), - [sym_procedure_statement] = STATE(1535), - [sym_procedure_parameter_definition] = STATE(1535), - [sym_function_statement] = STATE(1535), - [sym_return_statement] = STATE(1535), - [sym_interface_statement] = STATE(1535), - [sym_using_statement] = STATE(1535), - [sym_class_statement] = STATE(1535), - [sym_object_access] = STATE(3567), - [sym_stream_definition] = STATE(1535), - [sym_input_close_statement] = STATE(1535), - [sym_output_close_statement] = STATE(1535), - [sym__stream_statement] = STATE(1535), - [sym_input_stream_statement] = STATE(1537), - [sym_output_stream_statement] = STATE(1537), - [sym_do_block] = STATE(1535), - [sym_case_statement] = STATE(1535), - [sym_for_statement] = STATE(1535), - [sym_find_statement] = STATE(1535), - [sym_abl_statement] = STATE(1535), - [sym_assign_statement] = STATE(1535), - [sym_catch_statement] = STATE(1535), - [sym_finally_statement] = STATE(1535), - [sym_accumulate_statement] = STATE(1535), - [sym_undo_statement] = STATE(1535), - [sym_error_scope_statement] = STATE(1535), - [sym_temp_table_definition] = STATE(1535), - [sym_on_statement] = STATE(1535), - [sym__statement] = STATE(1538), - [aux_sym_source_code_repeat1] = STATE(276), - [sym_identifier] = ACTIONS(227), + [sym_assignment] = STATE(4463), + [sym_variable_definition] = STATE(1550), + [sym_variable_assignment] = STATE(1550), + [sym_buffer_definition] = STATE(1550), + [sym_query_definition] = STATE(1550), + [sym_function_call_statement] = STATE(1550), + [sym_function_call] = STATE(4558), + [sym_if_statement] = STATE(1550), + [sym_label] = STATE(1551), + [sym_repeat_statement] = STATE(1550), + [sym_procedure_statement] = STATE(1550), + [sym_procedure_parameter_definition] = STATE(1550), + [sym_function_statement] = STATE(1550), + [sym_return_statement] = STATE(1550), + [sym_interface_statement] = STATE(1550), + [sym_using_statement] = STATE(1550), + [sym_class_statement] = STATE(1550), + [sym_object_access] = STATE(3661), + [sym_stream_definition] = STATE(1550), + [sym_input_close_statement] = STATE(1550), + [sym_output_close_statement] = STATE(1550), + [sym__stream_statement] = STATE(1550), + [sym_input_stream_statement] = STATE(1552), + [sym_output_stream_statement] = STATE(1552), + [sym_do_block] = STATE(1550), + [sym_case_statement] = STATE(1550), + [sym_for_statement] = STATE(1550), + [sym_find_statement] = STATE(1550), + [sym_abl_statement] = STATE(1550), + [sym_assign_statement] = STATE(1550), + [sym_catch_statement] = STATE(1550), + [sym_finally_statement] = STATE(1550), + [sym_accumulate_statement] = STATE(1550), + [sym_undo_statement] = STATE(1550), + [sym_error_scope_statement] = STATE(1550), + [sym_temp_table_definition] = STATE(1550), + [sym_on_statement] = STATE(1550), + [sym__statement] = STATE(1553), + [aux_sym_source_code_repeat1] = STATE(286), + [sym_identifier] = ACTIONS(263), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), [anon_sym_LBRACE] = ACTIONS(7), - [aux_sym__block_terminator_token1] = ACTIONS(303), - [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), + [aux_sym__block_terminator_token1] = ACTIONS(327), + [aux_sym_input_expression_token1] = ACTIONS(267), + [aux_sym_primitive_type_token19] = ACTIONS(269), + [aux_sym_variable_definition_token1] = ACTIONS(271), + [aux_sym_variable_definition_token2] = ACTIONS(273), + [aux_sym_buffer_definition_token2] = ACTIONS(275), + [aux_sym_argument_mode_token1] = ACTIONS(277), + [aux_sym_if_statement_token1] = ACTIONS(279), + [aux_sym_repeat_statement_token1] = ACTIONS(281), + [aux_sym__procedure_terminator_token1] = ACTIONS(283), + [aux_sym_procedure_parameter_definition_token1] = ACTIONS(285), + [aux_sym__function_terminator_token1] = ACTIONS(287), + [aux_sym_interface_statement_token1] = ACTIONS(289), + [aux_sym_using_statement_token1] = ACTIONS(291), + [aux_sym_on_error_phrase_token1] = ACTIONS(293), + [aux_sym_on_error_phrase_token3] = ACTIONS(295), + [aux_sym_do_block_token1] = ACTIONS(297), + [aux_sym__case_terminator_token1] = ACTIONS(299), + [aux_sym_find_statement_token1] = ACTIONS(301), + [aux_sym_assign_statement_token1] = ACTIONS(303), + [aux_sym_catch_statement_token1] = ACTIONS(305), + [aux_sym_finally_statement_token1] = ACTIONS(307), + [aux_sym_accumulate_statement_token1] = ACTIONS(309), + [anon_sym_ROUTINE_DASHLEVEL] = ACTIONS(311), + [anon_sym_BLOCK_DASHLEVEL] = ACTIONS(311), }, [152] = { - [sym_body] = STATE(4021), + [sym_body] = STATE(4152), [sym_comment] = STATE(152), - [sym_qualified_name] = STATE(4733), - [sym__block_terminator] = STATE(1305), + [sym_qualified_name] = STATE(4814), + [sym__block_terminator] = STATE(1548), [sym_include] = STATE(152), - [sym_assignment] = STATE(4314), - [sym_variable_definition] = STATE(1535), - [sym_variable_assignment] = STATE(1535), - [sym_buffer_definition] = STATE(1535), - [sym_query_definition] = STATE(1535), - [sym_function_call_statement] = STATE(1535), - [sym_function_call] = STATE(4086), - [sym_if_statement] = STATE(1535), - [sym_label] = STATE(1536), - [sym_repeat_statement] = STATE(1535), - [sym_procedure_statement] = STATE(1535), - [sym_procedure_parameter_definition] = STATE(1535), - [sym_function_statement] = STATE(1535), - [sym_return_statement] = STATE(1535), - [sym_interface_statement] = STATE(1535), - [sym_using_statement] = STATE(1535), - [sym_class_statement] = STATE(1535), - [sym_object_access] = STATE(3567), - [sym_stream_definition] = STATE(1535), - [sym_input_close_statement] = STATE(1535), - [sym_output_close_statement] = STATE(1535), - [sym__stream_statement] = STATE(1535), - [sym_input_stream_statement] = STATE(1537), - [sym_output_stream_statement] = STATE(1537), - [sym_do_block] = STATE(1535), - [sym_case_statement] = STATE(1535), - [sym_for_statement] = STATE(1535), - [sym_find_statement] = STATE(1535), - [sym_abl_statement] = STATE(1535), - [sym_assign_statement] = STATE(1535), - [sym_catch_statement] = STATE(1535), - [sym_finally_statement] = STATE(1535), - [sym_accumulate_statement] = STATE(1535), - [sym_undo_statement] = STATE(1535), - [sym_error_scope_statement] = STATE(1535), - [sym_temp_table_definition] = STATE(1535), - [sym_on_statement] = STATE(1535), - [sym__statement] = STATE(1538), - [aux_sym_source_code_repeat1] = STATE(276), - [sym_identifier] = ACTIONS(227), + [sym_assignment] = STATE(4463), + [sym_variable_definition] = STATE(1550), + [sym_variable_assignment] = STATE(1550), + [sym_buffer_definition] = STATE(1550), + [sym_query_definition] = STATE(1550), + [sym_function_call_statement] = STATE(1550), + [sym_function_call] = STATE(4558), + [sym_if_statement] = STATE(1550), + [sym_label] = STATE(1551), + [sym_repeat_statement] = STATE(1550), + [sym_procedure_statement] = STATE(1550), + [sym_procedure_parameter_definition] = STATE(1550), + [sym_function_statement] = STATE(1550), + [sym_return_statement] = STATE(1550), + [sym_interface_statement] = STATE(1550), + [sym_using_statement] = STATE(1550), + [sym_class_statement] = STATE(1550), + [sym_object_access] = STATE(3661), + [sym_stream_definition] = STATE(1550), + [sym_input_close_statement] = STATE(1550), + [sym_output_close_statement] = STATE(1550), + [sym__stream_statement] = STATE(1550), + [sym_input_stream_statement] = STATE(1552), + [sym_output_stream_statement] = STATE(1552), + [sym_do_block] = STATE(1550), + [sym_case_statement] = STATE(1550), + [sym_for_statement] = STATE(1550), + [sym_find_statement] = STATE(1550), + [sym_abl_statement] = STATE(1550), + [sym_assign_statement] = STATE(1550), + [sym_catch_statement] = STATE(1550), + [sym_finally_statement] = STATE(1550), + [sym_accumulate_statement] = STATE(1550), + [sym_undo_statement] = STATE(1550), + [sym_error_scope_statement] = STATE(1550), + [sym_temp_table_definition] = STATE(1550), + [sym_on_statement] = STATE(1550), + [sym__statement] = STATE(1553), + [aux_sym_source_code_repeat1] = STATE(286), + [sym_identifier] = ACTIONS(263), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), [anon_sym_LBRACE] = ACTIONS(7), - [aux_sym__block_terminator_token1] = ACTIONS(311), - [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), + [aux_sym__block_terminator_token1] = ACTIONS(327), + [aux_sym_input_expression_token1] = ACTIONS(267), + [aux_sym_primitive_type_token19] = ACTIONS(269), + [aux_sym_variable_definition_token1] = ACTIONS(271), + [aux_sym_variable_definition_token2] = ACTIONS(273), + [aux_sym_buffer_definition_token2] = ACTIONS(275), + [aux_sym_argument_mode_token1] = ACTIONS(277), + [aux_sym_if_statement_token1] = ACTIONS(279), + [aux_sym_repeat_statement_token1] = ACTIONS(281), + [aux_sym__procedure_terminator_token1] = ACTIONS(283), + [aux_sym_procedure_parameter_definition_token1] = ACTIONS(285), + [aux_sym__function_terminator_token1] = ACTIONS(287), + [aux_sym_interface_statement_token1] = ACTIONS(289), + [aux_sym_using_statement_token1] = ACTIONS(291), + [aux_sym_on_error_phrase_token1] = ACTIONS(293), + [aux_sym_on_error_phrase_token3] = ACTIONS(295), + [aux_sym_do_block_token1] = ACTIONS(297), + [aux_sym__case_terminator_token1] = ACTIONS(299), + [aux_sym_find_statement_token1] = ACTIONS(301), + [aux_sym_assign_statement_token1] = ACTIONS(303), + [aux_sym_catch_statement_token1] = ACTIONS(305), + [aux_sym_finally_statement_token1] = ACTIONS(307), + [aux_sym_accumulate_statement_token1] = ACTIONS(309), + [anon_sym_ROUTINE_DASHLEVEL] = ACTIONS(311), + [anon_sym_BLOCK_DASHLEVEL] = ACTIONS(311), }, [153] = { - [sym_body] = STATE(3949), + [sym_body] = STATE(4132), [sym_comment] = STATE(153), - [sym_qualified_name] = STATE(4733), - [sym__block_terminator] = STATE(886), + [sym_qualified_name] = STATE(4814), + [sym__block_terminator] = STATE(1451), [sym_include] = STATE(153), - [sym_assignment] = STATE(4314), - [sym_variable_definition] = STATE(1535), - [sym_variable_assignment] = STATE(1535), - [sym_buffer_definition] = STATE(1535), - [sym_query_definition] = STATE(1535), - [sym_function_call_statement] = STATE(1535), - [sym_function_call] = STATE(4086), - [sym_if_statement] = STATE(1535), - [sym_label] = STATE(1536), - [sym_repeat_statement] = STATE(1535), - [sym_procedure_statement] = STATE(1535), - [sym_procedure_parameter_definition] = STATE(1535), - [sym_function_statement] = STATE(1535), - [sym_return_statement] = STATE(1535), - [sym_interface_statement] = STATE(1535), - [sym_using_statement] = STATE(1535), - [sym_class_statement] = STATE(1535), - [sym_object_access] = STATE(3567), - [sym_stream_definition] = STATE(1535), - [sym_input_close_statement] = STATE(1535), - [sym_output_close_statement] = STATE(1535), - [sym__stream_statement] = STATE(1535), - [sym_input_stream_statement] = STATE(1537), - [sym_output_stream_statement] = STATE(1537), - [sym_do_block] = STATE(1535), - [sym_case_statement] = STATE(1535), - [sym_for_statement] = STATE(1535), - [sym_find_statement] = STATE(1535), - [sym_abl_statement] = STATE(1535), - [sym_assign_statement] = STATE(1535), - [sym_catch_statement] = STATE(1535), - [sym_finally_statement] = STATE(1535), - [sym_accumulate_statement] = STATE(1535), - [sym_undo_statement] = STATE(1535), - [sym_error_scope_statement] = STATE(1535), - [sym_temp_table_definition] = STATE(1535), - [sym_on_statement] = STATE(1535), - [sym__statement] = STATE(1538), - [aux_sym_source_code_repeat1] = STATE(276), - [sym_identifier] = ACTIONS(227), + [sym_assignment] = STATE(4463), + [sym_variable_definition] = STATE(1550), + [sym_variable_assignment] = STATE(1550), + [sym_buffer_definition] = STATE(1550), + [sym_query_definition] = STATE(1550), + [sym_function_call_statement] = STATE(1550), + [sym_function_call] = STATE(4558), + [sym_if_statement] = STATE(1550), + [sym_label] = STATE(1551), + [sym_repeat_statement] = STATE(1550), + [sym_procedure_statement] = STATE(1550), + [sym_procedure_parameter_definition] = STATE(1550), + [sym_function_statement] = STATE(1550), + [sym_return_statement] = STATE(1550), + [sym_interface_statement] = STATE(1550), + [sym_using_statement] = STATE(1550), + [sym_class_statement] = STATE(1550), + [sym_object_access] = STATE(3661), + [sym_stream_definition] = STATE(1550), + [sym_input_close_statement] = STATE(1550), + [sym_output_close_statement] = STATE(1550), + [sym__stream_statement] = STATE(1550), + [sym_input_stream_statement] = STATE(1552), + [sym_output_stream_statement] = STATE(1552), + [sym_do_block] = STATE(1550), + [sym_case_statement] = STATE(1550), + [sym_for_statement] = STATE(1550), + [sym_find_statement] = STATE(1550), + [sym_abl_statement] = STATE(1550), + [sym_assign_statement] = STATE(1550), + [sym_catch_statement] = STATE(1550), + [sym_finally_statement] = STATE(1550), + [sym_accumulate_statement] = STATE(1550), + [sym_undo_statement] = STATE(1550), + [sym_error_scope_statement] = STATE(1550), + [sym_temp_table_definition] = STATE(1550), + [sym_on_statement] = STATE(1550), + [sym__statement] = STATE(1553), + [aux_sym_source_code_repeat1] = STATE(286), + [sym_identifier] = ACTIONS(263), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), [anon_sym_LBRACE] = ACTIONS(7), - [aux_sym__block_terminator_token1] = ACTIONS(303), - [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), + [aux_sym__block_terminator_token1] = ACTIONS(327), + [aux_sym_input_expression_token1] = ACTIONS(267), + [aux_sym_primitive_type_token19] = ACTIONS(269), + [aux_sym_variable_definition_token1] = ACTIONS(271), + [aux_sym_variable_definition_token2] = ACTIONS(273), + [aux_sym_buffer_definition_token2] = ACTIONS(275), + [aux_sym_argument_mode_token1] = ACTIONS(277), + [aux_sym_if_statement_token1] = ACTIONS(279), + [aux_sym_repeat_statement_token1] = ACTIONS(281), + [aux_sym__procedure_terminator_token1] = ACTIONS(283), + [aux_sym_procedure_parameter_definition_token1] = ACTIONS(285), + [aux_sym__function_terminator_token1] = ACTIONS(287), + [aux_sym_interface_statement_token1] = ACTIONS(289), + [aux_sym_using_statement_token1] = ACTIONS(291), + [aux_sym_on_error_phrase_token1] = ACTIONS(293), + [aux_sym_on_error_phrase_token3] = ACTIONS(295), + [aux_sym_do_block_token1] = ACTIONS(297), + [aux_sym__case_terminator_token1] = ACTIONS(299), + [aux_sym_find_statement_token1] = ACTIONS(301), + [aux_sym_assign_statement_token1] = ACTIONS(303), + [aux_sym_catch_statement_token1] = ACTIONS(305), + [aux_sym_finally_statement_token1] = ACTIONS(307), + [aux_sym_accumulate_statement_token1] = ACTIONS(309), + [anon_sym_ROUTINE_DASHLEVEL] = ACTIONS(311), + [anon_sym_BLOCK_DASHLEVEL] = ACTIONS(311), }, [154] = { - [sym_body] = STATE(3746), + [sym_body] = STATE(4093), [sym_comment] = STATE(154), - [sym_qualified_name] = STATE(4733), - [sym__block_terminator] = STATE(3413), + [sym_qualified_name] = STATE(4814), + [sym__block_terminator] = STATE(3649), [sym_include] = STATE(154), - [sym_assignment] = STATE(4314), - [sym_variable_definition] = STATE(1535), - [sym_variable_assignment] = STATE(1535), - [sym_buffer_definition] = STATE(1535), - [sym_query_definition] = STATE(1535), - [sym_function_call_statement] = STATE(1535), - [sym_function_call] = STATE(4086), - [sym_if_statement] = STATE(1535), - [sym_label] = STATE(1536), - [sym_repeat_statement] = STATE(1535), - [sym_procedure_statement] = STATE(1535), - [sym_procedure_parameter_definition] = STATE(1535), - [sym_function_statement] = STATE(1535), - [sym_return_statement] = STATE(1535), - [sym_interface_statement] = STATE(1535), - [sym_using_statement] = STATE(1535), - [sym_class_statement] = STATE(1535), - [sym_object_access] = STATE(3567), - [sym_stream_definition] = STATE(1535), - [sym_input_close_statement] = STATE(1535), - [sym_output_close_statement] = STATE(1535), - [sym__stream_statement] = STATE(1535), - [sym_input_stream_statement] = STATE(1537), - [sym_output_stream_statement] = STATE(1537), - [sym_do_block] = STATE(1535), - [sym_case_statement] = STATE(1535), - [sym_for_statement] = STATE(1535), - [sym_find_statement] = STATE(1535), - [sym_abl_statement] = STATE(1535), - [sym_assign_statement] = STATE(1535), - [sym_catch_statement] = STATE(1535), - [sym_finally_statement] = STATE(1535), - [sym_accumulate_statement] = STATE(1535), - [sym_undo_statement] = STATE(1535), - [sym_error_scope_statement] = STATE(1535), - [sym_temp_table_definition] = STATE(1535), - [sym_on_statement] = STATE(1535), - [sym__statement] = STATE(1538), - [aux_sym_source_code_repeat1] = STATE(276), - [sym_identifier] = ACTIONS(227), + [sym_assignment] = STATE(4463), + [sym_variable_definition] = STATE(1550), + [sym_variable_assignment] = STATE(1550), + [sym_buffer_definition] = STATE(1550), + [sym_query_definition] = STATE(1550), + [sym_function_call_statement] = STATE(1550), + [sym_function_call] = STATE(4558), + [sym_if_statement] = STATE(1550), + [sym_label] = STATE(1551), + [sym_repeat_statement] = STATE(1550), + [sym_procedure_statement] = STATE(1550), + [sym_procedure_parameter_definition] = STATE(1550), + [sym_function_statement] = STATE(1550), + [sym_return_statement] = STATE(1550), + [sym_interface_statement] = STATE(1550), + [sym_using_statement] = STATE(1550), + [sym_class_statement] = STATE(1550), + [sym_object_access] = STATE(3661), + [sym_stream_definition] = STATE(1550), + [sym_input_close_statement] = STATE(1550), + [sym_output_close_statement] = STATE(1550), + [sym__stream_statement] = STATE(1550), + [sym_input_stream_statement] = STATE(1552), + [sym_output_stream_statement] = STATE(1552), + [sym_do_block] = STATE(1550), + [sym_case_statement] = STATE(1550), + [sym_for_statement] = STATE(1550), + [sym_find_statement] = STATE(1550), + [sym_abl_statement] = STATE(1550), + [sym_assign_statement] = STATE(1550), + [sym_catch_statement] = STATE(1550), + [sym_finally_statement] = STATE(1550), + [sym_accumulate_statement] = STATE(1550), + [sym_undo_statement] = STATE(1550), + [sym_error_scope_statement] = STATE(1550), + [sym_temp_table_definition] = STATE(1550), + [sym_on_statement] = STATE(1550), + [sym__statement] = STATE(1553), + [aux_sym_source_code_repeat1] = STATE(286), + [sym_identifier] = ACTIONS(263), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), [anon_sym_LBRACE] = ACTIONS(7), - [aux_sym__block_terminator_token1] = ACTIONS(297), - [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), + [aux_sym__block_terminator_token1] = ACTIONS(319), + [aux_sym_input_expression_token1] = ACTIONS(267), + [aux_sym_primitive_type_token19] = ACTIONS(269), + [aux_sym_variable_definition_token1] = ACTIONS(271), + [aux_sym_variable_definition_token2] = ACTIONS(273), + [aux_sym_buffer_definition_token2] = ACTIONS(275), + [aux_sym_argument_mode_token1] = ACTIONS(277), + [aux_sym_if_statement_token1] = ACTIONS(279), + [aux_sym_repeat_statement_token1] = ACTIONS(281), + [aux_sym__procedure_terminator_token1] = ACTIONS(283), + [aux_sym_procedure_parameter_definition_token1] = ACTIONS(285), + [aux_sym__function_terminator_token1] = ACTIONS(287), + [aux_sym_interface_statement_token1] = ACTIONS(289), + [aux_sym_using_statement_token1] = ACTIONS(291), + [aux_sym_on_error_phrase_token1] = ACTIONS(293), + [aux_sym_on_error_phrase_token3] = ACTIONS(295), + [aux_sym_do_block_token1] = ACTIONS(297), + [aux_sym__case_terminator_token1] = ACTIONS(299), + [aux_sym_find_statement_token1] = ACTIONS(301), + [aux_sym_assign_statement_token1] = ACTIONS(303), + [aux_sym_catch_statement_token1] = ACTIONS(305), + [aux_sym_finally_statement_token1] = ACTIONS(307), + [aux_sym_accumulate_statement_token1] = ACTIONS(309), + [anon_sym_ROUTINE_DASHLEVEL] = ACTIONS(311), + [anon_sym_BLOCK_DASHLEVEL] = ACTIONS(311), }, [155] = { - [sym_body] = STATE(3954), + [sym_body] = STATE(4084), [sym_comment] = STATE(155), - [sym_qualified_name] = STATE(4733), - [sym__block_terminator] = STATE(887), + [sym_qualified_name] = STATE(4814), + [sym__block_terminator] = STATE(3613), [sym_include] = STATE(155), - [sym_assignment] = STATE(4314), - [sym_variable_definition] = STATE(1535), - [sym_variable_assignment] = STATE(1535), - [sym_buffer_definition] = STATE(1535), - [sym_query_definition] = STATE(1535), - [sym_function_call_statement] = STATE(1535), - [sym_function_call] = STATE(4086), - [sym_if_statement] = STATE(1535), - [sym_label] = STATE(1536), - [sym_repeat_statement] = STATE(1535), - [sym_procedure_statement] = STATE(1535), - [sym_procedure_parameter_definition] = STATE(1535), - [sym_function_statement] = STATE(1535), - [sym_return_statement] = STATE(1535), - [sym_interface_statement] = STATE(1535), - [sym_using_statement] = STATE(1535), - [sym_class_statement] = STATE(1535), - [sym_object_access] = STATE(3567), - [sym_stream_definition] = STATE(1535), - [sym_input_close_statement] = STATE(1535), - [sym_output_close_statement] = STATE(1535), - [sym__stream_statement] = STATE(1535), - [sym_input_stream_statement] = STATE(1537), - [sym_output_stream_statement] = STATE(1537), - [sym_do_block] = STATE(1535), - [sym_case_statement] = STATE(1535), - [sym_for_statement] = STATE(1535), - [sym_find_statement] = STATE(1535), - [sym_abl_statement] = STATE(1535), - [sym_assign_statement] = STATE(1535), - [sym_catch_statement] = STATE(1535), - [sym_finally_statement] = STATE(1535), - [sym_accumulate_statement] = STATE(1535), - [sym_undo_statement] = STATE(1535), - [sym_error_scope_statement] = STATE(1535), - [sym_temp_table_definition] = STATE(1535), - [sym_on_statement] = STATE(1535), - [sym__statement] = STATE(1538), - [aux_sym_source_code_repeat1] = STATE(276), - [sym_identifier] = ACTIONS(227), + [sym_assignment] = STATE(4463), + [sym_variable_definition] = STATE(1550), + [sym_variable_assignment] = STATE(1550), + [sym_buffer_definition] = STATE(1550), + [sym_query_definition] = STATE(1550), + [sym_function_call_statement] = STATE(1550), + [sym_function_call] = STATE(4558), + [sym_if_statement] = STATE(1550), + [sym_label] = STATE(1551), + [sym_repeat_statement] = STATE(1550), + [sym_procedure_statement] = STATE(1550), + [sym_procedure_parameter_definition] = STATE(1550), + [sym_function_statement] = STATE(1550), + [sym_return_statement] = STATE(1550), + [sym_interface_statement] = STATE(1550), + [sym_using_statement] = STATE(1550), + [sym_class_statement] = STATE(1550), + [sym_object_access] = STATE(3661), + [sym_stream_definition] = STATE(1550), + [sym_input_close_statement] = STATE(1550), + [sym_output_close_statement] = STATE(1550), + [sym__stream_statement] = STATE(1550), + [sym_input_stream_statement] = STATE(1552), + [sym_output_stream_statement] = STATE(1552), + [sym_do_block] = STATE(1550), + [sym_case_statement] = STATE(1550), + [sym_for_statement] = STATE(1550), + [sym_find_statement] = STATE(1550), + [sym_abl_statement] = STATE(1550), + [sym_assign_statement] = STATE(1550), + [sym_catch_statement] = STATE(1550), + [sym_finally_statement] = STATE(1550), + [sym_accumulate_statement] = STATE(1550), + [sym_undo_statement] = STATE(1550), + [sym_error_scope_statement] = STATE(1550), + [sym_temp_table_definition] = STATE(1550), + [sym_on_statement] = STATE(1550), + [sym__statement] = STATE(1553), + [aux_sym_source_code_repeat1] = STATE(286), + [sym_identifier] = ACTIONS(263), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), [anon_sym_LBRACE] = ACTIONS(7), - [aux_sym__block_terminator_token1] = ACTIONS(303), - [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), + [aux_sym__block_terminator_token1] = ACTIONS(319), + [aux_sym_input_expression_token1] = ACTIONS(267), + [aux_sym_primitive_type_token19] = ACTIONS(269), + [aux_sym_variable_definition_token1] = ACTIONS(271), + [aux_sym_variable_definition_token2] = ACTIONS(273), + [aux_sym_buffer_definition_token2] = ACTIONS(275), + [aux_sym_argument_mode_token1] = ACTIONS(277), + [aux_sym_if_statement_token1] = ACTIONS(279), + [aux_sym_repeat_statement_token1] = ACTIONS(281), + [aux_sym__procedure_terminator_token1] = ACTIONS(283), + [aux_sym_procedure_parameter_definition_token1] = ACTIONS(285), + [aux_sym__function_terminator_token1] = ACTIONS(287), + [aux_sym_interface_statement_token1] = ACTIONS(289), + [aux_sym_using_statement_token1] = ACTIONS(291), + [aux_sym_on_error_phrase_token1] = ACTIONS(293), + [aux_sym_on_error_phrase_token3] = ACTIONS(295), + [aux_sym_do_block_token1] = ACTIONS(297), + [aux_sym__case_terminator_token1] = ACTIONS(299), + [aux_sym_find_statement_token1] = ACTIONS(301), + [aux_sym_assign_statement_token1] = ACTIONS(303), + [aux_sym_catch_statement_token1] = ACTIONS(305), + [aux_sym_finally_statement_token1] = ACTIONS(307), + [aux_sym_accumulate_statement_token1] = ACTIONS(309), + [anon_sym_ROUTINE_DASHLEVEL] = ACTIONS(311), + [anon_sym_BLOCK_DASHLEVEL] = ACTIONS(311), }, [156] = { - [sym_body] = STATE(3960), + [sym_body] = STATE(4128), [sym_comment] = STATE(156), - [sym_qualified_name] = STATE(4733), - [sym__block_terminator] = STATE(889), + [sym_qualified_name] = STATE(4814), + [sym__block_terminator] = STATE(1500), [sym_include] = STATE(156), - [sym_assignment] = STATE(4314), - [sym_variable_definition] = STATE(1535), - [sym_variable_assignment] = STATE(1535), - [sym_buffer_definition] = STATE(1535), - [sym_query_definition] = STATE(1535), - [sym_function_call_statement] = STATE(1535), - [sym_function_call] = STATE(4086), - [sym_if_statement] = STATE(1535), - [sym_label] = STATE(1536), - [sym_repeat_statement] = STATE(1535), - [sym_procedure_statement] = STATE(1535), - [sym_procedure_parameter_definition] = STATE(1535), - [sym_function_statement] = STATE(1535), - [sym_return_statement] = STATE(1535), - [sym_interface_statement] = STATE(1535), - [sym_using_statement] = STATE(1535), - [sym_class_statement] = STATE(1535), - [sym_object_access] = STATE(3567), - [sym_stream_definition] = STATE(1535), - [sym_input_close_statement] = STATE(1535), - [sym_output_close_statement] = STATE(1535), - [sym__stream_statement] = STATE(1535), - [sym_input_stream_statement] = STATE(1537), - [sym_output_stream_statement] = STATE(1537), - [sym_do_block] = STATE(1535), - [sym_case_statement] = STATE(1535), - [sym_for_statement] = STATE(1535), - [sym_find_statement] = STATE(1535), - [sym_abl_statement] = STATE(1535), - [sym_assign_statement] = STATE(1535), - [sym_catch_statement] = STATE(1535), - [sym_finally_statement] = STATE(1535), - [sym_accumulate_statement] = STATE(1535), - [sym_undo_statement] = STATE(1535), - [sym_error_scope_statement] = STATE(1535), - [sym_temp_table_definition] = STATE(1535), - [sym_on_statement] = STATE(1535), - [sym__statement] = STATE(1538), - [aux_sym_source_code_repeat1] = STATE(276), - [sym_identifier] = ACTIONS(227), + [sym_assignment] = STATE(4463), + [sym_variable_definition] = STATE(1550), + [sym_variable_assignment] = STATE(1550), + [sym_buffer_definition] = STATE(1550), + [sym_query_definition] = STATE(1550), + [sym_function_call_statement] = STATE(1550), + [sym_function_call] = STATE(4558), + [sym_if_statement] = STATE(1550), + [sym_label] = STATE(1551), + [sym_repeat_statement] = STATE(1550), + [sym_procedure_statement] = STATE(1550), + [sym_procedure_parameter_definition] = STATE(1550), + [sym_function_statement] = STATE(1550), + [sym_return_statement] = STATE(1550), + [sym_interface_statement] = STATE(1550), + [sym_using_statement] = STATE(1550), + [sym_class_statement] = STATE(1550), + [sym_object_access] = STATE(3661), + [sym_stream_definition] = STATE(1550), + [sym_input_close_statement] = STATE(1550), + [sym_output_close_statement] = STATE(1550), + [sym__stream_statement] = STATE(1550), + [sym_input_stream_statement] = STATE(1552), + [sym_output_stream_statement] = STATE(1552), + [sym_do_block] = STATE(1550), + [sym_case_statement] = STATE(1550), + [sym_for_statement] = STATE(1550), + [sym_find_statement] = STATE(1550), + [sym_abl_statement] = STATE(1550), + [sym_assign_statement] = STATE(1550), + [sym_catch_statement] = STATE(1550), + [sym_finally_statement] = STATE(1550), + [sym_accumulate_statement] = STATE(1550), + [sym_undo_statement] = STATE(1550), + [sym_error_scope_statement] = STATE(1550), + [sym_temp_table_definition] = STATE(1550), + [sym_on_statement] = STATE(1550), + [sym__statement] = STATE(1553), + [aux_sym_source_code_repeat1] = STATE(286), + [sym_identifier] = ACTIONS(263), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), [anon_sym_LBRACE] = ACTIONS(7), - [aux_sym__block_terminator_token1] = ACTIONS(303), - [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), + [aux_sym__block_terminator_token1] = ACTIONS(327), + [aux_sym_input_expression_token1] = ACTIONS(267), + [aux_sym_primitive_type_token19] = ACTIONS(269), + [aux_sym_variable_definition_token1] = ACTIONS(271), + [aux_sym_variable_definition_token2] = ACTIONS(273), + [aux_sym_buffer_definition_token2] = ACTIONS(275), + [aux_sym_argument_mode_token1] = ACTIONS(277), + [aux_sym_if_statement_token1] = ACTIONS(279), + [aux_sym_repeat_statement_token1] = ACTIONS(281), + [aux_sym__procedure_terminator_token1] = ACTIONS(283), + [aux_sym_procedure_parameter_definition_token1] = ACTIONS(285), + [aux_sym__function_terminator_token1] = ACTIONS(287), + [aux_sym_interface_statement_token1] = ACTIONS(289), + [aux_sym_using_statement_token1] = ACTIONS(291), + [aux_sym_on_error_phrase_token1] = ACTIONS(293), + [aux_sym_on_error_phrase_token3] = ACTIONS(295), + [aux_sym_do_block_token1] = ACTIONS(297), + [aux_sym__case_terminator_token1] = ACTIONS(299), + [aux_sym_find_statement_token1] = ACTIONS(301), + [aux_sym_assign_statement_token1] = ACTIONS(303), + [aux_sym_catch_statement_token1] = ACTIONS(305), + [aux_sym_finally_statement_token1] = ACTIONS(307), + [aux_sym_accumulate_statement_token1] = ACTIONS(309), + [anon_sym_ROUTINE_DASHLEVEL] = ACTIONS(311), + [anon_sym_BLOCK_DASHLEVEL] = ACTIONS(311), }, [157] = { - [sym_body] = STATE(4065), + [sym_body] = STATE(4124), [sym_comment] = STATE(157), - [sym_qualified_name] = STATE(4733), - [sym__block_terminator] = STATE(1151), + [sym_qualified_name] = STATE(4814), + [sym__block_terminator] = STATE(1495), [sym_include] = STATE(157), - [sym_assignment] = STATE(4314), - [sym_variable_definition] = STATE(1535), - [sym_variable_assignment] = STATE(1535), - [sym_buffer_definition] = STATE(1535), - [sym_query_definition] = STATE(1535), - [sym_function_call_statement] = STATE(1535), - [sym_function_call] = STATE(4086), - [sym_if_statement] = STATE(1535), - [sym_label] = STATE(1536), - [sym_repeat_statement] = STATE(1535), - [sym_procedure_statement] = STATE(1535), - [sym_procedure_parameter_definition] = STATE(1535), - [sym_function_statement] = STATE(1535), - [sym_return_statement] = STATE(1535), - [sym_interface_statement] = STATE(1535), - [sym_using_statement] = STATE(1535), - [sym_class_statement] = STATE(1535), - [sym_object_access] = STATE(3567), - [sym_stream_definition] = STATE(1535), - [sym_input_close_statement] = STATE(1535), - [sym_output_close_statement] = STATE(1535), - [sym__stream_statement] = STATE(1535), - [sym_input_stream_statement] = STATE(1537), - [sym_output_stream_statement] = STATE(1537), - [sym_do_block] = STATE(1535), - [sym_case_statement] = STATE(1535), - [sym_for_statement] = STATE(1535), - [sym_find_statement] = STATE(1535), - [sym_abl_statement] = STATE(1535), - [sym_assign_statement] = STATE(1535), - [sym_catch_statement] = STATE(1535), - [sym_finally_statement] = STATE(1535), - [sym_accumulate_statement] = STATE(1535), - [sym_undo_statement] = STATE(1535), - [sym_error_scope_statement] = STATE(1535), - [sym_temp_table_definition] = STATE(1535), - [sym_on_statement] = STATE(1535), - [sym__statement] = STATE(1538), - [aux_sym_source_code_repeat1] = STATE(276), - [sym_identifier] = ACTIONS(227), + [sym_assignment] = STATE(4463), + [sym_variable_definition] = STATE(1550), + [sym_variable_assignment] = STATE(1550), + [sym_buffer_definition] = STATE(1550), + [sym_query_definition] = STATE(1550), + [sym_function_call_statement] = STATE(1550), + [sym_function_call] = STATE(4558), + [sym_if_statement] = STATE(1550), + [sym_label] = STATE(1551), + [sym_repeat_statement] = STATE(1550), + [sym_procedure_statement] = STATE(1550), + [sym_procedure_parameter_definition] = STATE(1550), + [sym_function_statement] = STATE(1550), + [sym_return_statement] = STATE(1550), + [sym_interface_statement] = STATE(1550), + [sym_using_statement] = STATE(1550), + [sym_class_statement] = STATE(1550), + [sym_object_access] = STATE(3661), + [sym_stream_definition] = STATE(1550), + [sym_input_close_statement] = STATE(1550), + [sym_output_close_statement] = STATE(1550), + [sym__stream_statement] = STATE(1550), + [sym_input_stream_statement] = STATE(1552), + [sym_output_stream_statement] = STATE(1552), + [sym_do_block] = STATE(1550), + [sym_case_statement] = STATE(1550), + [sym_for_statement] = STATE(1550), + [sym_find_statement] = STATE(1550), + [sym_abl_statement] = STATE(1550), + [sym_assign_statement] = STATE(1550), + [sym_catch_statement] = STATE(1550), + [sym_finally_statement] = STATE(1550), + [sym_accumulate_statement] = STATE(1550), + [sym_undo_statement] = STATE(1550), + [sym_error_scope_statement] = STATE(1550), + [sym_temp_table_definition] = STATE(1550), + [sym_on_statement] = STATE(1550), + [sym__statement] = STATE(1553), + [aux_sym_source_code_repeat1] = STATE(286), + [sym_identifier] = ACTIONS(263), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), [anon_sym_LBRACE] = ACTIONS(7), - [aux_sym__block_terminator_token1] = ACTIONS(311), - [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), + [aux_sym__block_terminator_token1] = ACTIONS(327), + [aux_sym_input_expression_token1] = ACTIONS(267), + [aux_sym_primitive_type_token19] = ACTIONS(269), + [aux_sym_variable_definition_token1] = ACTIONS(271), + [aux_sym_variable_definition_token2] = ACTIONS(273), + [aux_sym_buffer_definition_token2] = ACTIONS(275), + [aux_sym_argument_mode_token1] = ACTIONS(277), + [aux_sym_if_statement_token1] = ACTIONS(279), + [aux_sym_repeat_statement_token1] = ACTIONS(281), + [aux_sym__procedure_terminator_token1] = ACTIONS(283), + [aux_sym_procedure_parameter_definition_token1] = ACTIONS(285), + [aux_sym__function_terminator_token1] = ACTIONS(287), + [aux_sym_interface_statement_token1] = ACTIONS(289), + [aux_sym_using_statement_token1] = ACTIONS(291), + [aux_sym_on_error_phrase_token1] = ACTIONS(293), + [aux_sym_on_error_phrase_token3] = ACTIONS(295), + [aux_sym_do_block_token1] = ACTIONS(297), + [aux_sym__case_terminator_token1] = ACTIONS(299), + [aux_sym_find_statement_token1] = ACTIONS(301), + [aux_sym_assign_statement_token1] = ACTIONS(303), + [aux_sym_catch_statement_token1] = ACTIONS(305), + [aux_sym_finally_statement_token1] = ACTIONS(307), + [aux_sym_accumulate_statement_token1] = ACTIONS(309), + [anon_sym_ROUTINE_DASHLEVEL] = ACTIONS(311), + [anon_sym_BLOCK_DASHLEVEL] = ACTIONS(311), }, [158] = { - [sym_body] = STATE(4047), + [sym_body] = STATE(4123), [sym_comment] = STATE(158), - [sym_qualified_name] = STATE(4733), - [sym__block_terminator] = STATE(1255), + [sym_qualified_name] = STATE(4814), + [sym__block_terminator] = STATE(1480), [sym_include] = STATE(158), - [sym_assignment] = STATE(4314), - [sym_variable_definition] = STATE(1535), - [sym_variable_assignment] = STATE(1535), - [sym_buffer_definition] = STATE(1535), - [sym_query_definition] = STATE(1535), - [sym_function_call_statement] = STATE(1535), - [sym_function_call] = STATE(4086), - [sym_if_statement] = STATE(1535), - [sym_label] = STATE(1536), - [sym_repeat_statement] = STATE(1535), - [sym_procedure_statement] = STATE(1535), - [sym_procedure_parameter_definition] = STATE(1535), - [sym_function_statement] = STATE(1535), - [sym_return_statement] = STATE(1535), - [sym_interface_statement] = STATE(1535), - [sym_using_statement] = STATE(1535), - [sym_class_statement] = STATE(1535), - [sym_object_access] = STATE(3567), - [sym_stream_definition] = STATE(1535), - [sym_input_close_statement] = STATE(1535), - [sym_output_close_statement] = STATE(1535), - [sym__stream_statement] = STATE(1535), - [sym_input_stream_statement] = STATE(1537), - [sym_output_stream_statement] = STATE(1537), - [sym_do_block] = STATE(1535), - [sym_case_statement] = STATE(1535), - [sym_for_statement] = STATE(1535), - [sym_find_statement] = STATE(1535), - [sym_abl_statement] = STATE(1535), - [sym_assign_statement] = STATE(1535), - [sym_catch_statement] = STATE(1535), - [sym_finally_statement] = STATE(1535), - [sym_accumulate_statement] = STATE(1535), - [sym_undo_statement] = STATE(1535), - [sym_error_scope_statement] = STATE(1535), - [sym_temp_table_definition] = STATE(1535), - [sym_on_statement] = STATE(1535), - [sym__statement] = STATE(1538), - [aux_sym_source_code_repeat1] = STATE(276), - [sym_identifier] = ACTIONS(227), + [sym_assignment] = STATE(4463), + [sym_variable_definition] = STATE(1550), + [sym_variable_assignment] = STATE(1550), + [sym_buffer_definition] = STATE(1550), + [sym_query_definition] = STATE(1550), + [sym_function_call_statement] = STATE(1550), + [sym_function_call] = STATE(4558), + [sym_if_statement] = STATE(1550), + [sym_label] = STATE(1551), + [sym_repeat_statement] = STATE(1550), + [sym_procedure_statement] = STATE(1550), + [sym_procedure_parameter_definition] = STATE(1550), + [sym_function_statement] = STATE(1550), + [sym_return_statement] = STATE(1550), + [sym_interface_statement] = STATE(1550), + [sym_using_statement] = STATE(1550), + [sym_class_statement] = STATE(1550), + [sym_object_access] = STATE(3661), + [sym_stream_definition] = STATE(1550), + [sym_input_close_statement] = STATE(1550), + [sym_output_close_statement] = STATE(1550), + [sym__stream_statement] = STATE(1550), + [sym_input_stream_statement] = STATE(1552), + [sym_output_stream_statement] = STATE(1552), + [sym_do_block] = STATE(1550), + [sym_case_statement] = STATE(1550), + [sym_for_statement] = STATE(1550), + [sym_find_statement] = STATE(1550), + [sym_abl_statement] = STATE(1550), + [sym_assign_statement] = STATE(1550), + [sym_catch_statement] = STATE(1550), + [sym_finally_statement] = STATE(1550), + [sym_accumulate_statement] = STATE(1550), + [sym_undo_statement] = STATE(1550), + [sym_error_scope_statement] = STATE(1550), + [sym_temp_table_definition] = STATE(1550), + [sym_on_statement] = STATE(1550), + [sym__statement] = STATE(1553), + [aux_sym_source_code_repeat1] = STATE(286), + [sym_identifier] = ACTIONS(263), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), [anon_sym_LBRACE] = ACTIONS(7), - [aux_sym__block_terminator_token1] = ACTIONS(311), - [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), + [aux_sym__block_terminator_token1] = ACTIONS(327), + [aux_sym_input_expression_token1] = ACTIONS(267), + [aux_sym_primitive_type_token19] = ACTIONS(269), + [aux_sym_variable_definition_token1] = ACTIONS(271), + [aux_sym_variable_definition_token2] = ACTIONS(273), + [aux_sym_buffer_definition_token2] = ACTIONS(275), + [aux_sym_argument_mode_token1] = ACTIONS(277), + [aux_sym_if_statement_token1] = ACTIONS(279), + [aux_sym_repeat_statement_token1] = ACTIONS(281), + [aux_sym__procedure_terminator_token1] = ACTIONS(283), + [aux_sym_procedure_parameter_definition_token1] = ACTIONS(285), + [aux_sym__function_terminator_token1] = ACTIONS(287), + [aux_sym_interface_statement_token1] = ACTIONS(289), + [aux_sym_using_statement_token1] = ACTIONS(291), + [aux_sym_on_error_phrase_token1] = ACTIONS(293), + [aux_sym_on_error_phrase_token3] = ACTIONS(295), + [aux_sym_do_block_token1] = ACTIONS(297), + [aux_sym__case_terminator_token1] = ACTIONS(299), + [aux_sym_find_statement_token1] = ACTIONS(301), + [aux_sym_assign_statement_token1] = ACTIONS(303), + [aux_sym_catch_statement_token1] = ACTIONS(305), + [aux_sym_finally_statement_token1] = ACTIONS(307), + [aux_sym_accumulate_statement_token1] = ACTIONS(309), + [anon_sym_ROUTINE_DASHLEVEL] = ACTIONS(311), + [anon_sym_BLOCK_DASHLEVEL] = ACTIONS(311), }, [159] = { - [sym_body] = STATE(3763), + [sym_body] = STATE(4116), [sym_comment] = STATE(159), - [sym_qualified_name] = STATE(4733), - [sym__block_terminator] = STATE(986), + [sym_qualified_name] = STATE(4814), + [sym__block_terminator] = STATE(1423), [sym_include] = STATE(159), - [sym_assignment] = STATE(4314), - [sym_variable_definition] = STATE(1535), - [sym_variable_assignment] = STATE(1535), - [sym_buffer_definition] = STATE(1535), - [sym_query_definition] = STATE(1535), - [sym_function_call_statement] = STATE(1535), - [sym_function_call] = STATE(4086), - [sym_if_statement] = STATE(1535), - [sym_label] = STATE(1536), - [sym_repeat_statement] = STATE(1535), - [sym_procedure_statement] = STATE(1535), - [sym_procedure_parameter_definition] = STATE(1535), - [sym_function_statement] = STATE(1535), - [sym_return_statement] = STATE(1535), - [sym_interface_statement] = STATE(1535), - [sym_using_statement] = STATE(1535), - [sym_class_statement] = STATE(1535), - [sym_object_access] = STATE(3567), - [sym_stream_definition] = STATE(1535), - [sym_input_close_statement] = STATE(1535), - [sym_output_close_statement] = STATE(1535), - [sym__stream_statement] = STATE(1535), - [sym_input_stream_statement] = STATE(1537), - [sym_output_stream_statement] = STATE(1537), - [sym_do_block] = STATE(1535), - [sym_case_statement] = STATE(1535), - [sym_for_statement] = STATE(1535), - [sym_find_statement] = STATE(1535), - [sym_abl_statement] = STATE(1535), - [sym_assign_statement] = STATE(1535), - [sym_catch_statement] = STATE(1535), - [sym_finally_statement] = STATE(1535), - [sym_accumulate_statement] = STATE(1535), - [sym_undo_statement] = STATE(1535), - [sym_error_scope_statement] = STATE(1535), - [sym_temp_table_definition] = STATE(1535), - [sym_on_statement] = STATE(1535), - [sym__statement] = STATE(1538), - [aux_sym_source_code_repeat1] = STATE(276), - [sym_identifier] = ACTIONS(227), + [sym_assignment] = STATE(4463), + [sym_variable_definition] = STATE(1550), + [sym_variable_assignment] = STATE(1550), + [sym_buffer_definition] = STATE(1550), + [sym_query_definition] = STATE(1550), + [sym_function_call_statement] = STATE(1550), + [sym_function_call] = STATE(4558), + [sym_if_statement] = STATE(1550), + [sym_label] = STATE(1551), + [sym_repeat_statement] = STATE(1550), + [sym_procedure_statement] = STATE(1550), + [sym_procedure_parameter_definition] = STATE(1550), + [sym_function_statement] = STATE(1550), + [sym_return_statement] = STATE(1550), + [sym_interface_statement] = STATE(1550), + [sym_using_statement] = STATE(1550), + [sym_class_statement] = STATE(1550), + [sym_object_access] = STATE(3661), + [sym_stream_definition] = STATE(1550), + [sym_input_close_statement] = STATE(1550), + [sym_output_close_statement] = STATE(1550), + [sym__stream_statement] = STATE(1550), + [sym_input_stream_statement] = STATE(1552), + [sym_output_stream_statement] = STATE(1552), + [sym_do_block] = STATE(1550), + [sym_case_statement] = STATE(1550), + [sym_for_statement] = STATE(1550), + [sym_find_statement] = STATE(1550), + [sym_abl_statement] = STATE(1550), + [sym_assign_statement] = STATE(1550), + [sym_catch_statement] = STATE(1550), + [sym_finally_statement] = STATE(1550), + [sym_accumulate_statement] = STATE(1550), + [sym_undo_statement] = STATE(1550), + [sym_error_scope_statement] = STATE(1550), + [sym_temp_table_definition] = STATE(1550), + [sym_on_statement] = STATE(1550), + [sym__statement] = STATE(1553), + [aux_sym_source_code_repeat1] = STATE(286), + [sym_identifier] = ACTIONS(263), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), [anon_sym_LBRACE] = ACTIONS(7), - [aux_sym__block_terminator_token1] = ACTIONS(301), - [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), + [aux_sym__block_terminator_token1] = ACTIONS(327), + [aux_sym_input_expression_token1] = ACTIONS(267), + [aux_sym_primitive_type_token19] = ACTIONS(269), + [aux_sym_variable_definition_token1] = ACTIONS(271), + [aux_sym_variable_definition_token2] = ACTIONS(273), + [aux_sym_buffer_definition_token2] = ACTIONS(275), + [aux_sym_argument_mode_token1] = ACTIONS(277), + [aux_sym_if_statement_token1] = ACTIONS(279), + [aux_sym_repeat_statement_token1] = ACTIONS(281), + [aux_sym__procedure_terminator_token1] = ACTIONS(283), + [aux_sym_procedure_parameter_definition_token1] = ACTIONS(285), + [aux_sym__function_terminator_token1] = ACTIONS(287), + [aux_sym_interface_statement_token1] = ACTIONS(289), + [aux_sym_using_statement_token1] = ACTIONS(291), + [aux_sym_on_error_phrase_token1] = ACTIONS(293), + [aux_sym_on_error_phrase_token3] = ACTIONS(295), + [aux_sym_do_block_token1] = ACTIONS(297), + [aux_sym__case_terminator_token1] = ACTIONS(299), + [aux_sym_find_statement_token1] = ACTIONS(301), + [aux_sym_assign_statement_token1] = ACTIONS(303), + [aux_sym_catch_statement_token1] = ACTIONS(305), + [aux_sym_finally_statement_token1] = ACTIONS(307), + [aux_sym_accumulate_statement_token1] = ACTIONS(309), + [anon_sym_ROUTINE_DASHLEVEL] = ACTIONS(311), + [anon_sym_BLOCK_DASHLEVEL] = ACTIONS(311), }, [160] = { - [sym_body] = STATE(3775), + [sym_body] = STATE(4020), [sym_comment] = STATE(160), - [sym_qualified_name] = STATE(4733), - [sym__block_terminator] = STATE(976), + [sym_qualified_name] = STATE(4814), + [sym__block_terminator] = STATE(3623), [sym_include] = STATE(160), - [sym_assignment] = STATE(4314), - [sym_variable_definition] = STATE(1535), - [sym_variable_assignment] = STATE(1535), - [sym_buffer_definition] = STATE(1535), - [sym_query_definition] = STATE(1535), - [sym_function_call_statement] = STATE(1535), - [sym_function_call] = STATE(4086), - [sym_if_statement] = STATE(1535), - [sym_label] = STATE(1536), - [sym_repeat_statement] = STATE(1535), - [sym_procedure_statement] = STATE(1535), - [sym_procedure_parameter_definition] = STATE(1535), - [sym_function_statement] = STATE(1535), - [sym_return_statement] = STATE(1535), - [sym_interface_statement] = STATE(1535), - [sym_using_statement] = STATE(1535), - [sym_class_statement] = STATE(1535), - [sym_object_access] = STATE(3567), - [sym_stream_definition] = STATE(1535), - [sym_input_close_statement] = STATE(1535), - [sym_output_close_statement] = STATE(1535), - [sym__stream_statement] = STATE(1535), - [sym_input_stream_statement] = STATE(1537), - [sym_output_stream_statement] = STATE(1537), - [sym_do_block] = STATE(1535), - [sym_case_statement] = STATE(1535), - [sym_for_statement] = STATE(1535), - [sym_find_statement] = STATE(1535), - [sym_abl_statement] = STATE(1535), - [sym_assign_statement] = STATE(1535), - [sym_catch_statement] = STATE(1535), - [sym_finally_statement] = STATE(1535), - [sym_accumulate_statement] = STATE(1535), - [sym_undo_statement] = STATE(1535), - [sym_error_scope_statement] = STATE(1535), - [sym_temp_table_definition] = STATE(1535), - [sym_on_statement] = STATE(1535), - [sym__statement] = STATE(1538), - [aux_sym_source_code_repeat1] = STATE(276), - [sym_identifier] = ACTIONS(227), + [sym_assignment] = STATE(4463), + [sym_variable_definition] = STATE(1550), + [sym_variable_assignment] = STATE(1550), + [sym_buffer_definition] = STATE(1550), + [sym_query_definition] = STATE(1550), + [sym_function_call_statement] = STATE(1550), + [sym_function_call] = STATE(4558), + [sym_if_statement] = STATE(1550), + [sym_label] = STATE(1551), + [sym_repeat_statement] = STATE(1550), + [sym_procedure_statement] = STATE(1550), + [sym_procedure_parameter_definition] = STATE(1550), + [sym_function_statement] = STATE(1550), + [sym_return_statement] = STATE(1550), + [sym_interface_statement] = STATE(1550), + [sym_using_statement] = STATE(1550), + [sym_class_statement] = STATE(1550), + [sym_object_access] = STATE(3661), + [sym_stream_definition] = STATE(1550), + [sym_input_close_statement] = STATE(1550), + [sym_output_close_statement] = STATE(1550), + [sym__stream_statement] = STATE(1550), + [sym_input_stream_statement] = STATE(1552), + [sym_output_stream_statement] = STATE(1552), + [sym_do_block] = STATE(1550), + [sym_case_statement] = STATE(1550), + [sym_for_statement] = STATE(1550), + [sym_find_statement] = STATE(1550), + [sym_abl_statement] = STATE(1550), + [sym_assign_statement] = STATE(1550), + [sym_catch_statement] = STATE(1550), + [sym_finally_statement] = STATE(1550), + [sym_accumulate_statement] = STATE(1550), + [sym_undo_statement] = STATE(1550), + [sym_error_scope_statement] = STATE(1550), + [sym_temp_table_definition] = STATE(1550), + [sym_on_statement] = STATE(1550), + [sym__statement] = STATE(1553), + [aux_sym_source_code_repeat1] = STATE(286), + [sym_identifier] = ACTIONS(263), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), [anon_sym_LBRACE] = ACTIONS(7), - [aux_sym__block_terminator_token1] = ACTIONS(301), - [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), + [aux_sym__block_terminator_token1] = ACTIONS(319), + [aux_sym_input_expression_token1] = ACTIONS(267), + [aux_sym_primitive_type_token19] = ACTIONS(269), + [aux_sym_variable_definition_token1] = ACTIONS(271), + [aux_sym_variable_definition_token2] = ACTIONS(273), + [aux_sym_buffer_definition_token2] = ACTIONS(275), + [aux_sym_argument_mode_token1] = ACTIONS(277), + [aux_sym_if_statement_token1] = ACTIONS(279), + [aux_sym_repeat_statement_token1] = ACTIONS(281), + [aux_sym__procedure_terminator_token1] = ACTIONS(283), + [aux_sym_procedure_parameter_definition_token1] = ACTIONS(285), + [aux_sym__function_terminator_token1] = ACTIONS(287), + [aux_sym_interface_statement_token1] = ACTIONS(289), + [aux_sym_using_statement_token1] = ACTIONS(291), + [aux_sym_on_error_phrase_token1] = ACTIONS(293), + [aux_sym_on_error_phrase_token3] = ACTIONS(295), + [aux_sym_do_block_token1] = ACTIONS(297), + [aux_sym__case_terminator_token1] = ACTIONS(299), + [aux_sym_find_statement_token1] = ACTIONS(301), + [aux_sym_assign_statement_token1] = ACTIONS(303), + [aux_sym_catch_statement_token1] = ACTIONS(305), + [aux_sym_finally_statement_token1] = ACTIONS(307), + [aux_sym_accumulate_statement_token1] = ACTIONS(309), + [anon_sym_ROUTINE_DASHLEVEL] = ACTIONS(311), + [anon_sym_BLOCK_DASHLEVEL] = ACTIONS(311), }, [161] = { - [sym_body] = STATE(3904), + [sym_body] = STATE(4000), [sym_comment] = STATE(161), - [sym_qualified_name] = STATE(4733), - [sym__block_terminator] = STATE(1025), + [sym_qualified_name] = STATE(4814), + [sym__block_terminator] = STATE(3650), [sym_include] = STATE(161), - [sym_assignment] = STATE(4314), - [sym_variable_definition] = STATE(1535), - [sym_variable_assignment] = STATE(1535), - [sym_buffer_definition] = STATE(1535), - [sym_query_definition] = STATE(1535), - [sym_function_call_statement] = STATE(1535), - [sym_function_call] = STATE(4086), - [sym_if_statement] = STATE(1535), - [sym_label] = STATE(1536), - [sym_repeat_statement] = STATE(1535), - [sym_procedure_statement] = STATE(1535), - [sym_procedure_parameter_definition] = STATE(1535), - [sym_function_statement] = STATE(1535), - [sym_return_statement] = STATE(1535), - [sym_interface_statement] = STATE(1535), - [sym_using_statement] = STATE(1535), - [sym_class_statement] = STATE(1535), - [sym_object_access] = STATE(3567), - [sym_stream_definition] = STATE(1535), - [sym_input_close_statement] = STATE(1535), - [sym_output_close_statement] = STATE(1535), - [sym__stream_statement] = STATE(1535), - [sym_input_stream_statement] = STATE(1537), - [sym_output_stream_statement] = STATE(1537), - [sym_do_block] = STATE(1535), - [sym_case_statement] = STATE(1535), - [sym_for_statement] = STATE(1535), - [sym_find_statement] = STATE(1535), - [sym_abl_statement] = STATE(1535), - [sym_assign_statement] = STATE(1535), - [sym_catch_statement] = STATE(1535), - [sym_finally_statement] = STATE(1535), - [sym_accumulate_statement] = STATE(1535), - [sym_undo_statement] = STATE(1535), - [sym_error_scope_statement] = STATE(1535), - [sym_temp_table_definition] = STATE(1535), - [sym_on_statement] = STATE(1535), - [sym__statement] = STATE(1538), - [aux_sym_source_code_repeat1] = STATE(276), - [sym_identifier] = ACTIONS(227), + [sym_assignment] = STATE(4463), + [sym_variable_definition] = STATE(1550), + [sym_variable_assignment] = STATE(1550), + [sym_buffer_definition] = STATE(1550), + [sym_query_definition] = STATE(1550), + [sym_function_call_statement] = STATE(1550), + [sym_function_call] = STATE(4558), + [sym_if_statement] = STATE(1550), + [sym_label] = STATE(1551), + [sym_repeat_statement] = STATE(1550), + [sym_procedure_statement] = STATE(1550), + [sym_procedure_parameter_definition] = STATE(1550), + [sym_function_statement] = STATE(1550), + [sym_return_statement] = STATE(1550), + [sym_interface_statement] = STATE(1550), + [sym_using_statement] = STATE(1550), + [sym_class_statement] = STATE(1550), + [sym_object_access] = STATE(3661), + [sym_stream_definition] = STATE(1550), + [sym_input_close_statement] = STATE(1550), + [sym_output_close_statement] = STATE(1550), + [sym__stream_statement] = STATE(1550), + [sym_input_stream_statement] = STATE(1552), + [sym_output_stream_statement] = STATE(1552), + [sym_do_block] = STATE(1550), + [sym_case_statement] = STATE(1550), + [sym_for_statement] = STATE(1550), + [sym_find_statement] = STATE(1550), + [sym_abl_statement] = STATE(1550), + [sym_assign_statement] = STATE(1550), + [sym_catch_statement] = STATE(1550), + [sym_finally_statement] = STATE(1550), + [sym_accumulate_statement] = STATE(1550), + [sym_undo_statement] = STATE(1550), + [sym_error_scope_statement] = STATE(1550), + [sym_temp_table_definition] = STATE(1550), + [sym_on_statement] = STATE(1550), + [sym__statement] = STATE(1553), + [aux_sym_source_code_repeat1] = STATE(286), + [sym_identifier] = ACTIONS(263), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), [anon_sym_LBRACE] = ACTIONS(7), - [aux_sym__block_terminator_token1] = ACTIONS(303), - [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), + [aux_sym__block_terminator_token1] = ACTIONS(319), + [aux_sym_input_expression_token1] = ACTIONS(267), + [aux_sym_primitive_type_token19] = ACTIONS(269), + [aux_sym_variable_definition_token1] = ACTIONS(271), + [aux_sym_variable_definition_token2] = ACTIONS(273), + [aux_sym_buffer_definition_token2] = ACTIONS(275), + [aux_sym_argument_mode_token1] = ACTIONS(277), + [aux_sym_if_statement_token1] = ACTIONS(279), + [aux_sym_repeat_statement_token1] = ACTIONS(281), + [aux_sym__procedure_terminator_token1] = ACTIONS(283), + [aux_sym_procedure_parameter_definition_token1] = ACTIONS(285), + [aux_sym__function_terminator_token1] = ACTIONS(287), + [aux_sym_interface_statement_token1] = ACTIONS(289), + [aux_sym_using_statement_token1] = ACTIONS(291), + [aux_sym_on_error_phrase_token1] = ACTIONS(293), + [aux_sym_on_error_phrase_token3] = ACTIONS(295), + [aux_sym_do_block_token1] = ACTIONS(297), + [aux_sym__case_terminator_token1] = ACTIONS(299), + [aux_sym_find_statement_token1] = ACTIONS(301), + [aux_sym_assign_statement_token1] = ACTIONS(303), + [aux_sym_catch_statement_token1] = ACTIONS(305), + [aux_sym_finally_statement_token1] = ACTIONS(307), + [aux_sym_accumulate_statement_token1] = ACTIONS(309), + [anon_sym_ROUTINE_DASHLEVEL] = ACTIONS(311), + [anon_sym_BLOCK_DASHLEVEL] = ACTIONS(311), }, [162] = { - [sym_body] = STATE(3971), + [sym_body] = STATE(4111), [sym_comment] = STATE(162), - [sym_qualified_name] = STATE(4733), - [sym__block_terminator] = STATE(895), + [sym_qualified_name] = STATE(4814), + [sym__block_terminator] = STATE(1405), [sym_include] = STATE(162), - [sym_assignment] = STATE(4314), - [sym_variable_definition] = STATE(1535), - [sym_variable_assignment] = STATE(1535), - [sym_buffer_definition] = STATE(1535), - [sym_query_definition] = STATE(1535), - [sym_function_call_statement] = STATE(1535), - [sym_function_call] = STATE(4086), - [sym_if_statement] = STATE(1535), - [sym_label] = STATE(1536), - [sym_repeat_statement] = STATE(1535), - [sym_procedure_statement] = STATE(1535), - [sym_procedure_parameter_definition] = STATE(1535), - [sym_function_statement] = STATE(1535), - [sym_return_statement] = STATE(1535), - [sym_interface_statement] = STATE(1535), - [sym_using_statement] = STATE(1535), - [sym_class_statement] = STATE(1535), - [sym_object_access] = STATE(3567), - [sym_stream_definition] = STATE(1535), - [sym_input_close_statement] = STATE(1535), - [sym_output_close_statement] = STATE(1535), - [sym__stream_statement] = STATE(1535), - [sym_input_stream_statement] = STATE(1537), - [sym_output_stream_statement] = STATE(1537), - [sym_do_block] = STATE(1535), - [sym_case_statement] = STATE(1535), - [sym_for_statement] = STATE(1535), - [sym_find_statement] = STATE(1535), - [sym_abl_statement] = STATE(1535), - [sym_assign_statement] = STATE(1535), - [sym_catch_statement] = STATE(1535), - [sym_finally_statement] = STATE(1535), - [sym_accumulate_statement] = STATE(1535), - [sym_undo_statement] = STATE(1535), - [sym_error_scope_statement] = STATE(1535), - [sym_temp_table_definition] = STATE(1535), - [sym_on_statement] = STATE(1535), - [sym__statement] = STATE(1538), - [aux_sym_source_code_repeat1] = STATE(276), - [sym_identifier] = ACTIONS(227), + [sym_assignment] = STATE(4463), + [sym_variable_definition] = STATE(1550), + [sym_variable_assignment] = STATE(1550), + [sym_buffer_definition] = STATE(1550), + [sym_query_definition] = STATE(1550), + [sym_function_call_statement] = STATE(1550), + [sym_function_call] = STATE(4558), + [sym_if_statement] = STATE(1550), + [sym_label] = STATE(1551), + [sym_repeat_statement] = STATE(1550), + [sym_procedure_statement] = STATE(1550), + [sym_procedure_parameter_definition] = STATE(1550), + [sym_function_statement] = STATE(1550), + [sym_return_statement] = STATE(1550), + [sym_interface_statement] = STATE(1550), + [sym_using_statement] = STATE(1550), + [sym_class_statement] = STATE(1550), + [sym_object_access] = STATE(3661), + [sym_stream_definition] = STATE(1550), + [sym_input_close_statement] = STATE(1550), + [sym_output_close_statement] = STATE(1550), + [sym__stream_statement] = STATE(1550), + [sym_input_stream_statement] = STATE(1552), + [sym_output_stream_statement] = STATE(1552), + [sym_do_block] = STATE(1550), + [sym_case_statement] = STATE(1550), + [sym_for_statement] = STATE(1550), + [sym_find_statement] = STATE(1550), + [sym_abl_statement] = STATE(1550), + [sym_assign_statement] = STATE(1550), + [sym_catch_statement] = STATE(1550), + [sym_finally_statement] = STATE(1550), + [sym_accumulate_statement] = STATE(1550), + [sym_undo_statement] = STATE(1550), + [sym_error_scope_statement] = STATE(1550), + [sym_temp_table_definition] = STATE(1550), + [sym_on_statement] = STATE(1550), + [sym__statement] = STATE(1553), + [aux_sym_source_code_repeat1] = STATE(286), + [sym_identifier] = ACTIONS(263), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), [anon_sym_LBRACE] = ACTIONS(7), - [aux_sym__block_terminator_token1] = ACTIONS(303), - [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), + [aux_sym__block_terminator_token1] = ACTIONS(327), + [aux_sym_input_expression_token1] = ACTIONS(267), + [aux_sym_primitive_type_token19] = ACTIONS(269), + [aux_sym_variable_definition_token1] = ACTIONS(271), + [aux_sym_variable_definition_token2] = ACTIONS(273), + [aux_sym_buffer_definition_token2] = ACTIONS(275), + [aux_sym_argument_mode_token1] = ACTIONS(277), + [aux_sym_if_statement_token1] = ACTIONS(279), + [aux_sym_repeat_statement_token1] = ACTIONS(281), + [aux_sym__procedure_terminator_token1] = ACTIONS(283), + [aux_sym_procedure_parameter_definition_token1] = ACTIONS(285), + [aux_sym__function_terminator_token1] = ACTIONS(287), + [aux_sym_interface_statement_token1] = ACTIONS(289), + [aux_sym_using_statement_token1] = ACTIONS(291), + [aux_sym_on_error_phrase_token1] = ACTIONS(293), + [aux_sym_on_error_phrase_token3] = ACTIONS(295), + [aux_sym_do_block_token1] = ACTIONS(297), + [aux_sym__case_terminator_token1] = ACTIONS(299), + [aux_sym_find_statement_token1] = ACTIONS(301), + [aux_sym_assign_statement_token1] = ACTIONS(303), + [aux_sym_catch_statement_token1] = ACTIONS(305), + [aux_sym_finally_statement_token1] = ACTIONS(307), + [aux_sym_accumulate_statement_token1] = ACTIONS(309), + [anon_sym_ROUTINE_DASHLEVEL] = ACTIONS(311), + [anon_sym_BLOCK_DASHLEVEL] = ACTIONS(311), }, [163] = { - [sym_body] = STATE(3977), + [sym_body] = STATE(4110), [sym_comment] = STATE(163), - [sym_qualified_name] = STATE(4733), - [sym__block_terminator] = STATE(899), + [sym_qualified_name] = STATE(4814), + [sym__block_terminator] = STATE(1404), [sym_include] = STATE(163), - [sym_assignment] = STATE(4314), - [sym_variable_definition] = STATE(1535), - [sym_variable_assignment] = STATE(1535), - [sym_buffer_definition] = STATE(1535), - [sym_query_definition] = STATE(1535), - [sym_function_call_statement] = STATE(1535), - [sym_function_call] = STATE(4086), - [sym_if_statement] = STATE(1535), - [sym_label] = STATE(1536), - [sym_repeat_statement] = STATE(1535), - [sym_procedure_statement] = STATE(1535), - [sym_procedure_parameter_definition] = STATE(1535), - [sym_function_statement] = STATE(1535), - [sym_return_statement] = STATE(1535), - [sym_interface_statement] = STATE(1535), - [sym_using_statement] = STATE(1535), - [sym_class_statement] = STATE(1535), - [sym_object_access] = STATE(3567), - [sym_stream_definition] = STATE(1535), - [sym_input_close_statement] = STATE(1535), - [sym_output_close_statement] = STATE(1535), - [sym__stream_statement] = STATE(1535), - [sym_input_stream_statement] = STATE(1537), - [sym_output_stream_statement] = STATE(1537), - [sym_do_block] = STATE(1535), - [sym_case_statement] = STATE(1535), - [sym_for_statement] = STATE(1535), - [sym_find_statement] = STATE(1535), - [sym_abl_statement] = STATE(1535), - [sym_assign_statement] = STATE(1535), - [sym_catch_statement] = STATE(1535), - [sym_finally_statement] = STATE(1535), - [sym_accumulate_statement] = STATE(1535), - [sym_undo_statement] = STATE(1535), - [sym_error_scope_statement] = STATE(1535), - [sym_temp_table_definition] = STATE(1535), - [sym_on_statement] = STATE(1535), - [sym__statement] = STATE(1538), - [aux_sym_source_code_repeat1] = STATE(276), - [sym_identifier] = ACTIONS(227), + [sym_assignment] = STATE(4463), + [sym_variable_definition] = STATE(1550), + [sym_variable_assignment] = STATE(1550), + [sym_buffer_definition] = STATE(1550), + [sym_query_definition] = STATE(1550), + [sym_function_call_statement] = STATE(1550), + [sym_function_call] = STATE(4558), + [sym_if_statement] = STATE(1550), + [sym_label] = STATE(1551), + [sym_repeat_statement] = STATE(1550), + [sym_procedure_statement] = STATE(1550), + [sym_procedure_parameter_definition] = STATE(1550), + [sym_function_statement] = STATE(1550), + [sym_return_statement] = STATE(1550), + [sym_interface_statement] = STATE(1550), + [sym_using_statement] = STATE(1550), + [sym_class_statement] = STATE(1550), + [sym_object_access] = STATE(3661), + [sym_stream_definition] = STATE(1550), + [sym_input_close_statement] = STATE(1550), + [sym_output_close_statement] = STATE(1550), + [sym__stream_statement] = STATE(1550), + [sym_input_stream_statement] = STATE(1552), + [sym_output_stream_statement] = STATE(1552), + [sym_do_block] = STATE(1550), + [sym_case_statement] = STATE(1550), + [sym_for_statement] = STATE(1550), + [sym_find_statement] = STATE(1550), + [sym_abl_statement] = STATE(1550), + [sym_assign_statement] = STATE(1550), + [sym_catch_statement] = STATE(1550), + [sym_finally_statement] = STATE(1550), + [sym_accumulate_statement] = STATE(1550), + [sym_undo_statement] = STATE(1550), + [sym_error_scope_statement] = STATE(1550), + [sym_temp_table_definition] = STATE(1550), + [sym_on_statement] = STATE(1550), + [sym__statement] = STATE(1553), + [aux_sym_source_code_repeat1] = STATE(286), + [sym_identifier] = ACTIONS(263), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), [anon_sym_LBRACE] = ACTIONS(7), - [aux_sym__block_terminator_token1] = ACTIONS(303), - [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), + [aux_sym__block_terminator_token1] = ACTIONS(327), + [aux_sym_input_expression_token1] = ACTIONS(267), + [aux_sym_primitive_type_token19] = ACTIONS(269), + [aux_sym_variable_definition_token1] = ACTIONS(271), + [aux_sym_variable_definition_token2] = ACTIONS(273), + [aux_sym_buffer_definition_token2] = ACTIONS(275), + [aux_sym_argument_mode_token1] = ACTIONS(277), + [aux_sym_if_statement_token1] = ACTIONS(279), + [aux_sym_repeat_statement_token1] = ACTIONS(281), + [aux_sym__procedure_terminator_token1] = ACTIONS(283), + [aux_sym_procedure_parameter_definition_token1] = ACTIONS(285), + [aux_sym__function_terminator_token1] = ACTIONS(287), + [aux_sym_interface_statement_token1] = ACTIONS(289), + [aux_sym_using_statement_token1] = ACTIONS(291), + [aux_sym_on_error_phrase_token1] = ACTIONS(293), + [aux_sym_on_error_phrase_token3] = ACTIONS(295), + [aux_sym_do_block_token1] = ACTIONS(297), + [aux_sym__case_terminator_token1] = ACTIONS(299), + [aux_sym_find_statement_token1] = ACTIONS(301), + [aux_sym_assign_statement_token1] = ACTIONS(303), + [aux_sym_catch_statement_token1] = ACTIONS(305), + [aux_sym_finally_statement_token1] = ACTIONS(307), + [aux_sym_accumulate_statement_token1] = ACTIONS(309), + [anon_sym_ROUTINE_DASHLEVEL] = ACTIONS(311), + [anon_sym_BLOCK_DASHLEVEL] = ACTIONS(311), }, [164] = { - [sym_body] = STATE(4049), + [sym_body] = STATE(4106), [sym_comment] = STATE(164), - [sym_qualified_name] = STATE(4733), - [sym__block_terminator] = STATE(1220), + [sym_qualified_name] = STATE(4814), + [sym__block_terminator] = STATE(1366), [sym_include] = STATE(164), - [sym_assignment] = STATE(4314), - [sym_variable_definition] = STATE(1535), - [sym_variable_assignment] = STATE(1535), - [sym_buffer_definition] = STATE(1535), - [sym_query_definition] = STATE(1535), - [sym_function_call_statement] = STATE(1535), - [sym_function_call] = STATE(4086), - [sym_if_statement] = STATE(1535), - [sym_label] = STATE(1536), - [sym_repeat_statement] = STATE(1535), - [sym_procedure_statement] = STATE(1535), - [sym_procedure_parameter_definition] = STATE(1535), - [sym_function_statement] = STATE(1535), - [sym_return_statement] = STATE(1535), - [sym_interface_statement] = STATE(1535), - [sym_using_statement] = STATE(1535), - [sym_class_statement] = STATE(1535), - [sym_object_access] = STATE(3567), - [sym_stream_definition] = STATE(1535), - [sym_input_close_statement] = STATE(1535), - [sym_output_close_statement] = STATE(1535), - [sym__stream_statement] = STATE(1535), - [sym_input_stream_statement] = STATE(1537), - [sym_output_stream_statement] = STATE(1537), - [sym_do_block] = STATE(1535), - [sym_case_statement] = STATE(1535), - [sym_for_statement] = STATE(1535), - [sym_find_statement] = STATE(1535), - [sym_abl_statement] = STATE(1535), - [sym_assign_statement] = STATE(1535), - [sym_catch_statement] = STATE(1535), - [sym_finally_statement] = STATE(1535), - [sym_accumulate_statement] = STATE(1535), - [sym_undo_statement] = STATE(1535), - [sym_error_scope_statement] = STATE(1535), - [sym_temp_table_definition] = STATE(1535), - [sym_on_statement] = STATE(1535), - [sym__statement] = STATE(1538), - [aux_sym_source_code_repeat1] = STATE(276), - [sym_identifier] = ACTIONS(227), + [sym_assignment] = STATE(4463), + [sym_variable_definition] = STATE(1550), + [sym_variable_assignment] = STATE(1550), + [sym_buffer_definition] = STATE(1550), + [sym_query_definition] = STATE(1550), + [sym_function_call_statement] = STATE(1550), + [sym_function_call] = STATE(4558), + [sym_if_statement] = STATE(1550), + [sym_label] = STATE(1551), + [sym_repeat_statement] = STATE(1550), + [sym_procedure_statement] = STATE(1550), + [sym_procedure_parameter_definition] = STATE(1550), + [sym_function_statement] = STATE(1550), + [sym_return_statement] = STATE(1550), + [sym_interface_statement] = STATE(1550), + [sym_using_statement] = STATE(1550), + [sym_class_statement] = STATE(1550), + [sym_object_access] = STATE(3661), + [sym_stream_definition] = STATE(1550), + [sym_input_close_statement] = STATE(1550), + [sym_output_close_statement] = STATE(1550), + [sym__stream_statement] = STATE(1550), + [sym_input_stream_statement] = STATE(1552), + [sym_output_stream_statement] = STATE(1552), + [sym_do_block] = STATE(1550), + [sym_case_statement] = STATE(1550), + [sym_for_statement] = STATE(1550), + [sym_find_statement] = STATE(1550), + [sym_abl_statement] = STATE(1550), + [sym_assign_statement] = STATE(1550), + [sym_catch_statement] = STATE(1550), + [sym_finally_statement] = STATE(1550), + [sym_accumulate_statement] = STATE(1550), + [sym_undo_statement] = STATE(1550), + [sym_error_scope_statement] = STATE(1550), + [sym_temp_table_definition] = STATE(1550), + [sym_on_statement] = STATE(1550), + [sym__statement] = STATE(1553), + [aux_sym_source_code_repeat1] = STATE(286), + [sym_identifier] = ACTIONS(263), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), [anon_sym_LBRACE] = ACTIONS(7), - [aux_sym__block_terminator_token1] = ACTIONS(311), - [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), + [aux_sym__block_terminator_token1] = ACTIONS(327), + [aux_sym_input_expression_token1] = ACTIONS(267), + [aux_sym_primitive_type_token19] = ACTIONS(269), + [aux_sym_variable_definition_token1] = ACTIONS(271), + [aux_sym_variable_definition_token2] = ACTIONS(273), + [aux_sym_buffer_definition_token2] = ACTIONS(275), + [aux_sym_argument_mode_token1] = ACTIONS(277), + [aux_sym_if_statement_token1] = ACTIONS(279), + [aux_sym_repeat_statement_token1] = ACTIONS(281), + [aux_sym__procedure_terminator_token1] = ACTIONS(283), + [aux_sym_procedure_parameter_definition_token1] = ACTIONS(285), + [aux_sym__function_terminator_token1] = ACTIONS(287), + [aux_sym_interface_statement_token1] = ACTIONS(289), + [aux_sym_using_statement_token1] = ACTIONS(291), + [aux_sym_on_error_phrase_token1] = ACTIONS(293), + [aux_sym_on_error_phrase_token3] = ACTIONS(295), + [aux_sym_do_block_token1] = ACTIONS(297), + [aux_sym__case_terminator_token1] = ACTIONS(299), + [aux_sym_find_statement_token1] = ACTIONS(301), + [aux_sym_assign_statement_token1] = ACTIONS(303), + [aux_sym_catch_statement_token1] = ACTIONS(305), + [aux_sym_finally_statement_token1] = ACTIONS(307), + [aux_sym_accumulate_statement_token1] = ACTIONS(309), + [anon_sym_ROUTINE_DASHLEVEL] = ACTIONS(311), + [anon_sym_BLOCK_DASHLEVEL] = ACTIONS(311), }, [165] = { - [sym_body] = STATE(3908), + [sym_body] = STATE(4021), [sym_comment] = STATE(165), - [sym_qualified_name] = STATE(4733), - [sym__block_terminator] = STATE(1021), + [sym_qualified_name] = STATE(4814), + [sym__block_terminator] = STATE(1320), [sym_include] = STATE(165), - [sym_assignment] = STATE(4314), - [sym_variable_definition] = STATE(1535), - [sym_variable_assignment] = STATE(1535), - [sym_buffer_definition] = STATE(1535), - [sym_query_definition] = STATE(1535), - [sym_function_call_statement] = STATE(1535), - [sym_function_call] = STATE(4086), - [sym_if_statement] = STATE(1535), - [sym_label] = STATE(1536), - [sym_repeat_statement] = STATE(1535), - [sym_procedure_statement] = STATE(1535), - [sym_procedure_parameter_definition] = STATE(1535), - [sym_function_statement] = STATE(1535), - [sym_return_statement] = STATE(1535), - [sym_interface_statement] = STATE(1535), - [sym_using_statement] = STATE(1535), - [sym_class_statement] = STATE(1535), - [sym_object_access] = STATE(3567), - [sym_stream_definition] = STATE(1535), - [sym_input_close_statement] = STATE(1535), - [sym_output_close_statement] = STATE(1535), - [sym__stream_statement] = STATE(1535), - [sym_input_stream_statement] = STATE(1537), - [sym_output_stream_statement] = STATE(1537), - [sym_do_block] = STATE(1535), - [sym_case_statement] = STATE(1535), - [sym_for_statement] = STATE(1535), - [sym_find_statement] = STATE(1535), - [sym_abl_statement] = STATE(1535), - [sym_assign_statement] = STATE(1535), - [sym_catch_statement] = STATE(1535), - [sym_finally_statement] = STATE(1535), - [sym_accumulate_statement] = STATE(1535), - [sym_undo_statement] = STATE(1535), - [sym_error_scope_statement] = STATE(1535), - [sym_temp_table_definition] = STATE(1535), - [sym_on_statement] = STATE(1535), - [sym__statement] = STATE(1538), - [aux_sym_source_code_repeat1] = STATE(276), - [sym_identifier] = ACTIONS(227), + [sym_assignment] = STATE(4463), + [sym_variable_definition] = STATE(1550), + [sym_variable_assignment] = STATE(1550), + [sym_buffer_definition] = STATE(1550), + [sym_query_definition] = STATE(1550), + [sym_function_call_statement] = STATE(1550), + [sym_function_call] = STATE(4558), + [sym_if_statement] = STATE(1550), + [sym_label] = STATE(1551), + [sym_repeat_statement] = STATE(1550), + [sym_procedure_statement] = STATE(1550), + [sym_procedure_parameter_definition] = STATE(1550), + [sym_function_statement] = STATE(1550), + [sym_return_statement] = STATE(1550), + [sym_interface_statement] = STATE(1550), + [sym_using_statement] = STATE(1550), + [sym_class_statement] = STATE(1550), + [sym_object_access] = STATE(3661), + [sym_stream_definition] = STATE(1550), + [sym_input_close_statement] = STATE(1550), + [sym_output_close_statement] = STATE(1550), + [sym__stream_statement] = STATE(1550), + [sym_input_stream_statement] = STATE(1552), + [sym_output_stream_statement] = STATE(1552), + [sym_do_block] = STATE(1550), + [sym_case_statement] = STATE(1550), + [sym_for_statement] = STATE(1550), + [sym_find_statement] = STATE(1550), + [sym_abl_statement] = STATE(1550), + [sym_assign_statement] = STATE(1550), + [sym_catch_statement] = STATE(1550), + [sym_finally_statement] = STATE(1550), + [sym_accumulate_statement] = STATE(1550), + [sym_undo_statement] = STATE(1550), + [sym_error_scope_statement] = STATE(1550), + [sym_temp_table_definition] = STATE(1550), + [sym_on_statement] = STATE(1550), + [sym__statement] = STATE(1553), + [aux_sym_source_code_repeat1] = STATE(286), + [sym_identifier] = ACTIONS(263), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), [anon_sym_LBRACE] = ACTIONS(7), - [aux_sym__block_terminator_token1] = ACTIONS(303), - [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), + [aux_sym__block_terminator_token1] = ACTIONS(327), + [aux_sym_input_expression_token1] = ACTIONS(267), + [aux_sym_primitive_type_token19] = ACTIONS(269), + [aux_sym_variable_definition_token1] = ACTIONS(271), + [aux_sym_variable_definition_token2] = ACTIONS(273), + [aux_sym_buffer_definition_token2] = ACTIONS(275), + [aux_sym_argument_mode_token1] = ACTIONS(277), + [aux_sym_if_statement_token1] = ACTIONS(279), + [aux_sym_repeat_statement_token1] = ACTIONS(281), + [aux_sym__procedure_terminator_token1] = ACTIONS(283), + [aux_sym_procedure_parameter_definition_token1] = ACTIONS(285), + [aux_sym__function_terminator_token1] = ACTIONS(287), + [aux_sym_interface_statement_token1] = ACTIONS(289), + [aux_sym_using_statement_token1] = ACTIONS(291), + [aux_sym_on_error_phrase_token1] = ACTIONS(293), + [aux_sym_on_error_phrase_token3] = ACTIONS(295), + [aux_sym_do_block_token1] = ACTIONS(297), + [aux_sym__case_terminator_token1] = ACTIONS(299), + [aux_sym_find_statement_token1] = ACTIONS(301), + [aux_sym_assign_statement_token1] = ACTIONS(303), + [aux_sym_catch_statement_token1] = ACTIONS(305), + [aux_sym_finally_statement_token1] = ACTIONS(307), + [aux_sym_accumulate_statement_token1] = ACTIONS(309), + [anon_sym_ROUTINE_DASHLEVEL] = ACTIONS(311), + [anon_sym_BLOCK_DASHLEVEL] = ACTIONS(311), }, [166] = { - [sym_body] = STATE(3616), + [sym_body] = STATE(4076), [sym_comment] = STATE(166), - [sym_qualified_name] = STATE(4733), - [sym__block_terminator] = STATE(1117), + [sym_qualified_name] = STATE(4814), + [sym__block_terminator] = STATE(1311), [sym_include] = STATE(166), - [sym_assignment] = STATE(4314), - [sym_variable_definition] = STATE(1535), - [sym_variable_assignment] = STATE(1535), - [sym_buffer_definition] = STATE(1535), - [sym_query_definition] = STATE(1535), - [sym_function_call_statement] = STATE(1535), - [sym_function_call] = STATE(4086), - [sym_if_statement] = STATE(1535), - [sym_label] = STATE(1536), - [sym_repeat_statement] = STATE(1535), - [sym_procedure_statement] = STATE(1535), - [sym_procedure_parameter_definition] = STATE(1535), - [sym_function_statement] = STATE(1535), - [sym_return_statement] = STATE(1535), - [sym_interface_statement] = STATE(1535), - [sym_using_statement] = STATE(1535), - [sym_class_statement] = STATE(1535), - [sym_object_access] = STATE(3567), - [sym_stream_definition] = STATE(1535), - [sym_input_close_statement] = STATE(1535), - [sym_output_close_statement] = STATE(1535), - [sym__stream_statement] = STATE(1535), - [sym_input_stream_statement] = STATE(1537), - [sym_output_stream_statement] = STATE(1537), - [sym_do_block] = STATE(1535), - [sym_case_statement] = STATE(1535), - [sym_for_statement] = STATE(1535), - [sym_find_statement] = STATE(1535), - [sym_abl_statement] = STATE(1535), - [sym_assign_statement] = STATE(1535), - [sym_catch_statement] = STATE(1535), - [sym_finally_statement] = STATE(1535), - [sym_accumulate_statement] = STATE(1535), - [sym_undo_statement] = STATE(1535), - [sym_error_scope_statement] = STATE(1535), - [sym_temp_table_definition] = STATE(1535), - [sym_on_statement] = STATE(1535), - [sym__statement] = STATE(1538), - [aux_sym_source_code_repeat1] = STATE(276), - [sym_identifier] = ACTIONS(227), + [sym_assignment] = STATE(4463), + [sym_variable_definition] = STATE(1550), + [sym_variable_assignment] = STATE(1550), + [sym_buffer_definition] = STATE(1550), + [sym_query_definition] = STATE(1550), + [sym_function_call_statement] = STATE(1550), + [sym_function_call] = STATE(4558), + [sym_if_statement] = STATE(1550), + [sym_label] = STATE(1551), + [sym_repeat_statement] = STATE(1550), + [sym_procedure_statement] = STATE(1550), + [sym_procedure_parameter_definition] = STATE(1550), + [sym_function_statement] = STATE(1550), + [sym_return_statement] = STATE(1550), + [sym_interface_statement] = STATE(1550), + [sym_using_statement] = STATE(1550), + [sym_class_statement] = STATE(1550), + [sym_object_access] = STATE(3661), + [sym_stream_definition] = STATE(1550), + [sym_input_close_statement] = STATE(1550), + [sym_output_close_statement] = STATE(1550), + [sym__stream_statement] = STATE(1550), + [sym_input_stream_statement] = STATE(1552), + [sym_output_stream_statement] = STATE(1552), + [sym_do_block] = STATE(1550), + [sym_case_statement] = STATE(1550), + [sym_for_statement] = STATE(1550), + [sym_find_statement] = STATE(1550), + [sym_abl_statement] = STATE(1550), + [sym_assign_statement] = STATE(1550), + [sym_catch_statement] = STATE(1550), + [sym_finally_statement] = STATE(1550), + [sym_accumulate_statement] = STATE(1550), + [sym_undo_statement] = STATE(1550), + [sym_error_scope_statement] = STATE(1550), + [sym_temp_table_definition] = STATE(1550), + [sym_on_statement] = STATE(1550), + [sym__statement] = STATE(1553), + [aux_sym_source_code_repeat1] = STATE(286), + [sym_identifier] = ACTIONS(263), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), [anon_sym_LBRACE] = ACTIONS(7), - [aux_sym__block_terminator_token1] = ACTIONS(301), - [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), + [aux_sym__block_terminator_token1] = ACTIONS(327), + [aux_sym_input_expression_token1] = ACTIONS(267), + [aux_sym_primitive_type_token19] = ACTIONS(269), + [aux_sym_variable_definition_token1] = ACTIONS(271), + [aux_sym_variable_definition_token2] = ACTIONS(273), + [aux_sym_buffer_definition_token2] = ACTIONS(275), + [aux_sym_argument_mode_token1] = ACTIONS(277), + [aux_sym_if_statement_token1] = ACTIONS(279), + [aux_sym_repeat_statement_token1] = ACTIONS(281), + [aux_sym__procedure_terminator_token1] = ACTIONS(283), + [aux_sym_procedure_parameter_definition_token1] = ACTIONS(285), + [aux_sym__function_terminator_token1] = ACTIONS(287), + [aux_sym_interface_statement_token1] = ACTIONS(289), + [aux_sym_using_statement_token1] = ACTIONS(291), + [aux_sym_on_error_phrase_token1] = ACTIONS(293), + [aux_sym_on_error_phrase_token3] = ACTIONS(295), + [aux_sym_do_block_token1] = ACTIONS(297), + [aux_sym__case_terminator_token1] = ACTIONS(299), + [aux_sym_find_statement_token1] = ACTIONS(301), + [aux_sym_assign_statement_token1] = ACTIONS(303), + [aux_sym_catch_statement_token1] = ACTIONS(305), + [aux_sym_finally_statement_token1] = ACTIONS(307), + [aux_sym_accumulate_statement_token1] = ACTIONS(309), + [anon_sym_ROUTINE_DASHLEVEL] = ACTIONS(311), + [anon_sym_BLOCK_DASHLEVEL] = ACTIONS(311), }, [167] = { - [sym_body] = STATE(3982), + [sym_body] = STATE(4075), [sym_comment] = STATE(167), - [sym_qualified_name] = STATE(4733), - [sym__block_terminator] = STATE(908), + [sym_qualified_name] = STATE(4814), + [sym__block_terminator] = STATE(1141), [sym_include] = STATE(167), - [sym_assignment] = STATE(4314), - [sym_variable_definition] = STATE(1535), - [sym_variable_assignment] = STATE(1535), - [sym_buffer_definition] = STATE(1535), - [sym_query_definition] = STATE(1535), - [sym_function_call_statement] = STATE(1535), - [sym_function_call] = STATE(4086), - [sym_if_statement] = STATE(1535), - [sym_label] = STATE(1536), - [sym_repeat_statement] = STATE(1535), - [sym_procedure_statement] = STATE(1535), - [sym_procedure_parameter_definition] = STATE(1535), - [sym_function_statement] = STATE(1535), - [sym_return_statement] = STATE(1535), - [sym_interface_statement] = STATE(1535), - [sym_using_statement] = STATE(1535), - [sym_class_statement] = STATE(1535), - [sym_object_access] = STATE(3567), - [sym_stream_definition] = STATE(1535), - [sym_input_close_statement] = STATE(1535), - [sym_output_close_statement] = STATE(1535), - [sym__stream_statement] = STATE(1535), - [sym_input_stream_statement] = STATE(1537), - [sym_output_stream_statement] = STATE(1537), - [sym_do_block] = STATE(1535), - [sym_case_statement] = STATE(1535), - [sym_for_statement] = STATE(1535), - [sym_find_statement] = STATE(1535), - [sym_abl_statement] = STATE(1535), - [sym_assign_statement] = STATE(1535), - [sym_catch_statement] = STATE(1535), - [sym_finally_statement] = STATE(1535), - [sym_accumulate_statement] = STATE(1535), - [sym_undo_statement] = STATE(1535), - [sym_error_scope_statement] = STATE(1535), - [sym_temp_table_definition] = STATE(1535), - [sym_on_statement] = STATE(1535), - [sym__statement] = STATE(1538), - [aux_sym_source_code_repeat1] = STATE(276), - [sym_identifier] = ACTIONS(227), + [sym_assignment] = STATE(4463), + [sym_variable_definition] = STATE(1550), + [sym_variable_assignment] = STATE(1550), + [sym_buffer_definition] = STATE(1550), + [sym_query_definition] = STATE(1550), + [sym_function_call_statement] = STATE(1550), + [sym_function_call] = STATE(4558), + [sym_if_statement] = STATE(1550), + [sym_label] = STATE(1551), + [sym_repeat_statement] = STATE(1550), + [sym_procedure_statement] = STATE(1550), + [sym_procedure_parameter_definition] = STATE(1550), + [sym_function_statement] = STATE(1550), + [sym_return_statement] = STATE(1550), + [sym_interface_statement] = STATE(1550), + [sym_using_statement] = STATE(1550), + [sym_class_statement] = STATE(1550), + [sym_object_access] = STATE(3661), + [sym_stream_definition] = STATE(1550), + [sym_input_close_statement] = STATE(1550), + [sym_output_close_statement] = STATE(1550), + [sym__stream_statement] = STATE(1550), + [sym_input_stream_statement] = STATE(1552), + [sym_output_stream_statement] = STATE(1552), + [sym_do_block] = STATE(1550), + [sym_case_statement] = STATE(1550), + [sym_for_statement] = STATE(1550), + [sym_find_statement] = STATE(1550), + [sym_abl_statement] = STATE(1550), + [sym_assign_statement] = STATE(1550), + [sym_catch_statement] = STATE(1550), + [sym_finally_statement] = STATE(1550), + [sym_accumulate_statement] = STATE(1550), + [sym_undo_statement] = STATE(1550), + [sym_error_scope_statement] = STATE(1550), + [sym_temp_table_definition] = STATE(1550), + [sym_on_statement] = STATE(1550), + [sym__statement] = STATE(1553), + [aux_sym_source_code_repeat1] = STATE(286), + [sym_identifier] = ACTIONS(263), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), [anon_sym_LBRACE] = ACTIONS(7), - [aux_sym__block_terminator_token1] = ACTIONS(303), - [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), + [aux_sym__block_terminator_token1] = ACTIONS(327), + [aux_sym_input_expression_token1] = ACTIONS(267), + [aux_sym_primitive_type_token19] = ACTIONS(269), + [aux_sym_variable_definition_token1] = ACTIONS(271), + [aux_sym_variable_definition_token2] = ACTIONS(273), + [aux_sym_buffer_definition_token2] = ACTIONS(275), + [aux_sym_argument_mode_token1] = ACTIONS(277), + [aux_sym_if_statement_token1] = ACTIONS(279), + [aux_sym_repeat_statement_token1] = ACTIONS(281), + [aux_sym__procedure_terminator_token1] = ACTIONS(283), + [aux_sym_procedure_parameter_definition_token1] = ACTIONS(285), + [aux_sym__function_terminator_token1] = ACTIONS(287), + [aux_sym_interface_statement_token1] = ACTIONS(289), + [aux_sym_using_statement_token1] = ACTIONS(291), + [aux_sym_on_error_phrase_token1] = ACTIONS(293), + [aux_sym_on_error_phrase_token3] = ACTIONS(295), + [aux_sym_do_block_token1] = ACTIONS(297), + [aux_sym__case_terminator_token1] = ACTIONS(299), + [aux_sym_find_statement_token1] = ACTIONS(301), + [aux_sym_assign_statement_token1] = ACTIONS(303), + [aux_sym_catch_statement_token1] = ACTIONS(305), + [aux_sym_finally_statement_token1] = ACTIONS(307), + [aux_sym_accumulate_statement_token1] = ACTIONS(309), + [anon_sym_ROUTINE_DASHLEVEL] = ACTIONS(311), + [anon_sym_BLOCK_DASHLEVEL] = ACTIONS(311), }, [168] = { - [sym_body] = STATE(3985), + [sym_body] = STATE(3916), [sym_comment] = STATE(168), - [sym_qualified_name] = STATE(4733), - [sym__block_terminator] = STATE(910), + [sym_qualified_name] = STATE(4814), + [sym__block_terminator] = STATE(3634), [sym_include] = STATE(168), - [sym_assignment] = STATE(4314), - [sym_variable_definition] = STATE(1535), - [sym_variable_assignment] = STATE(1535), - [sym_buffer_definition] = STATE(1535), - [sym_query_definition] = STATE(1535), - [sym_function_call_statement] = STATE(1535), - [sym_function_call] = STATE(4086), - [sym_if_statement] = STATE(1535), - [sym_label] = STATE(1536), - [sym_repeat_statement] = STATE(1535), - [sym_procedure_statement] = STATE(1535), - [sym_procedure_parameter_definition] = STATE(1535), - [sym_function_statement] = STATE(1535), - [sym_return_statement] = STATE(1535), - [sym_interface_statement] = STATE(1535), - [sym_using_statement] = STATE(1535), - [sym_class_statement] = STATE(1535), - [sym_object_access] = STATE(3567), - [sym_stream_definition] = STATE(1535), - [sym_input_close_statement] = STATE(1535), - [sym_output_close_statement] = STATE(1535), - [sym__stream_statement] = STATE(1535), - [sym_input_stream_statement] = STATE(1537), - [sym_output_stream_statement] = STATE(1537), - [sym_do_block] = STATE(1535), - [sym_case_statement] = STATE(1535), - [sym_for_statement] = STATE(1535), - [sym_find_statement] = STATE(1535), - [sym_abl_statement] = STATE(1535), - [sym_assign_statement] = STATE(1535), - [sym_catch_statement] = STATE(1535), - [sym_finally_statement] = STATE(1535), - [sym_accumulate_statement] = STATE(1535), - [sym_undo_statement] = STATE(1535), - [sym_error_scope_statement] = STATE(1535), - [sym_temp_table_definition] = STATE(1535), - [sym_on_statement] = STATE(1535), - [sym__statement] = STATE(1538), - [aux_sym_source_code_repeat1] = STATE(276), - [sym_identifier] = ACTIONS(227), + [sym_assignment] = STATE(4463), + [sym_variable_definition] = STATE(1550), + [sym_variable_assignment] = STATE(1550), + [sym_buffer_definition] = STATE(1550), + [sym_query_definition] = STATE(1550), + [sym_function_call_statement] = STATE(1550), + [sym_function_call] = STATE(4558), + [sym_if_statement] = STATE(1550), + [sym_label] = STATE(1551), + [sym_repeat_statement] = STATE(1550), + [sym_procedure_statement] = STATE(1550), + [sym_procedure_parameter_definition] = STATE(1550), + [sym_function_statement] = STATE(1550), + [sym_return_statement] = STATE(1550), + [sym_interface_statement] = STATE(1550), + [sym_using_statement] = STATE(1550), + [sym_class_statement] = STATE(1550), + [sym_object_access] = STATE(3661), + [sym_stream_definition] = STATE(1550), + [sym_input_close_statement] = STATE(1550), + [sym_output_close_statement] = STATE(1550), + [sym__stream_statement] = STATE(1550), + [sym_input_stream_statement] = STATE(1552), + [sym_output_stream_statement] = STATE(1552), + [sym_do_block] = STATE(1550), + [sym_case_statement] = STATE(1550), + [sym_for_statement] = STATE(1550), + [sym_find_statement] = STATE(1550), + [sym_abl_statement] = STATE(1550), + [sym_assign_statement] = STATE(1550), + [sym_catch_statement] = STATE(1550), + [sym_finally_statement] = STATE(1550), + [sym_accumulate_statement] = STATE(1550), + [sym_undo_statement] = STATE(1550), + [sym_error_scope_statement] = STATE(1550), + [sym_temp_table_definition] = STATE(1550), + [sym_on_statement] = STATE(1550), + [sym__statement] = STATE(1553), + [aux_sym_source_code_repeat1] = STATE(286), + [sym_identifier] = ACTIONS(263), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), [anon_sym_LBRACE] = ACTIONS(7), - [aux_sym__block_terminator_token1] = ACTIONS(303), - [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), + [aux_sym__block_terminator_token1] = ACTIONS(319), + [aux_sym_input_expression_token1] = ACTIONS(267), + [aux_sym_primitive_type_token19] = ACTIONS(269), + [aux_sym_variable_definition_token1] = ACTIONS(271), + [aux_sym_variable_definition_token2] = ACTIONS(273), + [aux_sym_buffer_definition_token2] = ACTIONS(275), + [aux_sym_argument_mode_token1] = ACTIONS(277), + [aux_sym_if_statement_token1] = ACTIONS(279), + [aux_sym_repeat_statement_token1] = ACTIONS(281), + [aux_sym__procedure_terminator_token1] = ACTIONS(283), + [aux_sym_procedure_parameter_definition_token1] = ACTIONS(285), + [aux_sym__function_terminator_token1] = ACTIONS(287), + [aux_sym_interface_statement_token1] = ACTIONS(289), + [aux_sym_using_statement_token1] = ACTIONS(291), + [aux_sym_on_error_phrase_token1] = ACTIONS(293), + [aux_sym_on_error_phrase_token3] = ACTIONS(295), + [aux_sym_do_block_token1] = ACTIONS(297), + [aux_sym__case_terminator_token1] = ACTIONS(299), + [aux_sym_find_statement_token1] = ACTIONS(301), + [aux_sym_assign_statement_token1] = ACTIONS(303), + [aux_sym_catch_statement_token1] = ACTIONS(305), + [aux_sym_finally_statement_token1] = ACTIONS(307), + [aux_sym_accumulate_statement_token1] = ACTIONS(309), + [anon_sym_ROUTINE_DASHLEVEL] = ACTIONS(311), + [anon_sym_BLOCK_DASHLEVEL] = ACTIONS(311), }, [169] = { - [sym_body] = STATE(3993), + [sym_body] = STATE(3912), [sym_comment] = STATE(169), - [sym_qualified_name] = STATE(4733), - [sym__block_terminator] = STATE(907), + [sym_qualified_name] = STATE(4814), + [sym__block_terminator] = STATE(3626), [sym_include] = STATE(169), - [sym_assignment] = STATE(4314), - [sym_variable_definition] = STATE(1535), - [sym_variable_assignment] = STATE(1535), - [sym_buffer_definition] = STATE(1535), - [sym_query_definition] = STATE(1535), - [sym_function_call_statement] = STATE(1535), - [sym_function_call] = STATE(4086), - [sym_if_statement] = STATE(1535), - [sym_label] = STATE(1536), - [sym_repeat_statement] = STATE(1535), - [sym_procedure_statement] = STATE(1535), - [sym_procedure_parameter_definition] = STATE(1535), - [sym_function_statement] = STATE(1535), - [sym_return_statement] = STATE(1535), - [sym_interface_statement] = STATE(1535), - [sym_using_statement] = STATE(1535), - [sym_class_statement] = STATE(1535), - [sym_object_access] = STATE(3567), - [sym_stream_definition] = STATE(1535), - [sym_input_close_statement] = STATE(1535), - [sym_output_close_statement] = STATE(1535), - [sym__stream_statement] = STATE(1535), - [sym_input_stream_statement] = STATE(1537), - [sym_output_stream_statement] = STATE(1537), - [sym_do_block] = STATE(1535), - [sym_case_statement] = STATE(1535), - [sym_for_statement] = STATE(1535), - [sym_find_statement] = STATE(1535), - [sym_abl_statement] = STATE(1535), - [sym_assign_statement] = STATE(1535), - [sym_catch_statement] = STATE(1535), - [sym_finally_statement] = STATE(1535), - [sym_accumulate_statement] = STATE(1535), - [sym_undo_statement] = STATE(1535), - [sym_error_scope_statement] = STATE(1535), - [sym_temp_table_definition] = STATE(1535), - [sym_on_statement] = STATE(1535), - [sym__statement] = STATE(1538), - [aux_sym_source_code_repeat1] = STATE(276), - [sym_identifier] = ACTIONS(227), + [sym_assignment] = STATE(4463), + [sym_variable_definition] = STATE(1550), + [sym_variable_assignment] = STATE(1550), + [sym_buffer_definition] = STATE(1550), + [sym_query_definition] = STATE(1550), + [sym_function_call_statement] = STATE(1550), + [sym_function_call] = STATE(4558), + [sym_if_statement] = STATE(1550), + [sym_label] = STATE(1551), + [sym_repeat_statement] = STATE(1550), + [sym_procedure_statement] = STATE(1550), + [sym_procedure_parameter_definition] = STATE(1550), + [sym_function_statement] = STATE(1550), + [sym_return_statement] = STATE(1550), + [sym_interface_statement] = STATE(1550), + [sym_using_statement] = STATE(1550), + [sym_class_statement] = STATE(1550), + [sym_object_access] = STATE(3661), + [sym_stream_definition] = STATE(1550), + [sym_input_close_statement] = STATE(1550), + [sym_output_close_statement] = STATE(1550), + [sym__stream_statement] = STATE(1550), + [sym_input_stream_statement] = STATE(1552), + [sym_output_stream_statement] = STATE(1552), + [sym_do_block] = STATE(1550), + [sym_case_statement] = STATE(1550), + [sym_for_statement] = STATE(1550), + [sym_find_statement] = STATE(1550), + [sym_abl_statement] = STATE(1550), + [sym_assign_statement] = STATE(1550), + [sym_catch_statement] = STATE(1550), + [sym_finally_statement] = STATE(1550), + [sym_accumulate_statement] = STATE(1550), + [sym_undo_statement] = STATE(1550), + [sym_error_scope_statement] = STATE(1550), + [sym_temp_table_definition] = STATE(1550), + [sym_on_statement] = STATE(1550), + [sym__statement] = STATE(1553), + [aux_sym_source_code_repeat1] = STATE(286), + [sym_identifier] = ACTIONS(263), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), [anon_sym_LBRACE] = ACTIONS(7), - [aux_sym__block_terminator_token1] = ACTIONS(303), - [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), + [aux_sym__block_terminator_token1] = ACTIONS(319), + [aux_sym_input_expression_token1] = ACTIONS(267), + [aux_sym_primitive_type_token19] = ACTIONS(269), + [aux_sym_variable_definition_token1] = ACTIONS(271), + [aux_sym_variable_definition_token2] = ACTIONS(273), + [aux_sym_buffer_definition_token2] = ACTIONS(275), + [aux_sym_argument_mode_token1] = ACTIONS(277), + [aux_sym_if_statement_token1] = ACTIONS(279), + [aux_sym_repeat_statement_token1] = ACTIONS(281), + [aux_sym__procedure_terminator_token1] = ACTIONS(283), + [aux_sym_procedure_parameter_definition_token1] = ACTIONS(285), + [aux_sym__function_terminator_token1] = ACTIONS(287), + [aux_sym_interface_statement_token1] = ACTIONS(289), + [aux_sym_using_statement_token1] = ACTIONS(291), + [aux_sym_on_error_phrase_token1] = ACTIONS(293), + [aux_sym_on_error_phrase_token3] = ACTIONS(295), + [aux_sym_do_block_token1] = ACTIONS(297), + [aux_sym__case_terminator_token1] = ACTIONS(299), + [aux_sym_find_statement_token1] = ACTIONS(301), + [aux_sym_assign_statement_token1] = ACTIONS(303), + [aux_sym_catch_statement_token1] = ACTIONS(305), + [aux_sym_finally_statement_token1] = ACTIONS(307), + [aux_sym_accumulate_statement_token1] = ACTIONS(309), + [anon_sym_ROUTINE_DASHLEVEL] = ACTIONS(311), + [anon_sym_BLOCK_DASHLEVEL] = ACTIONS(311), }, [170] = { - [sym_body] = STATE(3713), + [sym_body] = STATE(3901), [sym_comment] = STATE(170), - [sym_qualified_name] = STATE(4733), - [sym__block_terminator] = STATE(3058), + [sym_qualified_name] = STATE(4814), + [sym__block_terminator] = STATE(3618), [sym_include] = STATE(170), - [sym_assignment] = STATE(4314), - [sym_variable_definition] = STATE(1535), - [sym_variable_assignment] = STATE(1535), - [sym_buffer_definition] = STATE(1535), - [sym_query_definition] = STATE(1535), - [sym_function_call_statement] = STATE(1535), - [sym_function_call] = STATE(4086), - [sym_if_statement] = STATE(1535), - [sym_label] = STATE(1536), - [sym_repeat_statement] = STATE(1535), - [sym_procedure_statement] = STATE(1535), - [sym_procedure_parameter_definition] = STATE(1535), - [sym_function_statement] = STATE(1535), - [sym_return_statement] = STATE(1535), - [sym_interface_statement] = STATE(1535), - [sym_using_statement] = STATE(1535), - [sym_class_statement] = STATE(1535), - [sym_object_access] = STATE(3567), - [sym_stream_definition] = STATE(1535), - [sym_input_close_statement] = STATE(1535), - [sym_output_close_statement] = STATE(1535), - [sym__stream_statement] = STATE(1535), - [sym_input_stream_statement] = STATE(1537), - [sym_output_stream_statement] = STATE(1537), - [sym_do_block] = STATE(1535), - [sym_case_statement] = STATE(1535), - [sym_for_statement] = STATE(1535), - [sym_find_statement] = STATE(1535), - [sym_abl_statement] = STATE(1535), - [sym_assign_statement] = STATE(1535), - [sym_catch_statement] = STATE(1535), - [sym_finally_statement] = STATE(1535), - [sym_accumulate_statement] = STATE(1535), - [sym_undo_statement] = STATE(1535), - [sym_error_scope_statement] = STATE(1535), - [sym_temp_table_definition] = STATE(1535), - [sym_on_statement] = STATE(1535), - [sym__statement] = STATE(1538), - [aux_sym_source_code_repeat1] = STATE(276), - [sym_identifier] = ACTIONS(227), + [sym_assignment] = STATE(4463), + [sym_variable_definition] = STATE(1550), + [sym_variable_assignment] = STATE(1550), + [sym_buffer_definition] = STATE(1550), + [sym_query_definition] = STATE(1550), + [sym_function_call_statement] = STATE(1550), + [sym_function_call] = STATE(4558), + [sym_if_statement] = STATE(1550), + [sym_label] = STATE(1551), + [sym_repeat_statement] = STATE(1550), + [sym_procedure_statement] = STATE(1550), + [sym_procedure_parameter_definition] = STATE(1550), + [sym_function_statement] = STATE(1550), + [sym_return_statement] = STATE(1550), + [sym_interface_statement] = STATE(1550), + [sym_using_statement] = STATE(1550), + [sym_class_statement] = STATE(1550), + [sym_object_access] = STATE(3661), + [sym_stream_definition] = STATE(1550), + [sym_input_close_statement] = STATE(1550), + [sym_output_close_statement] = STATE(1550), + [sym__stream_statement] = STATE(1550), + [sym_input_stream_statement] = STATE(1552), + [sym_output_stream_statement] = STATE(1552), + [sym_do_block] = STATE(1550), + [sym_case_statement] = STATE(1550), + [sym_for_statement] = STATE(1550), + [sym_find_statement] = STATE(1550), + [sym_abl_statement] = STATE(1550), + [sym_assign_statement] = STATE(1550), + [sym_catch_statement] = STATE(1550), + [sym_finally_statement] = STATE(1550), + [sym_accumulate_statement] = STATE(1550), + [sym_undo_statement] = STATE(1550), + [sym_error_scope_statement] = STATE(1550), + [sym_temp_table_definition] = STATE(1550), + [sym_on_statement] = STATE(1550), + [sym__statement] = STATE(1553), + [aux_sym_source_code_repeat1] = STATE(286), + [sym_identifier] = ACTIONS(263), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), [anon_sym_LBRACE] = ACTIONS(7), - [aux_sym__block_terminator_token1] = ACTIONS(297), - [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), + [aux_sym__block_terminator_token1] = ACTIONS(319), + [aux_sym_input_expression_token1] = ACTIONS(267), + [aux_sym_primitive_type_token19] = ACTIONS(269), + [aux_sym_variable_definition_token1] = ACTIONS(271), + [aux_sym_variable_definition_token2] = ACTIONS(273), + [aux_sym_buffer_definition_token2] = ACTIONS(275), + [aux_sym_argument_mode_token1] = ACTIONS(277), + [aux_sym_if_statement_token1] = ACTIONS(279), + [aux_sym_repeat_statement_token1] = ACTIONS(281), + [aux_sym__procedure_terminator_token1] = ACTIONS(283), + [aux_sym_procedure_parameter_definition_token1] = ACTIONS(285), + [aux_sym__function_terminator_token1] = ACTIONS(287), + [aux_sym_interface_statement_token1] = ACTIONS(289), + [aux_sym_using_statement_token1] = ACTIONS(291), + [aux_sym_on_error_phrase_token1] = ACTIONS(293), + [aux_sym_on_error_phrase_token3] = ACTIONS(295), + [aux_sym_do_block_token1] = ACTIONS(297), + [aux_sym__case_terminator_token1] = ACTIONS(299), + [aux_sym_find_statement_token1] = ACTIONS(301), + [aux_sym_assign_statement_token1] = ACTIONS(303), + [aux_sym_catch_statement_token1] = ACTIONS(305), + [aux_sym_finally_statement_token1] = ACTIONS(307), + [aux_sym_accumulate_statement_token1] = ACTIONS(309), + [anon_sym_ROUTINE_DASHLEVEL] = ACTIONS(311), + [anon_sym_BLOCK_DASHLEVEL] = ACTIONS(311), }, [171] = { - [sym_body] = STATE(3785), + [sym_body] = STATE(4066), [sym_comment] = STATE(171), - [sym_qualified_name] = STATE(4733), - [sym__block_terminator] = STATE(3353), + [sym_qualified_name] = STATE(4814), + [sym__block_terminator] = STATE(1145), [sym_include] = STATE(171), - [sym_assignment] = STATE(4314), - [sym_variable_definition] = STATE(1535), - [sym_variable_assignment] = STATE(1535), - [sym_buffer_definition] = STATE(1535), - [sym_query_definition] = STATE(1535), - [sym_function_call_statement] = STATE(1535), - [sym_function_call] = STATE(4086), - [sym_if_statement] = STATE(1535), - [sym_label] = STATE(1536), - [sym_repeat_statement] = STATE(1535), - [sym_procedure_statement] = STATE(1535), - [sym_procedure_parameter_definition] = STATE(1535), - [sym_function_statement] = STATE(1535), - [sym_return_statement] = STATE(1535), - [sym_interface_statement] = STATE(1535), - [sym_using_statement] = STATE(1535), - [sym_class_statement] = STATE(1535), - [sym_object_access] = STATE(3567), - [sym_stream_definition] = STATE(1535), - [sym_input_close_statement] = STATE(1535), - [sym_output_close_statement] = STATE(1535), - [sym__stream_statement] = STATE(1535), - [sym_input_stream_statement] = STATE(1537), - [sym_output_stream_statement] = STATE(1537), - [sym_do_block] = STATE(1535), - [sym_case_statement] = STATE(1535), - [sym_for_statement] = STATE(1535), - [sym_find_statement] = STATE(1535), - [sym_abl_statement] = STATE(1535), - [sym_assign_statement] = STATE(1535), - [sym_catch_statement] = STATE(1535), - [sym_finally_statement] = STATE(1535), - [sym_accumulate_statement] = STATE(1535), - [sym_undo_statement] = STATE(1535), - [sym_error_scope_statement] = STATE(1535), - [sym_temp_table_definition] = STATE(1535), - [sym_on_statement] = STATE(1535), - [sym__statement] = STATE(1538), - [aux_sym_source_code_repeat1] = STATE(276), - [sym_identifier] = ACTIONS(227), + [sym_assignment] = STATE(4463), + [sym_variable_definition] = STATE(1550), + [sym_variable_assignment] = STATE(1550), + [sym_buffer_definition] = STATE(1550), + [sym_query_definition] = STATE(1550), + [sym_function_call_statement] = STATE(1550), + [sym_function_call] = STATE(4558), + [sym_if_statement] = STATE(1550), + [sym_label] = STATE(1551), + [sym_repeat_statement] = STATE(1550), + [sym_procedure_statement] = STATE(1550), + [sym_procedure_parameter_definition] = STATE(1550), + [sym_function_statement] = STATE(1550), + [sym_return_statement] = STATE(1550), + [sym_interface_statement] = STATE(1550), + [sym_using_statement] = STATE(1550), + [sym_class_statement] = STATE(1550), + [sym_object_access] = STATE(3661), + [sym_stream_definition] = STATE(1550), + [sym_input_close_statement] = STATE(1550), + [sym_output_close_statement] = STATE(1550), + [sym__stream_statement] = STATE(1550), + [sym_input_stream_statement] = STATE(1552), + [sym_output_stream_statement] = STATE(1552), + [sym_do_block] = STATE(1550), + [sym_case_statement] = STATE(1550), + [sym_for_statement] = STATE(1550), + [sym_find_statement] = STATE(1550), + [sym_abl_statement] = STATE(1550), + [sym_assign_statement] = STATE(1550), + [sym_catch_statement] = STATE(1550), + [sym_finally_statement] = STATE(1550), + [sym_accumulate_statement] = STATE(1550), + [sym_undo_statement] = STATE(1550), + [sym_error_scope_statement] = STATE(1550), + [sym_temp_table_definition] = STATE(1550), + [sym_on_statement] = STATE(1550), + [sym__statement] = STATE(1553), + [aux_sym_source_code_repeat1] = STATE(286), + [sym_identifier] = ACTIONS(263), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), [anon_sym_LBRACE] = ACTIONS(7), - [aux_sym__block_terminator_token1] = ACTIONS(297), - [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), + [aux_sym__block_terminator_token1] = ACTIONS(327), + [aux_sym_input_expression_token1] = ACTIONS(267), + [aux_sym_primitive_type_token19] = ACTIONS(269), + [aux_sym_variable_definition_token1] = ACTIONS(271), + [aux_sym_variable_definition_token2] = ACTIONS(273), + [aux_sym_buffer_definition_token2] = ACTIONS(275), + [aux_sym_argument_mode_token1] = ACTIONS(277), + [aux_sym_if_statement_token1] = ACTIONS(279), + [aux_sym_repeat_statement_token1] = ACTIONS(281), + [aux_sym__procedure_terminator_token1] = ACTIONS(283), + [aux_sym_procedure_parameter_definition_token1] = ACTIONS(285), + [aux_sym__function_terminator_token1] = ACTIONS(287), + [aux_sym_interface_statement_token1] = ACTIONS(289), + [aux_sym_using_statement_token1] = ACTIONS(291), + [aux_sym_on_error_phrase_token1] = ACTIONS(293), + [aux_sym_on_error_phrase_token3] = ACTIONS(295), + [aux_sym_do_block_token1] = ACTIONS(297), + [aux_sym__case_terminator_token1] = ACTIONS(299), + [aux_sym_find_statement_token1] = ACTIONS(301), + [aux_sym_assign_statement_token1] = ACTIONS(303), + [aux_sym_catch_statement_token1] = ACTIONS(305), + [aux_sym_finally_statement_token1] = ACTIONS(307), + [aux_sym_accumulate_statement_token1] = ACTIONS(309), + [anon_sym_ROUTINE_DASHLEVEL] = ACTIONS(311), + [anon_sym_BLOCK_DASHLEVEL] = ACTIONS(311), }, [172] = { - [sym_body] = STATE(3925), + [sym_body] = STATE(4053), [sym_comment] = STATE(172), - [sym_qualified_name] = STATE(4733), - [sym__block_terminator] = STATE(1012), + [sym_qualified_name] = STATE(4814), + [sym__block_terminator] = STATE(1149), [sym_include] = STATE(172), - [sym_assignment] = STATE(4314), - [sym_variable_definition] = STATE(1535), - [sym_variable_assignment] = STATE(1535), - [sym_buffer_definition] = STATE(1535), - [sym_query_definition] = STATE(1535), - [sym_function_call_statement] = STATE(1535), - [sym_function_call] = STATE(4086), - [sym_if_statement] = STATE(1535), - [sym_label] = STATE(1536), - [sym_repeat_statement] = STATE(1535), - [sym_procedure_statement] = STATE(1535), - [sym_procedure_parameter_definition] = STATE(1535), - [sym_function_statement] = STATE(1535), - [sym_return_statement] = STATE(1535), - [sym_interface_statement] = STATE(1535), - [sym_using_statement] = STATE(1535), - [sym_class_statement] = STATE(1535), - [sym_object_access] = STATE(3567), - [sym_stream_definition] = STATE(1535), - [sym_input_close_statement] = STATE(1535), - [sym_output_close_statement] = STATE(1535), - [sym__stream_statement] = STATE(1535), - [sym_input_stream_statement] = STATE(1537), - [sym_output_stream_statement] = STATE(1537), - [sym_do_block] = STATE(1535), - [sym_case_statement] = STATE(1535), - [sym_for_statement] = STATE(1535), - [sym_find_statement] = STATE(1535), - [sym_abl_statement] = STATE(1535), - [sym_assign_statement] = STATE(1535), - [sym_catch_statement] = STATE(1535), - [sym_finally_statement] = STATE(1535), - [sym_accumulate_statement] = STATE(1535), - [sym_undo_statement] = STATE(1535), - [sym_error_scope_statement] = STATE(1535), - [sym_temp_table_definition] = STATE(1535), - [sym_on_statement] = STATE(1535), - [sym__statement] = STATE(1538), - [aux_sym_source_code_repeat1] = STATE(276), - [sym_identifier] = ACTIONS(227), + [sym_assignment] = STATE(4463), + [sym_variable_definition] = STATE(1550), + [sym_variable_assignment] = STATE(1550), + [sym_buffer_definition] = STATE(1550), + [sym_query_definition] = STATE(1550), + [sym_function_call_statement] = STATE(1550), + [sym_function_call] = STATE(4558), + [sym_if_statement] = STATE(1550), + [sym_label] = STATE(1551), + [sym_repeat_statement] = STATE(1550), + [sym_procedure_statement] = STATE(1550), + [sym_procedure_parameter_definition] = STATE(1550), + [sym_function_statement] = STATE(1550), + [sym_return_statement] = STATE(1550), + [sym_interface_statement] = STATE(1550), + [sym_using_statement] = STATE(1550), + [sym_class_statement] = STATE(1550), + [sym_object_access] = STATE(3661), + [sym_stream_definition] = STATE(1550), + [sym_input_close_statement] = STATE(1550), + [sym_output_close_statement] = STATE(1550), + [sym__stream_statement] = STATE(1550), + [sym_input_stream_statement] = STATE(1552), + [sym_output_stream_statement] = STATE(1552), + [sym_do_block] = STATE(1550), + [sym_case_statement] = STATE(1550), + [sym_for_statement] = STATE(1550), + [sym_find_statement] = STATE(1550), + [sym_abl_statement] = STATE(1550), + [sym_assign_statement] = STATE(1550), + [sym_catch_statement] = STATE(1550), + [sym_finally_statement] = STATE(1550), + [sym_accumulate_statement] = STATE(1550), + [sym_undo_statement] = STATE(1550), + [sym_error_scope_statement] = STATE(1550), + [sym_temp_table_definition] = STATE(1550), + [sym_on_statement] = STATE(1550), + [sym__statement] = STATE(1553), + [aux_sym_source_code_repeat1] = STATE(286), + [sym_identifier] = ACTIONS(263), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), [anon_sym_LBRACE] = ACTIONS(7), - [aux_sym__block_terminator_token1] = ACTIONS(303), - [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), + [aux_sym__block_terminator_token1] = ACTIONS(327), + [aux_sym_input_expression_token1] = ACTIONS(267), + [aux_sym_primitive_type_token19] = ACTIONS(269), + [aux_sym_variable_definition_token1] = ACTIONS(271), + [aux_sym_variable_definition_token2] = ACTIONS(273), + [aux_sym_buffer_definition_token2] = ACTIONS(275), + [aux_sym_argument_mode_token1] = ACTIONS(277), + [aux_sym_if_statement_token1] = ACTIONS(279), + [aux_sym_repeat_statement_token1] = ACTIONS(281), + [aux_sym__procedure_terminator_token1] = ACTIONS(283), + [aux_sym_procedure_parameter_definition_token1] = ACTIONS(285), + [aux_sym__function_terminator_token1] = ACTIONS(287), + [aux_sym_interface_statement_token1] = ACTIONS(289), + [aux_sym_using_statement_token1] = ACTIONS(291), + [aux_sym_on_error_phrase_token1] = ACTIONS(293), + [aux_sym_on_error_phrase_token3] = ACTIONS(295), + [aux_sym_do_block_token1] = ACTIONS(297), + [aux_sym__case_terminator_token1] = ACTIONS(299), + [aux_sym_find_statement_token1] = ACTIONS(301), + [aux_sym_assign_statement_token1] = ACTIONS(303), + [aux_sym_catch_statement_token1] = ACTIONS(305), + [aux_sym_finally_statement_token1] = ACTIONS(307), + [aux_sym_accumulate_statement_token1] = ACTIONS(309), + [anon_sym_ROUTINE_DASHLEVEL] = ACTIONS(311), + [anon_sym_BLOCK_DASHLEVEL] = ACTIONS(311), }, [173] = { - [sym_body] = STATE(3772), + [sym_body] = STATE(4037), [sym_comment] = STATE(173), - [sym_qualified_name] = STATE(4733), - [sym__block_terminator] = STATE(3438), + [sym_qualified_name] = STATE(4814), + [sym__block_terminator] = STATE(1520), [sym_include] = STATE(173), - [sym_assignment] = STATE(4314), - [sym_variable_definition] = STATE(1535), - [sym_variable_assignment] = STATE(1535), - [sym_buffer_definition] = STATE(1535), - [sym_query_definition] = STATE(1535), - [sym_function_call_statement] = STATE(1535), - [sym_function_call] = STATE(4086), - [sym_if_statement] = STATE(1535), - [sym_label] = STATE(1536), - [sym_repeat_statement] = STATE(1535), - [sym_procedure_statement] = STATE(1535), - [sym_procedure_parameter_definition] = STATE(1535), - [sym_function_statement] = STATE(1535), - [sym_return_statement] = STATE(1535), - [sym_interface_statement] = STATE(1535), - [sym_using_statement] = STATE(1535), - [sym_class_statement] = STATE(1535), - [sym_object_access] = STATE(3567), - [sym_stream_definition] = STATE(1535), - [sym_input_close_statement] = STATE(1535), - [sym_output_close_statement] = STATE(1535), - [sym__stream_statement] = STATE(1535), - [sym_input_stream_statement] = STATE(1537), - [sym_output_stream_statement] = STATE(1537), - [sym_do_block] = STATE(1535), - [sym_case_statement] = STATE(1535), - [sym_for_statement] = STATE(1535), - [sym_find_statement] = STATE(1535), - [sym_abl_statement] = STATE(1535), - [sym_assign_statement] = STATE(1535), - [sym_catch_statement] = STATE(1535), - [sym_finally_statement] = STATE(1535), - [sym_accumulate_statement] = STATE(1535), - [sym_undo_statement] = STATE(1535), - [sym_error_scope_statement] = STATE(1535), - [sym_temp_table_definition] = STATE(1535), - [sym_on_statement] = STATE(1535), - [sym__statement] = STATE(1538), - [aux_sym_source_code_repeat1] = STATE(276), - [sym_identifier] = ACTIONS(227), + [sym_assignment] = STATE(4463), + [sym_variable_definition] = STATE(1550), + [sym_variable_assignment] = STATE(1550), + [sym_buffer_definition] = STATE(1550), + [sym_query_definition] = STATE(1550), + [sym_function_call_statement] = STATE(1550), + [sym_function_call] = STATE(4558), + [sym_if_statement] = STATE(1550), + [sym_label] = STATE(1551), + [sym_repeat_statement] = STATE(1550), + [sym_procedure_statement] = STATE(1550), + [sym_procedure_parameter_definition] = STATE(1550), + [sym_function_statement] = STATE(1550), + [sym_return_statement] = STATE(1550), + [sym_interface_statement] = STATE(1550), + [sym_using_statement] = STATE(1550), + [sym_class_statement] = STATE(1550), + [sym_object_access] = STATE(3661), + [sym_stream_definition] = STATE(1550), + [sym_input_close_statement] = STATE(1550), + [sym_output_close_statement] = STATE(1550), + [sym__stream_statement] = STATE(1550), + [sym_input_stream_statement] = STATE(1552), + [sym_output_stream_statement] = STATE(1552), + [sym_do_block] = STATE(1550), + [sym_case_statement] = STATE(1550), + [sym_for_statement] = STATE(1550), + [sym_find_statement] = STATE(1550), + [sym_abl_statement] = STATE(1550), + [sym_assign_statement] = STATE(1550), + [sym_catch_statement] = STATE(1550), + [sym_finally_statement] = STATE(1550), + [sym_accumulate_statement] = STATE(1550), + [sym_undo_statement] = STATE(1550), + [sym_error_scope_statement] = STATE(1550), + [sym_temp_table_definition] = STATE(1550), + [sym_on_statement] = STATE(1550), + [sym__statement] = STATE(1553), + [aux_sym_source_code_repeat1] = STATE(286), + [sym_identifier] = ACTIONS(263), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), [anon_sym_LBRACE] = ACTIONS(7), - [aux_sym__block_terminator_token1] = ACTIONS(297), - [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), + [aux_sym__block_terminator_token1] = ACTIONS(327), + [aux_sym_input_expression_token1] = ACTIONS(267), + [aux_sym_primitive_type_token19] = ACTIONS(269), + [aux_sym_variable_definition_token1] = ACTIONS(271), + [aux_sym_variable_definition_token2] = ACTIONS(273), + [aux_sym_buffer_definition_token2] = ACTIONS(275), + [aux_sym_argument_mode_token1] = ACTIONS(277), + [aux_sym_if_statement_token1] = ACTIONS(279), + [aux_sym_repeat_statement_token1] = ACTIONS(281), + [aux_sym__procedure_terminator_token1] = ACTIONS(283), + [aux_sym_procedure_parameter_definition_token1] = ACTIONS(285), + [aux_sym__function_terminator_token1] = ACTIONS(287), + [aux_sym_interface_statement_token1] = ACTIONS(289), + [aux_sym_using_statement_token1] = ACTIONS(291), + [aux_sym_on_error_phrase_token1] = ACTIONS(293), + [aux_sym_on_error_phrase_token3] = ACTIONS(295), + [aux_sym_do_block_token1] = ACTIONS(297), + [aux_sym__case_terminator_token1] = ACTIONS(299), + [aux_sym_find_statement_token1] = ACTIONS(301), + [aux_sym_assign_statement_token1] = ACTIONS(303), + [aux_sym_catch_statement_token1] = ACTIONS(305), + [aux_sym_finally_statement_token1] = ACTIONS(307), + [aux_sym_accumulate_statement_token1] = ACTIONS(309), + [anon_sym_ROUTINE_DASHLEVEL] = ACTIONS(311), + [anon_sym_BLOCK_DASHLEVEL] = ACTIONS(311), }, [174] = { - [sym_body] = STATE(4004), + [sym_body] = STATE(4092), [sym_comment] = STATE(174), - [sym_qualified_name] = STATE(4733), - [sym__block_terminator] = STATE(911), + [sym_qualified_name] = STATE(4814), + [sym__block_terminator] = STATE(1185), [sym_include] = STATE(174), - [sym_assignment] = STATE(4314), - [sym_variable_definition] = STATE(1535), - [sym_variable_assignment] = STATE(1535), - [sym_buffer_definition] = STATE(1535), - [sym_query_definition] = STATE(1535), - [sym_function_call_statement] = STATE(1535), - [sym_function_call] = STATE(4086), - [sym_if_statement] = STATE(1535), - [sym_label] = STATE(1536), - [sym_repeat_statement] = STATE(1535), - [sym_procedure_statement] = STATE(1535), - [sym_procedure_parameter_definition] = STATE(1535), - [sym_function_statement] = STATE(1535), - [sym_return_statement] = STATE(1535), - [sym_interface_statement] = STATE(1535), - [sym_using_statement] = STATE(1535), - [sym_class_statement] = STATE(1535), - [sym_object_access] = STATE(3567), - [sym_stream_definition] = STATE(1535), - [sym_input_close_statement] = STATE(1535), - [sym_output_close_statement] = STATE(1535), - [sym__stream_statement] = STATE(1535), - [sym_input_stream_statement] = STATE(1537), - [sym_output_stream_statement] = STATE(1537), - [sym_do_block] = STATE(1535), - [sym_case_statement] = STATE(1535), - [sym_for_statement] = STATE(1535), - [sym_find_statement] = STATE(1535), - [sym_abl_statement] = STATE(1535), - [sym_assign_statement] = STATE(1535), - [sym_catch_statement] = STATE(1535), - [sym_finally_statement] = STATE(1535), - [sym_accumulate_statement] = STATE(1535), - [sym_undo_statement] = STATE(1535), - [sym_error_scope_statement] = STATE(1535), - [sym_temp_table_definition] = STATE(1535), - [sym_on_statement] = STATE(1535), - [sym__statement] = STATE(1538), - [aux_sym_source_code_repeat1] = STATE(276), - [sym_identifier] = ACTIONS(227), + [sym_assignment] = STATE(4463), + [sym_variable_definition] = STATE(1550), + [sym_variable_assignment] = STATE(1550), + [sym_buffer_definition] = STATE(1550), + [sym_query_definition] = STATE(1550), + [sym_function_call_statement] = STATE(1550), + [sym_function_call] = STATE(4558), + [sym_if_statement] = STATE(1550), + [sym_label] = STATE(1551), + [sym_repeat_statement] = STATE(1550), + [sym_procedure_statement] = STATE(1550), + [sym_procedure_parameter_definition] = STATE(1550), + [sym_function_statement] = STATE(1550), + [sym_return_statement] = STATE(1550), + [sym_interface_statement] = STATE(1550), + [sym_using_statement] = STATE(1550), + [sym_class_statement] = STATE(1550), + [sym_object_access] = STATE(3661), + [sym_stream_definition] = STATE(1550), + [sym_input_close_statement] = STATE(1550), + [sym_output_close_statement] = STATE(1550), + [sym__stream_statement] = STATE(1550), + [sym_input_stream_statement] = STATE(1552), + [sym_output_stream_statement] = STATE(1552), + [sym_do_block] = STATE(1550), + [sym_case_statement] = STATE(1550), + [sym_for_statement] = STATE(1550), + [sym_find_statement] = STATE(1550), + [sym_abl_statement] = STATE(1550), + [sym_assign_statement] = STATE(1550), + [sym_catch_statement] = STATE(1550), + [sym_finally_statement] = STATE(1550), + [sym_accumulate_statement] = STATE(1550), + [sym_undo_statement] = STATE(1550), + [sym_error_scope_statement] = STATE(1550), + [sym_temp_table_definition] = STATE(1550), + [sym_on_statement] = STATE(1550), + [sym__statement] = STATE(1553), + [aux_sym_source_code_repeat1] = STATE(286), + [sym_identifier] = ACTIONS(263), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), [anon_sym_LBRACE] = ACTIONS(7), - [aux_sym__block_terminator_token1] = ACTIONS(303), - [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), + [aux_sym__block_terminator_token1] = ACTIONS(327), + [aux_sym_input_expression_token1] = ACTIONS(267), + [aux_sym_primitive_type_token19] = ACTIONS(269), + [aux_sym_variable_definition_token1] = ACTIONS(271), + [aux_sym_variable_definition_token2] = ACTIONS(273), + [aux_sym_buffer_definition_token2] = ACTIONS(275), + [aux_sym_argument_mode_token1] = ACTIONS(277), + [aux_sym_if_statement_token1] = ACTIONS(279), + [aux_sym_repeat_statement_token1] = ACTIONS(281), + [aux_sym__procedure_terminator_token1] = ACTIONS(283), + [aux_sym_procedure_parameter_definition_token1] = ACTIONS(285), + [aux_sym__function_terminator_token1] = ACTIONS(287), + [aux_sym_interface_statement_token1] = ACTIONS(289), + [aux_sym_using_statement_token1] = ACTIONS(291), + [aux_sym_on_error_phrase_token1] = ACTIONS(293), + [aux_sym_on_error_phrase_token3] = ACTIONS(295), + [aux_sym_do_block_token1] = ACTIONS(297), + [aux_sym__case_terminator_token1] = ACTIONS(299), + [aux_sym_find_statement_token1] = ACTIONS(301), + [aux_sym_assign_statement_token1] = ACTIONS(303), + [aux_sym_catch_statement_token1] = ACTIONS(305), + [aux_sym_finally_statement_token1] = ACTIONS(307), + [aux_sym_accumulate_statement_token1] = ACTIONS(309), + [anon_sym_ROUTINE_DASHLEVEL] = ACTIONS(311), + [anon_sym_BLOCK_DASHLEVEL] = ACTIONS(311), }, [175] = { - [sym_body] = STATE(3815), + [sym_body] = STATE(3980), [sym_comment] = STATE(175), - [sym_qualified_name] = STATE(4733), - [sym__block_terminator] = STATE(942), + [sym_qualified_name] = STATE(4814), + [sym__block_terminator] = STATE(1264), [sym_include] = STATE(175), - [sym_assignment] = STATE(4314), - [sym_variable_definition] = STATE(1535), - [sym_variable_assignment] = STATE(1535), - [sym_buffer_definition] = STATE(1535), - [sym_query_definition] = STATE(1535), - [sym_function_call_statement] = STATE(1535), - [sym_function_call] = STATE(4086), - [sym_if_statement] = STATE(1535), - [sym_label] = STATE(1536), - [sym_repeat_statement] = STATE(1535), - [sym_procedure_statement] = STATE(1535), - [sym_procedure_parameter_definition] = STATE(1535), - [sym_function_statement] = STATE(1535), - [sym_return_statement] = STATE(1535), - [sym_interface_statement] = STATE(1535), - [sym_using_statement] = STATE(1535), - [sym_class_statement] = STATE(1535), - [sym_object_access] = STATE(3567), - [sym_stream_definition] = STATE(1535), - [sym_input_close_statement] = STATE(1535), - [sym_output_close_statement] = STATE(1535), - [sym__stream_statement] = STATE(1535), - [sym_input_stream_statement] = STATE(1537), - [sym_output_stream_statement] = STATE(1537), - [sym_do_block] = STATE(1535), - [sym_case_statement] = STATE(1535), - [sym_for_statement] = STATE(1535), - [sym_find_statement] = STATE(1535), - [sym_abl_statement] = STATE(1535), - [sym_assign_statement] = STATE(1535), - [sym_catch_statement] = STATE(1535), - [sym_finally_statement] = STATE(1535), - [sym_accumulate_statement] = STATE(1535), - [sym_undo_statement] = STATE(1535), - [sym_error_scope_statement] = STATE(1535), - [sym_temp_table_definition] = STATE(1535), - [sym_on_statement] = STATE(1535), - [sym__statement] = STATE(1538), - [aux_sym_source_code_repeat1] = STATE(276), - [sym_identifier] = ACTIONS(227), + [sym_assignment] = STATE(4463), + [sym_variable_definition] = STATE(1550), + [sym_variable_assignment] = STATE(1550), + [sym_buffer_definition] = STATE(1550), + [sym_query_definition] = STATE(1550), + [sym_function_call_statement] = STATE(1550), + [sym_function_call] = STATE(4558), + [sym_if_statement] = STATE(1550), + [sym_label] = STATE(1551), + [sym_repeat_statement] = STATE(1550), + [sym_procedure_statement] = STATE(1550), + [sym_procedure_parameter_definition] = STATE(1550), + [sym_function_statement] = STATE(1550), + [sym_return_statement] = STATE(1550), + [sym_interface_statement] = STATE(1550), + [sym_using_statement] = STATE(1550), + [sym_class_statement] = STATE(1550), + [sym_object_access] = STATE(3661), + [sym_stream_definition] = STATE(1550), + [sym_input_close_statement] = STATE(1550), + [sym_output_close_statement] = STATE(1550), + [sym__stream_statement] = STATE(1550), + [sym_input_stream_statement] = STATE(1552), + [sym_output_stream_statement] = STATE(1552), + [sym_do_block] = STATE(1550), + [sym_case_statement] = STATE(1550), + [sym_for_statement] = STATE(1550), + [sym_find_statement] = STATE(1550), + [sym_abl_statement] = STATE(1550), + [sym_assign_statement] = STATE(1550), + [sym_catch_statement] = STATE(1550), + [sym_finally_statement] = STATE(1550), + [sym_accumulate_statement] = STATE(1550), + [sym_undo_statement] = STATE(1550), + [sym_error_scope_statement] = STATE(1550), + [sym_temp_table_definition] = STATE(1550), + [sym_on_statement] = STATE(1550), + [sym__statement] = STATE(1553), + [aux_sym_source_code_repeat1] = STATE(286), + [sym_identifier] = ACTIONS(263), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), [anon_sym_LBRACE] = ACTIONS(7), - [aux_sym__block_terminator_token1] = ACTIONS(301), - [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), + [aux_sym__block_terminator_token1] = ACTIONS(327), + [aux_sym_input_expression_token1] = ACTIONS(267), + [aux_sym_primitive_type_token19] = ACTIONS(269), + [aux_sym_variable_definition_token1] = ACTIONS(271), + [aux_sym_variable_definition_token2] = ACTIONS(273), + [aux_sym_buffer_definition_token2] = ACTIONS(275), + [aux_sym_argument_mode_token1] = ACTIONS(277), + [aux_sym_if_statement_token1] = ACTIONS(279), + [aux_sym_repeat_statement_token1] = ACTIONS(281), + [aux_sym__procedure_terminator_token1] = ACTIONS(283), + [aux_sym_procedure_parameter_definition_token1] = ACTIONS(285), + [aux_sym__function_terminator_token1] = ACTIONS(287), + [aux_sym_interface_statement_token1] = ACTIONS(289), + [aux_sym_using_statement_token1] = ACTIONS(291), + [aux_sym_on_error_phrase_token1] = ACTIONS(293), + [aux_sym_on_error_phrase_token3] = ACTIONS(295), + [aux_sym_do_block_token1] = ACTIONS(297), + [aux_sym__case_terminator_token1] = ACTIONS(299), + [aux_sym_find_statement_token1] = ACTIONS(301), + [aux_sym_assign_statement_token1] = ACTIONS(303), + [aux_sym_catch_statement_token1] = ACTIONS(305), + [aux_sym_finally_statement_token1] = ACTIONS(307), + [aux_sym_accumulate_statement_token1] = ACTIONS(309), + [anon_sym_ROUTINE_DASHLEVEL] = ACTIONS(311), + [anon_sym_BLOCK_DASHLEVEL] = ACTIONS(311), }, [176] = { - [sym_body] = STATE(4063), + [sym_body] = STATE(3845), [sym_comment] = STATE(176), - [sym_qualified_name] = STATE(4733), - [sym__block_terminator] = STATE(1193), + [sym_qualified_name] = STATE(4814), + [sym__block_terminator] = STATE(3611), [sym_include] = STATE(176), - [sym_assignment] = STATE(4314), - [sym_variable_definition] = STATE(1535), - [sym_variable_assignment] = STATE(1535), - [sym_buffer_definition] = STATE(1535), - [sym_query_definition] = STATE(1535), - [sym_function_call_statement] = STATE(1535), - [sym_function_call] = STATE(4086), - [sym_if_statement] = STATE(1535), - [sym_label] = STATE(1536), - [sym_repeat_statement] = STATE(1535), - [sym_procedure_statement] = STATE(1535), - [sym_procedure_parameter_definition] = STATE(1535), - [sym_function_statement] = STATE(1535), - [sym_return_statement] = STATE(1535), - [sym_interface_statement] = STATE(1535), - [sym_using_statement] = STATE(1535), - [sym_class_statement] = STATE(1535), - [sym_object_access] = STATE(3567), - [sym_stream_definition] = STATE(1535), - [sym_input_close_statement] = STATE(1535), - [sym_output_close_statement] = STATE(1535), - [sym__stream_statement] = STATE(1535), - [sym_input_stream_statement] = STATE(1537), - [sym_output_stream_statement] = STATE(1537), - [sym_do_block] = STATE(1535), - [sym_case_statement] = STATE(1535), - [sym_for_statement] = STATE(1535), - [sym_find_statement] = STATE(1535), - [sym_abl_statement] = STATE(1535), - [sym_assign_statement] = STATE(1535), - [sym_catch_statement] = STATE(1535), - [sym_finally_statement] = STATE(1535), - [sym_accumulate_statement] = STATE(1535), - [sym_undo_statement] = STATE(1535), - [sym_error_scope_statement] = STATE(1535), - [sym_temp_table_definition] = STATE(1535), - [sym_on_statement] = STATE(1535), - [sym__statement] = STATE(1538), - [aux_sym_source_code_repeat1] = STATE(276), - [sym_identifier] = ACTIONS(227), + [sym_assignment] = STATE(4463), + [sym_variable_definition] = STATE(1550), + [sym_variable_assignment] = STATE(1550), + [sym_buffer_definition] = STATE(1550), + [sym_query_definition] = STATE(1550), + [sym_function_call_statement] = STATE(1550), + [sym_function_call] = STATE(4558), + [sym_if_statement] = STATE(1550), + [sym_label] = STATE(1551), + [sym_repeat_statement] = STATE(1550), + [sym_procedure_statement] = STATE(1550), + [sym_procedure_parameter_definition] = STATE(1550), + [sym_function_statement] = STATE(1550), + [sym_return_statement] = STATE(1550), + [sym_interface_statement] = STATE(1550), + [sym_using_statement] = STATE(1550), + [sym_class_statement] = STATE(1550), + [sym_object_access] = STATE(3661), + [sym_stream_definition] = STATE(1550), + [sym_input_close_statement] = STATE(1550), + [sym_output_close_statement] = STATE(1550), + [sym__stream_statement] = STATE(1550), + [sym_input_stream_statement] = STATE(1552), + [sym_output_stream_statement] = STATE(1552), + [sym_do_block] = STATE(1550), + [sym_case_statement] = STATE(1550), + [sym_for_statement] = STATE(1550), + [sym_find_statement] = STATE(1550), + [sym_abl_statement] = STATE(1550), + [sym_assign_statement] = STATE(1550), + [sym_catch_statement] = STATE(1550), + [sym_finally_statement] = STATE(1550), + [sym_accumulate_statement] = STATE(1550), + [sym_undo_statement] = STATE(1550), + [sym_error_scope_statement] = STATE(1550), + [sym_temp_table_definition] = STATE(1550), + [sym_on_statement] = STATE(1550), + [sym__statement] = STATE(1553), + [aux_sym_source_code_repeat1] = STATE(286), + [sym_identifier] = ACTIONS(263), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), [anon_sym_LBRACE] = ACTIONS(7), - [aux_sym__block_terminator_token1] = ACTIONS(311), - [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), + [aux_sym__block_terminator_token1] = ACTIONS(319), + [aux_sym_input_expression_token1] = ACTIONS(267), + [aux_sym_primitive_type_token19] = ACTIONS(269), + [aux_sym_variable_definition_token1] = ACTIONS(271), + [aux_sym_variable_definition_token2] = ACTIONS(273), + [aux_sym_buffer_definition_token2] = ACTIONS(275), + [aux_sym_argument_mode_token1] = ACTIONS(277), + [aux_sym_if_statement_token1] = ACTIONS(279), + [aux_sym_repeat_statement_token1] = ACTIONS(281), + [aux_sym__procedure_terminator_token1] = ACTIONS(283), + [aux_sym_procedure_parameter_definition_token1] = ACTIONS(285), + [aux_sym__function_terminator_token1] = ACTIONS(287), + [aux_sym_interface_statement_token1] = ACTIONS(289), + [aux_sym_using_statement_token1] = ACTIONS(291), + [aux_sym_on_error_phrase_token1] = ACTIONS(293), + [aux_sym_on_error_phrase_token3] = ACTIONS(295), + [aux_sym_do_block_token1] = ACTIONS(297), + [aux_sym__case_terminator_token1] = ACTIONS(299), + [aux_sym_find_statement_token1] = ACTIONS(301), + [aux_sym_assign_statement_token1] = ACTIONS(303), + [aux_sym_catch_statement_token1] = ACTIONS(305), + [aux_sym_finally_statement_token1] = ACTIONS(307), + [aux_sym_accumulate_statement_token1] = ACTIONS(309), + [anon_sym_ROUTINE_DASHLEVEL] = ACTIONS(311), + [anon_sym_BLOCK_DASHLEVEL] = ACTIONS(311), }, [177] = { - [sym_body] = STATE(3831), + [sym_body] = STATE(3838), [sym_comment] = STATE(177), - [sym_qualified_name] = STATE(4733), - [sym__block_terminator] = STATE(938), + [sym_qualified_name] = STATE(4814), + [sym__block_terminator] = STATE(3607), [sym_include] = STATE(177), - [sym_assignment] = STATE(4314), - [sym_variable_definition] = STATE(1535), - [sym_variable_assignment] = STATE(1535), - [sym_buffer_definition] = STATE(1535), - [sym_query_definition] = STATE(1535), - [sym_function_call_statement] = STATE(1535), - [sym_function_call] = STATE(4086), - [sym_if_statement] = STATE(1535), - [sym_label] = STATE(1536), - [sym_repeat_statement] = STATE(1535), - [sym_procedure_statement] = STATE(1535), - [sym_procedure_parameter_definition] = STATE(1535), - [sym_function_statement] = STATE(1535), - [sym_return_statement] = STATE(1535), - [sym_interface_statement] = STATE(1535), - [sym_using_statement] = STATE(1535), - [sym_class_statement] = STATE(1535), - [sym_object_access] = STATE(3567), - [sym_stream_definition] = STATE(1535), - [sym_input_close_statement] = STATE(1535), - [sym_output_close_statement] = STATE(1535), - [sym__stream_statement] = STATE(1535), - [sym_input_stream_statement] = STATE(1537), - [sym_output_stream_statement] = STATE(1537), - [sym_do_block] = STATE(1535), - [sym_case_statement] = STATE(1535), - [sym_for_statement] = STATE(1535), - [sym_find_statement] = STATE(1535), - [sym_abl_statement] = STATE(1535), - [sym_assign_statement] = STATE(1535), - [sym_catch_statement] = STATE(1535), - [sym_finally_statement] = STATE(1535), - [sym_accumulate_statement] = STATE(1535), - [sym_undo_statement] = STATE(1535), - [sym_error_scope_statement] = STATE(1535), - [sym_temp_table_definition] = STATE(1535), - [sym_on_statement] = STATE(1535), - [sym__statement] = STATE(1538), - [aux_sym_source_code_repeat1] = STATE(276), - [sym_identifier] = ACTIONS(227), + [sym_assignment] = STATE(4463), + [sym_variable_definition] = STATE(1550), + [sym_variable_assignment] = STATE(1550), + [sym_buffer_definition] = STATE(1550), + [sym_query_definition] = STATE(1550), + [sym_function_call_statement] = STATE(1550), + [sym_function_call] = STATE(4558), + [sym_if_statement] = STATE(1550), + [sym_label] = STATE(1551), + [sym_repeat_statement] = STATE(1550), + [sym_procedure_statement] = STATE(1550), + [sym_procedure_parameter_definition] = STATE(1550), + [sym_function_statement] = STATE(1550), + [sym_return_statement] = STATE(1550), + [sym_interface_statement] = STATE(1550), + [sym_using_statement] = STATE(1550), + [sym_class_statement] = STATE(1550), + [sym_object_access] = STATE(3661), + [sym_stream_definition] = STATE(1550), + [sym_input_close_statement] = STATE(1550), + [sym_output_close_statement] = STATE(1550), + [sym__stream_statement] = STATE(1550), + [sym_input_stream_statement] = STATE(1552), + [sym_output_stream_statement] = STATE(1552), + [sym_do_block] = STATE(1550), + [sym_case_statement] = STATE(1550), + [sym_for_statement] = STATE(1550), + [sym_find_statement] = STATE(1550), + [sym_abl_statement] = STATE(1550), + [sym_assign_statement] = STATE(1550), + [sym_catch_statement] = STATE(1550), + [sym_finally_statement] = STATE(1550), + [sym_accumulate_statement] = STATE(1550), + [sym_undo_statement] = STATE(1550), + [sym_error_scope_statement] = STATE(1550), + [sym_temp_table_definition] = STATE(1550), + [sym_on_statement] = STATE(1550), + [sym__statement] = STATE(1553), + [aux_sym_source_code_repeat1] = STATE(286), + [sym_identifier] = ACTIONS(263), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), [anon_sym_LBRACE] = ACTIONS(7), - [aux_sym__block_terminator_token1] = ACTIONS(301), - [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), + [aux_sym__block_terminator_token1] = ACTIONS(319), + [aux_sym_input_expression_token1] = ACTIONS(267), + [aux_sym_primitive_type_token19] = ACTIONS(269), + [aux_sym_variable_definition_token1] = ACTIONS(271), + [aux_sym_variable_definition_token2] = ACTIONS(273), + [aux_sym_buffer_definition_token2] = ACTIONS(275), + [aux_sym_argument_mode_token1] = ACTIONS(277), + [aux_sym_if_statement_token1] = ACTIONS(279), + [aux_sym_repeat_statement_token1] = ACTIONS(281), + [aux_sym__procedure_terminator_token1] = ACTIONS(283), + [aux_sym_procedure_parameter_definition_token1] = ACTIONS(285), + [aux_sym__function_terminator_token1] = ACTIONS(287), + [aux_sym_interface_statement_token1] = ACTIONS(289), + [aux_sym_using_statement_token1] = ACTIONS(291), + [aux_sym_on_error_phrase_token1] = ACTIONS(293), + [aux_sym_on_error_phrase_token3] = ACTIONS(295), + [aux_sym_do_block_token1] = ACTIONS(297), + [aux_sym__case_terminator_token1] = ACTIONS(299), + [aux_sym_find_statement_token1] = ACTIONS(301), + [aux_sym_assign_statement_token1] = ACTIONS(303), + [aux_sym_catch_statement_token1] = ACTIONS(305), + [aux_sym_finally_statement_token1] = ACTIONS(307), + [aux_sym_accumulate_statement_token1] = ACTIONS(309), + [anon_sym_ROUTINE_DASHLEVEL] = ACTIONS(311), + [anon_sym_BLOCK_DASHLEVEL] = ACTIONS(311), }, [178] = { - [sym_body] = STATE(3827), + [sym_body] = STATE(3957), [sym_comment] = STATE(178), - [sym_qualified_name] = STATE(4733), - [sym__block_terminator] = STATE(3482), + [sym_qualified_name] = STATE(4814), + [sym__block_terminator] = STATE(1284), [sym_include] = STATE(178), - [sym_assignment] = STATE(4314), - [sym_variable_definition] = STATE(1535), - [sym_variable_assignment] = STATE(1535), - [sym_buffer_definition] = STATE(1535), - [sym_query_definition] = STATE(1535), - [sym_function_call_statement] = STATE(1535), - [sym_function_call] = STATE(4086), - [sym_if_statement] = STATE(1535), - [sym_label] = STATE(1536), - [sym_repeat_statement] = STATE(1535), - [sym_procedure_statement] = STATE(1535), - [sym_procedure_parameter_definition] = STATE(1535), - [sym_function_statement] = STATE(1535), - [sym_return_statement] = STATE(1535), - [sym_interface_statement] = STATE(1535), - [sym_using_statement] = STATE(1535), - [sym_class_statement] = STATE(1535), - [sym_object_access] = STATE(3567), - [sym_stream_definition] = STATE(1535), - [sym_input_close_statement] = STATE(1535), - [sym_output_close_statement] = STATE(1535), - [sym__stream_statement] = STATE(1535), - [sym_input_stream_statement] = STATE(1537), - [sym_output_stream_statement] = STATE(1537), - [sym_do_block] = STATE(1535), - [sym_case_statement] = STATE(1535), - [sym_for_statement] = STATE(1535), - [sym_find_statement] = STATE(1535), - [sym_abl_statement] = STATE(1535), - [sym_assign_statement] = STATE(1535), - [sym_catch_statement] = STATE(1535), - [sym_finally_statement] = STATE(1535), - [sym_accumulate_statement] = STATE(1535), - [sym_undo_statement] = STATE(1535), - [sym_error_scope_statement] = STATE(1535), - [sym_temp_table_definition] = STATE(1535), - [sym_on_statement] = STATE(1535), - [sym__statement] = STATE(1538), - [aux_sym_source_code_repeat1] = STATE(276), - [sym_identifier] = ACTIONS(227), + [sym_assignment] = STATE(4463), + [sym_variable_definition] = STATE(1550), + [sym_variable_assignment] = STATE(1550), + [sym_buffer_definition] = STATE(1550), + [sym_query_definition] = STATE(1550), + [sym_function_call_statement] = STATE(1550), + [sym_function_call] = STATE(4558), + [sym_if_statement] = STATE(1550), + [sym_label] = STATE(1551), + [sym_repeat_statement] = STATE(1550), + [sym_procedure_statement] = STATE(1550), + [sym_procedure_parameter_definition] = STATE(1550), + [sym_function_statement] = STATE(1550), + [sym_return_statement] = STATE(1550), + [sym_interface_statement] = STATE(1550), + [sym_using_statement] = STATE(1550), + [sym_class_statement] = STATE(1550), + [sym_object_access] = STATE(3661), + [sym_stream_definition] = STATE(1550), + [sym_input_close_statement] = STATE(1550), + [sym_output_close_statement] = STATE(1550), + [sym__stream_statement] = STATE(1550), + [sym_input_stream_statement] = STATE(1552), + [sym_output_stream_statement] = STATE(1552), + [sym_do_block] = STATE(1550), + [sym_case_statement] = STATE(1550), + [sym_for_statement] = STATE(1550), + [sym_find_statement] = STATE(1550), + [sym_abl_statement] = STATE(1550), + [sym_assign_statement] = STATE(1550), + [sym_catch_statement] = STATE(1550), + [sym_finally_statement] = STATE(1550), + [sym_accumulate_statement] = STATE(1550), + [sym_undo_statement] = STATE(1550), + [sym_error_scope_statement] = STATE(1550), + [sym_temp_table_definition] = STATE(1550), + [sym_on_statement] = STATE(1550), + [sym__statement] = STATE(1553), + [aux_sym_source_code_repeat1] = STATE(286), + [sym_identifier] = ACTIONS(263), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), [anon_sym_LBRACE] = ACTIONS(7), - [aux_sym__block_terminator_token1] = ACTIONS(297), - [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), + [aux_sym__block_terminator_token1] = ACTIONS(327), + [aux_sym_input_expression_token1] = ACTIONS(267), + [aux_sym_primitive_type_token19] = ACTIONS(269), + [aux_sym_variable_definition_token1] = ACTIONS(271), + [aux_sym_variable_definition_token2] = ACTIONS(273), + [aux_sym_buffer_definition_token2] = ACTIONS(275), + [aux_sym_argument_mode_token1] = ACTIONS(277), + [aux_sym_if_statement_token1] = ACTIONS(279), + [aux_sym_repeat_statement_token1] = ACTIONS(281), + [aux_sym__procedure_terminator_token1] = ACTIONS(283), + [aux_sym_procedure_parameter_definition_token1] = ACTIONS(285), + [aux_sym__function_terminator_token1] = ACTIONS(287), + [aux_sym_interface_statement_token1] = ACTIONS(289), + [aux_sym_using_statement_token1] = ACTIONS(291), + [aux_sym_on_error_phrase_token1] = ACTIONS(293), + [aux_sym_on_error_phrase_token3] = ACTIONS(295), + [aux_sym_do_block_token1] = ACTIONS(297), + [aux_sym__case_terminator_token1] = ACTIONS(299), + [aux_sym_find_statement_token1] = ACTIONS(301), + [aux_sym_assign_statement_token1] = ACTIONS(303), + [aux_sym_catch_statement_token1] = ACTIONS(305), + [aux_sym_finally_statement_token1] = ACTIONS(307), + [aux_sym_accumulate_statement_token1] = ACTIONS(309), + [anon_sym_ROUTINE_DASHLEVEL] = ACTIONS(311), + [anon_sym_BLOCK_DASHLEVEL] = ACTIONS(311), }, [179] = { - [sym_body] = STATE(3810), + [sym_body] = STATE(3815), [sym_comment] = STATE(179), - [sym_qualified_name] = STATE(4733), - [sym__block_terminator] = STATE(3478), + [sym_qualified_name] = STATE(4814), + [sym__block_terminator] = STATE(3597), [sym_include] = STATE(179), - [sym_assignment] = STATE(4314), - [sym_variable_definition] = STATE(1535), - [sym_variable_assignment] = STATE(1535), - [sym_buffer_definition] = STATE(1535), - [sym_query_definition] = STATE(1535), - [sym_function_call_statement] = STATE(1535), - [sym_function_call] = STATE(4086), - [sym_if_statement] = STATE(1535), - [sym_label] = STATE(1536), - [sym_repeat_statement] = STATE(1535), - [sym_procedure_statement] = STATE(1535), - [sym_procedure_parameter_definition] = STATE(1535), - [sym_function_statement] = STATE(1535), - [sym_return_statement] = STATE(1535), - [sym_interface_statement] = STATE(1535), - [sym_using_statement] = STATE(1535), - [sym_class_statement] = STATE(1535), - [sym_object_access] = STATE(3567), - [sym_stream_definition] = STATE(1535), - [sym_input_close_statement] = STATE(1535), - [sym_output_close_statement] = STATE(1535), - [sym__stream_statement] = STATE(1535), - [sym_input_stream_statement] = STATE(1537), - [sym_output_stream_statement] = STATE(1537), - [sym_do_block] = STATE(1535), - [sym_case_statement] = STATE(1535), - [sym_for_statement] = STATE(1535), - [sym_find_statement] = STATE(1535), - [sym_abl_statement] = STATE(1535), - [sym_assign_statement] = STATE(1535), - [sym_catch_statement] = STATE(1535), - [sym_finally_statement] = STATE(1535), - [sym_accumulate_statement] = STATE(1535), - [sym_undo_statement] = STATE(1535), - [sym_error_scope_statement] = STATE(1535), - [sym_temp_table_definition] = STATE(1535), - [sym_on_statement] = STATE(1535), - [sym__statement] = STATE(1538), - [aux_sym_source_code_repeat1] = STATE(276), - [sym_identifier] = ACTIONS(227), + [sym_assignment] = STATE(4463), + [sym_variable_definition] = STATE(1550), + [sym_variable_assignment] = STATE(1550), + [sym_buffer_definition] = STATE(1550), + [sym_query_definition] = STATE(1550), + [sym_function_call_statement] = STATE(1550), + [sym_function_call] = STATE(4558), + [sym_if_statement] = STATE(1550), + [sym_label] = STATE(1551), + [sym_repeat_statement] = STATE(1550), + [sym_procedure_statement] = STATE(1550), + [sym_procedure_parameter_definition] = STATE(1550), + [sym_function_statement] = STATE(1550), + [sym_return_statement] = STATE(1550), + [sym_interface_statement] = STATE(1550), + [sym_using_statement] = STATE(1550), + [sym_class_statement] = STATE(1550), + [sym_object_access] = STATE(3661), + [sym_stream_definition] = STATE(1550), + [sym_input_close_statement] = STATE(1550), + [sym_output_close_statement] = STATE(1550), + [sym__stream_statement] = STATE(1550), + [sym_input_stream_statement] = STATE(1552), + [sym_output_stream_statement] = STATE(1552), + [sym_do_block] = STATE(1550), + [sym_case_statement] = STATE(1550), + [sym_for_statement] = STATE(1550), + [sym_find_statement] = STATE(1550), + [sym_abl_statement] = STATE(1550), + [sym_assign_statement] = STATE(1550), + [sym_catch_statement] = STATE(1550), + [sym_finally_statement] = STATE(1550), + [sym_accumulate_statement] = STATE(1550), + [sym_undo_statement] = STATE(1550), + [sym_error_scope_statement] = STATE(1550), + [sym_temp_table_definition] = STATE(1550), + [sym_on_statement] = STATE(1550), + [sym__statement] = STATE(1553), + [aux_sym_source_code_repeat1] = STATE(286), + [sym_identifier] = ACTIONS(263), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), [anon_sym_LBRACE] = ACTIONS(7), - [aux_sym__block_terminator_token1] = ACTIONS(297), - [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), + [aux_sym__block_terminator_token1] = ACTIONS(319), + [aux_sym_input_expression_token1] = ACTIONS(267), + [aux_sym_primitive_type_token19] = ACTIONS(269), + [aux_sym_variable_definition_token1] = ACTIONS(271), + [aux_sym_variable_definition_token2] = ACTIONS(273), + [aux_sym_buffer_definition_token2] = ACTIONS(275), + [aux_sym_argument_mode_token1] = ACTIONS(277), + [aux_sym_if_statement_token1] = ACTIONS(279), + [aux_sym_repeat_statement_token1] = ACTIONS(281), + [aux_sym__procedure_terminator_token1] = ACTIONS(283), + [aux_sym_procedure_parameter_definition_token1] = ACTIONS(285), + [aux_sym__function_terminator_token1] = ACTIONS(287), + [aux_sym_interface_statement_token1] = ACTIONS(289), + [aux_sym_using_statement_token1] = ACTIONS(291), + [aux_sym_on_error_phrase_token1] = ACTIONS(293), + [aux_sym_on_error_phrase_token3] = ACTIONS(295), + [aux_sym_do_block_token1] = ACTIONS(297), + [aux_sym__case_terminator_token1] = ACTIONS(299), + [aux_sym_find_statement_token1] = ACTIONS(301), + [aux_sym_assign_statement_token1] = ACTIONS(303), + [aux_sym_catch_statement_token1] = ACTIONS(305), + [aux_sym_finally_statement_token1] = ACTIONS(307), + [aux_sym_accumulate_statement_token1] = ACTIONS(309), + [anon_sym_ROUTINE_DASHLEVEL] = ACTIONS(311), + [anon_sym_BLOCK_DASHLEVEL] = ACTIONS(311), }, [180] = { - [sym_body] = STATE(4061), + [sym_body] = STATE(3952), [sym_comment] = STATE(180), - [sym_qualified_name] = STATE(4733), - [sym__block_terminator] = STATE(1323), + [sym_qualified_name] = STATE(4814), + [sym__block_terminator] = STATE(1336), [sym_include] = STATE(180), - [sym_assignment] = STATE(4314), - [sym_variable_definition] = STATE(1535), - [sym_variable_assignment] = STATE(1535), - [sym_buffer_definition] = STATE(1535), - [sym_query_definition] = STATE(1535), - [sym_function_call_statement] = STATE(1535), - [sym_function_call] = STATE(4086), - [sym_if_statement] = STATE(1535), - [sym_label] = STATE(1536), - [sym_repeat_statement] = STATE(1535), - [sym_procedure_statement] = STATE(1535), - [sym_procedure_parameter_definition] = STATE(1535), - [sym_function_statement] = STATE(1535), - [sym_return_statement] = STATE(1535), - [sym_interface_statement] = STATE(1535), - [sym_using_statement] = STATE(1535), - [sym_class_statement] = STATE(1535), - [sym_object_access] = STATE(3567), - [sym_stream_definition] = STATE(1535), - [sym_input_close_statement] = STATE(1535), - [sym_output_close_statement] = STATE(1535), - [sym__stream_statement] = STATE(1535), - [sym_input_stream_statement] = STATE(1537), - [sym_output_stream_statement] = STATE(1537), - [sym_do_block] = STATE(1535), - [sym_case_statement] = STATE(1535), - [sym_for_statement] = STATE(1535), - [sym_find_statement] = STATE(1535), - [sym_abl_statement] = STATE(1535), - [sym_assign_statement] = STATE(1535), - [sym_catch_statement] = STATE(1535), - [sym_finally_statement] = STATE(1535), - [sym_accumulate_statement] = STATE(1535), - [sym_undo_statement] = STATE(1535), - [sym_error_scope_statement] = STATE(1535), - [sym_temp_table_definition] = STATE(1535), - [sym_on_statement] = STATE(1535), - [sym__statement] = STATE(1538), - [aux_sym_source_code_repeat1] = STATE(276), - [sym_identifier] = ACTIONS(227), + [sym_assignment] = STATE(4463), + [sym_variable_definition] = STATE(1550), + [sym_variable_assignment] = STATE(1550), + [sym_buffer_definition] = STATE(1550), + [sym_query_definition] = STATE(1550), + [sym_function_call_statement] = STATE(1550), + [sym_function_call] = STATE(4558), + [sym_if_statement] = STATE(1550), + [sym_label] = STATE(1551), + [sym_repeat_statement] = STATE(1550), + [sym_procedure_statement] = STATE(1550), + [sym_procedure_parameter_definition] = STATE(1550), + [sym_function_statement] = STATE(1550), + [sym_return_statement] = STATE(1550), + [sym_interface_statement] = STATE(1550), + [sym_using_statement] = STATE(1550), + [sym_class_statement] = STATE(1550), + [sym_object_access] = STATE(3661), + [sym_stream_definition] = STATE(1550), + [sym_input_close_statement] = STATE(1550), + [sym_output_close_statement] = STATE(1550), + [sym__stream_statement] = STATE(1550), + [sym_input_stream_statement] = STATE(1552), + [sym_output_stream_statement] = STATE(1552), + [sym_do_block] = STATE(1550), + [sym_case_statement] = STATE(1550), + [sym_for_statement] = STATE(1550), + [sym_find_statement] = STATE(1550), + [sym_abl_statement] = STATE(1550), + [sym_assign_statement] = STATE(1550), + [sym_catch_statement] = STATE(1550), + [sym_finally_statement] = STATE(1550), + [sym_accumulate_statement] = STATE(1550), + [sym_undo_statement] = STATE(1550), + [sym_error_scope_statement] = STATE(1550), + [sym_temp_table_definition] = STATE(1550), + [sym_on_statement] = STATE(1550), + [sym__statement] = STATE(1553), + [aux_sym_source_code_repeat1] = STATE(286), + [sym_identifier] = ACTIONS(263), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), [anon_sym_LBRACE] = ACTIONS(7), - [aux_sym__block_terminator_token1] = ACTIONS(299), - [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), + [aux_sym__block_terminator_token1] = ACTIONS(327), + [aux_sym_input_expression_token1] = ACTIONS(267), + [aux_sym_primitive_type_token19] = ACTIONS(269), + [aux_sym_variable_definition_token1] = ACTIONS(271), + [aux_sym_variable_definition_token2] = ACTIONS(273), + [aux_sym_buffer_definition_token2] = ACTIONS(275), + [aux_sym_argument_mode_token1] = ACTIONS(277), + [aux_sym_if_statement_token1] = ACTIONS(279), + [aux_sym_repeat_statement_token1] = ACTIONS(281), + [aux_sym__procedure_terminator_token1] = ACTIONS(283), + [aux_sym_procedure_parameter_definition_token1] = ACTIONS(285), + [aux_sym__function_terminator_token1] = ACTIONS(287), + [aux_sym_interface_statement_token1] = ACTIONS(289), + [aux_sym_using_statement_token1] = ACTIONS(291), + [aux_sym_on_error_phrase_token1] = ACTIONS(293), + [aux_sym_on_error_phrase_token3] = ACTIONS(295), + [aux_sym_do_block_token1] = ACTIONS(297), + [aux_sym__case_terminator_token1] = ACTIONS(299), + [aux_sym_find_statement_token1] = ACTIONS(301), + [aux_sym_assign_statement_token1] = ACTIONS(303), + [aux_sym_catch_statement_token1] = ACTIONS(305), + [aux_sym_finally_statement_token1] = ACTIONS(307), + [aux_sym_accumulate_statement_token1] = ACTIONS(309), + [anon_sym_ROUTINE_DASHLEVEL] = ACTIONS(311), + [anon_sym_BLOCK_DASHLEVEL] = ACTIONS(311), }, [181] = { [sym_body] = STATE(3797), [sym_comment] = STATE(181), - [sym_qualified_name] = STATE(4733), - [sym__block_terminator] = STATE(3455), + [sym_qualified_name] = STATE(4814), + [sym__block_terminator] = STATE(3585), [sym_include] = STATE(181), - [sym_assignment] = STATE(4314), - [sym_variable_definition] = STATE(1535), - [sym_variable_assignment] = STATE(1535), - [sym_buffer_definition] = STATE(1535), - [sym_query_definition] = STATE(1535), - [sym_function_call_statement] = STATE(1535), - [sym_function_call] = STATE(4086), - [sym_if_statement] = STATE(1535), - [sym_label] = STATE(1536), - [sym_repeat_statement] = STATE(1535), - [sym_procedure_statement] = STATE(1535), - [sym_procedure_parameter_definition] = STATE(1535), - [sym_function_statement] = STATE(1535), - [sym_return_statement] = STATE(1535), - [sym_interface_statement] = STATE(1535), - [sym_using_statement] = STATE(1535), - [sym_class_statement] = STATE(1535), - [sym_object_access] = STATE(3567), - [sym_stream_definition] = STATE(1535), - [sym_input_close_statement] = STATE(1535), - [sym_output_close_statement] = STATE(1535), - [sym__stream_statement] = STATE(1535), - [sym_input_stream_statement] = STATE(1537), - [sym_output_stream_statement] = STATE(1537), - [sym_do_block] = STATE(1535), - [sym_case_statement] = STATE(1535), - [sym_for_statement] = STATE(1535), - [sym_find_statement] = STATE(1535), - [sym_abl_statement] = STATE(1535), - [sym_assign_statement] = STATE(1535), - [sym_catch_statement] = STATE(1535), - [sym_finally_statement] = STATE(1535), - [sym_accumulate_statement] = STATE(1535), - [sym_undo_statement] = STATE(1535), - [sym_error_scope_statement] = STATE(1535), - [sym_temp_table_definition] = STATE(1535), - [sym_on_statement] = STATE(1535), - [sym__statement] = STATE(1538), - [aux_sym_source_code_repeat1] = STATE(276), - [sym_identifier] = ACTIONS(227), + [sym_assignment] = STATE(4463), + [sym_variable_definition] = STATE(1550), + [sym_variable_assignment] = STATE(1550), + [sym_buffer_definition] = STATE(1550), + [sym_query_definition] = STATE(1550), + [sym_function_call_statement] = STATE(1550), + [sym_function_call] = STATE(4558), + [sym_if_statement] = STATE(1550), + [sym_label] = STATE(1551), + [sym_repeat_statement] = STATE(1550), + [sym_procedure_statement] = STATE(1550), + [sym_procedure_parameter_definition] = STATE(1550), + [sym_function_statement] = STATE(1550), + [sym_return_statement] = STATE(1550), + [sym_interface_statement] = STATE(1550), + [sym_using_statement] = STATE(1550), + [sym_class_statement] = STATE(1550), + [sym_object_access] = STATE(3661), + [sym_stream_definition] = STATE(1550), + [sym_input_close_statement] = STATE(1550), + [sym_output_close_statement] = STATE(1550), + [sym__stream_statement] = STATE(1550), + [sym_input_stream_statement] = STATE(1552), + [sym_output_stream_statement] = STATE(1552), + [sym_do_block] = STATE(1550), + [sym_case_statement] = STATE(1550), + [sym_for_statement] = STATE(1550), + [sym_find_statement] = STATE(1550), + [sym_abl_statement] = STATE(1550), + [sym_assign_statement] = STATE(1550), + [sym_catch_statement] = STATE(1550), + [sym_finally_statement] = STATE(1550), + [sym_accumulate_statement] = STATE(1550), + [sym_undo_statement] = STATE(1550), + [sym_error_scope_statement] = STATE(1550), + [sym_temp_table_definition] = STATE(1550), + [sym_on_statement] = STATE(1550), + [sym__statement] = STATE(1553), + [aux_sym_source_code_repeat1] = STATE(286), + [sym_identifier] = ACTIONS(263), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), [anon_sym_LBRACE] = ACTIONS(7), - [aux_sym__block_terminator_token1] = ACTIONS(297), - [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), + [aux_sym__block_terminator_token1] = ACTIONS(319), + [aux_sym_input_expression_token1] = ACTIONS(267), + [aux_sym_primitive_type_token19] = ACTIONS(269), + [aux_sym_variable_definition_token1] = ACTIONS(271), + [aux_sym_variable_definition_token2] = ACTIONS(273), + [aux_sym_buffer_definition_token2] = ACTIONS(275), + [aux_sym_argument_mode_token1] = ACTIONS(277), + [aux_sym_if_statement_token1] = ACTIONS(279), + [aux_sym_repeat_statement_token1] = ACTIONS(281), + [aux_sym__procedure_terminator_token1] = ACTIONS(283), + [aux_sym_procedure_parameter_definition_token1] = ACTIONS(285), + [aux_sym__function_terminator_token1] = ACTIONS(287), + [aux_sym_interface_statement_token1] = ACTIONS(289), + [aux_sym_using_statement_token1] = ACTIONS(291), + [aux_sym_on_error_phrase_token1] = ACTIONS(293), + [aux_sym_on_error_phrase_token3] = ACTIONS(295), + [aux_sym_do_block_token1] = ACTIONS(297), + [aux_sym__case_terminator_token1] = ACTIONS(299), + [aux_sym_find_statement_token1] = ACTIONS(301), + [aux_sym_assign_statement_token1] = ACTIONS(303), + [aux_sym_catch_statement_token1] = ACTIONS(305), + [aux_sym_finally_statement_token1] = ACTIONS(307), + [aux_sym_accumulate_statement_token1] = ACTIONS(309), + [anon_sym_ROUTINE_DASHLEVEL] = ACTIONS(311), + [anon_sym_BLOCK_DASHLEVEL] = ACTIONS(311), }, [182] = { - [sym_body] = STATE(4017), + [sym_body] = STATE(3917), [sym_comment] = STATE(182), - [sym_qualified_name] = STATE(4733), - [sym__block_terminator] = STATE(916), + [sym_qualified_name] = STATE(4814), + [sym__block_terminator] = STATE(1412), [sym_include] = STATE(182), - [sym_assignment] = STATE(4314), - [sym_variable_definition] = STATE(1535), - [sym_variable_assignment] = STATE(1535), - [sym_buffer_definition] = STATE(1535), - [sym_query_definition] = STATE(1535), - [sym_function_call_statement] = STATE(1535), - [sym_function_call] = STATE(4086), - [sym_if_statement] = STATE(1535), - [sym_label] = STATE(1536), - [sym_repeat_statement] = STATE(1535), - [sym_procedure_statement] = STATE(1535), - [sym_procedure_parameter_definition] = STATE(1535), - [sym_function_statement] = STATE(1535), - [sym_return_statement] = STATE(1535), - [sym_interface_statement] = STATE(1535), - [sym_using_statement] = STATE(1535), - [sym_class_statement] = STATE(1535), - [sym_object_access] = STATE(3567), - [sym_stream_definition] = STATE(1535), - [sym_input_close_statement] = STATE(1535), - [sym_output_close_statement] = STATE(1535), - [sym__stream_statement] = STATE(1535), - [sym_input_stream_statement] = STATE(1537), - [sym_output_stream_statement] = STATE(1537), - [sym_do_block] = STATE(1535), - [sym_case_statement] = STATE(1535), - [sym_for_statement] = STATE(1535), - [sym_find_statement] = STATE(1535), - [sym_abl_statement] = STATE(1535), - [sym_assign_statement] = STATE(1535), - [sym_catch_statement] = STATE(1535), - [sym_finally_statement] = STATE(1535), - [sym_accumulate_statement] = STATE(1535), - [sym_undo_statement] = STATE(1535), - [sym_error_scope_statement] = STATE(1535), - [sym_temp_table_definition] = STATE(1535), - [sym_on_statement] = STATE(1535), - [sym__statement] = STATE(1538), - [aux_sym_source_code_repeat1] = STATE(276), - [sym_identifier] = ACTIONS(227), + [sym_assignment] = STATE(4463), + [sym_variable_definition] = STATE(1550), + [sym_variable_assignment] = STATE(1550), + [sym_buffer_definition] = STATE(1550), + [sym_query_definition] = STATE(1550), + [sym_function_call_statement] = STATE(1550), + [sym_function_call] = STATE(4558), + [sym_if_statement] = STATE(1550), + [sym_label] = STATE(1551), + [sym_repeat_statement] = STATE(1550), + [sym_procedure_statement] = STATE(1550), + [sym_procedure_parameter_definition] = STATE(1550), + [sym_function_statement] = STATE(1550), + [sym_return_statement] = STATE(1550), + [sym_interface_statement] = STATE(1550), + [sym_using_statement] = STATE(1550), + [sym_class_statement] = STATE(1550), + [sym_object_access] = STATE(3661), + [sym_stream_definition] = STATE(1550), + [sym_input_close_statement] = STATE(1550), + [sym_output_close_statement] = STATE(1550), + [sym__stream_statement] = STATE(1550), + [sym_input_stream_statement] = STATE(1552), + [sym_output_stream_statement] = STATE(1552), + [sym_do_block] = STATE(1550), + [sym_case_statement] = STATE(1550), + [sym_for_statement] = STATE(1550), + [sym_find_statement] = STATE(1550), + [sym_abl_statement] = STATE(1550), + [sym_assign_statement] = STATE(1550), + [sym_catch_statement] = STATE(1550), + [sym_finally_statement] = STATE(1550), + [sym_accumulate_statement] = STATE(1550), + [sym_undo_statement] = STATE(1550), + [sym_error_scope_statement] = STATE(1550), + [sym_temp_table_definition] = STATE(1550), + [sym_on_statement] = STATE(1550), + [sym__statement] = STATE(1553), + [aux_sym_source_code_repeat1] = STATE(286), + [sym_identifier] = ACTIONS(263), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), [anon_sym_LBRACE] = ACTIONS(7), - [aux_sym__block_terminator_token1] = ACTIONS(303), - [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), + [aux_sym__block_terminator_token1] = ACTIONS(327), + [aux_sym_input_expression_token1] = ACTIONS(267), + [aux_sym_primitive_type_token19] = ACTIONS(269), + [aux_sym_variable_definition_token1] = ACTIONS(271), + [aux_sym_variable_definition_token2] = ACTIONS(273), + [aux_sym_buffer_definition_token2] = ACTIONS(275), + [aux_sym_argument_mode_token1] = ACTIONS(277), + [aux_sym_if_statement_token1] = ACTIONS(279), + [aux_sym_repeat_statement_token1] = ACTIONS(281), + [aux_sym__procedure_terminator_token1] = ACTIONS(283), + [aux_sym_procedure_parameter_definition_token1] = ACTIONS(285), + [aux_sym__function_terminator_token1] = ACTIONS(287), + [aux_sym_interface_statement_token1] = ACTIONS(289), + [aux_sym_using_statement_token1] = ACTIONS(291), + [aux_sym_on_error_phrase_token1] = ACTIONS(293), + [aux_sym_on_error_phrase_token3] = ACTIONS(295), + [aux_sym_do_block_token1] = ACTIONS(297), + [aux_sym__case_terminator_token1] = ACTIONS(299), + [aux_sym_find_statement_token1] = ACTIONS(301), + [aux_sym_assign_statement_token1] = ACTIONS(303), + [aux_sym_catch_statement_token1] = ACTIONS(305), + [aux_sym_finally_statement_token1] = ACTIONS(307), + [aux_sym_accumulate_statement_token1] = ACTIONS(309), + [anon_sym_ROUTINE_DASHLEVEL] = ACTIONS(311), + [anon_sym_BLOCK_DASHLEVEL] = ACTIONS(311), }, [183] = { - [sym_body] = STATE(4018), + [sym_body] = STATE(3900), [sym_comment] = STATE(183), - [sym_qualified_name] = STATE(4733), - [sym__block_terminator] = STATE(920), + [sym_qualified_name] = STATE(4814), + [sym__block_terminator] = STATE(1444), [sym_include] = STATE(183), - [sym_assignment] = STATE(4314), - [sym_variable_definition] = STATE(1535), - [sym_variable_assignment] = STATE(1535), - [sym_buffer_definition] = STATE(1535), - [sym_query_definition] = STATE(1535), - [sym_function_call_statement] = STATE(1535), - [sym_function_call] = STATE(4086), - [sym_if_statement] = STATE(1535), - [sym_label] = STATE(1536), - [sym_repeat_statement] = STATE(1535), - [sym_procedure_statement] = STATE(1535), - [sym_procedure_parameter_definition] = STATE(1535), - [sym_function_statement] = STATE(1535), - [sym_return_statement] = STATE(1535), - [sym_interface_statement] = STATE(1535), - [sym_using_statement] = STATE(1535), - [sym_class_statement] = STATE(1535), - [sym_object_access] = STATE(3567), - [sym_stream_definition] = STATE(1535), - [sym_input_close_statement] = STATE(1535), - [sym_output_close_statement] = STATE(1535), - [sym__stream_statement] = STATE(1535), - [sym_input_stream_statement] = STATE(1537), - [sym_output_stream_statement] = STATE(1537), - [sym_do_block] = STATE(1535), - [sym_case_statement] = STATE(1535), - [sym_for_statement] = STATE(1535), - [sym_find_statement] = STATE(1535), - [sym_abl_statement] = STATE(1535), - [sym_assign_statement] = STATE(1535), - [sym_catch_statement] = STATE(1535), - [sym_finally_statement] = STATE(1535), - [sym_accumulate_statement] = STATE(1535), - [sym_undo_statement] = STATE(1535), - [sym_error_scope_statement] = STATE(1535), - [sym_temp_table_definition] = STATE(1535), - [sym_on_statement] = STATE(1535), - [sym__statement] = STATE(1538), - [aux_sym_source_code_repeat1] = STATE(276), - [sym_identifier] = ACTIONS(227), + [sym_assignment] = STATE(4463), + [sym_variable_definition] = STATE(1550), + [sym_variable_assignment] = STATE(1550), + [sym_buffer_definition] = STATE(1550), + [sym_query_definition] = STATE(1550), + [sym_function_call_statement] = STATE(1550), + [sym_function_call] = STATE(4558), + [sym_if_statement] = STATE(1550), + [sym_label] = STATE(1551), + [sym_repeat_statement] = STATE(1550), + [sym_procedure_statement] = STATE(1550), + [sym_procedure_parameter_definition] = STATE(1550), + [sym_function_statement] = STATE(1550), + [sym_return_statement] = STATE(1550), + [sym_interface_statement] = STATE(1550), + [sym_using_statement] = STATE(1550), + [sym_class_statement] = STATE(1550), + [sym_object_access] = STATE(3661), + [sym_stream_definition] = STATE(1550), + [sym_input_close_statement] = STATE(1550), + [sym_output_close_statement] = STATE(1550), + [sym__stream_statement] = STATE(1550), + [sym_input_stream_statement] = STATE(1552), + [sym_output_stream_statement] = STATE(1552), + [sym_do_block] = STATE(1550), + [sym_case_statement] = STATE(1550), + [sym_for_statement] = STATE(1550), + [sym_find_statement] = STATE(1550), + [sym_abl_statement] = STATE(1550), + [sym_assign_statement] = STATE(1550), + [sym_catch_statement] = STATE(1550), + [sym_finally_statement] = STATE(1550), + [sym_accumulate_statement] = STATE(1550), + [sym_undo_statement] = STATE(1550), + [sym_error_scope_statement] = STATE(1550), + [sym_temp_table_definition] = STATE(1550), + [sym_on_statement] = STATE(1550), + [sym__statement] = STATE(1553), + [aux_sym_source_code_repeat1] = STATE(286), + [sym_identifier] = ACTIONS(263), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), [anon_sym_LBRACE] = ACTIONS(7), - [aux_sym__block_terminator_token1] = ACTIONS(303), - [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), + [aux_sym__block_terminator_token1] = ACTIONS(327), + [aux_sym_input_expression_token1] = ACTIONS(267), + [aux_sym_primitive_type_token19] = ACTIONS(269), + [aux_sym_variable_definition_token1] = ACTIONS(271), + [aux_sym_variable_definition_token2] = ACTIONS(273), + [aux_sym_buffer_definition_token2] = ACTIONS(275), + [aux_sym_argument_mode_token1] = ACTIONS(277), + [aux_sym_if_statement_token1] = ACTIONS(279), + [aux_sym_repeat_statement_token1] = ACTIONS(281), + [aux_sym__procedure_terminator_token1] = ACTIONS(283), + [aux_sym_procedure_parameter_definition_token1] = ACTIONS(285), + [aux_sym__function_terminator_token1] = ACTIONS(287), + [aux_sym_interface_statement_token1] = ACTIONS(289), + [aux_sym_using_statement_token1] = ACTIONS(291), + [aux_sym_on_error_phrase_token1] = ACTIONS(293), + [aux_sym_on_error_phrase_token3] = ACTIONS(295), + [aux_sym_do_block_token1] = ACTIONS(297), + [aux_sym__case_terminator_token1] = ACTIONS(299), + [aux_sym_find_statement_token1] = ACTIONS(301), + [aux_sym_assign_statement_token1] = ACTIONS(303), + [aux_sym_catch_statement_token1] = ACTIONS(305), + [aux_sym_finally_statement_token1] = ACTIONS(307), + [aux_sym_accumulate_statement_token1] = ACTIONS(309), + [anon_sym_ROUTINE_DASHLEVEL] = ACTIONS(311), + [anon_sym_BLOCK_DASHLEVEL] = ACTIONS(311), }, [184] = { - [sym_body] = STATE(4078), + [sym_body] = STATE(3882), [sym_comment] = STATE(184), - [sym_qualified_name] = STATE(4733), - [sym__block_terminator] = STATE(1156), + [sym_qualified_name] = STATE(4814), + [sym__block_terminator] = STATE(1506), [sym_include] = STATE(184), - [sym_assignment] = STATE(4314), - [sym_variable_definition] = STATE(1535), - [sym_variable_assignment] = STATE(1535), - [sym_buffer_definition] = STATE(1535), - [sym_query_definition] = STATE(1535), - [sym_function_call_statement] = STATE(1535), - [sym_function_call] = STATE(4086), - [sym_if_statement] = STATE(1535), - [sym_label] = STATE(1536), - [sym_repeat_statement] = STATE(1535), - [sym_procedure_statement] = STATE(1535), - [sym_procedure_parameter_definition] = STATE(1535), - [sym_function_statement] = STATE(1535), - [sym_return_statement] = STATE(1535), - [sym_interface_statement] = STATE(1535), - [sym_using_statement] = STATE(1535), - [sym_class_statement] = STATE(1535), - [sym_object_access] = STATE(3567), - [sym_stream_definition] = STATE(1535), - [sym_input_close_statement] = STATE(1535), - [sym_output_close_statement] = STATE(1535), - [sym__stream_statement] = STATE(1535), - [sym_input_stream_statement] = STATE(1537), - [sym_output_stream_statement] = STATE(1537), - [sym_do_block] = STATE(1535), - [sym_case_statement] = STATE(1535), - [sym_for_statement] = STATE(1535), - [sym_find_statement] = STATE(1535), - [sym_abl_statement] = STATE(1535), - [sym_assign_statement] = STATE(1535), - [sym_catch_statement] = STATE(1535), - [sym_finally_statement] = STATE(1535), - [sym_accumulate_statement] = STATE(1535), - [sym_undo_statement] = STATE(1535), - [sym_error_scope_statement] = STATE(1535), - [sym_temp_table_definition] = STATE(1535), - [sym_on_statement] = STATE(1535), - [sym__statement] = STATE(1538), - [aux_sym_source_code_repeat1] = STATE(276), - [sym_identifier] = ACTIONS(227), + [sym_assignment] = STATE(4463), + [sym_variable_definition] = STATE(1550), + [sym_variable_assignment] = STATE(1550), + [sym_buffer_definition] = STATE(1550), + [sym_query_definition] = STATE(1550), + [sym_function_call_statement] = STATE(1550), + [sym_function_call] = STATE(4558), + [sym_if_statement] = STATE(1550), + [sym_label] = STATE(1551), + [sym_repeat_statement] = STATE(1550), + [sym_procedure_statement] = STATE(1550), + [sym_procedure_parameter_definition] = STATE(1550), + [sym_function_statement] = STATE(1550), + [sym_return_statement] = STATE(1550), + [sym_interface_statement] = STATE(1550), + [sym_using_statement] = STATE(1550), + [sym_class_statement] = STATE(1550), + [sym_object_access] = STATE(3661), + [sym_stream_definition] = STATE(1550), + [sym_input_close_statement] = STATE(1550), + [sym_output_close_statement] = STATE(1550), + [sym__stream_statement] = STATE(1550), + [sym_input_stream_statement] = STATE(1552), + [sym_output_stream_statement] = STATE(1552), + [sym_do_block] = STATE(1550), + [sym_case_statement] = STATE(1550), + [sym_for_statement] = STATE(1550), + [sym_find_statement] = STATE(1550), + [sym_abl_statement] = STATE(1550), + [sym_assign_statement] = STATE(1550), + [sym_catch_statement] = STATE(1550), + [sym_finally_statement] = STATE(1550), + [sym_accumulate_statement] = STATE(1550), + [sym_undo_statement] = STATE(1550), + [sym_error_scope_statement] = STATE(1550), + [sym_temp_table_definition] = STATE(1550), + [sym_on_statement] = STATE(1550), + [sym__statement] = STATE(1553), + [aux_sym_source_code_repeat1] = STATE(286), + [sym_identifier] = ACTIONS(263), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), [anon_sym_LBRACE] = ACTIONS(7), - [aux_sym__block_terminator_token1] = ACTIONS(311), - [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), + [aux_sym__block_terminator_token1] = ACTIONS(327), + [aux_sym_input_expression_token1] = ACTIONS(267), + [aux_sym_primitive_type_token19] = ACTIONS(269), + [aux_sym_variable_definition_token1] = ACTIONS(271), + [aux_sym_variable_definition_token2] = ACTIONS(273), + [aux_sym_buffer_definition_token2] = ACTIONS(275), + [aux_sym_argument_mode_token1] = ACTIONS(277), + [aux_sym_if_statement_token1] = ACTIONS(279), + [aux_sym_repeat_statement_token1] = ACTIONS(281), + [aux_sym__procedure_terminator_token1] = ACTIONS(283), + [aux_sym_procedure_parameter_definition_token1] = ACTIONS(285), + [aux_sym__function_terminator_token1] = ACTIONS(287), + [aux_sym_interface_statement_token1] = ACTIONS(289), + [aux_sym_using_statement_token1] = ACTIONS(291), + [aux_sym_on_error_phrase_token1] = ACTIONS(293), + [aux_sym_on_error_phrase_token3] = ACTIONS(295), + [aux_sym_do_block_token1] = ACTIONS(297), + [aux_sym__case_terminator_token1] = ACTIONS(299), + [aux_sym_find_statement_token1] = ACTIONS(301), + [aux_sym_assign_statement_token1] = ACTIONS(303), + [aux_sym_catch_statement_token1] = ACTIONS(305), + [aux_sym_finally_statement_token1] = ACTIONS(307), + [aux_sym_accumulate_statement_token1] = ACTIONS(309), + [anon_sym_ROUTINE_DASHLEVEL] = ACTIONS(311), + [anon_sym_BLOCK_DASHLEVEL] = ACTIONS(311), }, [185] = { - [sym_body] = STATE(3964), + [sym_body] = STATE(3867), [sym_comment] = STATE(185), - [sym_qualified_name] = STATE(4733), - [sym__block_terminator] = STATE(890), + [sym_qualified_name] = STATE(4814), + [sym__block_terminator] = STATE(1531), [sym_include] = STATE(185), - [sym_assignment] = STATE(4314), - [sym_variable_definition] = STATE(1535), - [sym_variable_assignment] = STATE(1535), - [sym_buffer_definition] = STATE(1535), - [sym_query_definition] = STATE(1535), - [sym_function_call_statement] = STATE(1535), - [sym_function_call] = STATE(4086), - [sym_if_statement] = STATE(1535), - [sym_label] = STATE(1536), - [sym_repeat_statement] = STATE(1535), - [sym_procedure_statement] = STATE(1535), - [sym_procedure_parameter_definition] = STATE(1535), - [sym_function_statement] = STATE(1535), - [sym_return_statement] = STATE(1535), - [sym_interface_statement] = STATE(1535), - [sym_using_statement] = STATE(1535), - [sym_class_statement] = STATE(1535), - [sym_object_access] = STATE(3567), - [sym_stream_definition] = STATE(1535), - [sym_input_close_statement] = STATE(1535), - [sym_output_close_statement] = STATE(1535), - [sym__stream_statement] = STATE(1535), - [sym_input_stream_statement] = STATE(1537), - [sym_output_stream_statement] = STATE(1537), - [sym_do_block] = STATE(1535), - [sym_case_statement] = STATE(1535), - [sym_for_statement] = STATE(1535), - [sym_find_statement] = STATE(1535), - [sym_abl_statement] = STATE(1535), - [sym_assign_statement] = STATE(1535), - [sym_catch_statement] = STATE(1535), - [sym_finally_statement] = STATE(1535), - [sym_accumulate_statement] = STATE(1535), - [sym_undo_statement] = STATE(1535), - [sym_error_scope_statement] = STATE(1535), - [sym_temp_table_definition] = STATE(1535), - [sym_on_statement] = STATE(1535), - [sym__statement] = STATE(1538), - [aux_sym_source_code_repeat1] = STATE(276), - [sym_identifier] = ACTIONS(227), + [sym_assignment] = STATE(4463), + [sym_variable_definition] = STATE(1550), + [sym_variable_assignment] = STATE(1550), + [sym_buffer_definition] = STATE(1550), + [sym_query_definition] = STATE(1550), + [sym_function_call_statement] = STATE(1550), + [sym_function_call] = STATE(4558), + [sym_if_statement] = STATE(1550), + [sym_label] = STATE(1551), + [sym_repeat_statement] = STATE(1550), + [sym_procedure_statement] = STATE(1550), + [sym_procedure_parameter_definition] = STATE(1550), + [sym_function_statement] = STATE(1550), + [sym_return_statement] = STATE(1550), + [sym_interface_statement] = STATE(1550), + [sym_using_statement] = STATE(1550), + [sym_class_statement] = STATE(1550), + [sym_object_access] = STATE(3661), + [sym_stream_definition] = STATE(1550), + [sym_input_close_statement] = STATE(1550), + [sym_output_close_statement] = STATE(1550), + [sym__stream_statement] = STATE(1550), + [sym_input_stream_statement] = STATE(1552), + [sym_output_stream_statement] = STATE(1552), + [sym_do_block] = STATE(1550), + [sym_case_statement] = STATE(1550), + [sym_for_statement] = STATE(1550), + [sym_find_statement] = STATE(1550), + [sym_abl_statement] = STATE(1550), + [sym_assign_statement] = STATE(1550), + [sym_catch_statement] = STATE(1550), + [sym_finally_statement] = STATE(1550), + [sym_accumulate_statement] = STATE(1550), + [sym_undo_statement] = STATE(1550), + [sym_error_scope_statement] = STATE(1550), + [sym_temp_table_definition] = STATE(1550), + [sym_on_statement] = STATE(1550), + [sym__statement] = STATE(1553), + [aux_sym_source_code_repeat1] = STATE(286), + [sym_identifier] = ACTIONS(263), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), [anon_sym_LBRACE] = ACTIONS(7), - [aux_sym__block_terminator_token1] = ACTIONS(303), - [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), + [aux_sym__block_terminator_token1] = ACTIONS(327), + [aux_sym_input_expression_token1] = ACTIONS(267), + [aux_sym_primitive_type_token19] = ACTIONS(269), + [aux_sym_variable_definition_token1] = ACTIONS(271), + [aux_sym_variable_definition_token2] = ACTIONS(273), + [aux_sym_buffer_definition_token2] = ACTIONS(275), + [aux_sym_argument_mode_token1] = ACTIONS(277), + [aux_sym_if_statement_token1] = ACTIONS(279), + [aux_sym_repeat_statement_token1] = ACTIONS(281), + [aux_sym__procedure_terminator_token1] = ACTIONS(283), + [aux_sym_procedure_parameter_definition_token1] = ACTIONS(285), + [aux_sym__function_terminator_token1] = ACTIONS(287), + [aux_sym_interface_statement_token1] = ACTIONS(289), + [aux_sym_using_statement_token1] = ACTIONS(291), + [aux_sym_on_error_phrase_token1] = ACTIONS(293), + [aux_sym_on_error_phrase_token3] = ACTIONS(295), + [aux_sym_do_block_token1] = ACTIONS(297), + [aux_sym__case_terminator_token1] = ACTIONS(299), + [aux_sym_find_statement_token1] = ACTIONS(301), + [aux_sym_assign_statement_token1] = ACTIONS(303), + [aux_sym_catch_statement_token1] = ACTIONS(305), + [aux_sym_finally_statement_token1] = ACTIONS(307), + [aux_sym_accumulate_statement_token1] = ACTIONS(309), + [anon_sym_ROUTINE_DASHLEVEL] = ACTIONS(311), + [anon_sym_BLOCK_DASHLEVEL] = ACTIONS(311), }, [186] = { - [sym_body] = STATE(3622), + [sym_body] = STATE(3781), [sym_comment] = STATE(186), - [sym_qualified_name] = STATE(4733), - [sym__block_terminator] = STATE(1130), + [sym_qualified_name] = STATE(4814), + [sym__block_terminator] = STATE(3579), [sym_include] = STATE(186), - [sym_assignment] = STATE(4314), - [sym_variable_definition] = STATE(1535), - [sym_variable_assignment] = STATE(1535), - [sym_buffer_definition] = STATE(1535), - [sym_query_definition] = STATE(1535), - [sym_function_call_statement] = STATE(1535), - [sym_function_call] = STATE(4086), - [sym_if_statement] = STATE(1535), - [sym_label] = STATE(1536), - [sym_repeat_statement] = STATE(1535), - [sym_procedure_statement] = STATE(1535), - [sym_procedure_parameter_definition] = STATE(1535), - [sym_function_statement] = STATE(1535), - [sym_return_statement] = STATE(1535), - [sym_interface_statement] = STATE(1535), - [sym_using_statement] = STATE(1535), - [sym_class_statement] = STATE(1535), - [sym_object_access] = STATE(3567), - [sym_stream_definition] = STATE(1535), - [sym_input_close_statement] = STATE(1535), - [sym_output_close_statement] = STATE(1535), - [sym__stream_statement] = STATE(1535), - [sym_input_stream_statement] = STATE(1537), - [sym_output_stream_statement] = STATE(1537), - [sym_do_block] = STATE(1535), - [sym_case_statement] = STATE(1535), - [sym_for_statement] = STATE(1535), - [sym_find_statement] = STATE(1535), - [sym_abl_statement] = STATE(1535), - [sym_assign_statement] = STATE(1535), - [sym_catch_statement] = STATE(1535), - [sym_finally_statement] = STATE(1535), - [sym_accumulate_statement] = STATE(1535), - [sym_undo_statement] = STATE(1535), - [sym_error_scope_statement] = STATE(1535), - [sym_temp_table_definition] = STATE(1535), - [sym_on_statement] = STATE(1535), - [sym__statement] = STATE(1538), - [aux_sym_source_code_repeat1] = STATE(276), - [sym_identifier] = ACTIONS(227), + [sym_assignment] = STATE(4463), + [sym_variable_definition] = STATE(1550), + [sym_variable_assignment] = STATE(1550), + [sym_buffer_definition] = STATE(1550), + [sym_query_definition] = STATE(1550), + [sym_function_call_statement] = STATE(1550), + [sym_function_call] = STATE(4558), + [sym_if_statement] = STATE(1550), + [sym_label] = STATE(1551), + [sym_repeat_statement] = STATE(1550), + [sym_procedure_statement] = STATE(1550), + [sym_procedure_parameter_definition] = STATE(1550), + [sym_function_statement] = STATE(1550), + [sym_return_statement] = STATE(1550), + [sym_interface_statement] = STATE(1550), + [sym_using_statement] = STATE(1550), + [sym_class_statement] = STATE(1550), + [sym_object_access] = STATE(3661), + [sym_stream_definition] = STATE(1550), + [sym_input_close_statement] = STATE(1550), + [sym_output_close_statement] = STATE(1550), + [sym__stream_statement] = STATE(1550), + [sym_input_stream_statement] = STATE(1552), + [sym_output_stream_statement] = STATE(1552), + [sym_do_block] = STATE(1550), + [sym_case_statement] = STATE(1550), + [sym_for_statement] = STATE(1550), + [sym_find_statement] = STATE(1550), + [sym_abl_statement] = STATE(1550), + [sym_assign_statement] = STATE(1550), + [sym_catch_statement] = STATE(1550), + [sym_finally_statement] = STATE(1550), + [sym_accumulate_statement] = STATE(1550), + [sym_undo_statement] = STATE(1550), + [sym_error_scope_statement] = STATE(1550), + [sym_temp_table_definition] = STATE(1550), + [sym_on_statement] = STATE(1550), + [sym__statement] = STATE(1553), + [aux_sym_source_code_repeat1] = STATE(286), + [sym_identifier] = ACTIONS(263), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), [anon_sym_LBRACE] = ACTIONS(7), - [aux_sym__block_terminator_token1] = ACTIONS(301), - [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), + [aux_sym__block_terminator_token1] = ACTIONS(319), + [aux_sym_input_expression_token1] = ACTIONS(267), + [aux_sym_primitive_type_token19] = ACTIONS(269), + [aux_sym_variable_definition_token1] = ACTIONS(271), + [aux_sym_variable_definition_token2] = ACTIONS(273), + [aux_sym_buffer_definition_token2] = ACTIONS(275), + [aux_sym_argument_mode_token1] = ACTIONS(277), + [aux_sym_if_statement_token1] = ACTIONS(279), + [aux_sym_repeat_statement_token1] = ACTIONS(281), + [aux_sym__procedure_terminator_token1] = ACTIONS(283), + [aux_sym_procedure_parameter_definition_token1] = ACTIONS(285), + [aux_sym__function_terminator_token1] = ACTIONS(287), + [aux_sym_interface_statement_token1] = ACTIONS(289), + [aux_sym_using_statement_token1] = ACTIONS(291), + [aux_sym_on_error_phrase_token1] = ACTIONS(293), + [aux_sym_on_error_phrase_token3] = ACTIONS(295), + [aux_sym_do_block_token1] = ACTIONS(297), + [aux_sym__case_terminator_token1] = ACTIONS(299), + [aux_sym_find_statement_token1] = ACTIONS(301), + [aux_sym_assign_statement_token1] = ACTIONS(303), + [aux_sym_catch_statement_token1] = ACTIONS(305), + [aux_sym_finally_statement_token1] = ACTIONS(307), + [aux_sym_accumulate_statement_token1] = ACTIONS(309), + [anon_sym_ROUTINE_DASHLEVEL] = ACTIONS(311), + [anon_sym_BLOCK_DASHLEVEL] = ACTIONS(311), }, [187] = { - [sym_body] = STATE(3687), + [sym_body] = STATE(3779), [sym_comment] = STATE(187), - [sym_qualified_name] = STATE(4733), - [sym__block_terminator] = STATE(1047), + [sym_qualified_name] = STATE(4814), + [sym__block_terminator] = STATE(3575), [sym_include] = STATE(187), - [sym_assignment] = STATE(4314), - [sym_variable_definition] = STATE(1535), - [sym_variable_assignment] = STATE(1535), - [sym_buffer_definition] = STATE(1535), - [sym_query_definition] = STATE(1535), - [sym_function_call_statement] = STATE(1535), - [sym_function_call] = STATE(4086), - [sym_if_statement] = STATE(1535), - [sym_label] = STATE(1536), - [sym_repeat_statement] = STATE(1535), - [sym_procedure_statement] = STATE(1535), - [sym_procedure_parameter_definition] = STATE(1535), - [sym_function_statement] = STATE(1535), - [sym_return_statement] = STATE(1535), - [sym_interface_statement] = STATE(1535), - [sym_using_statement] = STATE(1535), - [sym_class_statement] = STATE(1535), - [sym_object_access] = STATE(3567), - [sym_stream_definition] = STATE(1535), - [sym_input_close_statement] = STATE(1535), - [sym_output_close_statement] = STATE(1535), - [sym__stream_statement] = STATE(1535), - [sym_input_stream_statement] = STATE(1537), - [sym_output_stream_statement] = STATE(1537), - [sym_do_block] = STATE(1535), - [sym_case_statement] = STATE(1535), - [sym_for_statement] = STATE(1535), - [sym_find_statement] = STATE(1535), - [sym_abl_statement] = STATE(1535), - [sym_assign_statement] = STATE(1535), - [sym_catch_statement] = STATE(1535), - [sym_finally_statement] = STATE(1535), - [sym_accumulate_statement] = STATE(1535), - [sym_undo_statement] = STATE(1535), - [sym_error_scope_statement] = STATE(1535), - [sym_temp_table_definition] = STATE(1535), - [sym_on_statement] = STATE(1535), - [sym__statement] = STATE(1538), - [aux_sym_source_code_repeat1] = STATE(276), - [sym_identifier] = ACTIONS(227), + [sym_assignment] = STATE(4463), + [sym_variable_definition] = STATE(1550), + [sym_variable_assignment] = STATE(1550), + [sym_buffer_definition] = STATE(1550), + [sym_query_definition] = STATE(1550), + [sym_function_call_statement] = STATE(1550), + [sym_function_call] = STATE(4558), + [sym_if_statement] = STATE(1550), + [sym_label] = STATE(1551), + [sym_repeat_statement] = STATE(1550), + [sym_procedure_statement] = STATE(1550), + [sym_procedure_parameter_definition] = STATE(1550), + [sym_function_statement] = STATE(1550), + [sym_return_statement] = STATE(1550), + [sym_interface_statement] = STATE(1550), + [sym_using_statement] = STATE(1550), + [sym_class_statement] = STATE(1550), + [sym_object_access] = STATE(3661), + [sym_stream_definition] = STATE(1550), + [sym_input_close_statement] = STATE(1550), + [sym_output_close_statement] = STATE(1550), + [sym__stream_statement] = STATE(1550), + [sym_input_stream_statement] = STATE(1552), + [sym_output_stream_statement] = STATE(1552), + [sym_do_block] = STATE(1550), + [sym_case_statement] = STATE(1550), + [sym_for_statement] = STATE(1550), + [sym_find_statement] = STATE(1550), + [sym_abl_statement] = STATE(1550), + [sym_assign_statement] = STATE(1550), + [sym_catch_statement] = STATE(1550), + [sym_finally_statement] = STATE(1550), + [sym_accumulate_statement] = STATE(1550), + [sym_undo_statement] = STATE(1550), + [sym_error_scope_statement] = STATE(1550), + [sym_temp_table_definition] = STATE(1550), + [sym_on_statement] = STATE(1550), + [sym__statement] = STATE(1553), + [aux_sym_source_code_repeat1] = STATE(286), + [sym_identifier] = ACTIONS(263), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), [anon_sym_LBRACE] = ACTIONS(7), - [aux_sym__block_terminator_token1] = ACTIONS(301), - [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), + [aux_sym__block_terminator_token1] = ACTIONS(319), + [aux_sym_input_expression_token1] = ACTIONS(267), + [aux_sym_primitive_type_token19] = ACTIONS(269), + [aux_sym_variable_definition_token1] = ACTIONS(271), + [aux_sym_variable_definition_token2] = ACTIONS(273), + [aux_sym_buffer_definition_token2] = ACTIONS(275), + [aux_sym_argument_mode_token1] = ACTIONS(277), + [aux_sym_if_statement_token1] = ACTIONS(279), + [aux_sym_repeat_statement_token1] = ACTIONS(281), + [aux_sym__procedure_terminator_token1] = ACTIONS(283), + [aux_sym_procedure_parameter_definition_token1] = ACTIONS(285), + [aux_sym__function_terminator_token1] = ACTIONS(287), + [aux_sym_interface_statement_token1] = ACTIONS(289), + [aux_sym_using_statement_token1] = ACTIONS(291), + [aux_sym_on_error_phrase_token1] = ACTIONS(293), + [aux_sym_on_error_phrase_token3] = ACTIONS(295), + [aux_sym_do_block_token1] = ACTIONS(297), + [aux_sym__case_terminator_token1] = ACTIONS(299), + [aux_sym_find_statement_token1] = ACTIONS(301), + [aux_sym_assign_statement_token1] = ACTIONS(303), + [aux_sym_catch_statement_token1] = ACTIONS(305), + [aux_sym_finally_statement_token1] = ACTIONS(307), + [aux_sym_accumulate_statement_token1] = ACTIONS(309), + [anon_sym_ROUTINE_DASHLEVEL] = ACTIONS(311), + [anon_sym_BLOCK_DASHLEVEL] = ACTIONS(311), }, [188] = { - [sym_body] = STATE(4031), + [sym_body] = STATE(3764), [sym_comment] = STATE(188), - [sym_qualified_name] = STATE(4733), - [sym__block_terminator] = STATE(929), + [sym_qualified_name] = STATE(4814), + [sym__block_terminator] = STATE(3570), [sym_include] = STATE(188), - [sym_assignment] = STATE(4314), - [sym_variable_definition] = STATE(1535), - [sym_variable_assignment] = STATE(1535), - [sym_buffer_definition] = STATE(1535), - [sym_query_definition] = STATE(1535), - [sym_function_call_statement] = STATE(1535), - [sym_function_call] = STATE(4086), - [sym_if_statement] = STATE(1535), - [sym_label] = STATE(1536), - [sym_repeat_statement] = STATE(1535), - [sym_procedure_statement] = STATE(1535), - [sym_procedure_parameter_definition] = STATE(1535), - [sym_function_statement] = STATE(1535), - [sym_return_statement] = STATE(1535), - [sym_interface_statement] = STATE(1535), - [sym_using_statement] = STATE(1535), - [sym_class_statement] = STATE(1535), - [sym_object_access] = STATE(3567), - [sym_stream_definition] = STATE(1535), - [sym_input_close_statement] = STATE(1535), - [sym_output_close_statement] = STATE(1535), - [sym__stream_statement] = STATE(1535), - [sym_input_stream_statement] = STATE(1537), - [sym_output_stream_statement] = STATE(1537), - [sym_do_block] = STATE(1535), - [sym_case_statement] = STATE(1535), - [sym_for_statement] = STATE(1535), - [sym_find_statement] = STATE(1535), - [sym_abl_statement] = STATE(1535), - [sym_assign_statement] = STATE(1535), - [sym_catch_statement] = STATE(1535), - [sym_finally_statement] = STATE(1535), - [sym_accumulate_statement] = STATE(1535), - [sym_undo_statement] = STATE(1535), - [sym_error_scope_statement] = STATE(1535), - [sym_temp_table_definition] = STATE(1535), - [sym_on_statement] = STATE(1535), - [sym__statement] = STATE(1538), - [aux_sym_source_code_repeat1] = STATE(276), - [sym_identifier] = ACTIONS(227), + [sym_assignment] = STATE(4463), + [sym_variable_definition] = STATE(1550), + [sym_variable_assignment] = STATE(1550), + [sym_buffer_definition] = STATE(1550), + [sym_query_definition] = STATE(1550), + [sym_function_call_statement] = STATE(1550), + [sym_function_call] = STATE(4558), + [sym_if_statement] = STATE(1550), + [sym_label] = STATE(1551), + [sym_repeat_statement] = STATE(1550), + [sym_procedure_statement] = STATE(1550), + [sym_procedure_parameter_definition] = STATE(1550), + [sym_function_statement] = STATE(1550), + [sym_return_statement] = STATE(1550), + [sym_interface_statement] = STATE(1550), + [sym_using_statement] = STATE(1550), + [sym_class_statement] = STATE(1550), + [sym_object_access] = STATE(3661), + [sym_stream_definition] = STATE(1550), + [sym_input_close_statement] = STATE(1550), + [sym_output_close_statement] = STATE(1550), + [sym__stream_statement] = STATE(1550), + [sym_input_stream_statement] = STATE(1552), + [sym_output_stream_statement] = STATE(1552), + [sym_do_block] = STATE(1550), + [sym_case_statement] = STATE(1550), + [sym_for_statement] = STATE(1550), + [sym_find_statement] = STATE(1550), + [sym_abl_statement] = STATE(1550), + [sym_assign_statement] = STATE(1550), + [sym_catch_statement] = STATE(1550), + [sym_finally_statement] = STATE(1550), + [sym_accumulate_statement] = STATE(1550), + [sym_undo_statement] = STATE(1550), + [sym_error_scope_statement] = STATE(1550), + [sym_temp_table_definition] = STATE(1550), + [sym_on_statement] = STATE(1550), + [sym__statement] = STATE(1553), + [aux_sym_source_code_repeat1] = STATE(286), + [sym_identifier] = ACTIONS(263), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), [anon_sym_LBRACE] = ACTIONS(7), - [aux_sym__block_terminator_token1] = ACTIONS(303), - [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), + [aux_sym__block_terminator_token1] = ACTIONS(319), + [aux_sym_input_expression_token1] = ACTIONS(267), + [aux_sym_primitive_type_token19] = ACTIONS(269), + [aux_sym_variable_definition_token1] = ACTIONS(271), + [aux_sym_variable_definition_token2] = ACTIONS(273), + [aux_sym_buffer_definition_token2] = ACTIONS(275), + [aux_sym_argument_mode_token1] = ACTIONS(277), + [aux_sym_if_statement_token1] = ACTIONS(279), + [aux_sym_repeat_statement_token1] = ACTIONS(281), + [aux_sym__procedure_terminator_token1] = ACTIONS(283), + [aux_sym_procedure_parameter_definition_token1] = ACTIONS(285), + [aux_sym__function_terminator_token1] = ACTIONS(287), + [aux_sym_interface_statement_token1] = ACTIONS(289), + [aux_sym_using_statement_token1] = ACTIONS(291), + [aux_sym_on_error_phrase_token1] = ACTIONS(293), + [aux_sym_on_error_phrase_token3] = ACTIONS(295), + [aux_sym_do_block_token1] = ACTIONS(297), + [aux_sym__case_terminator_token1] = ACTIONS(299), + [aux_sym_find_statement_token1] = ACTIONS(301), + [aux_sym_assign_statement_token1] = ACTIONS(303), + [aux_sym_catch_statement_token1] = ACTIONS(305), + [aux_sym_finally_statement_token1] = ACTIONS(307), + [aux_sym_accumulate_statement_token1] = ACTIONS(309), + [anon_sym_ROUTINE_DASHLEVEL] = ACTIONS(311), + [anon_sym_BLOCK_DASHLEVEL] = ACTIONS(311), }, [189] = { - [sym_body] = STATE(3771), + [sym_body] = STATE(3761), [sym_comment] = STATE(189), - [sym_qualified_name] = STATE(4733), - [sym__block_terminator] = STATE(3435), + [sym_qualified_name] = STATE(4814), + [sym__block_terminator] = STATE(3563), [sym_include] = STATE(189), - [sym_assignment] = STATE(4314), - [sym_variable_definition] = STATE(1535), - [sym_variable_assignment] = STATE(1535), - [sym_buffer_definition] = STATE(1535), - [sym_query_definition] = STATE(1535), - [sym_function_call_statement] = STATE(1535), - [sym_function_call] = STATE(4086), - [sym_if_statement] = STATE(1535), - [sym_label] = STATE(1536), - [sym_repeat_statement] = STATE(1535), - [sym_procedure_statement] = STATE(1535), - [sym_procedure_parameter_definition] = STATE(1535), - [sym_function_statement] = STATE(1535), - [sym_return_statement] = STATE(1535), - [sym_interface_statement] = STATE(1535), - [sym_using_statement] = STATE(1535), - [sym_class_statement] = STATE(1535), - [sym_object_access] = STATE(3567), - [sym_stream_definition] = STATE(1535), - [sym_input_close_statement] = STATE(1535), - [sym_output_close_statement] = STATE(1535), - [sym__stream_statement] = STATE(1535), - [sym_input_stream_statement] = STATE(1537), - [sym_output_stream_statement] = STATE(1537), - [sym_do_block] = STATE(1535), - [sym_case_statement] = STATE(1535), - [sym_for_statement] = STATE(1535), - [sym_find_statement] = STATE(1535), - [sym_abl_statement] = STATE(1535), - [sym_assign_statement] = STATE(1535), - [sym_catch_statement] = STATE(1535), - [sym_finally_statement] = STATE(1535), - [sym_accumulate_statement] = STATE(1535), - [sym_undo_statement] = STATE(1535), - [sym_error_scope_statement] = STATE(1535), - [sym_temp_table_definition] = STATE(1535), - [sym_on_statement] = STATE(1535), - [sym__statement] = STATE(1538), - [aux_sym_source_code_repeat1] = STATE(276), - [sym_identifier] = ACTIONS(227), + [sym_assignment] = STATE(4463), + [sym_variable_definition] = STATE(1550), + [sym_variable_assignment] = STATE(1550), + [sym_buffer_definition] = STATE(1550), + [sym_query_definition] = STATE(1550), + [sym_function_call_statement] = STATE(1550), + [sym_function_call] = STATE(4558), + [sym_if_statement] = STATE(1550), + [sym_label] = STATE(1551), + [sym_repeat_statement] = STATE(1550), + [sym_procedure_statement] = STATE(1550), + [sym_procedure_parameter_definition] = STATE(1550), + [sym_function_statement] = STATE(1550), + [sym_return_statement] = STATE(1550), + [sym_interface_statement] = STATE(1550), + [sym_using_statement] = STATE(1550), + [sym_class_statement] = STATE(1550), + [sym_object_access] = STATE(3661), + [sym_stream_definition] = STATE(1550), + [sym_input_close_statement] = STATE(1550), + [sym_output_close_statement] = STATE(1550), + [sym__stream_statement] = STATE(1550), + [sym_input_stream_statement] = STATE(1552), + [sym_output_stream_statement] = STATE(1552), + [sym_do_block] = STATE(1550), + [sym_case_statement] = STATE(1550), + [sym_for_statement] = STATE(1550), + [sym_find_statement] = STATE(1550), + [sym_abl_statement] = STATE(1550), + [sym_assign_statement] = STATE(1550), + [sym_catch_statement] = STATE(1550), + [sym_finally_statement] = STATE(1550), + [sym_accumulate_statement] = STATE(1550), + [sym_undo_statement] = STATE(1550), + [sym_error_scope_statement] = STATE(1550), + [sym_temp_table_definition] = STATE(1550), + [sym_on_statement] = STATE(1550), + [sym__statement] = STATE(1553), + [aux_sym_source_code_repeat1] = STATE(286), + [sym_identifier] = ACTIONS(263), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), [anon_sym_LBRACE] = ACTIONS(7), - [aux_sym__block_terminator_token1] = ACTIONS(297), - [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), + [aux_sym__block_terminator_token1] = ACTIONS(319), + [aux_sym_input_expression_token1] = ACTIONS(267), + [aux_sym_primitive_type_token19] = ACTIONS(269), + [aux_sym_variable_definition_token1] = ACTIONS(271), + [aux_sym_variable_definition_token2] = ACTIONS(273), + [aux_sym_buffer_definition_token2] = ACTIONS(275), + [aux_sym_argument_mode_token1] = ACTIONS(277), + [aux_sym_if_statement_token1] = ACTIONS(279), + [aux_sym_repeat_statement_token1] = ACTIONS(281), + [aux_sym__procedure_terminator_token1] = ACTIONS(283), + [aux_sym_procedure_parameter_definition_token1] = ACTIONS(285), + [aux_sym__function_terminator_token1] = ACTIONS(287), + [aux_sym_interface_statement_token1] = ACTIONS(289), + [aux_sym_using_statement_token1] = ACTIONS(291), + [aux_sym_on_error_phrase_token1] = ACTIONS(293), + [aux_sym_on_error_phrase_token3] = ACTIONS(295), + [aux_sym_do_block_token1] = ACTIONS(297), + [aux_sym__case_terminator_token1] = ACTIONS(299), + [aux_sym_find_statement_token1] = ACTIONS(301), + [aux_sym_assign_statement_token1] = ACTIONS(303), + [aux_sym_catch_statement_token1] = ACTIONS(305), + [aux_sym_finally_statement_token1] = ACTIONS(307), + [aux_sym_accumulate_statement_token1] = ACTIONS(309), + [anon_sym_ROUTINE_DASHLEVEL] = ACTIONS(311), + [anon_sym_BLOCK_DASHLEVEL] = ACTIONS(311), }, [190] = { - [sym_body] = STATE(4052), + [sym_body] = STATE(3757), [sym_comment] = STATE(190), - [sym_qualified_name] = STATE(4733), - [sym__block_terminator] = STATE(1137), + [sym_qualified_name] = STATE(4814), + [sym__block_terminator] = STATE(3560), [sym_include] = STATE(190), - [sym_assignment] = STATE(4314), - [sym_variable_definition] = STATE(1535), - [sym_variable_assignment] = STATE(1535), - [sym_buffer_definition] = STATE(1535), - [sym_query_definition] = STATE(1535), - [sym_function_call_statement] = STATE(1535), - [sym_function_call] = STATE(4086), - [sym_if_statement] = STATE(1535), - [sym_label] = STATE(1536), - [sym_repeat_statement] = STATE(1535), - [sym_procedure_statement] = STATE(1535), - [sym_procedure_parameter_definition] = STATE(1535), - [sym_function_statement] = STATE(1535), - [sym_return_statement] = STATE(1535), - [sym_interface_statement] = STATE(1535), - [sym_using_statement] = STATE(1535), - [sym_class_statement] = STATE(1535), - [sym_object_access] = STATE(3567), - [sym_stream_definition] = STATE(1535), - [sym_input_close_statement] = STATE(1535), - [sym_output_close_statement] = STATE(1535), - [sym__stream_statement] = STATE(1535), - [sym_input_stream_statement] = STATE(1537), - [sym_output_stream_statement] = STATE(1537), - [sym_do_block] = STATE(1535), - [sym_case_statement] = STATE(1535), - [sym_for_statement] = STATE(1535), - [sym_find_statement] = STATE(1535), - [sym_abl_statement] = STATE(1535), - [sym_assign_statement] = STATE(1535), - [sym_catch_statement] = STATE(1535), - [sym_finally_statement] = STATE(1535), - [sym_accumulate_statement] = STATE(1535), - [sym_undo_statement] = STATE(1535), - [sym_error_scope_statement] = STATE(1535), - [sym_temp_table_definition] = STATE(1535), - [sym_on_statement] = STATE(1535), - [sym__statement] = STATE(1538), - [aux_sym_source_code_repeat1] = STATE(276), - [sym_identifier] = ACTIONS(227), + [sym_assignment] = STATE(4463), + [sym_variable_definition] = STATE(1550), + [sym_variable_assignment] = STATE(1550), + [sym_buffer_definition] = STATE(1550), + [sym_query_definition] = STATE(1550), + [sym_function_call_statement] = STATE(1550), + [sym_function_call] = STATE(4558), + [sym_if_statement] = STATE(1550), + [sym_label] = STATE(1551), + [sym_repeat_statement] = STATE(1550), + [sym_procedure_statement] = STATE(1550), + [sym_procedure_parameter_definition] = STATE(1550), + [sym_function_statement] = STATE(1550), + [sym_return_statement] = STATE(1550), + [sym_interface_statement] = STATE(1550), + [sym_using_statement] = STATE(1550), + [sym_class_statement] = STATE(1550), + [sym_object_access] = STATE(3661), + [sym_stream_definition] = STATE(1550), + [sym_input_close_statement] = STATE(1550), + [sym_output_close_statement] = STATE(1550), + [sym__stream_statement] = STATE(1550), + [sym_input_stream_statement] = STATE(1552), + [sym_output_stream_statement] = STATE(1552), + [sym_do_block] = STATE(1550), + [sym_case_statement] = STATE(1550), + [sym_for_statement] = STATE(1550), + [sym_find_statement] = STATE(1550), + [sym_abl_statement] = STATE(1550), + [sym_assign_statement] = STATE(1550), + [sym_catch_statement] = STATE(1550), + [sym_finally_statement] = STATE(1550), + [sym_accumulate_statement] = STATE(1550), + [sym_undo_statement] = STATE(1550), + [sym_error_scope_statement] = STATE(1550), + [sym_temp_table_definition] = STATE(1550), + [sym_on_statement] = STATE(1550), + [sym__statement] = STATE(1553), + [aux_sym_source_code_repeat1] = STATE(286), + [sym_identifier] = ACTIONS(263), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), [anon_sym_LBRACE] = ACTIONS(7), - [aux_sym__block_terminator_token1] = ACTIONS(311), - [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), + [aux_sym__block_terminator_token1] = ACTIONS(319), + [aux_sym_input_expression_token1] = ACTIONS(267), + [aux_sym_primitive_type_token19] = ACTIONS(269), + [aux_sym_variable_definition_token1] = ACTIONS(271), + [aux_sym_variable_definition_token2] = ACTIONS(273), + [aux_sym_buffer_definition_token2] = ACTIONS(275), + [aux_sym_argument_mode_token1] = ACTIONS(277), + [aux_sym_if_statement_token1] = ACTIONS(279), + [aux_sym_repeat_statement_token1] = ACTIONS(281), + [aux_sym__procedure_terminator_token1] = ACTIONS(283), + [aux_sym_procedure_parameter_definition_token1] = ACTIONS(285), + [aux_sym__function_terminator_token1] = ACTIONS(287), + [aux_sym_interface_statement_token1] = ACTIONS(289), + [aux_sym_using_statement_token1] = ACTIONS(291), + [aux_sym_on_error_phrase_token1] = ACTIONS(293), + [aux_sym_on_error_phrase_token3] = ACTIONS(295), + [aux_sym_do_block_token1] = ACTIONS(297), + [aux_sym__case_terminator_token1] = ACTIONS(299), + [aux_sym_find_statement_token1] = ACTIONS(301), + [aux_sym_assign_statement_token1] = ACTIONS(303), + [aux_sym_catch_statement_token1] = ACTIONS(305), + [aux_sym_finally_statement_token1] = ACTIONS(307), + [aux_sym_accumulate_statement_token1] = ACTIONS(309), + [anon_sym_ROUTINE_DASHLEVEL] = ACTIONS(311), + [anon_sym_BLOCK_DASHLEVEL] = ACTIONS(311), }, [191] = { - [sym_body] = STATE(4033), + [sym_body] = STATE(3753), [sym_comment] = STATE(191), - [sym_qualified_name] = STATE(4733), - [sym__block_terminator] = STATE(1307), + [sym_qualified_name] = STATE(4814), + [sym__block_terminator] = STATE(3559), [sym_include] = STATE(191), - [sym_assignment] = STATE(4314), - [sym_variable_definition] = STATE(1535), - [sym_variable_assignment] = STATE(1535), - [sym_buffer_definition] = STATE(1535), - [sym_query_definition] = STATE(1535), - [sym_function_call_statement] = STATE(1535), - [sym_function_call] = STATE(4086), - [sym_if_statement] = STATE(1535), - [sym_label] = STATE(1536), - [sym_repeat_statement] = STATE(1535), - [sym_procedure_statement] = STATE(1535), - [sym_procedure_parameter_definition] = STATE(1535), - [sym_function_statement] = STATE(1535), - [sym_return_statement] = STATE(1535), - [sym_interface_statement] = STATE(1535), - [sym_using_statement] = STATE(1535), - [sym_class_statement] = STATE(1535), - [sym_object_access] = STATE(3567), - [sym_stream_definition] = STATE(1535), - [sym_input_close_statement] = STATE(1535), - [sym_output_close_statement] = STATE(1535), - [sym__stream_statement] = STATE(1535), - [sym_input_stream_statement] = STATE(1537), - [sym_output_stream_statement] = STATE(1537), - [sym_do_block] = STATE(1535), - [sym_case_statement] = STATE(1535), - [sym_for_statement] = STATE(1535), - [sym_find_statement] = STATE(1535), - [sym_abl_statement] = STATE(1535), - [sym_assign_statement] = STATE(1535), - [sym_catch_statement] = STATE(1535), - [sym_finally_statement] = STATE(1535), - [sym_accumulate_statement] = STATE(1535), - [sym_undo_statement] = STATE(1535), - [sym_error_scope_statement] = STATE(1535), - [sym_temp_table_definition] = STATE(1535), - [sym_on_statement] = STATE(1535), - [sym__statement] = STATE(1538), - [aux_sym_source_code_repeat1] = STATE(276), - [sym_identifier] = ACTIONS(227), + [sym_assignment] = STATE(4463), + [sym_variable_definition] = STATE(1550), + [sym_variable_assignment] = STATE(1550), + [sym_buffer_definition] = STATE(1550), + [sym_query_definition] = STATE(1550), + [sym_function_call_statement] = STATE(1550), + [sym_function_call] = STATE(4558), + [sym_if_statement] = STATE(1550), + [sym_label] = STATE(1551), + [sym_repeat_statement] = STATE(1550), + [sym_procedure_statement] = STATE(1550), + [sym_procedure_parameter_definition] = STATE(1550), + [sym_function_statement] = STATE(1550), + [sym_return_statement] = STATE(1550), + [sym_interface_statement] = STATE(1550), + [sym_using_statement] = STATE(1550), + [sym_class_statement] = STATE(1550), + [sym_object_access] = STATE(3661), + [sym_stream_definition] = STATE(1550), + [sym_input_close_statement] = STATE(1550), + [sym_output_close_statement] = STATE(1550), + [sym__stream_statement] = STATE(1550), + [sym_input_stream_statement] = STATE(1552), + [sym_output_stream_statement] = STATE(1552), + [sym_do_block] = STATE(1550), + [sym_case_statement] = STATE(1550), + [sym_for_statement] = STATE(1550), + [sym_find_statement] = STATE(1550), + [sym_abl_statement] = STATE(1550), + [sym_assign_statement] = STATE(1550), + [sym_catch_statement] = STATE(1550), + [sym_finally_statement] = STATE(1550), + [sym_accumulate_statement] = STATE(1550), + [sym_undo_statement] = STATE(1550), + [sym_error_scope_statement] = STATE(1550), + [sym_temp_table_definition] = STATE(1550), + [sym_on_statement] = STATE(1550), + [sym__statement] = STATE(1553), + [aux_sym_source_code_repeat1] = STATE(286), + [sym_identifier] = ACTIONS(263), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), [anon_sym_LBRACE] = ACTIONS(7), - [aux_sym__block_terminator_token1] = ACTIONS(311), - [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), + [aux_sym__block_terminator_token1] = ACTIONS(319), + [aux_sym_input_expression_token1] = ACTIONS(267), + [aux_sym_primitive_type_token19] = ACTIONS(269), + [aux_sym_variable_definition_token1] = ACTIONS(271), + [aux_sym_variable_definition_token2] = ACTIONS(273), + [aux_sym_buffer_definition_token2] = ACTIONS(275), + [aux_sym_argument_mode_token1] = ACTIONS(277), + [aux_sym_if_statement_token1] = ACTIONS(279), + [aux_sym_repeat_statement_token1] = ACTIONS(281), + [aux_sym__procedure_terminator_token1] = ACTIONS(283), + [aux_sym_procedure_parameter_definition_token1] = ACTIONS(285), + [aux_sym__function_terminator_token1] = ACTIONS(287), + [aux_sym_interface_statement_token1] = ACTIONS(289), + [aux_sym_using_statement_token1] = ACTIONS(291), + [aux_sym_on_error_phrase_token1] = ACTIONS(293), + [aux_sym_on_error_phrase_token3] = ACTIONS(295), + [aux_sym_do_block_token1] = ACTIONS(297), + [aux_sym__case_terminator_token1] = ACTIONS(299), + [aux_sym_find_statement_token1] = ACTIONS(301), + [aux_sym_assign_statement_token1] = ACTIONS(303), + [aux_sym_catch_statement_token1] = ACTIONS(305), + [aux_sym_finally_statement_token1] = ACTIONS(307), + [aux_sym_accumulate_statement_token1] = ACTIONS(309), + [anon_sym_ROUTINE_DASHLEVEL] = ACTIONS(311), + [anon_sym_BLOCK_DASHLEVEL] = ACTIONS(311), }, [192] = { - [sym_body] = STATE(4043), + [sym_body] = STATE(3742), [sym_comment] = STATE(192), - [sym_qualified_name] = STATE(4733), - [sym__block_terminator] = STATE(939), + [sym_qualified_name] = STATE(4814), + [sym__block_terminator] = STATE(3554), [sym_include] = STATE(192), - [sym_assignment] = STATE(4314), - [sym_variable_definition] = STATE(1535), - [sym_variable_assignment] = STATE(1535), - [sym_buffer_definition] = STATE(1535), - [sym_query_definition] = STATE(1535), - [sym_function_call_statement] = STATE(1535), - [sym_function_call] = STATE(4086), - [sym_if_statement] = STATE(1535), - [sym_label] = STATE(1536), - [sym_repeat_statement] = STATE(1535), - [sym_procedure_statement] = STATE(1535), - [sym_procedure_parameter_definition] = STATE(1535), - [sym_function_statement] = STATE(1535), - [sym_return_statement] = STATE(1535), - [sym_interface_statement] = STATE(1535), - [sym_using_statement] = STATE(1535), - [sym_class_statement] = STATE(1535), - [sym_object_access] = STATE(3567), - [sym_stream_definition] = STATE(1535), - [sym_input_close_statement] = STATE(1535), - [sym_output_close_statement] = STATE(1535), - [sym__stream_statement] = STATE(1535), - [sym_input_stream_statement] = STATE(1537), - [sym_output_stream_statement] = STATE(1537), - [sym_do_block] = STATE(1535), - [sym_case_statement] = STATE(1535), - [sym_for_statement] = STATE(1535), - [sym_find_statement] = STATE(1535), - [sym_abl_statement] = STATE(1535), - [sym_assign_statement] = STATE(1535), - [sym_catch_statement] = STATE(1535), - [sym_finally_statement] = STATE(1535), - [sym_accumulate_statement] = STATE(1535), - [sym_undo_statement] = STATE(1535), - [sym_error_scope_statement] = STATE(1535), - [sym_temp_table_definition] = STATE(1535), - [sym_on_statement] = STATE(1535), - [sym__statement] = STATE(1538), - [aux_sym_source_code_repeat1] = STATE(276), - [sym_identifier] = ACTIONS(227), + [sym_assignment] = STATE(4463), + [sym_variable_definition] = STATE(1550), + [sym_variable_assignment] = STATE(1550), + [sym_buffer_definition] = STATE(1550), + [sym_query_definition] = STATE(1550), + [sym_function_call_statement] = STATE(1550), + [sym_function_call] = STATE(4558), + [sym_if_statement] = STATE(1550), + [sym_label] = STATE(1551), + [sym_repeat_statement] = STATE(1550), + [sym_procedure_statement] = STATE(1550), + [sym_procedure_parameter_definition] = STATE(1550), + [sym_function_statement] = STATE(1550), + [sym_return_statement] = STATE(1550), + [sym_interface_statement] = STATE(1550), + [sym_using_statement] = STATE(1550), + [sym_class_statement] = STATE(1550), + [sym_object_access] = STATE(3661), + [sym_stream_definition] = STATE(1550), + [sym_input_close_statement] = STATE(1550), + [sym_output_close_statement] = STATE(1550), + [sym__stream_statement] = STATE(1550), + [sym_input_stream_statement] = STATE(1552), + [sym_output_stream_statement] = STATE(1552), + [sym_do_block] = STATE(1550), + [sym_case_statement] = STATE(1550), + [sym_for_statement] = STATE(1550), + [sym_find_statement] = STATE(1550), + [sym_abl_statement] = STATE(1550), + [sym_assign_statement] = STATE(1550), + [sym_catch_statement] = STATE(1550), + [sym_finally_statement] = STATE(1550), + [sym_accumulate_statement] = STATE(1550), + [sym_undo_statement] = STATE(1550), + [sym_error_scope_statement] = STATE(1550), + [sym_temp_table_definition] = STATE(1550), + [sym_on_statement] = STATE(1550), + [sym__statement] = STATE(1553), + [aux_sym_source_code_repeat1] = STATE(286), + [sym_identifier] = ACTIONS(263), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), [anon_sym_LBRACE] = ACTIONS(7), - [aux_sym__block_terminator_token1] = ACTIONS(303), - [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), + [aux_sym__block_terminator_token1] = ACTIONS(319), + [aux_sym_input_expression_token1] = ACTIONS(267), + [aux_sym_primitive_type_token19] = ACTIONS(269), + [aux_sym_variable_definition_token1] = ACTIONS(271), + [aux_sym_variable_definition_token2] = ACTIONS(273), + [aux_sym_buffer_definition_token2] = ACTIONS(275), + [aux_sym_argument_mode_token1] = ACTIONS(277), + [aux_sym_if_statement_token1] = ACTIONS(279), + [aux_sym_repeat_statement_token1] = ACTIONS(281), + [aux_sym__procedure_terminator_token1] = ACTIONS(283), + [aux_sym_procedure_parameter_definition_token1] = ACTIONS(285), + [aux_sym__function_terminator_token1] = ACTIONS(287), + [aux_sym_interface_statement_token1] = ACTIONS(289), + [aux_sym_using_statement_token1] = ACTIONS(291), + [aux_sym_on_error_phrase_token1] = ACTIONS(293), + [aux_sym_on_error_phrase_token3] = ACTIONS(295), + [aux_sym_do_block_token1] = ACTIONS(297), + [aux_sym__case_terminator_token1] = ACTIONS(299), + [aux_sym_find_statement_token1] = ACTIONS(301), + [aux_sym_assign_statement_token1] = ACTIONS(303), + [aux_sym_catch_statement_token1] = ACTIONS(305), + [aux_sym_finally_statement_token1] = ACTIONS(307), + [aux_sym_accumulate_statement_token1] = ACTIONS(309), + [anon_sym_ROUTINE_DASHLEVEL] = ACTIONS(311), + [anon_sym_BLOCK_DASHLEVEL] = ACTIONS(311), }, [193] = { - [sym_body] = STATE(4009), + [sym_body] = STATE(3736), [sym_comment] = STATE(193), - [sym_qualified_name] = STATE(4733), - [sym__block_terminator] = STATE(1519), + [sym_qualified_name] = STATE(4814), + [sym__block_terminator] = STATE(3551), [sym_include] = STATE(193), - [sym_assignment] = STATE(4314), - [sym_variable_definition] = STATE(1535), - [sym_variable_assignment] = STATE(1535), - [sym_buffer_definition] = STATE(1535), - [sym_query_definition] = STATE(1535), - [sym_function_call_statement] = STATE(1535), - [sym_function_call] = STATE(4086), - [sym_if_statement] = STATE(1535), - [sym_label] = STATE(1536), - [sym_repeat_statement] = STATE(1535), - [sym_procedure_statement] = STATE(1535), - [sym_procedure_parameter_definition] = STATE(1535), - [sym_function_statement] = STATE(1535), - [sym_return_statement] = STATE(1535), - [sym_interface_statement] = STATE(1535), - [sym_using_statement] = STATE(1535), - [sym_class_statement] = STATE(1535), - [sym_object_access] = STATE(3567), - [sym_stream_definition] = STATE(1535), - [sym_input_close_statement] = STATE(1535), - [sym_output_close_statement] = STATE(1535), - [sym__stream_statement] = STATE(1535), - [sym_input_stream_statement] = STATE(1537), - [sym_output_stream_statement] = STATE(1537), - [sym_do_block] = STATE(1535), - [sym_case_statement] = STATE(1535), - [sym_for_statement] = STATE(1535), - [sym_find_statement] = STATE(1535), - [sym_abl_statement] = STATE(1535), - [sym_assign_statement] = STATE(1535), - [sym_catch_statement] = STATE(1535), - [sym_finally_statement] = STATE(1535), - [sym_accumulate_statement] = STATE(1535), - [sym_undo_statement] = STATE(1535), - [sym_error_scope_statement] = STATE(1535), - [sym_temp_table_definition] = STATE(1535), - [sym_on_statement] = STATE(1535), - [sym__statement] = STATE(1538), - [aux_sym_source_code_repeat1] = STATE(276), - [sym_identifier] = ACTIONS(227), + [sym_assignment] = STATE(4463), + [sym_variable_definition] = STATE(1550), + [sym_variable_assignment] = STATE(1550), + [sym_buffer_definition] = STATE(1550), + [sym_query_definition] = STATE(1550), + [sym_function_call_statement] = STATE(1550), + [sym_function_call] = STATE(4558), + [sym_if_statement] = STATE(1550), + [sym_label] = STATE(1551), + [sym_repeat_statement] = STATE(1550), + [sym_procedure_statement] = STATE(1550), + [sym_procedure_parameter_definition] = STATE(1550), + [sym_function_statement] = STATE(1550), + [sym_return_statement] = STATE(1550), + [sym_interface_statement] = STATE(1550), + [sym_using_statement] = STATE(1550), + [sym_class_statement] = STATE(1550), + [sym_object_access] = STATE(3661), + [sym_stream_definition] = STATE(1550), + [sym_input_close_statement] = STATE(1550), + [sym_output_close_statement] = STATE(1550), + [sym__stream_statement] = STATE(1550), + [sym_input_stream_statement] = STATE(1552), + [sym_output_stream_statement] = STATE(1552), + [sym_do_block] = STATE(1550), + [sym_case_statement] = STATE(1550), + [sym_for_statement] = STATE(1550), + [sym_find_statement] = STATE(1550), + [sym_abl_statement] = STATE(1550), + [sym_assign_statement] = STATE(1550), + [sym_catch_statement] = STATE(1550), + [sym_finally_statement] = STATE(1550), + [sym_accumulate_statement] = STATE(1550), + [sym_undo_statement] = STATE(1550), + [sym_error_scope_statement] = STATE(1550), + [sym_temp_table_definition] = STATE(1550), + [sym_on_statement] = STATE(1550), + [sym__statement] = STATE(1553), + [aux_sym_source_code_repeat1] = STATE(286), + [sym_identifier] = ACTIONS(263), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), [anon_sym_LBRACE] = ACTIONS(7), - [aux_sym__block_terminator_token1] = ACTIONS(311), - [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), + [aux_sym__block_terminator_token1] = ACTIONS(319), + [aux_sym_input_expression_token1] = ACTIONS(267), + [aux_sym_primitive_type_token19] = ACTIONS(269), + [aux_sym_variable_definition_token1] = ACTIONS(271), + [aux_sym_variable_definition_token2] = ACTIONS(273), + [aux_sym_buffer_definition_token2] = ACTIONS(275), + [aux_sym_argument_mode_token1] = ACTIONS(277), + [aux_sym_if_statement_token1] = ACTIONS(279), + [aux_sym_repeat_statement_token1] = ACTIONS(281), + [aux_sym__procedure_terminator_token1] = ACTIONS(283), + [aux_sym_procedure_parameter_definition_token1] = ACTIONS(285), + [aux_sym__function_terminator_token1] = ACTIONS(287), + [aux_sym_interface_statement_token1] = ACTIONS(289), + [aux_sym_using_statement_token1] = ACTIONS(291), + [aux_sym_on_error_phrase_token1] = ACTIONS(293), + [aux_sym_on_error_phrase_token3] = ACTIONS(295), + [aux_sym_do_block_token1] = ACTIONS(297), + [aux_sym__case_terminator_token1] = ACTIONS(299), + [aux_sym_find_statement_token1] = ACTIONS(301), + [aux_sym_assign_statement_token1] = ACTIONS(303), + [aux_sym_catch_statement_token1] = ACTIONS(305), + [aux_sym_finally_statement_token1] = ACTIONS(307), + [aux_sym_accumulate_statement_token1] = ACTIONS(309), + [anon_sym_ROUTINE_DASHLEVEL] = ACTIONS(311), + [anon_sym_BLOCK_DASHLEVEL] = ACTIONS(311), }, [194] = { - [sym_body] = STATE(4048), + [sym_body] = STATE(3731), [sym_comment] = STATE(194), - [sym_qualified_name] = STATE(4733), - [sym__block_terminator] = STATE(945), + [sym_qualified_name] = STATE(4814), + [sym__block_terminator] = STATE(3548), [sym_include] = STATE(194), - [sym_assignment] = STATE(4314), - [sym_variable_definition] = STATE(1535), - [sym_variable_assignment] = STATE(1535), - [sym_buffer_definition] = STATE(1535), - [sym_query_definition] = STATE(1535), - [sym_function_call_statement] = STATE(1535), - [sym_function_call] = STATE(4086), - [sym_if_statement] = STATE(1535), - [sym_label] = STATE(1536), - [sym_repeat_statement] = STATE(1535), - [sym_procedure_statement] = STATE(1535), - [sym_procedure_parameter_definition] = STATE(1535), - [sym_function_statement] = STATE(1535), - [sym_return_statement] = STATE(1535), - [sym_interface_statement] = STATE(1535), - [sym_using_statement] = STATE(1535), - [sym_class_statement] = STATE(1535), - [sym_object_access] = STATE(3567), - [sym_stream_definition] = STATE(1535), - [sym_input_close_statement] = STATE(1535), - [sym_output_close_statement] = STATE(1535), - [sym__stream_statement] = STATE(1535), - [sym_input_stream_statement] = STATE(1537), - [sym_output_stream_statement] = STATE(1537), - [sym_do_block] = STATE(1535), - [sym_case_statement] = STATE(1535), - [sym_for_statement] = STATE(1535), - [sym_find_statement] = STATE(1535), - [sym_abl_statement] = STATE(1535), - [sym_assign_statement] = STATE(1535), - [sym_catch_statement] = STATE(1535), - [sym_finally_statement] = STATE(1535), - [sym_accumulate_statement] = STATE(1535), - [sym_undo_statement] = STATE(1535), - [sym_error_scope_statement] = STATE(1535), - [sym_temp_table_definition] = STATE(1535), - [sym_on_statement] = STATE(1535), - [sym__statement] = STATE(1538), - [aux_sym_source_code_repeat1] = STATE(276), - [sym_identifier] = ACTIONS(227), + [sym_assignment] = STATE(4463), + [sym_variable_definition] = STATE(1550), + [sym_variable_assignment] = STATE(1550), + [sym_buffer_definition] = STATE(1550), + [sym_query_definition] = STATE(1550), + [sym_function_call_statement] = STATE(1550), + [sym_function_call] = STATE(4558), + [sym_if_statement] = STATE(1550), + [sym_label] = STATE(1551), + [sym_repeat_statement] = STATE(1550), + [sym_procedure_statement] = STATE(1550), + [sym_procedure_parameter_definition] = STATE(1550), + [sym_function_statement] = STATE(1550), + [sym_return_statement] = STATE(1550), + [sym_interface_statement] = STATE(1550), + [sym_using_statement] = STATE(1550), + [sym_class_statement] = STATE(1550), + [sym_object_access] = STATE(3661), + [sym_stream_definition] = STATE(1550), + [sym_input_close_statement] = STATE(1550), + [sym_output_close_statement] = STATE(1550), + [sym__stream_statement] = STATE(1550), + [sym_input_stream_statement] = STATE(1552), + [sym_output_stream_statement] = STATE(1552), + [sym_do_block] = STATE(1550), + [sym_case_statement] = STATE(1550), + [sym_for_statement] = STATE(1550), + [sym_find_statement] = STATE(1550), + [sym_abl_statement] = STATE(1550), + [sym_assign_statement] = STATE(1550), + [sym_catch_statement] = STATE(1550), + [sym_finally_statement] = STATE(1550), + [sym_accumulate_statement] = STATE(1550), + [sym_undo_statement] = STATE(1550), + [sym_error_scope_statement] = STATE(1550), + [sym_temp_table_definition] = STATE(1550), + [sym_on_statement] = STATE(1550), + [sym__statement] = STATE(1553), + [aux_sym_source_code_repeat1] = STATE(286), + [sym_identifier] = ACTIONS(263), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), [anon_sym_LBRACE] = ACTIONS(7), - [aux_sym__block_terminator_token1] = ACTIONS(303), - [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), + [aux_sym__block_terminator_token1] = ACTIONS(319), + [aux_sym_input_expression_token1] = ACTIONS(267), + [aux_sym_primitive_type_token19] = ACTIONS(269), + [aux_sym_variable_definition_token1] = ACTIONS(271), + [aux_sym_variable_definition_token2] = ACTIONS(273), + [aux_sym_buffer_definition_token2] = ACTIONS(275), + [aux_sym_argument_mode_token1] = ACTIONS(277), + [aux_sym_if_statement_token1] = ACTIONS(279), + [aux_sym_repeat_statement_token1] = ACTIONS(281), + [aux_sym__procedure_terminator_token1] = ACTIONS(283), + [aux_sym_procedure_parameter_definition_token1] = ACTIONS(285), + [aux_sym__function_terminator_token1] = ACTIONS(287), + [aux_sym_interface_statement_token1] = ACTIONS(289), + [aux_sym_using_statement_token1] = ACTIONS(291), + [aux_sym_on_error_phrase_token1] = ACTIONS(293), + [aux_sym_on_error_phrase_token3] = ACTIONS(295), + [aux_sym_do_block_token1] = ACTIONS(297), + [aux_sym__case_terminator_token1] = ACTIONS(299), + [aux_sym_find_statement_token1] = ACTIONS(301), + [aux_sym_assign_statement_token1] = ACTIONS(303), + [aux_sym_catch_statement_token1] = ACTIONS(305), + [aux_sym_finally_statement_token1] = ACTIONS(307), + [aux_sym_accumulate_statement_token1] = ACTIONS(309), + [anon_sym_ROUTINE_DASHLEVEL] = ACTIONS(311), + [anon_sym_BLOCK_DASHLEVEL] = ACTIONS(311), }, [195] = { - [sym_body] = STATE(3592), + [sym_body] = STATE(3728), [sym_comment] = STATE(195), - [sym_qualified_name] = STATE(4733), - [sym__block_terminator] = STATE(3364), + [sym_qualified_name] = STATE(4814), + [sym__block_terminator] = STATE(3545), [sym_include] = STATE(195), - [sym_assignment] = STATE(4314), - [sym_variable_definition] = STATE(1535), - [sym_variable_assignment] = STATE(1535), - [sym_buffer_definition] = STATE(1535), - [sym_query_definition] = STATE(1535), - [sym_function_call_statement] = STATE(1535), - [sym_function_call] = STATE(4086), - [sym_if_statement] = STATE(1535), - [sym_label] = STATE(1536), - [sym_repeat_statement] = STATE(1535), - [sym_procedure_statement] = STATE(1535), - [sym_procedure_parameter_definition] = STATE(1535), - [sym_function_statement] = STATE(1535), - [sym_return_statement] = STATE(1535), - [sym_interface_statement] = STATE(1535), - [sym_using_statement] = STATE(1535), - [sym_class_statement] = STATE(1535), - [sym_object_access] = STATE(3567), - [sym_stream_definition] = STATE(1535), - [sym_input_close_statement] = STATE(1535), - [sym_output_close_statement] = STATE(1535), - [sym__stream_statement] = STATE(1535), - [sym_input_stream_statement] = STATE(1537), - [sym_output_stream_statement] = STATE(1537), - [sym_do_block] = STATE(1535), - [sym_case_statement] = STATE(1535), - [sym_for_statement] = STATE(1535), - [sym_find_statement] = STATE(1535), - [sym_abl_statement] = STATE(1535), - [sym_assign_statement] = STATE(1535), - [sym_catch_statement] = STATE(1535), - [sym_finally_statement] = STATE(1535), - [sym_accumulate_statement] = STATE(1535), - [sym_undo_statement] = STATE(1535), - [sym_error_scope_statement] = STATE(1535), - [sym_temp_table_definition] = STATE(1535), - [sym_on_statement] = STATE(1535), - [sym__statement] = STATE(1538), - [aux_sym_source_code_repeat1] = STATE(276), - [sym_identifier] = ACTIONS(227), + [sym_assignment] = STATE(4463), + [sym_variable_definition] = STATE(1550), + [sym_variable_assignment] = STATE(1550), + [sym_buffer_definition] = STATE(1550), + [sym_query_definition] = STATE(1550), + [sym_function_call_statement] = STATE(1550), + [sym_function_call] = STATE(4558), + [sym_if_statement] = STATE(1550), + [sym_label] = STATE(1551), + [sym_repeat_statement] = STATE(1550), + [sym_procedure_statement] = STATE(1550), + [sym_procedure_parameter_definition] = STATE(1550), + [sym_function_statement] = STATE(1550), + [sym_return_statement] = STATE(1550), + [sym_interface_statement] = STATE(1550), + [sym_using_statement] = STATE(1550), + [sym_class_statement] = STATE(1550), + [sym_object_access] = STATE(3661), + [sym_stream_definition] = STATE(1550), + [sym_input_close_statement] = STATE(1550), + [sym_output_close_statement] = STATE(1550), + [sym__stream_statement] = STATE(1550), + [sym_input_stream_statement] = STATE(1552), + [sym_output_stream_statement] = STATE(1552), + [sym_do_block] = STATE(1550), + [sym_case_statement] = STATE(1550), + [sym_for_statement] = STATE(1550), + [sym_find_statement] = STATE(1550), + [sym_abl_statement] = STATE(1550), + [sym_assign_statement] = STATE(1550), + [sym_catch_statement] = STATE(1550), + [sym_finally_statement] = STATE(1550), + [sym_accumulate_statement] = STATE(1550), + [sym_undo_statement] = STATE(1550), + [sym_error_scope_statement] = STATE(1550), + [sym_temp_table_definition] = STATE(1550), + [sym_on_statement] = STATE(1550), + [sym__statement] = STATE(1553), + [aux_sym_source_code_repeat1] = STATE(286), + [sym_identifier] = ACTIONS(263), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), [anon_sym_LBRACE] = ACTIONS(7), - [aux_sym__block_terminator_token1] = ACTIONS(297), - [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), + [aux_sym__block_terminator_token1] = ACTIONS(319), + [aux_sym_input_expression_token1] = ACTIONS(267), + [aux_sym_primitive_type_token19] = ACTIONS(269), + [aux_sym_variable_definition_token1] = ACTIONS(271), + [aux_sym_variable_definition_token2] = ACTIONS(273), + [aux_sym_buffer_definition_token2] = ACTIONS(275), + [aux_sym_argument_mode_token1] = ACTIONS(277), + [aux_sym_if_statement_token1] = ACTIONS(279), + [aux_sym_repeat_statement_token1] = ACTIONS(281), + [aux_sym__procedure_terminator_token1] = ACTIONS(283), + [aux_sym_procedure_parameter_definition_token1] = ACTIONS(285), + [aux_sym__function_terminator_token1] = ACTIONS(287), + [aux_sym_interface_statement_token1] = ACTIONS(289), + [aux_sym_using_statement_token1] = ACTIONS(291), + [aux_sym_on_error_phrase_token1] = ACTIONS(293), + [aux_sym_on_error_phrase_token3] = ACTIONS(295), + [aux_sym_do_block_token1] = ACTIONS(297), + [aux_sym__case_terminator_token1] = ACTIONS(299), + [aux_sym_find_statement_token1] = ACTIONS(301), + [aux_sym_assign_statement_token1] = ACTIONS(303), + [aux_sym_catch_statement_token1] = ACTIONS(305), + [aux_sym_finally_statement_token1] = ACTIONS(307), + [aux_sym_accumulate_statement_token1] = ACTIONS(309), + [anon_sym_ROUTINE_DASHLEVEL] = ACTIONS(311), + [anon_sym_BLOCK_DASHLEVEL] = ACTIONS(311), }, [196] = { - [sym_body] = STATE(4008), + [sym_body] = STATE(3727), [sym_comment] = STATE(196), - [sym_qualified_name] = STATE(4733), - [sym__block_terminator] = STATE(1510), + [sym_qualified_name] = STATE(4814), + [sym__block_terminator] = STATE(3546), [sym_include] = STATE(196), - [sym_assignment] = STATE(4314), - [sym_variable_definition] = STATE(1535), - [sym_variable_assignment] = STATE(1535), - [sym_buffer_definition] = STATE(1535), - [sym_query_definition] = STATE(1535), - [sym_function_call_statement] = STATE(1535), - [sym_function_call] = STATE(4086), - [sym_if_statement] = STATE(1535), - [sym_label] = STATE(1536), - [sym_repeat_statement] = STATE(1535), - [sym_procedure_statement] = STATE(1535), - [sym_procedure_parameter_definition] = STATE(1535), - [sym_function_statement] = STATE(1535), - [sym_return_statement] = STATE(1535), - [sym_interface_statement] = STATE(1535), - [sym_using_statement] = STATE(1535), - [sym_class_statement] = STATE(1535), - [sym_object_access] = STATE(3567), - [sym_stream_definition] = STATE(1535), - [sym_input_close_statement] = STATE(1535), - [sym_output_close_statement] = STATE(1535), - [sym__stream_statement] = STATE(1535), - [sym_input_stream_statement] = STATE(1537), - [sym_output_stream_statement] = STATE(1537), - [sym_do_block] = STATE(1535), - [sym_case_statement] = STATE(1535), - [sym_for_statement] = STATE(1535), - [sym_find_statement] = STATE(1535), - [sym_abl_statement] = STATE(1535), - [sym_assign_statement] = STATE(1535), - [sym_catch_statement] = STATE(1535), - [sym_finally_statement] = STATE(1535), - [sym_accumulate_statement] = STATE(1535), - [sym_undo_statement] = STATE(1535), - [sym_error_scope_statement] = STATE(1535), - [sym_temp_table_definition] = STATE(1535), - [sym_on_statement] = STATE(1535), - [sym__statement] = STATE(1538), - [aux_sym_source_code_repeat1] = STATE(276), - [sym_identifier] = ACTIONS(227), + [sym_assignment] = STATE(4463), + [sym_variable_definition] = STATE(1550), + [sym_variable_assignment] = STATE(1550), + [sym_buffer_definition] = STATE(1550), + [sym_query_definition] = STATE(1550), + [sym_function_call_statement] = STATE(1550), + [sym_function_call] = STATE(4558), + [sym_if_statement] = STATE(1550), + [sym_label] = STATE(1551), + [sym_repeat_statement] = STATE(1550), + [sym_procedure_statement] = STATE(1550), + [sym_procedure_parameter_definition] = STATE(1550), + [sym_function_statement] = STATE(1550), + [sym_return_statement] = STATE(1550), + [sym_interface_statement] = STATE(1550), + [sym_using_statement] = STATE(1550), + [sym_class_statement] = STATE(1550), + [sym_object_access] = STATE(3661), + [sym_stream_definition] = STATE(1550), + [sym_input_close_statement] = STATE(1550), + [sym_output_close_statement] = STATE(1550), + [sym__stream_statement] = STATE(1550), + [sym_input_stream_statement] = STATE(1552), + [sym_output_stream_statement] = STATE(1552), + [sym_do_block] = STATE(1550), + [sym_case_statement] = STATE(1550), + [sym_for_statement] = STATE(1550), + [sym_find_statement] = STATE(1550), + [sym_abl_statement] = STATE(1550), + [sym_assign_statement] = STATE(1550), + [sym_catch_statement] = STATE(1550), + [sym_finally_statement] = STATE(1550), + [sym_accumulate_statement] = STATE(1550), + [sym_undo_statement] = STATE(1550), + [sym_error_scope_statement] = STATE(1550), + [sym_temp_table_definition] = STATE(1550), + [sym_on_statement] = STATE(1550), + [sym__statement] = STATE(1553), + [aux_sym_source_code_repeat1] = STATE(286), + [sym_identifier] = ACTIONS(263), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), [anon_sym_LBRACE] = ACTIONS(7), - [aux_sym__block_terminator_token1] = ACTIONS(311), - [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), + [aux_sym__block_terminator_token1] = ACTIONS(319), + [aux_sym_input_expression_token1] = ACTIONS(267), + [aux_sym_primitive_type_token19] = ACTIONS(269), + [aux_sym_variable_definition_token1] = ACTIONS(271), + [aux_sym_variable_definition_token2] = ACTIONS(273), + [aux_sym_buffer_definition_token2] = ACTIONS(275), + [aux_sym_argument_mode_token1] = ACTIONS(277), + [aux_sym_if_statement_token1] = ACTIONS(279), + [aux_sym_repeat_statement_token1] = ACTIONS(281), + [aux_sym__procedure_terminator_token1] = ACTIONS(283), + [aux_sym_procedure_parameter_definition_token1] = ACTIONS(285), + [aux_sym__function_terminator_token1] = ACTIONS(287), + [aux_sym_interface_statement_token1] = ACTIONS(289), + [aux_sym_using_statement_token1] = ACTIONS(291), + [aux_sym_on_error_phrase_token1] = ACTIONS(293), + [aux_sym_on_error_phrase_token3] = ACTIONS(295), + [aux_sym_do_block_token1] = ACTIONS(297), + [aux_sym__case_terminator_token1] = ACTIONS(299), + [aux_sym_find_statement_token1] = ACTIONS(301), + [aux_sym_assign_statement_token1] = ACTIONS(303), + [aux_sym_catch_statement_token1] = ACTIONS(305), + [aux_sym_finally_statement_token1] = ACTIONS(307), + [aux_sym_accumulate_statement_token1] = ACTIONS(309), + [anon_sym_ROUTINE_DASHLEVEL] = ACTIONS(311), + [anon_sym_BLOCK_DASHLEVEL] = ACTIONS(311), }, [197] = { - [sym_body] = STATE(4001), + [sym_body] = STATE(3722), [sym_comment] = STATE(197), - [sym_qualified_name] = STATE(4733), - [sym__block_terminator] = STATE(1507), + [sym_qualified_name] = STATE(4814), + [sym__block_terminator] = STATE(3543), [sym_include] = STATE(197), - [sym_assignment] = STATE(4314), - [sym_variable_definition] = STATE(1535), - [sym_variable_assignment] = STATE(1535), - [sym_buffer_definition] = STATE(1535), - [sym_query_definition] = STATE(1535), - [sym_function_call_statement] = STATE(1535), - [sym_function_call] = STATE(4086), - [sym_if_statement] = STATE(1535), - [sym_label] = STATE(1536), - [sym_repeat_statement] = STATE(1535), - [sym_procedure_statement] = STATE(1535), - [sym_procedure_parameter_definition] = STATE(1535), - [sym_function_statement] = STATE(1535), - [sym_return_statement] = STATE(1535), - [sym_interface_statement] = STATE(1535), - [sym_using_statement] = STATE(1535), - [sym_class_statement] = STATE(1535), - [sym_object_access] = STATE(3567), - [sym_stream_definition] = STATE(1535), - [sym_input_close_statement] = STATE(1535), - [sym_output_close_statement] = STATE(1535), - [sym__stream_statement] = STATE(1535), - [sym_input_stream_statement] = STATE(1537), - [sym_output_stream_statement] = STATE(1537), - [sym_do_block] = STATE(1535), - [sym_case_statement] = STATE(1535), - [sym_for_statement] = STATE(1535), - [sym_find_statement] = STATE(1535), - [sym_abl_statement] = STATE(1535), - [sym_assign_statement] = STATE(1535), - [sym_catch_statement] = STATE(1535), - [sym_finally_statement] = STATE(1535), - [sym_accumulate_statement] = STATE(1535), - [sym_undo_statement] = STATE(1535), - [sym_error_scope_statement] = STATE(1535), - [sym_temp_table_definition] = STATE(1535), - [sym_on_statement] = STATE(1535), - [sym__statement] = STATE(1538), - [aux_sym_source_code_repeat1] = STATE(276), - [sym_identifier] = ACTIONS(227), + [sym_assignment] = STATE(4463), + [sym_variable_definition] = STATE(1550), + [sym_variable_assignment] = STATE(1550), + [sym_buffer_definition] = STATE(1550), + [sym_query_definition] = STATE(1550), + [sym_function_call_statement] = STATE(1550), + [sym_function_call] = STATE(4558), + [sym_if_statement] = STATE(1550), + [sym_label] = STATE(1551), + [sym_repeat_statement] = STATE(1550), + [sym_procedure_statement] = STATE(1550), + [sym_procedure_parameter_definition] = STATE(1550), + [sym_function_statement] = STATE(1550), + [sym_return_statement] = STATE(1550), + [sym_interface_statement] = STATE(1550), + [sym_using_statement] = STATE(1550), + [sym_class_statement] = STATE(1550), + [sym_object_access] = STATE(3661), + [sym_stream_definition] = STATE(1550), + [sym_input_close_statement] = STATE(1550), + [sym_output_close_statement] = STATE(1550), + [sym__stream_statement] = STATE(1550), + [sym_input_stream_statement] = STATE(1552), + [sym_output_stream_statement] = STATE(1552), + [sym_do_block] = STATE(1550), + [sym_case_statement] = STATE(1550), + [sym_for_statement] = STATE(1550), + [sym_find_statement] = STATE(1550), + [sym_abl_statement] = STATE(1550), + [sym_assign_statement] = STATE(1550), + [sym_catch_statement] = STATE(1550), + [sym_finally_statement] = STATE(1550), + [sym_accumulate_statement] = STATE(1550), + [sym_undo_statement] = STATE(1550), + [sym_error_scope_statement] = STATE(1550), + [sym_temp_table_definition] = STATE(1550), + [sym_on_statement] = STATE(1550), + [sym__statement] = STATE(1553), + [aux_sym_source_code_repeat1] = STATE(286), + [sym_identifier] = ACTIONS(263), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), [anon_sym_LBRACE] = ACTIONS(7), - [aux_sym__block_terminator_token1] = ACTIONS(311), - [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), + [aux_sym__block_terminator_token1] = ACTIONS(319), + [aux_sym_input_expression_token1] = ACTIONS(267), + [aux_sym_primitive_type_token19] = ACTIONS(269), + [aux_sym_variable_definition_token1] = ACTIONS(271), + [aux_sym_variable_definition_token2] = ACTIONS(273), + [aux_sym_buffer_definition_token2] = ACTIONS(275), + [aux_sym_argument_mode_token1] = ACTIONS(277), + [aux_sym_if_statement_token1] = ACTIONS(279), + [aux_sym_repeat_statement_token1] = ACTIONS(281), + [aux_sym__procedure_terminator_token1] = ACTIONS(283), + [aux_sym_procedure_parameter_definition_token1] = ACTIONS(285), + [aux_sym__function_terminator_token1] = ACTIONS(287), + [aux_sym_interface_statement_token1] = ACTIONS(289), + [aux_sym_using_statement_token1] = ACTIONS(291), + [aux_sym_on_error_phrase_token1] = ACTIONS(293), + [aux_sym_on_error_phrase_token3] = ACTIONS(295), + [aux_sym_do_block_token1] = ACTIONS(297), + [aux_sym__case_terminator_token1] = ACTIONS(299), + [aux_sym_find_statement_token1] = ACTIONS(301), + [aux_sym_assign_statement_token1] = ACTIONS(303), + [aux_sym_catch_statement_token1] = ACTIONS(305), + [aux_sym_finally_statement_token1] = ACTIONS(307), + [aux_sym_accumulate_statement_token1] = ACTIONS(309), + [anon_sym_ROUTINE_DASHLEVEL] = ACTIONS(311), + [anon_sym_BLOCK_DASHLEVEL] = ACTIONS(311), }, [198] = { - [sym_body] = STATE(4057), + [sym_body] = STATE(3714), [sym_comment] = STATE(198), - [sym_qualified_name] = STATE(4733), - [sym__block_terminator] = STATE(948), + [sym_qualified_name] = STATE(4814), + [sym__block_terminator] = STATE(3542), [sym_include] = STATE(198), - [sym_assignment] = STATE(4314), - [sym_variable_definition] = STATE(1535), - [sym_variable_assignment] = STATE(1535), - [sym_buffer_definition] = STATE(1535), - [sym_query_definition] = STATE(1535), - [sym_function_call_statement] = STATE(1535), - [sym_function_call] = STATE(4086), - [sym_if_statement] = STATE(1535), - [sym_label] = STATE(1536), - [sym_repeat_statement] = STATE(1535), - [sym_procedure_statement] = STATE(1535), - [sym_procedure_parameter_definition] = STATE(1535), - [sym_function_statement] = STATE(1535), - [sym_return_statement] = STATE(1535), - [sym_interface_statement] = STATE(1535), - [sym_using_statement] = STATE(1535), - [sym_class_statement] = STATE(1535), - [sym_object_access] = STATE(3567), - [sym_stream_definition] = STATE(1535), - [sym_input_close_statement] = STATE(1535), - [sym_output_close_statement] = STATE(1535), - [sym__stream_statement] = STATE(1535), - [sym_input_stream_statement] = STATE(1537), - [sym_output_stream_statement] = STATE(1537), - [sym_do_block] = STATE(1535), - [sym_case_statement] = STATE(1535), - [sym_for_statement] = STATE(1535), - [sym_find_statement] = STATE(1535), - [sym_abl_statement] = STATE(1535), - [sym_assign_statement] = STATE(1535), - [sym_catch_statement] = STATE(1535), - [sym_finally_statement] = STATE(1535), - [sym_accumulate_statement] = STATE(1535), - [sym_undo_statement] = STATE(1535), - [sym_error_scope_statement] = STATE(1535), - [sym_temp_table_definition] = STATE(1535), - [sym_on_statement] = STATE(1535), - [sym__statement] = STATE(1538), - [aux_sym_source_code_repeat1] = STATE(276), - [sym_identifier] = ACTIONS(227), + [sym_assignment] = STATE(4463), + [sym_variable_definition] = STATE(1550), + [sym_variable_assignment] = STATE(1550), + [sym_buffer_definition] = STATE(1550), + [sym_query_definition] = STATE(1550), + [sym_function_call_statement] = STATE(1550), + [sym_function_call] = STATE(4558), + [sym_if_statement] = STATE(1550), + [sym_label] = STATE(1551), + [sym_repeat_statement] = STATE(1550), + [sym_procedure_statement] = STATE(1550), + [sym_procedure_parameter_definition] = STATE(1550), + [sym_function_statement] = STATE(1550), + [sym_return_statement] = STATE(1550), + [sym_interface_statement] = STATE(1550), + [sym_using_statement] = STATE(1550), + [sym_class_statement] = STATE(1550), + [sym_object_access] = STATE(3661), + [sym_stream_definition] = STATE(1550), + [sym_input_close_statement] = STATE(1550), + [sym_output_close_statement] = STATE(1550), + [sym__stream_statement] = STATE(1550), + [sym_input_stream_statement] = STATE(1552), + [sym_output_stream_statement] = STATE(1552), + [sym_do_block] = STATE(1550), + [sym_case_statement] = STATE(1550), + [sym_for_statement] = STATE(1550), + [sym_find_statement] = STATE(1550), + [sym_abl_statement] = STATE(1550), + [sym_assign_statement] = STATE(1550), + [sym_catch_statement] = STATE(1550), + [sym_finally_statement] = STATE(1550), + [sym_accumulate_statement] = STATE(1550), + [sym_undo_statement] = STATE(1550), + [sym_error_scope_statement] = STATE(1550), + [sym_temp_table_definition] = STATE(1550), + [sym_on_statement] = STATE(1550), + [sym__statement] = STATE(1553), + [aux_sym_source_code_repeat1] = STATE(286), + [sym_identifier] = ACTIONS(263), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), [anon_sym_LBRACE] = ACTIONS(7), - [aux_sym__block_terminator_token1] = ACTIONS(303), - [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), + [aux_sym__block_terminator_token1] = ACTIONS(319), + [aux_sym_input_expression_token1] = ACTIONS(267), + [aux_sym_primitive_type_token19] = ACTIONS(269), + [aux_sym_variable_definition_token1] = ACTIONS(271), + [aux_sym_variable_definition_token2] = ACTIONS(273), + [aux_sym_buffer_definition_token2] = ACTIONS(275), + [aux_sym_argument_mode_token1] = ACTIONS(277), + [aux_sym_if_statement_token1] = ACTIONS(279), + [aux_sym_repeat_statement_token1] = ACTIONS(281), + [aux_sym__procedure_terminator_token1] = ACTIONS(283), + [aux_sym_procedure_parameter_definition_token1] = ACTIONS(285), + [aux_sym__function_terminator_token1] = ACTIONS(287), + [aux_sym_interface_statement_token1] = ACTIONS(289), + [aux_sym_using_statement_token1] = ACTIONS(291), + [aux_sym_on_error_phrase_token1] = ACTIONS(293), + [aux_sym_on_error_phrase_token3] = ACTIONS(295), + [aux_sym_do_block_token1] = ACTIONS(297), + [aux_sym__case_terminator_token1] = ACTIONS(299), + [aux_sym_find_statement_token1] = ACTIONS(301), + [aux_sym_assign_statement_token1] = ACTIONS(303), + [aux_sym_catch_statement_token1] = ACTIONS(305), + [aux_sym_finally_statement_token1] = ACTIONS(307), + [aux_sym_accumulate_statement_token1] = ACTIONS(309), + [anon_sym_ROUTINE_DASHLEVEL] = ACTIONS(311), + [anon_sym_BLOCK_DASHLEVEL] = ACTIONS(311), }, [199] = { - [sym_body] = STATE(3975), + [sym_body] = STATE(3711), [sym_comment] = STATE(199), - [sym_qualified_name] = STATE(4733), - [sym__block_terminator] = STATE(1501), + [sym_qualified_name] = STATE(4814), + [sym__block_terminator] = STATE(3538), [sym_include] = STATE(199), - [sym_assignment] = STATE(4314), - [sym_variable_definition] = STATE(1535), - [sym_variable_assignment] = STATE(1535), - [sym_buffer_definition] = STATE(1535), - [sym_query_definition] = STATE(1535), - [sym_function_call_statement] = STATE(1535), - [sym_function_call] = STATE(4086), - [sym_if_statement] = STATE(1535), - [sym_label] = STATE(1536), - [sym_repeat_statement] = STATE(1535), - [sym_procedure_statement] = STATE(1535), - [sym_procedure_parameter_definition] = STATE(1535), - [sym_function_statement] = STATE(1535), - [sym_return_statement] = STATE(1535), - [sym_interface_statement] = STATE(1535), - [sym_using_statement] = STATE(1535), - [sym_class_statement] = STATE(1535), - [sym_object_access] = STATE(3567), - [sym_stream_definition] = STATE(1535), - [sym_input_close_statement] = STATE(1535), - [sym_output_close_statement] = STATE(1535), - [sym__stream_statement] = STATE(1535), - [sym_input_stream_statement] = STATE(1537), - [sym_output_stream_statement] = STATE(1537), - [sym_do_block] = STATE(1535), - [sym_case_statement] = STATE(1535), - [sym_for_statement] = STATE(1535), - [sym_find_statement] = STATE(1535), - [sym_abl_statement] = STATE(1535), - [sym_assign_statement] = STATE(1535), - [sym_catch_statement] = STATE(1535), - [sym_finally_statement] = STATE(1535), - [sym_accumulate_statement] = STATE(1535), - [sym_undo_statement] = STATE(1535), - [sym_error_scope_statement] = STATE(1535), - [sym_temp_table_definition] = STATE(1535), - [sym_on_statement] = STATE(1535), - [sym__statement] = STATE(1538), - [aux_sym_source_code_repeat1] = STATE(276), - [sym_identifier] = ACTIONS(227), + [sym_assignment] = STATE(4463), + [sym_variable_definition] = STATE(1550), + [sym_variable_assignment] = STATE(1550), + [sym_buffer_definition] = STATE(1550), + [sym_query_definition] = STATE(1550), + [sym_function_call_statement] = STATE(1550), + [sym_function_call] = STATE(4558), + [sym_if_statement] = STATE(1550), + [sym_label] = STATE(1551), + [sym_repeat_statement] = STATE(1550), + [sym_procedure_statement] = STATE(1550), + [sym_procedure_parameter_definition] = STATE(1550), + [sym_function_statement] = STATE(1550), + [sym_return_statement] = STATE(1550), + [sym_interface_statement] = STATE(1550), + [sym_using_statement] = STATE(1550), + [sym_class_statement] = STATE(1550), + [sym_object_access] = STATE(3661), + [sym_stream_definition] = STATE(1550), + [sym_input_close_statement] = STATE(1550), + [sym_output_close_statement] = STATE(1550), + [sym__stream_statement] = STATE(1550), + [sym_input_stream_statement] = STATE(1552), + [sym_output_stream_statement] = STATE(1552), + [sym_do_block] = STATE(1550), + [sym_case_statement] = STATE(1550), + [sym_for_statement] = STATE(1550), + [sym_find_statement] = STATE(1550), + [sym_abl_statement] = STATE(1550), + [sym_assign_statement] = STATE(1550), + [sym_catch_statement] = STATE(1550), + [sym_finally_statement] = STATE(1550), + [sym_accumulate_statement] = STATE(1550), + [sym_undo_statement] = STATE(1550), + [sym_error_scope_statement] = STATE(1550), + [sym_temp_table_definition] = STATE(1550), + [sym_on_statement] = STATE(1550), + [sym__statement] = STATE(1553), + [aux_sym_source_code_repeat1] = STATE(286), + [sym_identifier] = ACTIONS(263), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), [anon_sym_LBRACE] = ACTIONS(7), - [aux_sym__block_terminator_token1] = ACTIONS(311), - [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), + [aux_sym__block_terminator_token1] = ACTIONS(319), + [aux_sym_input_expression_token1] = ACTIONS(267), + [aux_sym_primitive_type_token19] = ACTIONS(269), + [aux_sym_variable_definition_token1] = ACTIONS(271), + [aux_sym_variable_definition_token2] = ACTIONS(273), + [aux_sym_buffer_definition_token2] = ACTIONS(275), + [aux_sym_argument_mode_token1] = ACTIONS(277), + [aux_sym_if_statement_token1] = ACTIONS(279), + [aux_sym_repeat_statement_token1] = ACTIONS(281), + [aux_sym__procedure_terminator_token1] = ACTIONS(283), + [aux_sym_procedure_parameter_definition_token1] = ACTIONS(285), + [aux_sym__function_terminator_token1] = ACTIONS(287), + [aux_sym_interface_statement_token1] = ACTIONS(289), + [aux_sym_using_statement_token1] = ACTIONS(291), + [aux_sym_on_error_phrase_token1] = ACTIONS(293), + [aux_sym_on_error_phrase_token3] = ACTIONS(295), + [aux_sym_do_block_token1] = ACTIONS(297), + [aux_sym__case_terminator_token1] = ACTIONS(299), + [aux_sym_find_statement_token1] = ACTIONS(301), + [aux_sym_assign_statement_token1] = ACTIONS(303), + [aux_sym_catch_statement_token1] = ACTIONS(305), + [aux_sym_finally_statement_token1] = ACTIONS(307), + [aux_sym_accumulate_statement_token1] = ACTIONS(309), + [anon_sym_ROUTINE_DASHLEVEL] = ACTIONS(311), + [anon_sym_BLOCK_DASHLEVEL] = ACTIONS(311), }, [200] = { - [sym_body] = STATE(4059), + [sym_body] = STATE(3710), [sym_comment] = STATE(200), - [sym_qualified_name] = STATE(4733), - [sym__block_terminator] = STATE(953), + [sym_qualified_name] = STATE(4814), + [sym__block_terminator] = STATE(3536), [sym_include] = STATE(200), - [sym_assignment] = STATE(4314), - [sym_variable_definition] = STATE(1535), - [sym_variable_assignment] = STATE(1535), - [sym_buffer_definition] = STATE(1535), - [sym_query_definition] = STATE(1535), - [sym_function_call_statement] = STATE(1535), - [sym_function_call] = STATE(4086), - [sym_if_statement] = STATE(1535), - [sym_label] = STATE(1536), - [sym_repeat_statement] = STATE(1535), - [sym_procedure_statement] = STATE(1535), - [sym_procedure_parameter_definition] = STATE(1535), - [sym_function_statement] = STATE(1535), - [sym_return_statement] = STATE(1535), - [sym_interface_statement] = STATE(1535), - [sym_using_statement] = STATE(1535), - [sym_class_statement] = STATE(1535), - [sym_object_access] = STATE(3567), - [sym_stream_definition] = STATE(1535), - [sym_input_close_statement] = STATE(1535), - [sym_output_close_statement] = STATE(1535), - [sym__stream_statement] = STATE(1535), - [sym_input_stream_statement] = STATE(1537), - [sym_output_stream_statement] = STATE(1537), - [sym_do_block] = STATE(1535), - [sym_case_statement] = STATE(1535), - [sym_for_statement] = STATE(1535), - [sym_find_statement] = STATE(1535), - [sym_abl_statement] = STATE(1535), - [sym_assign_statement] = STATE(1535), - [sym_catch_statement] = STATE(1535), - [sym_finally_statement] = STATE(1535), - [sym_accumulate_statement] = STATE(1535), - [sym_undo_statement] = STATE(1535), - [sym_error_scope_statement] = STATE(1535), - [sym_temp_table_definition] = STATE(1535), - [sym_on_statement] = STATE(1535), - [sym__statement] = STATE(1538), - [aux_sym_source_code_repeat1] = STATE(276), - [sym_identifier] = ACTIONS(227), + [sym_assignment] = STATE(4463), + [sym_variable_definition] = STATE(1550), + [sym_variable_assignment] = STATE(1550), + [sym_buffer_definition] = STATE(1550), + [sym_query_definition] = STATE(1550), + [sym_function_call_statement] = STATE(1550), + [sym_function_call] = STATE(4558), + [sym_if_statement] = STATE(1550), + [sym_label] = STATE(1551), + [sym_repeat_statement] = STATE(1550), + [sym_procedure_statement] = STATE(1550), + [sym_procedure_parameter_definition] = STATE(1550), + [sym_function_statement] = STATE(1550), + [sym_return_statement] = STATE(1550), + [sym_interface_statement] = STATE(1550), + [sym_using_statement] = STATE(1550), + [sym_class_statement] = STATE(1550), + [sym_object_access] = STATE(3661), + [sym_stream_definition] = STATE(1550), + [sym_input_close_statement] = STATE(1550), + [sym_output_close_statement] = STATE(1550), + [sym__stream_statement] = STATE(1550), + [sym_input_stream_statement] = STATE(1552), + [sym_output_stream_statement] = STATE(1552), + [sym_do_block] = STATE(1550), + [sym_case_statement] = STATE(1550), + [sym_for_statement] = STATE(1550), + [sym_find_statement] = STATE(1550), + [sym_abl_statement] = STATE(1550), + [sym_assign_statement] = STATE(1550), + [sym_catch_statement] = STATE(1550), + [sym_finally_statement] = STATE(1550), + [sym_accumulate_statement] = STATE(1550), + [sym_undo_statement] = STATE(1550), + [sym_error_scope_statement] = STATE(1550), + [sym_temp_table_definition] = STATE(1550), + [sym_on_statement] = STATE(1550), + [sym__statement] = STATE(1553), + [aux_sym_source_code_repeat1] = STATE(286), + [sym_identifier] = ACTIONS(263), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), [anon_sym_LBRACE] = ACTIONS(7), - [aux_sym__block_terminator_token1] = ACTIONS(303), - [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), + [aux_sym__block_terminator_token1] = ACTIONS(319), + [aux_sym_input_expression_token1] = ACTIONS(267), + [aux_sym_primitive_type_token19] = ACTIONS(269), + [aux_sym_variable_definition_token1] = ACTIONS(271), + [aux_sym_variable_definition_token2] = ACTIONS(273), + [aux_sym_buffer_definition_token2] = ACTIONS(275), + [aux_sym_argument_mode_token1] = ACTIONS(277), + [aux_sym_if_statement_token1] = ACTIONS(279), + [aux_sym_repeat_statement_token1] = ACTIONS(281), + [aux_sym__procedure_terminator_token1] = ACTIONS(283), + [aux_sym_procedure_parameter_definition_token1] = ACTIONS(285), + [aux_sym__function_terminator_token1] = ACTIONS(287), + [aux_sym_interface_statement_token1] = ACTIONS(289), + [aux_sym_using_statement_token1] = ACTIONS(291), + [aux_sym_on_error_phrase_token1] = ACTIONS(293), + [aux_sym_on_error_phrase_token3] = ACTIONS(295), + [aux_sym_do_block_token1] = ACTIONS(297), + [aux_sym__case_terminator_token1] = ACTIONS(299), + [aux_sym_find_statement_token1] = ACTIONS(301), + [aux_sym_assign_statement_token1] = ACTIONS(303), + [aux_sym_catch_statement_token1] = ACTIONS(305), + [aux_sym_finally_statement_token1] = ACTIONS(307), + [aux_sym_accumulate_statement_token1] = ACTIONS(309), + [anon_sym_ROUTINE_DASHLEVEL] = ACTIONS(311), + [anon_sym_BLOCK_DASHLEVEL] = ACTIONS(311), }, [201] = { - [sym_body] = STATE(3962), + [sym_body] = STATE(3706), [sym_comment] = STATE(201), - [sym_qualified_name] = STATE(4733), - [sym__block_terminator] = STATE(1479), + [sym_qualified_name] = STATE(4814), + [sym__block_terminator] = STATE(3532), [sym_include] = STATE(201), - [sym_assignment] = STATE(4314), - [sym_variable_definition] = STATE(1535), - [sym_variable_assignment] = STATE(1535), - [sym_buffer_definition] = STATE(1535), - [sym_query_definition] = STATE(1535), - [sym_function_call_statement] = STATE(1535), - [sym_function_call] = STATE(4086), - [sym_if_statement] = STATE(1535), - [sym_label] = STATE(1536), - [sym_repeat_statement] = STATE(1535), - [sym_procedure_statement] = STATE(1535), - [sym_procedure_parameter_definition] = STATE(1535), - [sym_function_statement] = STATE(1535), - [sym_return_statement] = STATE(1535), - [sym_interface_statement] = STATE(1535), - [sym_using_statement] = STATE(1535), - [sym_class_statement] = STATE(1535), - [sym_object_access] = STATE(3567), - [sym_stream_definition] = STATE(1535), - [sym_input_close_statement] = STATE(1535), - [sym_output_close_statement] = STATE(1535), - [sym__stream_statement] = STATE(1535), - [sym_input_stream_statement] = STATE(1537), - [sym_output_stream_statement] = STATE(1537), - [sym_do_block] = STATE(1535), - [sym_case_statement] = STATE(1535), - [sym_for_statement] = STATE(1535), - [sym_find_statement] = STATE(1535), - [sym_abl_statement] = STATE(1535), - [sym_assign_statement] = STATE(1535), - [sym_catch_statement] = STATE(1535), - [sym_finally_statement] = STATE(1535), - [sym_accumulate_statement] = STATE(1535), - [sym_undo_statement] = STATE(1535), - [sym_error_scope_statement] = STATE(1535), - [sym_temp_table_definition] = STATE(1535), - [sym_on_statement] = STATE(1535), - [sym__statement] = STATE(1538), - [aux_sym_source_code_repeat1] = STATE(276), - [sym_identifier] = ACTIONS(227), + [sym_assignment] = STATE(4463), + [sym_variable_definition] = STATE(1550), + [sym_variable_assignment] = STATE(1550), + [sym_buffer_definition] = STATE(1550), + [sym_query_definition] = STATE(1550), + [sym_function_call_statement] = STATE(1550), + [sym_function_call] = STATE(4558), + [sym_if_statement] = STATE(1550), + [sym_label] = STATE(1551), + [sym_repeat_statement] = STATE(1550), + [sym_procedure_statement] = STATE(1550), + [sym_procedure_parameter_definition] = STATE(1550), + [sym_function_statement] = STATE(1550), + [sym_return_statement] = STATE(1550), + [sym_interface_statement] = STATE(1550), + [sym_using_statement] = STATE(1550), + [sym_class_statement] = STATE(1550), + [sym_object_access] = STATE(3661), + [sym_stream_definition] = STATE(1550), + [sym_input_close_statement] = STATE(1550), + [sym_output_close_statement] = STATE(1550), + [sym__stream_statement] = STATE(1550), + [sym_input_stream_statement] = STATE(1552), + [sym_output_stream_statement] = STATE(1552), + [sym_do_block] = STATE(1550), + [sym_case_statement] = STATE(1550), + [sym_for_statement] = STATE(1550), + [sym_find_statement] = STATE(1550), + [sym_abl_statement] = STATE(1550), + [sym_assign_statement] = STATE(1550), + [sym_catch_statement] = STATE(1550), + [sym_finally_statement] = STATE(1550), + [sym_accumulate_statement] = STATE(1550), + [sym_undo_statement] = STATE(1550), + [sym_error_scope_statement] = STATE(1550), + [sym_temp_table_definition] = STATE(1550), + [sym_on_statement] = STATE(1550), + [sym__statement] = STATE(1553), + [aux_sym_source_code_repeat1] = STATE(286), + [sym_identifier] = ACTIONS(263), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), [anon_sym_LBRACE] = ACTIONS(7), - [aux_sym__block_terminator_token1] = ACTIONS(311), - [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), + [aux_sym__block_terminator_token1] = ACTIONS(319), + [aux_sym_input_expression_token1] = ACTIONS(267), + [aux_sym_primitive_type_token19] = ACTIONS(269), + [aux_sym_variable_definition_token1] = ACTIONS(271), + [aux_sym_variable_definition_token2] = ACTIONS(273), + [aux_sym_buffer_definition_token2] = ACTIONS(275), + [aux_sym_argument_mode_token1] = ACTIONS(277), + [aux_sym_if_statement_token1] = ACTIONS(279), + [aux_sym_repeat_statement_token1] = ACTIONS(281), + [aux_sym__procedure_terminator_token1] = ACTIONS(283), + [aux_sym_procedure_parameter_definition_token1] = ACTIONS(285), + [aux_sym__function_terminator_token1] = ACTIONS(287), + [aux_sym_interface_statement_token1] = ACTIONS(289), + [aux_sym_using_statement_token1] = ACTIONS(291), + [aux_sym_on_error_phrase_token1] = ACTIONS(293), + [aux_sym_on_error_phrase_token3] = ACTIONS(295), + [aux_sym_do_block_token1] = ACTIONS(297), + [aux_sym__case_terminator_token1] = ACTIONS(299), + [aux_sym_find_statement_token1] = ACTIONS(301), + [aux_sym_assign_statement_token1] = ACTIONS(303), + [aux_sym_catch_statement_token1] = ACTIONS(305), + [aux_sym_finally_statement_token1] = ACTIONS(307), + [aux_sym_accumulate_statement_token1] = ACTIONS(309), + [anon_sym_ROUTINE_DASHLEVEL] = ACTIONS(311), + [anon_sym_BLOCK_DASHLEVEL] = ACTIONS(311), }, [202] = { - [sym_body] = STATE(3824), + [sym_body] = STATE(3704), [sym_comment] = STATE(202), - [sym_qualified_name] = STATE(4733), - [sym__block_terminator] = STATE(1406), + [sym_qualified_name] = STATE(4814), + [sym__block_terminator] = STATE(3529), [sym_include] = STATE(202), - [sym_assignment] = STATE(4314), - [sym_variable_definition] = STATE(1535), - [sym_variable_assignment] = STATE(1535), - [sym_buffer_definition] = STATE(1535), - [sym_query_definition] = STATE(1535), - [sym_function_call_statement] = STATE(1535), - [sym_function_call] = STATE(4086), - [sym_if_statement] = STATE(1535), - [sym_label] = STATE(1536), - [sym_repeat_statement] = STATE(1535), - [sym_procedure_statement] = STATE(1535), - [sym_procedure_parameter_definition] = STATE(1535), - [sym_function_statement] = STATE(1535), - [sym_return_statement] = STATE(1535), - [sym_interface_statement] = STATE(1535), - [sym_using_statement] = STATE(1535), - [sym_class_statement] = STATE(1535), - [sym_object_access] = STATE(3567), - [sym_stream_definition] = STATE(1535), - [sym_input_close_statement] = STATE(1535), - [sym_output_close_statement] = STATE(1535), - [sym__stream_statement] = STATE(1535), - [sym_input_stream_statement] = STATE(1537), - [sym_output_stream_statement] = STATE(1537), - [sym_do_block] = STATE(1535), - [sym_case_statement] = STATE(1535), - [sym_for_statement] = STATE(1535), - [sym_find_statement] = STATE(1535), - [sym_abl_statement] = STATE(1535), - [sym_assign_statement] = STATE(1535), - [sym_catch_statement] = STATE(1535), - [sym_finally_statement] = STATE(1535), - [sym_accumulate_statement] = STATE(1535), - [sym_undo_statement] = STATE(1535), - [sym_error_scope_statement] = STATE(1535), - [sym_temp_table_definition] = STATE(1535), - [sym_on_statement] = STATE(1535), - [sym__statement] = STATE(1538), - [aux_sym_source_code_repeat1] = STATE(276), - [sym_identifier] = ACTIONS(227), + [sym_assignment] = STATE(4463), + [sym_variable_definition] = STATE(1550), + [sym_variable_assignment] = STATE(1550), + [sym_buffer_definition] = STATE(1550), + [sym_query_definition] = STATE(1550), + [sym_function_call_statement] = STATE(1550), + [sym_function_call] = STATE(4558), + [sym_if_statement] = STATE(1550), + [sym_label] = STATE(1551), + [sym_repeat_statement] = STATE(1550), + [sym_procedure_statement] = STATE(1550), + [sym_procedure_parameter_definition] = STATE(1550), + [sym_function_statement] = STATE(1550), + [sym_return_statement] = STATE(1550), + [sym_interface_statement] = STATE(1550), + [sym_using_statement] = STATE(1550), + [sym_class_statement] = STATE(1550), + [sym_object_access] = STATE(3661), + [sym_stream_definition] = STATE(1550), + [sym_input_close_statement] = STATE(1550), + [sym_output_close_statement] = STATE(1550), + [sym__stream_statement] = STATE(1550), + [sym_input_stream_statement] = STATE(1552), + [sym_output_stream_statement] = STATE(1552), + [sym_do_block] = STATE(1550), + [sym_case_statement] = STATE(1550), + [sym_for_statement] = STATE(1550), + [sym_find_statement] = STATE(1550), + [sym_abl_statement] = STATE(1550), + [sym_assign_statement] = STATE(1550), + [sym_catch_statement] = STATE(1550), + [sym_finally_statement] = STATE(1550), + [sym_accumulate_statement] = STATE(1550), + [sym_undo_statement] = STATE(1550), + [sym_error_scope_statement] = STATE(1550), + [sym_temp_table_definition] = STATE(1550), + [sym_on_statement] = STATE(1550), + [sym__statement] = STATE(1553), + [aux_sym_source_code_repeat1] = STATE(286), + [sym_identifier] = ACTIONS(263), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), [anon_sym_LBRACE] = ACTIONS(7), - [aux_sym__block_terminator_token1] = ACTIONS(299), - [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), + [aux_sym__block_terminator_token1] = ACTIONS(319), + [aux_sym_input_expression_token1] = ACTIONS(267), + [aux_sym_primitive_type_token19] = ACTIONS(269), + [aux_sym_variable_definition_token1] = ACTIONS(271), + [aux_sym_variable_definition_token2] = ACTIONS(273), + [aux_sym_buffer_definition_token2] = ACTIONS(275), + [aux_sym_argument_mode_token1] = ACTIONS(277), + [aux_sym_if_statement_token1] = ACTIONS(279), + [aux_sym_repeat_statement_token1] = ACTIONS(281), + [aux_sym__procedure_terminator_token1] = ACTIONS(283), + [aux_sym_procedure_parameter_definition_token1] = ACTIONS(285), + [aux_sym__function_terminator_token1] = ACTIONS(287), + [aux_sym_interface_statement_token1] = ACTIONS(289), + [aux_sym_using_statement_token1] = ACTIONS(291), + [aux_sym_on_error_phrase_token1] = ACTIONS(293), + [aux_sym_on_error_phrase_token3] = ACTIONS(295), + [aux_sym_do_block_token1] = ACTIONS(297), + [aux_sym__case_terminator_token1] = ACTIONS(299), + [aux_sym_find_statement_token1] = ACTIONS(301), + [aux_sym_assign_statement_token1] = ACTIONS(303), + [aux_sym_catch_statement_token1] = ACTIONS(305), + [aux_sym_finally_statement_token1] = ACTIONS(307), + [aux_sym_accumulate_statement_token1] = ACTIONS(309), + [anon_sym_ROUTINE_DASHLEVEL] = ACTIONS(311), + [anon_sym_BLOCK_DASHLEVEL] = ACTIONS(311), }, [203] = { - [sym_body] = STATE(3615), + [sym_body] = STATE(3701), [sym_comment] = STATE(203), - [sym_qualified_name] = STATE(4733), - [sym__block_terminator] = STATE(3365), + [sym_qualified_name] = STATE(4814), + [sym__block_terminator] = STATE(3528), [sym_include] = STATE(203), - [sym_assignment] = STATE(4314), - [sym_variable_definition] = STATE(1535), - [sym_variable_assignment] = STATE(1535), - [sym_buffer_definition] = STATE(1535), - [sym_query_definition] = STATE(1535), - [sym_function_call_statement] = STATE(1535), - [sym_function_call] = STATE(4086), - [sym_if_statement] = STATE(1535), - [sym_label] = STATE(1536), - [sym_repeat_statement] = STATE(1535), - [sym_procedure_statement] = STATE(1535), - [sym_procedure_parameter_definition] = STATE(1535), - [sym_function_statement] = STATE(1535), - [sym_return_statement] = STATE(1535), - [sym_interface_statement] = STATE(1535), - [sym_using_statement] = STATE(1535), - [sym_class_statement] = STATE(1535), - [sym_object_access] = STATE(3567), - [sym_stream_definition] = STATE(1535), - [sym_input_close_statement] = STATE(1535), - [sym_output_close_statement] = STATE(1535), - [sym__stream_statement] = STATE(1535), - [sym_input_stream_statement] = STATE(1537), - [sym_output_stream_statement] = STATE(1537), - [sym_do_block] = STATE(1535), - [sym_case_statement] = STATE(1535), - [sym_for_statement] = STATE(1535), - [sym_find_statement] = STATE(1535), - [sym_abl_statement] = STATE(1535), - [sym_assign_statement] = STATE(1535), - [sym_catch_statement] = STATE(1535), - [sym_finally_statement] = STATE(1535), - [sym_accumulate_statement] = STATE(1535), - [sym_undo_statement] = STATE(1535), - [sym_error_scope_statement] = STATE(1535), - [sym_temp_table_definition] = STATE(1535), - [sym_on_statement] = STATE(1535), - [sym__statement] = STATE(1538), - [aux_sym_source_code_repeat1] = STATE(276), - [sym_identifier] = ACTIONS(227), + [sym_assignment] = STATE(4463), + [sym_variable_definition] = STATE(1550), + [sym_variable_assignment] = STATE(1550), + [sym_buffer_definition] = STATE(1550), + [sym_query_definition] = STATE(1550), + [sym_function_call_statement] = STATE(1550), + [sym_function_call] = STATE(4558), + [sym_if_statement] = STATE(1550), + [sym_label] = STATE(1551), + [sym_repeat_statement] = STATE(1550), + [sym_procedure_statement] = STATE(1550), + [sym_procedure_parameter_definition] = STATE(1550), + [sym_function_statement] = STATE(1550), + [sym_return_statement] = STATE(1550), + [sym_interface_statement] = STATE(1550), + [sym_using_statement] = STATE(1550), + [sym_class_statement] = STATE(1550), + [sym_object_access] = STATE(3661), + [sym_stream_definition] = STATE(1550), + [sym_input_close_statement] = STATE(1550), + [sym_output_close_statement] = STATE(1550), + [sym__stream_statement] = STATE(1550), + [sym_input_stream_statement] = STATE(1552), + [sym_output_stream_statement] = STATE(1552), + [sym_do_block] = STATE(1550), + [sym_case_statement] = STATE(1550), + [sym_for_statement] = STATE(1550), + [sym_find_statement] = STATE(1550), + [sym_abl_statement] = STATE(1550), + [sym_assign_statement] = STATE(1550), + [sym_catch_statement] = STATE(1550), + [sym_finally_statement] = STATE(1550), + [sym_accumulate_statement] = STATE(1550), + [sym_undo_statement] = STATE(1550), + [sym_error_scope_statement] = STATE(1550), + [sym_temp_table_definition] = STATE(1550), + [sym_on_statement] = STATE(1550), + [sym__statement] = STATE(1553), + [aux_sym_source_code_repeat1] = STATE(286), + [sym_identifier] = ACTIONS(263), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), [anon_sym_LBRACE] = ACTIONS(7), - [aux_sym__block_terminator_token1] = ACTIONS(297), - [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), + [aux_sym__block_terminator_token1] = ACTIONS(319), + [aux_sym_input_expression_token1] = ACTIONS(267), + [aux_sym_primitive_type_token19] = ACTIONS(269), + [aux_sym_variable_definition_token1] = ACTIONS(271), + [aux_sym_variable_definition_token2] = ACTIONS(273), + [aux_sym_buffer_definition_token2] = ACTIONS(275), + [aux_sym_argument_mode_token1] = ACTIONS(277), + [aux_sym_if_statement_token1] = ACTIONS(279), + [aux_sym_repeat_statement_token1] = ACTIONS(281), + [aux_sym__procedure_terminator_token1] = ACTIONS(283), + [aux_sym_procedure_parameter_definition_token1] = ACTIONS(285), + [aux_sym__function_terminator_token1] = ACTIONS(287), + [aux_sym_interface_statement_token1] = ACTIONS(289), + [aux_sym_using_statement_token1] = ACTIONS(291), + [aux_sym_on_error_phrase_token1] = ACTIONS(293), + [aux_sym_on_error_phrase_token3] = ACTIONS(295), + [aux_sym_do_block_token1] = ACTIONS(297), + [aux_sym__case_terminator_token1] = ACTIONS(299), + [aux_sym_find_statement_token1] = ACTIONS(301), + [aux_sym_assign_statement_token1] = ACTIONS(303), + [aux_sym_catch_statement_token1] = ACTIONS(305), + [aux_sym_finally_statement_token1] = ACTIONS(307), + [aux_sym_accumulate_statement_token1] = ACTIONS(309), + [anon_sym_ROUTINE_DASHLEVEL] = ACTIONS(311), + [anon_sym_BLOCK_DASHLEVEL] = ACTIONS(311), }, [204] = { + [sym_body] = STATE(3699), [sym_comment] = STATE(204), - [sym__logical_operator] = STATE(411), - [sym__additive_operator] = STATE(408), - [sym__multiplicative_operator] = STATE(347), - [sym__comparison_operator] = STATE(375), + [sym_qualified_name] = STATE(4814), + [sym__block_terminator] = STATE(3527), [sym_include] = STATE(204), - [anon_sym_SLASH_SLASH] = ACTIONS(59), - [anon_sym_SLASH_STAR] = ACTIONS(61), - [anon_sym_SLASH] = ACTIONS(283), - [anon_sym_LBRACE] = ACTIONS(65), - [anon_sym_STAR] = ACTIONS(285), - [sym__terminator] = ACTIONS(323), - [anon_sym_LPAREN] = ACTIONS(323), - [anon_sym_RPAREN] = ACTIONS(323), - [anon_sym_PLUS] = ACTIONS(289), - [anon_sym_DASH] = ACTIONS(289), - [anon_sym_LT] = ACTIONS(291), - [anon_sym_LT_EQ] = ACTIONS(293), - [anon_sym_LT_GT] = ACTIONS(293), - [anon_sym_EQ] = ACTIONS(293), - [anon_sym_GT] = ACTIONS(291), - [anon_sym_GT_EQ] = ACTIONS(293), - [aux_sym__comparison_operator_token1] = ACTIONS(293), - [aux_sym__comparison_operator_token2] = ACTIONS(293), - [aux_sym__comparison_operator_token3] = ACTIONS(293), - [aux_sym__comparison_operator_token4] = ACTIONS(293), - [aux_sym__comparison_operator_token5] = ACTIONS(293), - [aux_sym__comparison_operator_token6] = ACTIONS(293), - [aux_sym__comparison_operator_token7] = ACTIONS(293), - [aux_sym__comparison_operator_token8] = ACTIONS(293), - [aux_sym__comparison_operator_token9] = ACTIONS(293), - [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(295), - [sym__and_operator] = ACTIONS(295), + [sym_assignment] = STATE(4463), + [sym_variable_definition] = STATE(1550), + [sym_variable_assignment] = STATE(1550), + [sym_buffer_definition] = STATE(1550), + [sym_query_definition] = STATE(1550), + [sym_function_call_statement] = STATE(1550), + [sym_function_call] = STATE(4558), + [sym_if_statement] = STATE(1550), + [sym_label] = STATE(1551), + [sym_repeat_statement] = STATE(1550), + [sym_procedure_statement] = STATE(1550), + [sym_procedure_parameter_definition] = STATE(1550), + [sym_function_statement] = STATE(1550), + [sym_return_statement] = STATE(1550), + [sym_interface_statement] = STATE(1550), + [sym_using_statement] = STATE(1550), + [sym_class_statement] = STATE(1550), + [sym_object_access] = STATE(3661), + [sym_stream_definition] = STATE(1550), + [sym_input_close_statement] = STATE(1550), + [sym_output_close_statement] = STATE(1550), + [sym__stream_statement] = STATE(1550), + [sym_input_stream_statement] = STATE(1552), + [sym_output_stream_statement] = STATE(1552), + [sym_do_block] = STATE(1550), + [sym_case_statement] = STATE(1550), + [sym_for_statement] = STATE(1550), + [sym_find_statement] = STATE(1550), + [sym_abl_statement] = STATE(1550), + [sym_assign_statement] = STATE(1550), + [sym_catch_statement] = STATE(1550), + [sym_finally_statement] = STATE(1550), + [sym_accumulate_statement] = STATE(1550), + [sym_undo_statement] = STATE(1550), + [sym_error_scope_statement] = STATE(1550), + [sym_temp_table_definition] = STATE(1550), + [sym_on_statement] = STATE(1550), + [sym__statement] = STATE(1553), + [aux_sym_source_code_repeat1] = STATE(286), + [sym_identifier] = ACTIONS(263), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_LBRACE] = ACTIONS(7), + [aux_sym__block_terminator_token1] = ACTIONS(319), + [aux_sym_input_expression_token1] = ACTIONS(267), + [aux_sym_primitive_type_token19] = ACTIONS(269), + [aux_sym_variable_definition_token1] = ACTIONS(271), + [aux_sym_variable_definition_token2] = ACTIONS(273), + [aux_sym_buffer_definition_token2] = ACTIONS(275), + [aux_sym_argument_mode_token1] = ACTIONS(277), + [aux_sym_if_statement_token1] = ACTIONS(279), + [aux_sym_repeat_statement_token1] = ACTIONS(281), + [aux_sym__procedure_terminator_token1] = ACTIONS(283), + [aux_sym_procedure_parameter_definition_token1] = ACTIONS(285), + [aux_sym__function_terminator_token1] = ACTIONS(287), + [aux_sym_interface_statement_token1] = ACTIONS(289), + [aux_sym_using_statement_token1] = ACTIONS(291), + [aux_sym_on_error_phrase_token1] = ACTIONS(293), + [aux_sym_on_error_phrase_token3] = ACTIONS(295), + [aux_sym_do_block_token1] = ACTIONS(297), + [aux_sym__case_terminator_token1] = ACTIONS(299), + [aux_sym_find_statement_token1] = ACTIONS(301), + [aux_sym_assign_statement_token1] = ACTIONS(303), + [aux_sym_catch_statement_token1] = ACTIONS(305), + [aux_sym_finally_statement_token1] = ACTIONS(307), + [aux_sym_accumulate_statement_token1] = ACTIONS(309), + [anon_sym_ROUTINE_DASHLEVEL] = ACTIONS(311), + [anon_sym_BLOCK_DASHLEVEL] = ACTIONS(311), }, [205] = { + [sym_body] = STATE(3698), [sym_comment] = STATE(205), - [sym__logical_operator] = STATE(411), - [sym__additive_operator] = STATE(408), - [sym__multiplicative_operator] = STATE(347), - [sym__comparison_operator] = STATE(375), + [sym_qualified_name] = STATE(4814), + [sym__block_terminator] = STATE(3526), [sym_include] = STATE(205), - [anon_sym_SLASH_SLASH] = ACTIONS(59), - [anon_sym_SLASH_STAR] = ACTIONS(61), - [anon_sym_SLASH] = ACTIONS(283), - [anon_sym_LBRACE] = ACTIONS(65), - [anon_sym_STAR] = ACTIONS(285), - [sym__terminator] = ACTIONS(325), - [anon_sym_LPAREN] = ACTIONS(325), - [anon_sym_RPAREN] = ACTIONS(325), - [anon_sym_PLUS] = ACTIONS(289), - [anon_sym_DASH] = ACTIONS(289), - [anon_sym_LT] = ACTIONS(291), - [anon_sym_LT_EQ] = ACTIONS(293), - [anon_sym_LT_GT] = ACTIONS(293), - [anon_sym_EQ] = ACTIONS(293), - [anon_sym_GT] = ACTIONS(291), - [anon_sym_GT_EQ] = ACTIONS(293), - [aux_sym__comparison_operator_token1] = ACTIONS(293), - [aux_sym__comparison_operator_token2] = ACTIONS(293), - [aux_sym__comparison_operator_token3] = ACTIONS(293), - [aux_sym__comparison_operator_token4] = ACTIONS(293), - [aux_sym__comparison_operator_token5] = ACTIONS(293), - [aux_sym__comparison_operator_token6] = ACTIONS(293), - [aux_sym__comparison_operator_token7] = ACTIONS(293), - [aux_sym__comparison_operator_token8] = ACTIONS(293), - [aux_sym__comparison_operator_token9] = ACTIONS(293), - [aux_sym_variable_tuning_token1] = ACTIONS(325), - [aux_sym_variable_tuning_token2] = ACTIONS(325), - [aux_sym_variable_tuning_token3] = ACTIONS(325), - [aux_sym_variable_tuning_token4] = ACTIONS(325), - [aux_sym_variable_tuning_token5] = ACTIONS(325), - [aux_sym_variable_tuning_token6] = ACTIONS(325), - [anon_sym_COMMA] = ACTIONS(325), - [aux_sym_if_statement_token2] = ACTIONS(325), - [aux_sym_else_if_statement_token1] = ACTIONS(325), - [anon_sym_COLON] = ACTIONS(325), - [aux_sym_while_phrase_token1] = ACTIONS(325), - [aux_sym_property_tuning_token1] = ACTIONS(325), - [aux_sym_event_definition_token1] = ACTIONS(325), - [aux_sym_input_stream_tuning_token1] = ACTIONS(325), - [aux_sym_input_stream_tuning_token2] = ACTIONS(325), - [aux_sym_input_stream_tuning_token3] = ACTIONS(325), - [aux_sym_input_stream_tuning_token4] = ACTIONS(325), - [aux_sym_input_stream_tuning_token5] = ACTIONS(325), - [aux_sym_input_stream_tuning_token6] = ACTIONS(325), - [aux_sym_input_stream_tuning_token7] = ACTIONS(325), - [aux_sym_input_stream_tuning_token8] = ACTIONS(325), - [aux_sym_input_stream_tuning_token9] = ACTIONS(325), - [aux_sym_input_stream_tuning_token11] = ACTIONS(325), - [aux_sym_output_stream_tuning_token1] = ACTIONS(325), - [aux_sym_output_stream_tuning_token2] = ACTIONS(325), - [aux_sym_output_stream_tuning_token3] = ACTIONS(325), - [aux_sym_output_stream_tuning_token4] = ACTIONS(325), - [aux_sym_output_stream_tuning_token5] = ACTIONS(325), - [aux_sym_output_stream_tuning_token6] = ACTIONS(325), - [aux_sym_output_stream_tuning_token7] = ACTIONS(325), - [aux_sym_output_stream_tuning_token8] = ACTIONS(325), - [aux_sym_output_stream_statement_token1] = ACTIONS(325), - [aux_sym_on_error_phrase_token1] = ACTIONS(325), - [aux_sym_stop_after_phrase_token1] = ACTIONS(325), - [aux_sym_do_tuning_token1] = ACTIONS(325), - [anon_sym_BY] = ACTIONS(325), - [aux_sym_of_token1] = ACTIONS(325), - [aux_sym_field_definition_token1] = ACTIONS(325), - [aux_sym_index_definition_token1] = ACTIONS(325), - [aux_sym_on_statement_token1] = ACTIONS(325), - [sym__or_operator] = ACTIONS(295), - [sym__and_operator] = ACTIONS(295), - }, + [sym_assignment] = STATE(4463), + [sym_variable_definition] = STATE(1550), + [sym_variable_assignment] = STATE(1550), + [sym_buffer_definition] = STATE(1550), + [sym_query_definition] = STATE(1550), + [sym_function_call_statement] = STATE(1550), + [sym_function_call] = STATE(4558), + [sym_if_statement] = STATE(1550), + [sym_label] = STATE(1551), + [sym_repeat_statement] = STATE(1550), + [sym_procedure_statement] = STATE(1550), + [sym_procedure_parameter_definition] = STATE(1550), + [sym_function_statement] = STATE(1550), + [sym_return_statement] = STATE(1550), + [sym_interface_statement] = STATE(1550), + [sym_using_statement] = STATE(1550), + [sym_class_statement] = STATE(1550), + [sym_object_access] = STATE(3661), + [sym_stream_definition] = STATE(1550), + [sym_input_close_statement] = STATE(1550), + [sym_output_close_statement] = STATE(1550), + [sym__stream_statement] = STATE(1550), + [sym_input_stream_statement] = STATE(1552), + [sym_output_stream_statement] = STATE(1552), + [sym_do_block] = STATE(1550), + [sym_case_statement] = STATE(1550), + [sym_for_statement] = STATE(1550), + [sym_find_statement] = STATE(1550), + [sym_abl_statement] = STATE(1550), + [sym_assign_statement] = STATE(1550), + [sym_catch_statement] = STATE(1550), + [sym_finally_statement] = STATE(1550), + [sym_accumulate_statement] = STATE(1550), + [sym_undo_statement] = STATE(1550), + [sym_error_scope_statement] = STATE(1550), + [sym_temp_table_definition] = STATE(1550), + [sym_on_statement] = STATE(1550), + [sym__statement] = STATE(1553), + [aux_sym_source_code_repeat1] = STATE(286), + [sym_identifier] = ACTIONS(263), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_LBRACE] = ACTIONS(7), + [aux_sym__block_terminator_token1] = ACTIONS(319), + [aux_sym_input_expression_token1] = ACTIONS(267), + [aux_sym_primitive_type_token19] = ACTIONS(269), + [aux_sym_variable_definition_token1] = ACTIONS(271), + [aux_sym_variable_definition_token2] = ACTIONS(273), + [aux_sym_buffer_definition_token2] = ACTIONS(275), + [aux_sym_argument_mode_token1] = ACTIONS(277), + [aux_sym_if_statement_token1] = ACTIONS(279), + [aux_sym_repeat_statement_token1] = ACTIONS(281), + [aux_sym__procedure_terminator_token1] = ACTIONS(283), + [aux_sym_procedure_parameter_definition_token1] = ACTIONS(285), + [aux_sym__function_terminator_token1] = ACTIONS(287), + [aux_sym_interface_statement_token1] = ACTIONS(289), + [aux_sym_using_statement_token1] = ACTIONS(291), + [aux_sym_on_error_phrase_token1] = ACTIONS(293), + [aux_sym_on_error_phrase_token3] = ACTIONS(295), + [aux_sym_do_block_token1] = ACTIONS(297), + [aux_sym__case_terminator_token1] = ACTIONS(299), + [aux_sym_find_statement_token1] = ACTIONS(301), + [aux_sym_assign_statement_token1] = ACTIONS(303), + [aux_sym_catch_statement_token1] = ACTIONS(305), + [aux_sym_finally_statement_token1] = ACTIONS(307), + [aux_sym_accumulate_statement_token1] = ACTIONS(309), + [anon_sym_ROUTINE_DASHLEVEL] = ACTIONS(311), + [anon_sym_BLOCK_DASHLEVEL] = ACTIONS(311), + }, [206] = { - [sym_body] = STATE(3961), + [sym_body] = STATE(3692), [sym_comment] = STATE(206), - [sym_qualified_name] = STATE(4733), - [sym__block_terminator] = STATE(1478), + [sym_qualified_name] = STATE(4814), + [sym__block_terminator] = STATE(3525), [sym_include] = STATE(206), - [sym_assignment] = STATE(4314), - [sym_variable_definition] = STATE(1535), - [sym_variable_assignment] = STATE(1535), - [sym_buffer_definition] = STATE(1535), - [sym_query_definition] = STATE(1535), - [sym_function_call_statement] = STATE(1535), - [sym_function_call] = STATE(4086), - [sym_if_statement] = STATE(1535), - [sym_label] = STATE(1536), - [sym_repeat_statement] = STATE(1535), - [sym_procedure_statement] = STATE(1535), - [sym_procedure_parameter_definition] = STATE(1535), - [sym_function_statement] = STATE(1535), - [sym_return_statement] = STATE(1535), - [sym_interface_statement] = STATE(1535), - [sym_using_statement] = STATE(1535), - [sym_class_statement] = STATE(1535), - [sym_object_access] = STATE(3567), - [sym_stream_definition] = STATE(1535), - [sym_input_close_statement] = STATE(1535), - [sym_output_close_statement] = STATE(1535), - [sym__stream_statement] = STATE(1535), - [sym_input_stream_statement] = STATE(1537), - [sym_output_stream_statement] = STATE(1537), - [sym_do_block] = STATE(1535), - [sym_case_statement] = STATE(1535), - [sym_for_statement] = STATE(1535), - [sym_find_statement] = STATE(1535), - [sym_abl_statement] = STATE(1535), - [sym_assign_statement] = STATE(1535), - [sym_catch_statement] = STATE(1535), - [sym_finally_statement] = STATE(1535), - [sym_accumulate_statement] = STATE(1535), - [sym_undo_statement] = STATE(1535), - [sym_error_scope_statement] = STATE(1535), - [sym_temp_table_definition] = STATE(1535), - [sym_on_statement] = STATE(1535), - [sym__statement] = STATE(1538), - [aux_sym_source_code_repeat1] = STATE(276), - [sym_identifier] = ACTIONS(227), + [sym_assignment] = STATE(4463), + [sym_variable_definition] = STATE(1550), + [sym_variable_assignment] = STATE(1550), + [sym_buffer_definition] = STATE(1550), + [sym_query_definition] = STATE(1550), + [sym_function_call_statement] = STATE(1550), + [sym_function_call] = STATE(4558), + [sym_if_statement] = STATE(1550), + [sym_label] = STATE(1551), + [sym_repeat_statement] = STATE(1550), + [sym_procedure_statement] = STATE(1550), + [sym_procedure_parameter_definition] = STATE(1550), + [sym_function_statement] = STATE(1550), + [sym_return_statement] = STATE(1550), + [sym_interface_statement] = STATE(1550), + [sym_using_statement] = STATE(1550), + [sym_class_statement] = STATE(1550), + [sym_object_access] = STATE(3661), + [sym_stream_definition] = STATE(1550), + [sym_input_close_statement] = STATE(1550), + [sym_output_close_statement] = STATE(1550), + [sym__stream_statement] = STATE(1550), + [sym_input_stream_statement] = STATE(1552), + [sym_output_stream_statement] = STATE(1552), + [sym_do_block] = STATE(1550), + [sym_case_statement] = STATE(1550), + [sym_for_statement] = STATE(1550), + [sym_find_statement] = STATE(1550), + [sym_abl_statement] = STATE(1550), + [sym_assign_statement] = STATE(1550), + [sym_catch_statement] = STATE(1550), + [sym_finally_statement] = STATE(1550), + [sym_accumulate_statement] = STATE(1550), + [sym_undo_statement] = STATE(1550), + [sym_error_scope_statement] = STATE(1550), + [sym_temp_table_definition] = STATE(1550), + [sym_on_statement] = STATE(1550), + [sym__statement] = STATE(1553), + [aux_sym_source_code_repeat1] = STATE(286), + [sym_identifier] = ACTIONS(263), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), [anon_sym_LBRACE] = ACTIONS(7), - [aux_sym__block_terminator_token1] = ACTIONS(311), - [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), + [aux_sym__block_terminator_token1] = ACTIONS(319), + [aux_sym_input_expression_token1] = ACTIONS(267), + [aux_sym_primitive_type_token19] = ACTIONS(269), + [aux_sym_variable_definition_token1] = ACTIONS(271), + [aux_sym_variable_definition_token2] = ACTIONS(273), + [aux_sym_buffer_definition_token2] = ACTIONS(275), + [aux_sym_argument_mode_token1] = ACTIONS(277), + [aux_sym_if_statement_token1] = ACTIONS(279), + [aux_sym_repeat_statement_token1] = ACTIONS(281), + [aux_sym__procedure_terminator_token1] = ACTIONS(283), + [aux_sym_procedure_parameter_definition_token1] = ACTIONS(285), + [aux_sym__function_terminator_token1] = ACTIONS(287), + [aux_sym_interface_statement_token1] = ACTIONS(289), + [aux_sym_using_statement_token1] = ACTIONS(291), + [aux_sym_on_error_phrase_token1] = ACTIONS(293), + [aux_sym_on_error_phrase_token3] = ACTIONS(295), + [aux_sym_do_block_token1] = ACTIONS(297), + [aux_sym__case_terminator_token1] = ACTIONS(299), + [aux_sym_find_statement_token1] = ACTIONS(301), + [aux_sym_assign_statement_token1] = ACTIONS(303), + [aux_sym_catch_statement_token1] = ACTIONS(305), + [aux_sym_finally_statement_token1] = ACTIONS(307), + [aux_sym_accumulate_statement_token1] = ACTIONS(309), + [anon_sym_ROUTINE_DASHLEVEL] = ACTIONS(311), + [anon_sym_BLOCK_DASHLEVEL] = ACTIONS(311), }, [207] = { - [sym_body] = STATE(3934), + [sym_body] = STATE(3691), [sym_comment] = STATE(207), - [sym_qualified_name] = STATE(4733), - [sym__block_terminator] = STATE(1469), + [sym_qualified_name] = STATE(4814), + [sym__block_terminator] = STATE(3523), [sym_include] = STATE(207), - [sym_assignment] = STATE(4314), - [sym_variable_definition] = STATE(1535), - [sym_variable_assignment] = STATE(1535), - [sym_buffer_definition] = STATE(1535), - [sym_query_definition] = STATE(1535), - [sym_function_call_statement] = STATE(1535), - [sym_function_call] = STATE(4086), - [sym_if_statement] = STATE(1535), - [sym_label] = STATE(1536), - [sym_repeat_statement] = STATE(1535), - [sym_procedure_statement] = STATE(1535), - [sym_procedure_parameter_definition] = STATE(1535), - [sym_function_statement] = STATE(1535), - [sym_return_statement] = STATE(1535), - [sym_interface_statement] = STATE(1535), - [sym_using_statement] = STATE(1535), - [sym_class_statement] = STATE(1535), - [sym_object_access] = STATE(3567), - [sym_stream_definition] = STATE(1535), - [sym_input_close_statement] = STATE(1535), - [sym_output_close_statement] = STATE(1535), - [sym__stream_statement] = STATE(1535), - [sym_input_stream_statement] = STATE(1537), - [sym_output_stream_statement] = STATE(1537), - [sym_do_block] = STATE(1535), - [sym_case_statement] = STATE(1535), - [sym_for_statement] = STATE(1535), - [sym_find_statement] = STATE(1535), - [sym_abl_statement] = STATE(1535), - [sym_assign_statement] = STATE(1535), - [sym_catch_statement] = STATE(1535), - [sym_finally_statement] = STATE(1535), - [sym_accumulate_statement] = STATE(1535), - [sym_undo_statement] = STATE(1535), - [sym_error_scope_statement] = STATE(1535), - [sym_temp_table_definition] = STATE(1535), - [sym_on_statement] = STATE(1535), - [sym__statement] = STATE(1538), - [aux_sym_source_code_repeat1] = STATE(276), - [sym_identifier] = ACTIONS(227), + [sym_assignment] = STATE(4463), + [sym_variable_definition] = STATE(1550), + [sym_variable_assignment] = STATE(1550), + [sym_buffer_definition] = STATE(1550), + [sym_query_definition] = STATE(1550), + [sym_function_call_statement] = STATE(1550), + [sym_function_call] = STATE(4558), + [sym_if_statement] = STATE(1550), + [sym_label] = STATE(1551), + [sym_repeat_statement] = STATE(1550), + [sym_procedure_statement] = STATE(1550), + [sym_procedure_parameter_definition] = STATE(1550), + [sym_function_statement] = STATE(1550), + [sym_return_statement] = STATE(1550), + [sym_interface_statement] = STATE(1550), + [sym_using_statement] = STATE(1550), + [sym_class_statement] = STATE(1550), + [sym_object_access] = STATE(3661), + [sym_stream_definition] = STATE(1550), + [sym_input_close_statement] = STATE(1550), + [sym_output_close_statement] = STATE(1550), + [sym__stream_statement] = STATE(1550), + [sym_input_stream_statement] = STATE(1552), + [sym_output_stream_statement] = STATE(1552), + [sym_do_block] = STATE(1550), + [sym_case_statement] = STATE(1550), + [sym_for_statement] = STATE(1550), + [sym_find_statement] = STATE(1550), + [sym_abl_statement] = STATE(1550), + [sym_assign_statement] = STATE(1550), + [sym_catch_statement] = STATE(1550), + [sym_finally_statement] = STATE(1550), + [sym_accumulate_statement] = STATE(1550), + [sym_undo_statement] = STATE(1550), + [sym_error_scope_statement] = STATE(1550), + [sym_temp_table_definition] = STATE(1550), + [sym_on_statement] = STATE(1550), + [sym__statement] = STATE(1553), + [aux_sym_source_code_repeat1] = STATE(286), + [sym_identifier] = ACTIONS(263), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), [anon_sym_LBRACE] = ACTIONS(7), - [aux_sym__block_terminator_token1] = ACTIONS(311), - [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), + [aux_sym__block_terminator_token1] = ACTIONS(319), + [aux_sym_input_expression_token1] = ACTIONS(267), + [aux_sym_primitive_type_token19] = ACTIONS(269), + [aux_sym_variable_definition_token1] = ACTIONS(271), + [aux_sym_variable_definition_token2] = ACTIONS(273), + [aux_sym_buffer_definition_token2] = ACTIONS(275), + [aux_sym_argument_mode_token1] = ACTIONS(277), + [aux_sym_if_statement_token1] = ACTIONS(279), + [aux_sym_repeat_statement_token1] = ACTIONS(281), + [aux_sym__procedure_terminator_token1] = ACTIONS(283), + [aux_sym_procedure_parameter_definition_token1] = ACTIONS(285), + [aux_sym__function_terminator_token1] = ACTIONS(287), + [aux_sym_interface_statement_token1] = ACTIONS(289), + [aux_sym_using_statement_token1] = ACTIONS(291), + [aux_sym_on_error_phrase_token1] = ACTIONS(293), + [aux_sym_on_error_phrase_token3] = ACTIONS(295), + [aux_sym_do_block_token1] = ACTIONS(297), + [aux_sym__case_terminator_token1] = ACTIONS(299), + [aux_sym_find_statement_token1] = ACTIONS(301), + [aux_sym_assign_statement_token1] = ACTIONS(303), + [aux_sym_catch_statement_token1] = ACTIONS(305), + [aux_sym_finally_statement_token1] = ACTIONS(307), + [aux_sym_accumulate_statement_token1] = ACTIONS(309), + [anon_sym_ROUTINE_DASHLEVEL] = ACTIONS(311), + [anon_sym_BLOCK_DASHLEVEL] = ACTIONS(311), }, [208] = { - [sym_body] = STATE(3935), + [sym_body] = STATE(4115), [sym_comment] = STATE(208), - [sym_qualified_name] = STATE(4733), - [sym__block_terminator] = STATE(1460), + [sym_qualified_name] = STATE(4814), + [sym__block_terminator] = STATE(1398), [sym_include] = STATE(208), - [sym_assignment] = STATE(4314), - [sym_variable_definition] = STATE(1535), - [sym_variable_assignment] = STATE(1535), - [sym_buffer_definition] = STATE(1535), - [sym_query_definition] = STATE(1535), - [sym_function_call_statement] = STATE(1535), - [sym_function_call] = STATE(4086), - [sym_if_statement] = STATE(1535), - [sym_label] = STATE(1536), - [sym_repeat_statement] = STATE(1535), - [sym_procedure_statement] = STATE(1535), - [sym_procedure_parameter_definition] = STATE(1535), - [sym_function_statement] = STATE(1535), - [sym_return_statement] = STATE(1535), - [sym_interface_statement] = STATE(1535), - [sym_using_statement] = STATE(1535), - [sym_class_statement] = STATE(1535), - [sym_object_access] = STATE(3567), - [sym_stream_definition] = STATE(1535), - [sym_input_close_statement] = STATE(1535), - [sym_output_close_statement] = STATE(1535), - [sym__stream_statement] = STATE(1535), - [sym_input_stream_statement] = STATE(1537), - [sym_output_stream_statement] = STATE(1537), - [sym_do_block] = STATE(1535), - [sym_case_statement] = STATE(1535), - [sym_for_statement] = STATE(1535), - [sym_find_statement] = STATE(1535), - [sym_abl_statement] = STATE(1535), - [sym_assign_statement] = STATE(1535), - [sym_catch_statement] = STATE(1535), - [sym_finally_statement] = STATE(1535), - [sym_accumulate_statement] = STATE(1535), - [sym_undo_statement] = STATE(1535), - [sym_error_scope_statement] = STATE(1535), - [sym_temp_table_definition] = STATE(1535), - [sym_on_statement] = STATE(1535), - [sym__statement] = STATE(1538), - [aux_sym_source_code_repeat1] = STATE(276), - [sym_identifier] = ACTIONS(227), + [sym_assignment] = STATE(4463), + [sym_variable_definition] = STATE(1550), + [sym_variable_assignment] = STATE(1550), + [sym_buffer_definition] = STATE(1550), + [sym_query_definition] = STATE(1550), + [sym_function_call_statement] = STATE(1550), + [sym_function_call] = STATE(4558), + [sym_if_statement] = STATE(1550), + [sym_label] = STATE(1551), + [sym_repeat_statement] = STATE(1550), + [sym_procedure_statement] = STATE(1550), + [sym_procedure_parameter_definition] = STATE(1550), + [sym_function_statement] = STATE(1550), + [sym_return_statement] = STATE(1550), + [sym_interface_statement] = STATE(1550), + [sym_using_statement] = STATE(1550), + [sym_class_statement] = STATE(1550), + [sym_object_access] = STATE(3661), + [sym_stream_definition] = STATE(1550), + [sym_input_close_statement] = STATE(1550), + [sym_output_close_statement] = STATE(1550), + [sym__stream_statement] = STATE(1550), + [sym_input_stream_statement] = STATE(1552), + [sym_output_stream_statement] = STATE(1552), + [sym_do_block] = STATE(1550), + [sym_case_statement] = STATE(1550), + [sym_for_statement] = STATE(1550), + [sym_find_statement] = STATE(1550), + [sym_abl_statement] = STATE(1550), + [sym_assign_statement] = STATE(1550), + [sym_catch_statement] = STATE(1550), + [sym_finally_statement] = STATE(1550), + [sym_accumulate_statement] = STATE(1550), + [sym_undo_statement] = STATE(1550), + [sym_error_scope_statement] = STATE(1550), + [sym_temp_table_definition] = STATE(1550), + [sym_on_statement] = STATE(1550), + [sym__statement] = STATE(1553), + [aux_sym_source_code_repeat1] = STATE(286), + [sym_identifier] = ACTIONS(263), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), [anon_sym_LBRACE] = ACTIONS(7), - [aux_sym__block_terminator_token1] = ACTIONS(311), - [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), + [aux_sym__block_terminator_token1] = ACTIONS(325), + [aux_sym_input_expression_token1] = ACTIONS(267), + [aux_sym_primitive_type_token19] = ACTIONS(269), + [aux_sym_variable_definition_token1] = ACTIONS(271), + [aux_sym_variable_definition_token2] = ACTIONS(273), + [aux_sym_buffer_definition_token2] = ACTIONS(275), + [aux_sym_argument_mode_token1] = ACTIONS(277), + [aux_sym_if_statement_token1] = ACTIONS(279), + [aux_sym_repeat_statement_token1] = ACTIONS(281), + [aux_sym__procedure_terminator_token1] = ACTIONS(283), + [aux_sym_procedure_parameter_definition_token1] = ACTIONS(285), + [aux_sym__function_terminator_token1] = ACTIONS(287), + [aux_sym_interface_statement_token1] = ACTIONS(289), + [aux_sym_using_statement_token1] = ACTIONS(291), + [aux_sym_on_error_phrase_token1] = ACTIONS(293), + [aux_sym_on_error_phrase_token3] = ACTIONS(295), + [aux_sym_do_block_token1] = ACTIONS(297), + [aux_sym__case_terminator_token1] = ACTIONS(299), + [aux_sym_find_statement_token1] = ACTIONS(301), + [aux_sym_assign_statement_token1] = ACTIONS(303), + [aux_sym_catch_statement_token1] = ACTIONS(305), + [aux_sym_finally_statement_token1] = ACTIONS(307), + [aux_sym_accumulate_statement_token1] = ACTIONS(309), + [anon_sym_ROUTINE_DASHLEVEL] = ACTIONS(311), + [anon_sym_BLOCK_DASHLEVEL] = ACTIONS(311), }, [209] = { - [sym_body] = STATE(3751), + [sym_body] = STATE(3851), [sym_comment] = STATE(209), - [sym_qualified_name] = STATE(4733), - [sym__block_terminator] = STATE(1452), + [sym_qualified_name] = STATE(4814), + [sym__block_terminator] = STATE(858), [sym_include] = STATE(209), - [sym_assignment] = STATE(4314), - [sym_variable_definition] = STATE(1535), - [sym_variable_assignment] = STATE(1535), - [sym_buffer_definition] = STATE(1535), - [sym_query_definition] = STATE(1535), - [sym_function_call_statement] = STATE(1535), - [sym_function_call] = STATE(4086), - [sym_if_statement] = STATE(1535), - [sym_label] = STATE(1536), - [sym_repeat_statement] = STATE(1535), - [sym_procedure_statement] = STATE(1535), - [sym_procedure_parameter_definition] = STATE(1535), - [sym_function_statement] = STATE(1535), - [sym_return_statement] = STATE(1535), - [sym_interface_statement] = STATE(1535), - [sym_using_statement] = STATE(1535), - [sym_class_statement] = STATE(1535), - [sym_object_access] = STATE(3567), - [sym_stream_definition] = STATE(1535), - [sym_input_close_statement] = STATE(1535), - [sym_output_close_statement] = STATE(1535), - [sym__stream_statement] = STATE(1535), - [sym_input_stream_statement] = STATE(1537), - [sym_output_stream_statement] = STATE(1537), - [sym_do_block] = STATE(1535), - [sym_case_statement] = STATE(1535), - [sym_for_statement] = STATE(1535), - [sym_find_statement] = STATE(1535), - [sym_abl_statement] = STATE(1535), - [sym_assign_statement] = STATE(1535), - [sym_catch_statement] = STATE(1535), - [sym_finally_statement] = STATE(1535), - [sym_accumulate_statement] = STATE(1535), - [sym_undo_statement] = STATE(1535), - [sym_error_scope_statement] = STATE(1535), - [sym_temp_table_definition] = STATE(1535), - [sym_on_statement] = STATE(1535), - [sym__statement] = STATE(1538), - [aux_sym_source_code_repeat1] = STATE(276), - [sym_identifier] = ACTIONS(227), + [sym_assignment] = STATE(4463), + [sym_variable_definition] = STATE(1550), + [sym_variable_assignment] = STATE(1550), + [sym_buffer_definition] = STATE(1550), + [sym_query_definition] = STATE(1550), + [sym_function_call_statement] = STATE(1550), + [sym_function_call] = STATE(4558), + [sym_if_statement] = STATE(1550), + [sym_label] = STATE(1551), + [sym_repeat_statement] = STATE(1550), + [sym_procedure_statement] = STATE(1550), + [sym_procedure_parameter_definition] = STATE(1550), + [sym_function_statement] = STATE(1550), + [sym_return_statement] = STATE(1550), + [sym_interface_statement] = STATE(1550), + [sym_using_statement] = STATE(1550), + [sym_class_statement] = STATE(1550), + [sym_object_access] = STATE(3661), + [sym_stream_definition] = STATE(1550), + [sym_input_close_statement] = STATE(1550), + [sym_output_close_statement] = STATE(1550), + [sym__stream_statement] = STATE(1550), + [sym_input_stream_statement] = STATE(1552), + [sym_output_stream_statement] = STATE(1552), + [sym_do_block] = STATE(1550), + [sym_case_statement] = STATE(1550), + [sym_for_statement] = STATE(1550), + [sym_find_statement] = STATE(1550), + [sym_abl_statement] = STATE(1550), + [sym_assign_statement] = STATE(1550), + [sym_catch_statement] = STATE(1550), + [sym_finally_statement] = STATE(1550), + [sym_accumulate_statement] = STATE(1550), + [sym_undo_statement] = STATE(1550), + [sym_error_scope_statement] = STATE(1550), + [sym_temp_table_definition] = STATE(1550), + [sym_on_statement] = STATE(1550), + [sym__statement] = STATE(1553), + [aux_sym_source_code_repeat1] = STATE(286), + [sym_identifier] = ACTIONS(263), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), [anon_sym_LBRACE] = ACTIONS(7), - [aux_sym__block_terminator_token1] = ACTIONS(311), - [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), + [aux_sym__block_terminator_token1] = ACTIONS(323), + [aux_sym_input_expression_token1] = ACTIONS(267), + [aux_sym_primitive_type_token19] = ACTIONS(269), + [aux_sym_variable_definition_token1] = ACTIONS(271), + [aux_sym_variable_definition_token2] = ACTIONS(273), + [aux_sym_buffer_definition_token2] = ACTIONS(275), + [aux_sym_argument_mode_token1] = ACTIONS(277), + [aux_sym_if_statement_token1] = ACTIONS(279), + [aux_sym_repeat_statement_token1] = ACTIONS(281), + [aux_sym__procedure_terminator_token1] = ACTIONS(283), + [aux_sym_procedure_parameter_definition_token1] = ACTIONS(285), + [aux_sym__function_terminator_token1] = ACTIONS(287), + [aux_sym_interface_statement_token1] = ACTIONS(289), + [aux_sym_using_statement_token1] = ACTIONS(291), + [aux_sym_on_error_phrase_token1] = ACTIONS(293), + [aux_sym_on_error_phrase_token3] = ACTIONS(295), + [aux_sym_do_block_token1] = ACTIONS(297), + [aux_sym__case_terminator_token1] = ACTIONS(299), + [aux_sym_find_statement_token1] = ACTIONS(301), + [aux_sym_assign_statement_token1] = ACTIONS(303), + [aux_sym_catch_statement_token1] = ACTIONS(305), + [aux_sym_finally_statement_token1] = ACTIONS(307), + [aux_sym_accumulate_statement_token1] = ACTIONS(309), + [anon_sym_ROUTINE_DASHLEVEL] = ACTIONS(311), + [anon_sym_BLOCK_DASHLEVEL] = ACTIONS(311), }, [210] = { - [sym_body] = STATE(4082), + [sym_body] = STATE(3763), [sym_comment] = STATE(210), - [sym_qualified_name] = STATE(4733), - [sym__block_terminator] = STATE(973), + [sym_qualified_name] = STATE(4814), + [sym__block_terminator] = STATE(1530), [sym_include] = STATE(210), - [sym_assignment] = STATE(4314), - [sym_variable_definition] = STATE(1535), - [sym_variable_assignment] = STATE(1535), - [sym_buffer_definition] = STATE(1535), - [sym_query_definition] = STATE(1535), - [sym_function_call_statement] = STATE(1535), - [sym_function_call] = STATE(4086), - [sym_if_statement] = STATE(1535), - [sym_label] = STATE(1536), - [sym_repeat_statement] = STATE(1535), - [sym_procedure_statement] = STATE(1535), - [sym_procedure_parameter_definition] = STATE(1535), - [sym_function_statement] = STATE(1535), - [sym_return_statement] = STATE(1535), - [sym_interface_statement] = STATE(1535), - [sym_using_statement] = STATE(1535), - [sym_class_statement] = STATE(1535), - [sym_object_access] = STATE(3567), - [sym_stream_definition] = STATE(1535), - [sym_input_close_statement] = STATE(1535), - [sym_output_close_statement] = STATE(1535), - [sym__stream_statement] = STATE(1535), - [sym_input_stream_statement] = STATE(1537), - [sym_output_stream_statement] = STATE(1537), - [sym_do_block] = STATE(1535), - [sym_case_statement] = STATE(1535), - [sym_for_statement] = STATE(1535), - [sym_find_statement] = STATE(1535), - [sym_abl_statement] = STATE(1535), - [sym_assign_statement] = STATE(1535), - [sym_catch_statement] = STATE(1535), - [sym_finally_statement] = STATE(1535), - [sym_accumulate_statement] = STATE(1535), - [sym_undo_statement] = STATE(1535), - [sym_error_scope_statement] = STATE(1535), - [sym_temp_table_definition] = STATE(1535), - [sym_on_statement] = STATE(1535), - [sym__statement] = STATE(1538), - [aux_sym_source_code_repeat1] = STATE(276), - [sym_identifier] = ACTIONS(227), + [sym_assignment] = STATE(4463), + [sym_variable_definition] = STATE(1550), + [sym_variable_assignment] = STATE(1550), + [sym_buffer_definition] = STATE(1550), + [sym_query_definition] = STATE(1550), + [sym_function_call_statement] = STATE(1550), + [sym_function_call] = STATE(4558), + [sym_if_statement] = STATE(1550), + [sym_label] = STATE(1551), + [sym_repeat_statement] = STATE(1550), + [sym_procedure_statement] = STATE(1550), + [sym_procedure_parameter_definition] = STATE(1550), + [sym_function_statement] = STATE(1550), + [sym_return_statement] = STATE(1550), + [sym_interface_statement] = STATE(1550), + [sym_using_statement] = STATE(1550), + [sym_class_statement] = STATE(1550), + [sym_object_access] = STATE(3661), + [sym_stream_definition] = STATE(1550), + [sym_input_close_statement] = STATE(1550), + [sym_output_close_statement] = STATE(1550), + [sym__stream_statement] = STATE(1550), + [sym_input_stream_statement] = STATE(1552), + [sym_output_stream_statement] = STATE(1552), + [sym_do_block] = STATE(1550), + [sym_case_statement] = STATE(1550), + [sym_for_statement] = STATE(1550), + [sym_find_statement] = STATE(1550), + [sym_abl_statement] = STATE(1550), + [sym_assign_statement] = STATE(1550), + [sym_catch_statement] = STATE(1550), + [sym_finally_statement] = STATE(1550), + [sym_accumulate_statement] = STATE(1550), + [sym_undo_statement] = STATE(1550), + [sym_error_scope_statement] = STATE(1550), + [sym_temp_table_definition] = STATE(1550), + [sym_on_statement] = STATE(1550), + [sym__statement] = STATE(1553), + [aux_sym_source_code_repeat1] = STATE(286), + [sym_identifier] = ACTIONS(263), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), [anon_sym_LBRACE] = ACTIONS(7), - [aux_sym__block_terminator_token1] = ACTIONS(303), - [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), + [aux_sym__block_terminator_token1] = ACTIONS(325), + [aux_sym_input_expression_token1] = ACTIONS(267), + [aux_sym_primitive_type_token19] = ACTIONS(269), + [aux_sym_variable_definition_token1] = ACTIONS(271), + [aux_sym_variable_definition_token2] = ACTIONS(273), + [aux_sym_buffer_definition_token2] = ACTIONS(275), + [aux_sym_argument_mode_token1] = ACTIONS(277), + [aux_sym_if_statement_token1] = ACTIONS(279), + [aux_sym_repeat_statement_token1] = ACTIONS(281), + [aux_sym__procedure_terminator_token1] = ACTIONS(283), + [aux_sym_procedure_parameter_definition_token1] = ACTIONS(285), + [aux_sym__function_terminator_token1] = ACTIONS(287), + [aux_sym_interface_statement_token1] = ACTIONS(289), + [aux_sym_using_statement_token1] = ACTIONS(291), + [aux_sym_on_error_phrase_token1] = ACTIONS(293), + [aux_sym_on_error_phrase_token3] = ACTIONS(295), + [aux_sym_do_block_token1] = ACTIONS(297), + [aux_sym__case_terminator_token1] = ACTIONS(299), + [aux_sym_find_statement_token1] = ACTIONS(301), + [aux_sym_assign_statement_token1] = ACTIONS(303), + [aux_sym_catch_statement_token1] = ACTIONS(305), + [aux_sym_finally_statement_token1] = ACTIONS(307), + [aux_sym_accumulate_statement_token1] = ACTIONS(309), + [anon_sym_ROUTINE_DASHLEVEL] = ACTIONS(311), + [anon_sym_BLOCK_DASHLEVEL] = ACTIONS(311), }, [211] = { - [sym_body] = STATE(3619), + [sym_body] = STATE(3782), [sym_comment] = STATE(211), - [sym_qualified_name] = STATE(4733), - [sym__block_terminator] = STATE(1131), + [sym_qualified_name] = STATE(4814), + [sym__block_terminator] = STATE(1509), [sym_include] = STATE(211), - [sym_assignment] = STATE(4314), - [sym_variable_definition] = STATE(1535), - [sym_variable_assignment] = STATE(1535), - [sym_buffer_definition] = STATE(1535), - [sym_query_definition] = STATE(1535), - [sym_function_call_statement] = STATE(1535), - [sym_function_call] = STATE(4086), - [sym_if_statement] = STATE(1535), - [sym_label] = STATE(1536), - [sym_repeat_statement] = STATE(1535), - [sym_procedure_statement] = STATE(1535), - [sym_procedure_parameter_definition] = STATE(1535), - [sym_function_statement] = STATE(1535), - [sym_return_statement] = STATE(1535), - [sym_interface_statement] = STATE(1535), - [sym_using_statement] = STATE(1535), - [sym_class_statement] = STATE(1535), - [sym_object_access] = STATE(3567), - [sym_stream_definition] = STATE(1535), - [sym_input_close_statement] = STATE(1535), - [sym_output_close_statement] = STATE(1535), - [sym__stream_statement] = STATE(1535), - [sym_input_stream_statement] = STATE(1537), - [sym_output_stream_statement] = STATE(1537), - [sym_do_block] = STATE(1535), - [sym_case_statement] = STATE(1535), - [sym_for_statement] = STATE(1535), - [sym_find_statement] = STATE(1535), - [sym_abl_statement] = STATE(1535), - [sym_assign_statement] = STATE(1535), - [sym_catch_statement] = STATE(1535), - [sym_finally_statement] = STATE(1535), - [sym_accumulate_statement] = STATE(1535), - [sym_undo_statement] = STATE(1535), - [sym_error_scope_statement] = STATE(1535), - [sym_temp_table_definition] = STATE(1535), - [sym_on_statement] = STATE(1535), - [sym__statement] = STATE(1538), - [aux_sym_source_code_repeat1] = STATE(276), - [sym_identifier] = ACTIONS(227), + [sym_assignment] = STATE(4463), + [sym_variable_definition] = STATE(1550), + [sym_variable_assignment] = STATE(1550), + [sym_buffer_definition] = STATE(1550), + [sym_query_definition] = STATE(1550), + [sym_function_call_statement] = STATE(1550), + [sym_function_call] = STATE(4558), + [sym_if_statement] = STATE(1550), + [sym_label] = STATE(1551), + [sym_repeat_statement] = STATE(1550), + [sym_procedure_statement] = STATE(1550), + [sym_procedure_parameter_definition] = STATE(1550), + [sym_function_statement] = STATE(1550), + [sym_return_statement] = STATE(1550), + [sym_interface_statement] = STATE(1550), + [sym_using_statement] = STATE(1550), + [sym_class_statement] = STATE(1550), + [sym_object_access] = STATE(3661), + [sym_stream_definition] = STATE(1550), + [sym_input_close_statement] = STATE(1550), + [sym_output_close_statement] = STATE(1550), + [sym__stream_statement] = STATE(1550), + [sym_input_stream_statement] = STATE(1552), + [sym_output_stream_statement] = STATE(1552), + [sym_do_block] = STATE(1550), + [sym_case_statement] = STATE(1550), + [sym_for_statement] = STATE(1550), + [sym_find_statement] = STATE(1550), + [sym_abl_statement] = STATE(1550), + [sym_assign_statement] = STATE(1550), + [sym_catch_statement] = STATE(1550), + [sym_finally_statement] = STATE(1550), + [sym_accumulate_statement] = STATE(1550), + [sym_undo_statement] = STATE(1550), + [sym_error_scope_statement] = STATE(1550), + [sym_temp_table_definition] = STATE(1550), + [sym_on_statement] = STATE(1550), + [sym__statement] = STATE(1553), + [aux_sym_source_code_repeat1] = STATE(286), + [sym_identifier] = ACTIONS(263), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), [anon_sym_LBRACE] = ACTIONS(7), - [aux_sym__block_terminator_token1] = ACTIONS(301), - [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), + [aux_sym__block_terminator_token1] = ACTIONS(325), + [aux_sym_input_expression_token1] = ACTIONS(267), + [aux_sym_primitive_type_token19] = ACTIONS(269), + [aux_sym_variable_definition_token1] = ACTIONS(271), + [aux_sym_variable_definition_token2] = ACTIONS(273), + [aux_sym_buffer_definition_token2] = ACTIONS(275), + [aux_sym_argument_mode_token1] = ACTIONS(277), + [aux_sym_if_statement_token1] = ACTIONS(279), + [aux_sym_repeat_statement_token1] = ACTIONS(281), + [aux_sym__procedure_terminator_token1] = ACTIONS(283), + [aux_sym_procedure_parameter_definition_token1] = ACTIONS(285), + [aux_sym__function_terminator_token1] = ACTIONS(287), + [aux_sym_interface_statement_token1] = ACTIONS(289), + [aux_sym_using_statement_token1] = ACTIONS(291), + [aux_sym_on_error_phrase_token1] = ACTIONS(293), + [aux_sym_on_error_phrase_token3] = ACTIONS(295), + [aux_sym_do_block_token1] = ACTIONS(297), + [aux_sym__case_terminator_token1] = ACTIONS(299), + [aux_sym_find_statement_token1] = ACTIONS(301), + [aux_sym_assign_statement_token1] = ACTIONS(303), + [aux_sym_catch_statement_token1] = ACTIONS(305), + [aux_sym_finally_statement_token1] = ACTIONS(307), + [aux_sym_accumulate_statement_token1] = ACTIONS(309), + [anon_sym_ROUTINE_DASHLEVEL] = ACTIONS(311), + [anon_sym_BLOCK_DASHLEVEL] = ACTIONS(311), }, [212] = { + [sym_body] = STATE(3783), [sym_comment] = STATE(212), - [sym__logical_operator] = STATE(411), - [sym__additive_operator] = STATE(408), - [sym__multiplicative_operator] = STATE(347), - [sym__comparison_operator] = STATE(375), + [sym_qualified_name] = STATE(4814), + [sym__block_terminator] = STATE(1507), [sym_include] = STATE(212), - [anon_sym_SLASH_SLASH] = ACTIONS(59), - [anon_sym_SLASH_STAR] = ACTIONS(61), - [anon_sym_SLASH] = ACTIONS(283), - [anon_sym_LBRACE] = ACTIONS(65), - [anon_sym_STAR] = ACTIONS(285), - [sym__terminator] = ACTIONS(327), - [anon_sym_LPAREN] = ACTIONS(327), - [anon_sym_RPAREN] = ACTIONS(327), - [anon_sym_PLUS] = ACTIONS(289), - [anon_sym_DASH] = ACTIONS(289), - [anon_sym_LT] = ACTIONS(291), - [anon_sym_LT_EQ] = ACTIONS(293), - [anon_sym_LT_GT] = ACTIONS(293), - [anon_sym_EQ] = ACTIONS(293), - [anon_sym_GT] = ACTIONS(291), - [anon_sym_GT_EQ] = ACTIONS(293), - [aux_sym__comparison_operator_token1] = ACTIONS(293), - [aux_sym__comparison_operator_token2] = ACTIONS(293), - [aux_sym__comparison_operator_token3] = ACTIONS(293), - [aux_sym__comparison_operator_token4] = ACTIONS(293), - [aux_sym__comparison_operator_token5] = ACTIONS(293), - [aux_sym__comparison_operator_token6] = ACTIONS(293), - [aux_sym__comparison_operator_token7] = ACTIONS(293), - [aux_sym__comparison_operator_token8] = ACTIONS(293), - [aux_sym__comparison_operator_token9] = ACTIONS(293), - [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(295), - [sym__and_operator] = ACTIONS(295), + [sym_assignment] = STATE(4463), + [sym_variable_definition] = STATE(1550), + [sym_variable_assignment] = STATE(1550), + [sym_buffer_definition] = STATE(1550), + [sym_query_definition] = STATE(1550), + [sym_function_call_statement] = STATE(1550), + [sym_function_call] = STATE(4558), + [sym_if_statement] = STATE(1550), + [sym_label] = STATE(1551), + [sym_repeat_statement] = STATE(1550), + [sym_procedure_statement] = STATE(1550), + [sym_procedure_parameter_definition] = STATE(1550), + [sym_function_statement] = STATE(1550), + [sym_return_statement] = STATE(1550), + [sym_interface_statement] = STATE(1550), + [sym_using_statement] = STATE(1550), + [sym_class_statement] = STATE(1550), + [sym_object_access] = STATE(3661), + [sym_stream_definition] = STATE(1550), + [sym_input_close_statement] = STATE(1550), + [sym_output_close_statement] = STATE(1550), + [sym__stream_statement] = STATE(1550), + [sym_input_stream_statement] = STATE(1552), + [sym_output_stream_statement] = STATE(1552), + [sym_do_block] = STATE(1550), + [sym_case_statement] = STATE(1550), + [sym_for_statement] = STATE(1550), + [sym_find_statement] = STATE(1550), + [sym_abl_statement] = STATE(1550), + [sym_assign_statement] = STATE(1550), + [sym_catch_statement] = STATE(1550), + [sym_finally_statement] = STATE(1550), + [sym_accumulate_statement] = STATE(1550), + [sym_undo_statement] = STATE(1550), + [sym_error_scope_statement] = STATE(1550), + [sym_temp_table_definition] = STATE(1550), + [sym_on_statement] = STATE(1550), + [sym__statement] = STATE(1553), + [aux_sym_source_code_repeat1] = STATE(286), + [sym_identifier] = ACTIONS(263), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_LBRACE] = ACTIONS(7), + [aux_sym__block_terminator_token1] = ACTIONS(325), + [aux_sym_input_expression_token1] = ACTIONS(267), + [aux_sym_primitive_type_token19] = ACTIONS(269), + [aux_sym_variable_definition_token1] = ACTIONS(271), + [aux_sym_variable_definition_token2] = ACTIONS(273), + [aux_sym_buffer_definition_token2] = ACTIONS(275), + [aux_sym_argument_mode_token1] = ACTIONS(277), + [aux_sym_if_statement_token1] = ACTIONS(279), + [aux_sym_repeat_statement_token1] = ACTIONS(281), + [aux_sym__procedure_terminator_token1] = ACTIONS(283), + [aux_sym_procedure_parameter_definition_token1] = ACTIONS(285), + [aux_sym__function_terminator_token1] = ACTIONS(287), + [aux_sym_interface_statement_token1] = ACTIONS(289), + [aux_sym_using_statement_token1] = ACTIONS(291), + [aux_sym_on_error_phrase_token1] = ACTIONS(293), + [aux_sym_on_error_phrase_token3] = ACTIONS(295), + [aux_sym_do_block_token1] = ACTIONS(297), + [aux_sym__case_terminator_token1] = ACTIONS(299), + [aux_sym_find_statement_token1] = ACTIONS(301), + [aux_sym_assign_statement_token1] = ACTIONS(303), + [aux_sym_catch_statement_token1] = ACTIONS(305), + [aux_sym_finally_statement_token1] = ACTIONS(307), + [aux_sym_accumulate_statement_token1] = ACTIONS(309), + [anon_sym_ROUTINE_DASHLEVEL] = ACTIONS(311), + [anon_sym_BLOCK_DASHLEVEL] = ACTIONS(311), }, [213] = { - [sym_body] = STATE(3922), + [sym_body] = STATE(3818), [sym_comment] = STATE(213), - [sym_qualified_name] = STATE(4733), - [sym__block_terminator] = STATE(1438), + [sym_qualified_name] = STATE(4814), + [sym__block_terminator] = STATE(1479), [sym_include] = STATE(213), - [sym_assignment] = STATE(4314), - [sym_variable_definition] = STATE(1535), - [sym_variable_assignment] = STATE(1535), - [sym_buffer_definition] = STATE(1535), - [sym_query_definition] = STATE(1535), - [sym_function_call_statement] = STATE(1535), - [sym_function_call] = STATE(4086), - [sym_if_statement] = STATE(1535), - [sym_label] = STATE(1536), - [sym_repeat_statement] = STATE(1535), - [sym_procedure_statement] = STATE(1535), - [sym_procedure_parameter_definition] = STATE(1535), - [sym_function_statement] = STATE(1535), - [sym_return_statement] = STATE(1535), - [sym_interface_statement] = STATE(1535), - [sym_using_statement] = STATE(1535), - [sym_class_statement] = STATE(1535), - [sym_object_access] = STATE(3567), - [sym_stream_definition] = STATE(1535), - [sym_input_close_statement] = STATE(1535), - [sym_output_close_statement] = STATE(1535), - [sym__stream_statement] = STATE(1535), - [sym_input_stream_statement] = STATE(1537), - [sym_output_stream_statement] = STATE(1537), - [sym_do_block] = STATE(1535), - [sym_case_statement] = STATE(1535), - [sym_for_statement] = STATE(1535), - [sym_find_statement] = STATE(1535), - [sym_abl_statement] = STATE(1535), - [sym_assign_statement] = STATE(1535), - [sym_catch_statement] = STATE(1535), - [sym_finally_statement] = STATE(1535), - [sym_accumulate_statement] = STATE(1535), - [sym_undo_statement] = STATE(1535), - [sym_error_scope_statement] = STATE(1535), - [sym_temp_table_definition] = STATE(1535), - [sym_on_statement] = STATE(1535), - [sym__statement] = STATE(1538), - [aux_sym_source_code_repeat1] = STATE(276), - [sym_identifier] = ACTIONS(227), + [sym_assignment] = STATE(4463), + [sym_variable_definition] = STATE(1550), + [sym_variable_assignment] = STATE(1550), + [sym_buffer_definition] = STATE(1550), + [sym_query_definition] = STATE(1550), + [sym_function_call_statement] = STATE(1550), + [sym_function_call] = STATE(4558), + [sym_if_statement] = STATE(1550), + [sym_label] = STATE(1551), + [sym_repeat_statement] = STATE(1550), + [sym_procedure_statement] = STATE(1550), + [sym_procedure_parameter_definition] = STATE(1550), + [sym_function_statement] = STATE(1550), + [sym_return_statement] = STATE(1550), + [sym_interface_statement] = STATE(1550), + [sym_using_statement] = STATE(1550), + [sym_class_statement] = STATE(1550), + [sym_object_access] = STATE(3661), + [sym_stream_definition] = STATE(1550), + [sym_input_close_statement] = STATE(1550), + [sym_output_close_statement] = STATE(1550), + [sym__stream_statement] = STATE(1550), + [sym_input_stream_statement] = STATE(1552), + [sym_output_stream_statement] = STATE(1552), + [sym_do_block] = STATE(1550), + [sym_case_statement] = STATE(1550), + [sym_for_statement] = STATE(1550), + [sym_find_statement] = STATE(1550), + [sym_abl_statement] = STATE(1550), + [sym_assign_statement] = STATE(1550), + [sym_catch_statement] = STATE(1550), + [sym_finally_statement] = STATE(1550), + [sym_accumulate_statement] = STATE(1550), + [sym_undo_statement] = STATE(1550), + [sym_error_scope_statement] = STATE(1550), + [sym_temp_table_definition] = STATE(1550), + [sym_on_statement] = STATE(1550), + [sym__statement] = STATE(1553), + [aux_sym_source_code_repeat1] = STATE(286), + [sym_identifier] = ACTIONS(263), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), [anon_sym_LBRACE] = ACTIONS(7), - [aux_sym__block_terminator_token1] = ACTIONS(311), - [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), + [aux_sym__block_terminator_token1] = ACTIONS(325), + [aux_sym_input_expression_token1] = ACTIONS(267), + [aux_sym_primitive_type_token19] = ACTIONS(269), + [aux_sym_variable_definition_token1] = ACTIONS(271), + [aux_sym_variable_definition_token2] = ACTIONS(273), + [aux_sym_buffer_definition_token2] = ACTIONS(275), + [aux_sym_argument_mode_token1] = ACTIONS(277), + [aux_sym_if_statement_token1] = ACTIONS(279), + [aux_sym_repeat_statement_token1] = ACTIONS(281), + [aux_sym__procedure_terminator_token1] = ACTIONS(283), + [aux_sym_procedure_parameter_definition_token1] = ACTIONS(285), + [aux_sym__function_terminator_token1] = ACTIONS(287), + [aux_sym_interface_statement_token1] = ACTIONS(289), + [aux_sym_using_statement_token1] = ACTIONS(291), + [aux_sym_on_error_phrase_token1] = ACTIONS(293), + [aux_sym_on_error_phrase_token3] = ACTIONS(295), + [aux_sym_do_block_token1] = ACTIONS(297), + [aux_sym__case_terminator_token1] = ACTIONS(299), + [aux_sym_find_statement_token1] = ACTIONS(301), + [aux_sym_assign_statement_token1] = ACTIONS(303), + [aux_sym_catch_statement_token1] = ACTIONS(305), + [aux_sym_finally_statement_token1] = ACTIONS(307), + [aux_sym_accumulate_statement_token1] = ACTIONS(309), + [anon_sym_ROUTINE_DASHLEVEL] = ACTIONS(311), + [anon_sym_BLOCK_DASHLEVEL] = ACTIONS(311), }, [214] = { - [sym_body] = STATE(3709), + [sym_body] = STATE(3819), [sym_comment] = STATE(214), - [sym_qualified_name] = STATE(4733), - [sym__block_terminator] = STATE(3390), + [sym_qualified_name] = STATE(4814), + [sym__block_terminator] = STATE(1476), [sym_include] = STATE(214), - [sym_assignment] = STATE(4314), - [sym_variable_definition] = STATE(1535), - [sym_variable_assignment] = STATE(1535), - [sym_buffer_definition] = STATE(1535), - [sym_query_definition] = STATE(1535), - [sym_function_call_statement] = STATE(1535), - [sym_function_call] = STATE(4086), - [sym_if_statement] = STATE(1535), - [sym_label] = STATE(1536), - [sym_repeat_statement] = STATE(1535), - [sym_procedure_statement] = STATE(1535), - [sym_procedure_parameter_definition] = STATE(1535), - [sym_function_statement] = STATE(1535), - [sym_return_statement] = STATE(1535), - [sym_interface_statement] = STATE(1535), - [sym_using_statement] = STATE(1535), - [sym_class_statement] = STATE(1535), - [sym_object_access] = STATE(3567), - [sym_stream_definition] = STATE(1535), - [sym_input_close_statement] = STATE(1535), - [sym_output_close_statement] = STATE(1535), - [sym__stream_statement] = STATE(1535), - [sym_input_stream_statement] = STATE(1537), - [sym_output_stream_statement] = STATE(1537), - [sym_do_block] = STATE(1535), - [sym_case_statement] = STATE(1535), - [sym_for_statement] = STATE(1535), - [sym_find_statement] = STATE(1535), - [sym_abl_statement] = STATE(1535), - [sym_assign_statement] = STATE(1535), - [sym_catch_statement] = STATE(1535), - [sym_finally_statement] = STATE(1535), - [sym_accumulate_statement] = STATE(1535), - [sym_undo_statement] = STATE(1535), - [sym_error_scope_statement] = STATE(1535), - [sym_temp_table_definition] = STATE(1535), - [sym_on_statement] = STATE(1535), - [sym__statement] = STATE(1538), - [aux_sym_source_code_repeat1] = STATE(276), - [sym_identifier] = ACTIONS(227), + [sym_assignment] = STATE(4463), + [sym_variable_definition] = STATE(1550), + [sym_variable_assignment] = STATE(1550), + [sym_buffer_definition] = STATE(1550), + [sym_query_definition] = STATE(1550), + [sym_function_call_statement] = STATE(1550), + [sym_function_call] = STATE(4558), + [sym_if_statement] = STATE(1550), + [sym_label] = STATE(1551), + [sym_repeat_statement] = STATE(1550), + [sym_procedure_statement] = STATE(1550), + [sym_procedure_parameter_definition] = STATE(1550), + [sym_function_statement] = STATE(1550), + [sym_return_statement] = STATE(1550), + [sym_interface_statement] = STATE(1550), + [sym_using_statement] = STATE(1550), + [sym_class_statement] = STATE(1550), + [sym_object_access] = STATE(3661), + [sym_stream_definition] = STATE(1550), + [sym_input_close_statement] = STATE(1550), + [sym_output_close_statement] = STATE(1550), + [sym__stream_statement] = STATE(1550), + [sym_input_stream_statement] = STATE(1552), + [sym_output_stream_statement] = STATE(1552), + [sym_do_block] = STATE(1550), + [sym_case_statement] = STATE(1550), + [sym_for_statement] = STATE(1550), + [sym_find_statement] = STATE(1550), + [sym_abl_statement] = STATE(1550), + [sym_assign_statement] = STATE(1550), + [sym_catch_statement] = STATE(1550), + [sym_finally_statement] = STATE(1550), + [sym_accumulate_statement] = STATE(1550), + [sym_undo_statement] = STATE(1550), + [sym_error_scope_statement] = STATE(1550), + [sym_temp_table_definition] = STATE(1550), + [sym_on_statement] = STATE(1550), + [sym__statement] = STATE(1553), + [aux_sym_source_code_repeat1] = STATE(286), + [sym_identifier] = ACTIONS(263), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), [anon_sym_LBRACE] = ACTIONS(7), - [aux_sym__block_terminator_token1] = ACTIONS(297), - [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), + [aux_sym__block_terminator_token1] = ACTIONS(325), + [aux_sym_input_expression_token1] = ACTIONS(267), + [aux_sym_primitive_type_token19] = ACTIONS(269), + [aux_sym_variable_definition_token1] = ACTIONS(271), + [aux_sym_variable_definition_token2] = ACTIONS(273), + [aux_sym_buffer_definition_token2] = ACTIONS(275), + [aux_sym_argument_mode_token1] = ACTIONS(277), + [aux_sym_if_statement_token1] = ACTIONS(279), + [aux_sym_repeat_statement_token1] = ACTIONS(281), + [aux_sym__procedure_terminator_token1] = ACTIONS(283), + [aux_sym_procedure_parameter_definition_token1] = ACTIONS(285), + [aux_sym__function_terminator_token1] = ACTIONS(287), + [aux_sym_interface_statement_token1] = ACTIONS(289), + [aux_sym_using_statement_token1] = ACTIONS(291), + [aux_sym_on_error_phrase_token1] = ACTIONS(293), + [aux_sym_on_error_phrase_token3] = ACTIONS(295), + [aux_sym_do_block_token1] = ACTIONS(297), + [aux_sym__case_terminator_token1] = ACTIONS(299), + [aux_sym_find_statement_token1] = ACTIONS(301), + [aux_sym_assign_statement_token1] = ACTIONS(303), + [aux_sym_catch_statement_token1] = ACTIONS(305), + [aux_sym_finally_statement_token1] = ACTIONS(307), + [aux_sym_accumulate_statement_token1] = ACTIONS(309), + [anon_sym_ROUTINE_DASHLEVEL] = ACTIONS(311), + [anon_sym_BLOCK_DASHLEVEL] = ACTIONS(311), }, [215] = { - [sym_body] = STATE(3921), + [sym_body] = STATE(3859), [sym_comment] = STATE(215), - [sym_qualified_name] = STATE(4733), - [sym__block_terminator] = STATE(1450), + [sym_qualified_name] = STATE(4814), + [sym__block_terminator] = STATE(1439), [sym_include] = STATE(215), - [sym_assignment] = STATE(4314), - [sym_variable_definition] = STATE(1535), - [sym_variable_assignment] = STATE(1535), - [sym_buffer_definition] = STATE(1535), - [sym_query_definition] = STATE(1535), - [sym_function_call_statement] = STATE(1535), - [sym_function_call] = STATE(4086), - [sym_if_statement] = STATE(1535), - [sym_label] = STATE(1536), - [sym_repeat_statement] = STATE(1535), - [sym_procedure_statement] = STATE(1535), - [sym_procedure_parameter_definition] = STATE(1535), - [sym_function_statement] = STATE(1535), - [sym_return_statement] = STATE(1535), - [sym_interface_statement] = STATE(1535), - [sym_using_statement] = STATE(1535), - [sym_class_statement] = STATE(1535), - [sym_object_access] = STATE(3567), - [sym_stream_definition] = STATE(1535), - [sym_input_close_statement] = STATE(1535), - [sym_output_close_statement] = STATE(1535), - [sym__stream_statement] = STATE(1535), - [sym_input_stream_statement] = STATE(1537), - [sym_output_stream_statement] = STATE(1537), - [sym_do_block] = STATE(1535), - [sym_case_statement] = STATE(1535), - [sym_for_statement] = STATE(1535), - [sym_find_statement] = STATE(1535), - [sym_abl_statement] = STATE(1535), - [sym_assign_statement] = STATE(1535), - [sym_catch_statement] = STATE(1535), - [sym_finally_statement] = STATE(1535), - [sym_accumulate_statement] = STATE(1535), - [sym_undo_statement] = STATE(1535), - [sym_error_scope_statement] = STATE(1535), - [sym_temp_table_definition] = STATE(1535), - [sym_on_statement] = STATE(1535), - [sym__statement] = STATE(1538), - [aux_sym_source_code_repeat1] = STATE(276), - [sym_identifier] = ACTIONS(227), + [sym_assignment] = STATE(4463), + [sym_variable_definition] = STATE(1550), + [sym_variable_assignment] = STATE(1550), + [sym_buffer_definition] = STATE(1550), + [sym_query_definition] = STATE(1550), + [sym_function_call_statement] = STATE(1550), + [sym_function_call] = STATE(4558), + [sym_if_statement] = STATE(1550), + [sym_label] = STATE(1551), + [sym_repeat_statement] = STATE(1550), + [sym_procedure_statement] = STATE(1550), + [sym_procedure_parameter_definition] = STATE(1550), + [sym_function_statement] = STATE(1550), + [sym_return_statement] = STATE(1550), + [sym_interface_statement] = STATE(1550), + [sym_using_statement] = STATE(1550), + [sym_class_statement] = STATE(1550), + [sym_object_access] = STATE(3661), + [sym_stream_definition] = STATE(1550), + [sym_input_close_statement] = STATE(1550), + [sym_output_close_statement] = STATE(1550), + [sym__stream_statement] = STATE(1550), + [sym_input_stream_statement] = STATE(1552), + [sym_output_stream_statement] = STATE(1552), + [sym_do_block] = STATE(1550), + [sym_case_statement] = STATE(1550), + [sym_for_statement] = STATE(1550), + [sym_find_statement] = STATE(1550), + [sym_abl_statement] = STATE(1550), + [sym_assign_statement] = STATE(1550), + [sym_catch_statement] = STATE(1550), + [sym_finally_statement] = STATE(1550), + [sym_accumulate_statement] = STATE(1550), + [sym_undo_statement] = STATE(1550), + [sym_error_scope_statement] = STATE(1550), + [sym_temp_table_definition] = STATE(1550), + [sym_on_statement] = STATE(1550), + [sym__statement] = STATE(1553), + [aux_sym_source_code_repeat1] = STATE(286), + [sym_identifier] = ACTIONS(263), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), [anon_sym_LBRACE] = ACTIONS(7), - [aux_sym__block_terminator_token1] = ACTIONS(311), - [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), + [aux_sym__block_terminator_token1] = ACTIONS(325), + [aux_sym_input_expression_token1] = ACTIONS(267), + [aux_sym_primitive_type_token19] = ACTIONS(269), + [aux_sym_variable_definition_token1] = ACTIONS(271), + [aux_sym_variable_definition_token2] = ACTIONS(273), + [aux_sym_buffer_definition_token2] = ACTIONS(275), + [aux_sym_argument_mode_token1] = ACTIONS(277), + [aux_sym_if_statement_token1] = ACTIONS(279), + [aux_sym_repeat_statement_token1] = ACTIONS(281), + [aux_sym__procedure_terminator_token1] = ACTIONS(283), + [aux_sym_procedure_parameter_definition_token1] = ACTIONS(285), + [aux_sym__function_terminator_token1] = ACTIONS(287), + [aux_sym_interface_statement_token1] = ACTIONS(289), + [aux_sym_using_statement_token1] = ACTIONS(291), + [aux_sym_on_error_phrase_token1] = ACTIONS(293), + [aux_sym_on_error_phrase_token3] = ACTIONS(295), + [aux_sym_do_block_token1] = ACTIONS(297), + [aux_sym__case_terminator_token1] = ACTIONS(299), + [aux_sym_find_statement_token1] = ACTIONS(301), + [aux_sym_assign_statement_token1] = ACTIONS(303), + [aux_sym_catch_statement_token1] = ACTIONS(305), + [aux_sym_finally_statement_token1] = ACTIONS(307), + [aux_sym_accumulate_statement_token1] = ACTIONS(309), + [anon_sym_ROUTINE_DASHLEVEL] = ACTIONS(311), + [anon_sym_BLOCK_DASHLEVEL] = ACTIONS(311), }, [216] = { - [sym_body] = STATE(3915), + [sym_body] = STATE(3861), [sym_comment] = STATE(216), - [sym_qualified_name] = STATE(4733), - [sym__block_terminator] = STATE(1442), + [sym_qualified_name] = STATE(4814), + [sym__block_terminator] = STATE(1435), [sym_include] = STATE(216), - [sym_assignment] = STATE(4314), - [sym_variable_definition] = STATE(1535), - [sym_variable_assignment] = STATE(1535), - [sym_buffer_definition] = STATE(1535), - [sym_query_definition] = STATE(1535), - [sym_function_call_statement] = STATE(1535), - [sym_function_call] = STATE(4086), - [sym_if_statement] = STATE(1535), - [sym_label] = STATE(1536), - [sym_repeat_statement] = STATE(1535), - [sym_procedure_statement] = STATE(1535), - [sym_procedure_parameter_definition] = STATE(1535), - [sym_function_statement] = STATE(1535), - [sym_return_statement] = STATE(1535), - [sym_interface_statement] = STATE(1535), - [sym_using_statement] = STATE(1535), - [sym_class_statement] = STATE(1535), - [sym_object_access] = STATE(3567), - [sym_stream_definition] = STATE(1535), - [sym_input_close_statement] = STATE(1535), - [sym_output_close_statement] = STATE(1535), - [sym__stream_statement] = STATE(1535), - [sym_input_stream_statement] = STATE(1537), - [sym_output_stream_statement] = STATE(1537), - [sym_do_block] = STATE(1535), - [sym_case_statement] = STATE(1535), - [sym_for_statement] = STATE(1535), - [sym_find_statement] = STATE(1535), - [sym_abl_statement] = STATE(1535), - [sym_assign_statement] = STATE(1535), - [sym_catch_statement] = STATE(1535), - [sym_finally_statement] = STATE(1535), - [sym_accumulate_statement] = STATE(1535), - [sym_undo_statement] = STATE(1535), - [sym_error_scope_statement] = STATE(1535), - [sym_temp_table_definition] = STATE(1535), - [sym_on_statement] = STATE(1535), - [sym__statement] = STATE(1538), - [aux_sym_source_code_repeat1] = STATE(276), - [sym_identifier] = ACTIONS(227), + [sym_assignment] = STATE(4463), + [sym_variable_definition] = STATE(1550), + [sym_variable_assignment] = STATE(1550), + [sym_buffer_definition] = STATE(1550), + [sym_query_definition] = STATE(1550), + [sym_function_call_statement] = STATE(1550), + [sym_function_call] = STATE(4558), + [sym_if_statement] = STATE(1550), + [sym_label] = STATE(1551), + [sym_repeat_statement] = STATE(1550), + [sym_procedure_statement] = STATE(1550), + [sym_procedure_parameter_definition] = STATE(1550), + [sym_function_statement] = STATE(1550), + [sym_return_statement] = STATE(1550), + [sym_interface_statement] = STATE(1550), + [sym_using_statement] = STATE(1550), + [sym_class_statement] = STATE(1550), + [sym_object_access] = STATE(3661), + [sym_stream_definition] = STATE(1550), + [sym_input_close_statement] = STATE(1550), + [sym_output_close_statement] = STATE(1550), + [sym__stream_statement] = STATE(1550), + [sym_input_stream_statement] = STATE(1552), + [sym_output_stream_statement] = STATE(1552), + [sym_do_block] = STATE(1550), + [sym_case_statement] = STATE(1550), + [sym_for_statement] = STATE(1550), + [sym_find_statement] = STATE(1550), + [sym_abl_statement] = STATE(1550), + [sym_assign_statement] = STATE(1550), + [sym_catch_statement] = STATE(1550), + [sym_finally_statement] = STATE(1550), + [sym_accumulate_statement] = STATE(1550), + [sym_undo_statement] = STATE(1550), + [sym_error_scope_statement] = STATE(1550), + [sym_temp_table_definition] = STATE(1550), + [sym_on_statement] = STATE(1550), + [sym__statement] = STATE(1553), + [aux_sym_source_code_repeat1] = STATE(286), + [sym_identifier] = ACTIONS(263), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), [anon_sym_LBRACE] = ACTIONS(7), - [aux_sym__block_terminator_token1] = ACTIONS(311), - [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), + [aux_sym__block_terminator_token1] = ACTIONS(325), + [aux_sym_input_expression_token1] = ACTIONS(267), + [aux_sym_primitive_type_token19] = ACTIONS(269), + [aux_sym_variable_definition_token1] = ACTIONS(271), + [aux_sym_variable_definition_token2] = ACTIONS(273), + [aux_sym_buffer_definition_token2] = ACTIONS(275), + [aux_sym_argument_mode_token1] = ACTIONS(277), + [aux_sym_if_statement_token1] = ACTIONS(279), + [aux_sym_repeat_statement_token1] = ACTIONS(281), + [aux_sym__procedure_terminator_token1] = ACTIONS(283), + [aux_sym_procedure_parameter_definition_token1] = ACTIONS(285), + [aux_sym__function_terminator_token1] = ACTIONS(287), + [aux_sym_interface_statement_token1] = ACTIONS(289), + [aux_sym_using_statement_token1] = ACTIONS(291), + [aux_sym_on_error_phrase_token1] = ACTIONS(293), + [aux_sym_on_error_phrase_token3] = ACTIONS(295), + [aux_sym_do_block_token1] = ACTIONS(297), + [aux_sym__case_terminator_token1] = ACTIONS(299), + [aux_sym_find_statement_token1] = ACTIONS(301), + [aux_sym_assign_statement_token1] = ACTIONS(303), + [aux_sym_catch_statement_token1] = ACTIONS(305), + [aux_sym_finally_statement_token1] = ACTIONS(307), + [aux_sym_accumulate_statement_token1] = ACTIONS(309), + [anon_sym_ROUTINE_DASHLEVEL] = ACTIONS(311), + [anon_sym_BLOCK_DASHLEVEL] = ACTIONS(311), }, [217] = { + [sym_body] = STATE(3915), [sym_comment] = STATE(217), - [sym__logical_operator] = STATE(411), - [sym__additive_operator] = STATE(408), - [sym__multiplicative_operator] = STATE(347), - [sym__comparison_operator] = STATE(375), + [sym_qualified_name] = STATE(4814), + [sym__block_terminator] = STATE(1385), [sym_include] = STATE(217), - [anon_sym_SLASH_SLASH] = ACTIONS(59), - [anon_sym_SLASH_STAR] = ACTIONS(61), - [anon_sym_SLASH] = ACTIONS(283), - [anon_sym_LBRACE] = ACTIONS(65), - [anon_sym_STAR] = ACTIONS(285), - [sym__terminator] = ACTIONS(219), - [anon_sym_LPAREN] = ACTIONS(219), - [anon_sym_RPAREN] = ACTIONS(219), - [anon_sym_PLUS] = ACTIONS(289), - [anon_sym_DASH] = ACTIONS(289), - [anon_sym_LT] = ACTIONS(291), - [anon_sym_LT_EQ] = ACTIONS(293), - [anon_sym_LT_GT] = ACTIONS(293), - [anon_sym_EQ] = ACTIONS(293), - [anon_sym_GT] = ACTIONS(291), - [anon_sym_GT_EQ] = ACTIONS(293), - [aux_sym__comparison_operator_token1] = ACTIONS(293), - [aux_sym__comparison_operator_token2] = ACTIONS(293), - [aux_sym__comparison_operator_token3] = ACTIONS(293), - [aux_sym__comparison_operator_token4] = ACTIONS(293), - [aux_sym__comparison_operator_token5] = ACTIONS(293), - [aux_sym__comparison_operator_token6] = ACTIONS(293), - [aux_sym__comparison_operator_token7] = ACTIONS(293), - [aux_sym__comparison_operator_token8] = ACTIONS(293), - [aux_sym__comparison_operator_token9] = ACTIONS(293), - [aux_sym_variable_tuning_token1] = ACTIONS(219), - [aux_sym_variable_tuning_token2] = ACTIONS(219), - [aux_sym_variable_tuning_token3] = ACTIONS(219), - [aux_sym_variable_tuning_token4] = ACTIONS(219), - [aux_sym_variable_tuning_token5] = ACTIONS(219), - [aux_sym_variable_tuning_token6] = ACTIONS(219), - [anon_sym_COMMA] = ACTIONS(219), - [aux_sym_if_statement_token2] = ACTIONS(219), - [aux_sym_else_if_statement_token1] = ACTIONS(219), - [anon_sym_COLON] = ACTIONS(219), - [aux_sym_while_phrase_token1] = ACTIONS(219), - [aux_sym_property_tuning_token1] = ACTIONS(219), - [aux_sym_event_definition_token1] = ACTIONS(219), - [aux_sym_input_stream_tuning_token1] = ACTIONS(219), - [aux_sym_input_stream_tuning_token2] = ACTIONS(219), - [aux_sym_input_stream_tuning_token3] = ACTIONS(219), - [aux_sym_input_stream_tuning_token4] = ACTIONS(219), - [aux_sym_input_stream_tuning_token5] = ACTIONS(219), - [aux_sym_input_stream_tuning_token6] = ACTIONS(219), - [aux_sym_input_stream_tuning_token7] = ACTIONS(219), - [aux_sym_input_stream_tuning_token8] = ACTIONS(219), - [aux_sym_input_stream_tuning_token9] = ACTIONS(219), - [aux_sym_input_stream_tuning_token11] = ACTIONS(219), - [aux_sym_output_stream_tuning_token1] = ACTIONS(219), - [aux_sym_output_stream_tuning_token2] = ACTIONS(219), - [aux_sym_output_stream_tuning_token3] = ACTIONS(219), - [aux_sym_output_stream_tuning_token4] = ACTIONS(219), - [aux_sym_output_stream_tuning_token5] = ACTIONS(219), - [aux_sym_output_stream_tuning_token6] = ACTIONS(219), - [aux_sym_output_stream_tuning_token7] = ACTIONS(219), - [aux_sym_output_stream_tuning_token8] = ACTIONS(219), - [aux_sym_output_stream_statement_token1] = ACTIONS(219), - [aux_sym_on_error_phrase_token1] = ACTIONS(219), - [aux_sym_stop_after_phrase_token1] = ACTIONS(219), - [aux_sym_do_tuning_token1] = ACTIONS(219), - [anon_sym_BY] = ACTIONS(219), - [aux_sym_of_token1] = ACTIONS(219), - [aux_sym_field_definition_token1] = ACTIONS(219), - [aux_sym_index_definition_token1] = ACTIONS(219), - [aux_sym_on_statement_token1] = ACTIONS(219), - [sym__or_operator] = ACTIONS(219), - [sym__and_operator] = ACTIONS(219), + [sym_assignment] = STATE(4463), + [sym_variable_definition] = STATE(1550), + [sym_variable_assignment] = STATE(1550), + [sym_buffer_definition] = STATE(1550), + [sym_query_definition] = STATE(1550), + [sym_function_call_statement] = STATE(1550), + [sym_function_call] = STATE(4558), + [sym_if_statement] = STATE(1550), + [sym_label] = STATE(1551), + [sym_repeat_statement] = STATE(1550), + [sym_procedure_statement] = STATE(1550), + [sym_procedure_parameter_definition] = STATE(1550), + [sym_function_statement] = STATE(1550), + [sym_return_statement] = STATE(1550), + [sym_interface_statement] = STATE(1550), + [sym_using_statement] = STATE(1550), + [sym_class_statement] = STATE(1550), + [sym_object_access] = STATE(3661), + [sym_stream_definition] = STATE(1550), + [sym_input_close_statement] = STATE(1550), + [sym_output_close_statement] = STATE(1550), + [sym__stream_statement] = STATE(1550), + [sym_input_stream_statement] = STATE(1552), + [sym_output_stream_statement] = STATE(1552), + [sym_do_block] = STATE(1550), + [sym_case_statement] = STATE(1550), + [sym_for_statement] = STATE(1550), + [sym_find_statement] = STATE(1550), + [sym_abl_statement] = STATE(1550), + [sym_assign_statement] = STATE(1550), + [sym_catch_statement] = STATE(1550), + [sym_finally_statement] = STATE(1550), + [sym_accumulate_statement] = STATE(1550), + [sym_undo_statement] = STATE(1550), + [sym_error_scope_statement] = STATE(1550), + [sym_temp_table_definition] = STATE(1550), + [sym_on_statement] = STATE(1550), + [sym__statement] = STATE(1553), + [aux_sym_source_code_repeat1] = STATE(286), + [sym_identifier] = ACTIONS(263), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_LBRACE] = ACTIONS(7), + [aux_sym__block_terminator_token1] = ACTIONS(325), + [aux_sym_input_expression_token1] = ACTIONS(267), + [aux_sym_primitive_type_token19] = ACTIONS(269), + [aux_sym_variable_definition_token1] = ACTIONS(271), + [aux_sym_variable_definition_token2] = ACTIONS(273), + [aux_sym_buffer_definition_token2] = ACTIONS(275), + [aux_sym_argument_mode_token1] = ACTIONS(277), + [aux_sym_if_statement_token1] = ACTIONS(279), + [aux_sym_repeat_statement_token1] = ACTIONS(281), + [aux_sym__procedure_terminator_token1] = ACTIONS(283), + [aux_sym_procedure_parameter_definition_token1] = ACTIONS(285), + [aux_sym__function_terminator_token1] = ACTIONS(287), + [aux_sym_interface_statement_token1] = ACTIONS(289), + [aux_sym_using_statement_token1] = ACTIONS(291), + [aux_sym_on_error_phrase_token1] = ACTIONS(293), + [aux_sym_on_error_phrase_token3] = ACTIONS(295), + [aux_sym_do_block_token1] = ACTIONS(297), + [aux_sym__case_terminator_token1] = ACTIONS(299), + [aux_sym_find_statement_token1] = ACTIONS(301), + [aux_sym_assign_statement_token1] = ACTIONS(303), + [aux_sym_catch_statement_token1] = ACTIONS(305), + [aux_sym_finally_statement_token1] = ACTIONS(307), + [aux_sym_accumulate_statement_token1] = ACTIONS(309), + [anon_sym_ROUTINE_DASHLEVEL] = ACTIONS(311), + [anon_sym_BLOCK_DASHLEVEL] = ACTIONS(311), }, [218] = { - [sym_body] = STATE(4064), + [sym_body] = STATE(3918), [sym_comment] = STATE(218), - [sym_qualified_name] = STATE(4733), - [sym__block_terminator] = STATE(979), + [sym_qualified_name] = STATE(4814), + [sym__block_terminator] = STATE(1378), [sym_include] = STATE(218), - [sym_assignment] = STATE(4314), - [sym_variable_definition] = STATE(1535), - [sym_variable_assignment] = STATE(1535), - [sym_buffer_definition] = STATE(1535), - [sym_query_definition] = STATE(1535), - [sym_function_call_statement] = STATE(1535), - [sym_function_call] = STATE(4086), - [sym_if_statement] = STATE(1535), - [sym_label] = STATE(1536), - [sym_repeat_statement] = STATE(1535), - [sym_procedure_statement] = STATE(1535), - [sym_procedure_parameter_definition] = STATE(1535), - [sym_function_statement] = STATE(1535), - [sym_return_statement] = STATE(1535), - [sym_interface_statement] = STATE(1535), - [sym_using_statement] = STATE(1535), - [sym_class_statement] = STATE(1535), - [sym_object_access] = STATE(3567), - [sym_stream_definition] = STATE(1535), - [sym_input_close_statement] = STATE(1535), - [sym_output_close_statement] = STATE(1535), - [sym__stream_statement] = STATE(1535), - [sym_input_stream_statement] = STATE(1537), - [sym_output_stream_statement] = STATE(1537), - [sym_do_block] = STATE(1535), - [sym_case_statement] = STATE(1535), - [sym_for_statement] = STATE(1535), - [sym_find_statement] = STATE(1535), - [sym_abl_statement] = STATE(1535), - [sym_assign_statement] = STATE(1535), - [sym_catch_statement] = STATE(1535), - [sym_finally_statement] = STATE(1535), - [sym_accumulate_statement] = STATE(1535), - [sym_undo_statement] = STATE(1535), - [sym_error_scope_statement] = STATE(1535), - [sym_temp_table_definition] = STATE(1535), - [sym_on_statement] = STATE(1535), - [sym__statement] = STATE(1538), - [aux_sym_source_code_repeat1] = STATE(276), - [sym_identifier] = ACTIONS(227), + [sym_assignment] = STATE(4463), + [sym_variable_definition] = STATE(1550), + [sym_variable_assignment] = STATE(1550), + [sym_buffer_definition] = STATE(1550), + [sym_query_definition] = STATE(1550), + [sym_function_call_statement] = STATE(1550), + [sym_function_call] = STATE(4558), + [sym_if_statement] = STATE(1550), + [sym_label] = STATE(1551), + [sym_repeat_statement] = STATE(1550), + [sym_procedure_statement] = STATE(1550), + [sym_procedure_parameter_definition] = STATE(1550), + [sym_function_statement] = STATE(1550), + [sym_return_statement] = STATE(1550), + [sym_interface_statement] = STATE(1550), + [sym_using_statement] = STATE(1550), + [sym_class_statement] = STATE(1550), + [sym_object_access] = STATE(3661), + [sym_stream_definition] = STATE(1550), + [sym_input_close_statement] = STATE(1550), + [sym_output_close_statement] = STATE(1550), + [sym__stream_statement] = STATE(1550), + [sym_input_stream_statement] = STATE(1552), + [sym_output_stream_statement] = STATE(1552), + [sym_do_block] = STATE(1550), + [sym_case_statement] = STATE(1550), + [sym_for_statement] = STATE(1550), + [sym_find_statement] = STATE(1550), + [sym_abl_statement] = STATE(1550), + [sym_assign_statement] = STATE(1550), + [sym_catch_statement] = STATE(1550), + [sym_finally_statement] = STATE(1550), + [sym_accumulate_statement] = STATE(1550), + [sym_undo_statement] = STATE(1550), + [sym_error_scope_statement] = STATE(1550), + [sym_temp_table_definition] = STATE(1550), + [sym_on_statement] = STATE(1550), + [sym__statement] = STATE(1553), + [aux_sym_source_code_repeat1] = STATE(286), + [sym_identifier] = ACTIONS(263), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), [anon_sym_LBRACE] = ACTIONS(7), - [aux_sym__block_terminator_token1] = ACTIONS(303), - [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), + [aux_sym__block_terminator_token1] = ACTIONS(325), + [aux_sym_input_expression_token1] = ACTIONS(267), + [aux_sym_primitive_type_token19] = ACTIONS(269), + [aux_sym_variable_definition_token1] = ACTIONS(271), + [aux_sym_variable_definition_token2] = ACTIONS(273), + [aux_sym_buffer_definition_token2] = ACTIONS(275), + [aux_sym_argument_mode_token1] = ACTIONS(277), + [aux_sym_if_statement_token1] = ACTIONS(279), + [aux_sym_repeat_statement_token1] = ACTIONS(281), + [aux_sym__procedure_terminator_token1] = ACTIONS(283), + [aux_sym_procedure_parameter_definition_token1] = ACTIONS(285), + [aux_sym__function_terminator_token1] = ACTIONS(287), + [aux_sym_interface_statement_token1] = ACTIONS(289), + [aux_sym_using_statement_token1] = ACTIONS(291), + [aux_sym_on_error_phrase_token1] = ACTIONS(293), + [aux_sym_on_error_phrase_token3] = ACTIONS(295), + [aux_sym_do_block_token1] = ACTIONS(297), + [aux_sym__case_terminator_token1] = ACTIONS(299), + [aux_sym_find_statement_token1] = ACTIONS(301), + [aux_sym_assign_statement_token1] = ACTIONS(303), + [aux_sym_catch_statement_token1] = ACTIONS(305), + [aux_sym_finally_statement_token1] = ACTIONS(307), + [aux_sym_accumulate_statement_token1] = ACTIONS(309), + [anon_sym_ROUTINE_DASHLEVEL] = ACTIONS(311), + [anon_sym_BLOCK_DASHLEVEL] = ACTIONS(311), }, [219] = { - [sym_body] = STATE(3792), + [sym_body] = STATE(3958), [sym_comment] = STATE(219), - [sym_qualified_name] = STATE(4733), - [sym__block_terminator] = STATE(1481), + [sym_qualified_name] = STATE(4814), + [sym__block_terminator] = STATE(1306), [sym_include] = STATE(219), - [sym_assignment] = STATE(4314), - [sym_variable_definition] = STATE(1535), - [sym_variable_assignment] = STATE(1535), - [sym_buffer_definition] = STATE(1535), - [sym_query_definition] = STATE(1535), - [sym_function_call_statement] = STATE(1535), - [sym_function_call] = STATE(4086), - [sym_if_statement] = STATE(1535), - [sym_label] = STATE(1536), - [sym_repeat_statement] = STATE(1535), - [sym_procedure_statement] = STATE(1535), - [sym_procedure_parameter_definition] = STATE(1535), - [sym_function_statement] = STATE(1535), - [sym_return_statement] = STATE(1535), - [sym_interface_statement] = STATE(1535), - [sym_using_statement] = STATE(1535), - [sym_class_statement] = STATE(1535), - [sym_object_access] = STATE(3567), - [sym_stream_definition] = STATE(1535), - [sym_input_close_statement] = STATE(1535), - [sym_output_close_statement] = STATE(1535), - [sym__stream_statement] = STATE(1535), - [sym_input_stream_statement] = STATE(1537), - [sym_output_stream_statement] = STATE(1537), - [sym_do_block] = STATE(1535), - [sym_case_statement] = STATE(1535), - [sym_for_statement] = STATE(1535), - [sym_find_statement] = STATE(1535), - [sym_abl_statement] = STATE(1535), - [sym_assign_statement] = STATE(1535), - [sym_catch_statement] = STATE(1535), - [sym_finally_statement] = STATE(1535), - [sym_accumulate_statement] = STATE(1535), - [sym_undo_statement] = STATE(1535), - [sym_error_scope_statement] = STATE(1535), - [sym_temp_table_definition] = STATE(1535), - [sym_on_statement] = STATE(1535), - [sym__statement] = STATE(1538), - [aux_sym_source_code_repeat1] = STATE(276), - [sym_identifier] = ACTIONS(227), + [sym_assignment] = STATE(4463), + [sym_variable_definition] = STATE(1550), + [sym_variable_assignment] = STATE(1550), + [sym_buffer_definition] = STATE(1550), + [sym_query_definition] = STATE(1550), + [sym_function_call_statement] = STATE(1550), + [sym_function_call] = STATE(4558), + [sym_if_statement] = STATE(1550), + [sym_label] = STATE(1551), + [sym_repeat_statement] = STATE(1550), + [sym_procedure_statement] = STATE(1550), + [sym_procedure_parameter_definition] = STATE(1550), + [sym_function_statement] = STATE(1550), + [sym_return_statement] = STATE(1550), + [sym_interface_statement] = STATE(1550), + [sym_using_statement] = STATE(1550), + [sym_class_statement] = STATE(1550), + [sym_object_access] = STATE(3661), + [sym_stream_definition] = STATE(1550), + [sym_input_close_statement] = STATE(1550), + [sym_output_close_statement] = STATE(1550), + [sym__stream_statement] = STATE(1550), + [sym_input_stream_statement] = STATE(1552), + [sym_output_stream_statement] = STATE(1552), + [sym_do_block] = STATE(1550), + [sym_case_statement] = STATE(1550), + [sym_for_statement] = STATE(1550), + [sym_find_statement] = STATE(1550), + [sym_abl_statement] = STATE(1550), + [sym_assign_statement] = STATE(1550), + [sym_catch_statement] = STATE(1550), + [sym_finally_statement] = STATE(1550), + [sym_accumulate_statement] = STATE(1550), + [sym_undo_statement] = STATE(1550), + [sym_error_scope_statement] = STATE(1550), + [sym_temp_table_definition] = STATE(1550), + [sym_on_statement] = STATE(1550), + [sym__statement] = STATE(1553), + [aux_sym_source_code_repeat1] = STATE(286), + [sym_identifier] = ACTIONS(263), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), [anon_sym_LBRACE] = ACTIONS(7), - [aux_sym__block_terminator_token1] = ACTIONS(299), - [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), + [aux_sym__block_terminator_token1] = ACTIONS(325), + [aux_sym_input_expression_token1] = ACTIONS(267), + [aux_sym_primitive_type_token19] = ACTIONS(269), + [aux_sym_variable_definition_token1] = ACTIONS(271), + [aux_sym_variable_definition_token2] = ACTIONS(273), + [aux_sym_buffer_definition_token2] = ACTIONS(275), + [aux_sym_argument_mode_token1] = ACTIONS(277), + [aux_sym_if_statement_token1] = ACTIONS(279), + [aux_sym_repeat_statement_token1] = ACTIONS(281), + [aux_sym__procedure_terminator_token1] = ACTIONS(283), + [aux_sym_procedure_parameter_definition_token1] = ACTIONS(285), + [aux_sym__function_terminator_token1] = ACTIONS(287), + [aux_sym_interface_statement_token1] = ACTIONS(289), + [aux_sym_using_statement_token1] = ACTIONS(291), + [aux_sym_on_error_phrase_token1] = ACTIONS(293), + [aux_sym_on_error_phrase_token3] = ACTIONS(295), + [aux_sym_do_block_token1] = ACTIONS(297), + [aux_sym__case_terminator_token1] = ACTIONS(299), + [aux_sym_find_statement_token1] = ACTIONS(301), + [aux_sym_assign_statement_token1] = ACTIONS(303), + [aux_sym_catch_statement_token1] = ACTIONS(305), + [aux_sym_finally_statement_token1] = ACTIONS(307), + [aux_sym_accumulate_statement_token1] = ACTIONS(309), + [anon_sym_ROUTINE_DASHLEVEL] = ACTIONS(311), + [anon_sym_BLOCK_DASHLEVEL] = ACTIONS(311), }, [220] = { - [sym_body] = STATE(3909), + [sym_body] = STATE(3961), [sym_comment] = STATE(220), - [sym_qualified_name] = STATE(4733), - [sym__block_terminator] = STATE(1435), + [sym_qualified_name] = STATE(4814), + [sym__block_terminator] = STATE(1315), [sym_include] = STATE(220), - [sym_assignment] = STATE(4314), - [sym_variable_definition] = STATE(1535), - [sym_variable_assignment] = STATE(1535), - [sym_buffer_definition] = STATE(1535), - [sym_query_definition] = STATE(1535), - [sym_function_call_statement] = STATE(1535), - [sym_function_call] = STATE(4086), - [sym_if_statement] = STATE(1535), - [sym_label] = STATE(1536), - [sym_repeat_statement] = STATE(1535), - [sym_procedure_statement] = STATE(1535), - [sym_procedure_parameter_definition] = STATE(1535), - [sym_function_statement] = STATE(1535), - [sym_return_statement] = STATE(1535), - [sym_interface_statement] = STATE(1535), - [sym_using_statement] = STATE(1535), - [sym_class_statement] = STATE(1535), - [sym_object_access] = STATE(3567), - [sym_stream_definition] = STATE(1535), - [sym_input_close_statement] = STATE(1535), - [sym_output_close_statement] = STATE(1535), - [sym__stream_statement] = STATE(1535), - [sym_input_stream_statement] = STATE(1537), - [sym_output_stream_statement] = STATE(1537), - [sym_do_block] = STATE(1535), - [sym_case_statement] = STATE(1535), - [sym_for_statement] = STATE(1535), - [sym_find_statement] = STATE(1535), - [sym_abl_statement] = STATE(1535), - [sym_assign_statement] = STATE(1535), - [sym_catch_statement] = STATE(1535), - [sym_finally_statement] = STATE(1535), - [sym_accumulate_statement] = STATE(1535), - [sym_undo_statement] = STATE(1535), - [sym_error_scope_statement] = STATE(1535), - [sym_temp_table_definition] = STATE(1535), - [sym_on_statement] = STATE(1535), - [sym__statement] = STATE(1538), - [aux_sym_source_code_repeat1] = STATE(276), - [sym_identifier] = ACTIONS(227), + [sym_assignment] = STATE(4463), + [sym_variable_definition] = STATE(1550), + [sym_variable_assignment] = STATE(1550), + [sym_buffer_definition] = STATE(1550), + [sym_query_definition] = STATE(1550), + [sym_function_call_statement] = STATE(1550), + [sym_function_call] = STATE(4558), + [sym_if_statement] = STATE(1550), + [sym_label] = STATE(1551), + [sym_repeat_statement] = STATE(1550), + [sym_procedure_statement] = STATE(1550), + [sym_procedure_parameter_definition] = STATE(1550), + [sym_function_statement] = STATE(1550), + [sym_return_statement] = STATE(1550), + [sym_interface_statement] = STATE(1550), + [sym_using_statement] = STATE(1550), + [sym_class_statement] = STATE(1550), + [sym_object_access] = STATE(3661), + [sym_stream_definition] = STATE(1550), + [sym_input_close_statement] = STATE(1550), + [sym_output_close_statement] = STATE(1550), + [sym__stream_statement] = STATE(1550), + [sym_input_stream_statement] = STATE(1552), + [sym_output_stream_statement] = STATE(1552), + [sym_do_block] = STATE(1550), + [sym_case_statement] = STATE(1550), + [sym_for_statement] = STATE(1550), + [sym_find_statement] = STATE(1550), + [sym_abl_statement] = STATE(1550), + [sym_assign_statement] = STATE(1550), + [sym_catch_statement] = STATE(1550), + [sym_finally_statement] = STATE(1550), + [sym_accumulate_statement] = STATE(1550), + [sym_undo_statement] = STATE(1550), + [sym_error_scope_statement] = STATE(1550), + [sym_temp_table_definition] = STATE(1550), + [sym_on_statement] = STATE(1550), + [sym__statement] = STATE(1553), + [aux_sym_source_code_repeat1] = STATE(286), + [sym_identifier] = ACTIONS(263), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), [anon_sym_LBRACE] = ACTIONS(7), - [aux_sym__block_terminator_token1] = ACTIONS(311), - [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), + [aux_sym__block_terminator_token1] = ACTIONS(325), + [aux_sym_input_expression_token1] = ACTIONS(267), + [aux_sym_primitive_type_token19] = ACTIONS(269), + [aux_sym_variable_definition_token1] = ACTIONS(271), + [aux_sym_variable_definition_token2] = ACTIONS(273), + [aux_sym_buffer_definition_token2] = ACTIONS(275), + [aux_sym_argument_mode_token1] = ACTIONS(277), + [aux_sym_if_statement_token1] = ACTIONS(279), + [aux_sym_repeat_statement_token1] = ACTIONS(281), + [aux_sym__procedure_terminator_token1] = ACTIONS(283), + [aux_sym_procedure_parameter_definition_token1] = ACTIONS(285), + [aux_sym__function_terminator_token1] = ACTIONS(287), + [aux_sym_interface_statement_token1] = ACTIONS(289), + [aux_sym_using_statement_token1] = ACTIONS(291), + [aux_sym_on_error_phrase_token1] = ACTIONS(293), + [aux_sym_on_error_phrase_token3] = ACTIONS(295), + [aux_sym_do_block_token1] = ACTIONS(297), + [aux_sym__case_terminator_token1] = ACTIONS(299), + [aux_sym_find_statement_token1] = ACTIONS(301), + [aux_sym_assign_statement_token1] = ACTIONS(303), + [aux_sym_catch_statement_token1] = ACTIONS(305), + [aux_sym_finally_statement_token1] = ACTIONS(307), + [aux_sym_accumulate_statement_token1] = ACTIONS(309), + [anon_sym_ROUTINE_DASHLEVEL] = ACTIONS(311), + [anon_sym_BLOCK_DASHLEVEL] = ACTIONS(311), }, [221] = { - [sym_body] = STATE(3798), + [sym_body] = STATE(3970), [sym_comment] = STATE(221), - [sym_qualified_name] = STATE(4733), - [sym__block_terminator] = STATE(3459), + [sym_qualified_name] = STATE(4814), + [sym__block_terminator] = STATE(1300), [sym_include] = STATE(221), - [sym_assignment] = STATE(4314), - [sym_variable_definition] = STATE(1535), - [sym_variable_assignment] = STATE(1535), - [sym_buffer_definition] = STATE(1535), - [sym_query_definition] = STATE(1535), - [sym_function_call_statement] = STATE(1535), - [sym_function_call] = STATE(4086), - [sym_if_statement] = STATE(1535), - [sym_label] = STATE(1536), - [sym_repeat_statement] = STATE(1535), - [sym_procedure_statement] = STATE(1535), - [sym_procedure_parameter_definition] = STATE(1535), - [sym_function_statement] = STATE(1535), - [sym_return_statement] = STATE(1535), - [sym_interface_statement] = STATE(1535), - [sym_using_statement] = STATE(1535), - [sym_class_statement] = STATE(1535), - [sym_object_access] = STATE(3567), - [sym_stream_definition] = STATE(1535), - [sym_input_close_statement] = STATE(1535), - [sym_output_close_statement] = STATE(1535), - [sym__stream_statement] = STATE(1535), - [sym_input_stream_statement] = STATE(1537), - [sym_output_stream_statement] = STATE(1537), - [sym_do_block] = STATE(1535), - [sym_case_statement] = STATE(1535), - [sym_for_statement] = STATE(1535), - [sym_find_statement] = STATE(1535), - [sym_abl_statement] = STATE(1535), - [sym_assign_statement] = STATE(1535), - [sym_catch_statement] = STATE(1535), - [sym_finally_statement] = STATE(1535), - [sym_accumulate_statement] = STATE(1535), - [sym_undo_statement] = STATE(1535), - [sym_error_scope_statement] = STATE(1535), - [sym_temp_table_definition] = STATE(1535), - [sym_on_statement] = STATE(1535), - [sym__statement] = STATE(1538), - [aux_sym_source_code_repeat1] = STATE(276), - [sym_identifier] = ACTIONS(227), + [sym_assignment] = STATE(4463), + [sym_variable_definition] = STATE(1550), + [sym_variable_assignment] = STATE(1550), + [sym_buffer_definition] = STATE(1550), + [sym_query_definition] = STATE(1550), + [sym_function_call_statement] = STATE(1550), + [sym_function_call] = STATE(4558), + [sym_if_statement] = STATE(1550), + [sym_label] = STATE(1551), + [sym_repeat_statement] = STATE(1550), + [sym_procedure_statement] = STATE(1550), + [sym_procedure_parameter_definition] = STATE(1550), + [sym_function_statement] = STATE(1550), + [sym_return_statement] = STATE(1550), + [sym_interface_statement] = STATE(1550), + [sym_using_statement] = STATE(1550), + [sym_class_statement] = STATE(1550), + [sym_object_access] = STATE(3661), + [sym_stream_definition] = STATE(1550), + [sym_input_close_statement] = STATE(1550), + [sym_output_close_statement] = STATE(1550), + [sym__stream_statement] = STATE(1550), + [sym_input_stream_statement] = STATE(1552), + [sym_output_stream_statement] = STATE(1552), + [sym_do_block] = STATE(1550), + [sym_case_statement] = STATE(1550), + [sym_for_statement] = STATE(1550), + [sym_find_statement] = STATE(1550), + [sym_abl_statement] = STATE(1550), + [sym_assign_statement] = STATE(1550), + [sym_catch_statement] = STATE(1550), + [sym_finally_statement] = STATE(1550), + [sym_accumulate_statement] = STATE(1550), + [sym_undo_statement] = STATE(1550), + [sym_error_scope_statement] = STATE(1550), + [sym_temp_table_definition] = STATE(1550), + [sym_on_statement] = STATE(1550), + [sym__statement] = STATE(1553), + [aux_sym_source_code_repeat1] = STATE(286), + [sym_identifier] = ACTIONS(263), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), [anon_sym_LBRACE] = ACTIONS(7), - [aux_sym__block_terminator_token1] = ACTIONS(297), - [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), + [aux_sym__block_terminator_token1] = ACTIONS(325), + [aux_sym_input_expression_token1] = ACTIONS(267), + [aux_sym_primitive_type_token19] = ACTIONS(269), + [aux_sym_variable_definition_token1] = ACTIONS(271), + [aux_sym_variable_definition_token2] = ACTIONS(273), + [aux_sym_buffer_definition_token2] = ACTIONS(275), + [aux_sym_argument_mode_token1] = ACTIONS(277), + [aux_sym_if_statement_token1] = ACTIONS(279), + [aux_sym_repeat_statement_token1] = ACTIONS(281), + [aux_sym__procedure_terminator_token1] = ACTIONS(283), + [aux_sym_procedure_parameter_definition_token1] = ACTIONS(285), + [aux_sym__function_terminator_token1] = ACTIONS(287), + [aux_sym_interface_statement_token1] = ACTIONS(289), + [aux_sym_using_statement_token1] = ACTIONS(291), + [aux_sym_on_error_phrase_token1] = ACTIONS(293), + [aux_sym_on_error_phrase_token3] = ACTIONS(295), + [aux_sym_do_block_token1] = ACTIONS(297), + [aux_sym__case_terminator_token1] = ACTIONS(299), + [aux_sym_find_statement_token1] = ACTIONS(301), + [aux_sym_assign_statement_token1] = ACTIONS(303), + [aux_sym_catch_statement_token1] = ACTIONS(305), + [aux_sym_finally_statement_token1] = ACTIONS(307), + [aux_sym_accumulate_statement_token1] = ACTIONS(309), + [anon_sym_ROUTINE_DASHLEVEL] = ACTIONS(311), + [anon_sym_BLOCK_DASHLEVEL] = ACTIONS(311), }, [222] = { - [sym_body] = STATE(3906), + [sym_body] = STATE(4011), [sym_comment] = STATE(222), - [sym_qualified_name] = STATE(4733), - [sym__block_terminator] = STATE(1429), + [sym_qualified_name] = STATE(4814), + [sym__block_terminator] = STATE(1223), [sym_include] = STATE(222), - [sym_assignment] = STATE(4314), - [sym_variable_definition] = STATE(1535), - [sym_variable_assignment] = STATE(1535), - [sym_buffer_definition] = STATE(1535), - [sym_query_definition] = STATE(1535), - [sym_function_call_statement] = STATE(1535), - [sym_function_call] = STATE(4086), - [sym_if_statement] = STATE(1535), - [sym_label] = STATE(1536), - [sym_repeat_statement] = STATE(1535), - [sym_procedure_statement] = STATE(1535), - [sym_procedure_parameter_definition] = STATE(1535), - [sym_function_statement] = STATE(1535), - [sym_return_statement] = STATE(1535), - [sym_interface_statement] = STATE(1535), - [sym_using_statement] = STATE(1535), - [sym_class_statement] = STATE(1535), - [sym_object_access] = STATE(3567), - [sym_stream_definition] = STATE(1535), - [sym_input_close_statement] = STATE(1535), - [sym_output_close_statement] = STATE(1535), - [sym__stream_statement] = STATE(1535), - [sym_input_stream_statement] = STATE(1537), - [sym_output_stream_statement] = STATE(1537), - [sym_do_block] = STATE(1535), - [sym_case_statement] = STATE(1535), - [sym_for_statement] = STATE(1535), - [sym_find_statement] = STATE(1535), - [sym_abl_statement] = STATE(1535), - [sym_assign_statement] = STATE(1535), - [sym_catch_statement] = STATE(1535), - [sym_finally_statement] = STATE(1535), - [sym_accumulate_statement] = STATE(1535), - [sym_undo_statement] = STATE(1535), - [sym_error_scope_statement] = STATE(1535), - [sym_temp_table_definition] = STATE(1535), - [sym_on_statement] = STATE(1535), - [sym__statement] = STATE(1538), - [aux_sym_source_code_repeat1] = STATE(276), - [sym_identifier] = ACTIONS(227), + [sym_assignment] = STATE(4463), + [sym_variable_definition] = STATE(1550), + [sym_variable_assignment] = STATE(1550), + [sym_buffer_definition] = STATE(1550), + [sym_query_definition] = STATE(1550), + [sym_function_call_statement] = STATE(1550), + [sym_function_call] = STATE(4558), + [sym_if_statement] = STATE(1550), + [sym_label] = STATE(1551), + [sym_repeat_statement] = STATE(1550), + [sym_procedure_statement] = STATE(1550), + [sym_procedure_parameter_definition] = STATE(1550), + [sym_function_statement] = STATE(1550), + [sym_return_statement] = STATE(1550), + [sym_interface_statement] = STATE(1550), + [sym_using_statement] = STATE(1550), + [sym_class_statement] = STATE(1550), + [sym_object_access] = STATE(3661), + [sym_stream_definition] = STATE(1550), + [sym_input_close_statement] = STATE(1550), + [sym_output_close_statement] = STATE(1550), + [sym__stream_statement] = STATE(1550), + [sym_input_stream_statement] = STATE(1552), + [sym_output_stream_statement] = STATE(1552), + [sym_do_block] = STATE(1550), + [sym_case_statement] = STATE(1550), + [sym_for_statement] = STATE(1550), + [sym_find_statement] = STATE(1550), + [sym_abl_statement] = STATE(1550), + [sym_assign_statement] = STATE(1550), + [sym_catch_statement] = STATE(1550), + [sym_finally_statement] = STATE(1550), + [sym_accumulate_statement] = STATE(1550), + [sym_undo_statement] = STATE(1550), + [sym_error_scope_statement] = STATE(1550), + [sym_temp_table_definition] = STATE(1550), + [sym_on_statement] = STATE(1550), + [sym__statement] = STATE(1553), + [aux_sym_source_code_repeat1] = STATE(286), + [sym_identifier] = ACTIONS(263), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), [anon_sym_LBRACE] = ACTIONS(7), - [aux_sym__block_terminator_token1] = ACTIONS(311), - [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), + [aux_sym__block_terminator_token1] = ACTIONS(325), + [aux_sym_input_expression_token1] = ACTIONS(267), + [aux_sym_primitive_type_token19] = ACTIONS(269), + [aux_sym_variable_definition_token1] = ACTIONS(271), + [aux_sym_variable_definition_token2] = ACTIONS(273), + [aux_sym_buffer_definition_token2] = ACTIONS(275), + [aux_sym_argument_mode_token1] = ACTIONS(277), + [aux_sym_if_statement_token1] = ACTIONS(279), + [aux_sym_repeat_statement_token1] = ACTIONS(281), + [aux_sym__procedure_terminator_token1] = ACTIONS(283), + [aux_sym_procedure_parameter_definition_token1] = ACTIONS(285), + [aux_sym__function_terminator_token1] = ACTIONS(287), + [aux_sym_interface_statement_token1] = ACTIONS(289), + [aux_sym_using_statement_token1] = ACTIONS(291), + [aux_sym_on_error_phrase_token1] = ACTIONS(293), + [aux_sym_on_error_phrase_token3] = ACTIONS(295), + [aux_sym_do_block_token1] = ACTIONS(297), + [aux_sym__case_terminator_token1] = ACTIONS(299), + [aux_sym_find_statement_token1] = ACTIONS(301), + [aux_sym_assign_statement_token1] = ACTIONS(303), + [aux_sym_catch_statement_token1] = ACTIONS(305), + [aux_sym_finally_statement_token1] = ACTIONS(307), + [aux_sym_accumulate_statement_token1] = ACTIONS(309), + [anon_sym_ROUTINE_DASHLEVEL] = ACTIONS(311), + [anon_sym_BLOCK_DASHLEVEL] = ACTIONS(311), }, [223] = { - [sym_body] = STATE(3916), + [sym_body] = STATE(4022), [sym_comment] = STATE(223), - [sym_qualified_name] = STATE(4733), - [sym__block_terminator] = STATE(985), + [sym_qualified_name] = STATE(4814), + [sym__block_terminator] = STATE(1227), [sym_include] = STATE(223), - [sym_assignment] = STATE(4314), - [sym_variable_definition] = STATE(1535), - [sym_variable_assignment] = STATE(1535), - [sym_buffer_definition] = STATE(1535), - [sym_query_definition] = STATE(1535), - [sym_function_call_statement] = STATE(1535), - [sym_function_call] = STATE(4086), - [sym_if_statement] = STATE(1535), - [sym_label] = STATE(1536), - [sym_repeat_statement] = STATE(1535), - [sym_procedure_statement] = STATE(1535), - [sym_procedure_parameter_definition] = STATE(1535), - [sym_function_statement] = STATE(1535), - [sym_return_statement] = STATE(1535), - [sym_interface_statement] = STATE(1535), - [sym_using_statement] = STATE(1535), - [sym_class_statement] = STATE(1535), - [sym_object_access] = STATE(3567), - [sym_stream_definition] = STATE(1535), - [sym_input_close_statement] = STATE(1535), - [sym_output_close_statement] = STATE(1535), - [sym__stream_statement] = STATE(1535), - [sym_input_stream_statement] = STATE(1537), - [sym_output_stream_statement] = STATE(1537), - [sym_do_block] = STATE(1535), - [sym_case_statement] = STATE(1535), - [sym_for_statement] = STATE(1535), - [sym_find_statement] = STATE(1535), - [sym_abl_statement] = STATE(1535), - [sym_assign_statement] = STATE(1535), - [sym_catch_statement] = STATE(1535), - [sym_finally_statement] = STATE(1535), - [sym_accumulate_statement] = STATE(1535), - [sym_undo_statement] = STATE(1535), - [sym_error_scope_statement] = STATE(1535), - [sym_temp_table_definition] = STATE(1535), - [sym_on_statement] = STATE(1535), - [sym__statement] = STATE(1538), - [aux_sym_source_code_repeat1] = STATE(276), - [sym_identifier] = ACTIONS(227), + [sym_assignment] = STATE(4463), + [sym_variable_definition] = STATE(1550), + [sym_variable_assignment] = STATE(1550), + [sym_buffer_definition] = STATE(1550), + [sym_query_definition] = STATE(1550), + [sym_function_call_statement] = STATE(1550), + [sym_function_call] = STATE(4558), + [sym_if_statement] = STATE(1550), + [sym_label] = STATE(1551), + [sym_repeat_statement] = STATE(1550), + [sym_procedure_statement] = STATE(1550), + [sym_procedure_parameter_definition] = STATE(1550), + [sym_function_statement] = STATE(1550), + [sym_return_statement] = STATE(1550), + [sym_interface_statement] = STATE(1550), + [sym_using_statement] = STATE(1550), + [sym_class_statement] = STATE(1550), + [sym_object_access] = STATE(3661), + [sym_stream_definition] = STATE(1550), + [sym_input_close_statement] = STATE(1550), + [sym_output_close_statement] = STATE(1550), + [sym__stream_statement] = STATE(1550), + [sym_input_stream_statement] = STATE(1552), + [sym_output_stream_statement] = STATE(1552), + [sym_do_block] = STATE(1550), + [sym_case_statement] = STATE(1550), + [sym_for_statement] = STATE(1550), + [sym_find_statement] = STATE(1550), + [sym_abl_statement] = STATE(1550), + [sym_assign_statement] = STATE(1550), + [sym_catch_statement] = STATE(1550), + [sym_finally_statement] = STATE(1550), + [sym_accumulate_statement] = STATE(1550), + [sym_undo_statement] = STATE(1550), + [sym_error_scope_statement] = STATE(1550), + [sym_temp_table_definition] = STATE(1550), + [sym_on_statement] = STATE(1550), + [sym__statement] = STATE(1553), + [aux_sym_source_code_repeat1] = STATE(286), + [sym_identifier] = ACTIONS(263), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), [anon_sym_LBRACE] = ACTIONS(7), - [aux_sym__block_terminator_token1] = ACTIONS(303), - [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), + [aux_sym__block_terminator_token1] = ACTIONS(325), + [aux_sym_input_expression_token1] = ACTIONS(267), + [aux_sym_primitive_type_token19] = ACTIONS(269), + [aux_sym_variable_definition_token1] = ACTIONS(271), + [aux_sym_variable_definition_token2] = ACTIONS(273), + [aux_sym_buffer_definition_token2] = ACTIONS(275), + [aux_sym_argument_mode_token1] = ACTIONS(277), + [aux_sym_if_statement_token1] = ACTIONS(279), + [aux_sym_repeat_statement_token1] = ACTIONS(281), + [aux_sym__procedure_terminator_token1] = ACTIONS(283), + [aux_sym_procedure_parameter_definition_token1] = ACTIONS(285), + [aux_sym__function_terminator_token1] = ACTIONS(287), + [aux_sym_interface_statement_token1] = ACTIONS(289), + [aux_sym_using_statement_token1] = ACTIONS(291), + [aux_sym_on_error_phrase_token1] = ACTIONS(293), + [aux_sym_on_error_phrase_token3] = ACTIONS(295), + [aux_sym_do_block_token1] = ACTIONS(297), + [aux_sym__case_terminator_token1] = ACTIONS(299), + [aux_sym_find_statement_token1] = ACTIONS(301), + [aux_sym_assign_statement_token1] = ACTIONS(303), + [aux_sym_catch_statement_token1] = ACTIONS(305), + [aux_sym_finally_statement_token1] = ACTIONS(307), + [aux_sym_accumulate_statement_token1] = ACTIONS(309), + [anon_sym_ROUTINE_DASHLEVEL] = ACTIONS(311), + [anon_sym_BLOCK_DASHLEVEL] = ACTIONS(311), }, [224] = { - [sym_body] = STATE(3905), + [sym_body] = STATE(4031), [sym_comment] = STATE(224), - [sym_qualified_name] = STATE(4733), - [sym__block_terminator] = STATE(1419), + [sym_qualified_name] = STATE(4814), + [sym__block_terminator] = STATE(1211), [sym_include] = STATE(224), - [sym_assignment] = STATE(4314), - [sym_variable_definition] = STATE(1535), - [sym_variable_assignment] = STATE(1535), - [sym_buffer_definition] = STATE(1535), - [sym_query_definition] = STATE(1535), - [sym_function_call_statement] = STATE(1535), - [sym_function_call] = STATE(4086), - [sym_if_statement] = STATE(1535), - [sym_label] = STATE(1536), - [sym_repeat_statement] = STATE(1535), - [sym_procedure_statement] = STATE(1535), - [sym_procedure_parameter_definition] = STATE(1535), - [sym_function_statement] = STATE(1535), - [sym_return_statement] = STATE(1535), - [sym_interface_statement] = STATE(1535), - [sym_using_statement] = STATE(1535), - [sym_class_statement] = STATE(1535), - [sym_object_access] = STATE(3567), - [sym_stream_definition] = STATE(1535), - [sym_input_close_statement] = STATE(1535), - [sym_output_close_statement] = STATE(1535), - [sym__stream_statement] = STATE(1535), - [sym_input_stream_statement] = STATE(1537), - [sym_output_stream_statement] = STATE(1537), - [sym_do_block] = STATE(1535), - [sym_case_statement] = STATE(1535), - [sym_for_statement] = STATE(1535), - [sym_find_statement] = STATE(1535), - [sym_abl_statement] = STATE(1535), - [sym_assign_statement] = STATE(1535), - [sym_catch_statement] = STATE(1535), - [sym_finally_statement] = STATE(1535), - [sym_accumulate_statement] = STATE(1535), - [sym_undo_statement] = STATE(1535), - [sym_error_scope_statement] = STATE(1535), - [sym_temp_table_definition] = STATE(1535), - [sym_on_statement] = STATE(1535), - [sym__statement] = STATE(1538), - [aux_sym_source_code_repeat1] = STATE(276), - [sym_identifier] = ACTIONS(227), + [sym_assignment] = STATE(4463), + [sym_variable_definition] = STATE(1550), + [sym_variable_assignment] = STATE(1550), + [sym_buffer_definition] = STATE(1550), + [sym_query_definition] = STATE(1550), + [sym_function_call_statement] = STATE(1550), + [sym_function_call] = STATE(4558), + [sym_if_statement] = STATE(1550), + [sym_label] = STATE(1551), + [sym_repeat_statement] = STATE(1550), + [sym_procedure_statement] = STATE(1550), + [sym_procedure_parameter_definition] = STATE(1550), + [sym_function_statement] = STATE(1550), + [sym_return_statement] = STATE(1550), + [sym_interface_statement] = STATE(1550), + [sym_using_statement] = STATE(1550), + [sym_class_statement] = STATE(1550), + [sym_object_access] = STATE(3661), + [sym_stream_definition] = STATE(1550), + [sym_input_close_statement] = STATE(1550), + [sym_output_close_statement] = STATE(1550), + [sym__stream_statement] = STATE(1550), + [sym_input_stream_statement] = STATE(1552), + [sym_output_stream_statement] = STATE(1552), + [sym_do_block] = STATE(1550), + [sym_case_statement] = STATE(1550), + [sym_for_statement] = STATE(1550), + [sym_find_statement] = STATE(1550), + [sym_abl_statement] = STATE(1550), + [sym_assign_statement] = STATE(1550), + [sym_catch_statement] = STATE(1550), + [sym_finally_statement] = STATE(1550), + [sym_accumulate_statement] = STATE(1550), + [sym_undo_statement] = STATE(1550), + [sym_error_scope_statement] = STATE(1550), + [sym_temp_table_definition] = STATE(1550), + [sym_on_statement] = STATE(1550), + [sym__statement] = STATE(1553), + [aux_sym_source_code_repeat1] = STATE(286), + [sym_identifier] = ACTIONS(263), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), [anon_sym_LBRACE] = ACTIONS(7), - [aux_sym__block_terminator_token1] = ACTIONS(311), - [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), + [aux_sym__block_terminator_token1] = ACTIONS(325), + [aux_sym_input_expression_token1] = ACTIONS(267), + [aux_sym_primitive_type_token19] = ACTIONS(269), + [aux_sym_variable_definition_token1] = ACTIONS(271), + [aux_sym_variable_definition_token2] = ACTIONS(273), + [aux_sym_buffer_definition_token2] = ACTIONS(275), + [aux_sym_argument_mode_token1] = ACTIONS(277), + [aux_sym_if_statement_token1] = ACTIONS(279), + [aux_sym_repeat_statement_token1] = ACTIONS(281), + [aux_sym__procedure_terminator_token1] = ACTIONS(283), + [aux_sym_procedure_parameter_definition_token1] = ACTIONS(285), + [aux_sym__function_terminator_token1] = ACTIONS(287), + [aux_sym_interface_statement_token1] = ACTIONS(289), + [aux_sym_using_statement_token1] = ACTIONS(291), + [aux_sym_on_error_phrase_token1] = ACTIONS(293), + [aux_sym_on_error_phrase_token3] = ACTIONS(295), + [aux_sym_do_block_token1] = ACTIONS(297), + [aux_sym__case_terminator_token1] = ACTIONS(299), + [aux_sym_find_statement_token1] = ACTIONS(301), + [aux_sym_assign_statement_token1] = ACTIONS(303), + [aux_sym_catch_statement_token1] = ACTIONS(305), + [aux_sym_finally_statement_token1] = ACTIONS(307), + [aux_sym_accumulate_statement_token1] = ACTIONS(309), + [anon_sym_ROUTINE_DASHLEVEL] = ACTIONS(311), + [anon_sym_BLOCK_DASHLEVEL] = ACTIONS(311), }, [225] = { - [sym_body] = STATE(3569), + [sym_body] = STATE(4038), [sym_comment] = STATE(225), - [sym_qualified_name] = STATE(4733), - [sym__block_terminator] = STATE(1086), + [sym_qualified_name] = STATE(4814), + [sym__block_terminator] = STATE(1203), [sym_include] = STATE(225), - [sym_assignment] = STATE(4314), - [sym_variable_definition] = STATE(1535), - [sym_variable_assignment] = STATE(1535), - [sym_buffer_definition] = STATE(1535), - [sym_query_definition] = STATE(1535), - [sym_function_call_statement] = STATE(1535), - [sym_function_call] = STATE(4086), - [sym_if_statement] = STATE(1535), - [sym_label] = STATE(1536), - [sym_repeat_statement] = STATE(1535), - [sym_procedure_statement] = STATE(1535), - [sym_procedure_parameter_definition] = STATE(1535), - [sym_function_statement] = STATE(1535), - [sym_return_statement] = STATE(1535), - [sym_interface_statement] = STATE(1535), - [sym_using_statement] = STATE(1535), - [sym_class_statement] = STATE(1535), - [sym_object_access] = STATE(3567), - [sym_stream_definition] = STATE(1535), - [sym_input_close_statement] = STATE(1535), - [sym_output_close_statement] = STATE(1535), - [sym__stream_statement] = STATE(1535), - [sym_input_stream_statement] = STATE(1537), - [sym_output_stream_statement] = STATE(1537), - [sym_do_block] = STATE(1535), - [sym_case_statement] = STATE(1535), - [sym_for_statement] = STATE(1535), - [sym_find_statement] = STATE(1535), - [sym_abl_statement] = STATE(1535), - [sym_assign_statement] = STATE(1535), - [sym_catch_statement] = STATE(1535), - [sym_finally_statement] = STATE(1535), - [sym_accumulate_statement] = STATE(1535), - [sym_undo_statement] = STATE(1535), - [sym_error_scope_statement] = STATE(1535), - [sym_temp_table_definition] = STATE(1535), - [sym_on_statement] = STATE(1535), - [sym__statement] = STATE(1538), - [aux_sym_source_code_repeat1] = STATE(276), - [sym_identifier] = ACTIONS(227), + [sym_assignment] = STATE(4463), + [sym_variable_definition] = STATE(1550), + [sym_variable_assignment] = STATE(1550), + [sym_buffer_definition] = STATE(1550), + [sym_query_definition] = STATE(1550), + [sym_function_call_statement] = STATE(1550), + [sym_function_call] = STATE(4558), + [sym_if_statement] = STATE(1550), + [sym_label] = STATE(1551), + [sym_repeat_statement] = STATE(1550), + [sym_procedure_statement] = STATE(1550), + [sym_procedure_parameter_definition] = STATE(1550), + [sym_function_statement] = STATE(1550), + [sym_return_statement] = STATE(1550), + [sym_interface_statement] = STATE(1550), + [sym_using_statement] = STATE(1550), + [sym_class_statement] = STATE(1550), + [sym_object_access] = STATE(3661), + [sym_stream_definition] = STATE(1550), + [sym_input_close_statement] = STATE(1550), + [sym_output_close_statement] = STATE(1550), + [sym__stream_statement] = STATE(1550), + [sym_input_stream_statement] = STATE(1552), + [sym_output_stream_statement] = STATE(1552), + [sym_do_block] = STATE(1550), + [sym_case_statement] = STATE(1550), + [sym_for_statement] = STATE(1550), + [sym_find_statement] = STATE(1550), + [sym_abl_statement] = STATE(1550), + [sym_assign_statement] = STATE(1550), + [sym_catch_statement] = STATE(1550), + [sym_finally_statement] = STATE(1550), + [sym_accumulate_statement] = STATE(1550), + [sym_undo_statement] = STATE(1550), + [sym_error_scope_statement] = STATE(1550), + [sym_temp_table_definition] = STATE(1550), + [sym_on_statement] = STATE(1550), + [sym__statement] = STATE(1553), + [aux_sym_source_code_repeat1] = STATE(286), + [sym_identifier] = ACTIONS(263), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), [anon_sym_LBRACE] = ACTIONS(7), - [aux_sym__block_terminator_token1] = ACTIONS(301), - [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), + [aux_sym__block_terminator_token1] = ACTIONS(325), + [aux_sym_input_expression_token1] = ACTIONS(267), + [aux_sym_primitive_type_token19] = ACTIONS(269), + [aux_sym_variable_definition_token1] = ACTIONS(271), + [aux_sym_variable_definition_token2] = ACTIONS(273), + [aux_sym_buffer_definition_token2] = ACTIONS(275), + [aux_sym_argument_mode_token1] = ACTIONS(277), + [aux_sym_if_statement_token1] = ACTIONS(279), + [aux_sym_repeat_statement_token1] = ACTIONS(281), + [aux_sym__procedure_terminator_token1] = ACTIONS(283), + [aux_sym_procedure_parameter_definition_token1] = ACTIONS(285), + [aux_sym__function_terminator_token1] = ACTIONS(287), + [aux_sym_interface_statement_token1] = ACTIONS(289), + [aux_sym_using_statement_token1] = ACTIONS(291), + [aux_sym_on_error_phrase_token1] = ACTIONS(293), + [aux_sym_on_error_phrase_token3] = ACTIONS(295), + [aux_sym_do_block_token1] = ACTIONS(297), + [aux_sym__case_terminator_token1] = ACTIONS(299), + [aux_sym_find_statement_token1] = ACTIONS(301), + [aux_sym_assign_statement_token1] = ACTIONS(303), + [aux_sym_catch_statement_token1] = ACTIONS(305), + [aux_sym_finally_statement_token1] = ACTIONS(307), + [aux_sym_accumulate_statement_token1] = ACTIONS(309), + [anon_sym_ROUTINE_DASHLEVEL] = ACTIONS(311), + [anon_sym_BLOCK_DASHLEVEL] = ACTIONS(311), }, [226] = { - [sym_body] = STATE(4010), + [sym_body] = STATE(4086), [sym_comment] = STATE(226), - [sym_qualified_name] = STATE(4733), - [sym__block_terminator] = STATE(989), + [sym_qualified_name] = STATE(4814), + [sym__block_terminator] = STATE(1159), [sym_include] = STATE(226), - [sym_assignment] = STATE(4314), - [sym_variable_definition] = STATE(1535), - [sym_variable_assignment] = STATE(1535), - [sym_buffer_definition] = STATE(1535), - [sym_query_definition] = STATE(1535), - [sym_function_call_statement] = STATE(1535), - [sym_function_call] = STATE(4086), - [sym_if_statement] = STATE(1535), - [sym_label] = STATE(1536), - [sym_repeat_statement] = STATE(1535), - [sym_procedure_statement] = STATE(1535), - [sym_procedure_parameter_definition] = STATE(1535), - [sym_function_statement] = STATE(1535), - [sym_return_statement] = STATE(1535), - [sym_interface_statement] = STATE(1535), - [sym_using_statement] = STATE(1535), - [sym_class_statement] = STATE(1535), - [sym_object_access] = STATE(3567), - [sym_stream_definition] = STATE(1535), - [sym_input_close_statement] = STATE(1535), - [sym_output_close_statement] = STATE(1535), - [sym__stream_statement] = STATE(1535), - [sym_input_stream_statement] = STATE(1537), - [sym_output_stream_statement] = STATE(1537), - [sym_do_block] = STATE(1535), - [sym_case_statement] = STATE(1535), - [sym_for_statement] = STATE(1535), - [sym_find_statement] = STATE(1535), - [sym_abl_statement] = STATE(1535), - [sym_assign_statement] = STATE(1535), - [sym_catch_statement] = STATE(1535), - [sym_finally_statement] = STATE(1535), - [sym_accumulate_statement] = STATE(1535), - [sym_undo_statement] = STATE(1535), - [sym_error_scope_statement] = STATE(1535), - [sym_temp_table_definition] = STATE(1535), - [sym_on_statement] = STATE(1535), - [sym__statement] = STATE(1538), - [aux_sym_source_code_repeat1] = STATE(276), - [sym_identifier] = ACTIONS(227), + [sym_assignment] = STATE(4463), + [sym_variable_definition] = STATE(1550), + [sym_variable_assignment] = STATE(1550), + [sym_buffer_definition] = STATE(1550), + [sym_query_definition] = STATE(1550), + [sym_function_call_statement] = STATE(1550), + [sym_function_call] = STATE(4558), + [sym_if_statement] = STATE(1550), + [sym_label] = STATE(1551), + [sym_repeat_statement] = STATE(1550), + [sym_procedure_statement] = STATE(1550), + [sym_procedure_parameter_definition] = STATE(1550), + [sym_function_statement] = STATE(1550), + [sym_return_statement] = STATE(1550), + [sym_interface_statement] = STATE(1550), + [sym_using_statement] = STATE(1550), + [sym_class_statement] = STATE(1550), + [sym_object_access] = STATE(3661), + [sym_stream_definition] = STATE(1550), + [sym_input_close_statement] = STATE(1550), + [sym_output_close_statement] = STATE(1550), + [sym__stream_statement] = STATE(1550), + [sym_input_stream_statement] = STATE(1552), + [sym_output_stream_statement] = STATE(1552), + [sym_do_block] = STATE(1550), + [sym_case_statement] = STATE(1550), + [sym_for_statement] = STATE(1550), + [sym_find_statement] = STATE(1550), + [sym_abl_statement] = STATE(1550), + [sym_assign_statement] = STATE(1550), + [sym_catch_statement] = STATE(1550), + [sym_finally_statement] = STATE(1550), + [sym_accumulate_statement] = STATE(1550), + [sym_undo_statement] = STATE(1550), + [sym_error_scope_statement] = STATE(1550), + [sym_temp_table_definition] = STATE(1550), + [sym_on_statement] = STATE(1550), + [sym__statement] = STATE(1553), + [aux_sym_source_code_repeat1] = STATE(286), + [sym_identifier] = ACTIONS(263), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), [anon_sym_LBRACE] = ACTIONS(7), - [aux_sym__block_terminator_token1] = ACTIONS(303), - [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), + [aux_sym__block_terminator_token1] = ACTIONS(325), + [aux_sym_input_expression_token1] = ACTIONS(267), + [aux_sym_primitive_type_token19] = ACTIONS(269), + [aux_sym_variable_definition_token1] = ACTIONS(271), + [aux_sym_variable_definition_token2] = ACTIONS(273), + [aux_sym_buffer_definition_token2] = ACTIONS(275), + [aux_sym_argument_mode_token1] = ACTIONS(277), + [aux_sym_if_statement_token1] = ACTIONS(279), + [aux_sym_repeat_statement_token1] = ACTIONS(281), + [aux_sym__procedure_terminator_token1] = ACTIONS(283), + [aux_sym_procedure_parameter_definition_token1] = ACTIONS(285), + [aux_sym__function_terminator_token1] = ACTIONS(287), + [aux_sym_interface_statement_token1] = ACTIONS(289), + [aux_sym_using_statement_token1] = ACTIONS(291), + [aux_sym_on_error_phrase_token1] = ACTIONS(293), + [aux_sym_on_error_phrase_token3] = ACTIONS(295), + [aux_sym_do_block_token1] = ACTIONS(297), + [aux_sym__case_terminator_token1] = ACTIONS(299), + [aux_sym_find_statement_token1] = ACTIONS(301), + [aux_sym_assign_statement_token1] = ACTIONS(303), + [aux_sym_catch_statement_token1] = ACTIONS(305), + [aux_sym_finally_statement_token1] = ACTIONS(307), + [aux_sym_accumulate_statement_token1] = ACTIONS(309), + [anon_sym_ROUTINE_DASHLEVEL] = ACTIONS(311), + [anon_sym_BLOCK_DASHLEVEL] = ACTIONS(311), }, [227] = { - [sym_body] = STATE(3882), + [sym_body] = STATE(4094), [sym_comment] = STATE(227), - [sym_qualified_name] = STATE(4733), - [sym__block_terminator] = STATE(1402), + [sym_qualified_name] = STATE(4814), + [sym__block_terminator] = STATE(1179), [sym_include] = STATE(227), - [sym_assignment] = STATE(4314), - [sym_variable_definition] = STATE(1535), - [sym_variable_assignment] = STATE(1535), - [sym_buffer_definition] = STATE(1535), - [sym_query_definition] = STATE(1535), - [sym_function_call_statement] = STATE(1535), - [sym_function_call] = STATE(4086), - [sym_if_statement] = STATE(1535), - [sym_label] = STATE(1536), - [sym_repeat_statement] = STATE(1535), - [sym_procedure_statement] = STATE(1535), - [sym_procedure_parameter_definition] = STATE(1535), - [sym_function_statement] = STATE(1535), - [sym_return_statement] = STATE(1535), - [sym_interface_statement] = STATE(1535), - [sym_using_statement] = STATE(1535), - [sym_class_statement] = STATE(1535), - [sym_object_access] = STATE(3567), - [sym_stream_definition] = STATE(1535), - [sym_input_close_statement] = STATE(1535), - [sym_output_close_statement] = STATE(1535), - [sym__stream_statement] = STATE(1535), - [sym_input_stream_statement] = STATE(1537), - [sym_output_stream_statement] = STATE(1537), - [sym_do_block] = STATE(1535), - [sym_case_statement] = STATE(1535), - [sym_for_statement] = STATE(1535), - [sym_find_statement] = STATE(1535), - [sym_abl_statement] = STATE(1535), - [sym_assign_statement] = STATE(1535), - [sym_catch_statement] = STATE(1535), - [sym_finally_statement] = STATE(1535), - [sym_accumulate_statement] = STATE(1535), - [sym_undo_statement] = STATE(1535), - [sym_error_scope_statement] = STATE(1535), - [sym_temp_table_definition] = STATE(1535), - [sym_on_statement] = STATE(1535), - [sym__statement] = STATE(1538), - [aux_sym_source_code_repeat1] = STATE(276), - [sym_identifier] = ACTIONS(227), + [sym_assignment] = STATE(4463), + [sym_variable_definition] = STATE(1550), + [sym_variable_assignment] = STATE(1550), + [sym_buffer_definition] = STATE(1550), + [sym_query_definition] = STATE(1550), + [sym_function_call_statement] = STATE(1550), + [sym_function_call] = STATE(4558), + [sym_if_statement] = STATE(1550), + [sym_label] = STATE(1551), + [sym_repeat_statement] = STATE(1550), + [sym_procedure_statement] = STATE(1550), + [sym_procedure_parameter_definition] = STATE(1550), + [sym_function_statement] = STATE(1550), + [sym_return_statement] = STATE(1550), + [sym_interface_statement] = STATE(1550), + [sym_using_statement] = STATE(1550), + [sym_class_statement] = STATE(1550), + [sym_object_access] = STATE(3661), + [sym_stream_definition] = STATE(1550), + [sym_input_close_statement] = STATE(1550), + [sym_output_close_statement] = STATE(1550), + [sym__stream_statement] = STATE(1550), + [sym_input_stream_statement] = STATE(1552), + [sym_output_stream_statement] = STATE(1552), + [sym_do_block] = STATE(1550), + [sym_case_statement] = STATE(1550), + [sym_for_statement] = STATE(1550), + [sym_find_statement] = STATE(1550), + [sym_abl_statement] = STATE(1550), + [sym_assign_statement] = STATE(1550), + [sym_catch_statement] = STATE(1550), + [sym_finally_statement] = STATE(1550), + [sym_accumulate_statement] = STATE(1550), + [sym_undo_statement] = STATE(1550), + [sym_error_scope_statement] = STATE(1550), + [sym_temp_table_definition] = STATE(1550), + [sym_on_statement] = STATE(1550), + [sym__statement] = STATE(1553), + [aux_sym_source_code_repeat1] = STATE(286), + [sym_identifier] = ACTIONS(263), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), [anon_sym_LBRACE] = ACTIONS(7), - [aux_sym__block_terminator_token1] = ACTIONS(311), - [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), + [aux_sym__block_terminator_token1] = ACTIONS(325), + [aux_sym_input_expression_token1] = ACTIONS(267), + [aux_sym_primitive_type_token19] = ACTIONS(269), + [aux_sym_variable_definition_token1] = ACTIONS(271), + [aux_sym_variable_definition_token2] = ACTIONS(273), + [aux_sym_buffer_definition_token2] = ACTIONS(275), + [aux_sym_argument_mode_token1] = ACTIONS(277), + [aux_sym_if_statement_token1] = ACTIONS(279), + [aux_sym_repeat_statement_token1] = ACTIONS(281), + [aux_sym__procedure_terminator_token1] = ACTIONS(283), + [aux_sym_procedure_parameter_definition_token1] = ACTIONS(285), + [aux_sym__function_terminator_token1] = ACTIONS(287), + [aux_sym_interface_statement_token1] = ACTIONS(289), + [aux_sym_using_statement_token1] = ACTIONS(291), + [aux_sym_on_error_phrase_token1] = ACTIONS(293), + [aux_sym_on_error_phrase_token3] = ACTIONS(295), + [aux_sym_do_block_token1] = ACTIONS(297), + [aux_sym__case_terminator_token1] = ACTIONS(299), + [aux_sym_find_statement_token1] = ACTIONS(301), + [aux_sym_assign_statement_token1] = ACTIONS(303), + [aux_sym_catch_statement_token1] = ACTIONS(305), + [aux_sym_finally_statement_token1] = ACTIONS(307), + [aux_sym_accumulate_statement_token1] = ACTIONS(309), + [anon_sym_ROUTINE_DASHLEVEL] = ACTIONS(311), + [anon_sym_BLOCK_DASHLEVEL] = ACTIONS(311), }, [228] = { - [sym_body] = STATE(4019), + [sym_body] = STATE(4108), [sym_comment] = STATE(228), - [sym_qualified_name] = STATE(4733), - [sym__block_terminator] = STATE(1282), + [sym_qualified_name] = STATE(4814), + [sym__block_terminator] = STATE(1239), [sym_include] = STATE(228), - [sym_assignment] = STATE(4314), - [sym_variable_definition] = STATE(1535), - [sym_variable_assignment] = STATE(1535), - [sym_buffer_definition] = STATE(1535), - [sym_query_definition] = STATE(1535), - [sym_function_call_statement] = STATE(1535), - [sym_function_call] = STATE(4086), - [sym_if_statement] = STATE(1535), - [sym_label] = STATE(1536), - [sym_repeat_statement] = STATE(1535), - [sym_procedure_statement] = STATE(1535), - [sym_procedure_parameter_definition] = STATE(1535), - [sym_function_statement] = STATE(1535), - [sym_return_statement] = STATE(1535), - [sym_interface_statement] = STATE(1535), - [sym_using_statement] = STATE(1535), - [sym_class_statement] = STATE(1535), - [sym_object_access] = STATE(3567), - [sym_stream_definition] = STATE(1535), - [sym_input_close_statement] = STATE(1535), - [sym_output_close_statement] = STATE(1535), - [sym__stream_statement] = STATE(1535), - [sym_input_stream_statement] = STATE(1537), - [sym_output_stream_statement] = STATE(1537), - [sym_do_block] = STATE(1535), - [sym_case_statement] = STATE(1535), - [sym_for_statement] = STATE(1535), - [sym_find_statement] = STATE(1535), - [sym_abl_statement] = STATE(1535), - [sym_assign_statement] = STATE(1535), - [sym_catch_statement] = STATE(1535), - [sym_finally_statement] = STATE(1535), - [sym_accumulate_statement] = STATE(1535), - [sym_undo_statement] = STATE(1535), - [sym_error_scope_statement] = STATE(1535), - [sym_temp_table_definition] = STATE(1535), - [sym_on_statement] = STATE(1535), - [sym__statement] = STATE(1538), - [aux_sym_source_code_repeat1] = STATE(276), - [sym_identifier] = ACTIONS(227), + [sym_assignment] = STATE(4463), + [sym_variable_definition] = STATE(1550), + [sym_variable_assignment] = STATE(1550), + [sym_buffer_definition] = STATE(1550), + [sym_query_definition] = STATE(1550), + [sym_function_call_statement] = STATE(1550), + [sym_function_call] = STATE(4558), + [sym_if_statement] = STATE(1550), + [sym_label] = STATE(1551), + [sym_repeat_statement] = STATE(1550), + [sym_procedure_statement] = STATE(1550), + [sym_procedure_parameter_definition] = STATE(1550), + [sym_function_statement] = STATE(1550), + [sym_return_statement] = STATE(1550), + [sym_interface_statement] = STATE(1550), + [sym_using_statement] = STATE(1550), + [sym_class_statement] = STATE(1550), + [sym_object_access] = STATE(3661), + [sym_stream_definition] = STATE(1550), + [sym_input_close_statement] = STATE(1550), + [sym_output_close_statement] = STATE(1550), + [sym__stream_statement] = STATE(1550), + [sym_input_stream_statement] = STATE(1552), + [sym_output_stream_statement] = STATE(1552), + [sym_do_block] = STATE(1550), + [sym_case_statement] = STATE(1550), + [sym_for_statement] = STATE(1550), + [sym_find_statement] = STATE(1550), + [sym_abl_statement] = STATE(1550), + [sym_assign_statement] = STATE(1550), + [sym_catch_statement] = STATE(1550), + [sym_finally_statement] = STATE(1550), + [sym_accumulate_statement] = STATE(1550), + [sym_undo_statement] = STATE(1550), + [sym_error_scope_statement] = STATE(1550), + [sym_temp_table_definition] = STATE(1550), + [sym_on_statement] = STATE(1550), + [sym__statement] = STATE(1553), + [aux_sym_source_code_repeat1] = STATE(286), + [sym_identifier] = ACTIONS(263), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), [anon_sym_LBRACE] = ACTIONS(7), - [aux_sym__block_terminator_token1] = ACTIONS(299), - [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), + [aux_sym__block_terminator_token1] = ACTIONS(325), + [aux_sym_input_expression_token1] = ACTIONS(267), + [aux_sym_primitive_type_token19] = ACTIONS(269), + [aux_sym_variable_definition_token1] = ACTIONS(271), + [aux_sym_variable_definition_token2] = ACTIONS(273), + [aux_sym_buffer_definition_token2] = ACTIONS(275), + [aux_sym_argument_mode_token1] = ACTIONS(277), + [aux_sym_if_statement_token1] = ACTIONS(279), + [aux_sym_repeat_statement_token1] = ACTIONS(281), + [aux_sym__procedure_terminator_token1] = ACTIONS(283), + [aux_sym_procedure_parameter_definition_token1] = ACTIONS(285), + [aux_sym__function_terminator_token1] = ACTIONS(287), + [aux_sym_interface_statement_token1] = ACTIONS(289), + [aux_sym_using_statement_token1] = ACTIONS(291), + [aux_sym_on_error_phrase_token1] = ACTIONS(293), + [aux_sym_on_error_phrase_token3] = ACTIONS(295), + [aux_sym_do_block_token1] = ACTIONS(297), + [aux_sym__case_terminator_token1] = ACTIONS(299), + [aux_sym_find_statement_token1] = ACTIONS(301), + [aux_sym_assign_statement_token1] = ACTIONS(303), + [aux_sym_catch_statement_token1] = ACTIONS(305), + [aux_sym_finally_statement_token1] = ACTIONS(307), + [aux_sym_accumulate_statement_token1] = ACTIONS(309), + [anon_sym_ROUTINE_DASHLEVEL] = ACTIONS(311), + [anon_sym_BLOCK_DASHLEVEL] = ACTIONS(311), }, [229] = { - [sym_body] = STATE(3884), + [sym_body] = STATE(4119), [sym_comment] = STATE(229), - [sym_qualified_name] = STATE(4733), - [sym__block_terminator] = STATE(1404), + [sym_qualified_name] = STATE(4814), + [sym__block_terminator] = STATE(1272), [sym_include] = STATE(229), - [sym_assignment] = STATE(4314), - [sym_variable_definition] = STATE(1535), - [sym_variable_assignment] = STATE(1535), - [sym_buffer_definition] = STATE(1535), - [sym_query_definition] = STATE(1535), - [sym_function_call_statement] = STATE(1535), - [sym_function_call] = STATE(4086), - [sym_if_statement] = STATE(1535), - [sym_label] = STATE(1536), - [sym_repeat_statement] = STATE(1535), - [sym_procedure_statement] = STATE(1535), - [sym_procedure_parameter_definition] = STATE(1535), - [sym_function_statement] = STATE(1535), - [sym_return_statement] = STATE(1535), - [sym_interface_statement] = STATE(1535), - [sym_using_statement] = STATE(1535), - [sym_class_statement] = STATE(1535), - [sym_object_access] = STATE(3567), - [sym_stream_definition] = STATE(1535), - [sym_input_close_statement] = STATE(1535), - [sym_output_close_statement] = STATE(1535), - [sym__stream_statement] = STATE(1535), - [sym_input_stream_statement] = STATE(1537), - [sym_output_stream_statement] = STATE(1537), - [sym_do_block] = STATE(1535), - [sym_case_statement] = STATE(1535), - [sym_for_statement] = STATE(1535), - [sym_find_statement] = STATE(1535), - [sym_abl_statement] = STATE(1535), - [sym_assign_statement] = STATE(1535), - [sym_catch_statement] = STATE(1535), - [sym_finally_statement] = STATE(1535), - [sym_accumulate_statement] = STATE(1535), - [sym_undo_statement] = STATE(1535), - [sym_error_scope_statement] = STATE(1535), - [sym_temp_table_definition] = STATE(1535), - [sym_on_statement] = STATE(1535), - [sym__statement] = STATE(1538), - [aux_sym_source_code_repeat1] = STATE(276), - [sym_identifier] = ACTIONS(227), + [sym_assignment] = STATE(4463), + [sym_variable_definition] = STATE(1550), + [sym_variable_assignment] = STATE(1550), + [sym_buffer_definition] = STATE(1550), + [sym_query_definition] = STATE(1550), + [sym_function_call_statement] = STATE(1550), + [sym_function_call] = STATE(4558), + [sym_if_statement] = STATE(1550), + [sym_label] = STATE(1551), + [sym_repeat_statement] = STATE(1550), + [sym_procedure_statement] = STATE(1550), + [sym_procedure_parameter_definition] = STATE(1550), + [sym_function_statement] = STATE(1550), + [sym_return_statement] = STATE(1550), + [sym_interface_statement] = STATE(1550), + [sym_using_statement] = STATE(1550), + [sym_class_statement] = STATE(1550), + [sym_object_access] = STATE(3661), + [sym_stream_definition] = STATE(1550), + [sym_input_close_statement] = STATE(1550), + [sym_output_close_statement] = STATE(1550), + [sym__stream_statement] = STATE(1550), + [sym_input_stream_statement] = STATE(1552), + [sym_output_stream_statement] = STATE(1552), + [sym_do_block] = STATE(1550), + [sym_case_statement] = STATE(1550), + [sym_for_statement] = STATE(1550), + [sym_find_statement] = STATE(1550), + [sym_abl_statement] = STATE(1550), + [sym_assign_statement] = STATE(1550), + [sym_catch_statement] = STATE(1550), + [sym_finally_statement] = STATE(1550), + [sym_accumulate_statement] = STATE(1550), + [sym_undo_statement] = STATE(1550), + [sym_error_scope_statement] = STATE(1550), + [sym_temp_table_definition] = STATE(1550), + [sym_on_statement] = STATE(1550), + [sym__statement] = STATE(1553), + [aux_sym_source_code_repeat1] = STATE(286), + [sym_identifier] = ACTIONS(263), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), [anon_sym_LBRACE] = ACTIONS(7), - [aux_sym__block_terminator_token1] = ACTIONS(311), - [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), + [aux_sym__block_terminator_token1] = ACTIONS(325), + [aux_sym_input_expression_token1] = ACTIONS(267), + [aux_sym_primitive_type_token19] = ACTIONS(269), + [aux_sym_variable_definition_token1] = ACTIONS(271), + [aux_sym_variable_definition_token2] = ACTIONS(273), + [aux_sym_buffer_definition_token2] = ACTIONS(275), + [aux_sym_argument_mode_token1] = ACTIONS(277), + [aux_sym_if_statement_token1] = ACTIONS(279), + [aux_sym_repeat_statement_token1] = ACTIONS(281), + [aux_sym__procedure_terminator_token1] = ACTIONS(283), + [aux_sym_procedure_parameter_definition_token1] = ACTIONS(285), + [aux_sym__function_terminator_token1] = ACTIONS(287), + [aux_sym_interface_statement_token1] = ACTIONS(289), + [aux_sym_using_statement_token1] = ACTIONS(291), + [aux_sym_on_error_phrase_token1] = ACTIONS(293), + [aux_sym_on_error_phrase_token3] = ACTIONS(295), + [aux_sym_do_block_token1] = ACTIONS(297), + [aux_sym__case_terminator_token1] = ACTIONS(299), + [aux_sym_find_statement_token1] = ACTIONS(301), + [aux_sym_assign_statement_token1] = ACTIONS(303), + [aux_sym_catch_statement_token1] = ACTIONS(305), + [aux_sym_finally_statement_token1] = ACTIONS(307), + [aux_sym_accumulate_statement_token1] = ACTIONS(309), + [anon_sym_ROUTINE_DASHLEVEL] = ACTIONS(311), + [anon_sym_BLOCK_DASHLEVEL] = ACTIONS(311), }, [230] = { - [sym_body] = STATE(3887), + [sym_body] = STATE(4168), [sym_comment] = STATE(230), - [sym_qualified_name] = STATE(4733), - [sym__block_terminator] = STATE(1405), + [sym_qualified_name] = STATE(4814), + [sym__block_terminator] = STATE(1338), [sym_include] = STATE(230), - [sym_assignment] = STATE(4314), - [sym_variable_definition] = STATE(1535), - [sym_variable_assignment] = STATE(1535), - [sym_buffer_definition] = STATE(1535), - [sym_query_definition] = STATE(1535), - [sym_function_call_statement] = STATE(1535), - [sym_function_call] = STATE(4086), - [sym_if_statement] = STATE(1535), - [sym_label] = STATE(1536), - [sym_repeat_statement] = STATE(1535), - [sym_procedure_statement] = STATE(1535), - [sym_procedure_parameter_definition] = STATE(1535), - [sym_function_statement] = STATE(1535), - [sym_return_statement] = STATE(1535), - [sym_interface_statement] = STATE(1535), - [sym_using_statement] = STATE(1535), - [sym_class_statement] = STATE(1535), - [sym_object_access] = STATE(3567), - [sym_stream_definition] = STATE(1535), - [sym_input_close_statement] = STATE(1535), - [sym_output_close_statement] = STATE(1535), - [sym__stream_statement] = STATE(1535), - [sym_input_stream_statement] = STATE(1537), - [sym_output_stream_statement] = STATE(1537), - [sym_do_block] = STATE(1535), - [sym_case_statement] = STATE(1535), - [sym_for_statement] = STATE(1535), - [sym_find_statement] = STATE(1535), - [sym_abl_statement] = STATE(1535), - [sym_assign_statement] = STATE(1535), - [sym_catch_statement] = STATE(1535), - [sym_finally_statement] = STATE(1535), - [sym_accumulate_statement] = STATE(1535), - [sym_undo_statement] = STATE(1535), - [sym_error_scope_statement] = STATE(1535), - [sym_temp_table_definition] = STATE(1535), - [sym_on_statement] = STATE(1535), - [sym__statement] = STATE(1538), - [aux_sym_source_code_repeat1] = STATE(276), - [sym_identifier] = ACTIONS(227), + [sym_assignment] = STATE(4463), + [sym_variable_definition] = STATE(1550), + [sym_variable_assignment] = STATE(1550), + [sym_buffer_definition] = STATE(1550), + [sym_query_definition] = STATE(1550), + [sym_function_call_statement] = STATE(1550), + [sym_function_call] = STATE(4558), + [sym_if_statement] = STATE(1550), + [sym_label] = STATE(1551), + [sym_repeat_statement] = STATE(1550), + [sym_procedure_statement] = STATE(1550), + [sym_procedure_parameter_definition] = STATE(1550), + [sym_function_statement] = STATE(1550), + [sym_return_statement] = STATE(1550), + [sym_interface_statement] = STATE(1550), + [sym_using_statement] = STATE(1550), + [sym_class_statement] = STATE(1550), + [sym_object_access] = STATE(3661), + [sym_stream_definition] = STATE(1550), + [sym_input_close_statement] = STATE(1550), + [sym_output_close_statement] = STATE(1550), + [sym__stream_statement] = STATE(1550), + [sym_input_stream_statement] = STATE(1552), + [sym_output_stream_statement] = STATE(1552), + [sym_do_block] = STATE(1550), + [sym_case_statement] = STATE(1550), + [sym_for_statement] = STATE(1550), + [sym_find_statement] = STATE(1550), + [sym_abl_statement] = STATE(1550), + [sym_assign_statement] = STATE(1550), + [sym_catch_statement] = STATE(1550), + [sym_finally_statement] = STATE(1550), + [sym_accumulate_statement] = STATE(1550), + [sym_undo_statement] = STATE(1550), + [sym_error_scope_statement] = STATE(1550), + [sym_temp_table_definition] = STATE(1550), + [sym_on_statement] = STATE(1550), + [sym__statement] = STATE(1553), + [aux_sym_source_code_repeat1] = STATE(286), + [sym_identifier] = ACTIONS(263), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), [anon_sym_LBRACE] = ACTIONS(7), - [aux_sym__block_terminator_token1] = ACTIONS(311), - [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), + [aux_sym__block_terminator_token1] = ACTIONS(325), + [aux_sym_input_expression_token1] = ACTIONS(267), + [aux_sym_primitive_type_token19] = ACTIONS(269), + [aux_sym_variable_definition_token1] = ACTIONS(271), + [aux_sym_variable_definition_token2] = ACTIONS(273), + [aux_sym_buffer_definition_token2] = ACTIONS(275), + [aux_sym_argument_mode_token1] = ACTIONS(277), + [aux_sym_if_statement_token1] = ACTIONS(279), + [aux_sym_repeat_statement_token1] = ACTIONS(281), + [aux_sym__procedure_terminator_token1] = ACTIONS(283), + [aux_sym_procedure_parameter_definition_token1] = ACTIONS(285), + [aux_sym__function_terminator_token1] = ACTIONS(287), + [aux_sym_interface_statement_token1] = ACTIONS(289), + [aux_sym_using_statement_token1] = ACTIONS(291), + [aux_sym_on_error_phrase_token1] = ACTIONS(293), + [aux_sym_on_error_phrase_token3] = ACTIONS(295), + [aux_sym_do_block_token1] = ACTIONS(297), + [aux_sym__case_terminator_token1] = ACTIONS(299), + [aux_sym_find_statement_token1] = ACTIONS(301), + [aux_sym_assign_statement_token1] = ACTIONS(303), + [aux_sym_catch_statement_token1] = ACTIONS(305), + [aux_sym_finally_statement_token1] = ACTIONS(307), + [aux_sym_accumulate_statement_token1] = ACTIONS(309), + [anon_sym_ROUTINE_DASHLEVEL] = ACTIONS(311), + [anon_sym_BLOCK_DASHLEVEL] = ACTIONS(311), }, [231] = { - [sym_body] = STATE(3899), + [sym_body] = STATE(4176), [sym_comment] = STATE(231), - [sym_qualified_name] = STATE(4733), - [sym__block_terminator] = STATE(1417), + [sym_qualified_name] = STATE(4814), + [sym__block_terminator] = STATE(1353), [sym_include] = STATE(231), - [sym_assignment] = STATE(4314), - [sym_variable_definition] = STATE(1535), - [sym_variable_assignment] = STATE(1535), - [sym_buffer_definition] = STATE(1535), - [sym_query_definition] = STATE(1535), - [sym_function_call_statement] = STATE(1535), - [sym_function_call] = STATE(4086), - [sym_if_statement] = STATE(1535), - [sym_label] = STATE(1536), - [sym_repeat_statement] = STATE(1535), - [sym_procedure_statement] = STATE(1535), - [sym_procedure_parameter_definition] = STATE(1535), - [sym_function_statement] = STATE(1535), - [sym_return_statement] = STATE(1535), - [sym_interface_statement] = STATE(1535), - [sym_using_statement] = STATE(1535), - [sym_class_statement] = STATE(1535), - [sym_object_access] = STATE(3567), - [sym_stream_definition] = STATE(1535), - [sym_input_close_statement] = STATE(1535), - [sym_output_close_statement] = STATE(1535), - [sym__stream_statement] = STATE(1535), - [sym_input_stream_statement] = STATE(1537), - [sym_output_stream_statement] = STATE(1537), - [sym_do_block] = STATE(1535), - [sym_case_statement] = STATE(1535), - [sym_for_statement] = STATE(1535), - [sym_find_statement] = STATE(1535), - [sym_abl_statement] = STATE(1535), - [sym_assign_statement] = STATE(1535), - [sym_catch_statement] = STATE(1535), - [sym_finally_statement] = STATE(1535), - [sym_accumulate_statement] = STATE(1535), - [sym_undo_statement] = STATE(1535), - [sym_error_scope_statement] = STATE(1535), - [sym_temp_table_definition] = STATE(1535), - [sym_on_statement] = STATE(1535), - [sym__statement] = STATE(1538), - [aux_sym_source_code_repeat1] = STATE(276), - [sym_identifier] = ACTIONS(227), + [sym_assignment] = STATE(4463), + [sym_variable_definition] = STATE(1550), + [sym_variable_assignment] = STATE(1550), + [sym_buffer_definition] = STATE(1550), + [sym_query_definition] = STATE(1550), + [sym_function_call_statement] = STATE(1550), + [sym_function_call] = STATE(4558), + [sym_if_statement] = STATE(1550), + [sym_label] = STATE(1551), + [sym_repeat_statement] = STATE(1550), + [sym_procedure_statement] = STATE(1550), + [sym_procedure_parameter_definition] = STATE(1550), + [sym_function_statement] = STATE(1550), + [sym_return_statement] = STATE(1550), + [sym_interface_statement] = STATE(1550), + [sym_using_statement] = STATE(1550), + [sym_class_statement] = STATE(1550), + [sym_object_access] = STATE(3661), + [sym_stream_definition] = STATE(1550), + [sym_input_close_statement] = STATE(1550), + [sym_output_close_statement] = STATE(1550), + [sym__stream_statement] = STATE(1550), + [sym_input_stream_statement] = STATE(1552), + [sym_output_stream_statement] = STATE(1552), + [sym_do_block] = STATE(1550), + [sym_case_statement] = STATE(1550), + [sym_for_statement] = STATE(1550), + [sym_find_statement] = STATE(1550), + [sym_abl_statement] = STATE(1550), + [sym_assign_statement] = STATE(1550), + [sym_catch_statement] = STATE(1550), + [sym_finally_statement] = STATE(1550), + [sym_accumulate_statement] = STATE(1550), + [sym_undo_statement] = STATE(1550), + [sym_error_scope_statement] = STATE(1550), + [sym_temp_table_definition] = STATE(1550), + [sym_on_statement] = STATE(1550), + [sym__statement] = STATE(1553), + [aux_sym_source_code_repeat1] = STATE(286), + [sym_identifier] = ACTIONS(263), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), [anon_sym_LBRACE] = ACTIONS(7), - [aux_sym__block_terminator_token1] = ACTIONS(311), - [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), + [aux_sym__block_terminator_token1] = ACTIONS(325), + [aux_sym_input_expression_token1] = ACTIONS(267), + [aux_sym_primitive_type_token19] = ACTIONS(269), + [aux_sym_variable_definition_token1] = ACTIONS(271), + [aux_sym_variable_definition_token2] = ACTIONS(273), + [aux_sym_buffer_definition_token2] = ACTIONS(275), + [aux_sym_argument_mode_token1] = ACTIONS(277), + [aux_sym_if_statement_token1] = ACTIONS(279), + [aux_sym_repeat_statement_token1] = ACTIONS(281), + [aux_sym__procedure_terminator_token1] = ACTIONS(283), + [aux_sym_procedure_parameter_definition_token1] = ACTIONS(285), + [aux_sym__function_terminator_token1] = ACTIONS(287), + [aux_sym_interface_statement_token1] = ACTIONS(289), + [aux_sym_using_statement_token1] = ACTIONS(291), + [aux_sym_on_error_phrase_token1] = ACTIONS(293), + [aux_sym_on_error_phrase_token3] = ACTIONS(295), + [aux_sym_do_block_token1] = ACTIONS(297), + [aux_sym__case_terminator_token1] = ACTIONS(299), + [aux_sym_find_statement_token1] = ACTIONS(301), + [aux_sym_assign_statement_token1] = ACTIONS(303), + [aux_sym_catch_statement_token1] = ACTIONS(305), + [aux_sym_finally_statement_token1] = ACTIONS(307), + [aux_sym_accumulate_statement_token1] = ACTIONS(309), + [anon_sym_ROUTINE_DASHLEVEL] = ACTIONS(311), + [anon_sym_BLOCK_DASHLEVEL] = ACTIONS(311), }, [232] = { - [sym_body] = STATE(3892), + [sym_body] = STATE(4187), [sym_comment] = STATE(232), - [sym_qualified_name] = STATE(4733), - [sym__block_terminator] = STATE(1408), + [sym_qualified_name] = STATE(4814), + [sym__block_terminator] = STATE(1380), [sym_include] = STATE(232), - [sym_assignment] = STATE(4314), - [sym_variable_definition] = STATE(1535), - [sym_variable_assignment] = STATE(1535), - [sym_buffer_definition] = STATE(1535), - [sym_query_definition] = STATE(1535), - [sym_function_call_statement] = STATE(1535), - [sym_function_call] = STATE(4086), - [sym_if_statement] = STATE(1535), - [sym_label] = STATE(1536), - [sym_repeat_statement] = STATE(1535), - [sym_procedure_statement] = STATE(1535), - [sym_procedure_parameter_definition] = STATE(1535), - [sym_function_statement] = STATE(1535), - [sym_return_statement] = STATE(1535), - [sym_interface_statement] = STATE(1535), - [sym_using_statement] = STATE(1535), - [sym_class_statement] = STATE(1535), - [sym_object_access] = STATE(3567), - [sym_stream_definition] = STATE(1535), - [sym_input_close_statement] = STATE(1535), - [sym_output_close_statement] = STATE(1535), - [sym__stream_statement] = STATE(1535), - [sym_input_stream_statement] = STATE(1537), - [sym_output_stream_statement] = STATE(1537), - [sym_do_block] = STATE(1535), - [sym_case_statement] = STATE(1535), - [sym_for_statement] = STATE(1535), - [sym_find_statement] = STATE(1535), - [sym_abl_statement] = STATE(1535), - [sym_assign_statement] = STATE(1535), - [sym_catch_statement] = STATE(1535), - [sym_finally_statement] = STATE(1535), - [sym_accumulate_statement] = STATE(1535), - [sym_undo_statement] = STATE(1535), - [sym_error_scope_statement] = STATE(1535), - [sym_temp_table_definition] = STATE(1535), - [sym_on_statement] = STATE(1535), - [sym__statement] = STATE(1538), - [aux_sym_source_code_repeat1] = STATE(276), - [sym_identifier] = ACTIONS(227), + [sym_assignment] = STATE(4463), + [sym_variable_definition] = STATE(1550), + [sym_variable_assignment] = STATE(1550), + [sym_buffer_definition] = STATE(1550), + [sym_query_definition] = STATE(1550), + [sym_function_call_statement] = STATE(1550), + [sym_function_call] = STATE(4558), + [sym_if_statement] = STATE(1550), + [sym_label] = STATE(1551), + [sym_repeat_statement] = STATE(1550), + [sym_procedure_statement] = STATE(1550), + [sym_procedure_parameter_definition] = STATE(1550), + [sym_function_statement] = STATE(1550), + [sym_return_statement] = STATE(1550), + [sym_interface_statement] = STATE(1550), + [sym_using_statement] = STATE(1550), + [sym_class_statement] = STATE(1550), + [sym_object_access] = STATE(3661), + [sym_stream_definition] = STATE(1550), + [sym_input_close_statement] = STATE(1550), + [sym_output_close_statement] = STATE(1550), + [sym__stream_statement] = STATE(1550), + [sym_input_stream_statement] = STATE(1552), + [sym_output_stream_statement] = STATE(1552), + [sym_do_block] = STATE(1550), + [sym_case_statement] = STATE(1550), + [sym_for_statement] = STATE(1550), + [sym_find_statement] = STATE(1550), + [sym_abl_statement] = STATE(1550), + [sym_assign_statement] = STATE(1550), + [sym_catch_statement] = STATE(1550), + [sym_finally_statement] = STATE(1550), + [sym_accumulate_statement] = STATE(1550), + [sym_undo_statement] = STATE(1550), + [sym_error_scope_statement] = STATE(1550), + [sym_temp_table_definition] = STATE(1550), + [sym_on_statement] = STATE(1550), + [sym__statement] = STATE(1553), + [aux_sym_source_code_repeat1] = STATE(286), + [sym_identifier] = ACTIONS(263), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), [anon_sym_LBRACE] = ACTIONS(7), - [aux_sym__block_terminator_token1] = ACTIONS(311), - [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), + [aux_sym__block_terminator_token1] = ACTIONS(325), + [aux_sym_input_expression_token1] = ACTIONS(267), + [aux_sym_primitive_type_token19] = ACTIONS(269), + [aux_sym_variable_definition_token1] = ACTIONS(271), + [aux_sym_variable_definition_token2] = ACTIONS(273), + [aux_sym_buffer_definition_token2] = ACTIONS(275), + [aux_sym_argument_mode_token1] = ACTIONS(277), + [aux_sym_if_statement_token1] = ACTIONS(279), + [aux_sym_repeat_statement_token1] = ACTIONS(281), + [aux_sym__procedure_terminator_token1] = ACTIONS(283), + [aux_sym_procedure_parameter_definition_token1] = ACTIONS(285), + [aux_sym__function_terminator_token1] = ACTIONS(287), + [aux_sym_interface_statement_token1] = ACTIONS(289), + [aux_sym_using_statement_token1] = ACTIONS(291), + [aux_sym_on_error_phrase_token1] = ACTIONS(293), + [aux_sym_on_error_phrase_token3] = ACTIONS(295), + [aux_sym_do_block_token1] = ACTIONS(297), + [aux_sym__case_terminator_token1] = ACTIONS(299), + [aux_sym_find_statement_token1] = ACTIONS(301), + [aux_sym_assign_statement_token1] = ACTIONS(303), + [aux_sym_catch_statement_token1] = ACTIONS(305), + [aux_sym_finally_statement_token1] = ACTIONS(307), + [aux_sym_accumulate_statement_token1] = ACTIONS(309), + [anon_sym_ROUTINE_DASHLEVEL] = ACTIONS(311), + [anon_sym_BLOCK_DASHLEVEL] = ACTIONS(311), }, [233] = { - [sym_body] = STATE(3893), + [sym_body] = STATE(4162), [sym_comment] = STATE(233), - [sym_qualified_name] = STATE(4733), - [sym__block_terminator] = STATE(1409), + [sym_qualified_name] = STATE(4814), + [sym__block_terminator] = STATE(1406), [sym_include] = STATE(233), - [sym_assignment] = STATE(4314), - [sym_variable_definition] = STATE(1535), - [sym_variable_assignment] = STATE(1535), - [sym_buffer_definition] = STATE(1535), - [sym_query_definition] = STATE(1535), - [sym_function_call_statement] = STATE(1535), - [sym_function_call] = STATE(4086), - [sym_if_statement] = STATE(1535), - [sym_label] = STATE(1536), - [sym_repeat_statement] = STATE(1535), - [sym_procedure_statement] = STATE(1535), - [sym_procedure_parameter_definition] = STATE(1535), - [sym_function_statement] = STATE(1535), - [sym_return_statement] = STATE(1535), - [sym_interface_statement] = STATE(1535), - [sym_using_statement] = STATE(1535), - [sym_class_statement] = STATE(1535), - [sym_object_access] = STATE(3567), - [sym_stream_definition] = STATE(1535), - [sym_input_close_statement] = STATE(1535), - [sym_output_close_statement] = STATE(1535), - [sym__stream_statement] = STATE(1535), - [sym_input_stream_statement] = STATE(1537), - [sym_output_stream_statement] = STATE(1537), - [sym_do_block] = STATE(1535), - [sym_case_statement] = STATE(1535), - [sym_for_statement] = STATE(1535), - [sym_find_statement] = STATE(1535), - [sym_abl_statement] = STATE(1535), - [sym_assign_statement] = STATE(1535), - [sym_catch_statement] = STATE(1535), - [sym_finally_statement] = STATE(1535), - [sym_accumulate_statement] = STATE(1535), - [sym_undo_statement] = STATE(1535), - [sym_error_scope_statement] = STATE(1535), - [sym_temp_table_definition] = STATE(1535), - [sym_on_statement] = STATE(1535), - [sym__statement] = STATE(1538), - [aux_sym_source_code_repeat1] = STATE(276), - [sym_identifier] = ACTIONS(227), + [sym_assignment] = STATE(4463), + [sym_variable_definition] = STATE(1550), + [sym_variable_assignment] = STATE(1550), + [sym_buffer_definition] = STATE(1550), + [sym_query_definition] = STATE(1550), + [sym_function_call_statement] = STATE(1550), + [sym_function_call] = STATE(4558), + [sym_if_statement] = STATE(1550), + [sym_label] = STATE(1551), + [sym_repeat_statement] = STATE(1550), + [sym_procedure_statement] = STATE(1550), + [sym_procedure_parameter_definition] = STATE(1550), + [sym_function_statement] = STATE(1550), + [sym_return_statement] = STATE(1550), + [sym_interface_statement] = STATE(1550), + [sym_using_statement] = STATE(1550), + [sym_class_statement] = STATE(1550), + [sym_object_access] = STATE(3661), + [sym_stream_definition] = STATE(1550), + [sym_input_close_statement] = STATE(1550), + [sym_output_close_statement] = STATE(1550), + [sym__stream_statement] = STATE(1550), + [sym_input_stream_statement] = STATE(1552), + [sym_output_stream_statement] = STATE(1552), + [sym_do_block] = STATE(1550), + [sym_case_statement] = STATE(1550), + [sym_for_statement] = STATE(1550), + [sym_find_statement] = STATE(1550), + [sym_abl_statement] = STATE(1550), + [sym_assign_statement] = STATE(1550), + [sym_catch_statement] = STATE(1550), + [sym_finally_statement] = STATE(1550), + [sym_accumulate_statement] = STATE(1550), + [sym_undo_statement] = STATE(1550), + [sym_error_scope_statement] = STATE(1550), + [sym_temp_table_definition] = STATE(1550), + [sym_on_statement] = STATE(1550), + [sym__statement] = STATE(1553), + [aux_sym_source_code_repeat1] = STATE(286), + [sym_identifier] = ACTIONS(263), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), [anon_sym_LBRACE] = ACTIONS(7), - [aux_sym__block_terminator_token1] = ACTIONS(311), - [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), + [aux_sym__block_terminator_token1] = ACTIONS(325), + [aux_sym_input_expression_token1] = ACTIONS(267), + [aux_sym_primitive_type_token19] = ACTIONS(269), + [aux_sym_variable_definition_token1] = ACTIONS(271), + [aux_sym_variable_definition_token2] = ACTIONS(273), + [aux_sym_buffer_definition_token2] = ACTIONS(275), + [aux_sym_argument_mode_token1] = ACTIONS(277), + [aux_sym_if_statement_token1] = ACTIONS(279), + [aux_sym_repeat_statement_token1] = ACTIONS(281), + [aux_sym__procedure_terminator_token1] = ACTIONS(283), + [aux_sym_procedure_parameter_definition_token1] = ACTIONS(285), + [aux_sym__function_terminator_token1] = ACTIONS(287), + [aux_sym_interface_statement_token1] = ACTIONS(289), + [aux_sym_using_statement_token1] = ACTIONS(291), + [aux_sym_on_error_phrase_token1] = ACTIONS(293), + [aux_sym_on_error_phrase_token3] = ACTIONS(295), + [aux_sym_do_block_token1] = ACTIONS(297), + [aux_sym__case_terminator_token1] = ACTIONS(299), + [aux_sym_find_statement_token1] = ACTIONS(301), + [aux_sym_assign_statement_token1] = ACTIONS(303), + [aux_sym_catch_statement_token1] = ACTIONS(305), + [aux_sym_finally_statement_token1] = ACTIONS(307), + [aux_sym_accumulate_statement_token1] = ACTIONS(309), + [anon_sym_ROUTINE_DASHLEVEL] = ACTIONS(311), + [anon_sym_BLOCK_DASHLEVEL] = ACTIONS(311), }, [234] = { - [sym_body] = STATE(3618), + [sym_body] = STATE(4089), [sym_comment] = STATE(234), - [sym_qualified_name] = STATE(4733), - [sym__block_terminator] = STATE(3366), + [sym_qualified_name] = STATE(4814), + [sym__block_terminator] = STATE(1198), [sym_include] = STATE(234), - [sym_assignment] = STATE(4314), - [sym_variable_definition] = STATE(1535), - [sym_variable_assignment] = STATE(1535), - [sym_buffer_definition] = STATE(1535), - [sym_query_definition] = STATE(1535), - [sym_function_call_statement] = STATE(1535), - [sym_function_call] = STATE(4086), - [sym_if_statement] = STATE(1535), - [sym_label] = STATE(1536), - [sym_repeat_statement] = STATE(1535), - [sym_procedure_statement] = STATE(1535), - [sym_procedure_parameter_definition] = STATE(1535), - [sym_function_statement] = STATE(1535), - [sym_return_statement] = STATE(1535), - [sym_interface_statement] = STATE(1535), - [sym_using_statement] = STATE(1535), - [sym_class_statement] = STATE(1535), - [sym_object_access] = STATE(3567), - [sym_stream_definition] = STATE(1535), - [sym_input_close_statement] = STATE(1535), - [sym_output_close_statement] = STATE(1535), - [sym__stream_statement] = STATE(1535), - [sym_input_stream_statement] = STATE(1537), - [sym_output_stream_statement] = STATE(1537), - [sym_do_block] = STATE(1535), - [sym_case_statement] = STATE(1535), - [sym_for_statement] = STATE(1535), - [sym_find_statement] = STATE(1535), - [sym_abl_statement] = STATE(1535), - [sym_assign_statement] = STATE(1535), - [sym_catch_statement] = STATE(1535), - [sym_finally_statement] = STATE(1535), - [sym_accumulate_statement] = STATE(1535), - [sym_undo_statement] = STATE(1535), - [sym_error_scope_statement] = STATE(1535), - [sym_temp_table_definition] = STATE(1535), - [sym_on_statement] = STATE(1535), - [sym__statement] = STATE(1538), - [aux_sym_source_code_repeat1] = STATE(276), - [sym_identifier] = ACTIONS(227), + [sym_assignment] = STATE(4463), + [sym_variable_definition] = STATE(1550), + [sym_variable_assignment] = STATE(1550), + [sym_buffer_definition] = STATE(1550), + [sym_query_definition] = STATE(1550), + [sym_function_call_statement] = STATE(1550), + [sym_function_call] = STATE(4558), + [sym_if_statement] = STATE(1550), + [sym_label] = STATE(1551), + [sym_repeat_statement] = STATE(1550), + [sym_procedure_statement] = STATE(1550), + [sym_procedure_parameter_definition] = STATE(1550), + [sym_function_statement] = STATE(1550), + [sym_return_statement] = STATE(1550), + [sym_interface_statement] = STATE(1550), + [sym_using_statement] = STATE(1550), + [sym_class_statement] = STATE(1550), + [sym_object_access] = STATE(3661), + [sym_stream_definition] = STATE(1550), + [sym_input_close_statement] = STATE(1550), + [sym_output_close_statement] = STATE(1550), + [sym__stream_statement] = STATE(1550), + [sym_input_stream_statement] = STATE(1552), + [sym_output_stream_statement] = STATE(1552), + [sym_do_block] = STATE(1550), + [sym_case_statement] = STATE(1550), + [sym_for_statement] = STATE(1550), + [sym_find_statement] = STATE(1550), + [sym_abl_statement] = STATE(1550), + [sym_assign_statement] = STATE(1550), + [sym_catch_statement] = STATE(1550), + [sym_finally_statement] = STATE(1550), + [sym_accumulate_statement] = STATE(1550), + [sym_undo_statement] = STATE(1550), + [sym_error_scope_statement] = STATE(1550), + [sym_temp_table_definition] = STATE(1550), + [sym_on_statement] = STATE(1550), + [sym__statement] = STATE(1553), + [aux_sym_source_code_repeat1] = STATE(286), + [sym_identifier] = ACTIONS(263), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), [anon_sym_LBRACE] = ACTIONS(7), - [aux_sym__block_terminator_token1] = ACTIONS(297), - [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), + [aux_sym__block_terminator_token1] = ACTIONS(325), + [aux_sym_input_expression_token1] = ACTIONS(267), + [aux_sym_primitive_type_token19] = ACTIONS(269), + [aux_sym_variable_definition_token1] = ACTIONS(271), + [aux_sym_variable_definition_token2] = ACTIONS(273), + [aux_sym_buffer_definition_token2] = ACTIONS(275), + [aux_sym_argument_mode_token1] = ACTIONS(277), + [aux_sym_if_statement_token1] = ACTIONS(279), + [aux_sym_repeat_statement_token1] = ACTIONS(281), + [aux_sym__procedure_terminator_token1] = ACTIONS(283), + [aux_sym_procedure_parameter_definition_token1] = ACTIONS(285), + [aux_sym__function_terminator_token1] = ACTIONS(287), + [aux_sym_interface_statement_token1] = ACTIONS(289), + [aux_sym_using_statement_token1] = ACTIONS(291), + [aux_sym_on_error_phrase_token1] = ACTIONS(293), + [aux_sym_on_error_phrase_token3] = ACTIONS(295), + [aux_sym_do_block_token1] = ACTIONS(297), + [aux_sym__case_terminator_token1] = ACTIONS(299), + [aux_sym_find_statement_token1] = ACTIONS(301), + [aux_sym_assign_statement_token1] = ACTIONS(303), + [aux_sym_catch_statement_token1] = ACTIONS(305), + [aux_sym_finally_statement_token1] = ACTIONS(307), + [aux_sym_accumulate_statement_token1] = ACTIONS(309), + [anon_sym_ROUTINE_DASHLEVEL] = ACTIONS(311), + [anon_sym_BLOCK_DASHLEVEL] = ACTIONS(311), }, [235] = { - [sym_body] = STATE(3894), + [sym_body] = STATE(4068), [sym_comment] = STATE(235), - [sym_qualified_name] = STATE(4733), - [sym__block_terminator] = STATE(1411), + [sym_qualified_name] = STATE(4814), + [sym__block_terminator] = STATE(1515), [sym_include] = STATE(235), - [sym_assignment] = STATE(4314), - [sym_variable_definition] = STATE(1535), - [sym_variable_assignment] = STATE(1535), - [sym_buffer_definition] = STATE(1535), - [sym_query_definition] = STATE(1535), - [sym_function_call_statement] = STATE(1535), - [sym_function_call] = STATE(4086), - [sym_if_statement] = STATE(1535), - [sym_label] = STATE(1536), - [sym_repeat_statement] = STATE(1535), - [sym_procedure_statement] = STATE(1535), - [sym_procedure_parameter_definition] = STATE(1535), - [sym_function_statement] = STATE(1535), - [sym_return_statement] = STATE(1535), - [sym_interface_statement] = STATE(1535), - [sym_using_statement] = STATE(1535), - [sym_class_statement] = STATE(1535), - [sym_object_access] = STATE(3567), - [sym_stream_definition] = STATE(1535), - [sym_input_close_statement] = STATE(1535), - [sym_output_close_statement] = STATE(1535), - [sym__stream_statement] = STATE(1535), - [sym_input_stream_statement] = STATE(1537), - [sym_output_stream_statement] = STATE(1537), - [sym_do_block] = STATE(1535), - [sym_case_statement] = STATE(1535), - [sym_for_statement] = STATE(1535), - [sym_find_statement] = STATE(1535), - [sym_abl_statement] = STATE(1535), - [sym_assign_statement] = STATE(1535), - [sym_catch_statement] = STATE(1535), - [sym_finally_statement] = STATE(1535), - [sym_accumulate_statement] = STATE(1535), - [sym_undo_statement] = STATE(1535), - [sym_error_scope_statement] = STATE(1535), - [sym_temp_table_definition] = STATE(1535), - [sym_on_statement] = STATE(1535), - [sym__statement] = STATE(1538), - [aux_sym_source_code_repeat1] = STATE(276), - [sym_identifier] = ACTIONS(227), + [sym_assignment] = STATE(4463), + [sym_variable_definition] = STATE(1550), + [sym_variable_assignment] = STATE(1550), + [sym_buffer_definition] = STATE(1550), + [sym_query_definition] = STATE(1550), + [sym_function_call_statement] = STATE(1550), + [sym_function_call] = STATE(4558), + [sym_if_statement] = STATE(1550), + [sym_label] = STATE(1551), + [sym_repeat_statement] = STATE(1550), + [sym_procedure_statement] = STATE(1550), + [sym_procedure_parameter_definition] = STATE(1550), + [sym_function_statement] = STATE(1550), + [sym_return_statement] = STATE(1550), + [sym_interface_statement] = STATE(1550), + [sym_using_statement] = STATE(1550), + [sym_class_statement] = STATE(1550), + [sym_object_access] = STATE(3661), + [sym_stream_definition] = STATE(1550), + [sym_input_close_statement] = STATE(1550), + [sym_output_close_statement] = STATE(1550), + [sym__stream_statement] = STATE(1550), + [sym_input_stream_statement] = STATE(1552), + [sym_output_stream_statement] = STATE(1552), + [sym_do_block] = STATE(1550), + [sym_case_statement] = STATE(1550), + [sym_for_statement] = STATE(1550), + [sym_find_statement] = STATE(1550), + [sym_abl_statement] = STATE(1550), + [sym_assign_statement] = STATE(1550), + [sym_catch_statement] = STATE(1550), + [sym_finally_statement] = STATE(1550), + [sym_accumulate_statement] = STATE(1550), + [sym_undo_statement] = STATE(1550), + [sym_error_scope_statement] = STATE(1550), + [sym_temp_table_definition] = STATE(1550), + [sym_on_statement] = STATE(1550), + [sym__statement] = STATE(1553), + [aux_sym_source_code_repeat1] = STATE(286), + [sym_identifier] = ACTIONS(263), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), [anon_sym_LBRACE] = ACTIONS(7), - [aux_sym__block_terminator_token1] = ACTIONS(311), - [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), + [aux_sym__block_terminator_token1] = ACTIONS(325), + [aux_sym_input_expression_token1] = ACTIONS(267), + [aux_sym_primitive_type_token19] = ACTIONS(269), + [aux_sym_variable_definition_token1] = ACTIONS(271), + [aux_sym_variable_definition_token2] = ACTIONS(273), + [aux_sym_buffer_definition_token2] = ACTIONS(275), + [aux_sym_argument_mode_token1] = ACTIONS(277), + [aux_sym_if_statement_token1] = ACTIONS(279), + [aux_sym_repeat_statement_token1] = ACTIONS(281), + [aux_sym__procedure_terminator_token1] = ACTIONS(283), + [aux_sym_procedure_parameter_definition_token1] = ACTIONS(285), + [aux_sym__function_terminator_token1] = ACTIONS(287), + [aux_sym_interface_statement_token1] = ACTIONS(289), + [aux_sym_using_statement_token1] = ACTIONS(291), + [aux_sym_on_error_phrase_token1] = ACTIONS(293), + [aux_sym_on_error_phrase_token3] = ACTIONS(295), + [aux_sym_do_block_token1] = ACTIONS(297), + [aux_sym__case_terminator_token1] = ACTIONS(299), + [aux_sym_find_statement_token1] = ACTIONS(301), + [aux_sym_assign_statement_token1] = ACTIONS(303), + [aux_sym_catch_statement_token1] = ACTIONS(305), + [aux_sym_finally_statement_token1] = ACTIONS(307), + [aux_sym_accumulate_statement_token1] = ACTIONS(309), + [anon_sym_ROUTINE_DASHLEVEL] = ACTIONS(311), + [anon_sym_BLOCK_DASHLEVEL] = ACTIONS(311), }, [236] = { - [sym_body] = STATE(3898), + [sym_body] = STATE(4056), [sym_comment] = STATE(236), - [sym_qualified_name] = STATE(4733), - [sym__block_terminator] = STATE(1412), + [sym_qualified_name] = STATE(4814), + [sym__block_terminator] = STATE(1475), [sym_include] = STATE(236), - [sym_assignment] = STATE(4314), - [sym_variable_definition] = STATE(1535), - [sym_variable_assignment] = STATE(1535), - [sym_buffer_definition] = STATE(1535), - [sym_query_definition] = STATE(1535), - [sym_function_call_statement] = STATE(1535), - [sym_function_call] = STATE(4086), - [sym_if_statement] = STATE(1535), - [sym_label] = STATE(1536), - [sym_repeat_statement] = STATE(1535), - [sym_procedure_statement] = STATE(1535), - [sym_procedure_parameter_definition] = STATE(1535), - [sym_function_statement] = STATE(1535), - [sym_return_statement] = STATE(1535), - [sym_interface_statement] = STATE(1535), - [sym_using_statement] = STATE(1535), - [sym_class_statement] = STATE(1535), - [sym_object_access] = STATE(3567), - [sym_stream_definition] = STATE(1535), - [sym_input_close_statement] = STATE(1535), - [sym_output_close_statement] = STATE(1535), - [sym__stream_statement] = STATE(1535), - [sym_input_stream_statement] = STATE(1537), - [sym_output_stream_statement] = STATE(1537), - [sym_do_block] = STATE(1535), - [sym_case_statement] = STATE(1535), - [sym_for_statement] = STATE(1535), - [sym_find_statement] = STATE(1535), - [sym_abl_statement] = STATE(1535), - [sym_assign_statement] = STATE(1535), - [sym_catch_statement] = STATE(1535), - [sym_finally_statement] = STATE(1535), - [sym_accumulate_statement] = STATE(1535), - [sym_undo_statement] = STATE(1535), - [sym_error_scope_statement] = STATE(1535), - [sym_temp_table_definition] = STATE(1535), - [sym_on_statement] = STATE(1535), - [sym__statement] = STATE(1538), - [aux_sym_source_code_repeat1] = STATE(276), - [sym_identifier] = ACTIONS(227), + [sym_assignment] = STATE(4463), + [sym_variable_definition] = STATE(1550), + [sym_variable_assignment] = STATE(1550), + [sym_buffer_definition] = STATE(1550), + [sym_query_definition] = STATE(1550), + [sym_function_call_statement] = STATE(1550), + [sym_function_call] = STATE(4558), + [sym_if_statement] = STATE(1550), + [sym_label] = STATE(1551), + [sym_repeat_statement] = STATE(1550), + [sym_procedure_statement] = STATE(1550), + [sym_procedure_parameter_definition] = STATE(1550), + [sym_function_statement] = STATE(1550), + [sym_return_statement] = STATE(1550), + [sym_interface_statement] = STATE(1550), + [sym_using_statement] = STATE(1550), + [sym_class_statement] = STATE(1550), + [sym_object_access] = STATE(3661), + [sym_stream_definition] = STATE(1550), + [sym_input_close_statement] = STATE(1550), + [sym_output_close_statement] = STATE(1550), + [sym__stream_statement] = STATE(1550), + [sym_input_stream_statement] = STATE(1552), + [sym_output_stream_statement] = STATE(1552), + [sym_do_block] = STATE(1550), + [sym_case_statement] = STATE(1550), + [sym_for_statement] = STATE(1550), + [sym_find_statement] = STATE(1550), + [sym_abl_statement] = STATE(1550), + [sym_assign_statement] = STATE(1550), + [sym_catch_statement] = STATE(1550), + [sym_finally_statement] = STATE(1550), + [sym_accumulate_statement] = STATE(1550), + [sym_undo_statement] = STATE(1550), + [sym_error_scope_statement] = STATE(1550), + [sym_temp_table_definition] = STATE(1550), + [sym_on_statement] = STATE(1550), + [sym__statement] = STATE(1553), + [aux_sym_source_code_repeat1] = STATE(286), + [sym_identifier] = ACTIONS(263), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), [anon_sym_LBRACE] = ACTIONS(7), - [aux_sym__block_terminator_token1] = ACTIONS(311), - [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), + [aux_sym__block_terminator_token1] = ACTIONS(325), + [aux_sym_input_expression_token1] = ACTIONS(267), + [aux_sym_primitive_type_token19] = ACTIONS(269), + [aux_sym_variable_definition_token1] = ACTIONS(271), + [aux_sym_variable_definition_token2] = ACTIONS(273), + [aux_sym_buffer_definition_token2] = ACTIONS(275), + [aux_sym_argument_mode_token1] = ACTIONS(277), + [aux_sym_if_statement_token1] = ACTIONS(279), + [aux_sym_repeat_statement_token1] = ACTIONS(281), + [aux_sym__procedure_terminator_token1] = ACTIONS(283), + [aux_sym_procedure_parameter_definition_token1] = ACTIONS(285), + [aux_sym__function_terminator_token1] = ACTIONS(287), + [aux_sym_interface_statement_token1] = ACTIONS(289), + [aux_sym_using_statement_token1] = ACTIONS(291), + [aux_sym_on_error_phrase_token1] = ACTIONS(293), + [aux_sym_on_error_phrase_token3] = ACTIONS(295), + [aux_sym_do_block_token1] = ACTIONS(297), + [aux_sym__case_terminator_token1] = ACTIONS(299), + [aux_sym_find_statement_token1] = ACTIONS(301), + [aux_sym_assign_statement_token1] = ACTIONS(303), + [aux_sym_catch_statement_token1] = ACTIONS(305), + [aux_sym_finally_statement_token1] = ACTIONS(307), + [aux_sym_accumulate_statement_token1] = ACTIONS(309), + [anon_sym_ROUTINE_DASHLEVEL] = ACTIONS(311), + [anon_sym_BLOCK_DASHLEVEL] = ACTIONS(311), }, [237] = { - [sym_body] = STATE(4564), + [sym_body] = STATE(3999), [sym_comment] = STATE(237), - [sym_qualified_name] = STATE(4733), + [sym_qualified_name] = STATE(4814), + [sym__block_terminator] = STATE(1358), [sym_include] = STATE(237), - [sym_assignment] = STATE(4314), - [sym_variable_definition] = STATE(1535), - [sym_variable_assignment] = STATE(1535), - [sym_buffer_definition] = STATE(1535), - [sym_query_definition] = STATE(1535), - [sym_function_call_statement] = STATE(1535), - [sym_function_call] = STATE(4086), - [sym_if_statement] = STATE(1535), - [sym_label] = STATE(1536), - [sym_repeat_statement] = STATE(1535), - [sym_procedure_statement] = STATE(1535), - [sym_procedure_parameter_definition] = STATE(1535), - [sym_function_statement] = STATE(1535), - [sym_return_statement] = STATE(1535), - [sym_interface_statement] = STATE(1535), - [sym_using_statement] = STATE(1535), - [sym_class_statement] = STATE(1535), - [sym_object_access] = STATE(3567), - [sym_stream_definition] = STATE(1535), - [sym_input_close_statement] = STATE(1535), - [sym_output_close_statement] = STATE(1535), - [sym__stream_statement] = STATE(1535), - [sym_input_stream_statement] = STATE(1537), - [sym_output_stream_statement] = STATE(1537), - [sym_do_block] = STATE(1535), - [sym_case_statement] = STATE(1535), - [sym_for_statement] = STATE(1535), - [sym_find_statement] = STATE(1535), - [sym_abl_statement] = STATE(1535), - [sym_assign_statement] = STATE(1535), - [sym_catch_statement] = STATE(1535), - [sym_finally_statement] = STATE(1535), - [sym_accumulate_statement] = STATE(1535), - [sym_undo_statement] = STATE(1535), - [sym_error_scope_statement] = STATE(1535), - [sym_temp_table_definition] = STATE(1535), - [sym_on_statement] = STATE(1535), - [sym__statement] = STATE(1538), - [aux_sym_source_code_repeat1] = STATE(276), - [sym_identifier] = ACTIONS(227), + [sym_assignment] = STATE(4463), + [sym_variable_definition] = STATE(1550), + [sym_variable_assignment] = STATE(1550), + [sym_buffer_definition] = STATE(1550), + [sym_query_definition] = STATE(1550), + [sym_function_call_statement] = STATE(1550), + [sym_function_call] = STATE(4558), + [sym_if_statement] = STATE(1550), + [sym_label] = STATE(1551), + [sym_repeat_statement] = STATE(1550), + [sym_procedure_statement] = STATE(1550), + [sym_procedure_parameter_definition] = STATE(1550), + [sym_function_statement] = STATE(1550), + [sym_return_statement] = STATE(1550), + [sym_interface_statement] = STATE(1550), + [sym_using_statement] = STATE(1550), + [sym_class_statement] = STATE(1550), + [sym_object_access] = STATE(3661), + [sym_stream_definition] = STATE(1550), + [sym_input_close_statement] = STATE(1550), + [sym_output_close_statement] = STATE(1550), + [sym__stream_statement] = STATE(1550), + [sym_input_stream_statement] = STATE(1552), + [sym_output_stream_statement] = STATE(1552), + [sym_do_block] = STATE(1550), + [sym_case_statement] = STATE(1550), + [sym_for_statement] = STATE(1550), + [sym_find_statement] = STATE(1550), + [sym_abl_statement] = STATE(1550), + [sym_assign_statement] = STATE(1550), + [sym_catch_statement] = STATE(1550), + [sym_finally_statement] = STATE(1550), + [sym_accumulate_statement] = STATE(1550), + [sym_undo_statement] = STATE(1550), + [sym_error_scope_statement] = STATE(1550), + [sym_temp_table_definition] = STATE(1550), + [sym_on_statement] = STATE(1550), + [sym__statement] = STATE(1553), + [aux_sym_source_code_repeat1] = STATE(286), + [sym_identifier] = ACTIONS(263), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), [anon_sym_LBRACE] = ACTIONS(7), - [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), + [aux_sym__block_terminator_token1] = ACTIONS(325), + [aux_sym_input_expression_token1] = ACTIONS(267), + [aux_sym_primitive_type_token19] = ACTIONS(269), + [aux_sym_variable_definition_token1] = ACTIONS(271), + [aux_sym_variable_definition_token2] = ACTIONS(273), + [aux_sym_buffer_definition_token2] = ACTIONS(275), + [aux_sym_argument_mode_token1] = ACTIONS(277), + [aux_sym_if_statement_token1] = ACTIONS(279), + [aux_sym_repeat_statement_token1] = ACTIONS(281), + [aux_sym__procedure_terminator_token1] = ACTIONS(283), + [aux_sym_procedure_parameter_definition_token1] = ACTIONS(285), + [aux_sym__function_terminator_token1] = ACTIONS(287), + [aux_sym_interface_statement_token1] = ACTIONS(289), + [aux_sym_using_statement_token1] = ACTIONS(291), + [aux_sym_on_error_phrase_token1] = ACTIONS(293), + [aux_sym_on_error_phrase_token3] = ACTIONS(295), + [aux_sym_do_block_token1] = ACTIONS(297), + [aux_sym__case_terminator_token1] = ACTIONS(299), + [aux_sym_find_statement_token1] = ACTIONS(301), + [aux_sym_assign_statement_token1] = ACTIONS(303), + [aux_sym_catch_statement_token1] = ACTIONS(305), + [aux_sym_finally_statement_token1] = ACTIONS(307), + [aux_sym_accumulate_statement_token1] = ACTIONS(309), + [anon_sym_ROUTINE_DASHLEVEL] = ACTIONS(311), + [anon_sym_BLOCK_DASHLEVEL] = ACTIONS(311), }, [238] = { - [sym_body] = STATE(4716), + [sym_body] = STATE(3984), [sym_comment] = STATE(238), - [sym_qualified_name] = STATE(4733), + [sym_qualified_name] = STATE(4814), + [sym__block_terminator] = STATE(1281), [sym_include] = STATE(238), - [sym_assignment] = STATE(4314), - [sym_variable_definition] = STATE(1535), - [sym_variable_assignment] = STATE(1535), - [sym_buffer_definition] = STATE(1535), - [sym_query_definition] = STATE(1535), - [sym_function_call_statement] = STATE(1535), - [sym_function_call] = STATE(4086), - [sym_if_statement] = STATE(1535), - [sym_label] = STATE(1536), - [sym_repeat_statement] = STATE(1535), - [sym_procedure_statement] = STATE(1535), - [sym_procedure_parameter_definition] = STATE(1535), - [sym_function_statement] = STATE(1535), - [sym_return_statement] = STATE(1535), - [sym_interface_statement] = STATE(1535), - [sym_using_statement] = STATE(1535), - [sym_class_statement] = STATE(1535), - [sym_object_access] = STATE(3567), - [sym_stream_definition] = STATE(1535), - [sym_input_close_statement] = STATE(1535), - [sym_output_close_statement] = STATE(1535), - [sym__stream_statement] = STATE(1535), - [sym_input_stream_statement] = STATE(1537), - [sym_output_stream_statement] = STATE(1537), - [sym_do_block] = STATE(1535), - [sym_case_statement] = STATE(1535), - [sym_for_statement] = STATE(1535), - [sym_find_statement] = STATE(1535), - [sym_abl_statement] = STATE(1535), - [sym_assign_statement] = STATE(1535), - [sym_catch_statement] = STATE(1535), - [sym_finally_statement] = STATE(1535), - [sym_accumulate_statement] = STATE(1535), - [sym_undo_statement] = STATE(1535), - [sym_error_scope_statement] = STATE(1535), - [sym_temp_table_definition] = STATE(1535), - [sym_on_statement] = STATE(1535), - [sym__statement] = STATE(1538), - [aux_sym_source_code_repeat1] = STATE(276), - [sym_identifier] = ACTIONS(227), + [sym_assignment] = STATE(4463), + [sym_variable_definition] = STATE(1550), + [sym_variable_assignment] = STATE(1550), + [sym_buffer_definition] = STATE(1550), + [sym_query_definition] = STATE(1550), + [sym_function_call_statement] = STATE(1550), + [sym_function_call] = STATE(4558), + [sym_if_statement] = STATE(1550), + [sym_label] = STATE(1551), + [sym_repeat_statement] = STATE(1550), + [sym_procedure_statement] = STATE(1550), + [sym_procedure_parameter_definition] = STATE(1550), + [sym_function_statement] = STATE(1550), + [sym_return_statement] = STATE(1550), + [sym_interface_statement] = STATE(1550), + [sym_using_statement] = STATE(1550), + [sym_class_statement] = STATE(1550), + [sym_object_access] = STATE(3661), + [sym_stream_definition] = STATE(1550), + [sym_input_close_statement] = STATE(1550), + [sym_output_close_statement] = STATE(1550), + [sym__stream_statement] = STATE(1550), + [sym_input_stream_statement] = STATE(1552), + [sym_output_stream_statement] = STATE(1552), + [sym_do_block] = STATE(1550), + [sym_case_statement] = STATE(1550), + [sym_for_statement] = STATE(1550), + [sym_find_statement] = STATE(1550), + [sym_abl_statement] = STATE(1550), + [sym_assign_statement] = STATE(1550), + [sym_catch_statement] = STATE(1550), + [sym_finally_statement] = STATE(1550), + [sym_accumulate_statement] = STATE(1550), + [sym_undo_statement] = STATE(1550), + [sym_error_scope_statement] = STATE(1550), + [sym_temp_table_definition] = STATE(1550), + [sym_on_statement] = STATE(1550), + [sym__statement] = STATE(1553), + [aux_sym_source_code_repeat1] = STATE(286), + [sym_identifier] = ACTIONS(263), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), [anon_sym_LBRACE] = ACTIONS(7), - [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), + [aux_sym__block_terminator_token1] = ACTIONS(325), + [aux_sym_input_expression_token1] = ACTIONS(267), + [aux_sym_primitive_type_token19] = ACTIONS(269), + [aux_sym_variable_definition_token1] = ACTIONS(271), + [aux_sym_variable_definition_token2] = ACTIONS(273), + [aux_sym_buffer_definition_token2] = ACTIONS(275), + [aux_sym_argument_mode_token1] = ACTIONS(277), + [aux_sym_if_statement_token1] = ACTIONS(279), + [aux_sym_repeat_statement_token1] = ACTIONS(281), + [aux_sym__procedure_terminator_token1] = ACTIONS(283), + [aux_sym_procedure_parameter_definition_token1] = ACTIONS(285), + [aux_sym__function_terminator_token1] = ACTIONS(287), + [aux_sym_interface_statement_token1] = ACTIONS(289), + [aux_sym_using_statement_token1] = ACTIONS(291), + [aux_sym_on_error_phrase_token1] = ACTIONS(293), + [aux_sym_on_error_phrase_token3] = ACTIONS(295), + [aux_sym_do_block_token1] = ACTIONS(297), + [aux_sym__case_terminator_token1] = ACTIONS(299), + [aux_sym_find_statement_token1] = ACTIONS(301), + [aux_sym_assign_statement_token1] = ACTIONS(303), + [aux_sym_catch_statement_token1] = ACTIONS(305), + [aux_sym_finally_statement_token1] = ACTIONS(307), + [aux_sym_accumulate_statement_token1] = ACTIONS(309), + [anon_sym_ROUTINE_DASHLEVEL] = ACTIONS(311), + [anon_sym_BLOCK_DASHLEVEL] = ACTIONS(311), }, [239] = { - [sym_body] = STATE(4534), + [sym_body] = STATE(3973), [sym_comment] = STATE(239), - [sym_qualified_name] = STATE(4733), + [sym_qualified_name] = STATE(4814), + [sym__block_terminator] = STATE(1238), [sym_include] = STATE(239), - [sym_assignment] = STATE(4314), - [sym_variable_definition] = STATE(1535), - [sym_variable_assignment] = STATE(1535), - [sym_buffer_definition] = STATE(1535), - [sym_query_definition] = STATE(1535), - [sym_function_call_statement] = STATE(1535), - [sym_function_call] = STATE(4086), - [sym_if_statement] = STATE(1535), - [sym_label] = STATE(1536), - [sym_repeat_statement] = STATE(1535), - [sym_procedure_statement] = STATE(1535), - [sym_procedure_parameter_definition] = STATE(1535), - [sym_function_statement] = STATE(1535), - [sym_return_statement] = STATE(1535), - [sym_interface_statement] = STATE(1535), - [sym_using_statement] = STATE(1535), - [sym_class_statement] = STATE(1535), - [sym_object_access] = STATE(3567), - [sym_stream_definition] = STATE(1535), - [sym_input_close_statement] = STATE(1535), - [sym_output_close_statement] = STATE(1535), - [sym__stream_statement] = STATE(1535), - [sym_input_stream_statement] = STATE(1537), - [sym_output_stream_statement] = STATE(1537), - [sym_do_block] = STATE(1535), - [sym_case_statement] = STATE(1535), - [sym_for_statement] = STATE(1535), - [sym_find_statement] = STATE(1535), - [sym_abl_statement] = STATE(1535), - [sym_assign_statement] = STATE(1535), - [sym_catch_statement] = STATE(1535), - [sym_finally_statement] = STATE(1535), - [sym_accumulate_statement] = STATE(1535), - [sym_undo_statement] = STATE(1535), - [sym_error_scope_statement] = STATE(1535), - [sym_temp_table_definition] = STATE(1535), - [sym_on_statement] = STATE(1535), - [sym__statement] = STATE(1538), - [aux_sym_source_code_repeat1] = STATE(276), - [sym_identifier] = ACTIONS(227), + [sym_assignment] = STATE(4463), + [sym_variable_definition] = STATE(1550), + [sym_variable_assignment] = STATE(1550), + [sym_buffer_definition] = STATE(1550), + [sym_query_definition] = STATE(1550), + [sym_function_call_statement] = STATE(1550), + [sym_function_call] = STATE(4558), + [sym_if_statement] = STATE(1550), + [sym_label] = STATE(1551), + [sym_repeat_statement] = STATE(1550), + [sym_procedure_statement] = STATE(1550), + [sym_procedure_parameter_definition] = STATE(1550), + [sym_function_statement] = STATE(1550), + [sym_return_statement] = STATE(1550), + [sym_interface_statement] = STATE(1550), + [sym_using_statement] = STATE(1550), + [sym_class_statement] = STATE(1550), + [sym_object_access] = STATE(3661), + [sym_stream_definition] = STATE(1550), + [sym_input_close_statement] = STATE(1550), + [sym_output_close_statement] = STATE(1550), + [sym__stream_statement] = STATE(1550), + [sym_input_stream_statement] = STATE(1552), + [sym_output_stream_statement] = STATE(1552), + [sym_do_block] = STATE(1550), + [sym_case_statement] = STATE(1550), + [sym_for_statement] = STATE(1550), + [sym_find_statement] = STATE(1550), + [sym_abl_statement] = STATE(1550), + [sym_assign_statement] = STATE(1550), + [sym_catch_statement] = STATE(1550), + [sym_finally_statement] = STATE(1550), + [sym_accumulate_statement] = STATE(1550), + [sym_undo_statement] = STATE(1550), + [sym_error_scope_statement] = STATE(1550), + [sym_temp_table_definition] = STATE(1550), + [sym_on_statement] = STATE(1550), + [sym__statement] = STATE(1553), + [aux_sym_source_code_repeat1] = STATE(286), + [sym_identifier] = ACTIONS(263), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), [anon_sym_LBRACE] = ACTIONS(7), - [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), + [aux_sym__block_terminator_token1] = ACTIONS(325), + [aux_sym_input_expression_token1] = ACTIONS(267), + [aux_sym_primitive_type_token19] = ACTIONS(269), + [aux_sym_variable_definition_token1] = ACTIONS(271), + [aux_sym_variable_definition_token2] = ACTIONS(273), + [aux_sym_buffer_definition_token2] = ACTIONS(275), + [aux_sym_argument_mode_token1] = ACTIONS(277), + [aux_sym_if_statement_token1] = ACTIONS(279), + [aux_sym_repeat_statement_token1] = ACTIONS(281), + [aux_sym__procedure_terminator_token1] = ACTIONS(283), + [aux_sym_procedure_parameter_definition_token1] = ACTIONS(285), + [aux_sym__function_terminator_token1] = ACTIONS(287), + [aux_sym_interface_statement_token1] = ACTIONS(289), + [aux_sym_using_statement_token1] = ACTIONS(291), + [aux_sym_on_error_phrase_token1] = ACTIONS(293), + [aux_sym_on_error_phrase_token3] = ACTIONS(295), + [aux_sym_do_block_token1] = ACTIONS(297), + [aux_sym__case_terminator_token1] = ACTIONS(299), + [aux_sym_find_statement_token1] = ACTIONS(301), + [aux_sym_assign_statement_token1] = ACTIONS(303), + [aux_sym_catch_statement_token1] = ACTIONS(305), + [aux_sym_finally_statement_token1] = ACTIONS(307), + [aux_sym_accumulate_statement_token1] = ACTIONS(309), + [anon_sym_ROUTINE_DASHLEVEL] = ACTIONS(311), + [anon_sym_BLOCK_DASHLEVEL] = ACTIONS(311), }, [240] = { - [sym_body] = STATE(4665), + [sym_body] = STATE(3914), [sym_comment] = STATE(240), - [sym_qualified_name] = STATE(4733), + [sym_qualified_name] = STATE(4814), + [sym__block_terminator] = STATE(1252), [sym_include] = STATE(240), - [sym_assignment] = STATE(4314), - [sym_variable_definition] = STATE(1535), - [sym_variable_assignment] = STATE(1535), - [sym_buffer_definition] = STATE(1535), - [sym_query_definition] = STATE(1535), - [sym_function_call_statement] = STATE(1535), - [sym_function_call] = STATE(4086), - [sym_if_statement] = STATE(1535), - [sym_label] = STATE(1536), - [sym_repeat_statement] = STATE(1535), - [sym_procedure_statement] = STATE(1535), - [sym_procedure_parameter_definition] = STATE(1535), - [sym_function_statement] = STATE(1535), - [sym_return_statement] = STATE(1535), - [sym_interface_statement] = STATE(1535), - [sym_using_statement] = STATE(1535), - [sym_class_statement] = STATE(1535), - [sym_object_access] = STATE(3567), - [sym_stream_definition] = STATE(1535), - [sym_input_close_statement] = STATE(1535), - [sym_output_close_statement] = STATE(1535), - [sym__stream_statement] = STATE(1535), - [sym_input_stream_statement] = STATE(1537), - [sym_output_stream_statement] = STATE(1537), - [sym_do_block] = STATE(1535), - [sym_case_statement] = STATE(1535), - [sym_for_statement] = STATE(1535), - [sym_find_statement] = STATE(1535), - [sym_abl_statement] = STATE(1535), - [sym_assign_statement] = STATE(1535), - [sym_catch_statement] = STATE(1535), - [sym_finally_statement] = STATE(1535), - [sym_accumulate_statement] = STATE(1535), - [sym_undo_statement] = STATE(1535), - [sym_error_scope_statement] = STATE(1535), - [sym_temp_table_definition] = STATE(1535), - [sym_on_statement] = STATE(1535), - [sym__statement] = STATE(1538), - [aux_sym_source_code_repeat1] = STATE(276), - [sym_identifier] = ACTIONS(227), + [sym_assignment] = STATE(4463), + [sym_variable_definition] = STATE(1550), + [sym_variable_assignment] = STATE(1550), + [sym_buffer_definition] = STATE(1550), + [sym_query_definition] = STATE(1550), + [sym_function_call_statement] = STATE(1550), + [sym_function_call] = STATE(4558), + [sym_if_statement] = STATE(1550), + [sym_label] = STATE(1551), + [sym_repeat_statement] = STATE(1550), + [sym_procedure_statement] = STATE(1550), + [sym_procedure_parameter_definition] = STATE(1550), + [sym_function_statement] = STATE(1550), + [sym_return_statement] = STATE(1550), + [sym_interface_statement] = STATE(1550), + [sym_using_statement] = STATE(1550), + [sym_class_statement] = STATE(1550), + [sym_object_access] = STATE(3661), + [sym_stream_definition] = STATE(1550), + [sym_input_close_statement] = STATE(1550), + [sym_output_close_statement] = STATE(1550), + [sym__stream_statement] = STATE(1550), + [sym_input_stream_statement] = STATE(1552), + [sym_output_stream_statement] = STATE(1552), + [sym_do_block] = STATE(1550), + [sym_case_statement] = STATE(1550), + [sym_for_statement] = STATE(1550), + [sym_find_statement] = STATE(1550), + [sym_abl_statement] = STATE(1550), + [sym_assign_statement] = STATE(1550), + [sym_catch_statement] = STATE(1550), + [sym_finally_statement] = STATE(1550), + [sym_accumulate_statement] = STATE(1550), + [sym_undo_statement] = STATE(1550), + [sym_error_scope_statement] = STATE(1550), + [sym_temp_table_definition] = STATE(1550), + [sym_on_statement] = STATE(1550), + [sym__statement] = STATE(1553), + [aux_sym_source_code_repeat1] = STATE(286), + [sym_identifier] = ACTIONS(263), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), [anon_sym_LBRACE] = ACTIONS(7), - [aux_sym__block_terminator_token1] = ACTIONS(335), - [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), + [aux_sym__block_terminator_token1] = ACTIONS(325), + [aux_sym_input_expression_token1] = ACTIONS(267), + [aux_sym_primitive_type_token19] = ACTIONS(269), + [aux_sym_variable_definition_token1] = ACTIONS(271), + [aux_sym_variable_definition_token2] = ACTIONS(273), + [aux_sym_buffer_definition_token2] = ACTIONS(275), + [aux_sym_argument_mode_token1] = ACTIONS(277), + [aux_sym_if_statement_token1] = ACTIONS(279), + [aux_sym_repeat_statement_token1] = ACTIONS(281), + [aux_sym__procedure_terminator_token1] = ACTIONS(283), + [aux_sym_procedure_parameter_definition_token1] = ACTIONS(285), + [aux_sym__function_terminator_token1] = ACTIONS(287), + [aux_sym_interface_statement_token1] = ACTIONS(289), + [aux_sym_using_statement_token1] = ACTIONS(291), + [aux_sym_on_error_phrase_token1] = ACTIONS(293), + [aux_sym_on_error_phrase_token3] = ACTIONS(295), + [aux_sym_do_block_token1] = ACTIONS(297), + [aux_sym__case_terminator_token1] = ACTIONS(299), + [aux_sym_find_statement_token1] = ACTIONS(301), + [aux_sym_assign_statement_token1] = ACTIONS(303), + [aux_sym_catch_statement_token1] = ACTIONS(305), + [aux_sym_finally_statement_token1] = ACTIONS(307), + [aux_sym_accumulate_statement_token1] = ACTIONS(309), + [anon_sym_ROUTINE_DASHLEVEL] = ACTIONS(311), + [anon_sym_BLOCK_DASHLEVEL] = ACTIONS(311), }, [241] = { - [sym_body] = STATE(4529), + [sym_body] = STATE(3891), [sym_comment] = STATE(241), - [sym_qualified_name] = STATE(4733), + [sym_qualified_name] = STATE(4814), + [sym__block_terminator] = STATE(1370), [sym_include] = STATE(241), - [sym_assignment] = STATE(4314), - [sym_variable_definition] = STATE(1535), - [sym_variable_assignment] = STATE(1535), - [sym_buffer_definition] = STATE(1535), - [sym_query_definition] = STATE(1535), - [sym_function_call_statement] = STATE(1535), - [sym_function_call] = STATE(4086), - [sym_if_statement] = STATE(1535), - [sym_label] = STATE(1536), - [sym_repeat_statement] = STATE(1535), - [sym_procedure_statement] = STATE(1535), - [sym_procedure_parameter_definition] = STATE(1535), - [sym_function_statement] = STATE(1535), - [sym_return_statement] = STATE(1535), - [sym_interface_statement] = STATE(1535), - [sym_using_statement] = STATE(1535), - [sym_class_statement] = STATE(1535), - [sym_object_access] = STATE(3567), - [sym_stream_definition] = STATE(1535), - [sym_input_close_statement] = STATE(1535), - [sym_output_close_statement] = STATE(1535), - [sym__stream_statement] = STATE(1535), - [sym_input_stream_statement] = STATE(1537), - [sym_output_stream_statement] = STATE(1537), - [sym_do_block] = STATE(1535), - [sym_case_statement] = STATE(1535), - [sym_for_statement] = STATE(1535), - [sym_find_statement] = STATE(1535), - [sym_abl_statement] = STATE(1535), - [sym_assign_statement] = STATE(1535), - [sym_catch_statement] = STATE(1535), - [sym_finally_statement] = STATE(1535), - [sym_accumulate_statement] = STATE(1535), - [sym_undo_statement] = STATE(1535), - [sym_error_scope_statement] = STATE(1535), - [sym_temp_table_definition] = STATE(1535), - [sym_on_statement] = STATE(1535), - [sym__statement] = STATE(1538), - [aux_sym_source_code_repeat1] = STATE(276), - [sym_identifier] = ACTIONS(227), + [sym_assignment] = STATE(4463), + [sym_variable_definition] = STATE(1550), + [sym_variable_assignment] = STATE(1550), + [sym_buffer_definition] = STATE(1550), + [sym_query_definition] = STATE(1550), + [sym_function_call_statement] = STATE(1550), + [sym_function_call] = STATE(4558), + [sym_if_statement] = STATE(1550), + [sym_label] = STATE(1551), + [sym_repeat_statement] = STATE(1550), + [sym_procedure_statement] = STATE(1550), + [sym_procedure_parameter_definition] = STATE(1550), + [sym_function_statement] = STATE(1550), + [sym_return_statement] = STATE(1550), + [sym_interface_statement] = STATE(1550), + [sym_using_statement] = STATE(1550), + [sym_class_statement] = STATE(1550), + [sym_object_access] = STATE(3661), + [sym_stream_definition] = STATE(1550), + [sym_input_close_statement] = STATE(1550), + [sym_output_close_statement] = STATE(1550), + [sym__stream_statement] = STATE(1550), + [sym_input_stream_statement] = STATE(1552), + [sym_output_stream_statement] = STATE(1552), + [sym_do_block] = STATE(1550), + [sym_case_statement] = STATE(1550), + [sym_for_statement] = STATE(1550), + [sym_find_statement] = STATE(1550), + [sym_abl_statement] = STATE(1550), + [sym_assign_statement] = STATE(1550), + [sym_catch_statement] = STATE(1550), + [sym_finally_statement] = STATE(1550), + [sym_accumulate_statement] = STATE(1550), + [sym_undo_statement] = STATE(1550), + [sym_error_scope_statement] = STATE(1550), + [sym_temp_table_definition] = STATE(1550), + [sym_on_statement] = STATE(1550), + [sym__statement] = STATE(1553), + [aux_sym_source_code_repeat1] = STATE(286), + [sym_identifier] = ACTIONS(263), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), [anon_sym_LBRACE] = ACTIONS(7), - [aux_sym__block_terminator_token1] = ACTIONS(337), - [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), + [aux_sym__block_terminator_token1] = ACTIONS(325), + [aux_sym_input_expression_token1] = ACTIONS(267), + [aux_sym_primitive_type_token19] = ACTIONS(269), + [aux_sym_variable_definition_token1] = ACTIONS(271), + [aux_sym_variable_definition_token2] = ACTIONS(273), + [aux_sym_buffer_definition_token2] = ACTIONS(275), + [aux_sym_argument_mode_token1] = ACTIONS(277), + [aux_sym_if_statement_token1] = ACTIONS(279), + [aux_sym_repeat_statement_token1] = ACTIONS(281), + [aux_sym__procedure_terminator_token1] = ACTIONS(283), + [aux_sym_procedure_parameter_definition_token1] = ACTIONS(285), + [aux_sym__function_terminator_token1] = ACTIONS(287), + [aux_sym_interface_statement_token1] = ACTIONS(289), + [aux_sym_using_statement_token1] = ACTIONS(291), + [aux_sym_on_error_phrase_token1] = ACTIONS(293), + [aux_sym_on_error_phrase_token3] = ACTIONS(295), + [aux_sym_do_block_token1] = ACTIONS(297), + [aux_sym__case_terminator_token1] = ACTIONS(299), + [aux_sym_find_statement_token1] = ACTIONS(301), + [aux_sym_assign_statement_token1] = ACTIONS(303), + [aux_sym_catch_statement_token1] = ACTIONS(305), + [aux_sym_finally_statement_token1] = ACTIONS(307), + [aux_sym_accumulate_statement_token1] = ACTIONS(309), + [anon_sym_ROUTINE_DASHLEVEL] = ACTIONS(311), + [anon_sym_BLOCK_DASHLEVEL] = ACTIONS(311), }, [242] = { - [sym_body] = STATE(4395), + [sym_body] = STATE(4380), [sym_comment] = STATE(242), - [sym_qualified_name] = STATE(4733), + [sym_qualified_name] = STATE(4814), [sym_include] = STATE(242), - [sym_assignment] = STATE(4314), - [sym_variable_definition] = STATE(1535), - [sym_variable_assignment] = STATE(1535), - [sym_buffer_definition] = STATE(1535), - [sym_query_definition] = STATE(1535), - [sym_function_call_statement] = STATE(1535), - [sym_function_call] = STATE(4086), - [sym_if_statement] = STATE(1535), - [sym_label] = STATE(1536), - [sym_repeat_statement] = STATE(1535), - [sym_procedure_statement] = STATE(1535), - [sym_procedure_parameter_definition] = STATE(1535), - [sym_function_statement] = STATE(1535), - [sym_return_statement] = STATE(1535), - [sym_interface_statement] = STATE(1535), - [sym_using_statement] = STATE(1535), - [sym_class_statement] = STATE(1535), - [sym_object_access] = STATE(3567), - [sym_stream_definition] = STATE(1535), - [sym_input_close_statement] = STATE(1535), - [sym_output_close_statement] = STATE(1535), - [sym__stream_statement] = STATE(1535), - [sym_input_stream_statement] = STATE(1537), - [sym_output_stream_statement] = STATE(1537), - [sym_do_block] = STATE(1535), - [sym_case_statement] = STATE(1535), - [sym_for_statement] = STATE(1535), - [sym_find_statement] = STATE(1535), - [sym_abl_statement] = STATE(1535), - [sym_assign_statement] = STATE(1535), - [sym_catch_statement] = STATE(1535), - [sym_finally_statement] = STATE(1535), - [sym_accumulate_statement] = STATE(1535), - [sym_undo_statement] = STATE(1535), - [sym_error_scope_statement] = STATE(1535), - [sym_temp_table_definition] = STATE(1535), - [sym_on_statement] = STATE(1535), - [sym__statement] = STATE(1538), - [aux_sym_source_code_repeat1] = STATE(276), - [sym_identifier] = ACTIONS(227), + [sym_assignment] = STATE(4463), + [sym_variable_definition] = STATE(1550), + [sym_variable_assignment] = STATE(1550), + [sym_buffer_definition] = STATE(1550), + [sym_query_definition] = STATE(1550), + [sym_function_call_statement] = STATE(1550), + [sym_function_call] = STATE(4558), + [sym_if_statement] = STATE(1550), + [sym_label] = STATE(1551), + [sym_repeat_statement] = STATE(1550), + [sym_procedure_statement] = STATE(1550), + [sym_procedure_parameter_definition] = STATE(1550), + [sym_function_statement] = STATE(1550), + [sym_return_statement] = STATE(1550), + [sym_interface_statement] = STATE(1550), + [sym_using_statement] = STATE(1550), + [sym_class_statement] = STATE(1550), + [sym_object_access] = STATE(3661), + [sym_stream_definition] = STATE(1550), + [sym_input_close_statement] = STATE(1550), + [sym_output_close_statement] = STATE(1550), + [sym__stream_statement] = STATE(1550), + [sym_input_stream_statement] = STATE(1552), + [sym_output_stream_statement] = STATE(1552), + [sym_do_block] = STATE(1550), + [sym_case_statement] = STATE(1550), + [sym_for_statement] = STATE(1550), + [sym_find_statement] = STATE(1550), + [sym_abl_statement] = STATE(1550), + [sym_assign_statement] = STATE(1550), + [sym_catch_statement] = STATE(1550), + [sym_finally_statement] = STATE(1550), + [sym_accumulate_statement] = STATE(1550), + [sym_undo_statement] = STATE(1550), + [sym_error_scope_statement] = STATE(1550), + [sym_temp_table_definition] = STATE(1550), + [sym_on_statement] = STATE(1550), + [sym__statement] = STATE(1553), + [aux_sym_source_code_repeat1] = STATE(286), + [sym_identifier] = ACTIONS(263), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), [anon_sym_LBRACE] = ACTIONS(7), - [aux_sym__block_terminator_token1] = ACTIONS(339), - [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), + [aux_sym__block_terminator_token1] = ACTIONS(329), + [aux_sym_input_expression_token1] = ACTIONS(267), + [aux_sym_primitive_type_token19] = ACTIONS(269), + [aux_sym_variable_definition_token1] = ACTIONS(271), + [aux_sym_variable_definition_token2] = ACTIONS(273), + [aux_sym_buffer_definition_token2] = ACTIONS(275), + [aux_sym_argument_mode_token1] = ACTIONS(277), + [aux_sym_if_statement_token1] = ACTIONS(279), + [aux_sym_repeat_statement_token1] = ACTIONS(281), + [aux_sym__procedure_terminator_token1] = ACTIONS(283), + [aux_sym_procedure_parameter_definition_token1] = ACTIONS(285), + [aux_sym__function_terminator_token1] = ACTIONS(287), + [aux_sym_interface_statement_token1] = ACTIONS(289), + [aux_sym_using_statement_token1] = ACTIONS(291), + [aux_sym_on_error_phrase_token1] = ACTIONS(293), + [aux_sym_on_error_phrase_token3] = ACTIONS(295), + [aux_sym_do_block_token1] = ACTIONS(297), + [aux_sym__case_terminator_token1] = ACTIONS(299), + [aux_sym_find_statement_token1] = ACTIONS(301), + [aux_sym_assign_statement_token1] = ACTIONS(303), + [aux_sym_catch_statement_token1] = ACTIONS(305), + [aux_sym_finally_statement_token1] = ACTIONS(307), + [aux_sym_accumulate_statement_token1] = ACTIONS(309), + [anon_sym_ROUTINE_DASHLEVEL] = ACTIONS(311), + [anon_sym_BLOCK_DASHLEVEL] = ACTIONS(311), }, [243] = { - [sym_body] = STATE(4448), + [sym_body] = STATE(4254), [sym_comment] = STATE(243), - [sym_qualified_name] = STATE(4733), + [sym_qualified_name] = STATE(4814), [sym_include] = STATE(243), - [sym_assignment] = STATE(4314), - [sym_variable_definition] = STATE(1535), - [sym_variable_assignment] = STATE(1535), - [sym_buffer_definition] = STATE(1535), - [sym_query_definition] = STATE(1535), - [sym_function_call_statement] = STATE(1535), - [sym_function_call] = STATE(4086), - [sym_if_statement] = STATE(1535), - [sym_label] = STATE(1536), - [sym_repeat_statement] = STATE(1535), - [sym_procedure_statement] = STATE(1535), - [sym_procedure_parameter_definition] = STATE(1535), - [sym_function_statement] = STATE(1535), - [sym_return_statement] = STATE(1535), - [sym_interface_statement] = STATE(1535), - [sym_using_statement] = STATE(1535), - [sym_class_statement] = STATE(1535), - [sym_object_access] = STATE(3567), - [sym_stream_definition] = STATE(1535), - [sym_input_close_statement] = STATE(1535), - [sym_output_close_statement] = STATE(1535), - [sym__stream_statement] = STATE(1535), - [sym_input_stream_statement] = STATE(1537), - [sym_output_stream_statement] = STATE(1537), - [sym_do_block] = STATE(1535), - [sym_case_statement] = STATE(1535), - [sym_for_statement] = STATE(1535), - [sym_find_statement] = STATE(1535), - [sym_abl_statement] = STATE(1535), - [sym_assign_statement] = STATE(1535), - [sym_catch_statement] = STATE(1535), - [sym_finally_statement] = STATE(1535), - [sym_accumulate_statement] = STATE(1535), - [sym_undo_statement] = STATE(1535), - [sym_error_scope_statement] = STATE(1535), - [sym_temp_table_definition] = STATE(1535), - [sym_on_statement] = STATE(1535), - [sym__statement] = STATE(1538), - [aux_sym_source_code_repeat1] = STATE(276), - [sym_identifier] = ACTIONS(227), + [sym_assignment] = STATE(4463), + [sym_variable_definition] = STATE(1550), + [sym_variable_assignment] = STATE(1550), + [sym_buffer_definition] = STATE(1550), + [sym_query_definition] = STATE(1550), + [sym_function_call_statement] = STATE(1550), + [sym_function_call] = STATE(4558), + [sym_if_statement] = STATE(1550), + [sym_label] = STATE(1551), + [sym_repeat_statement] = STATE(1550), + [sym_procedure_statement] = STATE(1550), + [sym_procedure_parameter_definition] = STATE(1550), + [sym_function_statement] = STATE(1550), + [sym_return_statement] = STATE(1550), + [sym_interface_statement] = STATE(1550), + [sym_using_statement] = STATE(1550), + [sym_class_statement] = STATE(1550), + [sym_object_access] = STATE(3661), + [sym_stream_definition] = STATE(1550), + [sym_input_close_statement] = STATE(1550), + [sym_output_close_statement] = STATE(1550), + [sym__stream_statement] = STATE(1550), + [sym_input_stream_statement] = STATE(1552), + [sym_output_stream_statement] = STATE(1552), + [sym_do_block] = STATE(1550), + [sym_case_statement] = STATE(1550), + [sym_for_statement] = STATE(1550), + [sym_find_statement] = STATE(1550), + [sym_abl_statement] = STATE(1550), + [sym_assign_statement] = STATE(1550), + [sym_catch_statement] = STATE(1550), + [sym_finally_statement] = STATE(1550), + [sym_accumulate_statement] = STATE(1550), + [sym_undo_statement] = STATE(1550), + [sym_error_scope_statement] = STATE(1550), + [sym_temp_table_definition] = STATE(1550), + [sym_on_statement] = STATE(1550), + [sym__statement] = STATE(1553), + [aux_sym_source_code_repeat1] = STATE(286), + [sym_identifier] = ACTIONS(263), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), [anon_sym_LBRACE] = ACTIONS(7), - [aux_sym__block_terminator_token1] = ACTIONS(341), - [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), + [aux_sym__block_terminator_token1] = ACTIONS(331), + [aux_sym_input_expression_token1] = ACTIONS(267), + [aux_sym_primitive_type_token19] = ACTIONS(269), + [aux_sym_variable_definition_token1] = ACTIONS(271), + [aux_sym_variable_definition_token2] = ACTIONS(273), + [aux_sym_buffer_definition_token2] = ACTIONS(275), + [aux_sym_argument_mode_token1] = ACTIONS(277), + [aux_sym_if_statement_token1] = ACTIONS(279), + [aux_sym_repeat_statement_token1] = ACTIONS(281), + [aux_sym__procedure_terminator_token1] = ACTIONS(283), + [aux_sym_procedure_parameter_definition_token1] = ACTIONS(285), + [aux_sym__function_terminator_token1] = ACTIONS(287), + [aux_sym_interface_statement_token1] = ACTIONS(289), + [aux_sym_using_statement_token1] = ACTIONS(291), + [aux_sym_on_error_phrase_token1] = ACTIONS(293), + [aux_sym_on_error_phrase_token3] = ACTIONS(295), + [aux_sym_do_block_token1] = ACTIONS(297), + [aux_sym__case_terminator_token1] = ACTIONS(299), + [aux_sym_find_statement_token1] = ACTIONS(301), + [aux_sym_assign_statement_token1] = ACTIONS(303), + [aux_sym_catch_statement_token1] = ACTIONS(305), + [aux_sym_finally_statement_token1] = ACTIONS(307), + [aux_sym_accumulate_statement_token1] = ACTIONS(309), + [anon_sym_ROUTINE_DASHLEVEL] = ACTIONS(311), + [anon_sym_BLOCK_DASHLEVEL] = ACTIONS(311), }, [244] = { - [sym_body] = STATE(4450), + [sym_body] = STATE(4538), [sym_comment] = STATE(244), - [sym_qualified_name] = STATE(4733), + [sym_qualified_name] = STATE(4814), [sym_include] = STATE(244), - [sym_assignment] = STATE(4314), - [sym_variable_definition] = STATE(1535), - [sym_variable_assignment] = STATE(1535), - [sym_buffer_definition] = STATE(1535), - [sym_query_definition] = STATE(1535), - [sym_function_call_statement] = STATE(1535), - [sym_function_call] = STATE(4086), - [sym_if_statement] = STATE(1535), - [sym_label] = STATE(1536), - [sym_repeat_statement] = STATE(1535), - [sym_procedure_statement] = STATE(1535), - [sym_procedure_parameter_definition] = STATE(1535), - [sym_function_statement] = STATE(1535), - [sym_return_statement] = STATE(1535), - [sym_interface_statement] = STATE(1535), - [sym_using_statement] = STATE(1535), - [sym_class_statement] = STATE(1535), - [sym_object_access] = STATE(3567), - [sym_stream_definition] = STATE(1535), - [sym_input_close_statement] = STATE(1535), - [sym_output_close_statement] = STATE(1535), - [sym__stream_statement] = STATE(1535), - [sym_input_stream_statement] = STATE(1537), - [sym_output_stream_statement] = STATE(1537), - [sym_do_block] = STATE(1535), - [sym_case_statement] = STATE(1535), - [sym_for_statement] = STATE(1535), - [sym_find_statement] = STATE(1535), - [sym_abl_statement] = STATE(1535), - [sym_assign_statement] = STATE(1535), - [sym_catch_statement] = STATE(1535), - [sym_finally_statement] = STATE(1535), - [sym_accumulate_statement] = STATE(1535), - [sym_undo_statement] = STATE(1535), - [sym_error_scope_statement] = STATE(1535), - [sym_temp_table_definition] = STATE(1535), - [sym_on_statement] = STATE(1535), - [sym__statement] = STATE(1538), - [aux_sym_source_code_repeat1] = STATE(276), - [sym_identifier] = ACTIONS(227), + [sym_assignment] = STATE(4463), + [sym_variable_definition] = STATE(1550), + [sym_variable_assignment] = STATE(1550), + [sym_buffer_definition] = STATE(1550), + [sym_query_definition] = STATE(1550), + [sym_function_call_statement] = STATE(1550), + [sym_function_call] = STATE(4558), + [sym_if_statement] = STATE(1550), + [sym_label] = STATE(1551), + [sym_repeat_statement] = STATE(1550), + [sym_procedure_statement] = STATE(1550), + [sym_procedure_parameter_definition] = STATE(1550), + [sym_function_statement] = STATE(1550), + [sym_return_statement] = STATE(1550), + [sym_interface_statement] = STATE(1550), + [sym_using_statement] = STATE(1550), + [sym_class_statement] = STATE(1550), + [sym_object_access] = STATE(3661), + [sym_stream_definition] = STATE(1550), + [sym_input_close_statement] = STATE(1550), + [sym_output_close_statement] = STATE(1550), + [sym__stream_statement] = STATE(1550), + [sym_input_stream_statement] = STATE(1552), + [sym_output_stream_statement] = STATE(1552), + [sym_do_block] = STATE(1550), + [sym_case_statement] = STATE(1550), + [sym_for_statement] = STATE(1550), + [sym_find_statement] = STATE(1550), + [sym_abl_statement] = STATE(1550), + [sym_assign_statement] = STATE(1550), + [sym_catch_statement] = STATE(1550), + [sym_finally_statement] = STATE(1550), + [sym_accumulate_statement] = STATE(1550), + [sym_undo_statement] = STATE(1550), + [sym_error_scope_statement] = STATE(1550), + [sym_temp_table_definition] = STATE(1550), + [sym_on_statement] = STATE(1550), + [sym__statement] = STATE(1553), + [aux_sym_source_code_repeat1] = STATE(286), + [sym_identifier] = ACTIONS(263), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), [anon_sym_LBRACE] = ACTIONS(7), - [aux_sym__block_terminator_token1] = ACTIONS(343), - [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), + [aux_sym__block_terminator_token1] = ACTIONS(333), + [aux_sym_input_expression_token1] = ACTIONS(267), + [aux_sym_primitive_type_token19] = ACTIONS(269), + [aux_sym_variable_definition_token1] = ACTIONS(271), + [aux_sym_variable_definition_token2] = ACTIONS(273), + [aux_sym_buffer_definition_token2] = ACTIONS(275), + [aux_sym_argument_mode_token1] = ACTIONS(277), + [aux_sym_if_statement_token1] = ACTIONS(279), + [aux_sym_repeat_statement_token1] = ACTIONS(281), + [aux_sym__procedure_terminator_token1] = ACTIONS(283), + [aux_sym_procedure_parameter_definition_token1] = ACTIONS(285), + [aux_sym__function_terminator_token1] = ACTIONS(287), + [aux_sym_interface_statement_token1] = ACTIONS(289), + [aux_sym_using_statement_token1] = ACTIONS(291), + [aux_sym_on_error_phrase_token1] = ACTIONS(293), + [aux_sym_on_error_phrase_token3] = ACTIONS(295), + [aux_sym_do_block_token1] = ACTIONS(297), + [aux_sym__case_terminator_token1] = ACTIONS(299), + [aux_sym_find_statement_token1] = ACTIONS(301), + [aux_sym_assign_statement_token1] = ACTIONS(303), + [aux_sym_catch_statement_token1] = ACTIONS(305), + [aux_sym_finally_statement_token1] = ACTIONS(307), + [aux_sym_accumulate_statement_token1] = ACTIONS(309), + [anon_sym_ROUTINE_DASHLEVEL] = ACTIONS(311), + [anon_sym_BLOCK_DASHLEVEL] = ACTIONS(311), }, [245] = { - [sym_body] = STATE(4475), + [sym_body] = STATE(4201), [sym_comment] = STATE(245), - [sym_qualified_name] = STATE(4733), + [sym_qualified_name] = STATE(4814), [sym_include] = STATE(245), - [sym_assignment] = STATE(4314), - [sym_variable_definition] = STATE(1535), - [sym_variable_assignment] = STATE(1535), - [sym_buffer_definition] = STATE(1535), - [sym_query_definition] = STATE(1535), - [sym_function_call_statement] = STATE(1535), - [sym_function_call] = STATE(4086), - [sym_if_statement] = STATE(1535), - [sym_label] = STATE(1536), - [sym_repeat_statement] = STATE(1535), - [sym_procedure_statement] = STATE(1535), - [sym_procedure_parameter_definition] = STATE(1535), - [sym_function_statement] = STATE(1535), - [sym_return_statement] = STATE(1535), - [sym_interface_statement] = STATE(1535), - [sym_using_statement] = STATE(1535), - [sym_class_statement] = STATE(1535), - [sym_object_access] = STATE(3567), - [sym_stream_definition] = STATE(1535), - [sym_input_close_statement] = STATE(1535), - [sym_output_close_statement] = STATE(1535), - [sym__stream_statement] = STATE(1535), - [sym_input_stream_statement] = STATE(1537), - [sym_output_stream_statement] = STATE(1537), - [sym_do_block] = STATE(1535), - [sym_case_statement] = STATE(1535), - [sym_for_statement] = STATE(1535), - [sym_find_statement] = STATE(1535), - [sym_abl_statement] = STATE(1535), - [sym_assign_statement] = STATE(1535), - [sym_catch_statement] = STATE(1535), - [sym_finally_statement] = STATE(1535), - [sym_accumulate_statement] = STATE(1535), - [sym_undo_statement] = STATE(1535), - [sym_error_scope_statement] = STATE(1535), - [sym_temp_table_definition] = STATE(1535), - [sym_on_statement] = STATE(1535), - [sym__statement] = STATE(1538), - [aux_sym_source_code_repeat1] = STATE(276), - [sym_identifier] = ACTIONS(227), + [sym_assignment] = STATE(4463), + [sym_variable_definition] = STATE(1550), + [sym_variable_assignment] = STATE(1550), + [sym_buffer_definition] = STATE(1550), + [sym_query_definition] = STATE(1550), + [sym_function_call_statement] = STATE(1550), + [sym_function_call] = STATE(4558), + [sym_if_statement] = STATE(1550), + [sym_label] = STATE(1551), + [sym_repeat_statement] = STATE(1550), + [sym_procedure_statement] = STATE(1550), + [sym_procedure_parameter_definition] = STATE(1550), + [sym_function_statement] = STATE(1550), + [sym_return_statement] = STATE(1550), + [sym_interface_statement] = STATE(1550), + [sym_using_statement] = STATE(1550), + [sym_class_statement] = STATE(1550), + [sym_object_access] = STATE(3661), + [sym_stream_definition] = STATE(1550), + [sym_input_close_statement] = STATE(1550), + [sym_output_close_statement] = STATE(1550), + [sym__stream_statement] = STATE(1550), + [sym_input_stream_statement] = STATE(1552), + [sym_output_stream_statement] = STATE(1552), + [sym_do_block] = STATE(1550), + [sym_case_statement] = STATE(1550), + [sym_for_statement] = STATE(1550), + [sym_find_statement] = STATE(1550), + [sym_abl_statement] = STATE(1550), + [sym_assign_statement] = STATE(1550), + [sym_catch_statement] = STATE(1550), + [sym_finally_statement] = STATE(1550), + [sym_accumulate_statement] = STATE(1550), + [sym_undo_statement] = STATE(1550), + [sym_error_scope_statement] = STATE(1550), + [sym_temp_table_definition] = STATE(1550), + [sym_on_statement] = STATE(1550), + [sym__statement] = STATE(1553), + [aux_sym_source_code_repeat1] = STATE(286), + [sym_identifier] = ACTIONS(263), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), [anon_sym_LBRACE] = ACTIONS(7), - [aux_sym__block_terminator_token1] = ACTIONS(345), - [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), + [aux_sym__block_terminator_token1] = ACTIONS(335), + [aux_sym_input_expression_token1] = ACTIONS(267), + [aux_sym_primitive_type_token19] = ACTIONS(269), + [aux_sym_variable_definition_token1] = ACTIONS(271), + [aux_sym_variable_definition_token2] = ACTIONS(273), + [aux_sym_buffer_definition_token2] = ACTIONS(275), + [aux_sym_argument_mode_token1] = ACTIONS(277), + [aux_sym_if_statement_token1] = ACTIONS(279), + [aux_sym_repeat_statement_token1] = ACTIONS(281), + [aux_sym__procedure_terminator_token1] = ACTIONS(283), + [aux_sym_procedure_parameter_definition_token1] = ACTIONS(285), + [aux_sym__function_terminator_token1] = ACTIONS(287), + [aux_sym_interface_statement_token1] = ACTIONS(289), + [aux_sym_using_statement_token1] = ACTIONS(291), + [aux_sym_on_error_phrase_token1] = ACTIONS(293), + [aux_sym_on_error_phrase_token3] = ACTIONS(295), + [aux_sym_do_block_token1] = ACTIONS(297), + [aux_sym__case_terminator_token1] = ACTIONS(299), + [aux_sym_find_statement_token1] = ACTIONS(301), + [aux_sym_assign_statement_token1] = ACTIONS(303), + [aux_sym_catch_statement_token1] = ACTIONS(305), + [aux_sym_finally_statement_token1] = ACTIONS(307), + [aux_sym_accumulate_statement_token1] = ACTIONS(309), + [anon_sym_ROUTINE_DASHLEVEL] = ACTIONS(311), + [anon_sym_BLOCK_DASHLEVEL] = ACTIONS(311), }, [246] = { - [sym_body] = STATE(4645), [sym_comment] = STATE(246), - [sym_qualified_name] = STATE(4733), + [sym_constant] = STATE(20), + [sym_qualified_name] = STATE(20), + [sym_boolean_literal] = STATE(20), + [sym__decimal_literal] = STATE(23), + [sym_number_literal] = STATE(20), + [sym__string_literal] = STATE(20), + [sym_double_quoted_string] = STATE(18), + [sym_single_quoted_string] = STATE(18), + [sym_parenthesized_expression] = STATE(20), + [sym_logical_expression] = STATE(24), + [sym_unary_expression] = STATE(20), + [sym_ambiguous_expression] = STATE(20), + [sym_current_changed_expression] = STATE(20), + [sym_locked_expression] = STATE(20), + [sym_input_expression] = STATE(20), + [sym_additive_expression] = STATE(24), + [sym_multiplicative_expression] = STATE(24), + [sym_comparison_expression] = STATE(24), + [sym__binary_expression] = STATE(20), [sym_include] = STATE(246), - [sym_assignment] = STATE(4314), - [sym_variable_definition] = STATE(1535), - [sym_variable_assignment] = STATE(1535), - [sym_buffer_definition] = STATE(1535), - [sym_query_definition] = STATE(1535), - [sym_function_call_statement] = STATE(1535), - [sym_function_call] = STATE(4086), - [sym_if_statement] = STATE(1535), - [sym_label] = STATE(1536), - [sym_repeat_statement] = STATE(1535), - [sym_procedure_statement] = STATE(1535), - [sym_procedure_parameter_definition] = STATE(1535), - [sym_function_statement] = STATE(1535), - [sym_return_statement] = STATE(1535), - [sym_interface_statement] = STATE(1535), - [sym_using_statement] = STATE(1535), - [sym_class_statement] = STATE(1535), - [sym_object_access] = STATE(3567), - [sym_stream_definition] = STATE(1535), - [sym_input_close_statement] = STATE(1535), - [sym_output_close_statement] = STATE(1535), - [sym__stream_statement] = STATE(1535), - [sym_input_stream_statement] = STATE(1537), - [sym_output_stream_statement] = STATE(1537), - [sym_do_block] = STATE(1535), - [sym_case_statement] = STATE(1535), - [sym_for_statement] = STATE(1535), - [sym_find_statement] = STATE(1535), - [sym_abl_statement] = STATE(1535), - [sym_assign_statement] = STATE(1535), - [sym_catch_statement] = STATE(1535), - [sym_finally_statement] = STATE(1535), - [sym_accumulate_statement] = STATE(1535), - [sym_undo_statement] = STATE(1535), - [sym_error_scope_statement] = STATE(1535), - [sym_temp_table_definition] = STATE(1535), - [sym_on_statement] = STATE(1535), - [sym__statement] = STATE(1538), - [aux_sym_source_code_repeat1] = STATE(276), - [sym_identifier] = ACTIONS(227), + [sym__function_call_arguments] = STATE(4297), + [sym_argument_mode] = STATE(4685), + [sym__function_argument_with_mode] = STATE(3733), + [sym_function_call_argument] = STATE(3202), + [sym_function_call] = STATE(20), + [sym_ternary_expression] = STATE(20), + [sym_new_expression] = STATE(20), + [sym_object_access] = STATE(29), + [sym_can_find_expression] = STATE(20), + [sym_accumulate_aggregate] = STATE(3346), + [sym_accumulate_expression] = STATE(20), + [sym_available_expression] = STATE(20), + [sym__expression] = STATE(877), + [sym_identifier] = ACTIONS(337), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_LBRACE] = ACTIONS(7), - [aux_sym__block_terminator_token1] = ACTIONS(347), - [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), + [anon_sym_LBRACE] = ACTIONS(339), + [sym_null_expression] = ACTIONS(341), + [aux_sym_boolean_literal_token1] = ACTIONS(343), + [aux_sym_boolean_literal_token2] = ACTIONS(343), + [aux_sym_boolean_literal_token3] = ACTIONS(343), + [aux_sym_boolean_literal_token4] = ACTIONS(343), + [sym__integer_literal] = ACTIONS(345), + [anon_sym_DQUOTE] = ACTIONS(347), + [anon_sym_SQUOTE] = ACTIONS(349), + [anon_sym_LPAREN] = ACTIONS(351), + [anon_sym_RPAREN] = ACTIONS(353), + [aux_sym_unary_expression_token1] = ACTIONS(355), + [aux_sym_unary_expression_token2] = ACTIONS(357), + [aux_sym_ambiguous_expression_token1] = ACTIONS(359), + [aux_sym_current_changed_expression_token1] = ACTIONS(361), + [aux_sym_locked_expression_token1] = ACTIONS(363), + [aux_sym_input_expression_token1] = ACTIONS(365), + [aux_sym_scope_tuning_token1] = ACTIONS(367), + [aux_sym_argument_mode_token1] = ACTIONS(369), + [aux_sym_argument_mode_token2] = ACTIONS(369), + [aux_sym_if_statement_token1] = ACTIONS(371), + [aux_sym_can_find_expression_token1] = ACTIONS(373), + [aux_sym_accumulate_aggregate_token1] = ACTIONS(375), + [aux_sym_accumulate_aggregate_token2] = ACTIONS(375), + [aux_sym_accumulate_aggregate_token3] = ACTIONS(375), + [aux_sym_accumulate_aggregate_token4] = ACTIONS(375), + [aux_sym_accumulate_aggregate_token5] = ACTIONS(375), + [aux_sym_accumulate_aggregate_token6] = ACTIONS(375), + [aux_sym_accumulate_aggregate_token7] = ACTIONS(375), + [aux_sym_accumulate_aggregate_token8] = ACTIONS(375), + [aux_sym_accumulate_aggregate_token9] = ACTIONS(375), + [aux_sym_accumulate_aggregate_token10] = ACTIONS(375), + [aux_sym_accumulate_expression_token1] = ACTIONS(377), + [aux_sym_available_expression_token1] = ACTIONS(379), + [aux_sym_available_expression_token2] = ACTIONS(379), }, [247] = { - [sym_body] = STATE(4517), + [sym_body] = STATE(4596), [sym_comment] = STATE(247), - [sym_qualified_name] = STATE(4733), + [sym_qualified_name] = STATE(4814), [sym_include] = STATE(247), - [sym_assignment] = STATE(4314), - [sym_variable_definition] = STATE(1535), - [sym_variable_assignment] = STATE(1535), - [sym_buffer_definition] = STATE(1535), - [sym_query_definition] = STATE(1535), - [sym_function_call_statement] = STATE(1535), - [sym_function_call] = STATE(4086), - [sym_if_statement] = STATE(1535), - [sym_label] = STATE(1536), - [sym_repeat_statement] = STATE(1535), - [sym_procedure_statement] = STATE(1535), - [sym_procedure_parameter_definition] = STATE(1535), - [sym_function_statement] = STATE(1535), - [sym_return_statement] = STATE(1535), - [sym_interface_statement] = STATE(1535), - [sym_using_statement] = STATE(1535), - [sym_class_statement] = STATE(1535), - [sym_object_access] = STATE(3567), - [sym_stream_definition] = STATE(1535), - [sym_input_close_statement] = STATE(1535), - [sym_output_close_statement] = STATE(1535), - [sym__stream_statement] = STATE(1535), - [sym_input_stream_statement] = STATE(1537), - [sym_output_stream_statement] = STATE(1537), - [sym_do_block] = STATE(1535), - [sym_case_statement] = STATE(1535), - [sym_for_statement] = STATE(1535), - [sym_find_statement] = STATE(1535), - [sym_abl_statement] = STATE(1535), - [sym_assign_statement] = STATE(1535), - [sym_catch_statement] = STATE(1535), - [sym_finally_statement] = STATE(1535), - [sym_accumulate_statement] = STATE(1535), - [sym_undo_statement] = STATE(1535), - [sym_error_scope_statement] = STATE(1535), - [sym_temp_table_definition] = STATE(1535), - [sym_on_statement] = STATE(1535), - [sym__statement] = STATE(1538), - [aux_sym_source_code_repeat1] = STATE(276), - [sym_identifier] = ACTIONS(227), + [sym_assignment] = STATE(4463), + [sym_variable_definition] = STATE(1550), + [sym_variable_assignment] = STATE(1550), + [sym_buffer_definition] = STATE(1550), + [sym_query_definition] = STATE(1550), + [sym_function_call_statement] = STATE(1550), + [sym_function_call] = STATE(4558), + [sym_if_statement] = STATE(1550), + [sym_label] = STATE(1551), + [sym_repeat_statement] = STATE(1550), + [sym_procedure_statement] = STATE(1550), + [sym_procedure_parameter_definition] = STATE(1550), + [sym_function_statement] = STATE(1550), + [sym_return_statement] = STATE(1550), + [sym_interface_statement] = STATE(1550), + [sym_using_statement] = STATE(1550), + [sym_class_statement] = STATE(1550), + [sym_object_access] = STATE(3661), + [sym_stream_definition] = STATE(1550), + [sym_input_close_statement] = STATE(1550), + [sym_output_close_statement] = STATE(1550), + [sym__stream_statement] = STATE(1550), + [sym_input_stream_statement] = STATE(1552), + [sym_output_stream_statement] = STATE(1552), + [sym_do_block] = STATE(1550), + [sym_case_statement] = STATE(1550), + [sym_for_statement] = STATE(1550), + [sym_find_statement] = STATE(1550), + [sym_abl_statement] = STATE(1550), + [sym_assign_statement] = STATE(1550), + [sym_catch_statement] = STATE(1550), + [sym_finally_statement] = STATE(1550), + [sym_accumulate_statement] = STATE(1550), + [sym_undo_statement] = STATE(1550), + [sym_error_scope_statement] = STATE(1550), + [sym_temp_table_definition] = STATE(1550), + [sym_on_statement] = STATE(1550), + [sym__statement] = STATE(1553), + [aux_sym_source_code_repeat1] = STATE(286), + [sym_identifier] = ACTIONS(263), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), [anon_sym_LBRACE] = ACTIONS(7), - [aux_sym__block_terminator_token1] = ACTIONS(349), - [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), + [aux_sym__block_terminator_token1] = ACTIONS(381), + [aux_sym_input_expression_token1] = ACTIONS(267), + [aux_sym_primitive_type_token19] = ACTIONS(269), + [aux_sym_variable_definition_token1] = ACTIONS(271), + [aux_sym_variable_definition_token2] = ACTIONS(273), + [aux_sym_buffer_definition_token2] = ACTIONS(275), + [aux_sym_argument_mode_token1] = ACTIONS(277), + [aux_sym_if_statement_token1] = ACTIONS(279), + [aux_sym_repeat_statement_token1] = ACTIONS(281), + [aux_sym__procedure_terminator_token1] = ACTIONS(283), + [aux_sym_procedure_parameter_definition_token1] = ACTIONS(285), + [aux_sym__function_terminator_token1] = ACTIONS(287), + [aux_sym_interface_statement_token1] = ACTIONS(289), + [aux_sym_using_statement_token1] = ACTIONS(291), + [aux_sym_on_error_phrase_token1] = ACTIONS(293), + [aux_sym_on_error_phrase_token3] = ACTIONS(295), + [aux_sym_do_block_token1] = ACTIONS(297), + [aux_sym__case_terminator_token1] = ACTIONS(299), + [aux_sym_find_statement_token1] = ACTIONS(301), + [aux_sym_assign_statement_token1] = ACTIONS(303), + [aux_sym_catch_statement_token1] = ACTIONS(305), + [aux_sym_finally_statement_token1] = ACTIONS(307), + [aux_sym_accumulate_statement_token1] = ACTIONS(309), + [anon_sym_ROUTINE_DASHLEVEL] = ACTIONS(311), + [anon_sym_BLOCK_DASHLEVEL] = ACTIONS(311), }, [248] = { - [sym_body] = STATE(4377), [sym_comment] = STATE(248), - [sym_qualified_name] = STATE(4733), + [sym_constant] = STATE(20), + [sym_qualified_name] = STATE(20), + [sym_boolean_literal] = STATE(20), + [sym__decimal_literal] = STATE(23), + [sym_number_literal] = STATE(20), + [sym__string_literal] = STATE(20), + [sym_double_quoted_string] = STATE(18), + [sym_single_quoted_string] = STATE(18), + [sym_parenthesized_expression] = STATE(20), + [sym_logical_expression] = STATE(24), + [sym_unary_expression] = STATE(20), + [sym_ambiguous_expression] = STATE(20), + [sym_current_changed_expression] = STATE(20), + [sym_locked_expression] = STATE(20), + [sym_input_expression] = STATE(20), + [sym_additive_expression] = STATE(24), + [sym_multiplicative_expression] = STATE(24), + [sym_comparison_expression] = STATE(24), + [sym__binary_expression] = STATE(20), [sym_include] = STATE(248), - [sym_assignment] = STATE(4314), - [sym_variable_definition] = STATE(1535), - [sym_variable_assignment] = STATE(1535), - [sym_buffer_definition] = STATE(1535), - [sym_query_definition] = STATE(1535), - [sym_function_call_statement] = STATE(1535), - [sym_function_call] = STATE(4086), - [sym_if_statement] = STATE(1535), - [sym_label] = STATE(1536), - [sym_repeat_statement] = STATE(1535), - [sym_procedure_statement] = STATE(1535), - [sym_procedure_parameter_definition] = STATE(1535), - [sym_function_statement] = STATE(1535), - [sym_return_statement] = STATE(1535), - [sym_interface_statement] = STATE(1535), - [sym_using_statement] = STATE(1535), - [sym_class_statement] = STATE(1535), - [sym_object_access] = STATE(3567), - [sym_stream_definition] = STATE(1535), - [sym_input_close_statement] = STATE(1535), - [sym_output_close_statement] = STATE(1535), - [sym__stream_statement] = STATE(1535), - [sym_input_stream_statement] = STATE(1537), - [sym_output_stream_statement] = STATE(1537), - [sym_do_block] = STATE(1535), - [sym_case_statement] = STATE(1535), - [sym_for_statement] = STATE(1535), - [sym_find_statement] = STATE(1535), - [sym_abl_statement] = STATE(1535), - [sym_assign_statement] = STATE(1535), - [sym_catch_statement] = STATE(1535), - [sym_finally_statement] = STATE(1535), - [sym_accumulate_statement] = STATE(1535), - [sym_undo_statement] = STATE(1535), - [sym_error_scope_statement] = STATE(1535), - [sym_temp_table_definition] = STATE(1535), - [sym_on_statement] = STATE(1535), - [sym__statement] = STATE(1538), - [aux_sym_source_code_repeat1] = STATE(276), - [sym_identifier] = ACTIONS(227), + [sym__function_call_arguments] = STATE(4297), + [sym_argument_mode] = STATE(4685), + [sym__function_argument_with_mode] = STATE(3733), + [sym_function_call_argument] = STATE(3202), + [sym_function_call] = STATE(20), + [sym_ternary_expression] = STATE(20), + [sym_new_expression] = STATE(20), + [sym_object_access] = STATE(29), + [sym_can_find_expression] = STATE(20), + [sym_accumulate_aggregate] = STATE(3430), + [sym_accumulate_expression] = STATE(20), + [sym_available_expression] = STATE(20), + [sym__expression] = STATE(877), + [sym_identifier] = ACTIONS(337), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_LBRACE] = ACTIONS(7), - [aux_sym__block_terminator_token1] = ACTIONS(351), - [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), + [anon_sym_LBRACE] = ACTIONS(339), + [sym_null_expression] = ACTIONS(341), + [aux_sym_boolean_literal_token1] = ACTIONS(343), + [aux_sym_boolean_literal_token2] = ACTIONS(343), + [aux_sym_boolean_literal_token3] = ACTIONS(343), + [aux_sym_boolean_literal_token4] = ACTIONS(343), + [sym__integer_literal] = ACTIONS(345), + [anon_sym_DQUOTE] = ACTIONS(347), + [anon_sym_SQUOTE] = ACTIONS(349), + [anon_sym_LPAREN] = ACTIONS(351), + [anon_sym_RPAREN] = ACTIONS(353), + [aux_sym_unary_expression_token1] = ACTIONS(355), + [aux_sym_unary_expression_token2] = ACTIONS(357), + [aux_sym_ambiguous_expression_token1] = ACTIONS(359), + [aux_sym_current_changed_expression_token1] = ACTIONS(361), + [aux_sym_locked_expression_token1] = ACTIONS(363), + [aux_sym_input_expression_token1] = ACTIONS(365), + [aux_sym_scope_tuning_token1] = ACTIONS(367), + [aux_sym_argument_mode_token1] = ACTIONS(369), + [aux_sym_argument_mode_token2] = ACTIONS(369), + [aux_sym_if_statement_token1] = ACTIONS(371), + [aux_sym_can_find_expression_token1] = ACTIONS(373), + [aux_sym_accumulate_aggregate_token1] = ACTIONS(375), + [aux_sym_accumulate_aggregate_token2] = ACTIONS(375), + [aux_sym_accumulate_aggregate_token3] = ACTIONS(375), + [aux_sym_accumulate_aggregate_token4] = ACTIONS(375), + [aux_sym_accumulate_aggregate_token5] = ACTIONS(375), + [aux_sym_accumulate_aggregate_token6] = ACTIONS(375), + [aux_sym_accumulate_aggregate_token7] = ACTIONS(375), + [aux_sym_accumulate_aggregate_token8] = ACTIONS(375), + [aux_sym_accumulate_aggregate_token9] = ACTIONS(375), + [aux_sym_accumulate_aggregate_token10] = ACTIONS(375), + [aux_sym_accumulate_expression_token1] = ACTIONS(377), + [aux_sym_available_expression_token1] = ACTIONS(379), + [aux_sym_available_expression_token2] = ACTIONS(379), }, [249] = { + [sym_body] = STATE(4509), [sym_comment] = STATE(249), - [sym_constant] = STATE(13), - [sym_qualified_name] = STATE(13), - [sym_boolean_literal] = STATE(13), - [sym__decimal_literal] = STATE(36), - [sym_number_literal] = STATE(13), - [sym__string_literal] = STATE(13), - [sym_double_quoted_string] = STATE(21), - [sym_single_quoted_string] = STATE(21), - [sym_parenthesized_expression] = STATE(13), - [sym_logical_expression] = STATE(37), - [sym_unary_expression] = STATE(13), - [sym_ambiguous_expression] = STATE(13), - [sym_current_changed_expression] = STATE(13), - [sym_locked_expression] = STATE(13), - [sym_input_expression] = STATE(13), - [sym_additive_expression] = STATE(37), - [sym_multiplicative_expression] = STATE(37), - [sym_comparison_expression] = STATE(37), - [sym__binary_expression] = STATE(13), + [sym_qualified_name] = STATE(4814), [sym_include] = STATE(249), - [sym__function_call_arguments] = STATE(4332), - [sym_argument_mode] = STATE(4604), - [sym__function_argument_with_mode] = STATE(3632), - [sym_function_call_argument] = STATE(3086), - [sym_function_call] = STATE(13), - [sym_ternary_expression] = STATE(13), - [sym_new_expression] = STATE(13), - [sym_object_access] = STATE(38), - [sym_can_find_expression] = STATE(13), - [sym_accumulate_aggregate] = STATE(3498), - [sym_accumulate_expression] = STATE(13), - [sym_available_expression] = STATE(13), - [sym__expression] = STATE(862), - [sym_identifier] = ACTIONS(353), + [sym_assignment] = STATE(4463), + [sym_variable_definition] = STATE(1550), + [sym_variable_assignment] = STATE(1550), + [sym_buffer_definition] = STATE(1550), + [sym_query_definition] = STATE(1550), + [sym_function_call_statement] = STATE(1550), + [sym_function_call] = STATE(4558), + [sym_if_statement] = STATE(1550), + [sym_label] = STATE(1551), + [sym_repeat_statement] = STATE(1550), + [sym_procedure_statement] = STATE(1550), + [sym_procedure_parameter_definition] = STATE(1550), + [sym_function_statement] = STATE(1550), + [sym_return_statement] = STATE(1550), + [sym_interface_statement] = STATE(1550), + [sym_using_statement] = STATE(1550), + [sym_class_statement] = STATE(1550), + [sym_object_access] = STATE(3661), + [sym_stream_definition] = STATE(1550), + [sym_input_close_statement] = STATE(1550), + [sym_output_close_statement] = STATE(1550), + [sym__stream_statement] = STATE(1550), + [sym_input_stream_statement] = STATE(1552), + [sym_output_stream_statement] = STATE(1552), + [sym_do_block] = STATE(1550), + [sym_case_statement] = STATE(1550), + [sym_for_statement] = STATE(1550), + [sym_find_statement] = STATE(1550), + [sym_abl_statement] = STATE(1550), + [sym_assign_statement] = STATE(1550), + [sym_catch_statement] = STATE(1550), + [sym_finally_statement] = STATE(1550), + [sym_accumulate_statement] = STATE(1550), + [sym_undo_statement] = STATE(1550), + [sym_error_scope_statement] = STATE(1550), + [sym_temp_table_definition] = STATE(1550), + [sym_on_statement] = STATE(1550), + [sym__statement] = STATE(1553), + [aux_sym_source_code_repeat1] = STATE(286), + [sym_identifier] = ACTIONS(263), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_LBRACE] = ACTIONS(355), - [sym_null_expression] = ACTIONS(357), - [aux_sym_boolean_literal_token1] = ACTIONS(359), - [aux_sym_boolean_literal_token2] = ACTIONS(359), - [aux_sym_boolean_literal_token3] = ACTIONS(359), - [aux_sym_boolean_literal_token4] = ACTIONS(359), - [sym__integer_literal] = ACTIONS(361), - [anon_sym_DQUOTE] = ACTIONS(363), - [anon_sym_SQUOTE] = ACTIONS(365), - [anon_sym_LPAREN] = ACTIONS(367), - [anon_sym_RPAREN] = ACTIONS(369), - [aux_sym_unary_expression_token1] = ACTIONS(371), - [aux_sym_unary_expression_token2] = ACTIONS(373), - [aux_sym_ambiguous_expression_token1] = ACTIONS(375), - [aux_sym_current_changed_expression_token1] = ACTIONS(377), - [aux_sym_locked_expression_token1] = ACTIONS(379), - [aux_sym_input_expression_token1] = ACTIONS(381), - [aux_sym_scope_tuning_token1] = ACTIONS(383), - [aux_sym_argument_mode_token1] = ACTIONS(385), - [aux_sym_argument_mode_token2] = ACTIONS(385), - [aux_sym_if_statement_token1] = ACTIONS(387), - [aux_sym_can_find_expression_token1] = ACTIONS(389), - [aux_sym_accumulate_aggregate_token1] = ACTIONS(391), - [aux_sym_accumulate_aggregate_token2] = ACTIONS(391), - [aux_sym_accumulate_aggregate_token3] = ACTIONS(391), - [aux_sym_accumulate_aggregate_token4] = ACTIONS(391), - [aux_sym_accumulate_aggregate_token5] = ACTIONS(391), - [aux_sym_accumulate_aggregate_token6] = ACTIONS(391), - [aux_sym_accumulate_aggregate_token7] = ACTIONS(391), - [aux_sym_accumulate_aggregate_token8] = ACTIONS(391), - [aux_sym_accumulate_aggregate_token9] = ACTIONS(391), - [aux_sym_accumulate_aggregate_token10] = ACTIONS(391), - [aux_sym_accumulate_expression_token1] = ACTIONS(393), - [aux_sym_available_expression_token1] = ACTIONS(395), - [aux_sym_available_expression_token2] = ACTIONS(395), + [anon_sym_LBRACE] = ACTIONS(7), + [aux_sym__block_terminator_token1] = ACTIONS(383), + [aux_sym_input_expression_token1] = ACTIONS(267), + [aux_sym_primitive_type_token19] = ACTIONS(269), + [aux_sym_variable_definition_token1] = ACTIONS(271), + [aux_sym_variable_definition_token2] = ACTIONS(273), + [aux_sym_buffer_definition_token2] = ACTIONS(275), + [aux_sym_argument_mode_token1] = ACTIONS(277), + [aux_sym_if_statement_token1] = ACTIONS(279), + [aux_sym_repeat_statement_token1] = ACTIONS(281), + [aux_sym__procedure_terminator_token1] = ACTIONS(283), + [aux_sym_procedure_parameter_definition_token1] = ACTIONS(285), + [aux_sym__function_terminator_token1] = ACTIONS(287), + [aux_sym_interface_statement_token1] = ACTIONS(289), + [aux_sym_using_statement_token1] = ACTIONS(291), + [aux_sym_on_error_phrase_token1] = ACTIONS(293), + [aux_sym_on_error_phrase_token3] = ACTIONS(295), + [aux_sym_do_block_token1] = ACTIONS(297), + [aux_sym__case_terminator_token1] = ACTIONS(299), + [aux_sym_find_statement_token1] = ACTIONS(301), + [aux_sym_assign_statement_token1] = ACTIONS(303), + [aux_sym_catch_statement_token1] = ACTIONS(305), + [aux_sym_finally_statement_token1] = ACTIONS(307), + [aux_sym_accumulate_statement_token1] = ACTIONS(309), + [anon_sym_ROUTINE_DASHLEVEL] = ACTIONS(311), + [anon_sym_BLOCK_DASHLEVEL] = ACTIONS(311), }, [250] = { - [sym_body] = STATE(4132), + [sym_body] = STATE(4644), [sym_comment] = STATE(250), - [sym_qualified_name] = STATE(4733), + [sym_qualified_name] = STATE(4814), [sym_include] = STATE(250), - [sym_assignment] = STATE(4314), - [sym_variable_definition] = STATE(1535), - [sym_variable_assignment] = STATE(1535), - [sym_buffer_definition] = STATE(1535), - [sym_query_definition] = STATE(1535), - [sym_function_call_statement] = STATE(1535), - [sym_function_call] = STATE(4086), - [sym_if_statement] = STATE(1535), - [sym_label] = STATE(1536), - [sym_repeat_statement] = STATE(1535), - [sym_procedure_statement] = STATE(1535), - [sym_procedure_parameter_definition] = STATE(1535), - [sym_function_statement] = STATE(1535), - [sym_return_statement] = STATE(1535), - [sym_interface_statement] = STATE(1535), - [sym_using_statement] = STATE(1535), - [sym_class_statement] = STATE(1535), - [sym_object_access] = STATE(3567), - [sym_stream_definition] = STATE(1535), - [sym_input_close_statement] = STATE(1535), - [sym_output_close_statement] = STATE(1535), - [sym__stream_statement] = STATE(1535), - [sym_input_stream_statement] = STATE(1537), - [sym_output_stream_statement] = STATE(1537), - [sym_do_block] = STATE(1535), - [sym_case_statement] = STATE(1535), - [sym_for_statement] = STATE(1535), - [sym_find_statement] = STATE(1535), - [sym_abl_statement] = STATE(1535), - [sym_assign_statement] = STATE(1535), - [sym_catch_statement] = STATE(1535), - [sym_finally_statement] = STATE(1535), - [sym_accumulate_statement] = STATE(1535), - [sym_undo_statement] = STATE(1535), - [sym_error_scope_statement] = STATE(1535), - [sym_temp_table_definition] = STATE(1535), - [sym_on_statement] = STATE(1535), - [sym__statement] = STATE(1538), - [aux_sym_source_code_repeat1] = STATE(276), - [sym_identifier] = ACTIONS(227), + [sym_assignment] = STATE(4463), + [sym_variable_definition] = STATE(1550), + [sym_variable_assignment] = STATE(1550), + [sym_buffer_definition] = STATE(1550), + [sym_query_definition] = STATE(1550), + [sym_function_call_statement] = STATE(1550), + [sym_function_call] = STATE(4558), + [sym_if_statement] = STATE(1550), + [sym_label] = STATE(1551), + [sym_repeat_statement] = STATE(1550), + [sym_procedure_statement] = STATE(1550), + [sym_procedure_parameter_definition] = STATE(1550), + [sym_function_statement] = STATE(1550), + [sym_return_statement] = STATE(1550), + [sym_interface_statement] = STATE(1550), + [sym_using_statement] = STATE(1550), + [sym_class_statement] = STATE(1550), + [sym_object_access] = STATE(3661), + [sym_stream_definition] = STATE(1550), + [sym_input_close_statement] = STATE(1550), + [sym_output_close_statement] = STATE(1550), + [sym__stream_statement] = STATE(1550), + [sym_input_stream_statement] = STATE(1552), + [sym_output_stream_statement] = STATE(1552), + [sym_do_block] = STATE(1550), + [sym_case_statement] = STATE(1550), + [sym_for_statement] = STATE(1550), + [sym_find_statement] = STATE(1550), + [sym_abl_statement] = STATE(1550), + [sym_assign_statement] = STATE(1550), + [sym_catch_statement] = STATE(1550), + [sym_finally_statement] = STATE(1550), + [sym_accumulate_statement] = STATE(1550), + [sym_undo_statement] = STATE(1550), + [sym_error_scope_statement] = STATE(1550), + [sym_temp_table_definition] = STATE(1550), + [sym_on_statement] = STATE(1550), + [sym__statement] = STATE(1553), + [aux_sym_source_code_repeat1] = STATE(286), + [sym_identifier] = ACTIONS(263), [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(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), + [aux_sym__block_terminator_token1] = ACTIONS(385), + [aux_sym_input_expression_token1] = ACTIONS(267), + [aux_sym_primitive_type_token19] = ACTIONS(269), + [aux_sym_variable_definition_token1] = ACTIONS(271), + [aux_sym_variable_definition_token2] = ACTIONS(273), + [aux_sym_buffer_definition_token2] = ACTIONS(275), + [aux_sym_argument_mode_token1] = ACTIONS(277), + [aux_sym_if_statement_token1] = ACTIONS(279), + [aux_sym_repeat_statement_token1] = ACTIONS(281), + [aux_sym__procedure_terminator_token1] = ACTIONS(283), + [aux_sym_procedure_parameter_definition_token1] = ACTIONS(285), + [aux_sym__function_terminator_token1] = ACTIONS(287), + [aux_sym_interface_statement_token1] = ACTIONS(289), + [aux_sym_using_statement_token1] = ACTIONS(291), + [aux_sym_on_error_phrase_token1] = ACTIONS(293), + [aux_sym_on_error_phrase_token3] = ACTIONS(295), + [aux_sym_do_block_token1] = ACTIONS(297), + [aux_sym__case_terminator_token1] = ACTIONS(299), + [aux_sym_find_statement_token1] = ACTIONS(301), + [aux_sym_assign_statement_token1] = ACTIONS(303), + [aux_sym_catch_statement_token1] = ACTIONS(305), + [aux_sym_finally_statement_token1] = ACTIONS(307), + [aux_sym_accumulate_statement_token1] = ACTIONS(309), + [anon_sym_ROUTINE_DASHLEVEL] = ACTIONS(311), + [anon_sym_BLOCK_DASHLEVEL] = ACTIONS(311), }, [251] = { - [sym_body] = STATE(4597), + [sym_body] = STATE(4551), [sym_comment] = STATE(251), - [sym_qualified_name] = STATE(4733), + [sym_qualified_name] = STATE(4814), [sym_include] = STATE(251), - [sym_assignment] = STATE(4314), - [sym_variable_definition] = STATE(1535), - [sym_variable_assignment] = STATE(1535), - [sym_buffer_definition] = STATE(1535), - [sym_query_definition] = STATE(1535), - [sym_function_call_statement] = STATE(1535), - [sym_function_call] = STATE(4086), - [sym_if_statement] = STATE(1535), - [sym_label] = STATE(1536), - [sym_repeat_statement] = STATE(1535), - [sym_procedure_statement] = STATE(1535), - [sym_procedure_parameter_definition] = STATE(1535), - [sym_function_statement] = STATE(1535), - [sym_return_statement] = STATE(1535), - [sym_interface_statement] = STATE(1535), - [sym_using_statement] = STATE(1535), - [sym_class_statement] = STATE(1535), - [sym_object_access] = STATE(3567), - [sym_stream_definition] = STATE(1535), - [sym_input_close_statement] = STATE(1535), - [sym_output_close_statement] = STATE(1535), - [sym__stream_statement] = STATE(1535), - [sym_input_stream_statement] = STATE(1537), - [sym_output_stream_statement] = STATE(1537), - [sym_do_block] = STATE(1535), - [sym_case_statement] = STATE(1535), - [sym_for_statement] = STATE(1535), - [sym_find_statement] = STATE(1535), - [sym_abl_statement] = STATE(1535), - [sym_assign_statement] = STATE(1535), - [sym_catch_statement] = STATE(1535), - [sym_finally_statement] = STATE(1535), - [sym_accumulate_statement] = STATE(1535), - [sym_undo_statement] = STATE(1535), - [sym_error_scope_statement] = STATE(1535), - [sym_temp_table_definition] = STATE(1535), - [sym_on_statement] = STATE(1535), - [sym__statement] = STATE(1538), - [aux_sym_source_code_repeat1] = STATE(276), - [sym_identifier] = ACTIONS(227), + [sym_assignment] = STATE(4463), + [sym_variable_definition] = STATE(1550), + [sym_variable_assignment] = STATE(1550), + [sym_buffer_definition] = STATE(1550), + [sym_query_definition] = STATE(1550), + [sym_function_call_statement] = STATE(1550), + [sym_function_call] = STATE(4558), + [sym_if_statement] = STATE(1550), + [sym_label] = STATE(1551), + [sym_repeat_statement] = STATE(1550), + [sym_procedure_statement] = STATE(1550), + [sym_procedure_parameter_definition] = STATE(1550), + [sym_function_statement] = STATE(1550), + [sym_return_statement] = STATE(1550), + [sym_interface_statement] = STATE(1550), + [sym_using_statement] = STATE(1550), + [sym_class_statement] = STATE(1550), + [sym_object_access] = STATE(3661), + [sym_stream_definition] = STATE(1550), + [sym_input_close_statement] = STATE(1550), + [sym_output_close_statement] = STATE(1550), + [sym__stream_statement] = STATE(1550), + [sym_input_stream_statement] = STATE(1552), + [sym_output_stream_statement] = STATE(1552), + [sym_do_block] = STATE(1550), + [sym_case_statement] = STATE(1550), + [sym_for_statement] = STATE(1550), + [sym_find_statement] = STATE(1550), + [sym_abl_statement] = STATE(1550), + [sym_assign_statement] = STATE(1550), + [sym_catch_statement] = STATE(1550), + [sym_finally_statement] = STATE(1550), + [sym_accumulate_statement] = STATE(1550), + [sym_undo_statement] = STATE(1550), + [sym_error_scope_statement] = STATE(1550), + [sym_temp_table_definition] = STATE(1550), + [sym_on_statement] = STATE(1550), + [sym__statement] = STATE(1553), + [aux_sym_source_code_repeat1] = STATE(286), + [sym_identifier] = ACTIONS(263), [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(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), + [aux_sym__block_terminator_token1] = ACTIONS(387), + [aux_sym_input_expression_token1] = ACTIONS(267), + [aux_sym_primitive_type_token19] = ACTIONS(269), + [aux_sym_variable_definition_token1] = ACTIONS(271), + [aux_sym_variable_definition_token2] = ACTIONS(273), + [aux_sym_buffer_definition_token2] = ACTIONS(275), + [aux_sym_argument_mode_token1] = ACTIONS(277), + [aux_sym_if_statement_token1] = ACTIONS(279), + [aux_sym_repeat_statement_token1] = ACTIONS(281), + [aux_sym__procedure_terminator_token1] = ACTIONS(283), + [aux_sym_procedure_parameter_definition_token1] = ACTIONS(285), + [aux_sym__function_terminator_token1] = ACTIONS(287), + [aux_sym_interface_statement_token1] = ACTIONS(289), + [aux_sym_using_statement_token1] = ACTIONS(291), + [aux_sym_on_error_phrase_token1] = ACTIONS(293), + [aux_sym_on_error_phrase_token3] = ACTIONS(295), + [aux_sym_do_block_token1] = ACTIONS(297), + [aux_sym__case_terminator_token1] = ACTIONS(299), + [aux_sym_find_statement_token1] = ACTIONS(301), + [aux_sym_assign_statement_token1] = ACTIONS(303), + [aux_sym_catch_statement_token1] = ACTIONS(305), + [aux_sym_finally_statement_token1] = ACTIONS(307), + [aux_sym_accumulate_statement_token1] = ACTIONS(309), + [anon_sym_ROUTINE_DASHLEVEL] = ACTIONS(311), + [anon_sym_BLOCK_DASHLEVEL] = ACTIONS(311), }, [252] = { - [sym_body] = STATE(4269), + [sym_body] = STATE(4547), [sym_comment] = STATE(252), - [sym_qualified_name] = STATE(4733), + [sym_qualified_name] = STATE(4814), [sym_include] = STATE(252), - [sym_assignment] = STATE(4314), - [sym_variable_definition] = STATE(1535), - [sym_variable_assignment] = STATE(1535), - [sym_buffer_definition] = STATE(1535), - [sym_query_definition] = STATE(1535), - [sym_function_call_statement] = STATE(1535), - [sym_function_call] = STATE(4086), - [sym_if_statement] = STATE(1535), - [sym_label] = STATE(1536), - [sym_repeat_statement] = STATE(1535), - [sym_procedure_statement] = STATE(1535), - [sym_procedure_parameter_definition] = STATE(1535), - [sym_function_statement] = STATE(1535), - [sym_return_statement] = STATE(1535), - [sym_interface_statement] = STATE(1535), - [sym_using_statement] = STATE(1535), - [sym_class_statement] = STATE(1535), - [sym_object_access] = STATE(3567), - [sym_stream_definition] = STATE(1535), - [sym_input_close_statement] = STATE(1535), - [sym_output_close_statement] = STATE(1535), - [sym__stream_statement] = STATE(1535), - [sym_input_stream_statement] = STATE(1537), - [sym_output_stream_statement] = STATE(1537), - [sym_do_block] = STATE(1535), - [sym_case_statement] = STATE(1535), - [sym_for_statement] = STATE(1535), - [sym_find_statement] = STATE(1535), - [sym_abl_statement] = STATE(1535), - [sym_assign_statement] = STATE(1535), - [sym_catch_statement] = STATE(1535), - [sym_finally_statement] = STATE(1535), - [sym_accumulate_statement] = STATE(1535), - [sym_undo_statement] = STATE(1535), - [sym_error_scope_statement] = STATE(1535), - [sym_temp_table_definition] = STATE(1535), - [sym_on_statement] = STATE(1535), - [sym__statement] = STATE(1538), - [aux_sym_source_code_repeat1] = STATE(276), - [sym_identifier] = ACTIONS(227), + [sym_assignment] = STATE(4463), + [sym_variable_definition] = STATE(1550), + [sym_variable_assignment] = STATE(1550), + [sym_buffer_definition] = STATE(1550), + [sym_query_definition] = STATE(1550), + [sym_function_call_statement] = STATE(1550), + [sym_function_call] = STATE(4558), + [sym_if_statement] = STATE(1550), + [sym_label] = STATE(1551), + [sym_repeat_statement] = STATE(1550), + [sym_procedure_statement] = STATE(1550), + [sym_procedure_parameter_definition] = STATE(1550), + [sym_function_statement] = STATE(1550), + [sym_return_statement] = STATE(1550), + [sym_interface_statement] = STATE(1550), + [sym_using_statement] = STATE(1550), + [sym_class_statement] = STATE(1550), + [sym_object_access] = STATE(3661), + [sym_stream_definition] = STATE(1550), + [sym_input_close_statement] = STATE(1550), + [sym_output_close_statement] = STATE(1550), + [sym__stream_statement] = STATE(1550), + [sym_input_stream_statement] = STATE(1552), + [sym_output_stream_statement] = STATE(1552), + [sym_do_block] = STATE(1550), + [sym_case_statement] = STATE(1550), + [sym_for_statement] = STATE(1550), + [sym_find_statement] = STATE(1550), + [sym_abl_statement] = STATE(1550), + [sym_assign_statement] = STATE(1550), + [sym_catch_statement] = STATE(1550), + [sym_finally_statement] = STATE(1550), + [sym_accumulate_statement] = STATE(1550), + [sym_undo_statement] = STATE(1550), + [sym_error_scope_statement] = STATE(1550), + [sym_temp_table_definition] = STATE(1550), + [sym_on_statement] = STATE(1550), + [sym__statement] = STATE(1553), + [aux_sym_source_code_repeat1] = STATE(286), + [sym_identifier] = ACTIONS(263), [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(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), + [aux_sym__block_terminator_token1] = ACTIONS(389), + [aux_sym_input_expression_token1] = ACTIONS(267), + [aux_sym_primitive_type_token19] = ACTIONS(269), + [aux_sym_variable_definition_token1] = ACTIONS(271), + [aux_sym_variable_definition_token2] = ACTIONS(273), + [aux_sym_buffer_definition_token2] = ACTIONS(275), + [aux_sym_argument_mode_token1] = ACTIONS(277), + [aux_sym_if_statement_token1] = ACTIONS(279), + [aux_sym_repeat_statement_token1] = ACTIONS(281), + [aux_sym__procedure_terminator_token1] = ACTIONS(283), + [aux_sym_procedure_parameter_definition_token1] = ACTIONS(285), + [aux_sym__function_terminator_token1] = ACTIONS(287), + [aux_sym_interface_statement_token1] = ACTIONS(289), + [aux_sym_using_statement_token1] = ACTIONS(291), + [aux_sym_on_error_phrase_token1] = ACTIONS(293), + [aux_sym_on_error_phrase_token3] = ACTIONS(295), + [aux_sym_do_block_token1] = ACTIONS(297), + [aux_sym__case_terminator_token1] = ACTIONS(299), + [aux_sym_find_statement_token1] = ACTIONS(301), + [aux_sym_assign_statement_token1] = ACTIONS(303), + [aux_sym_catch_statement_token1] = ACTIONS(305), + [aux_sym_finally_statement_token1] = ACTIONS(307), + [aux_sym_accumulate_statement_token1] = ACTIONS(309), + [anon_sym_ROUTINE_DASHLEVEL] = ACTIONS(311), + [anon_sym_BLOCK_DASHLEVEL] = ACTIONS(311), }, [253] = { - [sym_body] = STATE(4399), + [sym_body] = STATE(4531), [sym_comment] = STATE(253), - [sym_qualified_name] = STATE(4733), + [sym_qualified_name] = STATE(4814), [sym_include] = STATE(253), - [sym_assignment] = STATE(4314), - [sym_variable_definition] = STATE(1535), - [sym_variable_assignment] = STATE(1535), - [sym_buffer_definition] = STATE(1535), - [sym_query_definition] = STATE(1535), - [sym_function_call_statement] = STATE(1535), - [sym_function_call] = STATE(4086), - [sym_if_statement] = STATE(1535), - [sym_label] = STATE(1536), - [sym_repeat_statement] = STATE(1535), - [sym_procedure_statement] = STATE(1535), - [sym_procedure_parameter_definition] = STATE(1535), - [sym_function_statement] = STATE(1535), - [sym_return_statement] = STATE(1535), - [sym_interface_statement] = STATE(1535), - [sym_using_statement] = STATE(1535), - [sym_class_statement] = STATE(1535), - [sym_object_access] = STATE(3567), - [sym_stream_definition] = STATE(1535), - [sym_input_close_statement] = STATE(1535), - [sym_output_close_statement] = STATE(1535), - [sym__stream_statement] = STATE(1535), - [sym_input_stream_statement] = STATE(1537), - [sym_output_stream_statement] = STATE(1537), - [sym_do_block] = STATE(1535), - [sym_case_statement] = STATE(1535), - [sym_for_statement] = STATE(1535), - [sym_find_statement] = STATE(1535), - [sym_abl_statement] = STATE(1535), - [sym_assign_statement] = STATE(1535), - [sym_catch_statement] = STATE(1535), - [sym_finally_statement] = STATE(1535), - [sym_accumulate_statement] = STATE(1535), - [sym_undo_statement] = STATE(1535), - [sym_error_scope_statement] = STATE(1535), - [sym_temp_table_definition] = STATE(1535), - [sym_on_statement] = STATE(1535), - [sym__statement] = STATE(1538), - [aux_sym_source_code_repeat1] = STATE(276), - [sym_identifier] = ACTIONS(227), + [sym_assignment] = STATE(4463), + [sym_variable_definition] = STATE(1550), + [sym_variable_assignment] = STATE(1550), + [sym_buffer_definition] = STATE(1550), + [sym_query_definition] = STATE(1550), + [sym_function_call_statement] = STATE(1550), + [sym_function_call] = STATE(4558), + [sym_if_statement] = STATE(1550), + [sym_label] = STATE(1551), + [sym_repeat_statement] = STATE(1550), + [sym_procedure_statement] = STATE(1550), + [sym_procedure_parameter_definition] = STATE(1550), + [sym_function_statement] = STATE(1550), + [sym_return_statement] = STATE(1550), + [sym_interface_statement] = STATE(1550), + [sym_using_statement] = STATE(1550), + [sym_class_statement] = STATE(1550), + [sym_object_access] = STATE(3661), + [sym_stream_definition] = STATE(1550), + [sym_input_close_statement] = STATE(1550), + [sym_output_close_statement] = STATE(1550), + [sym__stream_statement] = STATE(1550), + [sym_input_stream_statement] = STATE(1552), + [sym_output_stream_statement] = STATE(1552), + [sym_do_block] = STATE(1550), + [sym_case_statement] = STATE(1550), + [sym_for_statement] = STATE(1550), + [sym_find_statement] = STATE(1550), + [sym_abl_statement] = STATE(1550), + [sym_assign_statement] = STATE(1550), + [sym_catch_statement] = STATE(1550), + [sym_finally_statement] = STATE(1550), + [sym_accumulate_statement] = STATE(1550), + [sym_undo_statement] = STATE(1550), + [sym_error_scope_statement] = STATE(1550), + [sym_temp_table_definition] = STATE(1550), + [sym_on_statement] = STATE(1550), + [sym__statement] = STATE(1553), + [aux_sym_source_code_repeat1] = STATE(286), + [sym_identifier] = ACTIONS(263), [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(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), + [aux_sym__block_terminator_token1] = ACTIONS(391), + [aux_sym_input_expression_token1] = ACTIONS(267), + [aux_sym_primitive_type_token19] = ACTIONS(269), + [aux_sym_variable_definition_token1] = ACTIONS(271), + [aux_sym_variable_definition_token2] = ACTIONS(273), + [aux_sym_buffer_definition_token2] = ACTIONS(275), + [aux_sym_argument_mode_token1] = ACTIONS(277), + [aux_sym_if_statement_token1] = ACTIONS(279), + [aux_sym_repeat_statement_token1] = ACTIONS(281), + [aux_sym__procedure_terminator_token1] = ACTIONS(283), + [aux_sym_procedure_parameter_definition_token1] = ACTIONS(285), + [aux_sym__function_terminator_token1] = ACTIONS(287), + [aux_sym_interface_statement_token1] = ACTIONS(289), + [aux_sym_using_statement_token1] = ACTIONS(291), + [aux_sym_on_error_phrase_token1] = ACTIONS(293), + [aux_sym_on_error_phrase_token3] = ACTIONS(295), + [aux_sym_do_block_token1] = ACTIONS(297), + [aux_sym__case_terminator_token1] = ACTIONS(299), + [aux_sym_find_statement_token1] = ACTIONS(301), + [aux_sym_assign_statement_token1] = ACTIONS(303), + [aux_sym_catch_statement_token1] = ACTIONS(305), + [aux_sym_finally_statement_token1] = ACTIONS(307), + [aux_sym_accumulate_statement_token1] = ACTIONS(309), + [anon_sym_ROUTINE_DASHLEVEL] = ACTIONS(311), + [anon_sym_BLOCK_DASHLEVEL] = ACTIONS(311), }, [254] = { - [sym_body] = STATE(4156), + [sym_body] = STATE(4638), [sym_comment] = STATE(254), - [sym_qualified_name] = STATE(4733), + [sym_qualified_name] = STATE(4814), [sym_include] = STATE(254), - [sym_assignment] = STATE(4314), - [sym_variable_definition] = STATE(1535), - [sym_variable_assignment] = STATE(1535), - [sym_buffer_definition] = STATE(1535), - [sym_query_definition] = STATE(1535), - [sym_function_call_statement] = STATE(1535), - [sym_function_call] = STATE(4086), - [sym_if_statement] = STATE(1535), - [sym_label] = STATE(1536), - [sym_repeat_statement] = STATE(1535), - [sym_procedure_statement] = STATE(1535), - [sym_procedure_parameter_definition] = STATE(1535), - [sym_function_statement] = STATE(1535), - [sym_return_statement] = STATE(1535), - [sym_interface_statement] = STATE(1535), - [sym_using_statement] = STATE(1535), - [sym_class_statement] = STATE(1535), - [sym_object_access] = STATE(3567), - [sym_stream_definition] = STATE(1535), - [sym_input_close_statement] = STATE(1535), - [sym_output_close_statement] = STATE(1535), - [sym__stream_statement] = STATE(1535), - [sym_input_stream_statement] = STATE(1537), - [sym_output_stream_statement] = STATE(1537), - [sym_do_block] = STATE(1535), - [sym_case_statement] = STATE(1535), - [sym_for_statement] = STATE(1535), - [sym_find_statement] = STATE(1535), - [sym_abl_statement] = STATE(1535), - [sym_assign_statement] = STATE(1535), - [sym_catch_statement] = STATE(1535), - [sym_finally_statement] = STATE(1535), - [sym_accumulate_statement] = STATE(1535), - [sym_undo_statement] = STATE(1535), - [sym_error_scope_statement] = STATE(1535), - [sym_temp_table_definition] = STATE(1535), - [sym_on_statement] = STATE(1535), - [sym__statement] = STATE(1538), - [aux_sym_source_code_repeat1] = STATE(276), - [sym_identifier] = ACTIONS(227), + [sym_assignment] = STATE(4463), + [sym_variable_definition] = STATE(1550), + [sym_variable_assignment] = STATE(1550), + [sym_buffer_definition] = STATE(1550), + [sym_query_definition] = STATE(1550), + [sym_function_call_statement] = STATE(1550), + [sym_function_call] = STATE(4558), + [sym_if_statement] = STATE(1550), + [sym_label] = STATE(1551), + [sym_repeat_statement] = STATE(1550), + [sym_procedure_statement] = STATE(1550), + [sym_procedure_parameter_definition] = STATE(1550), + [sym_function_statement] = STATE(1550), + [sym_return_statement] = STATE(1550), + [sym_interface_statement] = STATE(1550), + [sym_using_statement] = STATE(1550), + [sym_class_statement] = STATE(1550), + [sym_object_access] = STATE(3661), + [sym_stream_definition] = STATE(1550), + [sym_input_close_statement] = STATE(1550), + [sym_output_close_statement] = STATE(1550), + [sym__stream_statement] = STATE(1550), + [sym_input_stream_statement] = STATE(1552), + [sym_output_stream_statement] = STATE(1552), + [sym_do_block] = STATE(1550), + [sym_case_statement] = STATE(1550), + [sym_for_statement] = STATE(1550), + [sym_find_statement] = STATE(1550), + [sym_abl_statement] = STATE(1550), + [sym_assign_statement] = STATE(1550), + [sym_catch_statement] = STATE(1550), + [sym_finally_statement] = STATE(1550), + [sym_accumulate_statement] = STATE(1550), + [sym_undo_statement] = STATE(1550), + [sym_error_scope_statement] = STATE(1550), + [sym_temp_table_definition] = STATE(1550), + [sym_on_statement] = STATE(1550), + [sym__statement] = STATE(1553), + [aux_sym_source_code_repeat1] = STATE(286), + [sym_identifier] = ACTIONS(263), [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(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), + [aux_sym__block_terminator_token1] = ACTIONS(393), + [aux_sym_input_expression_token1] = ACTIONS(267), + [aux_sym_primitive_type_token19] = ACTIONS(269), + [aux_sym_variable_definition_token1] = ACTIONS(271), + [aux_sym_variable_definition_token2] = ACTIONS(273), + [aux_sym_buffer_definition_token2] = ACTIONS(275), + [aux_sym_argument_mode_token1] = ACTIONS(277), + [aux_sym_if_statement_token1] = ACTIONS(279), + [aux_sym_repeat_statement_token1] = ACTIONS(281), + [aux_sym__procedure_terminator_token1] = ACTIONS(283), + [aux_sym_procedure_parameter_definition_token1] = ACTIONS(285), + [aux_sym__function_terminator_token1] = ACTIONS(287), + [aux_sym_interface_statement_token1] = ACTIONS(289), + [aux_sym_using_statement_token1] = ACTIONS(291), + [aux_sym_on_error_phrase_token1] = ACTIONS(293), + [aux_sym_on_error_phrase_token3] = ACTIONS(295), + [aux_sym_do_block_token1] = ACTIONS(297), + [aux_sym__case_terminator_token1] = ACTIONS(299), + [aux_sym_find_statement_token1] = ACTIONS(301), + [aux_sym_assign_statement_token1] = ACTIONS(303), + [aux_sym_catch_statement_token1] = ACTIONS(305), + [aux_sym_finally_statement_token1] = ACTIONS(307), + [aux_sym_accumulate_statement_token1] = ACTIONS(309), + [anon_sym_ROUTINE_DASHLEVEL] = ACTIONS(311), + [anon_sym_BLOCK_DASHLEVEL] = ACTIONS(311), }, [255] = { + [sym_body] = STATE(4672), [sym_comment] = STATE(255), - [sym_constant] = STATE(13), - [sym_qualified_name] = STATE(13), - [sym_boolean_literal] = STATE(13), - [sym__decimal_literal] = STATE(36), - [sym_number_literal] = STATE(13), - [sym__string_literal] = STATE(13), - [sym_double_quoted_string] = STATE(21), - [sym_single_quoted_string] = STATE(21), - [sym_parenthesized_expression] = STATE(13), - [sym_logical_expression] = STATE(37), - [sym_unary_expression] = STATE(13), - [sym_ambiguous_expression] = STATE(13), - [sym_current_changed_expression] = STATE(13), - [sym_locked_expression] = STATE(13), - [sym_input_expression] = STATE(13), - [sym_additive_expression] = STATE(37), - [sym_multiplicative_expression] = STATE(37), - [sym_comparison_expression] = STATE(37), - [sym__binary_expression] = STATE(13), + [sym_qualified_name] = STATE(4814), [sym_include] = STATE(255), - [sym__function_call_arguments] = STATE(4332), - [sym_argument_mode] = STATE(4604), - [sym__function_argument_with_mode] = STATE(3632), - [sym_function_call_argument] = STATE(3086), - [sym_function_call] = STATE(13), - [sym_ternary_expression] = STATE(13), - [sym_new_expression] = STATE(13), - [sym_object_access] = STATE(38), - [sym_can_find_expression] = STATE(13), - [sym_accumulate_aggregate] = STATE(3159), - [sym_accumulate_expression] = STATE(13), - [sym_available_expression] = STATE(13), - [sym__expression] = STATE(862), - [sym_identifier] = ACTIONS(353), + [sym_assignment] = STATE(4463), + [sym_variable_definition] = STATE(1550), + [sym_variable_assignment] = STATE(1550), + [sym_buffer_definition] = STATE(1550), + [sym_query_definition] = STATE(1550), + [sym_function_call_statement] = STATE(1550), + [sym_function_call] = STATE(4558), + [sym_if_statement] = STATE(1550), + [sym_label] = STATE(1551), + [sym_repeat_statement] = STATE(1550), + [sym_procedure_statement] = STATE(1550), + [sym_procedure_parameter_definition] = STATE(1550), + [sym_function_statement] = STATE(1550), + [sym_return_statement] = STATE(1550), + [sym_interface_statement] = STATE(1550), + [sym_using_statement] = STATE(1550), + [sym_class_statement] = STATE(1550), + [sym_object_access] = STATE(3661), + [sym_stream_definition] = STATE(1550), + [sym_input_close_statement] = STATE(1550), + [sym_output_close_statement] = STATE(1550), + [sym__stream_statement] = STATE(1550), + [sym_input_stream_statement] = STATE(1552), + [sym_output_stream_statement] = STATE(1552), + [sym_do_block] = STATE(1550), + [sym_case_statement] = STATE(1550), + [sym_for_statement] = STATE(1550), + [sym_find_statement] = STATE(1550), + [sym_abl_statement] = STATE(1550), + [sym_assign_statement] = STATE(1550), + [sym_catch_statement] = STATE(1550), + [sym_finally_statement] = STATE(1550), + [sym_accumulate_statement] = STATE(1550), + [sym_undo_statement] = STATE(1550), + [sym_error_scope_statement] = STATE(1550), + [sym_temp_table_definition] = STATE(1550), + [sym_on_statement] = STATE(1550), + [sym__statement] = STATE(1553), + [aux_sym_source_code_repeat1] = STATE(286), + [sym_identifier] = ACTIONS(263), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_LBRACE] = ACTIONS(355), - [sym_null_expression] = ACTIONS(357), - [aux_sym_boolean_literal_token1] = ACTIONS(359), - [aux_sym_boolean_literal_token2] = ACTIONS(359), - [aux_sym_boolean_literal_token3] = ACTIONS(359), - [aux_sym_boolean_literal_token4] = ACTIONS(359), - [sym__integer_literal] = ACTIONS(361), - [anon_sym_DQUOTE] = ACTIONS(363), - [anon_sym_SQUOTE] = ACTIONS(365), - [anon_sym_LPAREN] = ACTIONS(367), - [anon_sym_RPAREN] = ACTIONS(369), - [aux_sym_unary_expression_token1] = ACTIONS(371), - [aux_sym_unary_expression_token2] = ACTIONS(373), - [aux_sym_ambiguous_expression_token1] = ACTIONS(375), - [aux_sym_current_changed_expression_token1] = ACTIONS(377), - [aux_sym_locked_expression_token1] = ACTIONS(379), - [aux_sym_input_expression_token1] = ACTIONS(381), - [aux_sym_scope_tuning_token1] = ACTIONS(383), - [aux_sym_argument_mode_token1] = ACTIONS(385), - [aux_sym_argument_mode_token2] = ACTIONS(385), - [aux_sym_if_statement_token1] = ACTIONS(387), - [aux_sym_can_find_expression_token1] = ACTIONS(389), - [aux_sym_accumulate_aggregate_token1] = ACTIONS(391), - [aux_sym_accumulate_aggregate_token2] = ACTIONS(391), - [aux_sym_accumulate_aggregate_token3] = ACTIONS(391), - [aux_sym_accumulate_aggregate_token4] = ACTIONS(391), - [aux_sym_accumulate_aggregate_token5] = ACTIONS(391), - [aux_sym_accumulate_aggregate_token6] = ACTIONS(391), - [aux_sym_accumulate_aggregate_token7] = ACTIONS(391), - [aux_sym_accumulate_aggregate_token8] = ACTIONS(391), - [aux_sym_accumulate_aggregate_token9] = ACTIONS(391), - [aux_sym_accumulate_aggregate_token10] = ACTIONS(391), - [aux_sym_accumulate_expression_token1] = ACTIONS(393), - [aux_sym_available_expression_token1] = ACTIONS(395), - [aux_sym_available_expression_token2] = ACTIONS(395), + [anon_sym_LBRACE] = ACTIONS(7), + [aux_sym__block_terminator_token1] = ACTIONS(395), + [aux_sym_input_expression_token1] = ACTIONS(267), + [aux_sym_primitive_type_token19] = ACTIONS(269), + [aux_sym_variable_definition_token1] = ACTIONS(271), + [aux_sym_variable_definition_token2] = ACTIONS(273), + [aux_sym_buffer_definition_token2] = ACTIONS(275), + [aux_sym_argument_mode_token1] = ACTIONS(277), + [aux_sym_if_statement_token1] = ACTIONS(279), + [aux_sym_repeat_statement_token1] = ACTIONS(281), + [aux_sym__procedure_terminator_token1] = ACTIONS(283), + [aux_sym_procedure_parameter_definition_token1] = ACTIONS(285), + [aux_sym__function_terminator_token1] = ACTIONS(287), + [aux_sym_interface_statement_token1] = ACTIONS(289), + [aux_sym_using_statement_token1] = ACTIONS(291), + [aux_sym_on_error_phrase_token1] = ACTIONS(293), + [aux_sym_on_error_phrase_token3] = ACTIONS(295), + [aux_sym_do_block_token1] = ACTIONS(297), + [aux_sym__case_terminator_token1] = ACTIONS(299), + [aux_sym_find_statement_token1] = ACTIONS(301), + [aux_sym_assign_statement_token1] = ACTIONS(303), + [aux_sym_catch_statement_token1] = ACTIONS(305), + [aux_sym_finally_statement_token1] = ACTIONS(307), + [aux_sym_accumulate_statement_token1] = ACTIONS(309), + [anon_sym_ROUTINE_DASHLEVEL] = ACTIONS(311), + [anon_sym_BLOCK_DASHLEVEL] = ACTIONS(311), }, [256] = { - [sym_body] = STATE(4591), + [sym_body] = STATE(4513), [sym_comment] = STATE(256), - [sym_qualified_name] = STATE(4733), + [sym_qualified_name] = STATE(4814), [sym_include] = STATE(256), - [sym_assignment] = STATE(4314), - [sym_variable_definition] = STATE(1535), - [sym_variable_assignment] = STATE(1535), - [sym_buffer_definition] = STATE(1535), - [sym_query_definition] = STATE(1535), - [sym_function_call_statement] = STATE(1535), - [sym_function_call] = STATE(4086), - [sym_if_statement] = STATE(1535), - [sym_label] = STATE(1536), - [sym_repeat_statement] = STATE(1535), - [sym_procedure_statement] = STATE(1535), - [sym_procedure_parameter_definition] = STATE(1535), - [sym_function_statement] = STATE(1535), - [sym_return_statement] = STATE(1535), - [sym_interface_statement] = STATE(1535), - [sym_using_statement] = STATE(1535), - [sym_class_statement] = STATE(1535), - [sym_object_access] = STATE(3567), - [sym_stream_definition] = STATE(1535), - [sym_input_close_statement] = STATE(1535), - [sym_output_close_statement] = STATE(1535), - [sym__stream_statement] = STATE(1535), - [sym_input_stream_statement] = STATE(1537), - [sym_output_stream_statement] = STATE(1537), - [sym_do_block] = STATE(1535), - [sym_case_statement] = STATE(1535), - [sym_for_statement] = STATE(1535), - [sym_find_statement] = STATE(1535), - [sym_abl_statement] = STATE(1535), - [sym_assign_statement] = STATE(1535), - [sym_catch_statement] = STATE(1535), - [sym_finally_statement] = STATE(1535), - [sym_accumulate_statement] = STATE(1535), - [sym_undo_statement] = STATE(1535), - [sym_error_scope_statement] = STATE(1535), - [sym_temp_table_definition] = STATE(1535), - [sym_on_statement] = STATE(1535), - [sym__statement] = STATE(1538), - [aux_sym_source_code_repeat1] = STATE(276), - [sym_identifier] = ACTIONS(227), + [sym_assignment] = STATE(4463), + [sym_variable_definition] = STATE(1550), + [sym_variable_assignment] = STATE(1550), + [sym_buffer_definition] = STATE(1550), + [sym_query_definition] = STATE(1550), + [sym_function_call_statement] = STATE(1550), + [sym_function_call] = STATE(4558), + [sym_if_statement] = STATE(1550), + [sym_label] = STATE(1551), + [sym_repeat_statement] = STATE(1550), + [sym_procedure_statement] = STATE(1550), + [sym_procedure_parameter_definition] = STATE(1550), + [sym_function_statement] = STATE(1550), + [sym_return_statement] = STATE(1550), + [sym_interface_statement] = STATE(1550), + [sym_using_statement] = STATE(1550), + [sym_class_statement] = STATE(1550), + [sym_object_access] = STATE(3661), + [sym_stream_definition] = STATE(1550), + [sym_input_close_statement] = STATE(1550), + [sym_output_close_statement] = STATE(1550), + [sym__stream_statement] = STATE(1550), + [sym_input_stream_statement] = STATE(1552), + [sym_output_stream_statement] = STATE(1552), + [sym_do_block] = STATE(1550), + [sym_case_statement] = STATE(1550), + [sym_for_statement] = STATE(1550), + [sym_find_statement] = STATE(1550), + [sym_abl_statement] = STATE(1550), + [sym_assign_statement] = STATE(1550), + [sym_catch_statement] = STATE(1550), + [sym_finally_statement] = STATE(1550), + [sym_accumulate_statement] = STATE(1550), + [sym_undo_statement] = STATE(1550), + [sym_error_scope_statement] = STATE(1550), + [sym_temp_table_definition] = STATE(1550), + [sym_on_statement] = STATE(1550), + [sym__statement] = STATE(1553), + [aux_sym_source_code_repeat1] = STATE(286), + [sym_identifier] = ACTIONS(263), [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(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), + [aux_sym__block_terminator_token1] = ACTIONS(397), + [aux_sym_input_expression_token1] = ACTIONS(267), + [aux_sym_primitive_type_token19] = ACTIONS(269), + [aux_sym_variable_definition_token1] = ACTIONS(271), + [aux_sym_variable_definition_token2] = ACTIONS(273), + [aux_sym_buffer_definition_token2] = ACTIONS(275), + [aux_sym_argument_mode_token1] = ACTIONS(277), + [aux_sym_if_statement_token1] = ACTIONS(279), + [aux_sym_repeat_statement_token1] = ACTIONS(281), + [aux_sym__procedure_terminator_token1] = ACTIONS(283), + [aux_sym_procedure_parameter_definition_token1] = ACTIONS(285), + [aux_sym__function_terminator_token1] = ACTIONS(287), + [aux_sym_interface_statement_token1] = ACTIONS(289), + [aux_sym_using_statement_token1] = ACTIONS(291), + [aux_sym_on_error_phrase_token1] = ACTIONS(293), + [aux_sym_on_error_phrase_token3] = ACTIONS(295), + [aux_sym_do_block_token1] = ACTIONS(297), + [aux_sym__case_terminator_token1] = ACTIONS(299), + [aux_sym_find_statement_token1] = ACTIONS(301), + [aux_sym_assign_statement_token1] = ACTIONS(303), + [aux_sym_catch_statement_token1] = ACTIONS(305), + [aux_sym_finally_statement_token1] = ACTIONS(307), + [aux_sym_accumulate_statement_token1] = ACTIONS(309), + [anon_sym_ROUTINE_DASHLEVEL] = ACTIONS(311), + [anon_sym_BLOCK_DASHLEVEL] = ACTIONS(311), }, [257] = { - [sym_body] = STATE(4689), + [sym_body] = STATE(4621), [sym_comment] = STATE(257), - [sym_qualified_name] = STATE(4733), + [sym_qualified_name] = STATE(4814), [sym_include] = STATE(257), - [sym_assignment] = STATE(4314), - [sym_variable_definition] = STATE(1535), - [sym_variable_assignment] = STATE(1535), - [sym_buffer_definition] = STATE(1535), - [sym_query_definition] = STATE(1535), - [sym_function_call_statement] = STATE(1535), - [sym_function_call] = STATE(4086), - [sym_if_statement] = STATE(1535), - [sym_label] = STATE(1536), - [sym_repeat_statement] = STATE(1535), - [sym_procedure_statement] = STATE(1535), - [sym_procedure_parameter_definition] = STATE(1535), - [sym_function_statement] = STATE(1535), - [sym_return_statement] = STATE(1535), - [sym_interface_statement] = STATE(1535), - [sym_using_statement] = STATE(1535), - [sym_class_statement] = STATE(1535), - [sym_object_access] = STATE(3567), - [sym_stream_definition] = STATE(1535), - [sym_input_close_statement] = STATE(1535), - [sym_output_close_statement] = STATE(1535), - [sym__stream_statement] = STATE(1535), - [sym_input_stream_statement] = STATE(1537), - [sym_output_stream_statement] = STATE(1537), - [sym_do_block] = STATE(1535), - [sym_case_statement] = STATE(1535), - [sym_for_statement] = STATE(1535), - [sym_find_statement] = STATE(1535), - [sym_abl_statement] = STATE(1535), - [sym_assign_statement] = STATE(1535), - [sym_catch_statement] = STATE(1535), - [sym_finally_statement] = STATE(1535), - [sym_accumulate_statement] = STATE(1535), - [sym_undo_statement] = STATE(1535), - [sym_error_scope_statement] = STATE(1535), - [sym_temp_table_definition] = STATE(1535), - [sym_on_statement] = STATE(1535), - [sym__statement] = STATE(1538), - [aux_sym_source_code_repeat1] = STATE(276), - [sym_identifier] = ACTIONS(227), + [sym_assignment] = STATE(4463), + [sym_variable_definition] = STATE(1550), + [sym_variable_assignment] = STATE(1550), + [sym_buffer_definition] = STATE(1550), + [sym_query_definition] = STATE(1550), + [sym_function_call_statement] = STATE(1550), + [sym_function_call] = STATE(4558), + [sym_if_statement] = STATE(1550), + [sym_label] = STATE(1551), + [sym_repeat_statement] = STATE(1550), + [sym_procedure_statement] = STATE(1550), + [sym_procedure_parameter_definition] = STATE(1550), + [sym_function_statement] = STATE(1550), + [sym_return_statement] = STATE(1550), + [sym_interface_statement] = STATE(1550), + [sym_using_statement] = STATE(1550), + [sym_class_statement] = STATE(1550), + [sym_object_access] = STATE(3661), + [sym_stream_definition] = STATE(1550), + [sym_input_close_statement] = STATE(1550), + [sym_output_close_statement] = STATE(1550), + [sym__stream_statement] = STATE(1550), + [sym_input_stream_statement] = STATE(1552), + [sym_output_stream_statement] = STATE(1552), + [sym_do_block] = STATE(1550), + [sym_case_statement] = STATE(1550), + [sym_for_statement] = STATE(1550), + [sym_find_statement] = STATE(1550), + [sym_abl_statement] = STATE(1550), + [sym_assign_statement] = STATE(1550), + [sym_catch_statement] = STATE(1550), + [sym_finally_statement] = STATE(1550), + [sym_accumulate_statement] = STATE(1550), + [sym_undo_statement] = STATE(1550), + [sym_error_scope_statement] = STATE(1550), + [sym_temp_table_definition] = STATE(1550), + [sym_on_statement] = STATE(1550), + [sym__statement] = STATE(1553), + [aux_sym_source_code_repeat1] = STATE(286), + [sym_identifier] = ACTIONS(263), [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(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), + [aux_sym__block_terminator_token1] = ACTIONS(399), + [aux_sym_input_expression_token1] = ACTIONS(267), + [aux_sym_primitive_type_token19] = ACTIONS(269), + [aux_sym_variable_definition_token1] = ACTIONS(271), + [aux_sym_variable_definition_token2] = ACTIONS(273), + [aux_sym_buffer_definition_token2] = ACTIONS(275), + [aux_sym_argument_mode_token1] = ACTIONS(277), + [aux_sym_if_statement_token1] = ACTIONS(279), + [aux_sym_repeat_statement_token1] = ACTIONS(281), + [aux_sym__procedure_terminator_token1] = ACTIONS(283), + [aux_sym_procedure_parameter_definition_token1] = ACTIONS(285), + [aux_sym__function_terminator_token1] = ACTIONS(287), + [aux_sym_interface_statement_token1] = ACTIONS(289), + [aux_sym_using_statement_token1] = ACTIONS(291), + [aux_sym_on_error_phrase_token1] = ACTIONS(293), + [aux_sym_on_error_phrase_token3] = ACTIONS(295), + [aux_sym_do_block_token1] = ACTIONS(297), + [aux_sym__case_terminator_token1] = ACTIONS(299), + [aux_sym_find_statement_token1] = ACTIONS(301), + [aux_sym_assign_statement_token1] = ACTIONS(303), + [aux_sym_catch_statement_token1] = ACTIONS(305), + [aux_sym_finally_statement_token1] = ACTIONS(307), + [aux_sym_accumulate_statement_token1] = ACTIONS(309), + [anon_sym_ROUTINE_DASHLEVEL] = ACTIONS(311), + [anon_sym_BLOCK_DASHLEVEL] = ACTIONS(311), }, [258] = { - [sym_body] = STATE(4516), + [sym_body] = STATE(4502), [sym_comment] = STATE(258), - [sym_qualified_name] = STATE(4733), + [sym_qualified_name] = STATE(4814), [sym_include] = STATE(258), - [sym_assignment] = STATE(4314), - [sym_variable_definition] = STATE(1535), - [sym_variable_assignment] = STATE(1535), - [sym_buffer_definition] = STATE(1535), - [sym_query_definition] = STATE(1535), - [sym_function_call_statement] = STATE(1535), - [sym_function_call] = STATE(4086), - [sym_if_statement] = STATE(1535), - [sym_label] = STATE(1536), - [sym_repeat_statement] = STATE(1535), - [sym_procedure_statement] = STATE(1535), - [sym_procedure_parameter_definition] = STATE(1535), - [sym_function_statement] = STATE(1535), - [sym_return_statement] = STATE(1535), - [sym_interface_statement] = STATE(1535), - [sym_using_statement] = STATE(1535), - [sym_class_statement] = STATE(1535), - [sym_object_access] = STATE(3567), - [sym_stream_definition] = STATE(1535), - [sym_input_close_statement] = STATE(1535), - [sym_output_close_statement] = STATE(1535), - [sym__stream_statement] = STATE(1535), - [sym_input_stream_statement] = STATE(1537), - [sym_output_stream_statement] = STATE(1537), - [sym_do_block] = STATE(1535), - [sym_case_statement] = STATE(1535), - [sym_for_statement] = STATE(1535), - [sym_find_statement] = STATE(1535), - [sym_abl_statement] = STATE(1535), - [sym_assign_statement] = STATE(1535), - [sym_catch_statement] = STATE(1535), - [sym_finally_statement] = STATE(1535), - [sym_accumulate_statement] = STATE(1535), - [sym_undo_statement] = STATE(1535), - [sym_error_scope_statement] = STATE(1535), - [sym_temp_table_definition] = STATE(1535), - [sym_on_statement] = STATE(1535), - [sym__statement] = STATE(1538), - [aux_sym_source_code_repeat1] = STATE(276), - [sym_identifier] = ACTIONS(227), + [sym_assignment] = STATE(4463), + [sym_variable_definition] = STATE(1550), + [sym_variable_assignment] = STATE(1550), + [sym_buffer_definition] = STATE(1550), + [sym_query_definition] = STATE(1550), + [sym_function_call_statement] = STATE(1550), + [sym_function_call] = STATE(4558), + [sym_if_statement] = STATE(1550), + [sym_label] = STATE(1551), + [sym_repeat_statement] = STATE(1550), + [sym_procedure_statement] = STATE(1550), + [sym_procedure_parameter_definition] = STATE(1550), + [sym_function_statement] = STATE(1550), + [sym_return_statement] = STATE(1550), + [sym_interface_statement] = STATE(1550), + [sym_using_statement] = STATE(1550), + [sym_class_statement] = STATE(1550), + [sym_object_access] = STATE(3661), + [sym_stream_definition] = STATE(1550), + [sym_input_close_statement] = STATE(1550), + [sym_output_close_statement] = STATE(1550), + [sym__stream_statement] = STATE(1550), + [sym_input_stream_statement] = STATE(1552), + [sym_output_stream_statement] = STATE(1552), + [sym_do_block] = STATE(1550), + [sym_case_statement] = STATE(1550), + [sym_for_statement] = STATE(1550), + [sym_find_statement] = STATE(1550), + [sym_abl_statement] = STATE(1550), + [sym_assign_statement] = STATE(1550), + [sym_catch_statement] = STATE(1550), + [sym_finally_statement] = STATE(1550), + [sym_accumulate_statement] = STATE(1550), + [sym_undo_statement] = STATE(1550), + [sym_error_scope_statement] = STATE(1550), + [sym_temp_table_definition] = STATE(1550), + [sym_on_statement] = STATE(1550), + [sym__statement] = STATE(1553), + [aux_sym_source_code_repeat1] = STATE(286), + [sym_identifier] = ACTIONS(263), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), [anon_sym_LBRACE] = ACTIONS(7), - [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), + [aux_sym__block_terminator_token1] = ACTIONS(401), + [aux_sym_input_expression_token1] = ACTIONS(267), + [aux_sym_primitive_type_token19] = ACTIONS(269), + [aux_sym_variable_definition_token1] = ACTIONS(271), + [aux_sym_variable_definition_token2] = ACTIONS(273), + [aux_sym_buffer_definition_token2] = ACTIONS(275), + [aux_sym_argument_mode_token1] = ACTIONS(277), + [aux_sym_if_statement_token1] = ACTIONS(279), + [aux_sym_repeat_statement_token1] = ACTIONS(281), + [aux_sym__procedure_terminator_token1] = ACTIONS(283), + [aux_sym_procedure_parameter_definition_token1] = ACTIONS(285), + [aux_sym__function_terminator_token1] = ACTIONS(287), + [aux_sym_interface_statement_token1] = ACTIONS(289), + [aux_sym_using_statement_token1] = ACTIONS(291), + [aux_sym_on_error_phrase_token1] = ACTIONS(293), + [aux_sym_on_error_phrase_token3] = ACTIONS(295), + [aux_sym_do_block_token1] = ACTIONS(297), + [aux_sym__case_terminator_token1] = ACTIONS(299), + [aux_sym_find_statement_token1] = ACTIONS(301), + [aux_sym_assign_statement_token1] = ACTIONS(303), + [aux_sym_catch_statement_token1] = ACTIONS(305), + [aux_sym_finally_statement_token1] = ACTIONS(307), + [aux_sym_accumulate_statement_token1] = ACTIONS(309), + [anon_sym_ROUTINE_DASHLEVEL] = ACTIONS(311), + [anon_sym_BLOCK_DASHLEVEL] = ACTIONS(311), }, [259] = { [sym_comment] = STATE(259), - [sym_constant] = STATE(13), - [sym_qualified_name] = STATE(13), - [sym_boolean_literal] = STATE(13), - [sym__decimal_literal] = STATE(36), - [sym_number_literal] = STATE(13), - [sym__string_literal] = STATE(13), - [sym_double_quoted_string] = STATE(21), - [sym_single_quoted_string] = STATE(21), - [sym_parenthesized_expression] = STATE(13), - [sym_logical_expression] = STATE(37), - [sym_unary_expression] = STATE(13), - [sym_ambiguous_expression] = STATE(13), - [sym_current_changed_expression] = STATE(13), - [sym_locked_expression] = STATE(13), - [sym_input_expression] = STATE(13), - [sym_additive_expression] = STATE(37), - [sym_multiplicative_expression] = STATE(37), - [sym_comparison_expression] = STATE(37), - [sym__binary_expression] = STATE(13), + [sym_constant] = STATE(20), + [sym_qualified_name] = STATE(20), + [sym_boolean_literal] = STATE(20), + [sym__decimal_literal] = STATE(23), + [sym_number_literal] = STATE(20), + [sym__string_literal] = STATE(20), + [sym_double_quoted_string] = STATE(18), + [sym_single_quoted_string] = STATE(18), + [sym_parenthesized_expression] = STATE(20), + [sym_logical_expression] = STATE(24), + [sym_unary_expression] = STATE(20), + [sym_ambiguous_expression] = STATE(20), + [sym_current_changed_expression] = STATE(20), + [sym_locked_expression] = STATE(20), + [sym_input_expression] = STATE(20), + [sym_additive_expression] = STATE(24), + [sym_multiplicative_expression] = STATE(24), + [sym_comparison_expression] = STATE(24), + [sym__binary_expression] = STATE(20), [sym_include] = STATE(259), - [sym__function_call_arguments] = STATE(4332), - [sym_argument_mode] = STATE(4604), - [sym__function_argument_with_mode] = STATE(3632), - [sym_function_call_argument] = STATE(3086), - [sym_function_call] = STATE(13), - [sym_ternary_expression] = STATE(13), - [sym_new_expression] = STATE(13), - [sym_object_access] = STATE(38), - [sym_can_find_expression] = STATE(13), - [sym_accumulate_aggregate] = STATE(3312), - [sym_accumulate_expression] = STATE(13), - [sym_available_expression] = STATE(13), - [sym__expression] = STATE(862), - [sym_identifier] = ACTIONS(353), + [sym__function_call_arguments] = STATE(4297), + [sym_argument_mode] = STATE(4685), + [sym__function_argument_with_mode] = STATE(3733), + [sym_function_call_argument] = STATE(3202), + [sym_function_call] = STATE(20), + [sym_ternary_expression] = STATE(20), + [sym_new_expression] = STATE(20), + [sym_object_access] = STATE(29), + [sym_can_find_expression] = STATE(20), + [sym_accumulate_aggregate] = STATE(3531), + [sym_accumulate_expression] = STATE(20), + [sym_available_expression] = STATE(20), + [sym__expression] = STATE(877), + [sym_identifier] = ACTIONS(337), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_LBRACE] = ACTIONS(355), - [sym_null_expression] = ACTIONS(357), - [aux_sym_boolean_literal_token1] = ACTIONS(359), - [aux_sym_boolean_literal_token2] = ACTIONS(359), - [aux_sym_boolean_literal_token3] = ACTIONS(359), - [aux_sym_boolean_literal_token4] = ACTIONS(359), - [sym__integer_literal] = ACTIONS(361), - [anon_sym_DQUOTE] = ACTIONS(363), - [anon_sym_SQUOTE] = ACTIONS(365), - [anon_sym_LPAREN] = ACTIONS(367), - [anon_sym_RPAREN] = ACTIONS(369), - [aux_sym_unary_expression_token1] = ACTIONS(371), - [aux_sym_unary_expression_token2] = ACTIONS(373), - [aux_sym_ambiguous_expression_token1] = ACTIONS(375), - [aux_sym_current_changed_expression_token1] = ACTIONS(377), - [aux_sym_locked_expression_token1] = ACTIONS(379), - [aux_sym_input_expression_token1] = ACTIONS(381), - [aux_sym_scope_tuning_token1] = ACTIONS(383), - [aux_sym_argument_mode_token1] = ACTIONS(385), - [aux_sym_argument_mode_token2] = ACTIONS(385), - [aux_sym_if_statement_token1] = ACTIONS(387), - [aux_sym_can_find_expression_token1] = ACTIONS(389), - [aux_sym_accumulate_aggregate_token1] = ACTIONS(391), - [aux_sym_accumulate_aggregate_token2] = ACTIONS(391), - [aux_sym_accumulate_aggregate_token3] = ACTIONS(391), - [aux_sym_accumulate_aggregate_token4] = ACTIONS(391), - [aux_sym_accumulate_aggregate_token5] = ACTIONS(391), - [aux_sym_accumulate_aggregate_token6] = ACTIONS(391), - [aux_sym_accumulate_aggregate_token7] = ACTIONS(391), - [aux_sym_accumulate_aggregate_token8] = ACTIONS(391), - [aux_sym_accumulate_aggregate_token9] = ACTIONS(391), - [aux_sym_accumulate_aggregate_token10] = ACTIONS(391), - [aux_sym_accumulate_expression_token1] = ACTIONS(393), - [aux_sym_available_expression_token1] = ACTIONS(395), - [aux_sym_available_expression_token2] = ACTIONS(395), + [anon_sym_LBRACE] = ACTIONS(339), + [sym_null_expression] = ACTIONS(341), + [aux_sym_boolean_literal_token1] = ACTIONS(343), + [aux_sym_boolean_literal_token2] = ACTIONS(343), + [aux_sym_boolean_literal_token3] = ACTIONS(343), + [aux_sym_boolean_literal_token4] = ACTIONS(343), + [sym__integer_literal] = ACTIONS(345), + [anon_sym_DQUOTE] = ACTIONS(347), + [anon_sym_SQUOTE] = ACTIONS(349), + [anon_sym_LPAREN] = ACTIONS(351), + [anon_sym_RPAREN] = ACTIONS(353), + [aux_sym_unary_expression_token1] = ACTIONS(355), + [aux_sym_unary_expression_token2] = ACTIONS(357), + [aux_sym_ambiguous_expression_token1] = ACTIONS(359), + [aux_sym_current_changed_expression_token1] = ACTIONS(361), + [aux_sym_locked_expression_token1] = ACTIONS(363), + [aux_sym_input_expression_token1] = ACTIONS(365), + [aux_sym_scope_tuning_token1] = ACTIONS(367), + [aux_sym_argument_mode_token1] = ACTIONS(369), + [aux_sym_argument_mode_token2] = ACTIONS(369), + [aux_sym_if_statement_token1] = ACTIONS(371), + [aux_sym_can_find_expression_token1] = ACTIONS(373), + [aux_sym_accumulate_aggregate_token1] = ACTIONS(375), + [aux_sym_accumulate_aggregate_token2] = ACTIONS(375), + [aux_sym_accumulate_aggregate_token3] = ACTIONS(375), + [aux_sym_accumulate_aggregate_token4] = ACTIONS(375), + [aux_sym_accumulate_aggregate_token5] = ACTIONS(375), + [aux_sym_accumulate_aggregate_token6] = ACTIONS(375), + [aux_sym_accumulate_aggregate_token7] = ACTIONS(375), + [aux_sym_accumulate_aggregate_token8] = ACTIONS(375), + [aux_sym_accumulate_aggregate_token9] = ACTIONS(375), + [aux_sym_accumulate_aggregate_token10] = ACTIONS(375), + [aux_sym_accumulate_expression_token1] = ACTIONS(377), + [aux_sym_available_expression_token1] = ACTIONS(379), + [aux_sym_available_expression_token2] = ACTIONS(379), }, [260] = { - [sym_body] = STATE(4375), + [sym_body] = STATE(4501), [sym_comment] = STATE(260), - [sym_qualified_name] = STATE(4733), + [sym_qualified_name] = STATE(4814), [sym_include] = STATE(260), - [sym_assignment] = STATE(4314), - [sym_variable_definition] = STATE(1535), - [sym_variable_assignment] = STATE(1535), - [sym_buffer_definition] = STATE(1535), - [sym_query_definition] = STATE(1535), - [sym_function_call_statement] = STATE(1535), - [sym_function_call] = STATE(4086), - [sym_if_statement] = STATE(1535), - [sym_label] = STATE(1536), - [sym_repeat_statement] = STATE(1535), - [sym_procedure_statement] = STATE(1535), - [sym_procedure_parameter_definition] = STATE(1535), - [sym_function_statement] = STATE(1535), - [sym_return_statement] = STATE(1535), - [sym_interface_statement] = STATE(1535), - [sym_using_statement] = STATE(1535), - [sym_class_statement] = STATE(1535), - [sym_object_access] = STATE(3567), - [sym_stream_definition] = STATE(1535), - [sym_input_close_statement] = STATE(1535), - [sym_output_close_statement] = STATE(1535), - [sym__stream_statement] = STATE(1535), - [sym_input_stream_statement] = STATE(1537), - [sym_output_stream_statement] = STATE(1537), - [sym_do_block] = STATE(1535), - [sym_case_statement] = STATE(1535), - [sym_for_statement] = STATE(1535), - [sym_find_statement] = STATE(1535), - [sym_abl_statement] = STATE(1535), - [sym_assign_statement] = STATE(1535), - [sym_catch_statement] = STATE(1535), - [sym_finally_statement] = STATE(1535), - [sym_accumulate_statement] = STATE(1535), - [sym_undo_statement] = STATE(1535), - [sym_error_scope_statement] = STATE(1535), - [sym_temp_table_definition] = STATE(1535), - [sym_on_statement] = STATE(1535), - [sym__statement] = STATE(1538), - [aux_sym_source_code_repeat1] = STATE(276), - [sym_identifier] = ACTIONS(227), + [sym_assignment] = STATE(4463), + [sym_variable_definition] = STATE(1550), + [sym_variable_assignment] = STATE(1550), + [sym_buffer_definition] = STATE(1550), + [sym_query_definition] = STATE(1550), + [sym_function_call_statement] = STATE(1550), + [sym_function_call] = STATE(4558), + [sym_if_statement] = STATE(1550), + [sym_label] = STATE(1551), + [sym_repeat_statement] = STATE(1550), + [sym_procedure_statement] = STATE(1550), + [sym_procedure_parameter_definition] = STATE(1550), + [sym_function_statement] = STATE(1550), + [sym_return_statement] = STATE(1550), + [sym_interface_statement] = STATE(1550), + [sym_using_statement] = STATE(1550), + [sym_class_statement] = STATE(1550), + [sym_object_access] = STATE(3661), + [sym_stream_definition] = STATE(1550), + [sym_input_close_statement] = STATE(1550), + [sym_output_close_statement] = STATE(1550), + [sym__stream_statement] = STATE(1550), + [sym_input_stream_statement] = STATE(1552), + [sym_output_stream_statement] = STATE(1552), + [sym_do_block] = STATE(1550), + [sym_case_statement] = STATE(1550), + [sym_for_statement] = STATE(1550), + [sym_find_statement] = STATE(1550), + [sym_abl_statement] = STATE(1550), + [sym_assign_statement] = STATE(1550), + [sym_catch_statement] = STATE(1550), + [sym_finally_statement] = STATE(1550), + [sym_accumulate_statement] = STATE(1550), + [sym_undo_statement] = STATE(1550), + [sym_error_scope_statement] = STATE(1550), + [sym_temp_table_definition] = STATE(1550), + [sym_on_statement] = STATE(1550), + [sym__statement] = STATE(1553), + [aux_sym_source_code_repeat1] = STATE(286), + [sym_identifier] = ACTIONS(263), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), [anon_sym_LBRACE] = ACTIONS(7), - [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), + [aux_sym__block_terminator_token1] = ACTIONS(403), + [aux_sym_input_expression_token1] = ACTIONS(267), + [aux_sym_primitive_type_token19] = ACTIONS(269), + [aux_sym_variable_definition_token1] = ACTIONS(271), + [aux_sym_variable_definition_token2] = ACTIONS(273), + [aux_sym_buffer_definition_token2] = ACTIONS(275), + [aux_sym_argument_mode_token1] = ACTIONS(277), + [aux_sym_if_statement_token1] = ACTIONS(279), + [aux_sym_repeat_statement_token1] = ACTIONS(281), + [aux_sym__procedure_terminator_token1] = ACTIONS(283), + [aux_sym_procedure_parameter_definition_token1] = ACTIONS(285), + [aux_sym__function_terminator_token1] = ACTIONS(287), + [aux_sym_interface_statement_token1] = ACTIONS(289), + [aux_sym_using_statement_token1] = ACTIONS(291), + [aux_sym_on_error_phrase_token1] = ACTIONS(293), + [aux_sym_on_error_phrase_token3] = ACTIONS(295), + [aux_sym_do_block_token1] = ACTIONS(297), + [aux_sym__case_terminator_token1] = ACTIONS(299), + [aux_sym_find_statement_token1] = ACTIONS(301), + [aux_sym_assign_statement_token1] = ACTIONS(303), + [aux_sym_catch_statement_token1] = ACTIONS(305), + [aux_sym_finally_statement_token1] = ACTIONS(307), + [aux_sym_accumulate_statement_token1] = ACTIONS(309), + [anon_sym_ROUTINE_DASHLEVEL] = ACTIONS(311), + [anon_sym_BLOCK_DASHLEVEL] = ACTIONS(311), }, [261] = { [sym_comment] = STATE(261), - [sym_constant] = STATE(13), - [sym_qualified_name] = STATE(13), - [sym_boolean_literal] = STATE(13), - [sym__decimal_literal] = STATE(36), - [sym_number_literal] = STATE(13), - [sym__string_literal] = STATE(13), - [sym_double_quoted_string] = STATE(21), - [sym_single_quoted_string] = STATE(21), - [sym_parenthesized_expression] = STATE(13), - [sym_logical_expression] = STATE(37), - [sym_unary_expression] = STATE(13), - [sym_ambiguous_expression] = STATE(13), - [sym_current_changed_expression] = STATE(13), - [sym_locked_expression] = STATE(13), - [sym_input_expression] = STATE(13), - [sym_additive_expression] = STATE(37), - [sym_multiplicative_expression] = STATE(37), - [sym_comparison_expression] = STATE(37), - [sym__binary_expression] = STATE(13), + [sym_constant] = STATE(20), + [sym_qualified_name] = STATE(20), + [sym_boolean_literal] = STATE(20), + [sym__decimal_literal] = STATE(23), + [sym_number_literal] = STATE(20), + [sym__string_literal] = STATE(20), + [sym_double_quoted_string] = STATE(18), + [sym_single_quoted_string] = STATE(18), + [sym_parenthesized_expression] = STATE(20), + [sym_logical_expression] = STATE(24), + [sym_unary_expression] = STATE(20), + [sym_ambiguous_expression] = STATE(20), + [sym_current_changed_expression] = STATE(20), + [sym_locked_expression] = STATE(20), + [sym_input_expression] = STATE(20), + [sym_additive_expression] = STATE(24), + [sym_multiplicative_expression] = STATE(24), + [sym_comparison_expression] = STATE(24), + [sym__binary_expression] = STATE(20), [sym_include] = STATE(261), - [sym__function_call_arguments] = STATE(4332), - [sym_argument_mode] = STATE(4604), - [sym__function_argument_with_mode] = STATE(3632), - [sym_function_call_argument] = STATE(3086), - [sym_function_call] = STATE(13), - [sym_ternary_expression] = STATE(13), - [sym_new_expression] = STATE(13), - [sym_object_access] = STATE(38), - [sym_can_find_expression] = STATE(13), - [sym_accumulate_aggregate] = STATE(3160), - [sym_accumulate_expression] = STATE(13), - [sym_available_expression] = STATE(13), - [sym__expression] = STATE(862), - [sym_identifier] = ACTIONS(353), + [sym__function_call_arguments] = STATE(4297), + [sym_argument_mode] = STATE(4685), + [sym__function_argument_with_mode] = STATE(3733), + [sym_function_call_argument] = STATE(3202), + [sym_function_call] = STATE(20), + [sym_ternary_expression] = STATE(20), + [sym_new_expression] = STATE(20), + [sym_object_access] = STATE(29), + [sym_can_find_expression] = STATE(20), + [sym_accumulate_aggregate] = STATE(3272), + [sym_accumulate_expression] = STATE(20), + [sym_available_expression] = STATE(20), + [sym__expression] = STATE(877), + [sym_identifier] = ACTIONS(337), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_LBRACE] = ACTIONS(355), - [sym_null_expression] = ACTIONS(357), - [aux_sym_boolean_literal_token1] = ACTIONS(359), - [aux_sym_boolean_literal_token2] = ACTIONS(359), - [aux_sym_boolean_literal_token3] = ACTIONS(359), - [aux_sym_boolean_literal_token4] = ACTIONS(359), - [sym__integer_literal] = ACTIONS(361), - [anon_sym_DQUOTE] = ACTIONS(363), - [anon_sym_SQUOTE] = ACTIONS(365), - [anon_sym_LPAREN] = ACTIONS(367), - [anon_sym_RPAREN] = ACTIONS(369), - [aux_sym_unary_expression_token1] = ACTIONS(371), - [aux_sym_unary_expression_token2] = ACTIONS(373), - [aux_sym_ambiguous_expression_token1] = ACTIONS(375), - [aux_sym_current_changed_expression_token1] = ACTIONS(377), - [aux_sym_locked_expression_token1] = ACTIONS(379), - [aux_sym_input_expression_token1] = ACTIONS(381), - [aux_sym_scope_tuning_token1] = ACTIONS(383), - [aux_sym_argument_mode_token1] = ACTIONS(385), - [aux_sym_argument_mode_token2] = ACTIONS(385), - [aux_sym_if_statement_token1] = ACTIONS(387), - [aux_sym_can_find_expression_token1] = ACTIONS(389), - [aux_sym_accumulate_aggregate_token1] = ACTIONS(391), - [aux_sym_accumulate_aggregate_token2] = ACTIONS(391), - [aux_sym_accumulate_aggregate_token3] = ACTIONS(391), - [aux_sym_accumulate_aggregate_token4] = ACTIONS(391), - [aux_sym_accumulate_aggregate_token5] = ACTIONS(391), - [aux_sym_accumulate_aggregate_token6] = ACTIONS(391), - [aux_sym_accumulate_aggregate_token7] = ACTIONS(391), - [aux_sym_accumulate_aggregate_token8] = ACTIONS(391), - [aux_sym_accumulate_aggregate_token9] = ACTIONS(391), - [aux_sym_accumulate_aggregate_token10] = ACTIONS(391), - [aux_sym_accumulate_expression_token1] = ACTIONS(393), - [aux_sym_available_expression_token1] = ACTIONS(395), - [aux_sym_available_expression_token2] = ACTIONS(395), + [anon_sym_LBRACE] = ACTIONS(339), + [sym_null_expression] = ACTIONS(341), + [aux_sym_boolean_literal_token1] = ACTIONS(343), + [aux_sym_boolean_literal_token2] = ACTIONS(343), + [aux_sym_boolean_literal_token3] = ACTIONS(343), + [aux_sym_boolean_literal_token4] = ACTIONS(343), + [sym__integer_literal] = ACTIONS(345), + [anon_sym_DQUOTE] = ACTIONS(347), + [anon_sym_SQUOTE] = ACTIONS(349), + [anon_sym_LPAREN] = ACTIONS(351), + [anon_sym_RPAREN] = ACTIONS(353), + [aux_sym_unary_expression_token1] = ACTIONS(355), + [aux_sym_unary_expression_token2] = ACTIONS(357), + [aux_sym_ambiguous_expression_token1] = ACTIONS(359), + [aux_sym_current_changed_expression_token1] = ACTIONS(361), + [aux_sym_locked_expression_token1] = ACTIONS(363), + [aux_sym_input_expression_token1] = ACTIONS(365), + [aux_sym_scope_tuning_token1] = ACTIONS(367), + [aux_sym_argument_mode_token1] = ACTIONS(369), + [aux_sym_argument_mode_token2] = ACTIONS(369), + [aux_sym_if_statement_token1] = ACTIONS(371), + [aux_sym_can_find_expression_token1] = ACTIONS(373), + [aux_sym_accumulate_aggregate_token1] = ACTIONS(375), + [aux_sym_accumulate_aggregate_token2] = ACTIONS(375), + [aux_sym_accumulate_aggregate_token3] = ACTIONS(375), + [aux_sym_accumulate_aggregate_token4] = ACTIONS(375), + [aux_sym_accumulate_aggregate_token5] = ACTIONS(375), + [aux_sym_accumulate_aggregate_token6] = ACTIONS(375), + [aux_sym_accumulate_aggregate_token7] = ACTIONS(375), + [aux_sym_accumulate_aggregate_token8] = ACTIONS(375), + [aux_sym_accumulate_aggregate_token9] = ACTIONS(375), + [aux_sym_accumulate_aggregate_token10] = ACTIONS(375), + [aux_sym_accumulate_expression_token1] = ACTIONS(377), + [aux_sym_available_expression_token1] = ACTIONS(379), + [aux_sym_available_expression_token2] = ACTIONS(379), }, [262] = { - [sym_body] = STATE(4542), + [sym_body] = STATE(4492), [sym_comment] = STATE(262), - [sym_qualified_name] = STATE(4733), + [sym_qualified_name] = STATE(4814), [sym_include] = STATE(262), - [sym_assignment] = STATE(4314), - [sym_variable_definition] = STATE(1535), - [sym_variable_assignment] = STATE(1535), - [sym_buffer_definition] = STATE(1535), - [sym_query_definition] = STATE(1535), - [sym_function_call_statement] = STATE(1535), - [sym_function_call] = STATE(4086), - [sym_if_statement] = STATE(1535), - [sym_label] = STATE(1536), - [sym_repeat_statement] = STATE(1535), - [sym_procedure_statement] = STATE(1535), - [sym_procedure_parameter_definition] = STATE(1535), - [sym_function_statement] = STATE(1535), - [sym_return_statement] = STATE(1535), - [sym_interface_statement] = STATE(1535), - [sym_using_statement] = STATE(1535), - [sym_class_statement] = STATE(1535), - [sym_object_access] = STATE(3567), - [sym_stream_definition] = STATE(1535), - [sym_input_close_statement] = STATE(1535), - [sym_output_close_statement] = STATE(1535), - [sym__stream_statement] = STATE(1535), - [sym_input_stream_statement] = STATE(1537), - [sym_output_stream_statement] = STATE(1537), - [sym_do_block] = STATE(1535), - [sym_case_statement] = STATE(1535), - [sym_for_statement] = STATE(1535), - [sym_find_statement] = STATE(1535), - [sym_abl_statement] = STATE(1535), - [sym_assign_statement] = STATE(1535), - [sym_catch_statement] = STATE(1535), - [sym_finally_statement] = STATE(1535), - [sym_accumulate_statement] = STATE(1535), - [sym_undo_statement] = STATE(1535), - [sym_error_scope_statement] = STATE(1535), - [sym_temp_table_definition] = STATE(1535), - [sym_on_statement] = STATE(1535), - [sym__statement] = STATE(1538), - [aux_sym_source_code_repeat1] = STATE(276), - [sym_identifier] = ACTIONS(227), + [sym_assignment] = STATE(4463), + [sym_variable_definition] = STATE(1550), + [sym_variable_assignment] = STATE(1550), + [sym_buffer_definition] = STATE(1550), + [sym_query_definition] = STATE(1550), + [sym_function_call_statement] = STATE(1550), + [sym_function_call] = STATE(4558), + [sym_if_statement] = STATE(1550), + [sym_label] = STATE(1551), + [sym_repeat_statement] = STATE(1550), + [sym_procedure_statement] = STATE(1550), + [sym_procedure_parameter_definition] = STATE(1550), + [sym_function_statement] = STATE(1550), + [sym_return_statement] = STATE(1550), + [sym_interface_statement] = STATE(1550), + [sym_using_statement] = STATE(1550), + [sym_class_statement] = STATE(1550), + [sym_object_access] = STATE(3661), + [sym_stream_definition] = STATE(1550), + [sym_input_close_statement] = STATE(1550), + [sym_output_close_statement] = STATE(1550), + [sym__stream_statement] = STATE(1550), + [sym_input_stream_statement] = STATE(1552), + [sym_output_stream_statement] = STATE(1552), + [sym_do_block] = STATE(1550), + [sym_case_statement] = STATE(1550), + [sym_for_statement] = STATE(1550), + [sym_find_statement] = STATE(1550), + [sym_abl_statement] = STATE(1550), + [sym_assign_statement] = STATE(1550), + [sym_catch_statement] = STATE(1550), + [sym_finally_statement] = STATE(1550), + [sym_accumulate_statement] = STATE(1550), + [sym_undo_statement] = STATE(1550), + [sym_error_scope_statement] = STATE(1550), + [sym_temp_table_definition] = STATE(1550), + [sym_on_statement] = STATE(1550), + [sym__statement] = STATE(1553), + [aux_sym_source_code_repeat1] = STATE(286), + [sym_identifier] = ACTIONS(263), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), [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), + [aux_sym__block_terminator_token1] = ACTIONS(405), + [aux_sym_input_expression_token1] = ACTIONS(267), + [aux_sym_primitive_type_token19] = ACTIONS(269), + [aux_sym_variable_definition_token1] = ACTIONS(271), + [aux_sym_variable_definition_token2] = ACTIONS(273), + [aux_sym_buffer_definition_token2] = ACTIONS(275), + [aux_sym_argument_mode_token1] = ACTIONS(277), + [aux_sym_if_statement_token1] = ACTIONS(279), + [aux_sym_repeat_statement_token1] = ACTIONS(281), + [aux_sym__procedure_terminator_token1] = ACTIONS(283), + [aux_sym_procedure_parameter_definition_token1] = ACTIONS(285), + [aux_sym__function_terminator_token1] = ACTIONS(287), + [aux_sym_interface_statement_token1] = ACTIONS(289), + [aux_sym_using_statement_token1] = ACTIONS(291), + [aux_sym_on_error_phrase_token1] = ACTIONS(293), + [aux_sym_on_error_phrase_token3] = ACTIONS(295), + [aux_sym_do_block_token1] = ACTIONS(297), + [aux_sym__case_terminator_token1] = ACTIONS(299), + [aux_sym_find_statement_token1] = ACTIONS(301), + [aux_sym_assign_statement_token1] = ACTIONS(303), + [aux_sym_catch_statement_token1] = ACTIONS(305), + [aux_sym_finally_statement_token1] = ACTIONS(307), + [aux_sym_accumulate_statement_token1] = ACTIONS(309), + [anon_sym_ROUTINE_DASHLEVEL] = ACTIONS(311), + [anon_sym_BLOCK_DASHLEVEL] = ACTIONS(311), }, [263] = { + [sym_body] = STATE(4295), [sym_comment] = STATE(263), - [sym_constant] = STATE(13), - [sym_qualified_name] = STATE(13), - [sym_boolean_literal] = STATE(13), - [sym__decimal_literal] = STATE(36), - [sym_number_literal] = STATE(13), - [sym__string_literal] = STATE(13), - [sym_double_quoted_string] = STATE(21), - [sym_single_quoted_string] = STATE(21), - [sym_parenthesized_expression] = STATE(13), - [sym_logical_expression] = STATE(37), - [sym_unary_expression] = STATE(13), - [sym_ambiguous_expression] = STATE(13), - [sym_current_changed_expression] = STATE(13), - [sym_locked_expression] = STATE(13), - [sym_input_expression] = STATE(13), - [sym_additive_expression] = STATE(37), - [sym_multiplicative_expression] = STATE(37), - [sym_comparison_expression] = STATE(37), - [sym__binary_expression] = STATE(13), + [sym_qualified_name] = STATE(4814), [sym_include] = STATE(263), - [sym__function_call_arguments] = STATE(4332), - [sym_argument_mode] = STATE(4604), - [sym__function_argument_with_mode] = STATE(3632), - [sym_function_call_argument] = STATE(3086), - [sym_function_call] = STATE(13), - [sym_ternary_expression] = STATE(13), - [sym_new_expression] = STATE(13), - [sym_object_access] = STATE(38), - [sym_can_find_expression] = STATE(13), - [sym_accumulate_aggregate] = STATE(3236), - [sym_accumulate_expression] = STATE(13), - [sym_available_expression] = STATE(13), - [sym__expression] = STATE(862), - [sym_identifier] = ACTIONS(353), + [sym_assignment] = STATE(4463), + [sym_variable_definition] = STATE(1550), + [sym_variable_assignment] = STATE(1550), + [sym_buffer_definition] = STATE(1550), + [sym_query_definition] = STATE(1550), + [sym_function_call_statement] = STATE(1550), + [sym_function_call] = STATE(4558), + [sym_if_statement] = STATE(1550), + [sym_label] = STATE(1551), + [sym_repeat_statement] = STATE(1550), + [sym_procedure_statement] = STATE(1550), + [sym_procedure_parameter_definition] = STATE(1550), + [sym_function_statement] = STATE(1550), + [sym_return_statement] = STATE(1550), + [sym_interface_statement] = STATE(1550), + [sym_using_statement] = STATE(1550), + [sym_class_statement] = STATE(1550), + [sym_object_access] = STATE(3661), + [sym_stream_definition] = STATE(1550), + [sym_input_close_statement] = STATE(1550), + [sym_output_close_statement] = STATE(1550), + [sym__stream_statement] = STATE(1550), + [sym_input_stream_statement] = STATE(1552), + [sym_output_stream_statement] = STATE(1552), + [sym_do_block] = STATE(1550), + [sym_case_statement] = STATE(1550), + [sym_for_statement] = STATE(1550), + [sym_find_statement] = STATE(1550), + [sym_abl_statement] = STATE(1550), + [sym_assign_statement] = STATE(1550), + [sym_catch_statement] = STATE(1550), + [sym_finally_statement] = STATE(1550), + [sym_accumulate_statement] = STATE(1550), + [sym_undo_statement] = STATE(1550), + [sym_error_scope_statement] = STATE(1550), + [sym_temp_table_definition] = STATE(1550), + [sym_on_statement] = STATE(1550), + [sym__statement] = STATE(1553), + [aux_sym_source_code_repeat1] = STATE(286), + [sym_identifier] = ACTIONS(263), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_LBRACE] = ACTIONS(355), - [sym_null_expression] = ACTIONS(357), - [aux_sym_boolean_literal_token1] = ACTIONS(359), - [aux_sym_boolean_literal_token2] = ACTIONS(359), - [aux_sym_boolean_literal_token3] = ACTIONS(359), - [aux_sym_boolean_literal_token4] = ACTIONS(359), - [sym__integer_literal] = ACTIONS(361), - [anon_sym_DQUOTE] = ACTIONS(363), - [anon_sym_SQUOTE] = ACTIONS(365), - [anon_sym_LPAREN] = ACTIONS(367), - [anon_sym_RPAREN] = ACTIONS(369), - [aux_sym_unary_expression_token1] = ACTIONS(371), - [aux_sym_unary_expression_token2] = ACTIONS(373), - [aux_sym_ambiguous_expression_token1] = ACTIONS(375), - [aux_sym_current_changed_expression_token1] = ACTIONS(377), - [aux_sym_locked_expression_token1] = ACTIONS(379), - [aux_sym_input_expression_token1] = ACTIONS(381), - [aux_sym_scope_tuning_token1] = ACTIONS(383), - [aux_sym_argument_mode_token1] = ACTIONS(385), - [aux_sym_argument_mode_token2] = ACTIONS(385), - [aux_sym_if_statement_token1] = ACTIONS(387), - [aux_sym_can_find_expression_token1] = ACTIONS(389), - [aux_sym_accumulate_aggregate_token1] = ACTIONS(391), - [aux_sym_accumulate_aggregate_token2] = ACTIONS(391), - [aux_sym_accumulate_aggregate_token3] = ACTIONS(391), - [aux_sym_accumulate_aggregate_token4] = ACTIONS(391), - [aux_sym_accumulate_aggregate_token5] = ACTIONS(391), - [aux_sym_accumulate_aggregate_token6] = ACTIONS(391), - [aux_sym_accumulate_aggregate_token7] = ACTIONS(391), - [aux_sym_accumulate_aggregate_token8] = ACTIONS(391), - [aux_sym_accumulate_aggregate_token9] = ACTIONS(391), - [aux_sym_accumulate_aggregate_token10] = ACTIONS(391), - [aux_sym_accumulate_expression_token1] = ACTIONS(393), - [aux_sym_available_expression_token1] = ACTIONS(395), - [aux_sym_available_expression_token2] = ACTIONS(395), + [anon_sym_LBRACE] = ACTIONS(7), + [aux_sym__block_terminator_token1] = ACTIONS(407), + [aux_sym_input_expression_token1] = ACTIONS(267), + [aux_sym_primitive_type_token19] = ACTIONS(269), + [aux_sym_variable_definition_token1] = ACTIONS(271), + [aux_sym_variable_definition_token2] = ACTIONS(273), + [aux_sym_buffer_definition_token2] = ACTIONS(275), + [aux_sym_argument_mode_token1] = ACTIONS(277), + [aux_sym_if_statement_token1] = ACTIONS(279), + [aux_sym_repeat_statement_token1] = ACTIONS(281), + [aux_sym__procedure_terminator_token1] = ACTIONS(283), + [aux_sym_procedure_parameter_definition_token1] = ACTIONS(285), + [aux_sym__function_terminator_token1] = ACTIONS(287), + [aux_sym_interface_statement_token1] = ACTIONS(289), + [aux_sym_using_statement_token1] = ACTIONS(291), + [aux_sym_on_error_phrase_token1] = ACTIONS(293), + [aux_sym_on_error_phrase_token3] = ACTIONS(295), + [aux_sym_do_block_token1] = ACTIONS(297), + [aux_sym__case_terminator_token1] = ACTIONS(299), + [aux_sym_find_statement_token1] = ACTIONS(301), + [aux_sym_assign_statement_token1] = ACTIONS(303), + [aux_sym_catch_statement_token1] = ACTIONS(305), + [aux_sym_finally_statement_token1] = ACTIONS(307), + [aux_sym_accumulate_statement_token1] = ACTIONS(309), + [anon_sym_ROUTINE_DASHLEVEL] = ACTIONS(311), + [anon_sym_BLOCK_DASHLEVEL] = ACTIONS(311), }, [264] = { - [sym_body] = STATE(4474), + [sym_body] = STATE(4457), [sym_comment] = STATE(264), - [sym_qualified_name] = STATE(4733), + [sym_qualified_name] = STATE(4814), [sym_include] = STATE(264), - [sym_assignment] = STATE(4314), - [sym_variable_definition] = STATE(1535), - [sym_variable_assignment] = STATE(1535), - [sym_buffer_definition] = STATE(1535), - [sym_query_definition] = STATE(1535), - [sym_function_call_statement] = STATE(1535), - [sym_function_call] = STATE(4086), - [sym_if_statement] = STATE(1535), - [sym_label] = STATE(1536), - [sym_repeat_statement] = STATE(1535), - [sym_procedure_statement] = STATE(1535), - [sym_procedure_parameter_definition] = STATE(1535), - [sym_function_statement] = STATE(1535), - [sym_return_statement] = STATE(1535), - [sym_interface_statement] = STATE(1535), - [sym_using_statement] = STATE(1535), - [sym_class_statement] = STATE(1535), - [sym_object_access] = STATE(3567), - [sym_stream_definition] = STATE(1535), - [sym_input_close_statement] = STATE(1535), - [sym_output_close_statement] = STATE(1535), - [sym__stream_statement] = STATE(1535), - [sym_input_stream_statement] = STATE(1537), - [sym_output_stream_statement] = STATE(1537), - [sym_do_block] = STATE(1535), - [sym_case_statement] = STATE(1535), - [sym_for_statement] = STATE(1535), - [sym_find_statement] = STATE(1535), - [sym_abl_statement] = STATE(1535), - [sym_assign_statement] = STATE(1535), - [sym_catch_statement] = STATE(1535), - [sym_finally_statement] = STATE(1535), - [sym_accumulate_statement] = STATE(1535), - [sym_undo_statement] = STATE(1535), - [sym_error_scope_statement] = STATE(1535), - [sym_temp_table_definition] = STATE(1535), - [sym_on_statement] = STATE(1535), - [sym__statement] = STATE(1538), - [aux_sym_source_code_repeat1] = STATE(276), - [sym_identifier] = ACTIONS(227), + [sym_assignment] = STATE(4463), + [sym_variable_definition] = STATE(1550), + [sym_variable_assignment] = STATE(1550), + [sym_buffer_definition] = STATE(1550), + [sym_query_definition] = STATE(1550), + [sym_function_call_statement] = STATE(1550), + [sym_function_call] = STATE(4558), + [sym_if_statement] = STATE(1550), + [sym_label] = STATE(1551), + [sym_repeat_statement] = STATE(1550), + [sym_procedure_statement] = STATE(1550), + [sym_procedure_parameter_definition] = STATE(1550), + [sym_function_statement] = STATE(1550), + [sym_return_statement] = STATE(1550), + [sym_interface_statement] = STATE(1550), + [sym_using_statement] = STATE(1550), + [sym_class_statement] = STATE(1550), + [sym_object_access] = STATE(3661), + [sym_stream_definition] = STATE(1550), + [sym_input_close_statement] = STATE(1550), + [sym_output_close_statement] = STATE(1550), + [sym__stream_statement] = STATE(1550), + [sym_input_stream_statement] = STATE(1552), + [sym_output_stream_statement] = STATE(1552), + [sym_do_block] = STATE(1550), + [sym_case_statement] = STATE(1550), + [sym_for_statement] = STATE(1550), + [sym_find_statement] = STATE(1550), + [sym_abl_statement] = STATE(1550), + [sym_assign_statement] = STATE(1550), + [sym_catch_statement] = STATE(1550), + [sym_finally_statement] = STATE(1550), + [sym_accumulate_statement] = STATE(1550), + [sym_undo_statement] = STATE(1550), + [sym_error_scope_statement] = STATE(1550), + [sym_temp_table_definition] = STATE(1550), + [sym_on_statement] = STATE(1550), + [sym__statement] = STATE(1553), + [aux_sym_source_code_repeat1] = STATE(286), + [sym_identifier] = ACTIONS(263), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), [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), + [aux_sym__block_terminator_token1] = ACTIONS(409), + [aux_sym_input_expression_token1] = ACTIONS(267), + [aux_sym_primitive_type_token19] = ACTIONS(269), + [aux_sym_variable_definition_token1] = ACTIONS(271), + [aux_sym_variable_definition_token2] = ACTIONS(273), + [aux_sym_buffer_definition_token2] = ACTIONS(275), + [aux_sym_argument_mode_token1] = ACTIONS(277), + [aux_sym_if_statement_token1] = ACTIONS(279), + [aux_sym_repeat_statement_token1] = ACTIONS(281), + [aux_sym__procedure_terminator_token1] = ACTIONS(283), + [aux_sym_procedure_parameter_definition_token1] = ACTIONS(285), + [aux_sym__function_terminator_token1] = ACTIONS(287), + [aux_sym_interface_statement_token1] = ACTIONS(289), + [aux_sym_using_statement_token1] = ACTIONS(291), + [aux_sym_on_error_phrase_token1] = ACTIONS(293), + [aux_sym_on_error_phrase_token3] = ACTIONS(295), + [aux_sym_do_block_token1] = ACTIONS(297), + [aux_sym__case_terminator_token1] = ACTIONS(299), + [aux_sym_find_statement_token1] = ACTIONS(301), + [aux_sym_assign_statement_token1] = ACTIONS(303), + [aux_sym_catch_statement_token1] = ACTIONS(305), + [aux_sym_finally_statement_token1] = ACTIONS(307), + [aux_sym_accumulate_statement_token1] = ACTIONS(309), + [anon_sym_ROUTINE_DASHLEVEL] = ACTIONS(311), + [anon_sym_BLOCK_DASHLEVEL] = ACTIONS(311), }, [265] = { + [sym_body] = STATE(4444), [sym_comment] = STATE(265), - [sym_constant] = STATE(13), - [sym_qualified_name] = STATE(13), - [sym_boolean_literal] = STATE(13), - [sym__decimal_literal] = STATE(36), - [sym_number_literal] = STATE(13), - [sym__string_literal] = STATE(13), - [sym_double_quoted_string] = STATE(21), - [sym_single_quoted_string] = STATE(21), - [sym_parenthesized_expression] = STATE(13), - [sym_logical_expression] = STATE(37), - [sym_unary_expression] = STATE(13), - [sym_ambiguous_expression] = STATE(13), - [sym_current_changed_expression] = STATE(13), - [sym_locked_expression] = STATE(13), - [sym_input_expression] = STATE(13), - [sym_additive_expression] = STATE(37), - [sym_multiplicative_expression] = STATE(37), - [sym_comparison_expression] = STATE(37), - [sym__binary_expression] = STATE(13), + [sym_qualified_name] = STATE(4814), [sym_include] = STATE(265), - [sym_function_call] = STATE(13), - [sym_ternary_expression] = STATE(13), - [sym_new_expression] = STATE(13), - [sym_object_access] = STATE(38), - [sym_where_clause] = STATE(2166), - [sym_query_tuning] = STATE(2166), - [sym_can_find_expression] = STATE(13), - [sym_of] = STATE(2166), - [sym__using_first] = STATE(1944), - [sym_accumulate_expression] = STATE(13), - [sym_available_expression] = STATE(13), - [sym__expression] = STATE(609), - [aux_sym_qualified_name_repeat1] = STATE(724), - [aux_sym_can_find_expression_repeat2] = STATE(1897), - [sym_identifier] = ACTIONS(353), + [sym_assignment] = STATE(4463), + [sym_variable_definition] = STATE(1550), + [sym_variable_assignment] = STATE(1550), + [sym_buffer_definition] = STATE(1550), + [sym_query_definition] = STATE(1550), + [sym_function_call_statement] = STATE(1550), + [sym_function_call] = STATE(4558), + [sym_if_statement] = STATE(1550), + [sym_label] = STATE(1551), + [sym_repeat_statement] = STATE(1550), + [sym_procedure_statement] = STATE(1550), + [sym_procedure_parameter_definition] = STATE(1550), + [sym_function_statement] = STATE(1550), + [sym_return_statement] = STATE(1550), + [sym_interface_statement] = STATE(1550), + [sym_using_statement] = STATE(1550), + [sym_class_statement] = STATE(1550), + [sym_object_access] = STATE(3661), + [sym_stream_definition] = STATE(1550), + [sym_input_close_statement] = STATE(1550), + [sym_output_close_statement] = STATE(1550), + [sym__stream_statement] = STATE(1550), + [sym_input_stream_statement] = STATE(1552), + [sym_output_stream_statement] = STATE(1552), + [sym_do_block] = STATE(1550), + [sym_case_statement] = STATE(1550), + [sym_for_statement] = STATE(1550), + [sym_find_statement] = STATE(1550), + [sym_abl_statement] = STATE(1550), + [sym_assign_statement] = STATE(1550), + [sym_catch_statement] = STATE(1550), + [sym_finally_statement] = STATE(1550), + [sym_accumulate_statement] = STATE(1550), + [sym_undo_statement] = STATE(1550), + [sym_error_scope_statement] = STATE(1550), + [sym_temp_table_definition] = STATE(1550), + [sym_on_statement] = STATE(1550), + [sym__statement] = STATE(1553), + [aux_sym_source_code_repeat1] = STATE(286), + [sym_identifier] = ACTIONS(263), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_LBRACE] = ACTIONS(355), - [sym_null_expression] = ACTIONS(357), - [aux_sym_boolean_literal_token1] = ACTIONS(359), - [aux_sym_boolean_literal_token2] = ACTIONS(359), - [aux_sym_boolean_literal_token3] = ACTIONS(359), - [aux_sym_boolean_literal_token4] = ACTIONS(359), - [sym__integer_literal] = ACTIONS(361), - [anon_sym_DQUOTE] = ACTIONS(363), - [anon_sym_SQUOTE] = ACTIONS(365), - [anon_sym_LPAREN] = ACTIONS(367), - [anon_sym_RPAREN] = ACTIONS(419), - [aux_sym_unary_expression_token1] = ACTIONS(371), - [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(389), - [aux_sym_of_token1] = ACTIONS(443), - [aux_sym_accumulate_expression_token1] = ACTIONS(445), - [aux_sym_available_expression_token1] = ACTIONS(395), - [aux_sym_available_expression_token2] = ACTIONS(395), - [sym__namedot] = ACTIONS(447), + [anon_sym_LBRACE] = ACTIONS(7), + [aux_sym__block_terminator_token1] = ACTIONS(411), + [aux_sym_input_expression_token1] = ACTIONS(267), + [aux_sym_primitive_type_token19] = ACTIONS(269), + [aux_sym_variable_definition_token1] = ACTIONS(271), + [aux_sym_variable_definition_token2] = ACTIONS(273), + [aux_sym_buffer_definition_token2] = ACTIONS(275), + [aux_sym_argument_mode_token1] = ACTIONS(277), + [aux_sym_if_statement_token1] = ACTIONS(279), + [aux_sym_repeat_statement_token1] = ACTIONS(281), + [aux_sym__procedure_terminator_token1] = ACTIONS(283), + [aux_sym_procedure_parameter_definition_token1] = ACTIONS(285), + [aux_sym__function_terminator_token1] = ACTIONS(287), + [aux_sym_interface_statement_token1] = ACTIONS(289), + [aux_sym_using_statement_token1] = ACTIONS(291), + [aux_sym_on_error_phrase_token1] = ACTIONS(293), + [aux_sym_on_error_phrase_token3] = ACTIONS(295), + [aux_sym_do_block_token1] = ACTIONS(297), + [aux_sym__case_terminator_token1] = ACTIONS(299), + [aux_sym_find_statement_token1] = ACTIONS(301), + [aux_sym_assign_statement_token1] = ACTIONS(303), + [aux_sym_catch_statement_token1] = ACTIONS(305), + [aux_sym_finally_statement_token1] = ACTIONS(307), + [aux_sym_accumulate_statement_token1] = ACTIONS(309), + [anon_sym_ROUTINE_DASHLEVEL] = ACTIONS(311), + [anon_sym_BLOCK_DASHLEVEL] = ACTIONS(311), }, [266] = { + [sym_body] = STATE(4439), [sym_comment] = STATE(266), - [sym_qualified_name] = STATE(4733), + [sym_qualified_name] = STATE(4814), [sym_include] = STATE(266), - [sym_assignment] = STATE(4732), - [sym_variable_definition] = STATE(1163), - [sym_variable_assignment] = STATE(1163), - [sym_buffer_definition] = STATE(1163), - [sym_query_definition] = STATE(1163), - [sym_function_call_statement] = STATE(1163), - [sym_function_call] = STATE(4731), - [sym_if_statement] = STATE(1163), - [sym_label] = STATE(1167), - [sym_repeat_statement] = STATE(1163), - [sym_procedure_statement] = STATE(1163), - [sym_procedure_parameter_definition] = STATE(1163), - [sym_function_statement] = STATE(1163), - [sym_return_statement] = STATE(1163), - [sym_interface_statement] = STATE(1163), - [sym_using_statement] = STATE(1163), - [sym_class_statement] = STATE(1163), - [sym_object_access] = STATE(3567), - [sym_stream_definition] = STATE(1163), - [sym_input_close_statement] = STATE(1163), - [sym_output_close_statement] = STATE(1163), - [sym__stream_statement] = STATE(1163), - [sym_input_stream_statement] = STATE(1169), - [sym_output_stream_statement] = STATE(1169), - [sym_do_block] = STATE(1163), - [sym_case_statement] = STATE(1163), - [sym_for_statement] = STATE(1163), - [sym_find_statement] = STATE(1163), - [sym_abl_statement] = STATE(1163), - [sym_assign_statement] = STATE(1163), - [sym_catch_statement] = STATE(1163), - [sym_finally_statement] = STATE(1163), - [sym_accumulate_statement] = STATE(1163), - [sym_undo_statement] = STATE(1163), - [sym_error_scope_statement] = STATE(1163), - [sym_temp_table_definition] = STATE(1163), - [sym_on_statement] = STATE(1163), - [sym__statement] = STATE(1170), - [aux_sym_source_code_repeat1] = STATE(266), - [ts_builtin_sym_end] = ACTIONS(449), - [sym_identifier] = ACTIONS(451), + [sym_assignment] = STATE(4463), + [sym_variable_definition] = STATE(1550), + [sym_variable_assignment] = STATE(1550), + [sym_buffer_definition] = STATE(1550), + [sym_query_definition] = STATE(1550), + [sym_function_call_statement] = STATE(1550), + [sym_function_call] = STATE(4558), + [sym_if_statement] = STATE(1550), + [sym_label] = STATE(1551), + [sym_repeat_statement] = STATE(1550), + [sym_procedure_statement] = STATE(1550), + [sym_procedure_parameter_definition] = STATE(1550), + [sym_function_statement] = STATE(1550), + [sym_return_statement] = STATE(1550), + [sym_interface_statement] = STATE(1550), + [sym_using_statement] = STATE(1550), + [sym_class_statement] = STATE(1550), + [sym_object_access] = STATE(3661), + [sym_stream_definition] = STATE(1550), + [sym_input_close_statement] = STATE(1550), + [sym_output_close_statement] = STATE(1550), + [sym__stream_statement] = STATE(1550), + [sym_input_stream_statement] = STATE(1552), + [sym_output_stream_statement] = STATE(1552), + [sym_do_block] = STATE(1550), + [sym_case_statement] = STATE(1550), + [sym_for_statement] = STATE(1550), + [sym_find_statement] = STATE(1550), + [sym_abl_statement] = STATE(1550), + [sym_assign_statement] = STATE(1550), + [sym_catch_statement] = STATE(1550), + [sym_finally_statement] = STATE(1550), + [sym_accumulate_statement] = STATE(1550), + [sym_undo_statement] = STATE(1550), + [sym_error_scope_statement] = STATE(1550), + [sym_temp_table_definition] = STATE(1550), + [sym_on_statement] = STATE(1550), + [sym__statement] = STATE(1553), + [aux_sym_source_code_repeat1] = STATE(286), + [sym_identifier] = ACTIONS(263), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), [anon_sym_LBRACE] = ACTIONS(7), - [aux_sym_input_expression_token1] = ACTIONS(454), - [aux_sym_primitive_type_token19] = ACTIONS(457), - [aux_sym_variable_definition_token1] = ACTIONS(460), - [aux_sym_variable_definition_token2] = ACTIONS(463), - [aux_sym_buffer_definition_token2] = ACTIONS(466), - [aux_sym_argument_mode_token1] = ACTIONS(469), - [aux_sym_if_statement_token1] = ACTIONS(472), - [aux_sym_repeat_statement_token1] = ACTIONS(475), - [aux_sym__procedure_terminator_token1] = ACTIONS(478), - [aux_sym_procedure_parameter_definition_token1] = ACTIONS(481), - [aux_sym__function_terminator_token1] = ACTIONS(484), - [aux_sym_interface_statement_token1] = ACTIONS(487), - [aux_sym_using_statement_token1] = ACTIONS(490), - [aux_sym_on_error_phrase_token1] = ACTIONS(493), - [aux_sym_on_error_phrase_token3] = ACTIONS(496), - [aux_sym_do_block_token1] = ACTIONS(499), - [aux_sym__case_terminator_token1] = ACTIONS(502), - [aux_sym_find_statement_token1] = ACTIONS(505), - [aux_sym_assign_statement_token1] = ACTIONS(508), - [aux_sym_catch_statement_token1] = ACTIONS(511), - [aux_sym_finally_statement_token1] = ACTIONS(514), - [aux_sym_accumulate_statement_token1] = ACTIONS(517), - [anon_sym_ROUTINE_DASHLEVEL] = ACTIONS(520), - [anon_sym_BLOCK_DASHLEVEL] = ACTIONS(520), + [aux_sym__block_terminator_token1] = ACTIONS(413), + [aux_sym_input_expression_token1] = ACTIONS(267), + [aux_sym_primitive_type_token19] = ACTIONS(269), + [aux_sym_variable_definition_token1] = ACTIONS(271), + [aux_sym_variable_definition_token2] = ACTIONS(273), + [aux_sym_buffer_definition_token2] = ACTIONS(275), + [aux_sym_argument_mode_token1] = ACTIONS(277), + [aux_sym_if_statement_token1] = ACTIONS(279), + [aux_sym_repeat_statement_token1] = ACTIONS(281), + [aux_sym__procedure_terminator_token1] = ACTIONS(283), + [aux_sym_procedure_parameter_definition_token1] = ACTIONS(285), + [aux_sym__function_terminator_token1] = ACTIONS(287), + [aux_sym_interface_statement_token1] = ACTIONS(289), + [aux_sym_using_statement_token1] = ACTIONS(291), + [aux_sym_on_error_phrase_token1] = ACTIONS(293), + [aux_sym_on_error_phrase_token3] = ACTIONS(295), + [aux_sym_do_block_token1] = ACTIONS(297), + [aux_sym__case_terminator_token1] = ACTIONS(299), + [aux_sym_find_statement_token1] = ACTIONS(301), + [aux_sym_assign_statement_token1] = ACTIONS(303), + [aux_sym_catch_statement_token1] = ACTIONS(305), + [aux_sym_finally_statement_token1] = ACTIONS(307), + [aux_sym_accumulate_statement_token1] = ACTIONS(309), + [anon_sym_ROUTINE_DASHLEVEL] = ACTIONS(311), + [anon_sym_BLOCK_DASHLEVEL] = ACTIONS(311), }, [267] = { + [sym_body] = STATE(4395), [sym_comment] = STATE(267), - [sym_qualified_name] = STATE(4733), + [sym_qualified_name] = STATE(4814), [sym_include] = STATE(267), - [sym_assignment] = STATE(4732), - [sym_variable_definition] = STATE(1163), - [sym_variable_assignment] = STATE(1163), - [sym_buffer_definition] = STATE(1163), - [sym_query_definition] = STATE(1163), - [sym_function_call_statement] = STATE(1163), - [sym_function_call] = STATE(4731), - [sym_if_statement] = STATE(1163), - [sym_label] = STATE(1167), - [sym_repeat_statement] = STATE(1163), - [sym_procedure_statement] = STATE(1163), - [sym_procedure_parameter_definition] = STATE(1163), - [sym_function_statement] = STATE(1163), - [sym_return_statement] = STATE(1163), - [sym_interface_statement] = STATE(1163), - [sym_using_statement] = STATE(1163), - [sym_class_statement] = STATE(1163), - [sym_object_access] = STATE(3567), - [sym_stream_definition] = STATE(1163), - [sym_input_close_statement] = STATE(1163), - [sym_output_close_statement] = STATE(1163), - [sym__stream_statement] = STATE(1163), - [sym_input_stream_statement] = STATE(1169), - [sym_output_stream_statement] = STATE(1169), - [sym_do_block] = STATE(1163), - [sym_case_statement] = STATE(1163), - [sym_for_statement] = STATE(1163), - [sym_find_statement] = STATE(1163), - [sym_abl_statement] = STATE(1163), - [sym_assign_statement] = STATE(1163), - [sym_catch_statement] = STATE(1163), - [sym_finally_statement] = STATE(1163), - [sym_accumulate_statement] = STATE(1163), - [sym_undo_statement] = STATE(1163), - [sym_error_scope_statement] = STATE(1163), - [sym_temp_table_definition] = STATE(1163), - [sym_on_statement] = STATE(1163), - [sym__statement] = STATE(1170), - [aux_sym_source_code_repeat1] = STATE(266), - [ts_builtin_sym_end] = ACTIONS(523), + [sym_assignment] = STATE(4463), + [sym_variable_definition] = STATE(1550), + [sym_variable_assignment] = STATE(1550), + [sym_buffer_definition] = STATE(1550), + [sym_query_definition] = STATE(1550), + [sym_function_call_statement] = STATE(1550), + [sym_function_call] = STATE(4558), + [sym_if_statement] = STATE(1550), + [sym_label] = STATE(1551), + [sym_repeat_statement] = STATE(1550), + [sym_procedure_statement] = STATE(1550), + [sym_procedure_parameter_definition] = STATE(1550), + [sym_function_statement] = STATE(1550), + [sym_return_statement] = STATE(1550), + [sym_interface_statement] = STATE(1550), + [sym_using_statement] = STATE(1550), + [sym_class_statement] = STATE(1550), + [sym_object_access] = STATE(3661), + [sym_stream_definition] = STATE(1550), + [sym_input_close_statement] = STATE(1550), + [sym_output_close_statement] = STATE(1550), + [sym__stream_statement] = STATE(1550), + [sym_input_stream_statement] = STATE(1552), + [sym_output_stream_statement] = STATE(1552), + [sym_do_block] = STATE(1550), + [sym_case_statement] = STATE(1550), + [sym_for_statement] = STATE(1550), + [sym_find_statement] = STATE(1550), + [sym_abl_statement] = STATE(1550), + [sym_assign_statement] = STATE(1550), + [sym_catch_statement] = STATE(1550), + [sym_finally_statement] = STATE(1550), + [sym_accumulate_statement] = STATE(1550), + [sym_undo_statement] = STATE(1550), + [sym_error_scope_statement] = STATE(1550), + [sym_temp_table_definition] = STATE(1550), + [sym_on_statement] = STATE(1550), + [sym__statement] = STATE(1553), + [aux_sym_source_code_repeat1] = STATE(286), + [sym_identifier] = ACTIONS(263), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_LBRACE] = ACTIONS(7), + [aux_sym__block_terminator_token1] = ACTIONS(415), + [aux_sym_input_expression_token1] = ACTIONS(267), + [aux_sym_primitive_type_token19] = ACTIONS(269), + [aux_sym_variable_definition_token1] = ACTIONS(271), + [aux_sym_variable_definition_token2] = ACTIONS(273), + [aux_sym_buffer_definition_token2] = ACTIONS(275), + [aux_sym_argument_mode_token1] = ACTIONS(277), + [aux_sym_if_statement_token1] = ACTIONS(279), + [aux_sym_repeat_statement_token1] = ACTIONS(281), + [aux_sym__procedure_terminator_token1] = ACTIONS(283), + [aux_sym_procedure_parameter_definition_token1] = ACTIONS(285), + [aux_sym__function_terminator_token1] = ACTIONS(287), + [aux_sym_interface_statement_token1] = ACTIONS(289), + [aux_sym_using_statement_token1] = ACTIONS(291), + [aux_sym_on_error_phrase_token1] = ACTIONS(293), + [aux_sym_on_error_phrase_token3] = ACTIONS(295), + [aux_sym_do_block_token1] = ACTIONS(297), + [aux_sym__case_terminator_token1] = ACTIONS(299), + [aux_sym_find_statement_token1] = ACTIONS(301), + [aux_sym_assign_statement_token1] = ACTIONS(303), + [aux_sym_catch_statement_token1] = ACTIONS(305), + [aux_sym_finally_statement_token1] = ACTIONS(307), + [aux_sym_accumulate_statement_token1] = ACTIONS(309), + [anon_sym_ROUTINE_DASHLEVEL] = ACTIONS(311), + [anon_sym_BLOCK_DASHLEVEL] = ACTIONS(311), + }, + [268] = { + [sym_body] = STATE(4556), + [sym_comment] = STATE(268), + [sym_qualified_name] = STATE(4814), + [sym_include] = STATE(268), + [sym_assignment] = STATE(4463), + [sym_variable_definition] = STATE(1550), + [sym_variable_assignment] = STATE(1550), + [sym_buffer_definition] = STATE(1550), + [sym_query_definition] = STATE(1550), + [sym_function_call_statement] = STATE(1550), + [sym_function_call] = STATE(4558), + [sym_if_statement] = STATE(1550), + [sym_label] = STATE(1551), + [sym_repeat_statement] = STATE(1550), + [sym_procedure_statement] = STATE(1550), + [sym_procedure_parameter_definition] = STATE(1550), + [sym_function_statement] = STATE(1550), + [sym_return_statement] = STATE(1550), + [sym_interface_statement] = STATE(1550), + [sym_using_statement] = STATE(1550), + [sym_class_statement] = STATE(1550), + [sym_object_access] = STATE(3661), + [sym_stream_definition] = STATE(1550), + [sym_input_close_statement] = STATE(1550), + [sym_output_close_statement] = STATE(1550), + [sym__stream_statement] = STATE(1550), + [sym_input_stream_statement] = STATE(1552), + [sym_output_stream_statement] = STATE(1552), + [sym_do_block] = STATE(1550), + [sym_case_statement] = STATE(1550), + [sym_for_statement] = STATE(1550), + [sym_find_statement] = STATE(1550), + [sym_abl_statement] = STATE(1550), + [sym_assign_statement] = STATE(1550), + [sym_catch_statement] = STATE(1550), + [sym_finally_statement] = STATE(1550), + [sym_accumulate_statement] = STATE(1550), + [sym_undo_statement] = STATE(1550), + [sym_error_scope_statement] = STATE(1550), + [sym_temp_table_definition] = STATE(1550), + [sym_on_statement] = STATE(1550), + [sym__statement] = STATE(1553), + [aux_sym_source_code_repeat1] = STATE(286), + [sym_identifier] = ACTIONS(263), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_LBRACE] = ACTIONS(7), + [aux_sym__block_terminator_token1] = ACTIONS(417), + [aux_sym_input_expression_token1] = ACTIONS(267), + [aux_sym_primitive_type_token19] = ACTIONS(269), + [aux_sym_variable_definition_token1] = ACTIONS(271), + [aux_sym_variable_definition_token2] = ACTIONS(273), + [aux_sym_buffer_definition_token2] = ACTIONS(275), + [aux_sym_argument_mode_token1] = ACTIONS(277), + [aux_sym_if_statement_token1] = ACTIONS(279), + [aux_sym_repeat_statement_token1] = ACTIONS(281), + [aux_sym__procedure_terminator_token1] = ACTIONS(283), + [aux_sym_procedure_parameter_definition_token1] = ACTIONS(285), + [aux_sym__function_terminator_token1] = ACTIONS(287), + [aux_sym_interface_statement_token1] = ACTIONS(289), + [aux_sym_using_statement_token1] = ACTIONS(291), + [aux_sym_on_error_phrase_token1] = ACTIONS(293), + [aux_sym_on_error_phrase_token3] = ACTIONS(295), + [aux_sym_do_block_token1] = ACTIONS(297), + [aux_sym__case_terminator_token1] = ACTIONS(299), + [aux_sym_find_statement_token1] = ACTIONS(301), + [aux_sym_assign_statement_token1] = ACTIONS(303), + [aux_sym_catch_statement_token1] = ACTIONS(305), + [aux_sym_finally_statement_token1] = ACTIONS(307), + [aux_sym_accumulate_statement_token1] = ACTIONS(309), + [anon_sym_ROUTINE_DASHLEVEL] = ACTIONS(311), + [anon_sym_BLOCK_DASHLEVEL] = ACTIONS(311), + }, + [269] = { + [sym_comment] = STATE(269), + [sym_constant] = STATE(20), + [sym_qualified_name] = STATE(20), + [sym_boolean_literal] = STATE(20), + [sym__decimal_literal] = STATE(23), + [sym_number_literal] = STATE(20), + [sym__string_literal] = STATE(20), + [sym_double_quoted_string] = STATE(18), + [sym_single_quoted_string] = STATE(18), + [sym_parenthesized_expression] = STATE(20), + [sym_logical_expression] = STATE(24), + [sym_unary_expression] = STATE(20), + [sym_ambiguous_expression] = STATE(20), + [sym_current_changed_expression] = STATE(20), + [sym_locked_expression] = STATE(20), + [sym_input_expression] = STATE(20), + [sym_additive_expression] = STATE(24), + [sym_multiplicative_expression] = STATE(24), + [sym_comparison_expression] = STATE(24), + [sym__binary_expression] = STATE(20), + [sym_include] = STATE(269), + [sym__function_call_arguments] = STATE(4297), + [sym_argument_mode] = STATE(4685), + [sym__function_argument_with_mode] = STATE(3733), + [sym_function_call_argument] = STATE(3202), + [sym_function_call] = STATE(20), + [sym_ternary_expression] = STATE(20), + [sym_new_expression] = STATE(20), + [sym_object_access] = STATE(29), + [sym_can_find_expression] = STATE(20), + [sym_accumulate_aggregate] = STATE(3277), + [sym_accumulate_expression] = STATE(20), + [sym_available_expression] = STATE(20), + [sym__expression] = STATE(877), + [sym_identifier] = ACTIONS(337), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_LBRACE] = ACTIONS(339), + [sym_null_expression] = ACTIONS(341), + [aux_sym_boolean_literal_token1] = ACTIONS(343), + [aux_sym_boolean_literal_token2] = ACTIONS(343), + [aux_sym_boolean_literal_token3] = ACTIONS(343), + [aux_sym_boolean_literal_token4] = ACTIONS(343), + [sym__integer_literal] = ACTIONS(345), + [anon_sym_DQUOTE] = ACTIONS(347), + [anon_sym_SQUOTE] = ACTIONS(349), + [anon_sym_LPAREN] = ACTIONS(351), + [anon_sym_RPAREN] = ACTIONS(353), + [aux_sym_unary_expression_token1] = ACTIONS(355), + [aux_sym_unary_expression_token2] = ACTIONS(357), + [aux_sym_ambiguous_expression_token1] = ACTIONS(359), + [aux_sym_current_changed_expression_token1] = ACTIONS(361), + [aux_sym_locked_expression_token1] = ACTIONS(363), + [aux_sym_input_expression_token1] = ACTIONS(365), + [aux_sym_scope_tuning_token1] = ACTIONS(367), + [aux_sym_argument_mode_token1] = ACTIONS(369), + [aux_sym_argument_mode_token2] = ACTIONS(369), + [aux_sym_if_statement_token1] = ACTIONS(371), + [aux_sym_can_find_expression_token1] = ACTIONS(373), + [aux_sym_accumulate_aggregate_token1] = ACTIONS(375), + [aux_sym_accumulate_aggregate_token2] = ACTIONS(375), + [aux_sym_accumulate_aggregate_token3] = ACTIONS(375), + [aux_sym_accumulate_aggregate_token4] = ACTIONS(375), + [aux_sym_accumulate_aggregate_token5] = ACTIONS(375), + [aux_sym_accumulate_aggregate_token6] = ACTIONS(375), + [aux_sym_accumulate_aggregate_token7] = ACTIONS(375), + [aux_sym_accumulate_aggregate_token8] = ACTIONS(375), + [aux_sym_accumulate_aggregate_token9] = ACTIONS(375), + [aux_sym_accumulate_aggregate_token10] = ACTIONS(375), + [aux_sym_accumulate_expression_token1] = ACTIONS(377), + [aux_sym_available_expression_token1] = ACTIONS(379), + [aux_sym_available_expression_token2] = ACTIONS(379), + }, + [270] = { + [sym_comment] = STATE(270), + [sym_qualified_name] = STATE(4814), + [sym_include] = STATE(270), + [sym_assignment] = STATE(4813), + [sym_variable_definition] = STATE(1217), + [sym_variable_assignment] = STATE(1217), + [sym_buffer_definition] = STATE(1217), + [sym_query_definition] = STATE(1217), + [sym_function_call_statement] = STATE(1217), + [sym_function_call] = STATE(4812), + [sym_if_statement] = STATE(1217), + [sym_label] = STATE(1230), + [sym_repeat_statement] = STATE(1217), + [sym_procedure_statement] = STATE(1217), + [sym_procedure_parameter_definition] = STATE(1217), + [sym_function_statement] = STATE(1217), + [sym_return_statement] = STATE(1217), + [sym_interface_statement] = STATE(1217), + [sym_using_statement] = STATE(1217), + [sym_class_statement] = STATE(1217), + [sym_object_access] = STATE(3661), + [sym_stream_definition] = STATE(1217), + [sym_input_close_statement] = STATE(1217), + [sym_output_close_statement] = STATE(1217), + [sym__stream_statement] = STATE(1217), + [sym_input_stream_statement] = STATE(1348), + [sym_output_stream_statement] = STATE(1348), + [sym_do_block] = STATE(1217), + [sym_case_statement] = STATE(1217), + [sym_for_statement] = STATE(1217), + [sym_find_statement] = STATE(1217), + [sym_abl_statement] = STATE(1217), + [sym_assign_statement] = STATE(1217), + [sym_catch_statement] = STATE(1217), + [sym_finally_statement] = STATE(1217), + [sym_accumulate_statement] = STATE(1217), + [sym_undo_statement] = STATE(1217), + [sym_error_scope_statement] = STATE(1217), + [sym_temp_table_definition] = STATE(1217), + [sym_on_statement] = STATE(1217), + [sym__statement] = STATE(1350), + [aux_sym_source_code_repeat1] = STATE(275), + [ts_builtin_sym_end] = ACTIONS(419), [sym_identifier] = ACTIONS(11), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), @@ -46884,2238 +47445,2386 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_ROUTINE_DASHLEVEL] = ACTIONS(57), [anon_sym_BLOCK_DASHLEVEL] = ACTIONS(57), }, - [268] = { - [sym_comment] = STATE(268), - [sym_constant] = STATE(13), - [sym_qualified_name] = STATE(13), - [sym_boolean_literal] = STATE(13), - [sym__decimal_literal] = STATE(36), - [sym_number_literal] = STATE(13), - [sym__string_literal] = STATE(13), - [sym_double_quoted_string] = STATE(21), - [sym_single_quoted_string] = STATE(21), - [sym_parenthesized_expression] = STATE(13), - [sym_logical_expression] = STATE(37), - [sym_unary_expression] = STATE(13), - [sym_ambiguous_expression] = STATE(13), - [sym_current_changed_expression] = STATE(13), - [sym_locked_expression] = STATE(13), - [sym_input_expression] = STATE(13), - [sym_additive_expression] = STATE(37), - [sym_multiplicative_expression] = STATE(37), - [sym_comparison_expression] = STATE(37), - [sym__binary_expression] = STATE(13), - [sym_include] = STATE(268), - [sym_function_call] = STATE(13), - [sym_ternary_expression] = STATE(13), - [sym_new_expression] = STATE(13), - [sym_object_access] = STATE(38), - [sym_where_clause] = STATE(2166), - [sym_query_tuning] = STATE(2166), - [sym_can_find_expression] = STATE(13), - [sym_of] = STATE(2166), - [sym__using_first] = STATE(1944), - [sym_accumulate_expression] = STATE(13), - [sym_available_expression] = STATE(13), - [sym__expression] = STATE(598), - [aux_sym_qualified_name_repeat1] = STATE(724), - [aux_sym_can_find_expression_repeat2] = STATE(1890), - [sym_identifier] = ACTIONS(353), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_LBRACE] = ACTIONS(355), - [sym_null_expression] = ACTIONS(357), - [aux_sym_boolean_literal_token1] = ACTIONS(359), - [aux_sym_boolean_literal_token2] = ACTIONS(359), - [aux_sym_boolean_literal_token3] = ACTIONS(359), - [aux_sym_boolean_literal_token4] = ACTIONS(359), - [sym__integer_literal] = ACTIONS(361), - [anon_sym_DQUOTE] = ACTIONS(363), - [anon_sym_SQUOTE] = ACTIONS(365), - [anon_sym_LPAREN] = ACTIONS(367), - [anon_sym_RPAREN] = ACTIONS(525), - [aux_sym_unary_expression_token1] = ACTIONS(371), - [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(389), - [aux_sym_of_token1] = ACTIONS(443), - [aux_sym_accumulate_expression_token1] = ACTIONS(445), - [aux_sym_available_expression_token1] = ACTIONS(395), - [aux_sym_available_expression_token2] = ACTIONS(395), - [sym__namedot] = ACTIONS(447), - }, - [269] = { - [sym_comment] = STATE(269), - [sym_constant] = STATE(13), - [sym_qualified_name] = STATE(13), - [sym_boolean_literal] = STATE(13), - [sym__decimal_literal] = STATE(36), - [sym_number_literal] = STATE(13), - [sym__string_literal] = STATE(13), - [sym_double_quoted_string] = STATE(21), - [sym_single_quoted_string] = STATE(21), - [sym_parenthesized_expression] = STATE(13), - [sym_logical_expression] = STATE(37), - [sym_unary_expression] = STATE(13), - [sym_ambiguous_expression] = STATE(13), - [sym_current_changed_expression] = STATE(13), - [sym_locked_expression] = STATE(13), - [sym_input_expression] = STATE(13), - [sym_additive_expression] = STATE(37), - [sym_multiplicative_expression] = STATE(37), - [sym_comparison_expression] = STATE(37), - [sym__binary_expression] = STATE(13), - [sym_include] = STATE(269), - [sym_function_call] = STATE(13), - [sym_ternary_expression] = STATE(13), - [sym_new_expression] = STATE(13), - [sym_object_access] = STATE(38), - [sym_where_clause] = STATE(2166), - [sym_query_tuning] = STATE(2166), - [sym_can_find_expression] = STATE(13), - [sym_of] = STATE(2166), - [sym__using_first] = STATE(1944), - [sym_accumulate_expression] = STATE(13), - [sym_available_expression] = STATE(13), - [sym__expression] = STATE(601), - [aux_sym_qualified_name_repeat1] = STATE(724), - [aux_sym_can_find_expression_repeat2] = STATE(1889), - [sym_identifier] = ACTIONS(353), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_LBRACE] = ACTIONS(355), - [sym_null_expression] = ACTIONS(357), - [aux_sym_boolean_literal_token1] = ACTIONS(359), - [aux_sym_boolean_literal_token2] = ACTIONS(359), - [aux_sym_boolean_literal_token3] = ACTIONS(359), - [aux_sym_boolean_literal_token4] = ACTIONS(359), - [sym__integer_literal] = ACTIONS(361), - [anon_sym_DQUOTE] = ACTIONS(363), - [anon_sym_SQUOTE] = ACTIONS(365), - [anon_sym_LPAREN] = ACTIONS(367), - [anon_sym_RPAREN] = ACTIONS(527), - [aux_sym_unary_expression_token1] = ACTIONS(371), - [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(389), - [aux_sym_of_token1] = ACTIONS(443), - [aux_sym_accumulate_expression_token1] = ACTIONS(445), - [aux_sym_available_expression_token1] = ACTIONS(395), - [aux_sym_available_expression_token2] = ACTIONS(395), - [sym__namedot] = ACTIONS(447), - }, - [270] = { - [sym_comment] = STATE(270), - [sym_constant] = STATE(13), - [sym_qualified_name] = STATE(13), - [sym_boolean_literal] = STATE(13), - [sym__decimal_literal] = STATE(36), - [sym_number_literal] = STATE(13), - [sym__string_literal] = STATE(13), - [sym_double_quoted_string] = STATE(21), - [sym_single_quoted_string] = STATE(21), - [sym_parenthesized_expression] = STATE(13), - [sym_logical_expression] = STATE(37), - [sym_unary_expression] = STATE(13), - [sym_ambiguous_expression] = STATE(13), - [sym_current_changed_expression] = STATE(13), - [sym_locked_expression] = STATE(13), - [sym_input_expression] = STATE(13), - [sym_additive_expression] = STATE(37), - [sym_multiplicative_expression] = STATE(37), - [sym_comparison_expression] = STATE(37), - [sym__binary_expression] = STATE(13), - [sym_include] = STATE(270), - [sym_function_call] = STATE(13), - [sym_ternary_expression] = STATE(13), - [sym_new_expression] = STATE(13), - [sym_object_access] = STATE(38), - [sym_where_clause] = STATE(2166), - [sym_query_tuning] = STATE(2166), - [sym_can_find_expression] = STATE(13), - [sym_of] = STATE(2166), - [sym__using_first] = STATE(1944), - [sym_accumulate_expression] = STATE(13), - [sym_available_expression] = STATE(13), - [sym__expression] = STATE(597), - [aux_sym_qualified_name_repeat1] = STATE(724), - [aux_sym_can_find_expression_repeat2] = STATE(1880), - [sym_identifier] = ACTIONS(353), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_LBRACE] = ACTIONS(355), - [sym_null_expression] = ACTIONS(357), - [aux_sym_boolean_literal_token1] = ACTIONS(359), - [aux_sym_boolean_literal_token2] = ACTIONS(359), - [aux_sym_boolean_literal_token3] = ACTIONS(359), - [aux_sym_boolean_literal_token4] = ACTIONS(359), - [sym__integer_literal] = ACTIONS(361), - [anon_sym_DQUOTE] = ACTIONS(363), - [anon_sym_SQUOTE] = ACTIONS(365), - [anon_sym_LPAREN] = ACTIONS(367), - [anon_sym_RPAREN] = ACTIONS(529), - [aux_sym_unary_expression_token1] = ACTIONS(371), - [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(389), - [aux_sym_of_token1] = ACTIONS(443), - [aux_sym_accumulate_expression_token1] = ACTIONS(445), - [aux_sym_available_expression_token1] = ACTIONS(395), - [aux_sym_available_expression_token2] = ACTIONS(395), - [sym__namedot] = ACTIONS(447), - }, [271] = { [sym_comment] = STATE(271), - [sym_constant] = STATE(13), - [sym_qualified_name] = STATE(13), - [sym_boolean_literal] = STATE(13), - [sym__decimal_literal] = STATE(36), - [sym_number_literal] = STATE(13), - [sym__string_literal] = STATE(13), - [sym_double_quoted_string] = STATE(21), - [sym_single_quoted_string] = STATE(21), - [sym_parenthesized_expression] = STATE(13), - [sym_logical_expression] = STATE(37), - [sym_unary_expression] = STATE(13), - [sym_ambiguous_expression] = STATE(13), - [sym_current_changed_expression] = STATE(13), - [sym_locked_expression] = STATE(13), - [sym_input_expression] = STATE(13), - [sym_additive_expression] = STATE(37), - [sym_multiplicative_expression] = STATE(37), - [sym_comparison_expression] = STATE(37), - [sym__binary_expression] = STATE(13), + [sym_constant] = STATE(20), + [sym_qualified_name] = STATE(20), + [sym_boolean_literal] = STATE(20), + [sym__decimal_literal] = STATE(23), + [sym_number_literal] = STATE(20), + [sym__string_literal] = STATE(20), + [sym_double_quoted_string] = STATE(18), + [sym_single_quoted_string] = STATE(18), + [sym_parenthesized_expression] = STATE(20), + [sym_logical_expression] = STATE(24), + [sym_unary_expression] = STATE(20), + [sym_ambiguous_expression] = STATE(20), + [sym_current_changed_expression] = STATE(20), + [sym_locked_expression] = STATE(20), + [sym_input_expression] = STATE(20), + [sym_additive_expression] = STATE(24), + [sym_multiplicative_expression] = STATE(24), + [sym_comparison_expression] = STATE(24), + [sym__binary_expression] = STATE(20), [sym_include] = STATE(271), - [sym_function_call] = STATE(13), - [sym_ternary_expression] = STATE(13), - [sym_new_expression] = STATE(13), - [sym_object_access] = STATE(38), - [sym_where_clause] = STATE(2166), - [sym_query_tuning] = STATE(2166), - [sym_can_find_expression] = STATE(13), - [sym_of] = STATE(2166), - [sym__using_first] = STATE(1944), - [sym_accumulate_expression] = STATE(13), - [sym_available_expression] = STATE(13), - [sym__expression] = STATE(595), - [aux_sym_qualified_name_repeat1] = STATE(724), - [aux_sym_can_find_expression_repeat2] = STATE(1875), - [sym_identifier] = ACTIONS(353), + [sym_function_call] = STATE(20), + [sym_ternary_expression] = STATE(20), + [sym_new_expression] = STATE(20), + [sym_object_access] = STATE(29), + [sym_where_clause] = STATE(2222), + [sym_query_tuning] = STATE(2222), + [sym_can_find_expression] = STATE(20), + [sym_of] = STATE(2222), + [sym__using_first] = STATE(1960), + [sym_accumulate_expression] = STATE(20), + [sym_available_expression] = STATE(20), + [sym__expression] = STATE(602), + [aux_sym_qualified_name_repeat1] = STATE(730), + [aux_sym_can_find_expression_repeat2] = STATE(1898), + [sym_identifier] = ACTIONS(337), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_LBRACE] = ACTIONS(355), - [sym_null_expression] = ACTIONS(357), - [aux_sym_boolean_literal_token1] = ACTIONS(359), - [aux_sym_boolean_literal_token2] = ACTIONS(359), - [aux_sym_boolean_literal_token3] = ACTIONS(359), - [aux_sym_boolean_literal_token4] = ACTIONS(359), - [sym__integer_literal] = ACTIONS(361), - [anon_sym_DQUOTE] = ACTIONS(363), - [anon_sym_SQUOTE] = ACTIONS(365), - [anon_sym_LPAREN] = ACTIONS(367), - [anon_sym_RPAREN] = ACTIONS(531), - [aux_sym_unary_expression_token1] = ACTIONS(371), - [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(389), - [aux_sym_of_token1] = ACTIONS(443), - [aux_sym_accumulate_expression_token1] = ACTIONS(445), - [aux_sym_available_expression_token1] = ACTIONS(395), - [aux_sym_available_expression_token2] = ACTIONS(395), - [sym__namedot] = ACTIONS(447), + [anon_sym_LBRACE] = ACTIONS(339), + [sym_null_expression] = ACTIONS(341), + [aux_sym_boolean_literal_token1] = ACTIONS(343), + [aux_sym_boolean_literal_token2] = ACTIONS(343), + [aux_sym_boolean_literal_token3] = ACTIONS(343), + [aux_sym_boolean_literal_token4] = ACTIONS(343), + [sym__integer_literal] = ACTIONS(345), + [anon_sym_DQUOTE] = ACTIONS(347), + [anon_sym_SQUOTE] = ACTIONS(349), + [anon_sym_LPAREN] = ACTIONS(351), + [anon_sym_RPAREN] = ACTIONS(421), + [aux_sym_unary_expression_token1] = ACTIONS(355), + [aux_sym_unary_expression_token2] = ACTIONS(423), + [aux_sym_ambiguous_expression_token1] = ACTIONS(425), + [aux_sym_current_changed_expression_token1] = ACTIONS(427), + [aux_sym_locked_expression_token1] = ACTIONS(429), + [aux_sym_input_expression_token1] = ACTIONS(431), + [aux_sym_scope_tuning_token1] = ACTIONS(433), + [aux_sym_function_call_token1] = ACTIONS(435), + [aux_sym_if_statement_token1] = ACTIONS(437), + [aux_sym_using_statement_token1] = ACTIONS(439), + [aux_sym_where_clause_token1] = ACTIONS(441), + [aux_sym_query_tuning_token1] = ACTIONS(435), + [aux_sym_query_tuning_token2] = ACTIONS(435), + [aux_sym_query_tuning_token3] = ACTIONS(435), + [aux_sym_query_tuning_token4] = ACTIONS(435), + [aux_sym_query_tuning_token5] = ACTIONS(443), + [aux_sym_can_find_expression_token1] = ACTIONS(373), + [aux_sym_of_token1] = ACTIONS(445), + [aux_sym_accumulate_expression_token1] = ACTIONS(447), + [aux_sym_available_expression_token1] = ACTIONS(379), + [aux_sym_available_expression_token2] = ACTIONS(379), + [sym__namedot] = ACTIONS(449), }, [272] = { [sym_comment] = STATE(272), - [sym_constant] = STATE(13), - [sym_qualified_name] = STATE(13), - [sym_boolean_literal] = STATE(13), - [sym__decimal_literal] = STATE(36), - [sym_number_literal] = STATE(13), - [sym__string_literal] = STATE(13), - [sym_double_quoted_string] = STATE(21), - [sym_single_quoted_string] = STATE(21), - [sym_parenthesized_expression] = STATE(13), - [sym_logical_expression] = STATE(37), - [sym_unary_expression] = STATE(13), - [sym_ambiguous_expression] = STATE(13), - [sym_current_changed_expression] = STATE(13), - [sym_locked_expression] = STATE(13), - [sym_input_expression] = STATE(13), - [sym_additive_expression] = STATE(37), - [sym_multiplicative_expression] = STATE(37), - [sym_comparison_expression] = STATE(37), - [sym__binary_expression] = STATE(13), + [sym_constant] = STATE(20), + [sym_qualified_name] = STATE(20), + [sym_boolean_literal] = STATE(20), + [sym__decimal_literal] = STATE(23), + [sym_number_literal] = STATE(20), + [sym__string_literal] = STATE(20), + [sym_double_quoted_string] = STATE(18), + [sym_single_quoted_string] = STATE(18), + [sym_parenthesized_expression] = STATE(20), + [sym_logical_expression] = STATE(24), + [sym_unary_expression] = STATE(20), + [sym_ambiguous_expression] = STATE(20), + [sym_current_changed_expression] = STATE(20), + [sym_locked_expression] = STATE(20), + [sym_input_expression] = STATE(20), + [sym_additive_expression] = STATE(24), + [sym_multiplicative_expression] = STATE(24), + [sym_comparison_expression] = STATE(24), + [sym__binary_expression] = STATE(20), [sym_include] = STATE(272), - [sym_function_call] = STATE(13), - [sym_ternary_expression] = STATE(13), - [sym_new_expression] = STATE(13), - [sym_object_access] = STATE(38), - [sym_where_clause] = STATE(2166), - [sym_query_tuning] = STATE(2166), - [sym_can_find_expression] = STATE(13), - [sym_of] = STATE(2166), - [sym__using_first] = STATE(1944), - [sym_accumulate_expression] = STATE(13), - [sym_available_expression] = STATE(13), - [sym__expression] = STATE(607), - [aux_sym_qualified_name_repeat1] = STATE(724), - [aux_sym_can_find_expression_repeat2] = STATE(1881), - [sym_identifier] = ACTIONS(353), + [sym_function_call] = STATE(20), + [sym_ternary_expression] = STATE(20), + [sym_new_expression] = STATE(20), + [sym_object_access] = STATE(29), + [sym_where_clause] = STATE(2222), + [sym_query_tuning] = STATE(2222), + [sym_can_find_expression] = STATE(20), + [sym_of] = STATE(2222), + [sym__using_first] = STATE(1960), + [sym_accumulate_expression] = STATE(20), + [sym_available_expression] = STATE(20), + [sym__expression] = STATE(608), + [aux_sym_qualified_name_repeat1] = STATE(730), + [aux_sym_can_find_expression_repeat2] = STATE(1886), + [sym_identifier] = ACTIONS(337), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_LBRACE] = ACTIONS(355), - [sym_null_expression] = ACTIONS(357), - [aux_sym_boolean_literal_token1] = ACTIONS(359), - [aux_sym_boolean_literal_token2] = ACTIONS(359), - [aux_sym_boolean_literal_token3] = ACTIONS(359), - [aux_sym_boolean_literal_token4] = ACTIONS(359), - [sym__integer_literal] = ACTIONS(361), - [anon_sym_DQUOTE] = ACTIONS(363), - [anon_sym_SQUOTE] = ACTIONS(365), - [anon_sym_LPAREN] = ACTIONS(367), - [anon_sym_RPAREN] = ACTIONS(533), - [aux_sym_unary_expression_token1] = ACTIONS(371), - [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(389), - [aux_sym_of_token1] = ACTIONS(443), - [aux_sym_accumulate_expression_token1] = ACTIONS(445), - [aux_sym_available_expression_token1] = ACTIONS(395), - [aux_sym_available_expression_token2] = ACTIONS(395), - [sym__namedot] = ACTIONS(447), + [anon_sym_LBRACE] = ACTIONS(339), + [sym_null_expression] = ACTIONS(341), + [aux_sym_boolean_literal_token1] = ACTIONS(343), + [aux_sym_boolean_literal_token2] = ACTIONS(343), + [aux_sym_boolean_literal_token3] = ACTIONS(343), + [aux_sym_boolean_literal_token4] = ACTIONS(343), + [sym__integer_literal] = ACTIONS(345), + [anon_sym_DQUOTE] = ACTIONS(347), + [anon_sym_SQUOTE] = ACTIONS(349), + [anon_sym_LPAREN] = ACTIONS(351), + [anon_sym_RPAREN] = ACTIONS(451), + [aux_sym_unary_expression_token1] = ACTIONS(355), + [aux_sym_unary_expression_token2] = ACTIONS(423), + [aux_sym_ambiguous_expression_token1] = ACTIONS(425), + [aux_sym_current_changed_expression_token1] = ACTIONS(427), + [aux_sym_locked_expression_token1] = ACTIONS(429), + [aux_sym_input_expression_token1] = ACTIONS(431), + [aux_sym_scope_tuning_token1] = ACTIONS(433), + [aux_sym_function_call_token1] = ACTIONS(435), + [aux_sym_if_statement_token1] = ACTIONS(437), + [aux_sym_using_statement_token1] = ACTIONS(439), + [aux_sym_where_clause_token1] = ACTIONS(441), + [aux_sym_query_tuning_token1] = ACTIONS(435), + [aux_sym_query_tuning_token2] = ACTIONS(435), + [aux_sym_query_tuning_token3] = ACTIONS(435), + [aux_sym_query_tuning_token4] = ACTIONS(435), + [aux_sym_query_tuning_token5] = ACTIONS(443), + [aux_sym_can_find_expression_token1] = ACTIONS(373), + [aux_sym_of_token1] = ACTIONS(445), + [aux_sym_accumulate_expression_token1] = ACTIONS(447), + [aux_sym_available_expression_token1] = ACTIONS(379), + [aux_sym_available_expression_token2] = ACTIONS(379), + [sym__namedot] = ACTIONS(449), }, [273] = { [sym_comment] = STATE(273), - [sym_constant] = STATE(13), - [sym_qualified_name] = STATE(13), - [sym_boolean_literal] = STATE(13), - [sym__decimal_literal] = STATE(36), - [sym_number_literal] = STATE(13), - [sym__string_literal] = STATE(13), - [sym_double_quoted_string] = STATE(21), - [sym_single_quoted_string] = STATE(21), - [sym_parenthesized_expression] = STATE(13), - [sym_logical_expression] = STATE(37), - [sym_unary_expression] = STATE(13), - [sym_ambiguous_expression] = STATE(13), - [sym_current_changed_expression] = STATE(13), - [sym_locked_expression] = STATE(13), - [sym_input_expression] = STATE(13), - [sym_additive_expression] = STATE(37), - [sym_multiplicative_expression] = STATE(37), - [sym_comparison_expression] = STATE(37), - [sym__binary_expression] = STATE(13), + [sym_qualified_name] = STATE(4814), [sym_include] = STATE(273), - [sym_function_call] = STATE(13), - [sym_ternary_expression] = STATE(13), - [sym_new_expression] = STATE(13), - [sym_object_access] = STATE(38), - [sym_where_clause] = STATE(2166), - [sym_query_tuning] = STATE(2166), - [sym_can_find_expression] = STATE(13), - [sym_of] = STATE(2166), - [sym__using_first] = STATE(1944), - [sym_accumulate_expression] = STATE(13), - [sym_available_expression] = STATE(13), - [sym__expression] = STATE(596), - [aux_sym_qualified_name_repeat1] = STATE(724), - [aux_sym_can_find_expression_repeat2] = STATE(1900), - [sym_identifier] = ACTIONS(353), + [sym_assignment] = STATE(4463), + [sym_variable_definition] = STATE(1550), + [sym_variable_assignment] = STATE(1550), + [sym_buffer_definition] = STATE(1550), + [sym_query_definition] = STATE(1550), + [sym_function_call_statement] = STATE(1550), + [sym_function_call] = STATE(4558), + [sym_if_statement] = STATE(1550), + [sym_label] = STATE(1551), + [sym_repeat_statement] = STATE(1550), + [sym_procedure_statement] = STATE(1550), + [sym_procedure_parameter_definition] = STATE(1550), + [sym_function_statement] = STATE(1550), + [sym_return_statement] = STATE(1550), + [sym_interface_statement] = STATE(1550), + [sym_using_statement] = STATE(1550), + [sym_class_statement] = STATE(1550), + [sym_object_access] = STATE(3661), + [sym_stream_definition] = STATE(1550), + [sym_input_close_statement] = STATE(1550), + [sym_output_close_statement] = STATE(1550), + [sym__stream_statement] = STATE(1550), + [sym_input_stream_statement] = STATE(1552), + [sym_output_stream_statement] = STATE(1552), + [sym_do_block] = STATE(1550), + [sym_case_statement] = STATE(1550), + [sym_for_statement] = STATE(1550), + [sym_find_statement] = STATE(1550), + [sym_abl_statement] = STATE(1550), + [sym_assign_statement] = STATE(1550), + [sym_catch_statement] = STATE(1550), + [sym_finally_statement] = STATE(1550), + [sym_accumulate_statement] = STATE(1550), + [sym_undo_statement] = STATE(1550), + [sym_error_scope_statement] = STATE(1550), + [sym_temp_table_definition] = STATE(1550), + [sym_on_statement] = STATE(1550), + [sym__statement] = STATE(1553), + [aux_sym_source_code_repeat1] = STATE(273), + [sym_identifier] = ACTIONS(453), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_LBRACE] = ACTIONS(355), - [sym_null_expression] = ACTIONS(357), - [aux_sym_boolean_literal_token1] = ACTIONS(359), - [aux_sym_boolean_literal_token2] = ACTIONS(359), - [aux_sym_boolean_literal_token3] = ACTIONS(359), - [aux_sym_boolean_literal_token4] = ACTIONS(359), - [sym__integer_literal] = ACTIONS(361), - [anon_sym_DQUOTE] = ACTIONS(363), - [anon_sym_SQUOTE] = ACTIONS(365), - [anon_sym_LPAREN] = ACTIONS(367), - [anon_sym_RPAREN] = ACTIONS(535), - [aux_sym_unary_expression_token1] = ACTIONS(371), - [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(389), - [aux_sym_of_token1] = ACTIONS(443), - [aux_sym_accumulate_expression_token1] = ACTIONS(445), - [aux_sym_available_expression_token1] = ACTIONS(395), - [aux_sym_available_expression_token2] = ACTIONS(395), - [sym__namedot] = ACTIONS(447), + [anon_sym_LBRACE] = ACTIONS(7), + [aux_sym__block_terminator_token1] = ACTIONS(456), + [aux_sym_input_expression_token1] = ACTIONS(458), + [aux_sym_primitive_type_token19] = ACTIONS(461), + [aux_sym_variable_definition_token1] = ACTIONS(464), + [aux_sym_variable_definition_token2] = ACTIONS(467), + [aux_sym_buffer_definition_token2] = ACTIONS(470), + [aux_sym_argument_mode_token1] = ACTIONS(473), + [aux_sym_if_statement_token1] = ACTIONS(476), + [aux_sym_repeat_statement_token1] = ACTIONS(479), + [aux_sym__procedure_terminator_token1] = ACTIONS(482), + [aux_sym_procedure_parameter_definition_token1] = ACTIONS(485), + [aux_sym__function_terminator_token1] = ACTIONS(488), + [aux_sym_interface_statement_token1] = ACTIONS(491), + [aux_sym_using_statement_token1] = ACTIONS(494), + [aux_sym_on_error_phrase_token1] = ACTIONS(497), + [aux_sym_on_error_phrase_token3] = ACTIONS(500), + [aux_sym_do_block_token1] = ACTIONS(503), + [aux_sym__case_terminator_token1] = ACTIONS(506), + [aux_sym_find_statement_token1] = ACTIONS(509), + [aux_sym_assign_statement_token1] = ACTIONS(512), + [aux_sym_catch_statement_token1] = ACTIONS(515), + [aux_sym_finally_statement_token1] = ACTIONS(518), + [aux_sym_accumulate_statement_token1] = ACTIONS(521), + [anon_sym_ROUTINE_DASHLEVEL] = ACTIONS(524), + [anon_sym_BLOCK_DASHLEVEL] = ACTIONS(524), }, [274] = { [sym_comment] = STATE(274), - [sym_constant] = STATE(13), - [sym_qualified_name] = STATE(13), - [sym_boolean_literal] = STATE(13), - [sym__decimal_literal] = STATE(36), - [sym_number_literal] = STATE(13), - [sym__string_literal] = STATE(13), - [sym_double_quoted_string] = STATE(21), - [sym_single_quoted_string] = STATE(21), - [sym_parenthesized_expression] = STATE(13), - [sym_logical_expression] = STATE(37), - [sym_unary_expression] = STATE(13), - [sym_ambiguous_expression] = STATE(13), - [sym_current_changed_expression] = STATE(13), - [sym_locked_expression] = STATE(13), - [sym_input_expression] = STATE(13), - [sym_additive_expression] = STATE(37), - [sym_multiplicative_expression] = STATE(37), - [sym_comparison_expression] = STATE(37), - [sym__binary_expression] = STATE(13), [sym_include] = STATE(274), - [sym_function_call] = STATE(13), - [sym_ternary_expression] = STATE(13), - [sym_new_expression] = STATE(13), - [sym_object_access] = STATE(38), - [sym_where_clause] = STATE(2166), - [sym_query_tuning] = STATE(2166), - [sym_can_find_expression] = STATE(13), - [sym_of] = STATE(2166), - [sym__using_first] = STATE(1944), - [sym_accumulate_expression] = STATE(13), - [sym_available_expression] = STATE(13), - [sym__expression] = STATE(606), - [aux_sym_qualified_name_repeat1] = STATE(724), - [aux_sym_can_find_expression_repeat2] = STATE(1886), - [sym_identifier] = ACTIONS(353), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_LBRACE] = ACTIONS(355), - [sym_null_expression] = ACTIONS(357), - [aux_sym_boolean_literal_token1] = ACTIONS(359), - [aux_sym_boolean_literal_token2] = ACTIONS(359), - [aux_sym_boolean_literal_token3] = ACTIONS(359), - [aux_sym_boolean_literal_token4] = ACTIONS(359), - [sym__integer_literal] = ACTIONS(361), - [anon_sym_DQUOTE] = ACTIONS(363), - [anon_sym_SQUOTE] = ACTIONS(365), - [anon_sym_LPAREN] = ACTIONS(367), - [anon_sym_RPAREN] = ACTIONS(537), - [aux_sym_unary_expression_token1] = ACTIONS(371), - [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(389), - [aux_sym_of_token1] = ACTIONS(443), - [aux_sym_accumulate_expression_token1] = ACTIONS(445), - [aux_sym_available_expression_token1] = ACTIONS(395), - [aux_sym_available_expression_token2] = ACTIONS(395), - [sym__namedot] = ACTIONS(447), + [anon_sym_SLASH_SLASH] = ACTIONS(59), + [anon_sym_SLASH_STAR] = ACTIONS(61), + [anon_sym_SLASH] = ACTIONS(527), + [anon_sym_LBRACE] = ACTIONS(65), + [anon_sym_STAR] = ACTIONS(529), + [sym__terminator] = ACTIONS(529), + [anon_sym_LPAREN] = ACTIONS(529), + [anon_sym_RPAREN] = ACTIONS(529), + [anon_sym_PLUS] = ACTIONS(529), + [anon_sym_DASH] = ACTIONS(529), + [anon_sym_LT] = ACTIONS(527), + [anon_sym_LT_EQ] = ACTIONS(529), + [anon_sym_LT_GT] = ACTIONS(529), + [anon_sym_EQ] = ACTIONS(529), + [anon_sym_GT] = ACTIONS(527), + [anon_sym_GT_EQ] = ACTIONS(529), + [aux_sym__comparison_operator_token1] = ACTIONS(529), + [aux_sym__comparison_operator_token2] = ACTIONS(529), + [aux_sym__comparison_operator_token3] = ACTIONS(529), + [aux_sym__comparison_operator_token4] = ACTIONS(529), + [aux_sym__comparison_operator_token5] = ACTIONS(529), + [aux_sym__comparison_operator_token6] = ACTIONS(529), + [aux_sym__comparison_operator_token7] = ACTIONS(529), + [aux_sym__comparison_operator_token8] = ACTIONS(529), + [aux_sym__comparison_operator_token9] = ACTIONS(529), + [aux_sym_variable_tuning_token1] = ACTIONS(529), + [aux_sym_variable_tuning_token2] = ACTIONS(529), + [aux_sym_variable_tuning_token3] = ACTIONS(529), + [aux_sym_variable_tuning_token4] = ACTIONS(529), + [aux_sym_variable_tuning_token5] = ACTIONS(529), + [aux_sym_variable_tuning_token6] = ACTIONS(529), + [anon_sym_COMMA] = ACTIONS(529), + [aux_sym_if_statement_token2] = ACTIONS(529), + [aux_sym_else_if_statement_token1] = ACTIONS(529), + [anon_sym_COLON] = ACTIONS(529), + [aux_sym_while_phrase_token1] = ACTIONS(529), + [aux_sym_repeat_tuning_token1] = ACTIONS(529), + [aux_sym_property_tuning_token1] = ACTIONS(529), + [aux_sym_event_definition_token1] = ACTIONS(529), + [anon_sym_NO_DASHERROR] = ACTIONS(531), + [aux_sym_input_stream_tuning_token1] = ACTIONS(529), + [aux_sym_input_stream_tuning_token2] = ACTIONS(529), + [aux_sym_input_stream_tuning_token3] = ACTIONS(529), + [aux_sym_input_stream_tuning_token4] = ACTIONS(529), + [aux_sym_input_stream_tuning_token5] = ACTIONS(529), + [aux_sym_input_stream_tuning_token6] = ACTIONS(529), + [aux_sym_input_stream_tuning_token7] = ACTIONS(529), + [aux_sym_input_stream_tuning_token8] = ACTIONS(529), + [aux_sym_input_stream_tuning_token9] = ACTIONS(529), + [aux_sym_input_stream_tuning_token11] = ACTIONS(529), + [aux_sym_output_stream_tuning_token1] = ACTIONS(529), + [aux_sym_output_stream_tuning_token2] = ACTIONS(529), + [aux_sym_output_stream_tuning_token3] = ACTIONS(529), + [aux_sym_output_stream_tuning_token4] = ACTIONS(529), + [aux_sym_output_stream_tuning_token5] = ACTIONS(529), + [aux_sym_output_stream_tuning_token6] = ACTIONS(529), + [aux_sym_output_stream_tuning_token7] = ACTIONS(529), + [aux_sym_output_stream_tuning_token8] = ACTIONS(529), + [aux_sym_output_stream_statement_token1] = ACTIONS(529), + [aux_sym_on_error_phrase_token1] = ACTIONS(529), + [aux_sym_stop_after_phrase_token1] = ACTIONS(529), + [aux_sym_do_tuning_token1] = ACTIONS(529), + [anon_sym_BY] = ACTIONS(529), + [aux_sym_of_token1] = ACTIONS(529), + [aux_sym_field_definition_token1] = ACTIONS(529), + [aux_sym_index_definition_token1] = ACTIONS(529), + [aux_sym_on_statement_token1] = ACTIONS(529), + [sym__or_operator] = ACTIONS(529), + [sym__and_operator] = ACTIONS(529), }, [275] = { [sym_comment] = STATE(275), - [sym_qualified_name] = STATE(4733), + [sym_qualified_name] = STATE(4814), [sym_include] = STATE(275), - [sym_assignment] = STATE(4314), - [sym_variable_definition] = STATE(1535), - [sym_variable_assignment] = STATE(1535), - [sym_buffer_definition] = STATE(1535), - [sym_query_definition] = STATE(1535), - [sym_function_call_statement] = STATE(1535), - [sym_function_call] = STATE(4086), - [sym_if_statement] = STATE(1535), - [sym_label] = STATE(1536), - [sym_repeat_statement] = STATE(1535), - [sym_procedure_statement] = STATE(1535), - [sym_procedure_parameter_definition] = STATE(1535), - [sym_function_statement] = STATE(1535), - [sym_return_statement] = STATE(1535), - [sym_interface_statement] = STATE(1535), - [sym_using_statement] = STATE(1535), - [sym_class_statement] = STATE(1535), - [sym_object_access] = STATE(3567), - [sym_stream_definition] = STATE(1535), - [sym_input_close_statement] = STATE(1535), - [sym_output_close_statement] = STATE(1535), - [sym__stream_statement] = STATE(1535), - [sym_input_stream_statement] = STATE(1537), - [sym_output_stream_statement] = STATE(1537), - [sym_do_block] = STATE(1535), - [sym_case_statement] = STATE(1535), - [sym_for_statement] = STATE(1535), - [sym_find_statement] = STATE(1535), - [sym_abl_statement] = STATE(1535), - [sym_assign_statement] = STATE(1535), - [sym_catch_statement] = STATE(1535), - [sym_finally_statement] = STATE(1535), - [sym_accumulate_statement] = STATE(1535), - [sym_undo_statement] = STATE(1535), - [sym_error_scope_statement] = STATE(1535), - [sym_temp_table_definition] = STATE(1535), - [sym_on_statement] = STATE(1535), - [sym__statement] = STATE(1538), + [sym_assignment] = STATE(4813), + [sym_variable_definition] = STATE(1217), + [sym_variable_assignment] = STATE(1217), + [sym_buffer_definition] = STATE(1217), + [sym_query_definition] = STATE(1217), + [sym_function_call_statement] = STATE(1217), + [sym_function_call] = STATE(4812), + [sym_if_statement] = STATE(1217), + [sym_label] = STATE(1230), + [sym_repeat_statement] = STATE(1217), + [sym_procedure_statement] = STATE(1217), + [sym_procedure_parameter_definition] = STATE(1217), + [sym_function_statement] = STATE(1217), + [sym_return_statement] = STATE(1217), + [sym_interface_statement] = STATE(1217), + [sym_using_statement] = STATE(1217), + [sym_class_statement] = STATE(1217), + [sym_object_access] = STATE(3661), + [sym_stream_definition] = STATE(1217), + [sym_input_close_statement] = STATE(1217), + [sym_output_close_statement] = STATE(1217), + [sym__stream_statement] = STATE(1217), + [sym_input_stream_statement] = STATE(1348), + [sym_output_stream_statement] = STATE(1348), + [sym_do_block] = STATE(1217), + [sym_case_statement] = STATE(1217), + [sym_for_statement] = STATE(1217), + [sym_find_statement] = STATE(1217), + [sym_abl_statement] = STATE(1217), + [sym_assign_statement] = STATE(1217), + [sym_catch_statement] = STATE(1217), + [sym_finally_statement] = STATE(1217), + [sym_accumulate_statement] = STATE(1217), + [sym_undo_statement] = STATE(1217), + [sym_error_scope_statement] = STATE(1217), + [sym_temp_table_definition] = STATE(1217), + [sym_on_statement] = STATE(1217), + [sym__statement] = STATE(1350), [aux_sym_source_code_repeat1] = STATE(275), - [sym_identifier] = ACTIONS(539), + [ts_builtin_sym_end] = ACTIONS(533), + [sym_identifier] = ACTIONS(535), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), [anon_sym_LBRACE] = ACTIONS(7), - [aux_sym__block_terminator_token1] = ACTIONS(542), - [aux_sym_input_expression_token1] = ACTIONS(544), - [aux_sym_primitive_type_token19] = ACTIONS(547), - [aux_sym_variable_definition_token1] = ACTIONS(550), - [aux_sym_variable_definition_token2] = ACTIONS(553), - [aux_sym_buffer_definition_token2] = ACTIONS(556), - [aux_sym_argument_mode_token1] = ACTIONS(559), - [aux_sym_if_statement_token1] = ACTIONS(562), - [aux_sym_repeat_statement_token1] = ACTIONS(565), - [aux_sym__procedure_terminator_token1] = ACTIONS(568), - [aux_sym_procedure_parameter_definition_token1] = ACTIONS(571), - [aux_sym__function_terminator_token1] = ACTIONS(574), - [aux_sym_interface_statement_token1] = ACTIONS(577), - [aux_sym_using_statement_token1] = ACTIONS(580), - [aux_sym_on_error_phrase_token1] = ACTIONS(583), - [aux_sym_on_error_phrase_token3] = ACTIONS(586), - [aux_sym_do_block_token1] = ACTIONS(589), - [aux_sym__case_terminator_token1] = ACTIONS(592), - [aux_sym_find_statement_token1] = ACTIONS(595), - [aux_sym_assign_statement_token1] = ACTIONS(598), - [aux_sym_catch_statement_token1] = ACTIONS(601), - [aux_sym_finally_statement_token1] = ACTIONS(604), - [aux_sym_accumulate_statement_token1] = ACTIONS(607), - [anon_sym_ROUTINE_DASHLEVEL] = ACTIONS(610), - [anon_sym_BLOCK_DASHLEVEL] = ACTIONS(610), + [aux_sym_input_expression_token1] = ACTIONS(538), + [aux_sym_primitive_type_token19] = ACTIONS(541), + [aux_sym_variable_definition_token1] = ACTIONS(544), + [aux_sym_variable_definition_token2] = ACTIONS(547), + [aux_sym_buffer_definition_token2] = ACTIONS(550), + [aux_sym_argument_mode_token1] = ACTIONS(553), + [aux_sym_if_statement_token1] = ACTIONS(556), + [aux_sym_repeat_statement_token1] = ACTIONS(559), + [aux_sym__procedure_terminator_token1] = ACTIONS(562), + [aux_sym_procedure_parameter_definition_token1] = ACTIONS(565), + [aux_sym__function_terminator_token1] = ACTIONS(568), + [aux_sym_interface_statement_token1] = ACTIONS(571), + [aux_sym_using_statement_token1] = ACTIONS(574), + [aux_sym_on_error_phrase_token1] = ACTIONS(577), + [aux_sym_on_error_phrase_token3] = ACTIONS(580), + [aux_sym_do_block_token1] = ACTIONS(583), + [aux_sym__case_terminator_token1] = ACTIONS(586), + [aux_sym_find_statement_token1] = ACTIONS(589), + [aux_sym_assign_statement_token1] = ACTIONS(592), + [aux_sym_catch_statement_token1] = ACTIONS(595), + [aux_sym_finally_statement_token1] = ACTIONS(598), + [aux_sym_accumulate_statement_token1] = ACTIONS(601), + [anon_sym_ROUTINE_DASHLEVEL] = ACTIONS(604), + [anon_sym_BLOCK_DASHLEVEL] = ACTIONS(604), }, [276] = { [sym_comment] = STATE(276), - [sym_qualified_name] = STATE(4733), + [sym_constant] = STATE(20), + [sym_qualified_name] = STATE(20), + [sym_boolean_literal] = STATE(20), + [sym__decimal_literal] = STATE(23), + [sym_number_literal] = STATE(20), + [sym__string_literal] = STATE(20), + [sym_double_quoted_string] = STATE(18), + [sym_single_quoted_string] = STATE(18), + [sym_parenthesized_expression] = STATE(20), + [sym_logical_expression] = STATE(24), + [sym_unary_expression] = STATE(20), + [sym_ambiguous_expression] = STATE(20), + [sym_current_changed_expression] = STATE(20), + [sym_locked_expression] = STATE(20), + [sym_input_expression] = STATE(20), + [sym_additive_expression] = STATE(24), + [sym_multiplicative_expression] = STATE(24), + [sym_comparison_expression] = STATE(24), + [sym__binary_expression] = STATE(20), [sym_include] = STATE(276), - [sym_assignment] = STATE(4314), - [sym_variable_definition] = STATE(1535), - [sym_variable_assignment] = STATE(1535), - [sym_buffer_definition] = STATE(1535), - [sym_query_definition] = STATE(1535), - [sym_function_call_statement] = STATE(1535), - [sym_function_call] = STATE(4086), - [sym_if_statement] = STATE(1535), - [sym_label] = STATE(1536), - [sym_repeat_statement] = STATE(1535), - [sym_procedure_statement] = STATE(1535), - [sym_procedure_parameter_definition] = STATE(1535), - [sym_function_statement] = STATE(1535), - [sym_return_statement] = STATE(1535), - [sym_interface_statement] = STATE(1535), - [sym_using_statement] = STATE(1535), - [sym_class_statement] = STATE(1535), - [sym_object_access] = STATE(3567), - [sym_stream_definition] = STATE(1535), - [sym_input_close_statement] = STATE(1535), - [sym_output_close_statement] = STATE(1535), - [sym__stream_statement] = STATE(1535), - [sym_input_stream_statement] = STATE(1537), - [sym_output_stream_statement] = STATE(1537), - [sym_do_block] = STATE(1535), - [sym_case_statement] = STATE(1535), - [sym_for_statement] = STATE(1535), - [sym_find_statement] = STATE(1535), - [sym_abl_statement] = STATE(1535), - [sym_assign_statement] = STATE(1535), - [sym_catch_statement] = STATE(1535), - [sym_finally_statement] = STATE(1535), - [sym_accumulate_statement] = STATE(1535), - [sym_undo_statement] = STATE(1535), - [sym_error_scope_statement] = STATE(1535), - [sym_temp_table_definition] = STATE(1535), - [sym_on_statement] = STATE(1535), - [sym__statement] = STATE(1538), - [aux_sym_source_code_repeat1] = STATE(275), - [sym_identifier] = ACTIONS(227), + [sym_function_call] = STATE(20), + [sym_ternary_expression] = STATE(20), + [sym_new_expression] = STATE(20), + [sym_object_access] = STATE(29), + [sym_where_clause] = STATE(2222), + [sym_query_tuning] = STATE(2222), + [sym_can_find_expression] = STATE(20), + [sym_of] = STATE(2222), + [sym__using_first] = STATE(1960), + [sym_accumulate_expression] = STATE(20), + [sym_available_expression] = STATE(20), + [sym__expression] = STATE(600), + [aux_sym_qualified_name_repeat1] = STATE(730), + [aux_sym_can_find_expression_repeat2] = STATE(1910), + [sym_identifier] = ACTIONS(337), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_LBRACE] = ACTIONS(7), - [aux_sym__block_terminator_token1] = ACTIONS(613), - [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), + [anon_sym_LBRACE] = ACTIONS(339), + [sym_null_expression] = ACTIONS(341), + [aux_sym_boolean_literal_token1] = ACTIONS(343), + [aux_sym_boolean_literal_token2] = ACTIONS(343), + [aux_sym_boolean_literal_token3] = ACTIONS(343), + [aux_sym_boolean_literal_token4] = ACTIONS(343), + [sym__integer_literal] = ACTIONS(345), + [anon_sym_DQUOTE] = ACTIONS(347), + [anon_sym_SQUOTE] = ACTIONS(349), + [anon_sym_LPAREN] = ACTIONS(351), + [anon_sym_RPAREN] = ACTIONS(607), + [aux_sym_unary_expression_token1] = ACTIONS(355), + [aux_sym_unary_expression_token2] = ACTIONS(423), + [aux_sym_ambiguous_expression_token1] = ACTIONS(425), + [aux_sym_current_changed_expression_token1] = ACTIONS(427), + [aux_sym_locked_expression_token1] = ACTIONS(429), + [aux_sym_input_expression_token1] = ACTIONS(431), + [aux_sym_scope_tuning_token1] = ACTIONS(433), + [aux_sym_function_call_token1] = ACTIONS(435), + [aux_sym_if_statement_token1] = ACTIONS(437), + [aux_sym_using_statement_token1] = ACTIONS(439), + [aux_sym_where_clause_token1] = ACTIONS(441), + [aux_sym_query_tuning_token1] = ACTIONS(435), + [aux_sym_query_tuning_token2] = ACTIONS(435), + [aux_sym_query_tuning_token3] = ACTIONS(435), + [aux_sym_query_tuning_token4] = ACTIONS(435), + [aux_sym_query_tuning_token5] = ACTIONS(443), + [aux_sym_can_find_expression_token1] = ACTIONS(373), + [aux_sym_of_token1] = ACTIONS(445), + [aux_sym_accumulate_expression_token1] = ACTIONS(447), + [aux_sym_available_expression_token1] = ACTIONS(379), + [aux_sym_available_expression_token2] = ACTIONS(379), + [sym__namedot] = ACTIONS(449), }, [277] = { [sym_comment] = STATE(277), - [sym_constant] = STATE(13), - [sym_qualified_name] = STATE(13), - [sym_boolean_literal] = STATE(13), - [sym__decimal_literal] = STATE(36), - [sym_number_literal] = STATE(13), - [sym__string_literal] = STATE(13), - [sym_double_quoted_string] = STATE(21), - [sym_single_quoted_string] = STATE(21), - [sym_parenthesized_expression] = STATE(13), - [sym_logical_expression] = STATE(37), - [sym_unary_expression] = STATE(13), - [sym_ambiguous_expression] = STATE(13), - [sym_current_changed_expression] = STATE(13), - [sym_locked_expression] = STATE(13), - [sym_input_expression] = STATE(13), - [sym_additive_expression] = STATE(37), - [sym_multiplicative_expression] = STATE(37), - [sym_comparison_expression] = STATE(37), - [sym__binary_expression] = STATE(13), + [sym_constant] = STATE(20), + [sym_qualified_name] = STATE(20), + [sym_boolean_literal] = STATE(20), + [sym__decimal_literal] = STATE(23), + [sym_number_literal] = STATE(20), + [sym__string_literal] = STATE(20), + [sym_double_quoted_string] = STATE(18), + [sym_single_quoted_string] = STATE(18), + [sym_parenthesized_expression] = STATE(20), + [sym_logical_expression] = STATE(24), + [sym_unary_expression] = STATE(20), + [sym_ambiguous_expression] = STATE(20), + [sym_current_changed_expression] = STATE(20), + [sym_locked_expression] = STATE(20), + [sym_input_expression] = STATE(20), + [sym_additive_expression] = STATE(24), + [sym_multiplicative_expression] = STATE(24), + [sym_comparison_expression] = STATE(24), + [sym__binary_expression] = STATE(20), [sym_include] = STATE(277), - [sym_function_call] = STATE(13), - [sym_ternary_expression] = STATE(13), - [sym_new_expression] = STATE(13), - [sym_object_access] = STATE(38), - [sym_where_clause] = STATE(2166), - [sym_query_tuning] = STATE(2166), - [sym_can_find_expression] = STATE(13), - [sym_of] = STATE(2166), - [sym__using_first] = STATE(1944), - [sym_accumulate_expression] = STATE(13), - [sym_available_expression] = STATE(13), - [sym__expression] = STATE(602), - [aux_sym_qualified_name_repeat1] = STATE(724), - [aux_sym_can_find_expression_repeat2] = STATE(1878), - [sym_identifier] = ACTIONS(353), + [sym_function_call] = STATE(20), + [sym_ternary_expression] = STATE(20), + [sym_new_expression] = STATE(20), + [sym_object_access] = STATE(29), + [sym_where_clause] = STATE(2222), + [sym_query_tuning] = STATE(2222), + [sym_can_find_expression] = STATE(20), + [sym_of] = STATE(2222), + [sym__using_first] = STATE(1960), + [sym_accumulate_expression] = STATE(20), + [sym_available_expression] = STATE(20), + [sym__expression] = STATE(604), + [aux_sym_qualified_name_repeat1] = STATE(730), + [aux_sym_can_find_expression_repeat2] = STATE(1892), + [sym_identifier] = ACTIONS(337), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_LBRACE] = ACTIONS(355), - [sym_null_expression] = ACTIONS(357), - [aux_sym_boolean_literal_token1] = ACTIONS(359), - [aux_sym_boolean_literal_token2] = ACTIONS(359), - [aux_sym_boolean_literal_token3] = ACTIONS(359), - [aux_sym_boolean_literal_token4] = ACTIONS(359), - [sym__integer_literal] = ACTIONS(361), - [anon_sym_DQUOTE] = ACTIONS(363), - [anon_sym_SQUOTE] = ACTIONS(365), - [anon_sym_LPAREN] = ACTIONS(367), - [anon_sym_RPAREN] = ACTIONS(615), - [aux_sym_unary_expression_token1] = ACTIONS(371), - [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(389), - [aux_sym_of_token1] = ACTIONS(443), - [aux_sym_accumulate_expression_token1] = ACTIONS(445), - [aux_sym_available_expression_token1] = ACTIONS(395), - [aux_sym_available_expression_token2] = ACTIONS(395), - [sym__namedot] = ACTIONS(447), + [anon_sym_LBRACE] = ACTIONS(339), + [sym_null_expression] = ACTIONS(341), + [aux_sym_boolean_literal_token1] = ACTIONS(343), + [aux_sym_boolean_literal_token2] = ACTIONS(343), + [aux_sym_boolean_literal_token3] = ACTIONS(343), + [aux_sym_boolean_literal_token4] = ACTIONS(343), + [sym__integer_literal] = ACTIONS(345), + [anon_sym_DQUOTE] = ACTIONS(347), + [anon_sym_SQUOTE] = ACTIONS(349), + [anon_sym_LPAREN] = ACTIONS(351), + [anon_sym_RPAREN] = ACTIONS(609), + [aux_sym_unary_expression_token1] = ACTIONS(355), + [aux_sym_unary_expression_token2] = ACTIONS(423), + [aux_sym_ambiguous_expression_token1] = ACTIONS(425), + [aux_sym_current_changed_expression_token1] = ACTIONS(427), + [aux_sym_locked_expression_token1] = ACTIONS(429), + [aux_sym_input_expression_token1] = ACTIONS(431), + [aux_sym_scope_tuning_token1] = ACTIONS(433), + [aux_sym_function_call_token1] = ACTIONS(435), + [aux_sym_if_statement_token1] = ACTIONS(437), + [aux_sym_using_statement_token1] = ACTIONS(439), + [aux_sym_where_clause_token1] = ACTIONS(441), + [aux_sym_query_tuning_token1] = ACTIONS(435), + [aux_sym_query_tuning_token2] = ACTIONS(435), + [aux_sym_query_tuning_token3] = ACTIONS(435), + [aux_sym_query_tuning_token4] = ACTIONS(435), + [aux_sym_query_tuning_token5] = ACTIONS(443), + [aux_sym_can_find_expression_token1] = ACTIONS(373), + [aux_sym_of_token1] = ACTIONS(445), + [aux_sym_accumulate_expression_token1] = ACTIONS(447), + [aux_sym_available_expression_token1] = ACTIONS(379), + [aux_sym_available_expression_token2] = ACTIONS(379), + [sym__namedot] = ACTIONS(449), }, [278] = { [sym_comment] = STATE(278), - [sym_constant] = STATE(13), - [sym_qualified_name] = STATE(13), - [sym_boolean_literal] = STATE(13), - [sym__decimal_literal] = STATE(36), - [sym_number_literal] = STATE(13), - [sym__string_literal] = STATE(13), - [sym_double_quoted_string] = STATE(21), - [sym_single_quoted_string] = STATE(21), - [sym_parenthesized_expression] = STATE(13), - [sym_logical_expression] = STATE(37), - [sym_unary_expression] = STATE(13), - [sym_ambiguous_expression] = STATE(13), - [sym_current_changed_expression] = STATE(13), - [sym_locked_expression] = STATE(13), - [sym_input_expression] = STATE(13), - [sym_additive_expression] = STATE(37), - [sym_multiplicative_expression] = STATE(37), - [sym_comparison_expression] = STATE(37), - [sym__binary_expression] = STATE(13), + [sym_constant] = STATE(20), + [sym_qualified_name] = STATE(20), + [sym_boolean_literal] = STATE(20), + [sym__decimal_literal] = STATE(23), + [sym_number_literal] = STATE(20), + [sym__string_literal] = STATE(20), + [sym_double_quoted_string] = STATE(18), + [sym_single_quoted_string] = STATE(18), + [sym_parenthesized_expression] = STATE(20), + [sym_logical_expression] = STATE(24), + [sym_unary_expression] = STATE(20), + [sym_ambiguous_expression] = STATE(20), + [sym_current_changed_expression] = STATE(20), + [sym_locked_expression] = STATE(20), + [sym_input_expression] = STATE(20), + [sym_additive_expression] = STATE(24), + [sym_multiplicative_expression] = STATE(24), + [sym_comparison_expression] = STATE(24), + [sym__binary_expression] = STATE(20), [sym_include] = STATE(278), - [sym_function_call] = STATE(13), - [sym_ternary_expression] = STATE(13), - [sym_new_expression] = STATE(13), - [sym_object_access] = STATE(38), - [sym_where_clause] = STATE(2166), - [sym_query_tuning] = STATE(2166), - [sym_can_find_expression] = STATE(13), - [sym_of] = STATE(2166), - [sym__using_first] = STATE(1944), - [sym_accumulate_expression] = STATE(13), - [sym_available_expression] = STATE(13), - [sym__expression] = STATE(600), - [aux_sym_qualified_name_repeat1] = STATE(724), - [aux_sym_can_find_expression_repeat2] = STATE(1884), - [sym_identifier] = ACTIONS(353), + [sym_function_call] = STATE(20), + [sym_ternary_expression] = STATE(20), + [sym_new_expression] = STATE(20), + [sym_object_access] = STATE(29), + [sym_where_clause] = STATE(2222), + [sym_query_tuning] = STATE(2222), + [sym_can_find_expression] = STATE(20), + [sym_of] = STATE(2222), + [sym__using_first] = STATE(1960), + [sym_accumulate_expression] = STATE(20), + [sym_available_expression] = STATE(20), + [sym__expression] = STATE(609), + [aux_sym_qualified_name_repeat1] = STATE(730), + [aux_sym_can_find_expression_repeat2] = STATE(1882), + [sym_identifier] = ACTIONS(337), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_LBRACE] = ACTIONS(355), - [sym_null_expression] = ACTIONS(357), - [aux_sym_boolean_literal_token1] = ACTIONS(359), - [aux_sym_boolean_literal_token2] = ACTIONS(359), - [aux_sym_boolean_literal_token3] = ACTIONS(359), - [aux_sym_boolean_literal_token4] = ACTIONS(359), - [sym__integer_literal] = ACTIONS(361), - [anon_sym_DQUOTE] = ACTIONS(363), - [anon_sym_SQUOTE] = ACTIONS(365), - [anon_sym_LPAREN] = ACTIONS(367), - [anon_sym_RPAREN] = ACTIONS(617), - [aux_sym_unary_expression_token1] = ACTIONS(371), - [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(389), - [aux_sym_of_token1] = ACTIONS(443), - [aux_sym_accumulate_expression_token1] = ACTIONS(445), - [aux_sym_available_expression_token1] = ACTIONS(395), - [aux_sym_available_expression_token2] = ACTIONS(395), - [sym__namedot] = ACTIONS(447), + [anon_sym_LBRACE] = ACTIONS(339), + [sym_null_expression] = ACTIONS(341), + [aux_sym_boolean_literal_token1] = ACTIONS(343), + [aux_sym_boolean_literal_token2] = ACTIONS(343), + [aux_sym_boolean_literal_token3] = ACTIONS(343), + [aux_sym_boolean_literal_token4] = ACTIONS(343), + [sym__integer_literal] = ACTIONS(345), + [anon_sym_DQUOTE] = ACTIONS(347), + [anon_sym_SQUOTE] = ACTIONS(349), + [anon_sym_LPAREN] = ACTIONS(351), + [anon_sym_RPAREN] = ACTIONS(611), + [aux_sym_unary_expression_token1] = ACTIONS(355), + [aux_sym_unary_expression_token2] = ACTIONS(423), + [aux_sym_ambiguous_expression_token1] = ACTIONS(425), + [aux_sym_current_changed_expression_token1] = ACTIONS(427), + [aux_sym_locked_expression_token1] = ACTIONS(429), + [aux_sym_input_expression_token1] = ACTIONS(431), + [aux_sym_scope_tuning_token1] = ACTIONS(433), + [aux_sym_function_call_token1] = ACTIONS(435), + [aux_sym_if_statement_token1] = ACTIONS(437), + [aux_sym_using_statement_token1] = ACTIONS(439), + [aux_sym_where_clause_token1] = ACTIONS(441), + [aux_sym_query_tuning_token1] = ACTIONS(435), + [aux_sym_query_tuning_token2] = ACTIONS(435), + [aux_sym_query_tuning_token3] = ACTIONS(435), + [aux_sym_query_tuning_token4] = ACTIONS(435), + [aux_sym_query_tuning_token5] = ACTIONS(443), + [aux_sym_can_find_expression_token1] = ACTIONS(373), + [aux_sym_of_token1] = ACTIONS(445), + [aux_sym_accumulate_expression_token1] = ACTIONS(447), + [aux_sym_available_expression_token1] = ACTIONS(379), + [aux_sym_available_expression_token2] = ACTIONS(379), + [sym__namedot] = ACTIONS(449), }, [279] = { [sym_comment] = STATE(279), - [sym_constant] = STATE(13), - [sym_qualified_name] = STATE(13), - [sym_boolean_literal] = STATE(13), - [sym__decimal_literal] = STATE(36), - [sym_number_literal] = STATE(13), - [sym__string_literal] = STATE(13), - [sym_double_quoted_string] = STATE(21), - [sym_single_quoted_string] = STATE(21), - [sym_parenthesized_expression] = STATE(13), - [sym_logical_expression] = STATE(37), - [sym_unary_expression] = STATE(13), - [sym_ambiguous_expression] = STATE(13), - [sym_current_changed_expression] = STATE(13), - [sym_locked_expression] = STATE(13), - [sym_input_expression] = STATE(13), - [sym_additive_expression] = STATE(37), - [sym_multiplicative_expression] = STATE(37), - [sym_comparison_expression] = STATE(37), - [sym__binary_expression] = STATE(13), + [sym_constant] = STATE(20), + [sym_qualified_name] = STATE(20), + [sym_boolean_literal] = STATE(20), + [sym__decimal_literal] = STATE(23), + [sym_number_literal] = STATE(20), + [sym__string_literal] = STATE(20), + [sym_double_quoted_string] = STATE(18), + [sym_single_quoted_string] = STATE(18), + [sym_parenthesized_expression] = STATE(20), + [sym_logical_expression] = STATE(24), + [sym_unary_expression] = STATE(20), + [sym_ambiguous_expression] = STATE(20), + [sym_current_changed_expression] = STATE(20), + [sym_locked_expression] = STATE(20), + [sym_input_expression] = STATE(20), + [sym_additive_expression] = STATE(24), + [sym_multiplicative_expression] = STATE(24), + [sym_comparison_expression] = STATE(24), + [sym__binary_expression] = STATE(20), [sym_include] = STATE(279), - [sym_function_call] = STATE(13), - [sym_ternary_expression] = STATE(13), - [sym_new_expression] = STATE(13), - [sym_object_access] = STATE(38), - [sym_where_clause] = STATE(2166), - [sym_query_tuning] = STATE(2166), - [sym_can_find_expression] = STATE(13), - [sym_of] = STATE(2166), - [sym__using_first] = STATE(1944), - [sym_accumulate_expression] = STATE(13), - [sym_available_expression] = STATE(13), - [sym__expression] = STATE(594), - [aux_sym_qualified_name_repeat1] = STATE(724), - [aux_sym_can_find_expression_repeat2] = STATE(1871), - [sym_identifier] = ACTIONS(353), + [sym_function_call] = STATE(20), + [sym_ternary_expression] = STATE(20), + [sym_new_expression] = STATE(20), + [sym_object_access] = STATE(29), + [sym_where_clause] = STATE(2222), + [sym_query_tuning] = STATE(2222), + [sym_can_find_expression] = STATE(20), + [sym_of] = STATE(2222), + [sym__using_first] = STATE(1960), + [sym_accumulate_expression] = STATE(20), + [sym_available_expression] = STATE(20), + [sym__expression] = STATE(610), + [aux_sym_qualified_name_repeat1] = STATE(730), + [aux_sym_can_find_expression_repeat2] = STATE(1881), + [sym_identifier] = ACTIONS(337), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_LBRACE] = ACTIONS(355), - [sym_null_expression] = ACTIONS(357), - [aux_sym_boolean_literal_token1] = ACTIONS(359), - [aux_sym_boolean_literal_token2] = ACTIONS(359), - [aux_sym_boolean_literal_token3] = ACTIONS(359), - [aux_sym_boolean_literal_token4] = ACTIONS(359), - [sym__integer_literal] = ACTIONS(361), - [anon_sym_DQUOTE] = ACTIONS(363), - [anon_sym_SQUOTE] = ACTIONS(365), - [anon_sym_LPAREN] = ACTIONS(367), - [anon_sym_RPAREN] = ACTIONS(619), - [aux_sym_unary_expression_token1] = ACTIONS(371), - [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(389), - [aux_sym_of_token1] = ACTIONS(443), - [aux_sym_accumulate_expression_token1] = ACTIONS(445), - [aux_sym_available_expression_token1] = ACTIONS(395), - [aux_sym_available_expression_token2] = ACTIONS(395), - [sym__namedot] = ACTIONS(447), + [anon_sym_LBRACE] = ACTIONS(339), + [sym_null_expression] = ACTIONS(341), + [aux_sym_boolean_literal_token1] = ACTIONS(343), + [aux_sym_boolean_literal_token2] = ACTIONS(343), + [aux_sym_boolean_literal_token3] = ACTIONS(343), + [aux_sym_boolean_literal_token4] = ACTIONS(343), + [sym__integer_literal] = ACTIONS(345), + [anon_sym_DQUOTE] = ACTIONS(347), + [anon_sym_SQUOTE] = ACTIONS(349), + [anon_sym_LPAREN] = ACTIONS(351), + [anon_sym_RPAREN] = ACTIONS(613), + [aux_sym_unary_expression_token1] = ACTIONS(355), + [aux_sym_unary_expression_token2] = ACTIONS(423), + [aux_sym_ambiguous_expression_token1] = ACTIONS(425), + [aux_sym_current_changed_expression_token1] = ACTIONS(427), + [aux_sym_locked_expression_token1] = ACTIONS(429), + [aux_sym_input_expression_token1] = ACTIONS(431), + [aux_sym_scope_tuning_token1] = ACTIONS(433), + [aux_sym_function_call_token1] = ACTIONS(435), + [aux_sym_if_statement_token1] = ACTIONS(437), + [aux_sym_using_statement_token1] = ACTIONS(439), + [aux_sym_where_clause_token1] = ACTIONS(441), + [aux_sym_query_tuning_token1] = ACTIONS(435), + [aux_sym_query_tuning_token2] = ACTIONS(435), + [aux_sym_query_tuning_token3] = ACTIONS(435), + [aux_sym_query_tuning_token4] = ACTIONS(435), + [aux_sym_query_tuning_token5] = ACTIONS(443), + [aux_sym_can_find_expression_token1] = ACTIONS(373), + [aux_sym_of_token1] = ACTIONS(445), + [aux_sym_accumulate_expression_token1] = ACTIONS(447), + [aux_sym_available_expression_token1] = ACTIONS(379), + [aux_sym_available_expression_token2] = ACTIONS(379), + [sym__namedot] = ACTIONS(449), }, [280] = { [sym_comment] = STATE(280), - [sym_constant] = STATE(13), - [sym_qualified_name] = STATE(13), - [sym_boolean_literal] = STATE(13), - [sym__decimal_literal] = STATE(36), - [sym_number_literal] = STATE(13), - [sym__string_literal] = STATE(13), - [sym_double_quoted_string] = STATE(21), - [sym_single_quoted_string] = STATE(21), - [sym_parenthesized_expression] = STATE(13), - [sym_logical_expression] = STATE(37), - [sym_unary_expression] = STATE(13), - [sym_ambiguous_expression] = STATE(13), - [sym_current_changed_expression] = STATE(13), - [sym_locked_expression] = STATE(13), - [sym_input_expression] = STATE(13), - [sym_additive_expression] = STATE(37), - [sym_multiplicative_expression] = STATE(37), - [sym_comparison_expression] = STATE(37), - [sym__binary_expression] = STATE(13), + [sym_constant] = STATE(20), + [sym_qualified_name] = STATE(20), + [sym_boolean_literal] = STATE(20), + [sym__decimal_literal] = STATE(23), + [sym_number_literal] = STATE(20), + [sym__string_literal] = STATE(20), + [sym_double_quoted_string] = STATE(18), + [sym_single_quoted_string] = STATE(18), + [sym_parenthesized_expression] = STATE(20), + [sym_logical_expression] = STATE(24), + [sym_unary_expression] = STATE(20), + [sym_ambiguous_expression] = STATE(20), + [sym_current_changed_expression] = STATE(20), + [sym_locked_expression] = STATE(20), + [sym_input_expression] = STATE(20), + [sym_additive_expression] = STATE(24), + [sym_multiplicative_expression] = STATE(24), + [sym_comparison_expression] = STATE(24), + [sym__binary_expression] = STATE(20), [sym_include] = STATE(280), - [sym_function_call] = STATE(13), - [sym_ternary_expression] = STATE(13), - [sym_new_expression] = STATE(13), - [sym_object_access] = STATE(38), - [sym_where_clause] = STATE(2166), - [sym_query_tuning] = STATE(2166), - [sym_can_find_expression] = STATE(13), - [sym_of] = STATE(2166), - [sym__using_first] = STATE(1944), - [sym_accumulate_expression] = STATE(13), - [sym_available_expression] = STATE(13), - [sym__expression] = STATE(605), - [aux_sym_qualified_name_repeat1] = STATE(724), - [aux_sym_can_find_expression_repeat2] = STATE(1874), - [sym_identifier] = ACTIONS(353), + [sym_function_call] = STATE(20), + [sym_ternary_expression] = STATE(20), + [sym_new_expression] = STATE(20), + [sym_object_access] = STATE(29), + [sym_where_clause] = STATE(2222), + [sym_query_tuning] = STATE(2222), + [sym_can_find_expression] = STATE(20), + [sym_of] = STATE(2222), + [sym__using_first] = STATE(1960), + [sym_accumulate_expression] = STATE(20), + [sym_available_expression] = STATE(20), + [sym__expression] = STATE(601), + [aux_sym_qualified_name_repeat1] = STATE(730), + [aux_sym_can_find_expression_repeat2] = STATE(1894), + [sym_identifier] = ACTIONS(337), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_LBRACE] = ACTIONS(355), - [sym_null_expression] = ACTIONS(357), - [aux_sym_boolean_literal_token1] = ACTIONS(359), - [aux_sym_boolean_literal_token2] = ACTIONS(359), - [aux_sym_boolean_literal_token3] = ACTIONS(359), - [aux_sym_boolean_literal_token4] = ACTIONS(359), - [sym__integer_literal] = ACTIONS(361), - [anon_sym_DQUOTE] = ACTIONS(363), - [anon_sym_SQUOTE] = ACTIONS(365), - [anon_sym_LPAREN] = ACTIONS(367), - [anon_sym_RPAREN] = ACTIONS(621), - [aux_sym_unary_expression_token1] = ACTIONS(371), - [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(389), - [aux_sym_of_token1] = ACTIONS(443), - [aux_sym_accumulate_expression_token1] = ACTIONS(445), - [aux_sym_available_expression_token1] = ACTIONS(395), - [aux_sym_available_expression_token2] = ACTIONS(395), - [sym__namedot] = ACTIONS(447), + [anon_sym_LBRACE] = ACTIONS(339), + [sym_null_expression] = ACTIONS(341), + [aux_sym_boolean_literal_token1] = ACTIONS(343), + [aux_sym_boolean_literal_token2] = ACTIONS(343), + [aux_sym_boolean_literal_token3] = ACTIONS(343), + [aux_sym_boolean_literal_token4] = ACTIONS(343), + [sym__integer_literal] = ACTIONS(345), + [anon_sym_DQUOTE] = ACTIONS(347), + [anon_sym_SQUOTE] = ACTIONS(349), + [anon_sym_LPAREN] = ACTIONS(351), + [anon_sym_RPAREN] = ACTIONS(615), + [aux_sym_unary_expression_token1] = ACTIONS(355), + [aux_sym_unary_expression_token2] = ACTIONS(423), + [aux_sym_ambiguous_expression_token1] = ACTIONS(425), + [aux_sym_current_changed_expression_token1] = ACTIONS(427), + [aux_sym_locked_expression_token1] = ACTIONS(429), + [aux_sym_input_expression_token1] = ACTIONS(431), + [aux_sym_scope_tuning_token1] = ACTIONS(433), + [aux_sym_function_call_token1] = ACTIONS(435), + [aux_sym_if_statement_token1] = ACTIONS(437), + [aux_sym_using_statement_token1] = ACTIONS(439), + [aux_sym_where_clause_token1] = ACTIONS(441), + [aux_sym_query_tuning_token1] = ACTIONS(435), + [aux_sym_query_tuning_token2] = ACTIONS(435), + [aux_sym_query_tuning_token3] = ACTIONS(435), + [aux_sym_query_tuning_token4] = ACTIONS(435), + [aux_sym_query_tuning_token5] = ACTIONS(443), + [aux_sym_can_find_expression_token1] = ACTIONS(373), + [aux_sym_of_token1] = ACTIONS(445), + [aux_sym_accumulate_expression_token1] = ACTIONS(447), + [aux_sym_available_expression_token1] = ACTIONS(379), + [aux_sym_available_expression_token2] = ACTIONS(379), + [sym__namedot] = ACTIONS(449), }, [281] = { [sym_comment] = STATE(281), - [sym_constant] = STATE(13), - [sym_qualified_name] = STATE(13), - [sym_boolean_literal] = STATE(13), - [sym__decimal_literal] = STATE(36), - [sym_number_literal] = STATE(13), - [sym__string_literal] = STATE(13), - [sym_double_quoted_string] = STATE(21), - [sym_single_quoted_string] = STATE(21), - [sym_parenthesized_expression] = STATE(13), - [sym_logical_expression] = STATE(37), - [sym_unary_expression] = STATE(13), - [sym_ambiguous_expression] = STATE(13), - [sym_current_changed_expression] = STATE(13), - [sym_locked_expression] = STATE(13), - [sym_input_expression] = STATE(13), - [sym_additive_expression] = STATE(37), - [sym_multiplicative_expression] = STATE(37), - [sym_comparison_expression] = STATE(37), - [sym__binary_expression] = STATE(13), + [sym_constant] = STATE(20), + [sym_qualified_name] = STATE(20), + [sym_boolean_literal] = STATE(20), + [sym__decimal_literal] = STATE(23), + [sym_number_literal] = STATE(20), + [sym__string_literal] = STATE(20), + [sym_double_quoted_string] = STATE(18), + [sym_single_quoted_string] = STATE(18), + [sym_parenthesized_expression] = STATE(20), + [sym_logical_expression] = STATE(24), + [sym_unary_expression] = STATE(20), + [sym_ambiguous_expression] = STATE(20), + [sym_current_changed_expression] = STATE(20), + [sym_locked_expression] = STATE(20), + [sym_input_expression] = STATE(20), + [sym_additive_expression] = STATE(24), + [sym_multiplicative_expression] = STATE(24), + [sym_comparison_expression] = STATE(24), + [sym__binary_expression] = STATE(20), [sym_include] = STATE(281), - [sym_function_call] = STATE(13), - [sym_ternary_expression] = STATE(13), - [sym_new_expression] = STATE(13), - [sym_object_access] = STATE(38), - [sym_where_clause] = STATE(2166), - [sym_query_tuning] = STATE(2166), - [sym_can_find_expression] = STATE(13), - [sym_of] = STATE(2166), - [sym__using_first] = STATE(1944), - [sym_accumulate_expression] = STATE(13), - [sym_available_expression] = STATE(13), - [sym__expression] = STATE(608), - [aux_sym_qualified_name_repeat1] = STATE(724), - [aux_sym_can_find_expression_repeat2] = STATE(1870), - [sym_identifier] = ACTIONS(353), + [sym_function_call] = STATE(20), + [sym_ternary_expression] = STATE(20), + [sym_new_expression] = STATE(20), + [sym_object_access] = STATE(29), + [sym_where_clause] = STATE(2222), + [sym_query_tuning] = STATE(2222), + [sym_can_find_expression] = STATE(20), + [sym_of] = STATE(2222), + [sym__using_first] = STATE(1960), + [sym_accumulate_expression] = STATE(20), + [sym_available_expression] = STATE(20), + [sym__expression] = STATE(603), + [aux_sym_qualified_name_repeat1] = STATE(730), + [aux_sym_can_find_expression_repeat2] = STATE(1915), + [sym_identifier] = ACTIONS(337), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_LBRACE] = ACTIONS(355), - [sym_null_expression] = ACTIONS(357), - [aux_sym_boolean_literal_token1] = ACTIONS(359), - [aux_sym_boolean_literal_token2] = ACTIONS(359), - [aux_sym_boolean_literal_token3] = ACTIONS(359), - [aux_sym_boolean_literal_token4] = ACTIONS(359), - [sym__integer_literal] = ACTIONS(361), - [anon_sym_DQUOTE] = ACTIONS(363), - [anon_sym_SQUOTE] = ACTIONS(365), - [anon_sym_LPAREN] = ACTIONS(367), - [anon_sym_RPAREN] = ACTIONS(623), - [aux_sym_unary_expression_token1] = ACTIONS(371), - [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(389), - [aux_sym_of_token1] = ACTIONS(443), - [aux_sym_accumulate_expression_token1] = ACTIONS(445), - [aux_sym_available_expression_token1] = ACTIONS(395), - [aux_sym_available_expression_token2] = ACTIONS(395), - [sym__namedot] = ACTIONS(447), + [anon_sym_LBRACE] = ACTIONS(339), + [sym_null_expression] = ACTIONS(341), + [aux_sym_boolean_literal_token1] = ACTIONS(343), + [aux_sym_boolean_literal_token2] = ACTIONS(343), + [aux_sym_boolean_literal_token3] = ACTIONS(343), + [aux_sym_boolean_literal_token4] = ACTIONS(343), + [sym__integer_literal] = ACTIONS(345), + [anon_sym_DQUOTE] = ACTIONS(347), + [anon_sym_SQUOTE] = ACTIONS(349), + [anon_sym_LPAREN] = ACTIONS(351), + [anon_sym_RPAREN] = ACTIONS(617), + [aux_sym_unary_expression_token1] = ACTIONS(355), + [aux_sym_unary_expression_token2] = ACTIONS(423), + [aux_sym_ambiguous_expression_token1] = ACTIONS(425), + [aux_sym_current_changed_expression_token1] = ACTIONS(427), + [aux_sym_locked_expression_token1] = ACTIONS(429), + [aux_sym_input_expression_token1] = ACTIONS(431), + [aux_sym_scope_tuning_token1] = ACTIONS(433), + [aux_sym_function_call_token1] = ACTIONS(435), + [aux_sym_if_statement_token1] = ACTIONS(437), + [aux_sym_using_statement_token1] = ACTIONS(439), + [aux_sym_where_clause_token1] = ACTIONS(441), + [aux_sym_query_tuning_token1] = ACTIONS(435), + [aux_sym_query_tuning_token2] = ACTIONS(435), + [aux_sym_query_tuning_token3] = ACTIONS(435), + [aux_sym_query_tuning_token4] = ACTIONS(435), + [aux_sym_query_tuning_token5] = ACTIONS(443), + [aux_sym_can_find_expression_token1] = ACTIONS(373), + [aux_sym_of_token1] = ACTIONS(445), + [aux_sym_accumulate_expression_token1] = ACTIONS(447), + [aux_sym_available_expression_token1] = ACTIONS(379), + [aux_sym_available_expression_token2] = ACTIONS(379), + [sym__namedot] = ACTIONS(449), }, [282] = { [sym_comment] = STATE(282), - [sym_constant] = STATE(13), - [sym_qualified_name] = STATE(13), - [sym_boolean_literal] = STATE(13), - [sym__decimal_literal] = STATE(36), - [sym_number_literal] = STATE(13), - [sym__string_literal] = STATE(13), - [sym_double_quoted_string] = STATE(21), - [sym_single_quoted_string] = STATE(21), - [sym_parenthesized_expression] = STATE(13), - [sym_logical_expression] = STATE(37), - [sym_unary_expression] = STATE(13), - [sym_ambiguous_expression] = STATE(13), - [sym_current_changed_expression] = STATE(13), - [sym_locked_expression] = STATE(13), - [sym_input_expression] = STATE(13), - [sym_additive_expression] = STATE(37), - [sym_multiplicative_expression] = STATE(37), - [sym_comparison_expression] = STATE(37), - [sym__binary_expression] = STATE(13), [sym_include] = STATE(282), - [sym_function_call] = STATE(13), - [sym_ternary_expression] = STATE(13), - [sym_new_expression] = STATE(13), - [sym_object_access] = STATE(38), - [sym_where_clause] = STATE(2166), - [sym_query_tuning] = STATE(2166), - [sym_can_find_expression] = STATE(13), - [sym_of] = STATE(2166), - [sym__using_first] = STATE(1944), - [sym_accumulate_expression] = STATE(13), - [sym_available_expression] = STATE(13), - [sym__expression] = STATE(603), - [aux_sym_qualified_name_repeat1] = STATE(724), - [aux_sym_can_find_expression_repeat2] = STATE(1899), - [sym_identifier] = ACTIONS(353), - [anon_sym_SLASH_SLASH] = ACTIONS(3), - [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_LBRACE] = ACTIONS(355), - [sym_null_expression] = ACTIONS(357), - [aux_sym_boolean_literal_token1] = ACTIONS(359), - [aux_sym_boolean_literal_token2] = ACTIONS(359), - [aux_sym_boolean_literal_token3] = ACTIONS(359), - [aux_sym_boolean_literal_token4] = ACTIONS(359), - [sym__integer_literal] = ACTIONS(361), - [anon_sym_DQUOTE] = ACTIONS(363), - [anon_sym_SQUOTE] = ACTIONS(365), - [anon_sym_LPAREN] = ACTIONS(367), - [anon_sym_RPAREN] = ACTIONS(625), - [aux_sym_unary_expression_token1] = ACTIONS(371), - [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(389), - [aux_sym_of_token1] = ACTIONS(443), - [aux_sym_accumulate_expression_token1] = ACTIONS(445), - [aux_sym_available_expression_token1] = ACTIONS(395), - [aux_sym_available_expression_token2] = ACTIONS(395), - [sym__namedot] = ACTIONS(447), + [anon_sym_SLASH_SLASH] = ACTIONS(59), + [anon_sym_SLASH_STAR] = ACTIONS(61), + [anon_sym_SLASH] = ACTIONS(195), + [anon_sym_LBRACE] = ACTIONS(65), + [anon_sym_STAR] = ACTIONS(197), + [sym__terminator] = ACTIONS(197), + [anon_sym_LPAREN] = ACTIONS(197), + [anon_sym_RPAREN] = ACTIONS(197), + [anon_sym_PLUS] = ACTIONS(197), + [anon_sym_DASH] = ACTIONS(197), + [anon_sym_LT] = ACTIONS(195), + [anon_sym_LT_EQ] = ACTIONS(197), + [anon_sym_LT_GT] = ACTIONS(197), + [anon_sym_EQ] = ACTIONS(197), + [anon_sym_GT] = ACTIONS(195), + [anon_sym_GT_EQ] = ACTIONS(197), + [aux_sym__comparison_operator_token1] = ACTIONS(197), + [aux_sym__comparison_operator_token2] = ACTIONS(197), + [aux_sym__comparison_operator_token3] = ACTIONS(197), + [aux_sym__comparison_operator_token4] = ACTIONS(197), + [aux_sym__comparison_operator_token5] = ACTIONS(197), + [aux_sym__comparison_operator_token6] = ACTIONS(197), + [aux_sym__comparison_operator_token7] = ACTIONS(197), + [aux_sym__comparison_operator_token8] = ACTIONS(197), + [aux_sym__comparison_operator_token9] = ACTIONS(197), + [aux_sym_variable_tuning_token1] = ACTIONS(197), + [aux_sym_variable_tuning_token2] = ACTIONS(197), + [aux_sym_variable_tuning_token3] = ACTIONS(197), + [aux_sym_variable_tuning_token4] = ACTIONS(197), + [aux_sym_variable_tuning_token5] = ACTIONS(197), + [aux_sym_variable_tuning_token6] = ACTIONS(197), + [anon_sym_COMMA] = ACTIONS(197), + [aux_sym_if_statement_token2] = ACTIONS(197), + [aux_sym_else_if_statement_token1] = ACTIONS(197), + [anon_sym_COLON] = ACTIONS(197), + [aux_sym_while_phrase_token1] = ACTIONS(197), + [aux_sym_repeat_tuning_token1] = ACTIONS(197), + [aux_sym_property_tuning_token1] = ACTIONS(197), + [aux_sym_event_definition_token1] = ACTIONS(197), + [anon_sym_NO_DASHERROR] = ACTIONS(619), + [aux_sym_input_stream_tuning_token1] = ACTIONS(197), + [aux_sym_input_stream_tuning_token2] = ACTIONS(197), + [aux_sym_input_stream_tuning_token3] = ACTIONS(197), + [aux_sym_input_stream_tuning_token4] = ACTIONS(197), + [aux_sym_input_stream_tuning_token5] = ACTIONS(197), + [aux_sym_input_stream_tuning_token6] = ACTIONS(197), + [aux_sym_input_stream_tuning_token7] = ACTIONS(197), + [aux_sym_input_stream_tuning_token8] = ACTIONS(197), + [aux_sym_input_stream_tuning_token9] = ACTIONS(197), + [aux_sym_input_stream_tuning_token11] = ACTIONS(197), + [aux_sym_output_stream_tuning_token1] = ACTIONS(197), + [aux_sym_output_stream_tuning_token2] = ACTIONS(197), + [aux_sym_output_stream_tuning_token3] = ACTIONS(197), + [aux_sym_output_stream_tuning_token4] = ACTIONS(197), + [aux_sym_output_stream_tuning_token5] = ACTIONS(197), + [aux_sym_output_stream_tuning_token6] = ACTIONS(197), + [aux_sym_output_stream_tuning_token7] = ACTIONS(197), + [aux_sym_output_stream_tuning_token8] = ACTIONS(197), + [aux_sym_output_stream_statement_token1] = ACTIONS(197), + [aux_sym_on_error_phrase_token1] = ACTIONS(197), + [aux_sym_stop_after_phrase_token1] = ACTIONS(197), + [aux_sym_do_tuning_token1] = ACTIONS(197), + [anon_sym_BY] = ACTIONS(197), + [aux_sym_of_token1] = ACTIONS(197), + [aux_sym_field_definition_token1] = ACTIONS(197), + [aux_sym_index_definition_token1] = ACTIONS(197), + [aux_sym_on_statement_token1] = ACTIONS(197), + [sym__or_operator] = ACTIONS(197), + [sym__and_operator] = ACTIONS(197), }, [283] = { [sym_comment] = STATE(283), + [sym_constant] = STATE(20), + [sym_qualified_name] = STATE(20), + [sym_boolean_literal] = STATE(20), + [sym__decimal_literal] = STATE(23), + [sym_number_literal] = STATE(20), + [sym__string_literal] = STATE(20), + [sym_double_quoted_string] = STATE(18), + [sym_single_quoted_string] = STATE(18), + [sym_parenthesized_expression] = STATE(20), + [sym_logical_expression] = STATE(24), + [sym_unary_expression] = STATE(20), + [sym_ambiguous_expression] = STATE(20), + [sym_current_changed_expression] = STATE(20), + [sym_locked_expression] = STATE(20), + [sym_input_expression] = STATE(20), + [sym_additive_expression] = STATE(24), + [sym_multiplicative_expression] = STATE(24), + [sym_comparison_expression] = STATE(24), + [sym__binary_expression] = STATE(20), [sym_include] = STATE(283), - [anon_sym_SLASH_SLASH] = ACTIONS(59), - [anon_sym_SLASH_STAR] = ACTIONS(61), - [anon_sym_SLASH] = ACTIONS(205), - [anon_sym_LBRACE] = ACTIONS(65), - [anon_sym_STAR] = ACTIONS(207), - [sym__terminator] = ACTIONS(207), - [anon_sym_LPAREN] = ACTIONS(207), - [anon_sym_RPAREN] = ACTIONS(207), - [anon_sym_PLUS] = ACTIONS(207), - [anon_sym_DASH] = ACTIONS(207), - [anon_sym_LT] = ACTIONS(205), - [anon_sym_LT_EQ] = ACTIONS(207), - [anon_sym_LT_GT] = ACTIONS(207), - [anon_sym_EQ] = ACTIONS(207), - [anon_sym_GT] = ACTIONS(205), - [anon_sym_GT_EQ] = ACTIONS(207), - [aux_sym__comparison_operator_token1] = ACTIONS(207), - [aux_sym__comparison_operator_token2] = ACTIONS(207), - [aux_sym__comparison_operator_token3] = ACTIONS(207), - [aux_sym__comparison_operator_token4] = ACTIONS(207), - [aux_sym__comparison_operator_token5] = ACTIONS(207), - [aux_sym__comparison_operator_token6] = ACTIONS(207), - [aux_sym__comparison_operator_token7] = ACTIONS(207), - [aux_sym__comparison_operator_token8] = ACTIONS(207), - [aux_sym__comparison_operator_token9] = ACTIONS(207), - [aux_sym_variable_tuning_token1] = ACTIONS(207), - [aux_sym_variable_tuning_token2] = ACTIONS(207), - [aux_sym_variable_tuning_token3] = ACTIONS(207), - [aux_sym_variable_tuning_token4] = ACTIONS(207), - [aux_sym_variable_tuning_token5] = ACTIONS(207), - [aux_sym_variable_tuning_token6] = ACTIONS(207), - [anon_sym_COMMA] = ACTIONS(207), - [aux_sym_if_statement_token2] = ACTIONS(207), - [aux_sym_else_if_statement_token1] = ACTIONS(207), - [anon_sym_COLON] = ACTIONS(207), - [aux_sym_while_phrase_token1] = ACTIONS(207), - [aux_sym_property_tuning_token1] = ACTIONS(207), - [aux_sym_event_definition_token1] = ACTIONS(207), - [anon_sym_NO_DASHERROR] = ACTIONS(627), - [aux_sym_input_stream_tuning_token1] = ACTIONS(207), - [aux_sym_input_stream_tuning_token2] = ACTIONS(207), - [aux_sym_input_stream_tuning_token3] = ACTIONS(207), - [aux_sym_input_stream_tuning_token4] = ACTIONS(207), - [aux_sym_input_stream_tuning_token5] = ACTIONS(207), - [aux_sym_input_stream_tuning_token6] = ACTIONS(207), - [aux_sym_input_stream_tuning_token7] = ACTIONS(207), - [aux_sym_input_stream_tuning_token8] = ACTIONS(207), - [aux_sym_input_stream_tuning_token9] = ACTIONS(207), - [aux_sym_input_stream_tuning_token11] = ACTIONS(207), - [aux_sym_output_stream_tuning_token1] = ACTIONS(207), - [aux_sym_output_stream_tuning_token2] = ACTIONS(207), - [aux_sym_output_stream_tuning_token3] = ACTIONS(207), - [aux_sym_output_stream_tuning_token4] = ACTIONS(207), - [aux_sym_output_stream_tuning_token5] = ACTIONS(207), - [aux_sym_output_stream_tuning_token6] = ACTIONS(207), - [aux_sym_output_stream_tuning_token7] = ACTIONS(207), - [aux_sym_output_stream_tuning_token8] = ACTIONS(207), - [aux_sym_output_stream_statement_token1] = ACTIONS(207), - [aux_sym_on_error_phrase_token1] = ACTIONS(207), - [aux_sym_stop_after_phrase_token1] = ACTIONS(207), - [aux_sym_do_tuning_token1] = ACTIONS(207), - [anon_sym_BY] = ACTIONS(207), - [aux_sym_of_token1] = ACTIONS(207), - [aux_sym_field_definition_token1] = ACTIONS(207), - [aux_sym_index_definition_token1] = ACTIONS(207), - [aux_sym_on_statement_token1] = ACTIONS(207), - [sym__or_operator] = ACTIONS(207), - [sym__and_operator] = ACTIONS(207), + [sym_function_call] = STATE(20), + [sym_ternary_expression] = STATE(20), + [sym_new_expression] = STATE(20), + [sym_object_access] = STATE(29), + [sym_where_clause] = STATE(2222), + [sym_query_tuning] = STATE(2222), + [sym_can_find_expression] = STATE(20), + [sym_of] = STATE(2222), + [sym__using_first] = STATE(1960), + [sym_accumulate_expression] = STATE(20), + [sym_available_expression] = STATE(20), + [sym__expression] = STATE(612), + [aux_sym_qualified_name_repeat1] = STATE(730), + [aux_sym_can_find_expression_repeat2] = STATE(1907), + [sym_identifier] = ACTIONS(337), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_LBRACE] = ACTIONS(339), + [sym_null_expression] = ACTIONS(341), + [aux_sym_boolean_literal_token1] = ACTIONS(343), + [aux_sym_boolean_literal_token2] = ACTIONS(343), + [aux_sym_boolean_literal_token3] = ACTIONS(343), + [aux_sym_boolean_literal_token4] = ACTIONS(343), + [sym__integer_literal] = ACTIONS(345), + [anon_sym_DQUOTE] = ACTIONS(347), + [anon_sym_SQUOTE] = ACTIONS(349), + [anon_sym_LPAREN] = ACTIONS(351), + [anon_sym_RPAREN] = ACTIONS(621), + [aux_sym_unary_expression_token1] = ACTIONS(355), + [aux_sym_unary_expression_token2] = ACTIONS(423), + [aux_sym_ambiguous_expression_token1] = ACTIONS(425), + [aux_sym_current_changed_expression_token1] = ACTIONS(427), + [aux_sym_locked_expression_token1] = ACTIONS(429), + [aux_sym_input_expression_token1] = ACTIONS(431), + [aux_sym_scope_tuning_token1] = ACTIONS(433), + [aux_sym_function_call_token1] = ACTIONS(435), + [aux_sym_if_statement_token1] = ACTIONS(437), + [aux_sym_using_statement_token1] = ACTIONS(439), + [aux_sym_where_clause_token1] = ACTIONS(441), + [aux_sym_query_tuning_token1] = ACTIONS(435), + [aux_sym_query_tuning_token2] = ACTIONS(435), + [aux_sym_query_tuning_token3] = ACTIONS(435), + [aux_sym_query_tuning_token4] = ACTIONS(435), + [aux_sym_query_tuning_token5] = ACTIONS(443), + [aux_sym_can_find_expression_token1] = ACTIONS(373), + [aux_sym_of_token1] = ACTIONS(445), + [aux_sym_accumulate_expression_token1] = ACTIONS(447), + [aux_sym_available_expression_token1] = ACTIONS(379), + [aux_sym_available_expression_token2] = ACTIONS(379), + [sym__namedot] = ACTIONS(449), }, [284] = { [sym_comment] = STATE(284), + [sym_constant] = STATE(20), + [sym_qualified_name] = STATE(20), + [sym_boolean_literal] = STATE(20), + [sym__decimal_literal] = STATE(23), + [sym_number_literal] = STATE(20), + [sym__string_literal] = STATE(20), + [sym_double_quoted_string] = STATE(18), + [sym_single_quoted_string] = STATE(18), + [sym_parenthesized_expression] = STATE(20), + [sym_logical_expression] = STATE(24), + [sym_unary_expression] = STATE(20), + [sym_ambiguous_expression] = STATE(20), + [sym_current_changed_expression] = STATE(20), + [sym_locked_expression] = STATE(20), + [sym_input_expression] = STATE(20), + [sym_additive_expression] = STATE(24), + [sym_multiplicative_expression] = STATE(24), + [sym_comparison_expression] = STATE(24), + [sym__binary_expression] = STATE(20), [sym_include] = STATE(284), - [anon_sym_SLASH_SLASH] = ACTIONS(59), - [anon_sym_SLASH_STAR] = ACTIONS(61), - [anon_sym_SLASH] = ACTIONS(629), - [anon_sym_LBRACE] = ACTIONS(65), - [anon_sym_STAR] = ACTIONS(631), - [sym__terminator] = ACTIONS(631), - [anon_sym_LPAREN] = ACTIONS(631), - [anon_sym_RPAREN] = ACTIONS(631), - [anon_sym_PLUS] = ACTIONS(631), - [anon_sym_DASH] = ACTIONS(631), - [anon_sym_LT] = ACTIONS(629), - [anon_sym_LT_EQ] = ACTIONS(631), - [anon_sym_LT_GT] = ACTIONS(631), - [anon_sym_EQ] = ACTIONS(631), - [anon_sym_GT] = ACTIONS(629), - [anon_sym_GT_EQ] = ACTIONS(631), - [aux_sym__comparison_operator_token1] = ACTIONS(631), - [aux_sym__comparison_operator_token2] = ACTIONS(631), - [aux_sym__comparison_operator_token3] = ACTIONS(631), - [aux_sym__comparison_operator_token4] = ACTIONS(631), - [aux_sym__comparison_operator_token5] = ACTIONS(631), - [aux_sym__comparison_operator_token6] = ACTIONS(631), - [aux_sym__comparison_operator_token7] = ACTIONS(631), - [aux_sym__comparison_operator_token8] = ACTIONS(631), - [aux_sym__comparison_operator_token9] = ACTIONS(631), - [aux_sym_variable_tuning_token1] = ACTIONS(631), - [aux_sym_variable_tuning_token2] = ACTIONS(631), - [aux_sym_variable_tuning_token3] = ACTIONS(631), - [aux_sym_variable_tuning_token4] = ACTIONS(631), - [aux_sym_variable_tuning_token5] = ACTIONS(631), - [aux_sym_variable_tuning_token6] = ACTIONS(631), - [anon_sym_COMMA] = ACTIONS(631), - [aux_sym_if_statement_token2] = ACTIONS(631), - [aux_sym_else_if_statement_token1] = ACTIONS(631), - [anon_sym_COLON] = ACTIONS(631), - [aux_sym_while_phrase_token1] = ACTIONS(631), - [aux_sym_property_tuning_token1] = ACTIONS(631), - [aux_sym_event_definition_token1] = ACTIONS(631), - [anon_sym_NO_DASHERROR] = ACTIONS(633), - [aux_sym_input_stream_tuning_token1] = ACTIONS(631), - [aux_sym_input_stream_tuning_token2] = ACTIONS(631), - [aux_sym_input_stream_tuning_token3] = ACTIONS(631), - [aux_sym_input_stream_tuning_token4] = ACTIONS(631), - [aux_sym_input_stream_tuning_token5] = ACTIONS(631), - [aux_sym_input_stream_tuning_token6] = ACTIONS(631), - [aux_sym_input_stream_tuning_token7] = ACTIONS(631), - [aux_sym_input_stream_tuning_token8] = ACTIONS(631), - [aux_sym_input_stream_tuning_token9] = ACTIONS(631), - [aux_sym_input_stream_tuning_token11] = ACTIONS(631), - [aux_sym_output_stream_tuning_token1] = ACTIONS(631), - [aux_sym_output_stream_tuning_token2] = ACTIONS(631), - [aux_sym_output_stream_tuning_token3] = ACTIONS(631), - [aux_sym_output_stream_tuning_token4] = ACTIONS(631), - [aux_sym_output_stream_tuning_token5] = ACTIONS(631), - [aux_sym_output_stream_tuning_token6] = ACTIONS(631), - [aux_sym_output_stream_tuning_token7] = ACTIONS(631), - [aux_sym_output_stream_tuning_token8] = ACTIONS(631), - [aux_sym_output_stream_statement_token1] = ACTIONS(631), - [aux_sym_on_error_phrase_token1] = ACTIONS(631), - [aux_sym_stop_after_phrase_token1] = ACTIONS(631), - [aux_sym_do_tuning_token1] = ACTIONS(631), - [anon_sym_BY] = ACTIONS(631), - [aux_sym_of_token1] = ACTIONS(631), - [aux_sym_field_definition_token1] = ACTIONS(631), - [aux_sym_index_definition_token1] = ACTIONS(631), - [aux_sym_on_statement_token1] = ACTIONS(631), - [sym__or_operator] = ACTIONS(631), - [sym__and_operator] = ACTIONS(631), + [sym_function_call] = STATE(20), + [sym_ternary_expression] = STATE(20), + [sym_new_expression] = STATE(20), + [sym_object_access] = STATE(29), + [sym_where_clause] = STATE(2222), + [sym_query_tuning] = STATE(2222), + [sym_can_find_expression] = STATE(20), + [sym_of] = STATE(2222), + [sym__using_first] = STATE(1960), + [sym_accumulate_expression] = STATE(20), + [sym_available_expression] = STATE(20), + [sym__expression] = STATE(606), + [aux_sym_qualified_name_repeat1] = STATE(730), + [aux_sym_can_find_expression_repeat2] = STATE(1917), + [sym_identifier] = ACTIONS(337), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_LBRACE] = ACTIONS(339), + [sym_null_expression] = ACTIONS(341), + [aux_sym_boolean_literal_token1] = ACTIONS(343), + [aux_sym_boolean_literal_token2] = ACTIONS(343), + [aux_sym_boolean_literal_token3] = ACTIONS(343), + [aux_sym_boolean_literal_token4] = ACTIONS(343), + [sym__integer_literal] = ACTIONS(345), + [anon_sym_DQUOTE] = ACTIONS(347), + [anon_sym_SQUOTE] = ACTIONS(349), + [anon_sym_LPAREN] = ACTIONS(351), + [anon_sym_RPAREN] = ACTIONS(623), + [aux_sym_unary_expression_token1] = ACTIONS(355), + [aux_sym_unary_expression_token2] = ACTIONS(423), + [aux_sym_ambiguous_expression_token1] = ACTIONS(425), + [aux_sym_current_changed_expression_token1] = ACTIONS(427), + [aux_sym_locked_expression_token1] = ACTIONS(429), + [aux_sym_input_expression_token1] = ACTIONS(431), + [aux_sym_scope_tuning_token1] = ACTIONS(433), + [aux_sym_function_call_token1] = ACTIONS(435), + [aux_sym_if_statement_token1] = ACTIONS(437), + [aux_sym_using_statement_token1] = ACTIONS(439), + [aux_sym_where_clause_token1] = ACTIONS(441), + [aux_sym_query_tuning_token1] = ACTIONS(435), + [aux_sym_query_tuning_token2] = ACTIONS(435), + [aux_sym_query_tuning_token3] = ACTIONS(435), + [aux_sym_query_tuning_token4] = ACTIONS(435), + [aux_sym_query_tuning_token5] = ACTIONS(443), + [aux_sym_can_find_expression_token1] = ACTIONS(373), + [aux_sym_of_token1] = ACTIONS(445), + [aux_sym_accumulate_expression_token1] = ACTIONS(447), + [aux_sym_available_expression_token1] = ACTIONS(379), + [aux_sym_available_expression_token2] = ACTIONS(379), + [sym__namedot] = ACTIONS(449), }, [285] = { [sym_comment] = STATE(285), - [sym_constant] = STATE(13), - [sym_qualified_name] = STATE(13), - [sym_boolean_literal] = STATE(13), - [sym__decimal_literal] = STATE(36), - [sym_number_literal] = STATE(13), - [sym__string_literal] = STATE(13), - [sym_double_quoted_string] = STATE(21), - [sym_single_quoted_string] = STATE(21), - [sym_parenthesized_expression] = STATE(13), - [sym_logical_expression] = STATE(37), - [sym_unary_expression] = STATE(13), - [sym_ambiguous_expression] = STATE(13), - [sym_current_changed_expression] = STATE(13), - [sym_locked_expression] = STATE(13), - [sym_input_expression] = STATE(13), - [sym_additive_expression] = STATE(37), - [sym_multiplicative_expression] = STATE(37), - [sym_comparison_expression] = STATE(37), - [sym__binary_expression] = STATE(13), + [sym_constant] = STATE(20), + [sym_qualified_name] = STATE(20), + [sym_boolean_literal] = STATE(20), + [sym__decimal_literal] = STATE(23), + [sym_number_literal] = STATE(20), + [sym__string_literal] = STATE(20), + [sym_double_quoted_string] = STATE(18), + [sym_single_quoted_string] = STATE(18), + [sym_parenthesized_expression] = STATE(20), + [sym_logical_expression] = STATE(24), + [sym_unary_expression] = STATE(20), + [sym_ambiguous_expression] = STATE(20), + [sym_current_changed_expression] = STATE(20), + [sym_locked_expression] = STATE(20), + [sym_input_expression] = STATE(20), + [sym_additive_expression] = STATE(24), + [sym_multiplicative_expression] = STATE(24), + [sym_comparison_expression] = STATE(24), + [sym__binary_expression] = STATE(20), [sym_include] = STATE(285), - [sym_function_call] = STATE(13), - [sym_ternary_expression] = STATE(13), - [sym_new_expression] = STATE(13), - [sym_object_access] = STATE(38), - [sym_where_clause] = STATE(2166), - [sym_query_tuning] = STATE(2166), - [sym_can_find_expression] = STATE(13), - [sym_of] = STATE(2166), - [sym__using_first] = STATE(1944), - [sym_accumulate_expression] = STATE(13), - [sym_available_expression] = STATE(13), - [sym__expression] = STATE(609), - [aux_sym_can_find_expression_repeat2] = STATE(1897), - [sym_identifier] = ACTIONS(353), + [sym_function_call] = STATE(20), + [sym_ternary_expression] = STATE(20), + [sym_new_expression] = STATE(20), + [sym_object_access] = STATE(29), + [sym_where_clause] = STATE(2222), + [sym_query_tuning] = STATE(2222), + [sym_can_find_expression] = STATE(20), + [sym_of] = STATE(2222), + [sym__using_first] = STATE(1960), + [sym_accumulate_expression] = STATE(20), + [sym_available_expression] = STATE(20), + [sym__expression] = STATE(614), + [aux_sym_qualified_name_repeat1] = STATE(730), + [aux_sym_can_find_expression_repeat2] = STATE(1919), + [sym_identifier] = ACTIONS(337), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_LBRACE] = ACTIONS(355), - [sym_null_expression] = ACTIONS(357), - [aux_sym_boolean_literal_token1] = ACTIONS(359), - [aux_sym_boolean_literal_token2] = ACTIONS(359), - [aux_sym_boolean_literal_token3] = ACTIONS(359), - [aux_sym_boolean_literal_token4] = ACTIONS(359), - [sym__integer_literal] = ACTIONS(361), - [anon_sym_DQUOTE] = ACTIONS(363), - [anon_sym_SQUOTE] = ACTIONS(365), - [anon_sym_LPAREN] = ACTIONS(367), - [anon_sym_RPAREN] = ACTIONS(419), - [aux_sym_unary_expression_token1] = ACTIONS(371), - [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(389), - [aux_sym_of_token1] = ACTIONS(443), - [aux_sym_accumulate_expression_token1] = ACTIONS(445), - [aux_sym_available_expression_token1] = ACTIONS(395), - [aux_sym_available_expression_token2] = ACTIONS(395), + [anon_sym_LBRACE] = ACTIONS(339), + [sym_null_expression] = ACTIONS(341), + [aux_sym_boolean_literal_token1] = ACTIONS(343), + [aux_sym_boolean_literal_token2] = ACTIONS(343), + [aux_sym_boolean_literal_token3] = ACTIONS(343), + [aux_sym_boolean_literal_token4] = ACTIONS(343), + [sym__integer_literal] = ACTIONS(345), + [anon_sym_DQUOTE] = ACTIONS(347), + [anon_sym_SQUOTE] = ACTIONS(349), + [anon_sym_LPAREN] = ACTIONS(351), + [anon_sym_RPAREN] = ACTIONS(625), + [aux_sym_unary_expression_token1] = ACTIONS(355), + [aux_sym_unary_expression_token2] = ACTIONS(423), + [aux_sym_ambiguous_expression_token1] = ACTIONS(425), + [aux_sym_current_changed_expression_token1] = ACTIONS(427), + [aux_sym_locked_expression_token1] = ACTIONS(429), + [aux_sym_input_expression_token1] = ACTIONS(431), + [aux_sym_scope_tuning_token1] = ACTIONS(433), + [aux_sym_function_call_token1] = ACTIONS(435), + [aux_sym_if_statement_token1] = ACTIONS(437), + [aux_sym_using_statement_token1] = ACTIONS(439), + [aux_sym_where_clause_token1] = ACTIONS(441), + [aux_sym_query_tuning_token1] = ACTIONS(435), + [aux_sym_query_tuning_token2] = ACTIONS(435), + [aux_sym_query_tuning_token3] = ACTIONS(435), + [aux_sym_query_tuning_token4] = ACTIONS(435), + [aux_sym_query_tuning_token5] = ACTIONS(443), + [aux_sym_can_find_expression_token1] = ACTIONS(373), + [aux_sym_of_token1] = ACTIONS(445), + [aux_sym_accumulate_expression_token1] = ACTIONS(447), + [aux_sym_available_expression_token1] = ACTIONS(379), + [aux_sym_available_expression_token2] = ACTIONS(379), + [sym__namedot] = ACTIONS(449), }, [286] = { [sym_comment] = STATE(286), - [sym_constant] = STATE(13), - [sym_qualified_name] = STATE(13), - [sym_boolean_literal] = STATE(13), - [sym__decimal_literal] = STATE(36), - [sym_number_literal] = STATE(13), - [sym__string_literal] = STATE(13), - [sym_double_quoted_string] = STATE(21), - [sym_single_quoted_string] = STATE(21), - [sym_parenthesized_expression] = STATE(13), - [sym_logical_expression] = STATE(37), - [sym_unary_expression] = STATE(13), - [sym_ambiguous_expression] = STATE(13), - [sym_current_changed_expression] = STATE(13), - [sym_locked_expression] = STATE(13), - [sym_input_expression] = STATE(13), - [sym_additive_expression] = STATE(37), - [sym_multiplicative_expression] = STATE(37), - [sym_comparison_expression] = STATE(37), - [sym__binary_expression] = STATE(13), + [sym_qualified_name] = STATE(4814), [sym_include] = STATE(286), - [sym_function_call] = STATE(13), - [sym_ternary_expression] = STATE(13), - [sym_new_expression] = STATE(13), - [sym_object_access] = STATE(38), - [sym_where_clause] = STATE(2166), - [sym_query_tuning] = STATE(2166), - [sym_can_find_expression] = STATE(13), - [sym_of] = STATE(2166), - [sym__using_first] = STATE(1944), - [sym_accumulate_expression] = STATE(13), - [sym_available_expression] = STATE(13), - [sym__expression] = STATE(598), - [aux_sym_can_find_expression_repeat2] = STATE(1890), - [sym_identifier] = ACTIONS(353), + [sym_assignment] = STATE(4463), + [sym_variable_definition] = STATE(1550), + [sym_variable_assignment] = STATE(1550), + [sym_buffer_definition] = STATE(1550), + [sym_query_definition] = STATE(1550), + [sym_function_call_statement] = STATE(1550), + [sym_function_call] = STATE(4558), + [sym_if_statement] = STATE(1550), + [sym_label] = STATE(1551), + [sym_repeat_statement] = STATE(1550), + [sym_procedure_statement] = STATE(1550), + [sym_procedure_parameter_definition] = STATE(1550), + [sym_function_statement] = STATE(1550), + [sym_return_statement] = STATE(1550), + [sym_interface_statement] = STATE(1550), + [sym_using_statement] = STATE(1550), + [sym_class_statement] = STATE(1550), + [sym_object_access] = STATE(3661), + [sym_stream_definition] = STATE(1550), + [sym_input_close_statement] = STATE(1550), + [sym_output_close_statement] = STATE(1550), + [sym__stream_statement] = STATE(1550), + [sym_input_stream_statement] = STATE(1552), + [sym_output_stream_statement] = STATE(1552), + [sym_do_block] = STATE(1550), + [sym_case_statement] = STATE(1550), + [sym_for_statement] = STATE(1550), + [sym_find_statement] = STATE(1550), + [sym_abl_statement] = STATE(1550), + [sym_assign_statement] = STATE(1550), + [sym_catch_statement] = STATE(1550), + [sym_finally_statement] = STATE(1550), + [sym_accumulate_statement] = STATE(1550), + [sym_undo_statement] = STATE(1550), + [sym_error_scope_statement] = STATE(1550), + [sym_temp_table_definition] = STATE(1550), + [sym_on_statement] = STATE(1550), + [sym__statement] = STATE(1553), + [aux_sym_source_code_repeat1] = STATE(273), + [sym_identifier] = ACTIONS(263), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_LBRACE] = ACTIONS(355), - [sym_null_expression] = ACTIONS(357), - [aux_sym_boolean_literal_token1] = ACTIONS(359), - [aux_sym_boolean_literal_token2] = ACTIONS(359), - [aux_sym_boolean_literal_token3] = ACTIONS(359), - [aux_sym_boolean_literal_token4] = ACTIONS(359), - [sym__integer_literal] = ACTIONS(361), - [anon_sym_DQUOTE] = ACTIONS(363), - [anon_sym_SQUOTE] = ACTIONS(365), - [anon_sym_LPAREN] = ACTIONS(367), - [anon_sym_RPAREN] = ACTIONS(525), - [aux_sym_unary_expression_token1] = ACTIONS(371), - [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(389), - [aux_sym_of_token1] = ACTIONS(443), - [aux_sym_accumulate_expression_token1] = ACTIONS(445), - [aux_sym_available_expression_token1] = ACTIONS(395), - [aux_sym_available_expression_token2] = ACTIONS(395), + [anon_sym_LBRACE] = ACTIONS(7), + [aux_sym__block_terminator_token1] = ACTIONS(627), + [aux_sym_input_expression_token1] = ACTIONS(267), + [aux_sym_primitive_type_token19] = ACTIONS(269), + [aux_sym_variable_definition_token1] = ACTIONS(271), + [aux_sym_variable_definition_token2] = ACTIONS(273), + [aux_sym_buffer_definition_token2] = ACTIONS(275), + [aux_sym_argument_mode_token1] = ACTIONS(277), + [aux_sym_if_statement_token1] = ACTIONS(279), + [aux_sym_repeat_statement_token1] = ACTIONS(281), + [aux_sym__procedure_terminator_token1] = ACTIONS(283), + [aux_sym_procedure_parameter_definition_token1] = ACTIONS(285), + [aux_sym__function_terminator_token1] = ACTIONS(287), + [aux_sym_interface_statement_token1] = ACTIONS(289), + [aux_sym_using_statement_token1] = ACTIONS(291), + [aux_sym_on_error_phrase_token1] = ACTIONS(293), + [aux_sym_on_error_phrase_token3] = ACTIONS(295), + [aux_sym_do_block_token1] = ACTIONS(297), + [aux_sym__case_terminator_token1] = ACTIONS(299), + [aux_sym_find_statement_token1] = ACTIONS(301), + [aux_sym_assign_statement_token1] = ACTIONS(303), + [aux_sym_catch_statement_token1] = ACTIONS(305), + [aux_sym_finally_statement_token1] = ACTIONS(307), + [aux_sym_accumulate_statement_token1] = ACTIONS(309), + [anon_sym_ROUTINE_DASHLEVEL] = ACTIONS(311), + [anon_sym_BLOCK_DASHLEVEL] = ACTIONS(311), }, [287] = { [sym_comment] = STATE(287), - [sym_constant] = STATE(13), - [sym_qualified_name] = STATE(13), - [sym_boolean_literal] = STATE(13), - [sym__decimal_literal] = STATE(36), - [sym_number_literal] = STATE(13), - [sym__string_literal] = STATE(13), - [sym_double_quoted_string] = STATE(21), - [sym_single_quoted_string] = STATE(21), - [sym_parenthesized_expression] = STATE(13), - [sym_logical_expression] = STATE(37), - [sym_unary_expression] = STATE(13), - [sym_ambiguous_expression] = STATE(13), - [sym_current_changed_expression] = STATE(13), - [sym_locked_expression] = STATE(13), - [sym_input_expression] = STATE(13), - [sym_additive_expression] = STATE(37), - [sym_multiplicative_expression] = STATE(37), - [sym_comparison_expression] = STATE(37), - [sym__binary_expression] = STATE(13), + [sym_constant] = STATE(20), + [sym_qualified_name] = STATE(20), + [sym_boolean_literal] = STATE(20), + [sym__decimal_literal] = STATE(23), + [sym_number_literal] = STATE(20), + [sym__string_literal] = STATE(20), + [sym_double_quoted_string] = STATE(18), + [sym_single_quoted_string] = STATE(18), + [sym_parenthesized_expression] = STATE(20), + [sym_logical_expression] = STATE(24), + [sym_unary_expression] = STATE(20), + [sym_ambiguous_expression] = STATE(20), + [sym_current_changed_expression] = STATE(20), + [sym_locked_expression] = STATE(20), + [sym_input_expression] = STATE(20), + [sym_additive_expression] = STATE(24), + [sym_multiplicative_expression] = STATE(24), + [sym_comparison_expression] = STATE(24), + [sym__binary_expression] = STATE(20), [sym_include] = STATE(287), - [sym_function_call] = STATE(13), - [sym_ternary_expression] = STATE(13), - [sym_new_expression] = STATE(13), - [sym_object_access] = STATE(38), - [sym_where_clause] = STATE(2166), - [sym_query_tuning] = STATE(2166), - [sym_can_find_expression] = STATE(13), - [sym_of] = STATE(2166), - [sym__using_first] = STATE(1944), - [sym_accumulate_expression] = STATE(13), - [sym_available_expression] = STATE(13), - [sym__expression] = STATE(594), - [aux_sym_can_find_expression_repeat2] = STATE(1871), - [sym_identifier] = ACTIONS(353), + [sym_function_call] = STATE(20), + [sym_ternary_expression] = STATE(20), + [sym_new_expression] = STATE(20), + [sym_object_access] = STATE(29), + [sym_where_clause] = STATE(2222), + [sym_query_tuning] = STATE(2222), + [sym_can_find_expression] = STATE(20), + [sym_of] = STATE(2222), + [sym__using_first] = STATE(1960), + [sym_accumulate_expression] = STATE(20), + [sym_available_expression] = STATE(20), + [sym__expression] = STATE(613), + [aux_sym_qualified_name_repeat1] = STATE(730), + [aux_sym_can_find_expression_repeat2] = STATE(1908), + [sym_identifier] = ACTIONS(337), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_LBRACE] = ACTIONS(355), - [sym_null_expression] = ACTIONS(357), - [aux_sym_boolean_literal_token1] = ACTIONS(359), - [aux_sym_boolean_literal_token2] = ACTIONS(359), - [aux_sym_boolean_literal_token3] = ACTIONS(359), - [aux_sym_boolean_literal_token4] = ACTIONS(359), - [sym__integer_literal] = ACTIONS(361), - [anon_sym_DQUOTE] = ACTIONS(363), - [anon_sym_SQUOTE] = ACTIONS(365), - [anon_sym_LPAREN] = ACTIONS(367), - [anon_sym_RPAREN] = ACTIONS(619), - [aux_sym_unary_expression_token1] = ACTIONS(371), - [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(389), - [aux_sym_of_token1] = ACTIONS(443), - [aux_sym_accumulate_expression_token1] = ACTIONS(445), - [aux_sym_available_expression_token1] = ACTIONS(395), - [aux_sym_available_expression_token2] = ACTIONS(395), + [anon_sym_LBRACE] = ACTIONS(339), + [sym_null_expression] = ACTIONS(341), + [aux_sym_boolean_literal_token1] = ACTIONS(343), + [aux_sym_boolean_literal_token2] = ACTIONS(343), + [aux_sym_boolean_literal_token3] = ACTIONS(343), + [aux_sym_boolean_literal_token4] = ACTIONS(343), + [sym__integer_literal] = ACTIONS(345), + [anon_sym_DQUOTE] = ACTIONS(347), + [anon_sym_SQUOTE] = ACTIONS(349), + [anon_sym_LPAREN] = ACTIONS(351), + [anon_sym_RPAREN] = ACTIONS(629), + [aux_sym_unary_expression_token1] = ACTIONS(355), + [aux_sym_unary_expression_token2] = ACTIONS(423), + [aux_sym_ambiguous_expression_token1] = ACTIONS(425), + [aux_sym_current_changed_expression_token1] = ACTIONS(427), + [aux_sym_locked_expression_token1] = ACTIONS(429), + [aux_sym_input_expression_token1] = ACTIONS(431), + [aux_sym_scope_tuning_token1] = ACTIONS(433), + [aux_sym_function_call_token1] = ACTIONS(435), + [aux_sym_if_statement_token1] = ACTIONS(437), + [aux_sym_using_statement_token1] = ACTIONS(439), + [aux_sym_where_clause_token1] = ACTIONS(441), + [aux_sym_query_tuning_token1] = ACTIONS(435), + [aux_sym_query_tuning_token2] = ACTIONS(435), + [aux_sym_query_tuning_token3] = ACTIONS(435), + [aux_sym_query_tuning_token4] = ACTIONS(435), + [aux_sym_query_tuning_token5] = ACTIONS(443), + [aux_sym_can_find_expression_token1] = ACTIONS(373), + [aux_sym_of_token1] = ACTIONS(445), + [aux_sym_accumulate_expression_token1] = ACTIONS(447), + [aux_sym_available_expression_token1] = ACTIONS(379), + [aux_sym_available_expression_token2] = ACTIONS(379), + [sym__namedot] = ACTIONS(449), }, [288] = { [sym_comment] = STATE(288), - [sym_constant] = STATE(13), - [sym_qualified_name] = STATE(13), - [sym_boolean_literal] = STATE(13), - [sym__decimal_literal] = STATE(36), - [sym_number_literal] = STATE(13), - [sym__string_literal] = STATE(13), - [sym_double_quoted_string] = STATE(21), - [sym_single_quoted_string] = STATE(21), - [sym_parenthesized_expression] = STATE(13), - [sym_logical_expression] = STATE(37), - [sym_unary_expression] = STATE(13), - [sym_ambiguous_expression] = STATE(13), - [sym_current_changed_expression] = STATE(13), - [sym_locked_expression] = STATE(13), - [sym_input_expression] = STATE(13), - [sym_additive_expression] = STATE(37), - [sym_multiplicative_expression] = STATE(37), - [sym_comparison_expression] = STATE(37), - [sym__binary_expression] = STATE(13), + [sym_constant] = STATE(20), + [sym_qualified_name] = STATE(20), + [sym_boolean_literal] = STATE(20), + [sym__decimal_literal] = STATE(23), + [sym_number_literal] = STATE(20), + [sym__string_literal] = STATE(20), + [sym_double_quoted_string] = STATE(18), + [sym_single_quoted_string] = STATE(18), + [sym_parenthesized_expression] = STATE(20), + [sym_logical_expression] = STATE(24), + [sym_unary_expression] = STATE(20), + [sym_ambiguous_expression] = STATE(20), + [sym_current_changed_expression] = STATE(20), + [sym_locked_expression] = STATE(20), + [sym_input_expression] = STATE(20), + [sym_additive_expression] = STATE(24), + [sym_multiplicative_expression] = STATE(24), + [sym_comparison_expression] = STATE(24), + [sym__binary_expression] = STATE(20), [sym_include] = STATE(288), - [sym_function_call] = STATE(13), - [sym_ternary_expression] = STATE(13), - [sym_new_expression] = STATE(13), - [sym_object_access] = STATE(38), - [sym_where_clause] = STATE(2166), - [sym_query_tuning] = STATE(2166), - [sym_can_find_expression] = STATE(13), - [sym_of] = STATE(2166), - [sym__using_first] = STATE(1944), - [sym_accumulate_expression] = STATE(13), - [sym_available_expression] = STATE(13), - [sym__expression] = STATE(602), - [aux_sym_can_find_expression_repeat2] = STATE(1878), - [sym_identifier] = ACTIONS(353), + [sym_function_call] = STATE(20), + [sym_ternary_expression] = STATE(20), + [sym_new_expression] = STATE(20), + [sym_object_access] = STATE(29), + [sym_where_clause] = STATE(2222), + [sym_query_tuning] = STATE(2222), + [sym_can_find_expression] = STATE(20), + [sym_of] = STATE(2222), + [sym__using_first] = STATE(1960), + [sym_accumulate_expression] = STATE(20), + [sym_available_expression] = STATE(20), + [sym__expression] = STATE(599), + [aux_sym_qualified_name_repeat1] = STATE(730), + [aux_sym_can_find_expression_repeat2] = STATE(1889), + [sym_identifier] = ACTIONS(337), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_LBRACE] = ACTIONS(355), - [sym_null_expression] = ACTIONS(357), - [aux_sym_boolean_literal_token1] = ACTIONS(359), - [aux_sym_boolean_literal_token2] = ACTIONS(359), - [aux_sym_boolean_literal_token3] = ACTIONS(359), - [aux_sym_boolean_literal_token4] = ACTIONS(359), - [sym__integer_literal] = ACTIONS(361), - [anon_sym_DQUOTE] = ACTIONS(363), - [anon_sym_SQUOTE] = ACTIONS(365), - [anon_sym_LPAREN] = ACTIONS(367), - [anon_sym_RPAREN] = ACTIONS(615), - [aux_sym_unary_expression_token1] = ACTIONS(371), - [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(389), - [aux_sym_of_token1] = ACTIONS(443), - [aux_sym_accumulate_expression_token1] = ACTIONS(445), - [aux_sym_available_expression_token1] = ACTIONS(395), - [aux_sym_available_expression_token2] = ACTIONS(395), + [anon_sym_LBRACE] = ACTIONS(339), + [sym_null_expression] = ACTIONS(341), + [aux_sym_boolean_literal_token1] = ACTIONS(343), + [aux_sym_boolean_literal_token2] = ACTIONS(343), + [aux_sym_boolean_literal_token3] = ACTIONS(343), + [aux_sym_boolean_literal_token4] = ACTIONS(343), + [sym__integer_literal] = ACTIONS(345), + [anon_sym_DQUOTE] = ACTIONS(347), + [anon_sym_SQUOTE] = ACTIONS(349), + [anon_sym_LPAREN] = ACTIONS(351), + [anon_sym_RPAREN] = ACTIONS(631), + [aux_sym_unary_expression_token1] = ACTIONS(355), + [aux_sym_unary_expression_token2] = ACTIONS(423), + [aux_sym_ambiguous_expression_token1] = ACTIONS(425), + [aux_sym_current_changed_expression_token1] = ACTIONS(427), + [aux_sym_locked_expression_token1] = ACTIONS(429), + [aux_sym_input_expression_token1] = ACTIONS(431), + [aux_sym_scope_tuning_token1] = ACTIONS(433), + [aux_sym_function_call_token1] = ACTIONS(435), + [aux_sym_if_statement_token1] = ACTIONS(437), + [aux_sym_using_statement_token1] = ACTIONS(439), + [aux_sym_where_clause_token1] = ACTIONS(441), + [aux_sym_query_tuning_token1] = ACTIONS(435), + [aux_sym_query_tuning_token2] = ACTIONS(435), + [aux_sym_query_tuning_token3] = ACTIONS(435), + [aux_sym_query_tuning_token4] = ACTIONS(435), + [aux_sym_query_tuning_token5] = ACTIONS(443), + [aux_sym_can_find_expression_token1] = ACTIONS(373), + [aux_sym_of_token1] = ACTIONS(445), + [aux_sym_accumulate_expression_token1] = ACTIONS(447), + [aux_sym_available_expression_token1] = ACTIONS(379), + [aux_sym_available_expression_token2] = ACTIONS(379), + [sym__namedot] = ACTIONS(449), }, [289] = { [sym_comment] = STATE(289), - [sym_constant] = STATE(13), - [sym_qualified_name] = STATE(13), - [sym_boolean_literal] = STATE(13), - [sym__decimal_literal] = STATE(36), - [sym_number_literal] = STATE(13), - [sym__string_literal] = STATE(13), - [sym_double_quoted_string] = STATE(21), - [sym_single_quoted_string] = STATE(21), - [sym_parenthesized_expression] = STATE(13), - [sym_logical_expression] = STATE(37), - [sym_unary_expression] = STATE(13), - [sym_ambiguous_expression] = STATE(13), - [sym_current_changed_expression] = STATE(13), - [sym_locked_expression] = STATE(13), - [sym_input_expression] = STATE(13), - [sym_additive_expression] = STATE(37), - [sym_multiplicative_expression] = STATE(37), - [sym_comparison_expression] = STATE(37), - [sym__binary_expression] = STATE(13), + [sym_constant] = STATE(20), + [sym_qualified_name] = STATE(20), + [sym_boolean_literal] = STATE(20), + [sym__decimal_literal] = STATE(23), + [sym_number_literal] = STATE(20), + [sym__string_literal] = STATE(20), + [sym_double_quoted_string] = STATE(18), + [sym_single_quoted_string] = STATE(18), + [sym_parenthesized_expression] = STATE(20), + [sym_logical_expression] = STATE(24), + [sym_unary_expression] = STATE(20), + [sym_ambiguous_expression] = STATE(20), + [sym_current_changed_expression] = STATE(20), + [sym_locked_expression] = STATE(20), + [sym_input_expression] = STATE(20), + [sym_additive_expression] = STATE(24), + [sym_multiplicative_expression] = STATE(24), + [sym_comparison_expression] = STATE(24), + [sym__binary_expression] = STATE(20), [sym_include] = STATE(289), - [sym_function_call] = STATE(13), - [sym_ternary_expression] = STATE(13), - [sym_new_expression] = STATE(13), - [sym_object_access] = STATE(38), - [sym_where_clause] = STATE(2166), - [sym_query_tuning] = STATE(2166), - [sym_can_find_expression] = STATE(13), - [sym_of] = STATE(2166), - [sym__using_first] = STATE(1944), - [sym_accumulate_expression] = STATE(13), - [sym_available_expression] = STATE(13), - [sym__expression] = STATE(603), - [aux_sym_can_find_expression_repeat2] = STATE(1899), - [sym_identifier] = ACTIONS(353), + [sym_function_call] = STATE(20), + [sym_ternary_expression] = STATE(20), + [sym_new_expression] = STATE(20), + [sym_object_access] = STATE(29), + [sym_where_clause] = STATE(2222), + [sym_query_tuning] = STATE(2222), + [sym_can_find_expression] = STATE(20), + [sym_of] = STATE(2222), + [sym__using_first] = STATE(1960), + [sym_accumulate_expression] = STATE(20), + [sym_available_expression] = STATE(20), + [sym__expression] = STATE(605), + [aux_sym_qualified_name_repeat1] = STATE(730), + [aux_sym_can_find_expression_repeat2] = STATE(1895), + [sym_identifier] = ACTIONS(337), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_LBRACE] = ACTIONS(355), - [sym_null_expression] = ACTIONS(357), - [aux_sym_boolean_literal_token1] = ACTIONS(359), - [aux_sym_boolean_literal_token2] = ACTIONS(359), - [aux_sym_boolean_literal_token3] = ACTIONS(359), - [aux_sym_boolean_literal_token4] = ACTIONS(359), - [sym__integer_literal] = ACTIONS(361), - [anon_sym_DQUOTE] = ACTIONS(363), - [anon_sym_SQUOTE] = ACTIONS(365), - [anon_sym_LPAREN] = ACTIONS(367), - [anon_sym_RPAREN] = ACTIONS(625), - [aux_sym_unary_expression_token1] = ACTIONS(371), - [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(389), - [aux_sym_of_token1] = ACTIONS(443), - [aux_sym_accumulate_expression_token1] = ACTIONS(445), - [aux_sym_available_expression_token1] = ACTIONS(395), - [aux_sym_available_expression_token2] = ACTIONS(395), + [anon_sym_LBRACE] = ACTIONS(339), + [sym_null_expression] = ACTIONS(341), + [aux_sym_boolean_literal_token1] = ACTIONS(343), + [aux_sym_boolean_literal_token2] = ACTIONS(343), + [aux_sym_boolean_literal_token3] = ACTIONS(343), + [aux_sym_boolean_literal_token4] = ACTIONS(343), + [sym__integer_literal] = ACTIONS(345), + [anon_sym_DQUOTE] = ACTIONS(347), + [anon_sym_SQUOTE] = ACTIONS(349), + [anon_sym_LPAREN] = ACTIONS(351), + [anon_sym_RPAREN] = ACTIONS(633), + [aux_sym_unary_expression_token1] = ACTIONS(355), + [aux_sym_unary_expression_token2] = ACTIONS(423), + [aux_sym_ambiguous_expression_token1] = ACTIONS(425), + [aux_sym_current_changed_expression_token1] = ACTIONS(427), + [aux_sym_locked_expression_token1] = ACTIONS(429), + [aux_sym_input_expression_token1] = ACTIONS(431), + [aux_sym_scope_tuning_token1] = ACTIONS(433), + [aux_sym_function_call_token1] = ACTIONS(435), + [aux_sym_if_statement_token1] = ACTIONS(437), + [aux_sym_using_statement_token1] = ACTIONS(439), + [aux_sym_where_clause_token1] = ACTIONS(441), + [aux_sym_query_tuning_token1] = ACTIONS(435), + [aux_sym_query_tuning_token2] = ACTIONS(435), + [aux_sym_query_tuning_token3] = ACTIONS(435), + [aux_sym_query_tuning_token4] = ACTIONS(435), + [aux_sym_query_tuning_token5] = ACTIONS(443), + [aux_sym_can_find_expression_token1] = ACTIONS(373), + [aux_sym_of_token1] = ACTIONS(445), + [aux_sym_accumulate_expression_token1] = ACTIONS(447), + [aux_sym_available_expression_token1] = ACTIONS(379), + [aux_sym_available_expression_token2] = ACTIONS(379), + [sym__namedot] = ACTIONS(449), }, [290] = { [sym_comment] = STATE(290), - [sym_constant] = STATE(13), - [sym_qualified_name] = STATE(13), - [sym_boolean_literal] = STATE(13), - [sym__decimal_literal] = STATE(36), - [sym_number_literal] = STATE(13), - [sym__string_literal] = STATE(13), - [sym_double_quoted_string] = STATE(21), - [sym_single_quoted_string] = STATE(21), - [sym_parenthesized_expression] = STATE(13), - [sym_logical_expression] = STATE(37), - [sym_unary_expression] = STATE(13), - [sym_ambiguous_expression] = STATE(13), - [sym_current_changed_expression] = STATE(13), - [sym_locked_expression] = STATE(13), - [sym_input_expression] = STATE(13), - [sym_additive_expression] = STATE(37), - [sym_multiplicative_expression] = STATE(37), - [sym_comparison_expression] = STATE(37), - [sym__binary_expression] = STATE(13), + [sym_constant] = STATE(20), + [sym_qualified_name] = STATE(20), + [sym_boolean_literal] = STATE(20), + [sym__decimal_literal] = STATE(23), + [sym_number_literal] = STATE(20), + [sym__string_literal] = STATE(20), + [sym_double_quoted_string] = STATE(18), + [sym_single_quoted_string] = STATE(18), + [sym_parenthesized_expression] = STATE(20), + [sym_logical_expression] = STATE(24), + [sym_unary_expression] = STATE(20), + [sym_ambiguous_expression] = STATE(20), + [sym_current_changed_expression] = STATE(20), + [sym_locked_expression] = STATE(20), + [sym_input_expression] = STATE(20), + [sym_additive_expression] = STATE(24), + [sym_multiplicative_expression] = STATE(24), + [sym_comparison_expression] = STATE(24), + [sym__binary_expression] = STATE(20), [sym_include] = STATE(290), - [sym_function_call] = STATE(13), - [sym_ternary_expression] = STATE(13), - [sym_new_expression] = STATE(13), - [sym_object_access] = STATE(38), - [sym_where_clause] = STATE(2166), - [sym_query_tuning] = STATE(2166), - [sym_can_find_expression] = STATE(13), - [sym_of] = STATE(2166), - [sym__using_first] = STATE(1944), - [sym_accumulate_expression] = STATE(13), - [sym_available_expression] = STATE(13), - [sym__expression] = STATE(601), + [sym_function_call] = STATE(20), + [sym_ternary_expression] = STATE(20), + [sym_new_expression] = STATE(20), + [sym_object_access] = STATE(29), + [sym_where_clause] = STATE(2222), + [sym_query_tuning] = STATE(2222), + [sym_can_find_expression] = STATE(20), + [sym_of] = STATE(2222), + [sym__using_first] = STATE(1960), + [sym_accumulate_expression] = STATE(20), + [sym_available_expression] = STATE(20), + [sym__expression] = STATE(599), [aux_sym_can_find_expression_repeat2] = STATE(1889), - [sym_identifier] = ACTIONS(353), + [sym_identifier] = ACTIONS(337), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_LBRACE] = ACTIONS(355), - [sym_null_expression] = ACTIONS(357), - [aux_sym_boolean_literal_token1] = ACTIONS(359), - [aux_sym_boolean_literal_token2] = ACTIONS(359), - [aux_sym_boolean_literal_token3] = ACTIONS(359), - [aux_sym_boolean_literal_token4] = ACTIONS(359), - [sym__integer_literal] = ACTIONS(361), - [anon_sym_DQUOTE] = ACTIONS(363), - [anon_sym_SQUOTE] = ACTIONS(365), - [anon_sym_LPAREN] = ACTIONS(367), - [anon_sym_RPAREN] = ACTIONS(527), - [aux_sym_unary_expression_token1] = ACTIONS(371), - [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(389), - [aux_sym_of_token1] = ACTIONS(443), - [aux_sym_accumulate_expression_token1] = ACTIONS(445), - [aux_sym_available_expression_token1] = ACTIONS(395), - [aux_sym_available_expression_token2] = ACTIONS(395), + [anon_sym_LBRACE] = ACTIONS(339), + [sym_null_expression] = ACTIONS(341), + [aux_sym_boolean_literal_token1] = ACTIONS(343), + [aux_sym_boolean_literal_token2] = ACTIONS(343), + [aux_sym_boolean_literal_token3] = ACTIONS(343), + [aux_sym_boolean_literal_token4] = ACTIONS(343), + [sym__integer_literal] = ACTIONS(345), + [anon_sym_DQUOTE] = ACTIONS(347), + [anon_sym_SQUOTE] = ACTIONS(349), + [anon_sym_LPAREN] = ACTIONS(351), + [anon_sym_RPAREN] = ACTIONS(631), + [aux_sym_unary_expression_token1] = ACTIONS(355), + [aux_sym_unary_expression_token2] = ACTIONS(423), + [aux_sym_ambiguous_expression_token1] = ACTIONS(425), + [aux_sym_current_changed_expression_token1] = ACTIONS(427), + [aux_sym_locked_expression_token1] = ACTIONS(429), + [aux_sym_input_expression_token1] = ACTIONS(431), + [aux_sym_scope_tuning_token1] = ACTIONS(433), + [aux_sym_function_call_token1] = ACTIONS(435), + [aux_sym_if_statement_token1] = ACTIONS(437), + [aux_sym_using_statement_token1] = ACTIONS(439), + [aux_sym_where_clause_token1] = ACTIONS(441), + [aux_sym_query_tuning_token1] = ACTIONS(435), + [aux_sym_query_tuning_token2] = ACTIONS(435), + [aux_sym_query_tuning_token3] = ACTIONS(435), + [aux_sym_query_tuning_token4] = ACTIONS(435), + [aux_sym_query_tuning_token5] = ACTIONS(443), + [aux_sym_can_find_expression_token1] = ACTIONS(373), + [aux_sym_of_token1] = ACTIONS(445), + [aux_sym_accumulate_expression_token1] = ACTIONS(447), + [aux_sym_available_expression_token1] = ACTIONS(379), + [aux_sym_available_expression_token2] = ACTIONS(379), }, [291] = { [sym_comment] = STATE(291), - [sym_constant] = STATE(13), - [sym_qualified_name] = STATE(13), - [sym_boolean_literal] = STATE(13), - [sym__decimal_literal] = STATE(36), - [sym_number_literal] = STATE(13), - [sym__string_literal] = STATE(13), - [sym_double_quoted_string] = STATE(21), - [sym_single_quoted_string] = STATE(21), - [sym_parenthesized_expression] = STATE(13), - [sym_logical_expression] = STATE(37), - [sym_unary_expression] = STATE(13), - [sym_ambiguous_expression] = STATE(13), - [sym_current_changed_expression] = STATE(13), - [sym_locked_expression] = STATE(13), - [sym_input_expression] = STATE(13), - [sym_additive_expression] = STATE(37), - [sym_multiplicative_expression] = STATE(37), - [sym_comparison_expression] = STATE(37), - [sym__binary_expression] = STATE(13), + [sym_constant] = STATE(20), + [sym_qualified_name] = STATE(20), + [sym_boolean_literal] = STATE(20), + [sym__decimal_literal] = STATE(23), + [sym_number_literal] = STATE(20), + [sym__string_literal] = STATE(20), + [sym_double_quoted_string] = STATE(18), + [sym_single_quoted_string] = STATE(18), + [sym_parenthesized_expression] = STATE(20), + [sym_logical_expression] = STATE(24), + [sym_unary_expression] = STATE(20), + [sym_ambiguous_expression] = STATE(20), + [sym_current_changed_expression] = STATE(20), + [sym_locked_expression] = STATE(20), + [sym_input_expression] = STATE(20), + [sym_additive_expression] = STATE(24), + [sym_multiplicative_expression] = STATE(24), + [sym_comparison_expression] = STATE(24), + [sym__binary_expression] = STATE(20), [sym_include] = STATE(291), - [sym_function_call] = STATE(13), - [sym_ternary_expression] = STATE(13), - [sym_new_expression] = STATE(13), - [sym_object_access] = STATE(38), - [sym_where_clause] = STATE(2166), - [sym_query_tuning] = STATE(2166), - [sym_can_find_expression] = STATE(13), - [sym_of] = STATE(2166), - [sym__using_first] = STATE(1944), - [sym_accumulate_expression] = STATE(13), - [sym_available_expression] = STATE(13), - [sym__expression] = STATE(607), - [aux_sym_can_find_expression_repeat2] = STATE(1881), - [sym_identifier] = ACTIONS(353), + [sym_function_call] = STATE(20), + [sym_ternary_expression] = STATE(20), + [sym_new_expression] = STATE(20), + [sym_object_access] = STATE(29), + [sym_where_clause] = STATE(2222), + [sym_query_tuning] = STATE(2222), + [sym_can_find_expression] = STATE(20), + [sym_of] = STATE(2222), + [sym__using_first] = STATE(1960), + [sym_accumulate_expression] = STATE(20), + [sym_available_expression] = STATE(20), + [sym__expression] = STATE(602), + [aux_sym_can_find_expression_repeat2] = STATE(1898), + [sym_identifier] = ACTIONS(337), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_LBRACE] = ACTIONS(355), - [sym_null_expression] = ACTIONS(357), - [aux_sym_boolean_literal_token1] = ACTIONS(359), - [aux_sym_boolean_literal_token2] = ACTIONS(359), - [aux_sym_boolean_literal_token3] = ACTIONS(359), - [aux_sym_boolean_literal_token4] = ACTIONS(359), - [sym__integer_literal] = ACTIONS(361), - [anon_sym_DQUOTE] = ACTIONS(363), - [anon_sym_SQUOTE] = ACTIONS(365), - [anon_sym_LPAREN] = ACTIONS(367), - [anon_sym_RPAREN] = ACTIONS(533), - [aux_sym_unary_expression_token1] = ACTIONS(371), - [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(389), - [aux_sym_of_token1] = ACTIONS(443), - [aux_sym_accumulate_expression_token1] = ACTIONS(445), - [aux_sym_available_expression_token1] = ACTIONS(395), - [aux_sym_available_expression_token2] = ACTIONS(395), + [anon_sym_LBRACE] = ACTIONS(339), + [sym_null_expression] = ACTIONS(341), + [aux_sym_boolean_literal_token1] = ACTIONS(343), + [aux_sym_boolean_literal_token2] = ACTIONS(343), + [aux_sym_boolean_literal_token3] = ACTIONS(343), + [aux_sym_boolean_literal_token4] = ACTIONS(343), + [sym__integer_literal] = ACTIONS(345), + [anon_sym_DQUOTE] = ACTIONS(347), + [anon_sym_SQUOTE] = ACTIONS(349), + [anon_sym_LPAREN] = ACTIONS(351), + [anon_sym_RPAREN] = ACTIONS(421), + [aux_sym_unary_expression_token1] = ACTIONS(355), + [aux_sym_unary_expression_token2] = ACTIONS(423), + [aux_sym_ambiguous_expression_token1] = ACTIONS(425), + [aux_sym_current_changed_expression_token1] = ACTIONS(427), + [aux_sym_locked_expression_token1] = ACTIONS(429), + [aux_sym_input_expression_token1] = ACTIONS(431), + [aux_sym_scope_tuning_token1] = ACTIONS(433), + [aux_sym_function_call_token1] = ACTIONS(435), + [aux_sym_if_statement_token1] = ACTIONS(437), + [aux_sym_using_statement_token1] = ACTIONS(439), + [aux_sym_where_clause_token1] = ACTIONS(441), + [aux_sym_query_tuning_token1] = ACTIONS(435), + [aux_sym_query_tuning_token2] = ACTIONS(435), + [aux_sym_query_tuning_token3] = ACTIONS(435), + [aux_sym_query_tuning_token4] = ACTIONS(435), + [aux_sym_query_tuning_token5] = ACTIONS(443), + [aux_sym_can_find_expression_token1] = ACTIONS(373), + [aux_sym_of_token1] = ACTIONS(445), + [aux_sym_accumulate_expression_token1] = ACTIONS(447), + [aux_sym_available_expression_token1] = ACTIONS(379), + [aux_sym_available_expression_token2] = ACTIONS(379), }, [292] = { [sym_comment] = STATE(292), - [sym_constant] = STATE(13), - [sym_qualified_name] = STATE(13), - [sym_boolean_literal] = STATE(13), - [sym__decimal_literal] = STATE(36), - [sym_number_literal] = STATE(13), - [sym__string_literal] = STATE(13), - [sym_double_quoted_string] = STATE(21), - [sym_single_quoted_string] = STATE(21), - [sym_parenthesized_expression] = STATE(13), - [sym_logical_expression] = STATE(37), - [sym_unary_expression] = STATE(13), - [sym_ambiguous_expression] = STATE(13), - [sym_current_changed_expression] = STATE(13), - [sym_locked_expression] = STATE(13), - [sym_input_expression] = STATE(13), - [sym_additive_expression] = STATE(37), - [sym_multiplicative_expression] = STATE(37), - [sym_comparison_expression] = STATE(37), - [sym__binary_expression] = STATE(13), + [sym_constant] = STATE(20), + [sym_qualified_name] = STATE(20), + [sym_boolean_literal] = STATE(20), + [sym__decimal_literal] = STATE(23), + [sym_number_literal] = STATE(20), + [sym__string_literal] = STATE(20), + [sym_double_quoted_string] = STATE(18), + [sym_single_quoted_string] = STATE(18), + [sym_parenthesized_expression] = STATE(20), + [sym_logical_expression] = STATE(24), + [sym_unary_expression] = STATE(20), + [sym_ambiguous_expression] = STATE(20), + [sym_current_changed_expression] = STATE(20), + [sym_locked_expression] = STATE(20), + [sym_input_expression] = STATE(20), + [sym_additive_expression] = STATE(24), + [sym_multiplicative_expression] = STATE(24), + [sym_comparison_expression] = STATE(24), + [sym__binary_expression] = STATE(20), [sym_include] = STATE(292), - [sym_function_call] = STATE(13), - [sym_ternary_expression] = STATE(13), - [sym_new_expression] = STATE(13), - [sym_object_access] = STATE(38), - [sym_where_clause] = STATE(2166), - [sym_query_tuning] = STATE(2166), - [sym_can_find_expression] = STATE(13), - [sym_of] = STATE(2166), - [sym__using_first] = STATE(1944), - [sym_accumulate_expression] = STATE(13), - [sym_available_expression] = STATE(13), - [sym__expression] = STATE(608), - [aux_sym_can_find_expression_repeat2] = STATE(1870), - [sym_identifier] = ACTIONS(353), + [sym_function_call] = STATE(20), + [sym_ternary_expression] = STATE(20), + [sym_new_expression] = STATE(20), + [sym_object_access] = STATE(29), + [sym_where_clause] = STATE(2222), + [sym_query_tuning] = STATE(2222), + [sym_can_find_expression] = STATE(20), + [sym_of] = STATE(2222), + [sym__using_first] = STATE(1960), + [sym_accumulate_expression] = STATE(20), + [sym_available_expression] = STATE(20), + [sym__expression] = STATE(614), + [aux_sym_can_find_expression_repeat2] = STATE(1919), + [sym_identifier] = ACTIONS(337), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_LBRACE] = ACTIONS(355), - [sym_null_expression] = ACTIONS(357), - [aux_sym_boolean_literal_token1] = ACTIONS(359), - [aux_sym_boolean_literal_token2] = ACTIONS(359), - [aux_sym_boolean_literal_token3] = ACTIONS(359), - [aux_sym_boolean_literal_token4] = ACTIONS(359), - [sym__integer_literal] = ACTIONS(361), - [anon_sym_DQUOTE] = ACTIONS(363), - [anon_sym_SQUOTE] = ACTIONS(365), - [anon_sym_LPAREN] = ACTIONS(367), - [anon_sym_RPAREN] = ACTIONS(623), - [aux_sym_unary_expression_token1] = ACTIONS(371), - [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(389), - [aux_sym_of_token1] = ACTIONS(443), - [aux_sym_accumulate_expression_token1] = ACTIONS(445), - [aux_sym_available_expression_token1] = ACTIONS(395), - [aux_sym_available_expression_token2] = ACTIONS(395), + [anon_sym_LBRACE] = ACTIONS(339), + [sym_null_expression] = ACTIONS(341), + [aux_sym_boolean_literal_token1] = ACTIONS(343), + [aux_sym_boolean_literal_token2] = ACTIONS(343), + [aux_sym_boolean_literal_token3] = ACTIONS(343), + [aux_sym_boolean_literal_token4] = ACTIONS(343), + [sym__integer_literal] = ACTIONS(345), + [anon_sym_DQUOTE] = ACTIONS(347), + [anon_sym_SQUOTE] = ACTIONS(349), + [anon_sym_LPAREN] = ACTIONS(351), + [anon_sym_RPAREN] = ACTIONS(625), + [aux_sym_unary_expression_token1] = ACTIONS(355), + [aux_sym_unary_expression_token2] = ACTIONS(423), + [aux_sym_ambiguous_expression_token1] = ACTIONS(425), + [aux_sym_current_changed_expression_token1] = ACTIONS(427), + [aux_sym_locked_expression_token1] = ACTIONS(429), + [aux_sym_input_expression_token1] = ACTIONS(431), + [aux_sym_scope_tuning_token1] = ACTIONS(433), + [aux_sym_function_call_token1] = ACTIONS(435), + [aux_sym_if_statement_token1] = ACTIONS(437), + [aux_sym_using_statement_token1] = ACTIONS(439), + [aux_sym_where_clause_token1] = ACTIONS(441), + [aux_sym_query_tuning_token1] = ACTIONS(435), + [aux_sym_query_tuning_token2] = ACTIONS(435), + [aux_sym_query_tuning_token3] = ACTIONS(435), + [aux_sym_query_tuning_token4] = ACTIONS(435), + [aux_sym_query_tuning_token5] = ACTIONS(443), + [aux_sym_can_find_expression_token1] = ACTIONS(373), + [aux_sym_of_token1] = ACTIONS(445), + [aux_sym_accumulate_expression_token1] = ACTIONS(447), + [aux_sym_available_expression_token1] = ACTIONS(379), + [aux_sym_available_expression_token2] = ACTIONS(379), }, [293] = { [sym_comment] = STATE(293), - [sym_constant] = STATE(13), - [sym_qualified_name] = STATE(13), - [sym_boolean_literal] = STATE(13), - [sym__decimal_literal] = STATE(36), - [sym_number_literal] = STATE(13), - [sym__string_literal] = STATE(13), - [sym_double_quoted_string] = STATE(21), - [sym_single_quoted_string] = STATE(21), - [sym_parenthesized_expression] = STATE(13), - [sym_logical_expression] = STATE(37), - [sym_unary_expression] = STATE(13), - [sym_ambiguous_expression] = STATE(13), - [sym_current_changed_expression] = STATE(13), - [sym_locked_expression] = STATE(13), - [sym_input_expression] = STATE(13), - [sym_additive_expression] = STATE(37), - [sym_multiplicative_expression] = STATE(37), - [sym_comparison_expression] = STATE(37), - [sym__binary_expression] = STATE(13), + [sym_constant] = STATE(20), + [sym_qualified_name] = STATE(20), + [sym_boolean_literal] = STATE(20), + [sym__decimal_literal] = STATE(23), + [sym_number_literal] = STATE(20), + [sym__string_literal] = STATE(20), + [sym_double_quoted_string] = STATE(18), + [sym_single_quoted_string] = STATE(18), + [sym_parenthesized_expression] = STATE(20), + [sym_logical_expression] = STATE(24), + [sym_unary_expression] = STATE(20), + [sym_ambiguous_expression] = STATE(20), + [sym_current_changed_expression] = STATE(20), + [sym_locked_expression] = STATE(20), + [sym_input_expression] = STATE(20), + [sym_additive_expression] = STATE(24), + [sym_multiplicative_expression] = STATE(24), + [sym_comparison_expression] = STATE(24), + [sym__binary_expression] = STATE(20), [sym_include] = STATE(293), - [sym_function_call] = STATE(13), - [sym_ternary_expression] = STATE(13), - [sym_new_expression] = STATE(13), - [sym_object_access] = STATE(38), - [sym_where_clause] = STATE(2166), - [sym_query_tuning] = STATE(2166), - [sym_can_find_expression] = STATE(13), - [sym_of] = STATE(2166), - [sym__using_first] = STATE(1944), - [sym_accumulate_expression] = STATE(13), - [sym_available_expression] = STATE(13), - [sym__expression] = STATE(597), - [aux_sym_can_find_expression_repeat2] = STATE(1880), - [sym_identifier] = ACTIONS(353), + [sym_function_call] = STATE(20), + [sym_ternary_expression] = STATE(20), + [sym_new_expression] = STATE(20), + [sym_object_access] = STATE(29), + [sym_where_clause] = STATE(2222), + [sym_query_tuning] = STATE(2222), + [sym_can_find_expression] = STATE(20), + [sym_of] = STATE(2222), + [sym__using_first] = STATE(1960), + [sym_accumulate_expression] = STATE(20), + [sym_available_expression] = STATE(20), + [sym__expression] = STATE(606), + [aux_sym_can_find_expression_repeat2] = STATE(1917), + [sym_identifier] = ACTIONS(337), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_LBRACE] = ACTIONS(355), - [sym_null_expression] = ACTIONS(357), - [aux_sym_boolean_literal_token1] = ACTIONS(359), - [aux_sym_boolean_literal_token2] = ACTIONS(359), - [aux_sym_boolean_literal_token3] = ACTIONS(359), - [aux_sym_boolean_literal_token4] = ACTIONS(359), - [sym__integer_literal] = ACTIONS(361), - [anon_sym_DQUOTE] = ACTIONS(363), - [anon_sym_SQUOTE] = ACTIONS(365), - [anon_sym_LPAREN] = ACTIONS(367), - [anon_sym_RPAREN] = ACTIONS(529), - [aux_sym_unary_expression_token1] = ACTIONS(371), - [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(389), - [aux_sym_of_token1] = ACTIONS(443), - [aux_sym_accumulate_expression_token1] = ACTIONS(445), - [aux_sym_available_expression_token1] = ACTIONS(395), - [aux_sym_available_expression_token2] = ACTIONS(395), + [anon_sym_LBRACE] = ACTIONS(339), + [sym_null_expression] = ACTIONS(341), + [aux_sym_boolean_literal_token1] = ACTIONS(343), + [aux_sym_boolean_literal_token2] = ACTIONS(343), + [aux_sym_boolean_literal_token3] = ACTIONS(343), + [aux_sym_boolean_literal_token4] = ACTIONS(343), + [sym__integer_literal] = ACTIONS(345), + [anon_sym_DQUOTE] = ACTIONS(347), + [anon_sym_SQUOTE] = ACTIONS(349), + [anon_sym_LPAREN] = ACTIONS(351), + [anon_sym_RPAREN] = ACTIONS(623), + [aux_sym_unary_expression_token1] = ACTIONS(355), + [aux_sym_unary_expression_token2] = ACTIONS(423), + [aux_sym_ambiguous_expression_token1] = ACTIONS(425), + [aux_sym_current_changed_expression_token1] = ACTIONS(427), + [aux_sym_locked_expression_token1] = ACTIONS(429), + [aux_sym_input_expression_token1] = ACTIONS(431), + [aux_sym_scope_tuning_token1] = ACTIONS(433), + [aux_sym_function_call_token1] = ACTIONS(435), + [aux_sym_if_statement_token1] = ACTIONS(437), + [aux_sym_using_statement_token1] = ACTIONS(439), + [aux_sym_where_clause_token1] = ACTIONS(441), + [aux_sym_query_tuning_token1] = ACTIONS(435), + [aux_sym_query_tuning_token2] = ACTIONS(435), + [aux_sym_query_tuning_token3] = ACTIONS(435), + [aux_sym_query_tuning_token4] = ACTIONS(435), + [aux_sym_query_tuning_token5] = ACTIONS(443), + [aux_sym_can_find_expression_token1] = ACTIONS(373), + [aux_sym_of_token1] = ACTIONS(445), + [aux_sym_accumulate_expression_token1] = ACTIONS(447), + [aux_sym_available_expression_token1] = ACTIONS(379), + [aux_sym_available_expression_token2] = ACTIONS(379), }, [294] = { [sym_comment] = STATE(294), - [sym_constant] = STATE(13), - [sym_qualified_name] = STATE(13), - [sym_boolean_literal] = STATE(13), - [sym__decimal_literal] = STATE(36), - [sym_number_literal] = STATE(13), - [sym__string_literal] = STATE(13), - [sym_double_quoted_string] = STATE(21), - [sym_single_quoted_string] = STATE(21), - [sym_parenthesized_expression] = STATE(13), - [sym_logical_expression] = STATE(37), - [sym_unary_expression] = STATE(13), - [sym_ambiguous_expression] = STATE(13), - [sym_current_changed_expression] = STATE(13), - [sym_locked_expression] = STATE(13), - [sym_input_expression] = STATE(13), - [sym_additive_expression] = STATE(37), - [sym_multiplicative_expression] = STATE(37), - [sym_comparison_expression] = STATE(37), - [sym__binary_expression] = STATE(13), + [sym_constant] = STATE(20), + [sym_qualified_name] = STATE(20), + [sym_boolean_literal] = STATE(20), + [sym__decimal_literal] = STATE(23), + [sym_number_literal] = STATE(20), + [sym__string_literal] = STATE(20), + [sym_double_quoted_string] = STATE(18), + [sym_single_quoted_string] = STATE(18), + [sym_parenthesized_expression] = STATE(20), + [sym_logical_expression] = STATE(24), + [sym_unary_expression] = STATE(20), + [sym_ambiguous_expression] = STATE(20), + [sym_current_changed_expression] = STATE(20), + [sym_locked_expression] = STATE(20), + [sym_input_expression] = STATE(20), + [sym_additive_expression] = STATE(24), + [sym_multiplicative_expression] = STATE(24), + [sym_comparison_expression] = STATE(24), + [sym__binary_expression] = STATE(20), [sym_include] = STATE(294), - [sym_function_call] = STATE(13), - [sym_ternary_expression] = STATE(13), - [sym_new_expression] = STATE(13), - [sym_object_access] = STATE(38), - [sym_where_clause] = STATE(2166), - [sym_query_tuning] = STATE(2166), - [sym_can_find_expression] = STATE(13), - [sym_of] = STATE(2166), - [sym__using_first] = STATE(1944), - [sym_accumulate_expression] = STATE(13), - [sym_available_expression] = STATE(13), - [sym__expression] = STATE(606), - [aux_sym_can_find_expression_repeat2] = STATE(1886), - [sym_identifier] = ACTIONS(353), + [sym_function_call] = STATE(20), + [sym_ternary_expression] = STATE(20), + [sym_new_expression] = STATE(20), + [sym_object_access] = STATE(29), + [sym_where_clause] = STATE(2222), + [sym_query_tuning] = STATE(2222), + [sym_can_find_expression] = STATE(20), + [sym_of] = STATE(2222), + [sym__using_first] = STATE(1960), + [sym_accumulate_expression] = STATE(20), + [sym_available_expression] = STATE(20), + [sym__expression] = STATE(609), + [aux_sym_can_find_expression_repeat2] = STATE(1882), + [sym_identifier] = ACTIONS(337), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_LBRACE] = ACTIONS(355), - [sym_null_expression] = ACTIONS(357), - [aux_sym_boolean_literal_token1] = ACTIONS(359), - [aux_sym_boolean_literal_token2] = ACTIONS(359), - [aux_sym_boolean_literal_token3] = ACTIONS(359), - [aux_sym_boolean_literal_token4] = ACTIONS(359), - [sym__integer_literal] = ACTIONS(361), - [anon_sym_DQUOTE] = ACTIONS(363), - [anon_sym_SQUOTE] = ACTIONS(365), - [anon_sym_LPAREN] = ACTIONS(367), - [anon_sym_RPAREN] = ACTIONS(537), - [aux_sym_unary_expression_token1] = ACTIONS(371), - [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(389), - [aux_sym_of_token1] = ACTIONS(443), - [aux_sym_accumulate_expression_token1] = ACTIONS(445), - [aux_sym_available_expression_token1] = ACTIONS(395), - [aux_sym_available_expression_token2] = ACTIONS(395), + [anon_sym_LBRACE] = ACTIONS(339), + [sym_null_expression] = ACTIONS(341), + [aux_sym_boolean_literal_token1] = ACTIONS(343), + [aux_sym_boolean_literal_token2] = ACTIONS(343), + [aux_sym_boolean_literal_token3] = ACTIONS(343), + [aux_sym_boolean_literal_token4] = ACTIONS(343), + [sym__integer_literal] = ACTIONS(345), + [anon_sym_DQUOTE] = ACTIONS(347), + [anon_sym_SQUOTE] = ACTIONS(349), + [anon_sym_LPAREN] = ACTIONS(351), + [anon_sym_RPAREN] = ACTIONS(611), + [aux_sym_unary_expression_token1] = ACTIONS(355), + [aux_sym_unary_expression_token2] = ACTIONS(423), + [aux_sym_ambiguous_expression_token1] = ACTIONS(425), + [aux_sym_current_changed_expression_token1] = ACTIONS(427), + [aux_sym_locked_expression_token1] = ACTIONS(429), + [aux_sym_input_expression_token1] = ACTIONS(431), + [aux_sym_scope_tuning_token1] = ACTIONS(433), + [aux_sym_function_call_token1] = ACTIONS(435), + [aux_sym_if_statement_token1] = ACTIONS(437), + [aux_sym_using_statement_token1] = ACTIONS(439), + [aux_sym_where_clause_token1] = ACTIONS(441), + [aux_sym_query_tuning_token1] = ACTIONS(435), + [aux_sym_query_tuning_token2] = ACTIONS(435), + [aux_sym_query_tuning_token3] = ACTIONS(435), + [aux_sym_query_tuning_token4] = ACTIONS(435), + [aux_sym_query_tuning_token5] = ACTIONS(443), + [aux_sym_can_find_expression_token1] = ACTIONS(373), + [aux_sym_of_token1] = ACTIONS(445), + [aux_sym_accumulate_expression_token1] = ACTIONS(447), + [aux_sym_available_expression_token1] = ACTIONS(379), + [aux_sym_available_expression_token2] = ACTIONS(379), }, [295] = { [sym_comment] = STATE(295), - [sym_constant] = STATE(13), - [sym_qualified_name] = STATE(13), - [sym_boolean_literal] = STATE(13), - [sym__decimal_literal] = STATE(36), - [sym_number_literal] = STATE(13), - [sym__string_literal] = STATE(13), - [sym_double_quoted_string] = STATE(21), - [sym_single_quoted_string] = STATE(21), - [sym_parenthesized_expression] = STATE(13), - [sym_logical_expression] = STATE(37), - [sym_unary_expression] = STATE(13), - [sym_ambiguous_expression] = STATE(13), - [sym_current_changed_expression] = STATE(13), - [sym_locked_expression] = STATE(13), - [sym_input_expression] = STATE(13), - [sym_additive_expression] = STATE(37), - [sym_multiplicative_expression] = STATE(37), - [sym_comparison_expression] = STATE(37), - [sym__binary_expression] = STATE(13), + [sym_constant] = STATE(20), + [sym_qualified_name] = STATE(20), + [sym_boolean_literal] = STATE(20), + [sym__decimal_literal] = STATE(23), + [sym_number_literal] = STATE(20), + [sym__string_literal] = STATE(20), + [sym_double_quoted_string] = STATE(18), + [sym_single_quoted_string] = STATE(18), + [sym_parenthesized_expression] = STATE(20), + [sym_logical_expression] = STATE(24), + [sym_unary_expression] = STATE(20), + [sym_ambiguous_expression] = STATE(20), + [sym_current_changed_expression] = STATE(20), + [sym_locked_expression] = STATE(20), + [sym_input_expression] = STATE(20), + [sym_additive_expression] = STATE(24), + [sym_multiplicative_expression] = STATE(24), + [sym_comparison_expression] = STATE(24), + [sym__binary_expression] = STATE(20), [sym_include] = STATE(295), - [sym_function_call] = STATE(13), - [sym_ternary_expression] = STATE(13), - [sym_new_expression] = STATE(13), - [sym_object_access] = STATE(38), - [sym_where_clause] = STATE(2166), - [sym_query_tuning] = STATE(2166), - [sym_can_find_expression] = STATE(13), - [sym_of] = STATE(2166), - [sym__using_first] = STATE(1944), - [sym_accumulate_expression] = STATE(13), - [sym_available_expression] = STATE(13), - [sym__expression] = STATE(596), - [aux_sym_can_find_expression_repeat2] = STATE(1900), - [sym_identifier] = ACTIONS(353), + [sym_function_call] = STATE(20), + [sym_ternary_expression] = STATE(20), + [sym_new_expression] = STATE(20), + [sym_object_access] = STATE(29), + [sym_where_clause] = STATE(2222), + [sym_query_tuning] = STATE(2222), + [sym_can_find_expression] = STATE(20), + [sym_of] = STATE(2222), + [sym__using_first] = STATE(1960), + [sym_accumulate_expression] = STATE(20), + [sym_available_expression] = STATE(20), + [sym__expression] = STATE(600), + [aux_sym_can_find_expression_repeat2] = STATE(1910), + [sym_identifier] = ACTIONS(337), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_LBRACE] = ACTIONS(355), - [sym_null_expression] = ACTIONS(357), - [aux_sym_boolean_literal_token1] = ACTIONS(359), - [aux_sym_boolean_literal_token2] = ACTIONS(359), - [aux_sym_boolean_literal_token3] = ACTIONS(359), - [aux_sym_boolean_literal_token4] = ACTIONS(359), - [sym__integer_literal] = ACTIONS(361), - [anon_sym_DQUOTE] = ACTIONS(363), - [anon_sym_SQUOTE] = ACTIONS(365), - [anon_sym_LPAREN] = ACTIONS(367), - [anon_sym_RPAREN] = ACTIONS(535), - [aux_sym_unary_expression_token1] = ACTIONS(371), - [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(389), - [aux_sym_of_token1] = ACTIONS(443), - [aux_sym_accumulate_expression_token1] = ACTIONS(445), - [aux_sym_available_expression_token1] = ACTIONS(395), - [aux_sym_available_expression_token2] = ACTIONS(395), + [anon_sym_LBRACE] = ACTIONS(339), + [sym_null_expression] = ACTIONS(341), + [aux_sym_boolean_literal_token1] = ACTIONS(343), + [aux_sym_boolean_literal_token2] = ACTIONS(343), + [aux_sym_boolean_literal_token3] = ACTIONS(343), + [aux_sym_boolean_literal_token4] = ACTIONS(343), + [sym__integer_literal] = ACTIONS(345), + [anon_sym_DQUOTE] = ACTIONS(347), + [anon_sym_SQUOTE] = ACTIONS(349), + [anon_sym_LPAREN] = ACTIONS(351), + [anon_sym_RPAREN] = ACTIONS(607), + [aux_sym_unary_expression_token1] = ACTIONS(355), + [aux_sym_unary_expression_token2] = ACTIONS(423), + [aux_sym_ambiguous_expression_token1] = ACTIONS(425), + [aux_sym_current_changed_expression_token1] = ACTIONS(427), + [aux_sym_locked_expression_token1] = ACTIONS(429), + [aux_sym_input_expression_token1] = ACTIONS(431), + [aux_sym_scope_tuning_token1] = ACTIONS(433), + [aux_sym_function_call_token1] = ACTIONS(435), + [aux_sym_if_statement_token1] = ACTIONS(437), + [aux_sym_using_statement_token1] = ACTIONS(439), + [aux_sym_where_clause_token1] = ACTIONS(441), + [aux_sym_query_tuning_token1] = ACTIONS(435), + [aux_sym_query_tuning_token2] = ACTIONS(435), + [aux_sym_query_tuning_token3] = ACTIONS(435), + [aux_sym_query_tuning_token4] = ACTIONS(435), + [aux_sym_query_tuning_token5] = ACTIONS(443), + [aux_sym_can_find_expression_token1] = ACTIONS(373), + [aux_sym_of_token1] = ACTIONS(445), + [aux_sym_accumulate_expression_token1] = ACTIONS(447), + [aux_sym_available_expression_token1] = ACTIONS(379), + [aux_sym_available_expression_token2] = ACTIONS(379), }, [296] = { [sym_comment] = STATE(296), - [sym_constant] = STATE(13), - [sym_qualified_name] = STATE(13), - [sym_boolean_literal] = STATE(13), - [sym__decimal_literal] = STATE(36), - [sym_number_literal] = STATE(13), - [sym__string_literal] = STATE(13), - [sym_double_quoted_string] = STATE(21), - [sym_single_quoted_string] = STATE(21), - [sym_parenthesized_expression] = STATE(13), - [sym_logical_expression] = STATE(37), - [sym_unary_expression] = STATE(13), - [sym_ambiguous_expression] = STATE(13), - [sym_current_changed_expression] = STATE(13), - [sym_locked_expression] = STATE(13), - [sym_input_expression] = STATE(13), - [sym_additive_expression] = STATE(37), - [sym_multiplicative_expression] = STATE(37), - [sym_comparison_expression] = STATE(37), - [sym__binary_expression] = STATE(13), + [sym_constant] = STATE(20), + [sym_qualified_name] = STATE(20), + [sym_boolean_literal] = STATE(20), + [sym__decimal_literal] = STATE(23), + [sym_number_literal] = STATE(20), + [sym__string_literal] = STATE(20), + [sym_double_quoted_string] = STATE(18), + [sym_single_quoted_string] = STATE(18), + [sym_parenthesized_expression] = STATE(20), + [sym_logical_expression] = STATE(24), + [sym_unary_expression] = STATE(20), + [sym_ambiguous_expression] = STATE(20), + [sym_current_changed_expression] = STATE(20), + [sym_locked_expression] = STATE(20), + [sym_input_expression] = STATE(20), + [sym_additive_expression] = STATE(24), + [sym_multiplicative_expression] = STATE(24), + [sym_comparison_expression] = STATE(24), + [sym__binary_expression] = STATE(20), [sym_include] = STATE(296), - [sym_function_call] = STATE(13), - [sym_ternary_expression] = STATE(13), - [sym_new_expression] = STATE(13), - [sym_object_access] = STATE(38), - [sym_where_clause] = STATE(2166), - [sym_query_tuning] = STATE(2166), - [sym_can_find_expression] = STATE(13), - [sym_of] = STATE(2166), - [sym__using_first] = STATE(1944), - [sym_accumulate_expression] = STATE(13), - [sym_available_expression] = STATE(13), - [sym__expression] = STATE(600), - [aux_sym_can_find_expression_repeat2] = STATE(1884), - [sym_identifier] = ACTIONS(353), + [sym_function_call] = STATE(20), + [sym_ternary_expression] = STATE(20), + [sym_new_expression] = STATE(20), + [sym_object_access] = STATE(29), + [sym_where_clause] = STATE(2222), + [sym_query_tuning] = STATE(2222), + [sym_can_find_expression] = STATE(20), + [sym_of] = STATE(2222), + [sym__using_first] = STATE(1960), + [sym_accumulate_expression] = STATE(20), + [sym_available_expression] = STATE(20), + [sym__expression] = STATE(605), + [aux_sym_can_find_expression_repeat2] = STATE(1895), + [sym_identifier] = ACTIONS(337), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_LBRACE] = ACTIONS(355), - [sym_null_expression] = ACTIONS(357), - [aux_sym_boolean_literal_token1] = ACTIONS(359), - [aux_sym_boolean_literal_token2] = ACTIONS(359), - [aux_sym_boolean_literal_token3] = ACTIONS(359), - [aux_sym_boolean_literal_token4] = ACTIONS(359), - [sym__integer_literal] = ACTIONS(361), - [anon_sym_DQUOTE] = ACTIONS(363), - [anon_sym_SQUOTE] = ACTIONS(365), - [anon_sym_LPAREN] = ACTIONS(367), - [anon_sym_RPAREN] = ACTIONS(617), - [aux_sym_unary_expression_token1] = ACTIONS(371), - [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(389), - [aux_sym_of_token1] = ACTIONS(443), - [aux_sym_accumulate_expression_token1] = ACTIONS(445), - [aux_sym_available_expression_token1] = ACTIONS(395), - [aux_sym_available_expression_token2] = ACTIONS(395), + [anon_sym_LBRACE] = ACTIONS(339), + [sym_null_expression] = ACTIONS(341), + [aux_sym_boolean_literal_token1] = ACTIONS(343), + [aux_sym_boolean_literal_token2] = ACTIONS(343), + [aux_sym_boolean_literal_token3] = ACTIONS(343), + [aux_sym_boolean_literal_token4] = ACTIONS(343), + [sym__integer_literal] = ACTIONS(345), + [anon_sym_DQUOTE] = ACTIONS(347), + [anon_sym_SQUOTE] = ACTIONS(349), + [anon_sym_LPAREN] = ACTIONS(351), + [anon_sym_RPAREN] = ACTIONS(633), + [aux_sym_unary_expression_token1] = ACTIONS(355), + [aux_sym_unary_expression_token2] = ACTIONS(423), + [aux_sym_ambiguous_expression_token1] = ACTIONS(425), + [aux_sym_current_changed_expression_token1] = ACTIONS(427), + [aux_sym_locked_expression_token1] = ACTIONS(429), + [aux_sym_input_expression_token1] = ACTIONS(431), + [aux_sym_scope_tuning_token1] = ACTIONS(433), + [aux_sym_function_call_token1] = ACTIONS(435), + [aux_sym_if_statement_token1] = ACTIONS(437), + [aux_sym_using_statement_token1] = ACTIONS(439), + [aux_sym_where_clause_token1] = ACTIONS(441), + [aux_sym_query_tuning_token1] = ACTIONS(435), + [aux_sym_query_tuning_token2] = ACTIONS(435), + [aux_sym_query_tuning_token3] = ACTIONS(435), + [aux_sym_query_tuning_token4] = ACTIONS(435), + [aux_sym_query_tuning_token5] = ACTIONS(443), + [aux_sym_can_find_expression_token1] = ACTIONS(373), + [aux_sym_of_token1] = ACTIONS(445), + [aux_sym_accumulate_expression_token1] = ACTIONS(447), + [aux_sym_available_expression_token1] = ACTIONS(379), + [aux_sym_available_expression_token2] = ACTIONS(379), }, [297] = { [sym_comment] = STATE(297), - [sym_constant] = STATE(13), - [sym_qualified_name] = STATE(13), - [sym_boolean_literal] = STATE(13), - [sym__decimal_literal] = STATE(36), - [sym_number_literal] = STATE(13), - [sym__string_literal] = STATE(13), - [sym_double_quoted_string] = STATE(21), - [sym_single_quoted_string] = STATE(21), - [sym_parenthesized_expression] = STATE(13), - [sym_logical_expression] = STATE(37), - [sym_unary_expression] = STATE(13), - [sym_ambiguous_expression] = STATE(13), - [sym_current_changed_expression] = STATE(13), - [sym_locked_expression] = STATE(13), - [sym_input_expression] = STATE(13), - [sym_additive_expression] = STATE(37), - [sym_multiplicative_expression] = STATE(37), - [sym_comparison_expression] = STATE(37), - [sym__binary_expression] = STATE(13), + [sym_constant] = STATE(20), + [sym_qualified_name] = STATE(20), + [sym_boolean_literal] = STATE(20), + [sym__decimal_literal] = STATE(23), + [sym_number_literal] = STATE(20), + [sym__string_literal] = STATE(20), + [sym_double_quoted_string] = STATE(18), + [sym_single_quoted_string] = STATE(18), + [sym_parenthesized_expression] = STATE(20), + [sym_logical_expression] = STATE(24), + [sym_unary_expression] = STATE(20), + [sym_ambiguous_expression] = STATE(20), + [sym_current_changed_expression] = STATE(20), + [sym_locked_expression] = STATE(20), + [sym_input_expression] = STATE(20), + [sym_additive_expression] = STATE(24), + [sym_multiplicative_expression] = STATE(24), + [sym_comparison_expression] = STATE(24), + [sym__binary_expression] = STATE(20), [sym_include] = STATE(297), - [sym_function_call] = STATE(13), - [sym_ternary_expression] = STATE(13), - [sym_new_expression] = STATE(13), - [sym_object_access] = STATE(38), - [sym_where_clause] = STATE(2166), - [sym_query_tuning] = STATE(2166), - [sym_can_find_expression] = STATE(13), - [sym_of] = STATE(2166), - [sym__using_first] = STATE(1944), - [sym_accumulate_expression] = STATE(13), - [sym_available_expression] = STATE(13), - [sym__expression] = STATE(595), - [aux_sym_can_find_expression_repeat2] = STATE(1875), - [sym_identifier] = ACTIONS(353), + [sym_function_call] = STATE(20), + [sym_ternary_expression] = STATE(20), + [sym_new_expression] = STATE(20), + [sym_object_access] = STATE(29), + [sym_where_clause] = STATE(2222), + [sym_query_tuning] = STATE(2222), + [sym_can_find_expression] = STATE(20), + [sym_of] = STATE(2222), + [sym__using_first] = STATE(1960), + [sym_accumulate_expression] = STATE(20), + [sym_available_expression] = STATE(20), + [sym__expression] = STATE(603), + [aux_sym_can_find_expression_repeat2] = STATE(1915), + [sym_identifier] = ACTIONS(337), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_LBRACE] = ACTIONS(355), - [sym_null_expression] = ACTIONS(357), - [aux_sym_boolean_literal_token1] = ACTIONS(359), - [aux_sym_boolean_literal_token2] = ACTIONS(359), - [aux_sym_boolean_literal_token3] = ACTIONS(359), - [aux_sym_boolean_literal_token4] = ACTIONS(359), - [sym__integer_literal] = ACTIONS(361), - [anon_sym_DQUOTE] = ACTIONS(363), - [anon_sym_SQUOTE] = ACTIONS(365), - [anon_sym_LPAREN] = ACTIONS(367), - [anon_sym_RPAREN] = ACTIONS(531), - [aux_sym_unary_expression_token1] = ACTIONS(371), - [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(389), - [aux_sym_of_token1] = ACTIONS(443), - [aux_sym_accumulate_expression_token1] = ACTIONS(445), - [aux_sym_available_expression_token1] = ACTIONS(395), - [aux_sym_available_expression_token2] = ACTIONS(395), + [anon_sym_LBRACE] = ACTIONS(339), + [sym_null_expression] = ACTIONS(341), + [aux_sym_boolean_literal_token1] = ACTIONS(343), + [aux_sym_boolean_literal_token2] = ACTIONS(343), + [aux_sym_boolean_literal_token3] = ACTIONS(343), + [aux_sym_boolean_literal_token4] = ACTIONS(343), + [sym__integer_literal] = ACTIONS(345), + [anon_sym_DQUOTE] = ACTIONS(347), + [anon_sym_SQUOTE] = ACTIONS(349), + [anon_sym_LPAREN] = ACTIONS(351), + [anon_sym_RPAREN] = ACTIONS(617), + [aux_sym_unary_expression_token1] = ACTIONS(355), + [aux_sym_unary_expression_token2] = ACTIONS(423), + [aux_sym_ambiguous_expression_token1] = ACTIONS(425), + [aux_sym_current_changed_expression_token1] = ACTIONS(427), + [aux_sym_locked_expression_token1] = ACTIONS(429), + [aux_sym_input_expression_token1] = ACTIONS(431), + [aux_sym_scope_tuning_token1] = ACTIONS(433), + [aux_sym_function_call_token1] = ACTIONS(435), + [aux_sym_if_statement_token1] = ACTIONS(437), + [aux_sym_using_statement_token1] = ACTIONS(439), + [aux_sym_where_clause_token1] = ACTIONS(441), + [aux_sym_query_tuning_token1] = ACTIONS(435), + [aux_sym_query_tuning_token2] = ACTIONS(435), + [aux_sym_query_tuning_token3] = ACTIONS(435), + [aux_sym_query_tuning_token4] = ACTIONS(435), + [aux_sym_query_tuning_token5] = ACTIONS(443), + [aux_sym_can_find_expression_token1] = ACTIONS(373), + [aux_sym_of_token1] = ACTIONS(445), + [aux_sym_accumulate_expression_token1] = ACTIONS(447), + [aux_sym_available_expression_token1] = ACTIONS(379), + [aux_sym_available_expression_token2] = ACTIONS(379), }, [298] = { [sym_comment] = STATE(298), - [sym_constant] = STATE(13), - [sym_qualified_name] = STATE(13), - [sym_boolean_literal] = STATE(13), - [sym__decimal_literal] = STATE(36), - [sym_number_literal] = STATE(13), - [sym__string_literal] = STATE(13), - [sym_double_quoted_string] = STATE(21), - [sym_single_quoted_string] = STATE(21), - [sym_parenthesized_expression] = STATE(13), - [sym_logical_expression] = STATE(37), - [sym_unary_expression] = STATE(13), - [sym_ambiguous_expression] = STATE(13), - [sym_current_changed_expression] = STATE(13), - [sym_locked_expression] = STATE(13), - [sym_input_expression] = STATE(13), - [sym_additive_expression] = STATE(37), - [sym_multiplicative_expression] = STATE(37), - [sym_comparison_expression] = STATE(37), - [sym__binary_expression] = STATE(13), + [sym_constant] = STATE(20), + [sym_qualified_name] = STATE(20), + [sym_boolean_literal] = STATE(20), + [sym__decimal_literal] = STATE(23), + [sym_number_literal] = STATE(20), + [sym__string_literal] = STATE(20), + [sym_double_quoted_string] = STATE(18), + [sym_single_quoted_string] = STATE(18), + [sym_parenthesized_expression] = STATE(20), + [sym_logical_expression] = STATE(24), + [sym_unary_expression] = STATE(20), + [sym_ambiguous_expression] = STATE(20), + [sym_current_changed_expression] = STATE(20), + [sym_locked_expression] = STATE(20), + [sym_input_expression] = STATE(20), + [sym_additive_expression] = STATE(24), + [sym_multiplicative_expression] = STATE(24), + [sym_comparison_expression] = STATE(24), + [sym__binary_expression] = STATE(20), [sym_include] = STATE(298), - [sym_function_call] = STATE(13), - [sym_ternary_expression] = STATE(13), - [sym_new_expression] = STATE(13), - [sym_object_access] = STATE(38), - [sym_where_clause] = STATE(2166), - [sym_query_tuning] = STATE(2166), - [sym_can_find_expression] = STATE(13), - [sym_of] = STATE(2166), - [sym__using_first] = STATE(1944), - [sym_accumulate_expression] = STATE(13), - [sym_available_expression] = STATE(13), - [sym__expression] = STATE(605), - [aux_sym_can_find_expression_repeat2] = STATE(1874), - [sym_identifier] = ACTIONS(353), + [sym_function_call] = STATE(20), + [sym_ternary_expression] = STATE(20), + [sym_new_expression] = STATE(20), + [sym_object_access] = STATE(29), + [sym_where_clause] = STATE(2222), + [sym_query_tuning] = STATE(2222), + [sym_can_find_expression] = STATE(20), + [sym_of] = STATE(2222), + [sym__using_first] = STATE(1960), + [sym_accumulate_expression] = STATE(20), + [sym_available_expression] = STATE(20), + [sym__expression] = STATE(610), + [aux_sym_can_find_expression_repeat2] = STATE(1881), + [sym_identifier] = ACTIONS(337), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_LBRACE] = ACTIONS(339), + [sym_null_expression] = ACTIONS(341), + [aux_sym_boolean_literal_token1] = ACTIONS(343), + [aux_sym_boolean_literal_token2] = ACTIONS(343), + [aux_sym_boolean_literal_token3] = ACTIONS(343), + [aux_sym_boolean_literal_token4] = ACTIONS(343), + [sym__integer_literal] = ACTIONS(345), + [anon_sym_DQUOTE] = ACTIONS(347), + [anon_sym_SQUOTE] = ACTIONS(349), + [anon_sym_LPAREN] = ACTIONS(351), + [anon_sym_RPAREN] = ACTIONS(613), + [aux_sym_unary_expression_token1] = ACTIONS(355), + [aux_sym_unary_expression_token2] = ACTIONS(423), + [aux_sym_ambiguous_expression_token1] = ACTIONS(425), + [aux_sym_current_changed_expression_token1] = ACTIONS(427), + [aux_sym_locked_expression_token1] = ACTIONS(429), + [aux_sym_input_expression_token1] = ACTIONS(431), + [aux_sym_scope_tuning_token1] = ACTIONS(433), + [aux_sym_function_call_token1] = ACTIONS(435), + [aux_sym_if_statement_token1] = ACTIONS(437), + [aux_sym_using_statement_token1] = ACTIONS(439), + [aux_sym_where_clause_token1] = ACTIONS(441), + [aux_sym_query_tuning_token1] = ACTIONS(435), + [aux_sym_query_tuning_token2] = ACTIONS(435), + [aux_sym_query_tuning_token3] = ACTIONS(435), + [aux_sym_query_tuning_token4] = ACTIONS(435), + [aux_sym_query_tuning_token5] = ACTIONS(443), + [aux_sym_can_find_expression_token1] = ACTIONS(373), + [aux_sym_of_token1] = ACTIONS(445), + [aux_sym_accumulate_expression_token1] = ACTIONS(447), + [aux_sym_available_expression_token1] = ACTIONS(379), + [aux_sym_available_expression_token2] = ACTIONS(379), + }, + [299] = { + [sym_comment] = STATE(299), + [sym_constant] = STATE(20), + [sym_qualified_name] = STATE(20), + [sym_boolean_literal] = STATE(20), + [sym__decimal_literal] = STATE(23), + [sym_number_literal] = STATE(20), + [sym__string_literal] = STATE(20), + [sym_double_quoted_string] = STATE(18), + [sym_single_quoted_string] = STATE(18), + [sym_parenthesized_expression] = STATE(20), + [sym_logical_expression] = STATE(24), + [sym_unary_expression] = STATE(20), + [sym_ambiguous_expression] = STATE(20), + [sym_current_changed_expression] = STATE(20), + [sym_locked_expression] = STATE(20), + [sym_input_expression] = STATE(20), + [sym_additive_expression] = STATE(24), + [sym_multiplicative_expression] = STATE(24), + [sym_comparison_expression] = STATE(24), + [sym__binary_expression] = STATE(20), + [sym_include] = STATE(299), + [sym_function_call] = STATE(20), + [sym_ternary_expression] = STATE(20), + [sym_new_expression] = STATE(20), + [sym_object_access] = STATE(29), + [sym_where_clause] = STATE(2222), + [sym_query_tuning] = STATE(2222), + [sym_can_find_expression] = STATE(20), + [sym_of] = STATE(2222), + [sym__using_first] = STATE(1960), + [sym_accumulate_expression] = STATE(20), + [sym_available_expression] = STATE(20), + [sym__expression] = STATE(612), + [aux_sym_can_find_expression_repeat2] = STATE(1907), + [sym_identifier] = ACTIONS(337), [anon_sym_SLASH_SLASH] = ACTIONS(3), [anon_sym_SLASH_STAR] = ACTIONS(5), - [anon_sym_LBRACE] = ACTIONS(355), - [sym_null_expression] = ACTIONS(357), - [aux_sym_boolean_literal_token1] = ACTIONS(359), - [aux_sym_boolean_literal_token2] = ACTIONS(359), - [aux_sym_boolean_literal_token3] = ACTIONS(359), - [aux_sym_boolean_literal_token4] = ACTIONS(359), - [sym__integer_literal] = ACTIONS(361), - [anon_sym_DQUOTE] = ACTIONS(363), - [anon_sym_SQUOTE] = ACTIONS(365), - [anon_sym_LPAREN] = ACTIONS(367), + [anon_sym_LBRACE] = ACTIONS(339), + [sym_null_expression] = ACTIONS(341), + [aux_sym_boolean_literal_token1] = ACTIONS(343), + [aux_sym_boolean_literal_token2] = ACTIONS(343), + [aux_sym_boolean_literal_token3] = ACTIONS(343), + [aux_sym_boolean_literal_token4] = ACTIONS(343), + [sym__integer_literal] = ACTIONS(345), + [anon_sym_DQUOTE] = ACTIONS(347), + [anon_sym_SQUOTE] = ACTIONS(349), + [anon_sym_LPAREN] = ACTIONS(351), [anon_sym_RPAREN] = ACTIONS(621), - [aux_sym_unary_expression_token1] = ACTIONS(371), - [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(389), - [aux_sym_of_token1] = ACTIONS(443), - [aux_sym_accumulate_expression_token1] = ACTIONS(445), - [aux_sym_available_expression_token1] = ACTIONS(395), - [aux_sym_available_expression_token2] = ACTIONS(395), + [aux_sym_unary_expression_token1] = ACTIONS(355), + [aux_sym_unary_expression_token2] = ACTIONS(423), + [aux_sym_ambiguous_expression_token1] = ACTIONS(425), + [aux_sym_current_changed_expression_token1] = ACTIONS(427), + [aux_sym_locked_expression_token1] = ACTIONS(429), + [aux_sym_input_expression_token1] = ACTIONS(431), + [aux_sym_scope_tuning_token1] = ACTIONS(433), + [aux_sym_function_call_token1] = ACTIONS(435), + [aux_sym_if_statement_token1] = ACTIONS(437), + [aux_sym_using_statement_token1] = ACTIONS(439), + [aux_sym_where_clause_token1] = ACTIONS(441), + [aux_sym_query_tuning_token1] = ACTIONS(435), + [aux_sym_query_tuning_token2] = ACTIONS(435), + [aux_sym_query_tuning_token3] = ACTIONS(435), + [aux_sym_query_tuning_token4] = ACTIONS(435), + [aux_sym_query_tuning_token5] = ACTIONS(443), + [aux_sym_can_find_expression_token1] = ACTIONS(373), + [aux_sym_of_token1] = ACTIONS(445), + [aux_sym_accumulate_expression_token1] = ACTIONS(447), + [aux_sym_available_expression_token1] = ACTIONS(379), + [aux_sym_available_expression_token2] = ACTIONS(379), + }, + [300] = { + [sym_comment] = STATE(300), + [sym_constant] = STATE(20), + [sym_qualified_name] = STATE(20), + [sym_boolean_literal] = STATE(20), + [sym__decimal_literal] = STATE(23), + [sym_number_literal] = STATE(20), + [sym__string_literal] = STATE(20), + [sym_double_quoted_string] = STATE(18), + [sym_single_quoted_string] = STATE(18), + [sym_parenthesized_expression] = STATE(20), + [sym_logical_expression] = STATE(24), + [sym_unary_expression] = STATE(20), + [sym_ambiguous_expression] = STATE(20), + [sym_current_changed_expression] = STATE(20), + [sym_locked_expression] = STATE(20), + [sym_input_expression] = STATE(20), + [sym_additive_expression] = STATE(24), + [sym_multiplicative_expression] = STATE(24), + [sym_comparison_expression] = STATE(24), + [sym__binary_expression] = STATE(20), + [sym_include] = STATE(300), + [sym_function_call] = STATE(20), + [sym_ternary_expression] = STATE(20), + [sym_new_expression] = STATE(20), + [sym_object_access] = STATE(29), + [sym_where_clause] = STATE(2222), + [sym_query_tuning] = STATE(2222), + [sym_can_find_expression] = STATE(20), + [sym_of] = STATE(2222), + [sym__using_first] = STATE(1960), + [sym_accumulate_expression] = STATE(20), + [sym_available_expression] = STATE(20), + [sym__expression] = STATE(613), + [aux_sym_can_find_expression_repeat2] = STATE(1908), + [sym_identifier] = ACTIONS(337), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_LBRACE] = ACTIONS(339), + [sym_null_expression] = ACTIONS(341), + [aux_sym_boolean_literal_token1] = ACTIONS(343), + [aux_sym_boolean_literal_token2] = ACTIONS(343), + [aux_sym_boolean_literal_token3] = ACTIONS(343), + [aux_sym_boolean_literal_token4] = ACTIONS(343), + [sym__integer_literal] = ACTIONS(345), + [anon_sym_DQUOTE] = ACTIONS(347), + [anon_sym_SQUOTE] = ACTIONS(349), + [anon_sym_LPAREN] = ACTIONS(351), + [anon_sym_RPAREN] = ACTIONS(629), + [aux_sym_unary_expression_token1] = ACTIONS(355), + [aux_sym_unary_expression_token2] = ACTIONS(423), + [aux_sym_ambiguous_expression_token1] = ACTIONS(425), + [aux_sym_current_changed_expression_token1] = ACTIONS(427), + [aux_sym_locked_expression_token1] = ACTIONS(429), + [aux_sym_input_expression_token1] = ACTIONS(431), + [aux_sym_scope_tuning_token1] = ACTIONS(433), + [aux_sym_function_call_token1] = ACTIONS(435), + [aux_sym_if_statement_token1] = ACTIONS(437), + [aux_sym_using_statement_token1] = ACTIONS(439), + [aux_sym_where_clause_token1] = ACTIONS(441), + [aux_sym_query_tuning_token1] = ACTIONS(435), + [aux_sym_query_tuning_token2] = ACTIONS(435), + [aux_sym_query_tuning_token3] = ACTIONS(435), + [aux_sym_query_tuning_token4] = ACTIONS(435), + [aux_sym_query_tuning_token5] = ACTIONS(443), + [aux_sym_can_find_expression_token1] = ACTIONS(373), + [aux_sym_of_token1] = ACTIONS(445), + [aux_sym_accumulate_expression_token1] = ACTIONS(447), + [aux_sym_available_expression_token1] = ACTIONS(379), + [aux_sym_available_expression_token2] = ACTIONS(379), + }, + [301] = { + [sym_comment] = STATE(301), + [sym_constant] = STATE(20), + [sym_qualified_name] = STATE(20), + [sym_boolean_literal] = STATE(20), + [sym__decimal_literal] = STATE(23), + [sym_number_literal] = STATE(20), + [sym__string_literal] = STATE(20), + [sym_double_quoted_string] = STATE(18), + [sym_single_quoted_string] = STATE(18), + [sym_parenthesized_expression] = STATE(20), + [sym_logical_expression] = STATE(24), + [sym_unary_expression] = STATE(20), + [sym_ambiguous_expression] = STATE(20), + [sym_current_changed_expression] = STATE(20), + [sym_locked_expression] = STATE(20), + [sym_input_expression] = STATE(20), + [sym_additive_expression] = STATE(24), + [sym_multiplicative_expression] = STATE(24), + [sym_comparison_expression] = STATE(24), + [sym__binary_expression] = STATE(20), + [sym_include] = STATE(301), + [sym_function_call] = STATE(20), + [sym_ternary_expression] = STATE(20), + [sym_new_expression] = STATE(20), + [sym_object_access] = STATE(29), + [sym_where_clause] = STATE(2222), + [sym_query_tuning] = STATE(2222), + [sym_can_find_expression] = STATE(20), + [sym_of] = STATE(2222), + [sym__using_first] = STATE(1960), + [sym_accumulate_expression] = STATE(20), + [sym_available_expression] = STATE(20), + [sym__expression] = STATE(601), + [aux_sym_can_find_expression_repeat2] = STATE(1894), + [sym_identifier] = ACTIONS(337), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_LBRACE] = ACTIONS(339), + [sym_null_expression] = ACTIONS(341), + [aux_sym_boolean_literal_token1] = ACTIONS(343), + [aux_sym_boolean_literal_token2] = ACTIONS(343), + [aux_sym_boolean_literal_token3] = ACTIONS(343), + [aux_sym_boolean_literal_token4] = ACTIONS(343), + [sym__integer_literal] = ACTIONS(345), + [anon_sym_DQUOTE] = ACTIONS(347), + [anon_sym_SQUOTE] = ACTIONS(349), + [anon_sym_LPAREN] = ACTIONS(351), + [anon_sym_RPAREN] = ACTIONS(615), + [aux_sym_unary_expression_token1] = ACTIONS(355), + [aux_sym_unary_expression_token2] = ACTIONS(423), + [aux_sym_ambiguous_expression_token1] = ACTIONS(425), + [aux_sym_current_changed_expression_token1] = ACTIONS(427), + [aux_sym_locked_expression_token1] = ACTIONS(429), + [aux_sym_input_expression_token1] = ACTIONS(431), + [aux_sym_scope_tuning_token1] = ACTIONS(433), + [aux_sym_function_call_token1] = ACTIONS(435), + [aux_sym_if_statement_token1] = ACTIONS(437), + [aux_sym_using_statement_token1] = ACTIONS(439), + [aux_sym_where_clause_token1] = ACTIONS(441), + [aux_sym_query_tuning_token1] = ACTIONS(435), + [aux_sym_query_tuning_token2] = ACTIONS(435), + [aux_sym_query_tuning_token3] = ACTIONS(435), + [aux_sym_query_tuning_token4] = ACTIONS(435), + [aux_sym_query_tuning_token5] = ACTIONS(443), + [aux_sym_can_find_expression_token1] = ACTIONS(373), + [aux_sym_of_token1] = ACTIONS(445), + [aux_sym_accumulate_expression_token1] = ACTIONS(447), + [aux_sym_available_expression_token1] = ACTIONS(379), + [aux_sym_available_expression_token2] = ACTIONS(379), + }, + [302] = { + [sym_comment] = STATE(302), + [sym_constant] = STATE(20), + [sym_qualified_name] = STATE(20), + [sym_boolean_literal] = STATE(20), + [sym__decimal_literal] = STATE(23), + [sym_number_literal] = STATE(20), + [sym__string_literal] = STATE(20), + [sym_double_quoted_string] = STATE(18), + [sym_single_quoted_string] = STATE(18), + [sym_parenthesized_expression] = STATE(20), + [sym_logical_expression] = STATE(24), + [sym_unary_expression] = STATE(20), + [sym_ambiguous_expression] = STATE(20), + [sym_current_changed_expression] = STATE(20), + [sym_locked_expression] = STATE(20), + [sym_input_expression] = STATE(20), + [sym_additive_expression] = STATE(24), + [sym_multiplicative_expression] = STATE(24), + [sym_comparison_expression] = STATE(24), + [sym__binary_expression] = STATE(20), + [sym_include] = STATE(302), + [sym_function_call] = STATE(20), + [sym_ternary_expression] = STATE(20), + [sym_new_expression] = STATE(20), + [sym_object_access] = STATE(29), + [sym_where_clause] = STATE(2222), + [sym_query_tuning] = STATE(2222), + [sym_can_find_expression] = STATE(20), + [sym_of] = STATE(2222), + [sym__using_first] = STATE(1960), + [sym_accumulate_expression] = STATE(20), + [sym_available_expression] = STATE(20), + [sym__expression] = STATE(604), + [aux_sym_can_find_expression_repeat2] = STATE(1892), + [sym_identifier] = ACTIONS(337), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_LBRACE] = ACTIONS(339), + [sym_null_expression] = ACTIONS(341), + [aux_sym_boolean_literal_token1] = ACTIONS(343), + [aux_sym_boolean_literal_token2] = ACTIONS(343), + [aux_sym_boolean_literal_token3] = ACTIONS(343), + [aux_sym_boolean_literal_token4] = ACTIONS(343), + [sym__integer_literal] = ACTIONS(345), + [anon_sym_DQUOTE] = ACTIONS(347), + [anon_sym_SQUOTE] = ACTIONS(349), + [anon_sym_LPAREN] = ACTIONS(351), + [anon_sym_RPAREN] = ACTIONS(609), + [aux_sym_unary_expression_token1] = ACTIONS(355), + [aux_sym_unary_expression_token2] = ACTIONS(423), + [aux_sym_ambiguous_expression_token1] = ACTIONS(425), + [aux_sym_current_changed_expression_token1] = ACTIONS(427), + [aux_sym_locked_expression_token1] = ACTIONS(429), + [aux_sym_input_expression_token1] = ACTIONS(431), + [aux_sym_scope_tuning_token1] = ACTIONS(433), + [aux_sym_function_call_token1] = ACTIONS(435), + [aux_sym_if_statement_token1] = ACTIONS(437), + [aux_sym_using_statement_token1] = ACTIONS(439), + [aux_sym_where_clause_token1] = ACTIONS(441), + [aux_sym_query_tuning_token1] = ACTIONS(435), + [aux_sym_query_tuning_token2] = ACTIONS(435), + [aux_sym_query_tuning_token3] = ACTIONS(435), + [aux_sym_query_tuning_token4] = ACTIONS(435), + [aux_sym_query_tuning_token5] = ACTIONS(443), + [aux_sym_can_find_expression_token1] = ACTIONS(373), + [aux_sym_of_token1] = ACTIONS(445), + [aux_sym_accumulate_expression_token1] = ACTIONS(447), + [aux_sym_available_expression_token1] = ACTIONS(379), + [aux_sym_available_expression_token2] = ACTIONS(379), + }, + [303] = { + [sym_comment] = STATE(303), + [sym_constant] = STATE(20), + [sym_qualified_name] = STATE(20), + [sym_boolean_literal] = STATE(20), + [sym__decimal_literal] = STATE(23), + [sym_number_literal] = STATE(20), + [sym__string_literal] = STATE(20), + [sym_double_quoted_string] = STATE(18), + [sym_single_quoted_string] = STATE(18), + [sym_parenthesized_expression] = STATE(20), + [sym_logical_expression] = STATE(24), + [sym_unary_expression] = STATE(20), + [sym_ambiguous_expression] = STATE(20), + [sym_current_changed_expression] = STATE(20), + [sym_locked_expression] = STATE(20), + [sym_input_expression] = STATE(20), + [sym_additive_expression] = STATE(24), + [sym_multiplicative_expression] = STATE(24), + [sym_comparison_expression] = STATE(24), + [sym__binary_expression] = STATE(20), + [sym_include] = STATE(303), + [sym_function_call] = STATE(20), + [sym_ternary_expression] = STATE(20), + [sym_new_expression] = STATE(20), + [sym_object_access] = STATE(29), + [sym_where_clause] = STATE(2222), + [sym_query_tuning] = STATE(2222), + [sym_can_find_expression] = STATE(20), + [sym_of] = STATE(2222), + [sym__using_first] = STATE(1960), + [sym_accumulate_expression] = STATE(20), + [sym_available_expression] = STATE(20), + [sym__expression] = STATE(608), + [aux_sym_can_find_expression_repeat2] = STATE(1886), + [sym_identifier] = ACTIONS(337), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [anon_sym_SLASH_STAR] = ACTIONS(5), + [anon_sym_LBRACE] = ACTIONS(339), + [sym_null_expression] = ACTIONS(341), + [aux_sym_boolean_literal_token1] = ACTIONS(343), + [aux_sym_boolean_literal_token2] = ACTIONS(343), + [aux_sym_boolean_literal_token3] = ACTIONS(343), + [aux_sym_boolean_literal_token4] = ACTIONS(343), + [sym__integer_literal] = ACTIONS(345), + [anon_sym_DQUOTE] = ACTIONS(347), + [anon_sym_SQUOTE] = ACTIONS(349), + [anon_sym_LPAREN] = ACTIONS(351), + [anon_sym_RPAREN] = ACTIONS(451), + [aux_sym_unary_expression_token1] = ACTIONS(355), + [aux_sym_unary_expression_token2] = ACTIONS(423), + [aux_sym_ambiguous_expression_token1] = ACTIONS(425), + [aux_sym_current_changed_expression_token1] = ACTIONS(427), + [aux_sym_locked_expression_token1] = ACTIONS(429), + [aux_sym_input_expression_token1] = ACTIONS(431), + [aux_sym_scope_tuning_token1] = ACTIONS(433), + [aux_sym_function_call_token1] = ACTIONS(435), + [aux_sym_if_statement_token1] = ACTIONS(437), + [aux_sym_using_statement_token1] = ACTIONS(439), + [aux_sym_where_clause_token1] = ACTIONS(441), + [aux_sym_query_tuning_token1] = ACTIONS(435), + [aux_sym_query_tuning_token2] = ACTIONS(435), + [aux_sym_query_tuning_token3] = ACTIONS(435), + [aux_sym_query_tuning_token4] = ACTIONS(435), + [aux_sym_query_tuning_token5] = ACTIONS(443), + [aux_sym_can_find_expression_token1] = ACTIONS(373), + [aux_sym_of_token1] = ACTIONS(445), + [aux_sym_accumulate_expression_token1] = ACTIONS(447), + [aux_sym_available_expression_token1] = ACTIONS(379), + [aux_sym_available_expression_token2] = ACTIONS(379), }, }; @@ -49169,25 +49878,25 @@ static const uint16_t ts_small_parse_table[] = { sym__namedot, ACTIONS(681), 1, sym__namecolon, - STATE(329), 1, + STATE(336), 1, aux_sym_qualified_name_repeat1, - STATE(333), 1, + STATE(343), 1, aux_sym_abl_statement_repeat1, STATE(531), 1, sym__expression, - STATE(564), 1, + STATE(565), 1, sym__decimal_literal, - STATE(569), 1, + STATE(587), 1, sym_object_access, - STATE(3004), 1, + STATE(3145), 1, aux_sym_object_access_repeat1, ACTIONS(677), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(299), 2, + STATE(304), 2, sym_comment, sym_include, - STATE(565), 2, + STATE(580), 2, sym_double_quoted_string, sym_single_quoted_string, ACTIONS(643), 4, @@ -49195,12 +49904,12 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(567), 4, + STATE(581), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(561), 18, + STATE(566), 18, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -49268,25 +49977,25 @@ static const uint16_t ts_small_parse_table[] = { sym__terminator, ACTIONS(685), 1, anon_sym_COLON, - STATE(329), 1, + STATE(336), 1, aux_sym_qualified_name_repeat1, - STATE(339), 1, + STATE(341), 1, aux_sym_abl_statement_repeat1, STATE(531), 1, sym__expression, - STATE(564), 1, + STATE(565), 1, sym__decimal_literal, - STATE(569), 1, + STATE(587), 1, sym_object_access, - STATE(3004), 1, + STATE(3145), 1, aux_sym_object_access_repeat1, ACTIONS(677), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(300), 2, + STATE(305), 2, sym_comment, sym_include, - STATE(565), 2, + STATE(580), 2, sym_double_quoted_string, sym_single_quoted_string, ACTIONS(643), 4, @@ -49294,12 +50003,12 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(567), 4, + STATE(581), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(561), 18, + STATE(566), 18, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -49363,29 +50072,29 @@ static const uint16_t ts_small_parse_table[] = { sym__namedot, ACTIONS(681), 1, sym__namecolon, - ACTIONS(685), 1, - anon_sym_COLON, ACTIONS(687), 1, sym__terminator, - STATE(329), 1, + ACTIONS(689), 1, + anon_sym_COLON, + STATE(336), 1, aux_sym_qualified_name_repeat1, - STATE(334), 1, + STATE(339), 1, aux_sym_abl_statement_repeat1, STATE(531), 1, sym__expression, - STATE(564), 1, + STATE(565), 1, sym__decimal_literal, - STATE(569), 1, + STATE(587), 1, sym_object_access, - STATE(3004), 1, + STATE(3145), 1, aux_sym_object_access_repeat1, ACTIONS(677), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(301), 2, + STATE(306), 2, sym_comment, sym_include, - STATE(565), 2, + STATE(580), 2, sym_double_quoted_string, sym_single_quoted_string, ACTIONS(643), 4, @@ -49393,12 +50102,12 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(567), 4, + STATE(581), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(561), 18, + STATE(566), 18, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -49464,27 +50173,27 @@ static const uint16_t ts_small_parse_table[] = { sym__namecolon, ACTIONS(685), 1, anon_sym_COLON, - ACTIONS(689), 1, + ACTIONS(691), 1, sym__terminator, - STATE(329), 1, + STATE(336), 1, aux_sym_qualified_name_repeat1, - STATE(335), 1, + STATE(342), 1, aux_sym_abl_statement_repeat1, STATE(531), 1, sym__expression, - STATE(564), 1, + STATE(565), 1, sym__decimal_literal, - STATE(569), 1, + STATE(587), 1, sym_object_access, - STATE(3004), 1, + STATE(3145), 1, aux_sym_object_access_repeat1, ACTIONS(677), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(302), 2, + STATE(307), 2, sym_comment, sym_include, - STATE(565), 2, + STATE(580), 2, sym_double_quoted_string, sym_single_quoted_string, ACTIONS(643), 4, @@ -49492,12 +50201,12 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(567), 4, + STATE(581), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(561), 18, + STATE(566), 18, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -49561,29 +50270,29 @@ static const uint16_t ts_small_parse_table[] = { sym__namedot, ACTIONS(681), 1, sym__namecolon, - ACTIONS(691), 1, - sym__terminator, - ACTIONS(693), 1, + ACTIONS(685), 1, anon_sym_COLON, - STATE(329), 1, - aux_sym_qualified_name_repeat1, - STATE(338), 1, + ACTIONS(693), 1, + sym__terminator, + STATE(334), 1, aux_sym_abl_statement_repeat1, + STATE(336), 1, + aux_sym_qualified_name_repeat1, STATE(531), 1, sym__expression, - STATE(564), 1, + STATE(565), 1, sym__decimal_literal, - STATE(569), 1, + STATE(587), 1, sym_object_access, - STATE(3004), 1, + STATE(3145), 1, aux_sym_object_access_repeat1, ACTIONS(677), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(303), 2, + STATE(308), 2, sym_comment, sym_include, - STATE(565), 2, + STATE(580), 2, sym_double_quoted_string, sym_single_quoted_string, ACTIONS(643), 4, @@ -49591,12 +50300,12 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(567), 4, + STATE(581), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(561), 18, + STATE(566), 18, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -49620,79 +50329,79 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(353), 1, + ACTIONS(337), 1, sym_identifier, - ACTIONS(355), 1, + ACTIONS(339), 1, anon_sym_LBRACE, - ACTIONS(357), 1, + ACTIONS(341), 1, sym_null_expression, - ACTIONS(361), 1, + ACTIONS(345), 1, sym__integer_literal, - ACTIONS(363), 1, + ACTIONS(347), 1, anon_sym_DQUOTE, - ACTIONS(365), 1, + ACTIONS(349), 1, anon_sym_SQUOTE, - ACTIONS(367), 1, + ACTIONS(351), 1, anon_sym_LPAREN, - ACTIONS(371), 1, + ACTIONS(355), 1, aux_sym_unary_expression_token1, - ACTIONS(373), 1, + ACTIONS(357), 1, aux_sym_unary_expression_token2, - ACTIONS(375), 1, + ACTIONS(359), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(377), 1, + ACTIONS(361), 1, aux_sym_current_changed_expression_token1, - ACTIONS(379), 1, + ACTIONS(363), 1, aux_sym_locked_expression_token1, - ACTIONS(381), 1, + ACTIONS(365), 1, aux_sym_input_expression_token1, - ACTIONS(383), 1, + ACTIONS(367), 1, aux_sym_scope_tuning_token1, - ACTIONS(387), 1, + ACTIONS(371), 1, aux_sym_if_statement_token1, - ACTIONS(389), 1, + ACTIONS(373), 1, aux_sym_can_find_expression_token1, - ACTIONS(393), 1, + ACTIONS(377), 1, aux_sym_accumulate_expression_token1, ACTIONS(695), 1, anon_sym_RPAREN, - STATE(36), 1, + STATE(23), 1, sym__decimal_literal, - STATE(38), 1, + STATE(29), 1, sym_object_access, - STATE(862), 1, + STATE(877), 1, sym__expression, - STATE(3086), 1, + STATE(3202), 1, sym_function_call_argument, - STATE(3632), 1, + STATE(3733), 1, sym__function_argument_with_mode, - STATE(4604), 1, + STATE(4685), 1, sym_argument_mode, - STATE(4675), 1, + STATE(4757), 1, sym__function_call_arguments, - ACTIONS(385), 2, + ACTIONS(369), 2, aux_sym_argument_mode_token1, aux_sym_argument_mode_token2, - ACTIONS(395), 2, + ACTIONS(379), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(21), 2, + STATE(18), 2, sym_double_quoted_string, sym_single_quoted_string, - STATE(304), 2, + STATE(309), 2, sym_comment, sym_include, - ACTIONS(359), 4, + ACTIONS(343), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(37), 4, + STATE(24), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(13), 18, + STATE(20), 18, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -49716,79 +50425,79 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(353), 1, + ACTIONS(337), 1, sym_identifier, - ACTIONS(355), 1, + ACTIONS(339), 1, anon_sym_LBRACE, - ACTIONS(357), 1, + ACTIONS(341), 1, sym_null_expression, - ACTIONS(361), 1, + ACTIONS(345), 1, sym__integer_literal, - ACTIONS(363), 1, + ACTIONS(347), 1, anon_sym_DQUOTE, - ACTIONS(365), 1, + ACTIONS(349), 1, anon_sym_SQUOTE, - ACTIONS(367), 1, + ACTIONS(351), 1, anon_sym_LPAREN, - ACTIONS(371), 1, + ACTIONS(355), 1, aux_sym_unary_expression_token1, - ACTIONS(373), 1, + ACTIONS(357), 1, aux_sym_unary_expression_token2, - ACTIONS(375), 1, + ACTIONS(359), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(377), 1, + ACTIONS(361), 1, aux_sym_current_changed_expression_token1, - ACTIONS(379), 1, + ACTIONS(363), 1, aux_sym_locked_expression_token1, - ACTIONS(381), 1, + ACTIONS(365), 1, aux_sym_input_expression_token1, - ACTIONS(383), 1, + ACTIONS(367), 1, aux_sym_scope_tuning_token1, - ACTIONS(387), 1, + ACTIONS(371), 1, aux_sym_if_statement_token1, - ACTIONS(389), 1, + ACTIONS(373), 1, aux_sym_can_find_expression_token1, - ACTIONS(393), 1, + ACTIONS(377), 1, aux_sym_accumulate_expression_token1, ACTIONS(697), 1, anon_sym_RPAREN, - STATE(36), 1, + STATE(23), 1, sym__decimal_literal, - STATE(38), 1, + STATE(29), 1, sym_object_access, - STATE(862), 1, + STATE(877), 1, sym__expression, - STATE(3086), 1, + STATE(3202), 1, sym_function_call_argument, - STATE(3632), 1, + STATE(3733), 1, sym__function_argument_with_mode, - STATE(4604), 1, - sym_argument_mode, - STATE(4667), 1, + STATE(4430), 1, sym__function_call_arguments, - ACTIONS(385), 2, + STATE(4685), 1, + sym_argument_mode, + ACTIONS(369), 2, aux_sym_argument_mode_token1, aux_sym_argument_mode_token2, - ACTIONS(395), 2, + ACTIONS(379), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(21), 2, + STATE(18), 2, sym_double_quoted_string, sym_single_quoted_string, - STATE(305), 2, + STATE(310), 2, sym_comment, sym_include, - ACTIONS(359), 4, + ACTIONS(343), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(37), 4, + STATE(24), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(13), 18, + STATE(20), 18, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -49812,79 +50521,271 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(353), 1, + ACTIONS(337), 1, sym_identifier, - ACTIONS(355), 1, + ACTIONS(339), 1, anon_sym_LBRACE, - ACTIONS(357), 1, + ACTIONS(341), 1, sym_null_expression, - ACTIONS(361), 1, + ACTIONS(345), 1, sym__integer_literal, - ACTIONS(363), 1, + ACTIONS(347), 1, anon_sym_DQUOTE, - ACTIONS(365), 1, + ACTIONS(349), 1, anon_sym_SQUOTE, - ACTIONS(367), 1, + ACTIONS(351), 1, anon_sym_LPAREN, - ACTIONS(371), 1, + ACTIONS(355), 1, aux_sym_unary_expression_token1, + ACTIONS(357), 1, + aux_sym_unary_expression_token2, + ACTIONS(359), 1, + aux_sym_ambiguous_expression_token1, + ACTIONS(361), 1, + aux_sym_current_changed_expression_token1, + ACTIONS(363), 1, + aux_sym_locked_expression_token1, + ACTIONS(365), 1, + aux_sym_input_expression_token1, + ACTIONS(367), 1, + aux_sym_scope_tuning_token1, + ACTIONS(371), 1, + aux_sym_if_statement_token1, ACTIONS(373), 1, + aux_sym_can_find_expression_token1, + ACTIONS(377), 1, + aux_sym_accumulate_expression_token1, + ACTIONS(699), 1, + anon_sym_RPAREN, + STATE(23), 1, + sym__decimal_literal, + STATE(29), 1, + sym_object_access, + STATE(877), 1, + sym__expression, + STATE(3202), 1, + sym_function_call_argument, + STATE(3733), 1, + sym__function_argument_with_mode, + STATE(4685), 1, + sym_argument_mode, + STATE(4818), 1, + sym__function_call_arguments, + ACTIONS(369), 2, + aux_sym_argument_mode_token1, + aux_sym_argument_mode_token2, + ACTIONS(379), 2, + aux_sym_available_expression_token1, + aux_sym_available_expression_token2, + STATE(18), 2, + sym_double_quoted_string, + sym_single_quoted_string, + STATE(311), 2, + sym_comment, + sym_include, + ACTIONS(343), 4, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + aux_sym_boolean_literal_token3, + aux_sym_boolean_literal_token4, + STATE(24), 4, + sym_logical_expression, + sym_additive_expression, + sym_multiplicative_expression, + sym_comparison_expression, + STATE(20), 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, + [1065] = 34, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(337), 1, + sym_identifier, + ACTIONS(339), 1, + anon_sym_LBRACE, + ACTIONS(341), 1, + sym_null_expression, + ACTIONS(345), 1, + sym__integer_literal, + ACTIONS(347), 1, + anon_sym_DQUOTE, + ACTIONS(349), 1, + anon_sym_SQUOTE, + ACTIONS(351), 1, + anon_sym_LPAREN, + ACTIONS(355), 1, + aux_sym_unary_expression_token1, + ACTIONS(357), 1, aux_sym_unary_expression_token2, - ACTIONS(375), 1, + ACTIONS(359), 1, aux_sym_ambiguous_expression_token1, + ACTIONS(361), 1, + aux_sym_current_changed_expression_token1, + ACTIONS(363), 1, + aux_sym_locked_expression_token1, + ACTIONS(365), 1, + aux_sym_input_expression_token1, + ACTIONS(367), 1, + aux_sym_scope_tuning_token1, + ACTIONS(371), 1, + aux_sym_if_statement_token1, + ACTIONS(373), 1, + aux_sym_can_find_expression_token1, ACTIONS(377), 1, + aux_sym_accumulate_expression_token1, + ACTIONS(701), 1, + anon_sym_RPAREN, + STATE(23), 1, + sym__decimal_literal, + STATE(29), 1, + sym_object_access, + STATE(877), 1, + sym__expression, + STATE(3202), 1, + sym_function_call_argument, + STATE(3733), 1, + sym__function_argument_with_mode, + STATE(4685), 1, + sym_argument_mode, + STATE(4761), 1, + sym__function_call_arguments, + ACTIONS(369), 2, + aux_sym_argument_mode_token1, + aux_sym_argument_mode_token2, + ACTIONS(379), 2, + aux_sym_available_expression_token1, + aux_sym_available_expression_token2, + STATE(18), 2, + sym_double_quoted_string, + sym_single_quoted_string, + STATE(312), 2, + sym_comment, + sym_include, + ACTIONS(343), 4, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + aux_sym_boolean_literal_token3, + aux_sym_boolean_literal_token4, + STATE(24), 4, + sym_logical_expression, + sym_additive_expression, + sym_multiplicative_expression, + sym_comparison_expression, + STATE(20), 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, + [1195] = 34, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(337), 1, + sym_identifier, + ACTIONS(339), 1, + anon_sym_LBRACE, + ACTIONS(341), 1, + sym_null_expression, + ACTIONS(345), 1, + sym__integer_literal, + ACTIONS(347), 1, + anon_sym_DQUOTE, + ACTIONS(349), 1, + anon_sym_SQUOTE, + ACTIONS(351), 1, + anon_sym_LPAREN, + ACTIONS(355), 1, + aux_sym_unary_expression_token1, + ACTIONS(357), 1, + aux_sym_unary_expression_token2, + ACTIONS(359), 1, + aux_sym_ambiguous_expression_token1, + ACTIONS(361), 1, aux_sym_current_changed_expression_token1, - ACTIONS(379), 1, + ACTIONS(363), 1, aux_sym_locked_expression_token1, - ACTIONS(381), 1, + ACTIONS(365), 1, aux_sym_input_expression_token1, - ACTIONS(383), 1, + ACTIONS(367), 1, aux_sym_scope_tuning_token1, - ACTIONS(387), 1, + ACTIONS(371), 1, aux_sym_if_statement_token1, - ACTIONS(389), 1, + ACTIONS(373), 1, aux_sym_can_find_expression_token1, - ACTIONS(393), 1, + ACTIONS(377), 1, aux_sym_accumulate_expression_token1, - ACTIONS(699), 1, + ACTIONS(703), 1, anon_sym_RPAREN, - STATE(36), 1, + STATE(23), 1, sym__decimal_literal, - STATE(38), 1, + STATE(29), 1, sym_object_access, - STATE(852), 1, + STATE(877), 1, sym__expression, - STATE(3086), 1, + STATE(3202), 1, sym_function_call_argument, - STATE(3632), 1, + STATE(3733), 1, sym__function_argument_with_mode, - STATE(4604), 1, + STATE(4685), 1, sym_argument_mode, - STATE(4610), 1, + STATE(4691), 1, sym__function_call_arguments, - ACTIONS(385), 2, + ACTIONS(369), 2, aux_sym_argument_mode_token1, aux_sym_argument_mode_token2, - ACTIONS(395), 2, + ACTIONS(379), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(21), 2, + STATE(18), 2, sym_double_quoted_string, sym_single_quoted_string, - STATE(306), 2, + STATE(313), 2, sym_comment, sym_include, - ACTIONS(359), 4, + ACTIONS(343), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(37), 4, + STATE(24), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(13), 18, + STATE(20), 18, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -49903,84 +50804,84 @@ static const uint16_t ts_small_parse_table[] = { sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [1065] = 34, + [1325] = 34, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(353), 1, + ACTIONS(337), 1, sym_identifier, - ACTIONS(355), 1, + ACTIONS(339), 1, anon_sym_LBRACE, - ACTIONS(357), 1, + ACTIONS(341), 1, sym_null_expression, - ACTIONS(361), 1, + ACTIONS(345), 1, sym__integer_literal, - ACTIONS(363), 1, + ACTIONS(347), 1, anon_sym_DQUOTE, - ACTIONS(365), 1, + ACTIONS(349), 1, anon_sym_SQUOTE, - ACTIONS(367), 1, + ACTIONS(351), 1, anon_sym_LPAREN, - ACTIONS(371), 1, + ACTIONS(355), 1, aux_sym_unary_expression_token1, - ACTIONS(373), 1, + ACTIONS(357), 1, aux_sym_unary_expression_token2, - ACTIONS(375), 1, + ACTIONS(359), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(377), 1, + ACTIONS(361), 1, aux_sym_current_changed_expression_token1, - ACTIONS(379), 1, + ACTIONS(363), 1, aux_sym_locked_expression_token1, - ACTIONS(381), 1, + ACTIONS(365), 1, aux_sym_input_expression_token1, - ACTIONS(383), 1, + ACTIONS(367), 1, aux_sym_scope_tuning_token1, - ACTIONS(387), 1, + ACTIONS(371), 1, aux_sym_if_statement_token1, - ACTIONS(389), 1, + ACTIONS(373), 1, aux_sym_can_find_expression_token1, - ACTIONS(393), 1, + ACTIONS(377), 1, aux_sym_accumulate_expression_token1, - ACTIONS(701), 1, + ACTIONS(705), 1, anon_sym_RPAREN, - STATE(36), 1, + STATE(23), 1, sym__decimal_literal, - STATE(38), 1, + STATE(29), 1, sym_object_access, - STATE(862), 1, + STATE(877), 1, sym__expression, - STATE(3086), 1, + STATE(3202), 1, sym_function_call_argument, - STATE(3632), 1, + STATE(3733), 1, sym__function_argument_with_mode, - STATE(4604), 1, - sym_argument_mode, - STATE(4717), 1, + STATE(4520), 1, sym__function_call_arguments, - ACTIONS(385), 2, + STATE(4685), 1, + sym_argument_mode, + ACTIONS(369), 2, aux_sym_argument_mode_token1, aux_sym_argument_mode_token2, - ACTIONS(395), 2, + ACTIONS(379), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(21), 2, + STATE(18), 2, sym_double_quoted_string, sym_single_quoted_string, - STATE(307), 2, + STATE(314), 2, sym_comment, sym_include, - ACTIONS(359), 4, + ACTIONS(343), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(37), 4, + STATE(24), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(13), 18, + STATE(20), 18, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -49999,84 +50900,84 @@ static const uint16_t ts_small_parse_table[] = { sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [1195] = 34, + [1455] = 34, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(353), 1, + ACTIONS(337), 1, sym_identifier, - ACTIONS(355), 1, + ACTIONS(339), 1, anon_sym_LBRACE, - ACTIONS(357), 1, + ACTIONS(341), 1, sym_null_expression, - ACTIONS(361), 1, + ACTIONS(345), 1, sym__integer_literal, - ACTIONS(363), 1, + ACTIONS(347), 1, anon_sym_DQUOTE, - ACTIONS(365), 1, + ACTIONS(349), 1, anon_sym_SQUOTE, - ACTIONS(367), 1, + ACTIONS(351), 1, anon_sym_LPAREN, - ACTIONS(371), 1, + ACTIONS(355), 1, aux_sym_unary_expression_token1, - ACTIONS(373), 1, + ACTIONS(357), 1, aux_sym_unary_expression_token2, - ACTIONS(375), 1, + ACTIONS(359), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(377), 1, + ACTIONS(361), 1, aux_sym_current_changed_expression_token1, - ACTIONS(379), 1, + ACTIONS(363), 1, aux_sym_locked_expression_token1, - ACTIONS(381), 1, + ACTIONS(365), 1, aux_sym_input_expression_token1, - ACTIONS(383), 1, + ACTIONS(367), 1, aux_sym_scope_tuning_token1, - ACTIONS(387), 1, + ACTIONS(371), 1, aux_sym_if_statement_token1, - ACTIONS(389), 1, + ACTIONS(373), 1, aux_sym_can_find_expression_token1, - ACTIONS(393), 1, + ACTIONS(377), 1, aux_sym_accumulate_expression_token1, - ACTIONS(703), 1, + ACTIONS(707), 1, anon_sym_RPAREN, - STATE(36), 1, + STATE(23), 1, sym__decimal_literal, - STATE(38), 1, + STATE(29), 1, sym_object_access, - STATE(862), 1, + STATE(877), 1, sym__expression, - STATE(3086), 1, + STATE(3202), 1, sym_function_call_argument, - STATE(3632), 1, + STATE(3733), 1, sym__function_argument_with_mode, - STATE(4604), 1, - sym_argument_mode, - STATE(4742), 1, + STATE(4259), 1, sym__function_call_arguments, - ACTIONS(385), 2, + STATE(4685), 1, + sym_argument_mode, + ACTIONS(369), 2, aux_sym_argument_mode_token1, aux_sym_argument_mode_token2, - ACTIONS(395), 2, + ACTIONS(379), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(21), 2, + STATE(18), 2, sym_double_quoted_string, sym_single_quoted_string, - STATE(308), 2, + STATE(315), 2, sym_comment, sym_include, - ACTIONS(359), 4, + ACTIONS(343), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(37), 4, + STATE(24), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(13), 18, + STATE(20), 18, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -50095,84 +50996,84 @@ static const uint16_t ts_small_parse_table[] = { sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [1325] = 34, + [1585] = 34, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(353), 1, + ACTIONS(337), 1, sym_identifier, - ACTIONS(355), 1, + ACTIONS(339), 1, anon_sym_LBRACE, - ACTIONS(357), 1, + ACTIONS(341), 1, sym_null_expression, - ACTIONS(361), 1, + ACTIONS(345), 1, sym__integer_literal, - ACTIONS(363), 1, + ACTIONS(347), 1, anon_sym_DQUOTE, - ACTIONS(365), 1, + ACTIONS(349), 1, anon_sym_SQUOTE, - ACTIONS(367), 1, + ACTIONS(351), 1, anon_sym_LPAREN, - ACTIONS(371), 1, + ACTIONS(355), 1, aux_sym_unary_expression_token1, - ACTIONS(373), 1, + ACTIONS(357), 1, aux_sym_unary_expression_token2, - ACTIONS(375), 1, + ACTIONS(359), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(377), 1, + ACTIONS(361), 1, aux_sym_current_changed_expression_token1, - ACTIONS(379), 1, + ACTIONS(363), 1, aux_sym_locked_expression_token1, - ACTIONS(381), 1, + ACTIONS(365), 1, aux_sym_input_expression_token1, - ACTIONS(383), 1, + ACTIONS(367), 1, aux_sym_scope_tuning_token1, - ACTIONS(387), 1, + ACTIONS(371), 1, aux_sym_if_statement_token1, - ACTIONS(389), 1, + ACTIONS(373), 1, aux_sym_can_find_expression_token1, - ACTIONS(393), 1, + ACTIONS(377), 1, aux_sym_accumulate_expression_token1, - ACTIONS(705), 1, + ACTIONS(709), 1, anon_sym_RPAREN, - STATE(36), 1, + STATE(23), 1, sym__decimal_literal, - STATE(38), 1, + STATE(29), 1, sym_object_access, - STATE(862), 1, + STATE(877), 1, sym__expression, - STATE(3086), 1, + STATE(3202), 1, sym_function_call_argument, - STATE(3632), 1, + STATE(3733), 1, sym__function_argument_with_mode, - STATE(4340), 1, + STATE(4568), 1, sym__function_call_arguments, - STATE(4604), 1, + STATE(4685), 1, sym_argument_mode, - ACTIONS(385), 2, + ACTIONS(369), 2, aux_sym_argument_mode_token1, aux_sym_argument_mode_token2, - ACTIONS(395), 2, + ACTIONS(379), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(21), 2, + STATE(18), 2, sym_double_quoted_string, sym_single_quoted_string, - STATE(309), 2, + STATE(316), 2, sym_comment, sym_include, - ACTIONS(359), 4, + ACTIONS(343), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(37), 4, + STATE(24), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(13), 18, + STATE(20), 18, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -50191,84 +51092,84 @@ static const uint16_t ts_small_parse_table[] = { sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [1455] = 34, + [1715] = 34, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(353), 1, + ACTIONS(337), 1, sym_identifier, - ACTIONS(355), 1, + ACTIONS(339), 1, anon_sym_LBRACE, - ACTIONS(357), 1, + ACTIONS(341), 1, sym_null_expression, - ACTIONS(361), 1, + ACTIONS(345), 1, sym__integer_literal, - ACTIONS(363), 1, + ACTIONS(347), 1, anon_sym_DQUOTE, - ACTIONS(365), 1, + ACTIONS(349), 1, anon_sym_SQUOTE, - ACTIONS(367), 1, + ACTIONS(351), 1, anon_sym_LPAREN, - ACTIONS(371), 1, + ACTIONS(355), 1, aux_sym_unary_expression_token1, - ACTIONS(373), 1, + ACTIONS(357), 1, aux_sym_unary_expression_token2, - ACTIONS(375), 1, + ACTIONS(359), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(377), 1, + ACTIONS(361), 1, aux_sym_current_changed_expression_token1, - ACTIONS(379), 1, + ACTIONS(363), 1, aux_sym_locked_expression_token1, - ACTIONS(381), 1, + ACTIONS(365), 1, aux_sym_input_expression_token1, - ACTIONS(383), 1, + ACTIONS(367), 1, aux_sym_scope_tuning_token1, - ACTIONS(387), 1, + ACTIONS(371), 1, aux_sym_if_statement_token1, - ACTIONS(389), 1, + ACTIONS(373), 1, aux_sym_can_find_expression_token1, - ACTIONS(393), 1, + ACTIONS(377), 1, aux_sym_accumulate_expression_token1, - ACTIONS(707), 1, + ACTIONS(711), 1, anon_sym_RPAREN, - STATE(36), 1, + STATE(23), 1, sym__decimal_literal, - STATE(38), 1, + STATE(29), 1, sym_object_access, - STATE(862), 1, + STATE(877), 1, sym__expression, - STATE(3086), 1, + STATE(3202), 1, sym_function_call_argument, - STATE(3632), 1, + STATE(3733), 1, sym__function_argument_with_mode, - STATE(4140), 1, - sym__function_call_arguments, - STATE(4604), 1, + STATE(4685), 1, sym_argument_mode, - ACTIONS(385), 2, + STATE(4797), 1, + sym__function_call_arguments, + ACTIONS(369), 2, aux_sym_argument_mode_token1, aux_sym_argument_mode_token2, - ACTIONS(395), 2, + ACTIONS(379), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(21), 2, + STATE(18), 2, sym_double_quoted_string, sym_single_quoted_string, - STATE(310), 2, + STATE(317), 2, sym_comment, sym_include, - ACTIONS(359), 4, + ACTIONS(343), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(37), 4, + STATE(24), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(13), 18, + STATE(20), 18, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -50287,84 +51188,84 @@ static const uint16_t ts_small_parse_table[] = { sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [1585] = 34, + [1845] = 34, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(353), 1, + ACTIONS(337), 1, sym_identifier, - ACTIONS(355), 1, + ACTIONS(339), 1, anon_sym_LBRACE, - ACTIONS(357), 1, + ACTIONS(341), 1, sym_null_expression, - ACTIONS(361), 1, + ACTIONS(345), 1, sym__integer_literal, - ACTIONS(363), 1, + ACTIONS(347), 1, anon_sym_DQUOTE, - ACTIONS(365), 1, + ACTIONS(349), 1, anon_sym_SQUOTE, - ACTIONS(367), 1, + ACTIONS(351), 1, anon_sym_LPAREN, - ACTIONS(371), 1, + ACTIONS(355), 1, aux_sym_unary_expression_token1, - ACTIONS(373), 1, + ACTIONS(357), 1, aux_sym_unary_expression_token2, - ACTIONS(375), 1, + ACTIONS(359), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(377), 1, + ACTIONS(361), 1, aux_sym_current_changed_expression_token1, - ACTIONS(379), 1, + ACTIONS(363), 1, aux_sym_locked_expression_token1, - ACTIONS(381), 1, + ACTIONS(365), 1, aux_sym_input_expression_token1, - ACTIONS(383), 1, + ACTIONS(367), 1, aux_sym_scope_tuning_token1, - ACTIONS(387), 1, + ACTIONS(371), 1, aux_sym_if_statement_token1, - ACTIONS(389), 1, + ACTIONS(373), 1, aux_sym_can_find_expression_token1, - ACTIONS(393), 1, + ACTIONS(377), 1, aux_sym_accumulate_expression_token1, - ACTIONS(709), 1, + ACTIONS(703), 1, anon_sym_RPAREN, - STATE(36), 1, + STATE(23), 1, sym__decimal_literal, - STATE(38), 1, + STATE(29), 1, sym_object_access, - STATE(862), 1, + STATE(967), 1, sym__expression, - STATE(3086), 1, + STATE(3202), 1, sym_function_call_argument, - STATE(3632), 1, + STATE(3733), 1, sym__function_argument_with_mode, - STATE(4604), 1, + STATE(4685), 1, sym_argument_mode, - STATE(4618), 1, + STATE(4691), 1, sym__function_call_arguments, - ACTIONS(385), 2, + ACTIONS(369), 2, aux_sym_argument_mode_token1, aux_sym_argument_mode_token2, - ACTIONS(395), 2, + ACTIONS(379), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(21), 2, + STATE(18), 2, sym_double_quoted_string, sym_single_quoted_string, - STATE(311), 2, + STATE(318), 2, sym_comment, sym_include, - ACTIONS(359), 4, + ACTIONS(343), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(37), 4, + STATE(24), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(13), 18, + STATE(20), 18, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -50383,84 +51284,84 @@ static const uint16_t ts_small_parse_table[] = { sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [1715] = 34, + [1975] = 34, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(353), 1, + ACTIONS(337), 1, sym_identifier, - ACTIONS(355), 1, + ACTIONS(339), 1, anon_sym_LBRACE, - ACTIONS(357), 1, + ACTIONS(341), 1, sym_null_expression, - ACTIONS(361), 1, + ACTIONS(345), 1, sym__integer_literal, - ACTIONS(363), 1, + ACTIONS(347), 1, anon_sym_DQUOTE, - ACTIONS(365), 1, + ACTIONS(349), 1, anon_sym_SQUOTE, - ACTIONS(367), 1, + ACTIONS(351), 1, anon_sym_LPAREN, - ACTIONS(371), 1, + ACTIONS(355), 1, aux_sym_unary_expression_token1, - ACTIONS(373), 1, + ACTIONS(357), 1, aux_sym_unary_expression_token2, - ACTIONS(375), 1, + ACTIONS(359), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(377), 1, + ACTIONS(361), 1, aux_sym_current_changed_expression_token1, - ACTIONS(379), 1, + ACTIONS(363), 1, aux_sym_locked_expression_token1, - ACTIONS(381), 1, + ACTIONS(365), 1, aux_sym_input_expression_token1, - ACTIONS(383), 1, + ACTIONS(367), 1, aux_sym_scope_tuning_token1, - ACTIONS(387), 1, + ACTIONS(371), 1, aux_sym_if_statement_token1, - ACTIONS(389), 1, + ACTIONS(373), 1, aux_sym_can_find_expression_token1, - ACTIONS(393), 1, + ACTIONS(377), 1, aux_sym_accumulate_expression_token1, - ACTIONS(711), 1, + ACTIONS(713), 1, anon_sym_RPAREN, - STATE(36), 1, + STATE(23), 1, sym__decimal_literal, - STATE(38), 1, + STATE(29), 1, sym_object_access, - STATE(862), 1, + STATE(877), 1, sym__expression, - STATE(3086), 1, + STATE(3202), 1, sym_function_call_argument, - STATE(3632), 1, + STATE(3733), 1, sym__function_argument_with_mode, - STATE(4539), 1, + STATE(4361), 1, sym__function_call_arguments, - STATE(4604), 1, + STATE(4685), 1, sym_argument_mode, - ACTIONS(385), 2, + ACTIONS(369), 2, aux_sym_argument_mode_token1, aux_sym_argument_mode_token2, - ACTIONS(395), 2, + ACTIONS(379), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(21), 2, + STATE(18), 2, sym_double_quoted_string, sym_single_quoted_string, - STATE(312), 2, + STATE(319), 2, sym_comment, sym_include, - ACTIONS(359), 4, + ACTIONS(343), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(37), 4, + STATE(24), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(13), 18, + STATE(20), 18, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -50479,84 +51380,84 @@ static const uint16_t ts_small_parse_table[] = { sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [1845] = 34, + [2105] = 34, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(353), 1, + ACTIONS(337), 1, sym_identifier, - ACTIONS(355), 1, + ACTIONS(339), 1, anon_sym_LBRACE, - ACTIONS(357), 1, + ACTIONS(341), 1, sym_null_expression, - ACTIONS(361), 1, + ACTIONS(345), 1, sym__integer_literal, - ACTIONS(363), 1, + ACTIONS(347), 1, anon_sym_DQUOTE, - ACTIONS(365), 1, + ACTIONS(349), 1, anon_sym_SQUOTE, - ACTIONS(367), 1, + ACTIONS(351), 1, anon_sym_LPAREN, - ACTIONS(371), 1, + ACTIONS(355), 1, aux_sym_unary_expression_token1, - ACTIONS(373), 1, + ACTIONS(357), 1, aux_sym_unary_expression_token2, - ACTIONS(375), 1, + ACTIONS(359), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(377), 1, + ACTIONS(361), 1, aux_sym_current_changed_expression_token1, - ACTIONS(379), 1, + ACTIONS(363), 1, aux_sym_locked_expression_token1, - ACTIONS(381), 1, + ACTIONS(365), 1, aux_sym_input_expression_token1, - ACTIONS(383), 1, + ACTIONS(367), 1, aux_sym_scope_tuning_token1, - ACTIONS(387), 1, + ACTIONS(371), 1, aux_sym_if_statement_token1, - ACTIONS(389), 1, + ACTIONS(373), 1, aux_sym_can_find_expression_token1, - ACTIONS(393), 1, + ACTIONS(377), 1, aux_sym_accumulate_expression_token1, - ACTIONS(713), 1, + ACTIONS(715), 1, anon_sym_RPAREN, - STATE(36), 1, + STATE(23), 1, sym__decimal_literal, - STATE(38), 1, + STATE(29), 1, sym_object_access, - STATE(862), 1, + STATE(877), 1, sym__expression, - STATE(3086), 1, + STATE(3202), 1, sym_function_call_argument, - STATE(3632), 1, + STATE(3733), 1, sym__function_argument_with_mode, - STATE(4254), 1, + STATE(4399), 1, sym__function_call_arguments, - STATE(4604), 1, + STATE(4685), 1, sym_argument_mode, - ACTIONS(385), 2, + ACTIONS(369), 2, aux_sym_argument_mode_token1, aux_sym_argument_mode_token2, - ACTIONS(395), 2, + ACTIONS(379), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(21), 2, + STATE(18), 2, sym_double_quoted_string, sym_single_quoted_string, - STATE(313), 2, + STATE(320), 2, sym_comment, sym_include, - ACTIONS(359), 4, + ACTIONS(343), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(37), 4, + STATE(24), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(13), 18, + STATE(20), 18, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -50575,84 +51476,84 @@ static const uint16_t ts_small_parse_table[] = { sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [1975] = 34, + [2235] = 34, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(353), 1, + ACTIONS(337), 1, sym_identifier, - ACTIONS(355), 1, + ACTIONS(339), 1, anon_sym_LBRACE, - ACTIONS(357), 1, + ACTIONS(341), 1, sym_null_expression, - ACTIONS(361), 1, + ACTIONS(345), 1, sym__integer_literal, - ACTIONS(363), 1, + ACTIONS(347), 1, anon_sym_DQUOTE, - ACTIONS(365), 1, + ACTIONS(349), 1, anon_sym_SQUOTE, - ACTIONS(367), 1, + ACTIONS(351), 1, anon_sym_LPAREN, - ACTIONS(371), 1, + ACTIONS(355), 1, aux_sym_unary_expression_token1, - ACTIONS(373), 1, + ACTIONS(357), 1, aux_sym_unary_expression_token2, - ACTIONS(375), 1, + ACTIONS(359), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(377), 1, + ACTIONS(361), 1, aux_sym_current_changed_expression_token1, - ACTIONS(379), 1, + ACTIONS(363), 1, aux_sym_locked_expression_token1, - ACTIONS(381), 1, + ACTIONS(365), 1, aux_sym_input_expression_token1, - ACTIONS(383), 1, + ACTIONS(367), 1, aux_sym_scope_tuning_token1, - ACTIONS(387), 1, + ACTIONS(371), 1, aux_sym_if_statement_token1, - ACTIONS(389), 1, + ACTIONS(373), 1, aux_sym_can_find_expression_token1, - ACTIONS(393), 1, + ACTIONS(377), 1, aux_sym_accumulate_expression_token1, - ACTIONS(715), 1, + ACTIONS(717), 1, anon_sym_RPAREN, - STATE(36), 1, + STATE(23), 1, sym__decimal_literal, - STATE(38), 1, + STATE(29), 1, sym_object_access, - STATE(862), 1, + STATE(877), 1, sym__expression, - STATE(3086), 1, + STATE(3202), 1, sym_function_call_argument, - STATE(3632), 1, + STATE(3733), 1, sym__function_argument_with_mode, - STATE(4442), 1, - sym__function_call_arguments, - STATE(4604), 1, + STATE(4685), 1, sym_argument_mode, - ACTIONS(385), 2, + STATE(4823), 1, + sym__function_call_arguments, + ACTIONS(369), 2, aux_sym_argument_mode_token1, aux_sym_argument_mode_token2, - ACTIONS(395), 2, + ACTIONS(379), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(21), 2, + STATE(18), 2, sym_double_quoted_string, sym_single_quoted_string, - STATE(314), 2, + STATE(321), 2, sym_comment, sym_include, - ACTIONS(359), 4, + ACTIONS(343), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(37), 4, + STATE(24), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(13), 18, + STATE(20), 18, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -50671,84 +51572,84 @@ static const uint16_t ts_small_parse_table[] = { sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [2105] = 34, + [2365] = 34, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(353), 1, + ACTIONS(337), 1, sym_identifier, - ACTIONS(355), 1, + ACTIONS(339), 1, anon_sym_LBRACE, - ACTIONS(357), 1, + ACTIONS(341), 1, sym_null_expression, - ACTIONS(361), 1, + ACTIONS(345), 1, sym__integer_literal, - ACTIONS(363), 1, + ACTIONS(347), 1, anon_sym_DQUOTE, - ACTIONS(365), 1, + ACTIONS(349), 1, anon_sym_SQUOTE, - ACTIONS(367), 1, + ACTIONS(351), 1, anon_sym_LPAREN, - ACTIONS(371), 1, + ACTIONS(355), 1, aux_sym_unary_expression_token1, - ACTIONS(373), 1, + ACTIONS(357), 1, aux_sym_unary_expression_token2, - ACTIONS(375), 1, + ACTIONS(359), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(377), 1, + ACTIONS(361), 1, aux_sym_current_changed_expression_token1, - ACTIONS(379), 1, + ACTIONS(363), 1, aux_sym_locked_expression_token1, - ACTIONS(381), 1, + ACTIONS(365), 1, aux_sym_input_expression_token1, - ACTIONS(383), 1, + ACTIONS(367), 1, aux_sym_scope_tuning_token1, - ACTIONS(387), 1, + ACTIONS(371), 1, aux_sym_if_statement_token1, - ACTIONS(389), 1, + ACTIONS(373), 1, aux_sym_can_find_expression_token1, - ACTIONS(393), 1, + ACTIONS(377), 1, aux_sym_accumulate_expression_token1, - ACTIONS(717), 1, + ACTIONS(719), 1, anon_sym_RPAREN, - STATE(36), 1, + STATE(23), 1, sym__decimal_literal, - STATE(38), 1, + STATE(29), 1, sym_object_access, - STATE(862), 1, + STATE(877), 1, sym__expression, - STATE(3086), 1, + STATE(3202), 1, sym_function_call_argument, - STATE(3632), 1, + STATE(3733), 1, sym__function_argument_with_mode, - STATE(4604), 1, + STATE(4685), 1, sym_argument_mode, - STATE(4611), 1, + STATE(4766), 1, sym__function_call_arguments, - ACTIONS(385), 2, + ACTIONS(369), 2, aux_sym_argument_mode_token1, aux_sym_argument_mode_token2, - ACTIONS(395), 2, + ACTIONS(379), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(21), 2, + STATE(18), 2, sym_double_quoted_string, sym_single_quoted_string, - STATE(315), 2, + STATE(322), 2, sym_comment, sym_include, - ACTIONS(359), 4, + ACTIONS(343), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(37), 4, + STATE(24), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(13), 18, + STATE(20), 18, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -50767,180 +51668,84 @@ static const uint16_t ts_small_parse_table[] = { sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [2235] = 34, + [2495] = 34, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(353), 1, + ACTIONS(337), 1, sym_identifier, - ACTIONS(355), 1, + ACTIONS(339), 1, anon_sym_LBRACE, - ACTIONS(357), 1, + ACTIONS(341), 1, sym_null_expression, - ACTIONS(361), 1, + ACTIONS(345), 1, sym__integer_literal, - ACTIONS(363), 1, + ACTIONS(347), 1, anon_sym_DQUOTE, - ACTIONS(365), 1, + ACTIONS(349), 1, anon_sym_SQUOTE, - ACTIONS(367), 1, + ACTIONS(351), 1, anon_sym_LPAREN, - ACTIONS(371), 1, - aux_sym_unary_expression_token1, - ACTIONS(373), 1, - aux_sym_unary_expression_token2, - ACTIONS(375), 1, - aux_sym_ambiguous_expression_token1, - ACTIONS(377), 1, - aux_sym_current_changed_expression_token1, - ACTIONS(379), 1, - aux_sym_locked_expression_token1, - ACTIONS(381), 1, - aux_sym_input_expression_token1, - ACTIONS(383), 1, - aux_sym_scope_tuning_token1, - ACTIONS(387), 1, - aux_sym_if_statement_token1, - ACTIONS(389), 1, - aux_sym_can_find_expression_token1, - ACTIONS(393), 1, - aux_sym_accumulate_expression_token1, - ACTIONS(719), 1, - anon_sym_RPAREN, - STATE(36), 1, - sym__decimal_literal, - STATE(38), 1, - sym_object_access, - STATE(862), 1, - sym__expression, - STATE(3086), 1, - sym_function_call_argument, - STATE(3632), 1, - sym__function_argument_with_mode, - STATE(4338), 1, - sym__function_call_arguments, - STATE(4604), 1, - sym_argument_mode, - ACTIONS(385), 2, - aux_sym_argument_mode_token1, - aux_sym_argument_mode_token2, - ACTIONS(395), 2, - aux_sym_available_expression_token1, - aux_sym_available_expression_token2, - STATE(21), 2, - sym_double_quoted_string, - sym_single_quoted_string, - STATE(316), 2, - sym_comment, - sym_include, - ACTIONS(359), 4, - aux_sym_boolean_literal_token1, - aux_sym_boolean_literal_token2, - aux_sym_boolean_literal_token3, - aux_sym_boolean_literal_token4, - STATE(37), 4, - sym_logical_expression, - sym_additive_expression, - sym_multiplicative_expression, - sym_comparison_expression, - STATE(13), 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, - [2365] = 34, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - ACTIONS(353), 1, - sym_identifier, ACTIONS(355), 1, - anon_sym_LBRACE, - ACTIONS(357), 1, - sym_null_expression, - ACTIONS(361), 1, - sym__integer_literal, - ACTIONS(363), 1, - anon_sym_DQUOTE, - ACTIONS(365), 1, - anon_sym_SQUOTE, - ACTIONS(367), 1, - anon_sym_LPAREN, - ACTIONS(371), 1, aux_sym_unary_expression_token1, - ACTIONS(373), 1, + ACTIONS(357), 1, aux_sym_unary_expression_token2, - ACTIONS(375), 1, + ACTIONS(359), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(377), 1, + ACTIONS(361), 1, aux_sym_current_changed_expression_token1, - ACTIONS(379), 1, + ACTIONS(363), 1, aux_sym_locked_expression_token1, - ACTIONS(381), 1, + ACTIONS(365), 1, aux_sym_input_expression_token1, - ACTIONS(383), 1, + ACTIONS(367), 1, aux_sym_scope_tuning_token1, - ACTIONS(387), 1, + ACTIONS(371), 1, aux_sym_if_statement_token1, - ACTIONS(389), 1, + ACTIONS(373), 1, aux_sym_can_find_expression_token1, - ACTIONS(393), 1, + ACTIONS(377), 1, aux_sym_accumulate_expression_token1, ACTIONS(721), 1, anon_sym_RPAREN, - STATE(36), 1, + STATE(23), 1, sym__decimal_literal, - STATE(38), 1, + STATE(29), 1, sym_object_access, - STATE(862), 1, + STATE(877), 1, sym__expression, - STATE(3086), 1, + STATE(3202), 1, sym_function_call_argument, - STATE(3632), 1, + STATE(3733), 1, sym__function_argument_with_mode, - STATE(4602), 1, - sym__function_call_arguments, - STATE(4604), 1, + STATE(4685), 1, sym_argument_mode, - ACTIONS(385), 2, + STATE(4758), 1, + sym__function_call_arguments, + ACTIONS(369), 2, aux_sym_argument_mode_token1, aux_sym_argument_mode_token2, - ACTIONS(395), 2, + ACTIONS(379), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(21), 2, + STATE(18), 2, sym_double_quoted_string, sym_single_quoted_string, - STATE(317), 2, + STATE(323), 2, sym_comment, sym_include, - ACTIONS(359), 4, + ACTIONS(343), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(37), 4, + STATE(24), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(13), 18, + STATE(20), 18, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -50959,84 +51764,84 @@ static const uint16_t ts_small_parse_table[] = { sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [2495] = 34, + [2625] = 34, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(353), 1, + ACTIONS(337), 1, sym_identifier, - ACTIONS(355), 1, + ACTIONS(339), 1, anon_sym_LBRACE, - ACTIONS(357), 1, + ACTIONS(341), 1, sym_null_expression, - ACTIONS(361), 1, + ACTIONS(345), 1, sym__integer_literal, - ACTIONS(363), 1, + ACTIONS(347), 1, anon_sym_DQUOTE, - ACTIONS(365), 1, + ACTIONS(349), 1, anon_sym_SQUOTE, - ACTIONS(367), 1, + ACTIONS(351), 1, anon_sym_LPAREN, - ACTIONS(371), 1, + ACTIONS(355), 1, aux_sym_unary_expression_token1, - ACTIONS(373), 1, + ACTIONS(357), 1, aux_sym_unary_expression_token2, - ACTIONS(375), 1, + ACTIONS(359), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(377), 1, + ACTIONS(361), 1, aux_sym_current_changed_expression_token1, - ACTIONS(379), 1, + ACTIONS(363), 1, aux_sym_locked_expression_token1, - ACTIONS(381), 1, + ACTIONS(365), 1, aux_sym_input_expression_token1, - ACTIONS(383), 1, + ACTIONS(367), 1, aux_sym_scope_tuning_token1, - ACTIONS(387), 1, + ACTIONS(371), 1, aux_sym_if_statement_token1, - ACTIONS(389), 1, + ACTIONS(373), 1, aux_sym_can_find_expression_token1, - ACTIONS(393), 1, + ACTIONS(377), 1, aux_sym_accumulate_expression_token1, ACTIONS(723), 1, anon_sym_RPAREN, - STATE(36), 1, + STATE(23), 1, sym__decimal_literal, - STATE(38), 1, + STATE(29), 1, sym_object_access, - STATE(862), 1, + STATE(877), 1, sym__expression, - STATE(3086), 1, + STATE(3202), 1, sym_function_call_argument, - STATE(3632), 1, + STATE(3733), 1, sym__function_argument_with_mode, - STATE(4389), 1, - sym__function_call_arguments, - STATE(4604), 1, + STATE(4685), 1, sym_argument_mode, - ACTIONS(385), 2, + STATE(4750), 1, + sym__function_call_arguments, + ACTIONS(369), 2, aux_sym_argument_mode_token1, aux_sym_argument_mode_token2, - ACTIONS(395), 2, + ACTIONS(379), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(21), 2, + STATE(18), 2, sym_double_quoted_string, sym_single_quoted_string, - STATE(318), 2, + STATE(324), 2, sym_comment, sym_include, - ACTIONS(359), 4, + ACTIONS(343), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(37), 4, + STATE(24), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(13), 18, + STATE(20), 18, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -51055,180 +51860,84 @@ static const uint16_t ts_small_parse_table[] = { sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [2625] = 34, + [2755] = 34, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(353), 1, + ACTIONS(337), 1, sym_identifier, - ACTIONS(355), 1, + ACTIONS(339), 1, anon_sym_LBRACE, - ACTIONS(357), 1, + ACTIONS(341), 1, sym_null_expression, - ACTIONS(361), 1, + ACTIONS(345), 1, sym__integer_literal, - ACTIONS(363), 1, + ACTIONS(347), 1, anon_sym_DQUOTE, - ACTIONS(365), 1, + ACTIONS(349), 1, anon_sym_SQUOTE, - ACTIONS(367), 1, + ACTIONS(351), 1, anon_sym_LPAREN, - ACTIONS(371), 1, + ACTIONS(355), 1, aux_sym_unary_expression_token1, - ACTIONS(373), 1, + ACTIONS(357), 1, aux_sym_unary_expression_token2, - ACTIONS(375), 1, + ACTIONS(359), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(377), 1, + ACTIONS(361), 1, aux_sym_current_changed_expression_token1, - ACTIONS(379), 1, + ACTIONS(363), 1, aux_sym_locked_expression_token1, - ACTIONS(381), 1, + ACTIONS(365), 1, aux_sym_input_expression_token1, - ACTIONS(383), 1, + ACTIONS(367), 1, aux_sym_scope_tuning_token1, - ACTIONS(387), 1, + ACTIONS(371), 1, aux_sym_if_statement_token1, - ACTIONS(389), 1, + ACTIONS(373), 1, aux_sym_can_find_expression_token1, - ACTIONS(393), 1, + ACTIONS(377), 1, aux_sym_accumulate_expression_token1, ACTIONS(725), 1, anon_sym_RPAREN, - STATE(36), 1, + STATE(23), 1, sym__decimal_literal, - STATE(38), 1, + STATE(29), 1, sym_object_access, - STATE(862), 1, + STATE(877), 1, sym__expression, - STATE(3086), 1, + STATE(3202), 1, sym_function_call_argument, - STATE(3632), 1, + STATE(3733), 1, sym__function_argument_with_mode, - STATE(4458), 1, - sym__function_call_arguments, - STATE(4604), 1, + STATE(4685), 1, sym_argument_mode, - ACTIONS(385), 2, - aux_sym_argument_mode_token1, - aux_sym_argument_mode_token2, - ACTIONS(395), 2, - aux_sym_available_expression_token1, - aux_sym_available_expression_token2, - STATE(21), 2, - sym_double_quoted_string, - sym_single_quoted_string, - STATE(319), 2, - sym_comment, - sym_include, - ACTIONS(359), 4, - aux_sym_boolean_literal_token1, - aux_sym_boolean_literal_token2, - aux_sym_boolean_literal_token3, - aux_sym_boolean_literal_token4, - STATE(37), 4, - sym_logical_expression, - sym_additive_expression, - sym_multiplicative_expression, - sym_comparison_expression, - STATE(13), 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, - [2755] = 34, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - ACTIONS(353), 1, - sym_identifier, - ACTIONS(355), 1, - anon_sym_LBRACE, - ACTIONS(357), 1, - sym_null_expression, - ACTIONS(361), 1, - sym__integer_literal, - ACTIONS(363), 1, - anon_sym_DQUOTE, - ACTIONS(365), 1, - anon_sym_SQUOTE, - ACTIONS(367), 1, - anon_sym_LPAREN, - ACTIONS(369), 1, - anon_sym_RPAREN, - ACTIONS(371), 1, - aux_sym_unary_expression_token1, - ACTIONS(373), 1, - aux_sym_unary_expression_token2, - ACTIONS(375), 1, - aux_sym_ambiguous_expression_token1, - ACTIONS(377), 1, - aux_sym_current_changed_expression_token1, - ACTIONS(379), 1, - aux_sym_locked_expression_token1, - ACTIONS(381), 1, - aux_sym_input_expression_token1, - ACTIONS(383), 1, - aux_sym_scope_tuning_token1, - ACTIONS(387), 1, - aux_sym_if_statement_token1, - ACTIONS(389), 1, - aux_sym_can_find_expression_token1, - ACTIONS(393), 1, - aux_sym_accumulate_expression_token1, - STATE(36), 1, - sym__decimal_literal, - STATE(38), 1, - sym_object_access, - STATE(862), 1, - sym__expression, - STATE(3086), 1, - sym_function_call_argument, - STATE(3632), 1, - sym__function_argument_with_mode, - STATE(4332), 1, + STATE(4799), 1, sym__function_call_arguments, - STATE(4604), 1, - sym_argument_mode, - ACTIONS(385), 2, + ACTIONS(369), 2, aux_sym_argument_mode_token1, aux_sym_argument_mode_token2, - ACTIONS(395), 2, + ACTIONS(379), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(21), 2, + STATE(18), 2, sym_double_quoted_string, sym_single_quoted_string, - STATE(320), 2, + STATE(325), 2, sym_comment, sym_include, - ACTIONS(359), 4, + ACTIONS(343), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(37), 4, + STATE(24), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(13), 18, + STATE(20), 18, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -51252,79 +51961,79 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(353), 1, + ACTIONS(337), 1, sym_identifier, - ACTIONS(355), 1, + ACTIONS(339), 1, anon_sym_LBRACE, - ACTIONS(357), 1, + ACTIONS(341), 1, sym_null_expression, - ACTIONS(361), 1, + ACTIONS(345), 1, sym__integer_literal, - ACTIONS(363), 1, + ACTIONS(347), 1, anon_sym_DQUOTE, - ACTIONS(365), 1, + ACTIONS(349), 1, anon_sym_SQUOTE, - ACTIONS(367), 1, + ACTIONS(351), 1, anon_sym_LPAREN, - ACTIONS(371), 1, + ACTIONS(355), 1, aux_sym_unary_expression_token1, - ACTIONS(373), 1, + ACTIONS(357), 1, aux_sym_unary_expression_token2, - ACTIONS(375), 1, + ACTIONS(359), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(377), 1, + ACTIONS(361), 1, aux_sym_current_changed_expression_token1, - ACTIONS(379), 1, + ACTIONS(363), 1, aux_sym_locked_expression_token1, - ACTIONS(381), 1, + ACTIONS(365), 1, aux_sym_input_expression_token1, - ACTIONS(383), 1, + ACTIONS(367), 1, aux_sym_scope_tuning_token1, - ACTIONS(387), 1, + ACTIONS(371), 1, aux_sym_if_statement_token1, - ACTIONS(389), 1, + ACTIONS(373), 1, aux_sym_can_find_expression_token1, - ACTIONS(393), 1, + ACTIONS(377), 1, aux_sym_accumulate_expression_token1, - ACTIONS(699), 1, + ACTIONS(727), 1, anon_sym_RPAREN, - STATE(36), 1, + STATE(23), 1, sym__decimal_literal, - STATE(38), 1, + STATE(29), 1, sym_object_access, - STATE(862), 1, + STATE(877), 1, sym__expression, - STATE(3086), 1, + STATE(3202), 1, sym_function_call_argument, - STATE(3632), 1, + STATE(3733), 1, sym__function_argument_with_mode, - STATE(4604), 1, + STATE(4685), 1, sym_argument_mode, - STATE(4610), 1, + STATE(4705), 1, sym__function_call_arguments, - ACTIONS(385), 2, + ACTIONS(369), 2, aux_sym_argument_mode_token1, aux_sym_argument_mode_token2, - ACTIONS(395), 2, + ACTIONS(379), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(21), 2, + STATE(18), 2, sym_double_quoted_string, sym_single_quoted_string, - STATE(321), 2, + STATE(326), 2, sym_comment, sym_include, - ACTIONS(359), 4, + ACTIONS(343), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(37), 4, + STATE(24), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(13), 18, + STATE(20), 18, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -51348,79 +52057,79 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(353), 1, + ACTIONS(337), 1, sym_identifier, - ACTIONS(355), 1, + ACTIONS(339), 1, anon_sym_LBRACE, - ACTIONS(357), 1, + ACTIONS(341), 1, sym_null_expression, - ACTIONS(361), 1, + ACTIONS(345), 1, sym__integer_literal, - ACTIONS(363), 1, + ACTIONS(347), 1, anon_sym_DQUOTE, - ACTIONS(365), 1, + ACTIONS(349), 1, anon_sym_SQUOTE, - ACTIONS(367), 1, + ACTIONS(351), 1, anon_sym_LPAREN, - ACTIONS(371), 1, + ACTIONS(355), 1, aux_sym_unary_expression_token1, - ACTIONS(373), 1, + ACTIONS(357), 1, aux_sym_unary_expression_token2, - ACTIONS(375), 1, + ACTIONS(359), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(377), 1, + ACTIONS(361), 1, aux_sym_current_changed_expression_token1, - ACTIONS(379), 1, + ACTIONS(363), 1, aux_sym_locked_expression_token1, - ACTIONS(381), 1, + ACTIONS(365), 1, aux_sym_input_expression_token1, - ACTIONS(383), 1, + ACTIONS(367), 1, aux_sym_scope_tuning_token1, - ACTIONS(387), 1, + ACTIONS(371), 1, aux_sym_if_statement_token1, - ACTIONS(389), 1, + ACTIONS(373), 1, aux_sym_can_find_expression_token1, - ACTIONS(393), 1, + ACTIONS(377), 1, aux_sym_accumulate_expression_token1, - ACTIONS(727), 1, + ACTIONS(729), 1, anon_sym_RPAREN, - STATE(36), 1, + STATE(23), 1, sym__decimal_literal, - STATE(38), 1, + STATE(29), 1, sym_object_access, - STATE(862), 1, + STATE(877), 1, sym__expression, - STATE(3086), 1, + STATE(3202), 1, sym_function_call_argument, - STATE(3632), 1, + STATE(3733), 1, sym__function_argument_with_mode, - STATE(4604), 1, - sym_argument_mode, - STATE(4605), 1, + STATE(4637), 1, sym__function_call_arguments, - ACTIONS(385), 2, + STATE(4685), 1, + sym_argument_mode, + ACTIONS(369), 2, aux_sym_argument_mode_token1, aux_sym_argument_mode_token2, - ACTIONS(395), 2, + ACTIONS(379), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(21), 2, + STATE(18), 2, sym_double_quoted_string, sym_single_quoted_string, - STATE(322), 2, + STATE(327), 2, sym_comment, sym_include, - ACTIONS(359), 4, + ACTIONS(343), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(37), 4, + STATE(24), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(13), 18, + STATE(20), 18, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -51444,79 +52153,79 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(353), 1, + ACTIONS(337), 1, sym_identifier, - ACTIONS(355), 1, + ACTIONS(339), 1, anon_sym_LBRACE, - ACTIONS(357), 1, + ACTIONS(341), 1, sym_null_expression, - ACTIONS(361), 1, + ACTIONS(345), 1, sym__integer_literal, - ACTIONS(363), 1, + ACTIONS(347), 1, anon_sym_DQUOTE, - ACTIONS(365), 1, + ACTIONS(349), 1, anon_sym_SQUOTE, - ACTIONS(367), 1, + ACTIONS(351), 1, anon_sym_LPAREN, - ACTIONS(371), 1, + ACTIONS(353), 1, + anon_sym_RPAREN, + ACTIONS(355), 1, aux_sym_unary_expression_token1, - ACTIONS(373), 1, + ACTIONS(357), 1, aux_sym_unary_expression_token2, - ACTIONS(375), 1, + ACTIONS(359), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(377), 1, + ACTIONS(361), 1, aux_sym_current_changed_expression_token1, - ACTIONS(379), 1, + ACTIONS(363), 1, aux_sym_locked_expression_token1, - ACTIONS(381), 1, + ACTIONS(365), 1, aux_sym_input_expression_token1, - ACTIONS(383), 1, + ACTIONS(367), 1, aux_sym_scope_tuning_token1, - ACTIONS(387), 1, + ACTIONS(371), 1, aux_sym_if_statement_token1, - ACTIONS(389), 1, + ACTIONS(373), 1, aux_sym_can_find_expression_token1, - ACTIONS(393), 1, + ACTIONS(377), 1, aux_sym_accumulate_expression_token1, - ACTIONS(729), 1, - anon_sym_RPAREN, - STATE(36), 1, + STATE(23), 1, sym__decimal_literal, - STATE(38), 1, + STATE(29), 1, sym_object_access, - STATE(862), 1, + STATE(877), 1, sym__expression, - STATE(3086), 1, + STATE(3202), 1, sym_function_call_argument, - STATE(3632), 1, + STATE(3733), 1, sym__function_argument_with_mode, - STATE(4288), 1, + STATE(4297), 1, sym__function_call_arguments, - STATE(4604), 1, + STATE(4685), 1, sym_argument_mode, - ACTIONS(385), 2, + ACTIONS(369), 2, aux_sym_argument_mode_token1, aux_sym_argument_mode_token2, - ACTIONS(395), 2, + ACTIONS(379), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(21), 2, + STATE(18), 2, sym_double_quoted_string, sym_single_quoted_string, - STATE(323), 2, + STATE(328), 2, sym_comment, sym_include, - ACTIONS(359), 4, + ACTIONS(343), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(37), 4, + STATE(24), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(13), 18, + STATE(20), 18, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -51540,75 +52249,75 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(353), 1, + ACTIONS(337), 1, sym_identifier, - ACTIONS(355), 1, + ACTIONS(339), 1, anon_sym_LBRACE, - ACTIONS(357), 1, + ACTIONS(341), 1, sym_null_expression, - ACTIONS(361), 1, + ACTIONS(345), 1, sym__integer_literal, - ACTIONS(363), 1, + ACTIONS(347), 1, anon_sym_DQUOTE, - ACTIONS(365), 1, + ACTIONS(349), 1, anon_sym_SQUOTE, - ACTIONS(367), 1, + ACTIONS(351), 1, anon_sym_LPAREN, - ACTIONS(371), 1, + ACTIONS(355), 1, aux_sym_unary_expression_token1, - ACTIONS(373), 1, + ACTIONS(357), 1, aux_sym_unary_expression_token2, - ACTIONS(375), 1, + ACTIONS(359), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(377), 1, + ACTIONS(361), 1, aux_sym_current_changed_expression_token1, - ACTIONS(379), 1, + ACTIONS(363), 1, aux_sym_locked_expression_token1, - ACTIONS(381), 1, + ACTIONS(365), 1, aux_sym_input_expression_token1, - ACTIONS(383), 1, + ACTIONS(367), 1, aux_sym_scope_tuning_token1, - ACTIONS(387), 1, + ACTIONS(371), 1, aux_sym_if_statement_token1, - ACTIONS(389), 1, + ACTIONS(373), 1, aux_sym_can_find_expression_token1, - ACTIONS(393), 1, + ACTIONS(377), 1, aux_sym_accumulate_expression_token1, - STATE(36), 1, + STATE(23), 1, sym__decimal_literal, - STATE(38), 1, + STATE(29), 1, sym_object_access, - STATE(862), 1, + STATE(877), 1, sym__expression, - STATE(3632), 1, + STATE(3733), 1, sym__function_argument_with_mode, - STATE(3848), 1, + STATE(3935), 1, sym_function_call_argument, - STATE(4604), 1, + STATE(4685), 1, sym_argument_mode, - ACTIONS(385), 2, + ACTIONS(369), 2, aux_sym_argument_mode_token1, aux_sym_argument_mode_token2, - ACTIONS(395), 2, + ACTIONS(379), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(21), 2, + STATE(18), 2, sym_double_quoted_string, sym_single_quoted_string, - STATE(324), 2, + STATE(329), 2, sym_comment, sym_include, - ACTIONS(359), 4, + ACTIONS(343), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(37), 4, + STATE(24), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(13), 18, + STATE(20), 18, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -51666,15 +52375,15 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_assign_statement_token1, ACTIONS(763), 1, aux_sym_accumulate_statement_token1, - STATE(3144), 1, + STATE(3213), 1, sym_label, - STATE(3567), 1, + STATE(3661), 1, sym_object_access, - STATE(4276), 1, + STATE(4639), 1, sym_assignment, - STATE(4280), 1, + STATE(4657), 1, sym_function_call, - STATE(4733), 1, + STATE(4814), 1, sym_qualified_name, ACTIONS(737), 2, aux_sym_variable_definition_token1, @@ -51682,16 +52391,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(765), 2, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - STATE(325), 2, + STATE(330), 2, sym_comment, sym_include, - STATE(881), 2, + STATE(1083), 2, sym_input_stream_statement, sym_output_stream_statement, - STATE(926), 2, + STATE(1124), 2, sym_do_block, sym__terminated_statement, - STATE(868), 23, + STATE(919), 23, sym_variable_definition, sym_variable_assignment, sym_buffer_definition, @@ -51733,53 +52442,53 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(777), 1, aux_sym_argument_mode_token1, ACTIONS(779), 1, - aux_sym_repeat_statement_token1, + aux_sym_if_statement_token1, ACTIONS(781), 1, - aux_sym_procedure_parameter_definition_token1, + aux_sym_repeat_statement_token1, ACTIONS(783), 1, - aux_sym_interface_statement_token1, + aux_sym_procedure_parameter_definition_token1, ACTIONS(785), 1, - aux_sym_on_error_phrase_token1, + aux_sym_interface_statement_token1, ACTIONS(787), 1, - aux_sym_on_error_phrase_token3, + aux_sym_on_error_phrase_token1, ACTIONS(789), 1, - aux_sym_do_block_token1, + aux_sym_on_error_phrase_token3, ACTIONS(791), 1, - aux_sym__case_terminator_token1, + aux_sym_do_block_token1, ACTIONS(793), 1, - aux_sym_find_statement_token1, + aux_sym__case_terminator_token1, ACTIONS(795), 1, - aux_sym_assign_statement_token1, + aux_sym_find_statement_token1, ACTIONS(797), 1, + aux_sym_assign_statement_token1, + ACTIONS(799), 1, aux_sym_accumulate_statement_token1, - STATE(3089), 1, + STATE(3256), 1, sym_label, - STATE(3567), 1, + STATE(3661), 1, sym_object_access, - STATE(4135), 1, - sym__case_branch_body, - STATE(4264), 1, + STATE(4251), 1, sym_assignment, - STATE(4267), 1, + STATE(4256), 1, sym_function_call, - STATE(4733), 1, + STATE(4814), 1, sym_qualified_name, ACTIONS(773), 2, aux_sym_variable_definition_token1, aux_sym_variable_definition_token2, - ACTIONS(799), 2, + ACTIONS(801), 2, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - STATE(326), 2, + STATE(331), 2, sym_comment, sym_include, - STATE(3240), 2, + STATE(892), 2, sym_do_block, sym__terminated_statement, - STATE(3470), 2, + STATE(970), 2, sym_input_stream_statement, sym_output_stream_statement, - STATE(3522), 23, + STATE(978), 23, sym_variable_definition, sym_variable_assignment, sym_buffer_definition, @@ -51810,64 +52519,64 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(767), 1, + ACTIONS(803), 1, sym_identifier, - ACTIONS(769), 1, + ACTIONS(805), 1, aux_sym_input_expression_token1, - ACTIONS(771), 1, + ACTIONS(807), 1, aux_sym_primitive_type_token19, - ACTIONS(775), 1, + ACTIONS(811), 1, aux_sym_buffer_definition_token2, - ACTIONS(777), 1, + ACTIONS(813), 1, aux_sym_argument_mode_token1, - ACTIONS(779), 1, + ACTIONS(815), 1, aux_sym_repeat_statement_token1, - ACTIONS(781), 1, + ACTIONS(817), 1, aux_sym_procedure_parameter_definition_token1, - ACTIONS(783), 1, + ACTIONS(819), 1, aux_sym_interface_statement_token1, - ACTIONS(785), 1, + ACTIONS(821), 1, aux_sym_on_error_phrase_token1, - ACTIONS(787), 1, + ACTIONS(823), 1, aux_sym_on_error_phrase_token3, - ACTIONS(789), 1, + ACTIONS(825), 1, aux_sym_do_block_token1, - ACTIONS(791), 1, + ACTIONS(827), 1, aux_sym__case_terminator_token1, - ACTIONS(793), 1, + ACTIONS(829), 1, aux_sym_find_statement_token1, - ACTIONS(795), 1, + ACTIONS(831), 1, aux_sym_assign_statement_token1, - ACTIONS(797), 1, + ACTIONS(833), 1, aux_sym_accumulate_statement_token1, - STATE(3089), 1, + STATE(3207), 1, sym_label, - STATE(3283), 1, - sym__case_branch_body, - STATE(3567), 1, + STATE(3661), 1, sym_object_access, - STATE(4264), 1, + STATE(4225), 1, sym_assignment, - STATE(4267), 1, + STATE(4232), 1, sym_function_call, - STATE(4733), 1, + STATE(4257), 1, + sym__case_branch_body, + STATE(4814), 1, sym_qualified_name, - ACTIONS(773), 2, + ACTIONS(809), 2, aux_sym_variable_definition_token1, aux_sym_variable_definition_token2, - ACTIONS(799), 2, + ACTIONS(835), 2, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - STATE(327), 2, + STATE(332), 2, sym_comment, sym_include, - STATE(3240), 2, + STATE(3336), 2, sym_do_block, sym__terminated_statement, - STATE(3470), 2, + STATE(3608), 2, sym_input_stream_statement, sym_output_stream_statement, - STATE(3522), 23, + STATE(3582), 23, sym_variable_definition, sym_variable_assignment, sym_buffer_definition, @@ -51898,18 +52607,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(801), 1, - sym_identifier, ACTIONS(803), 1, - aux_sym_input_expression_token1, + sym_identifier, ACTIONS(805), 1, + aux_sym_input_expression_token1, + ACTIONS(807), 1, aux_sym_primitive_type_token19, - ACTIONS(809), 1, - aux_sym_buffer_definition_token2, ACTIONS(811), 1, - aux_sym_argument_mode_token1, + aux_sym_buffer_definition_token2, ACTIONS(813), 1, - aux_sym_if_statement_token1, + aux_sym_argument_mode_token1, ACTIONS(815), 1, aux_sym_repeat_statement_token1, ACTIONS(817), 1, @@ -51930,32 +52637,34 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_assign_statement_token1, ACTIONS(833), 1, aux_sym_accumulate_statement_token1, - STATE(3093), 1, + STATE(3207), 1, sym_label, - STATE(3567), 1, + STATE(3359), 1, + sym__case_branch_body, + STATE(3661), 1, sym_object_access, - STATE(4518), 1, - sym_function_call, - STATE(4530), 1, + STATE(4225), 1, sym_assignment, - STATE(4733), 1, + STATE(4232), 1, + sym_function_call, + STATE(4814), 1, sym_qualified_name, - ACTIONS(807), 2, + ACTIONS(809), 2, aux_sym_variable_definition_token1, aux_sym_variable_definition_token2, ACTIONS(835), 2, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - STATE(328), 2, + STATE(333), 2, sym_comment, sym_include, - STATE(845), 2, + STATE(3336), 2, sym_do_block, sym__terminated_statement, - STATE(1118), 2, + STATE(3608), 2, sym_input_stream_statement, sym_output_stream_statement, - STATE(848), 23, + STATE(3582), 23, sym_variable_definition, sym_variable_assignment, sym_buffer_definition, @@ -51979,7 +52688,158 @@ static const uint16_t ts_small_parse_table[] = { sym_error_scope_statement, sym_temp_table_definition, sym_on_statement, - [3871] = 8, + [3871] = 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(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(837), 1, + sym__terminator, + ACTIONS(839), 1, + anon_sym_LPAREN, + STATE(338), 1, + aux_sym_abl_statement_repeat1, + STATE(531), 1, + sym__expression, + STATE(565), 1, + sym__decimal_literal, + STATE(587), 1, + sym_object_access, + ACTIONS(677), 2, + aux_sym_available_expression_token1, + aux_sym_available_expression_token2, + STATE(334), 2, + sym_comment, + sym_include, + STATE(580), 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(581), 4, + sym_logical_expression, + sym_additive_expression, + sym_multiplicative_expression, + sym_comparison_expression, + STATE(566), 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, + [3988] = 7, + ACTIONS(59), 1, + anon_sym_SLASH_SLASH, + ACTIONS(61), 1, + anon_sym_SLASH_STAR, + ACTIONS(65), 1, + anon_sym_LBRACE, + ACTIONS(841), 1, + sym__namedot, + ACTIONS(98), 2, + aux_sym_variable_definition_token2, + anon_sym_LIKE, + STATE(335), 3, + sym_comment, + sym_include, + aux_sym_qualified_name_repeat1, + ACTIONS(100), 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, + [4059] = 8, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, @@ -51988,15 +52848,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, ACTIONS(679), 1, sym__namedot, - STATE(331), 1, + STATE(335), 1, aux_sym_qualified_name_repeat1, - ACTIONS(91), 2, + ACTIONS(79), 2, aux_sym_variable_definition_token2, anon_sym_LIKE, - STATE(329), 2, + STATE(336), 2, sym_comment, sym_include, - ACTIONS(93), 47, + ACTIONS(81), 47, sym__terminator, aux_sym__block_terminator_token1, anon_sym_LPAREN, @@ -52044,74 +52904,160 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_temp_table_tuning_token1, aux_sym_field_definition_token1, aux_sym_index_definition_token1, - [3944] = 29, + [4132] = 29, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(837), 1, + ACTIONS(7), 1, + anon_sym_LBRACE, + ACTIONS(767), 1, + sym_identifier, + 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(3256), 1, + sym_label, + STATE(3661), 1, + sym_object_access, + STATE(4251), 1, + sym_assignment, + STATE(4256), 1, + sym_function_call, + STATE(4814), 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(337), 2, + sym_comment, + sym_include, + STATE(970), 2, + sym_input_stream_statement, + sym_output_stream_statement, + STATE(1110), 2, + sym_do_block, + sym__terminated_statement, + STATE(978), 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, + [4247] = 29, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(844), 1, sym_identifier, - ACTIONS(840), 1, + ACTIONS(847), 1, anon_sym_LBRACE, - ACTIONS(843), 1, + ACTIONS(850), 1, sym__terminator, - ACTIONS(845), 1, + ACTIONS(852), 1, sym_null_expression, - ACTIONS(851), 1, + ACTIONS(858), 1, sym__integer_literal, - ACTIONS(854), 1, + ACTIONS(861), 1, anon_sym_DQUOTE, - ACTIONS(857), 1, + ACTIONS(864), 1, anon_sym_SQUOTE, - ACTIONS(860), 1, + ACTIONS(867), 1, anon_sym_LPAREN, - ACTIONS(863), 1, + ACTIONS(870), 1, aux_sym_unary_expression_token1, - ACTIONS(866), 1, + ACTIONS(873), 1, aux_sym_unary_expression_token2, - ACTIONS(869), 1, + ACTIONS(876), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(872), 1, + ACTIONS(879), 1, aux_sym_current_changed_expression_token1, - ACTIONS(875), 1, + ACTIONS(882), 1, aux_sym_locked_expression_token1, - ACTIONS(878), 1, + ACTIONS(885), 1, aux_sym_input_expression_token1, - ACTIONS(881), 1, + ACTIONS(888), 1, aux_sym_scope_tuning_token1, - ACTIONS(884), 1, + ACTIONS(891), 1, aux_sym_if_statement_token1, - ACTIONS(887), 1, + ACTIONS(894), 1, aux_sym_can_find_expression_token1, - ACTIONS(890), 1, + ACTIONS(897), 1, aux_sym_accumulate_expression_token1, STATE(531), 1, sym__expression, - STATE(564), 1, + STATE(565), 1, sym__decimal_literal, - STATE(569), 1, + STATE(587), 1, sym_object_access, - ACTIONS(893), 2, + ACTIONS(900), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(565), 2, + STATE(580), 2, sym_double_quoted_string, sym_single_quoted_string, - STATE(330), 3, + STATE(338), 3, sym_comment, sym_include, aux_sym_abl_statement_repeat1, - ACTIONS(848), 4, + ACTIONS(855), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(567), 4, + STATE(581), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(561), 18, + STATE(566), 18, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -52130,133 +53076,156 @@ static const uint16_t ts_small_parse_table[] = { sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [4059] = 7, - ACTIONS(59), 1, + [4362] = 30, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(61), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(65), 1, + ACTIONS(635), 1, + sym_identifier, + ACTIONS(637), 1, anon_sym_LBRACE, - ACTIONS(896), 1, - sym__namedot, - ACTIONS(102), 2, - aux_sym_variable_definition_token2, - anon_sym_LIKE, - STATE(331), 3, + 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(903), 1, + sym__terminator, + STATE(338), 1, + aux_sym_abl_statement_repeat1, + STATE(531), 1, + sym__expression, + STATE(565), 1, + sym__decimal_literal, + STATE(587), 1, + sym_object_access, + ACTIONS(677), 2, + aux_sym_available_expression_token1, + aux_sym_available_expression_token2, + STATE(339), 2, sym_comment, sym_include, - aux_sym_qualified_name_repeat1, - ACTIONS(104), 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, - [4130] = 29, + STATE(580), 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(581), 4, + sym_logical_expression, + sym_additive_expression, + sym_multiplicative_expression, + sym_comparison_expression, + STATE(566), 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, + [4479] = 29, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(801), 1, + ACTIONS(767), 1, sym_identifier, - ACTIONS(803), 1, + ACTIONS(769), 1, aux_sym_input_expression_token1, - ACTIONS(805), 1, + ACTIONS(771), 1, aux_sym_primitive_type_token19, - ACTIONS(809), 1, + ACTIONS(775), 1, aux_sym_buffer_definition_token2, - ACTIONS(811), 1, + ACTIONS(777), 1, aux_sym_argument_mode_token1, - ACTIONS(815), 1, + ACTIONS(781), 1, aux_sym_repeat_statement_token1, - ACTIONS(817), 1, + ACTIONS(783), 1, aux_sym_procedure_parameter_definition_token1, - ACTIONS(819), 1, + ACTIONS(785), 1, aux_sym_interface_statement_token1, - ACTIONS(821), 1, + ACTIONS(787), 1, aux_sym_on_error_phrase_token1, - ACTIONS(823), 1, + ACTIONS(789), 1, aux_sym_on_error_phrase_token3, - ACTIONS(825), 1, + ACTIONS(791), 1, aux_sym_do_block_token1, - ACTIONS(827), 1, + ACTIONS(793), 1, aux_sym__case_terminator_token1, - ACTIONS(829), 1, + ACTIONS(795), 1, aux_sym_find_statement_token1, - ACTIONS(831), 1, + ACTIONS(797), 1, aux_sym_assign_statement_token1, - ACTIONS(833), 1, + ACTIONS(799), 1, aux_sym_accumulate_statement_token1, - STATE(3093), 1, + STATE(3256), 1, sym_label, - STATE(3567), 1, + STATE(3661), 1, sym_object_access, - STATE(4518), 1, - sym_function_call, - STATE(4530), 1, + STATE(4251), 1, sym_assignment, - STATE(4733), 1, + STATE(4256), 1, + sym_function_call, + STATE(4814), 1, sym_qualified_name, - ACTIONS(807), 2, + ACTIONS(773), 2, aux_sym_variable_definition_token1, aux_sym_variable_definition_token2, - ACTIONS(835), 2, + ACTIONS(801), 2, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - STATE(332), 2, + STATE(340), 2, sym_comment, sym_include, - STATE(872), 2, + STATE(785), 2, sym_do_block, sym__terminated_statement, - STATE(1118), 2, + STATE(970), 2, sym_input_stream_statement, sym_output_stream_statement, - STATE(848), 23, + STATE(978), 23, sym_variable_definition, sym_variable_assignment, sym_buffer_definition, @@ -52280,7 +53249,7 @@ static const uint16_t ts_small_parse_table[] = { sym_error_scope_statement, sym_temp_table_definition, sym_on_statement, - [4245] = 30, + [4594] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, @@ -52317,25 +53286,25 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_can_find_expression_token1, ACTIONS(675), 1, aux_sym_accumulate_expression_token1, - ACTIONS(899), 1, - sym__terminator, - ACTIONS(901), 1, + ACTIONS(839), 1, anon_sym_LPAREN, - STATE(330), 1, + ACTIONS(905), 1, + sym__terminator, + STATE(338), 1, aux_sym_abl_statement_repeat1, STATE(531), 1, sym__expression, - STATE(564), 1, + STATE(565), 1, sym__decimal_literal, - STATE(569), 1, + STATE(587), 1, sym_object_access, ACTIONS(677), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(333), 2, + STATE(341), 2, sym_comment, sym_include, - STATE(565), 2, + STATE(580), 2, sym_double_quoted_string, sym_single_quoted_string, ACTIONS(643), 4, @@ -52343,12 +53312,12 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(567), 4, + STATE(581), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(561), 18, + STATE(566), 18, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -52367,7 +53336,7 @@ static const uint16_t ts_small_parse_table[] = { sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [4362] = 30, + [4711] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, @@ -52404,25 +53373,25 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_can_find_expression_token1, ACTIONS(675), 1, aux_sym_accumulate_expression_token1, - ACTIONS(901), 1, + ACTIONS(839), 1, anon_sym_LPAREN, - ACTIONS(903), 1, + ACTIONS(907), 1, sym__terminator, - STATE(330), 1, + STATE(338), 1, aux_sym_abl_statement_repeat1, STATE(531), 1, sym__expression, - STATE(564), 1, + STATE(565), 1, sym__decimal_literal, - STATE(569), 1, + STATE(587), 1, sym_object_access, ACTIONS(677), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(334), 2, + STATE(342), 2, sym_comment, sym_include, - STATE(565), 2, + STATE(580), 2, sym_double_quoted_string, sym_single_quoted_string, ACTIONS(643), 4, @@ -52430,12 +53399,12 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(567), 4, + STATE(581), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(561), 18, + STATE(566), 18, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -52454,7 +53423,7 @@ static const uint16_t ts_small_parse_table[] = { sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [4479] = 30, + [4828] = 30, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, @@ -52491,25 +53460,25 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_can_find_expression_token1, ACTIONS(675), 1, aux_sym_accumulate_expression_token1, - ACTIONS(901), 1, + ACTIONS(839), 1, anon_sym_LPAREN, - ACTIONS(905), 1, + ACTIONS(909), 1, sym__terminator, - STATE(330), 1, + STATE(338), 1, aux_sym_abl_statement_repeat1, STATE(531), 1, sym__expression, - STATE(564), 1, + STATE(565), 1, sym__decimal_literal, - STATE(569), 1, + STATE(587), 1, sym_object_access, ACTIONS(677), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(335), 2, + STATE(343), 2, sym_comment, sym_include, - STATE(565), 2, + STATE(580), 2, sym_double_quoted_string, sym_single_quoted_string, ACTIONS(643), 4, @@ -52517,12 +53486,12 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(567), 4, + STATE(581), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(561), 18, + STATE(566), 18, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -52541,69 +53510,69 @@ static const uint16_t ts_small_parse_table[] = { sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [4596] = 29, + [4945] = 29, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(801), 1, + ACTIONS(731), 1, sym_identifier, - ACTIONS(803), 1, + ACTIONS(733), 1, aux_sym_input_expression_token1, - ACTIONS(805), 1, + ACTIONS(735), 1, aux_sym_primitive_type_token19, - ACTIONS(809), 1, + ACTIONS(739), 1, aux_sym_buffer_definition_token2, - ACTIONS(811), 1, + ACTIONS(741), 1, aux_sym_argument_mode_token1, - ACTIONS(815), 1, + ACTIONS(745), 1, aux_sym_repeat_statement_token1, - ACTIONS(817), 1, + ACTIONS(747), 1, aux_sym_procedure_parameter_definition_token1, - ACTIONS(819), 1, + ACTIONS(749), 1, aux_sym_interface_statement_token1, - ACTIONS(821), 1, + ACTIONS(751), 1, aux_sym_on_error_phrase_token1, - ACTIONS(823), 1, + ACTIONS(753), 1, aux_sym_on_error_phrase_token3, - ACTIONS(825), 1, + ACTIONS(755), 1, aux_sym_do_block_token1, - ACTIONS(827), 1, + ACTIONS(757), 1, aux_sym__case_terminator_token1, - ACTIONS(829), 1, + ACTIONS(759), 1, aux_sym_find_statement_token1, - ACTIONS(831), 1, + ACTIONS(761), 1, aux_sym_assign_statement_token1, - ACTIONS(833), 1, + ACTIONS(763), 1, aux_sym_accumulate_statement_token1, - STATE(3093), 1, + STATE(3213), 1, sym_label, - STATE(3567), 1, + STATE(3661), 1, sym_object_access, - STATE(4518), 1, - sym_function_call, - STATE(4530), 1, + STATE(4639), 1, sym_assignment, - STATE(4733), 1, + STATE(4657), 1, + sym_function_call, + STATE(4814), 1, sym_qualified_name, - ACTIONS(807), 2, + ACTIONS(737), 2, aux_sym_variable_definition_token1, aux_sym_variable_definition_token2, - ACTIONS(835), 2, + ACTIONS(765), 2, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - STATE(336), 2, + STATE(344), 2, sym_comment, sym_include, - STATE(785), 2, + STATE(891), 2, sym_do_block, sym__terminated_statement, - STATE(1118), 2, + STATE(1083), 2, sym_input_stream_statement, sym_output_stream_statement, - STATE(848), 23, + STATE(919), 23, sym_variable_definition, sym_variable_assignment, sym_buffer_definition, @@ -52627,7 +53596,7 @@ static const uint16_t ts_small_parse_table[] = { sym_error_scope_statement, sym_temp_table_definition, sym_on_statement, - [4711] = 29, + [5060] = 29, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, @@ -52664,15 +53633,15 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_assign_statement_token1, ACTIONS(763), 1, aux_sym_accumulate_statement_token1, - STATE(3144), 1, + STATE(3213), 1, sym_label, - STATE(3567), 1, + STATE(3661), 1, sym_object_access, - STATE(4276), 1, + STATE(4639), 1, sym_assignment, - STATE(4280), 1, + STATE(4657), 1, sym_function_call, - STATE(4733), 1, + STATE(4814), 1, sym_qualified_name, ACTIONS(737), 2, aux_sym_variable_definition_token1, @@ -52680,16 +53649,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(765), 2, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - STATE(337), 2, + STATE(345), 2, sym_comment, sym_include, - STATE(779), 2, + STATE(791), 2, sym_do_block, sym__terminated_statement, - STATE(881), 2, + STATE(1083), 2, sym_input_stream_statement, sym_output_stream_statement, - STATE(868), 23, + STATE(919), 23, sym_variable_definition, sym_variable_assignment, sym_buffer_definition, @@ -52713,75 +53682,73 @@ static const uint16_t ts_small_parse_table[] = { sym_error_scope_statement, sym_temp_table_definition, sym_on_statement, - [4826] = 30, + [5175] = 29, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(635), 1, + ACTIONS(337), 1, sym_identifier, - ACTIONS(637), 1, + ACTIONS(339), 1, anon_sym_LBRACE, - ACTIONS(641), 1, + ACTIONS(341), 1, sym_null_expression, - ACTIONS(645), 1, + ACTIONS(345), 1, sym__integer_literal, - ACTIONS(647), 1, + ACTIONS(347), 1, anon_sym_DQUOTE, - ACTIONS(649), 1, + ACTIONS(349), 1, anon_sym_SQUOTE, - ACTIONS(653), 1, + ACTIONS(351), 1, + anon_sym_LPAREN, + ACTIONS(355), 1, aux_sym_unary_expression_token1, - ACTIONS(655), 1, + ACTIONS(357), 1, aux_sym_unary_expression_token2, - ACTIONS(657), 1, + ACTIONS(359), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(659), 1, + ACTIONS(361), 1, aux_sym_current_changed_expression_token1, - ACTIONS(661), 1, + ACTIONS(363), 1, aux_sym_locked_expression_token1, - ACTIONS(663), 1, - aux_sym_input_expression_token1, - ACTIONS(667), 1, + ACTIONS(367), 1, aux_sym_scope_tuning_token1, - ACTIONS(669), 1, + ACTIONS(371), 1, aux_sym_if_statement_token1, - ACTIONS(673), 1, + ACTIONS(373), 1, aux_sym_can_find_expression_token1, - ACTIONS(675), 1, + ACTIONS(377), 1, aux_sym_accumulate_expression_token1, - ACTIONS(901), 1, - anon_sym_LPAREN, - ACTIONS(907), 1, + ACTIONS(431), 1, + aux_sym_input_expression_token1, + ACTIONS(911), 1, sym__terminator, - STATE(330), 1, - aux_sym_abl_statement_repeat1, - STATE(531), 1, - sym__expression, - STATE(564), 1, + STATE(23), 1, sym__decimal_literal, - STATE(569), 1, + STATE(29), 1, sym_object_access, - ACTIONS(677), 2, + STATE(1280), 1, + sym__expression, + ACTIONS(379), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(338), 2, - sym_comment, - sym_include, - STATE(565), 2, + STATE(18), 2, sym_double_quoted_string, sym_single_quoted_string, - ACTIONS(643), 4, + STATE(346), 2, + sym_comment, + sym_include, + ACTIONS(343), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(567), 4, + STATE(24), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(561), 18, + STATE(20), 18, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -52800,75 +53767,73 @@ static const uint16_t ts_small_parse_table[] = { sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [4943] = 30, + [5289] = 29, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(635), 1, + ACTIONS(337), 1, sym_identifier, - ACTIONS(637), 1, + ACTIONS(339), 1, anon_sym_LBRACE, - ACTIONS(641), 1, + ACTIONS(341), 1, sym_null_expression, - ACTIONS(645), 1, + ACTIONS(345), 1, sym__integer_literal, - ACTIONS(647), 1, + ACTIONS(347), 1, anon_sym_DQUOTE, - ACTIONS(649), 1, + ACTIONS(349), 1, anon_sym_SQUOTE, - ACTIONS(653), 1, + ACTIONS(351), 1, + anon_sym_LPAREN, + ACTIONS(355), 1, aux_sym_unary_expression_token1, - ACTIONS(655), 1, + ACTIONS(357), 1, aux_sym_unary_expression_token2, - ACTIONS(657), 1, + ACTIONS(359), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(659), 1, + ACTIONS(361), 1, aux_sym_current_changed_expression_token1, - ACTIONS(661), 1, + ACTIONS(363), 1, aux_sym_locked_expression_token1, - ACTIONS(663), 1, - aux_sym_input_expression_token1, - ACTIONS(667), 1, + ACTIONS(367), 1, aux_sym_scope_tuning_token1, - ACTIONS(669), 1, + ACTIONS(371), 1, aux_sym_if_statement_token1, - ACTIONS(673), 1, + ACTIONS(373), 1, aux_sym_can_find_expression_token1, - ACTIONS(675), 1, + ACTIONS(377), 1, aux_sym_accumulate_expression_token1, - ACTIONS(901), 1, - anon_sym_LPAREN, - ACTIONS(909), 1, + ACTIONS(431), 1, + aux_sym_input_expression_token1, + ACTIONS(913), 1, sym__terminator, - STATE(330), 1, - aux_sym_abl_statement_repeat1, - STATE(531), 1, - sym__expression, - STATE(564), 1, + STATE(23), 1, sym__decimal_literal, - STATE(569), 1, + STATE(29), 1, sym_object_access, - ACTIONS(677), 2, + STATE(1504), 1, + sym__expression, + ACTIONS(379), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(339), 2, - sym_comment, - sym_include, - STATE(565), 2, + STATE(18), 2, sym_double_quoted_string, sym_single_quoted_string, - ACTIONS(643), 4, + STATE(347), 2, + sym_comment, + sym_include, + ACTIONS(343), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(567), 4, + STATE(24), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(561), 18, + STATE(20), 18, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -52887,159 +53852,73 @@ static const uint16_t ts_small_parse_table[] = { sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [5060] = 29, + [5403] = 29, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, - anon_sym_LBRACE, - ACTIONS(731), 1, + ACTIONS(337), 1, sym_identifier, - 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(3144), 1, - sym_label, - STATE(3567), 1, - sym_object_access, - STATE(4276), 1, - sym_assignment, - STATE(4280), 1, - sym_function_call, - STATE(4733), 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(340), 2, - sym_comment, - sym_include, - STATE(881), 2, - sym_input_stream_statement, - sym_output_stream_statement, - STATE(1093), 2, - sym_do_block, - sym__terminated_statement, - STATE(868), 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, - [5175] = 29, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - ACTIONS(353), 1, - sym_identifier, - ACTIONS(355), 1, + ACTIONS(339), 1, anon_sym_LBRACE, - ACTIONS(357), 1, + ACTIONS(341), 1, sym_null_expression, - ACTIONS(361), 1, + ACTIONS(345), 1, sym__integer_literal, - ACTIONS(363), 1, + ACTIONS(347), 1, anon_sym_DQUOTE, - ACTIONS(365), 1, + ACTIONS(349), 1, anon_sym_SQUOTE, - ACTIONS(367), 1, + ACTIONS(351), 1, anon_sym_LPAREN, - ACTIONS(371), 1, + ACTIONS(355), 1, aux_sym_unary_expression_token1, - ACTIONS(373), 1, + ACTIONS(357), 1, aux_sym_unary_expression_token2, - ACTIONS(375), 1, + ACTIONS(359), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(377), 1, + ACTIONS(361), 1, aux_sym_current_changed_expression_token1, - ACTIONS(379), 1, + ACTIONS(363), 1, aux_sym_locked_expression_token1, - ACTIONS(383), 1, + ACTIONS(367), 1, aux_sym_scope_tuning_token1, - ACTIONS(387), 1, + ACTIONS(371), 1, aux_sym_if_statement_token1, - ACTIONS(389), 1, + ACTIONS(373), 1, aux_sym_can_find_expression_token1, - ACTIONS(393), 1, + ACTIONS(377), 1, aux_sym_accumulate_expression_token1, - ACTIONS(429), 1, + ACTIONS(431), 1, aux_sym_input_expression_token1, - ACTIONS(911), 1, + ACTIONS(915), 1, sym__terminator, - STATE(36), 1, + STATE(23), 1, sym__decimal_literal, - STATE(38), 1, + STATE(29), 1, sym_object_access, - STATE(1273), 1, + STATE(1164), 1, sym__expression, - ACTIONS(395), 2, + ACTIONS(379), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(21), 2, + STATE(18), 2, sym_double_quoted_string, sym_single_quoted_string, - STATE(341), 2, + STATE(348), 2, sym_comment, sym_include, - ACTIONS(359), 4, + ACTIONS(343), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(37), 4, + STATE(24), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(13), 18, + STATE(20), 18, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -53058,73 +53937,73 @@ static const uint16_t ts_small_parse_table[] = { sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [5289] = 29, + [5517] = 29, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(353), 1, + ACTIONS(337), 1, sym_identifier, - ACTIONS(355), 1, + ACTIONS(339), 1, anon_sym_LBRACE, - ACTIONS(357), 1, + ACTIONS(341), 1, sym_null_expression, - ACTIONS(361), 1, + ACTIONS(345), 1, sym__integer_literal, - ACTIONS(363), 1, + ACTIONS(347), 1, anon_sym_DQUOTE, - ACTIONS(365), 1, + ACTIONS(349), 1, anon_sym_SQUOTE, - ACTIONS(367), 1, + ACTIONS(351), 1, anon_sym_LPAREN, - ACTIONS(371), 1, + ACTIONS(355), 1, aux_sym_unary_expression_token1, - ACTIONS(373), 1, + ACTIONS(357), 1, aux_sym_unary_expression_token2, - ACTIONS(375), 1, + ACTIONS(359), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(377), 1, + ACTIONS(361), 1, aux_sym_current_changed_expression_token1, - ACTIONS(379), 1, + ACTIONS(363), 1, aux_sym_locked_expression_token1, - ACTIONS(383), 1, + ACTIONS(367), 1, aux_sym_scope_tuning_token1, - ACTIONS(387), 1, + ACTIONS(371), 1, aux_sym_if_statement_token1, - ACTIONS(389), 1, + ACTIONS(373), 1, aux_sym_can_find_expression_token1, - ACTIONS(393), 1, + ACTIONS(377), 1, aux_sym_accumulate_expression_token1, - ACTIONS(429), 1, + ACTIONS(431), 1, aux_sym_input_expression_token1, - ACTIONS(913), 1, + ACTIONS(917), 1, sym__terminator, - STATE(36), 1, + STATE(23), 1, sym__decimal_literal, - STATE(38), 1, + STATE(29), 1, sym_object_access, - STATE(1512), 1, + STATE(1534), 1, sym__expression, - ACTIONS(395), 2, + ACTIONS(379), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(21), 2, + STATE(18), 2, sym_double_quoted_string, sym_single_quoted_string, - STATE(342), 2, + STATE(349), 2, sym_comment, sym_include, - ACTIONS(359), 4, + ACTIONS(343), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(37), 4, + STATE(24), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(13), 18, + STATE(20), 18, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -53143,73 +54022,135 @@ static const uint16_t ts_small_parse_table[] = { sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [5403] = 29, + [5631] = 6, + ACTIONS(59), 1, + anon_sym_SLASH_SLASH, + ACTIONS(61), 1, + anon_sym_SLASH_STAR, + ACTIONS(65), 1, + anon_sym_LBRACE, + ACTIONS(98), 2, + aux_sym_variable_definition_token2, + anon_sym_LIKE, + STATE(350), 2, + sym_comment, + sym_include, + ACTIONS(100), 48, + sym__namedot, + 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, + [5699] = 29, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(353), 1, + ACTIONS(337), 1, sym_identifier, - ACTIONS(355), 1, + ACTIONS(339), 1, anon_sym_LBRACE, - ACTIONS(357), 1, + ACTIONS(341), 1, sym_null_expression, - ACTIONS(361), 1, + ACTIONS(345), 1, sym__integer_literal, - ACTIONS(363), 1, + ACTIONS(347), 1, anon_sym_DQUOTE, - ACTIONS(365), 1, + ACTIONS(349), 1, anon_sym_SQUOTE, - ACTIONS(367), 1, + ACTIONS(351), 1, anon_sym_LPAREN, - ACTIONS(371), 1, + ACTIONS(355), 1, aux_sym_unary_expression_token1, - ACTIONS(373), 1, + ACTIONS(357), 1, aux_sym_unary_expression_token2, - ACTIONS(375), 1, + ACTIONS(359), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(377), 1, + ACTIONS(361), 1, aux_sym_current_changed_expression_token1, - ACTIONS(379), 1, + ACTIONS(363), 1, aux_sym_locked_expression_token1, - ACTIONS(383), 1, + ACTIONS(367), 1, aux_sym_scope_tuning_token1, - ACTIONS(387), 1, + ACTIONS(371), 1, aux_sym_if_statement_token1, - ACTIONS(389), 1, + ACTIONS(373), 1, aux_sym_can_find_expression_token1, - ACTIONS(393), 1, + ACTIONS(377), 1, aux_sym_accumulate_expression_token1, - ACTIONS(429), 1, + ACTIONS(431), 1, aux_sym_input_expression_token1, - ACTIONS(915), 1, + ACTIONS(919), 1, sym__terminator, - STATE(36), 1, + STATE(23), 1, sym__decimal_literal, - STATE(38), 1, + STATE(29), 1, sym_object_access, - STATE(1393), 1, + STATE(1381), 1, sym__expression, - ACTIONS(395), 2, + ACTIONS(379), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(21), 2, + STATE(18), 2, sym_double_quoted_string, sym_single_quoted_string, - STATE(343), 2, + STATE(351), 2, sym_comment, sym_include, - ACTIONS(359), 4, + ACTIONS(343), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(37), 4, + STATE(24), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(13), 18, + STATE(20), 18, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -53228,73 +54169,71 @@ static const uint16_t ts_small_parse_table[] = { sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [5517] = 29, + [5813] = 28, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(353), 1, + ACTIONS(337), 1, sym_identifier, - ACTIONS(355), 1, + ACTIONS(339), 1, anon_sym_LBRACE, - ACTIONS(357), 1, + ACTIONS(341), 1, sym_null_expression, - ACTIONS(361), 1, + ACTIONS(345), 1, sym__integer_literal, - ACTIONS(363), 1, + ACTIONS(347), 1, anon_sym_DQUOTE, - ACTIONS(365), 1, + ACTIONS(349), 1, anon_sym_SQUOTE, - ACTIONS(367), 1, + ACTIONS(351), 1, anon_sym_LPAREN, - ACTIONS(371), 1, + ACTIONS(355), 1, aux_sym_unary_expression_token1, - ACTIONS(373), 1, + ACTIONS(357), 1, aux_sym_unary_expression_token2, - ACTIONS(375), 1, + ACTIONS(359), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(377), 1, + ACTIONS(361), 1, aux_sym_current_changed_expression_token1, - ACTIONS(379), 1, + ACTIONS(363), 1, aux_sym_locked_expression_token1, - ACTIONS(383), 1, + ACTIONS(367), 1, aux_sym_scope_tuning_token1, - ACTIONS(387), 1, + ACTIONS(371), 1, aux_sym_if_statement_token1, - ACTIONS(389), 1, + ACTIONS(373), 1, aux_sym_can_find_expression_token1, - ACTIONS(393), 1, + ACTIONS(377), 1, aux_sym_accumulate_expression_token1, - ACTIONS(429), 1, + ACTIONS(431), 1, aux_sym_input_expression_token1, - ACTIONS(917), 1, - sym__terminator, - STATE(36), 1, + STATE(23), 1, sym__decimal_literal, - STATE(38), 1, + STATE(29), 1, sym_object_access, - STATE(1516), 1, + STATE(819), 1, sym__expression, - ACTIONS(395), 2, + ACTIONS(379), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(21), 2, + STATE(18), 2, sym_double_quoted_string, sym_single_quoted_string, - STATE(344), 2, + STATE(352), 2, sym_comment, sym_include, - ACTIONS(359), 4, + ACTIONS(343), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(37), 4, + STATE(24), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(13), 18, + STATE(20), 18, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -53313,73 +54252,71 @@ static const uint16_t ts_small_parse_table[] = { sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [5631] = 29, + [5924] = 28, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(353), 1, + ACTIONS(337), 1, sym_identifier, - ACTIONS(355), 1, + ACTIONS(339), 1, anon_sym_LBRACE, - ACTIONS(357), 1, + ACTIONS(341), 1, sym_null_expression, - ACTIONS(361), 1, + ACTIONS(345), 1, sym__integer_literal, - ACTIONS(363), 1, + ACTIONS(347), 1, anon_sym_DQUOTE, - ACTIONS(365), 1, + ACTIONS(349), 1, anon_sym_SQUOTE, - ACTIONS(367), 1, + ACTIONS(351), 1, anon_sym_LPAREN, - ACTIONS(371), 1, + ACTIONS(355), 1, aux_sym_unary_expression_token1, - ACTIONS(373), 1, + ACTIONS(357), 1, aux_sym_unary_expression_token2, - ACTIONS(375), 1, + ACTIONS(359), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(377), 1, + ACTIONS(361), 1, aux_sym_current_changed_expression_token1, - ACTIONS(379), 1, + ACTIONS(363), 1, aux_sym_locked_expression_token1, - ACTIONS(383), 1, + ACTIONS(367), 1, aux_sym_scope_tuning_token1, - ACTIONS(387), 1, + ACTIONS(371), 1, aux_sym_if_statement_token1, - ACTIONS(389), 1, + ACTIONS(373), 1, aux_sym_can_find_expression_token1, - ACTIONS(393), 1, + ACTIONS(377), 1, aux_sym_accumulate_expression_token1, - ACTIONS(429), 1, + ACTIONS(431), 1, aux_sym_input_expression_token1, - ACTIONS(919), 1, - sym__terminator, - STATE(36), 1, + STATE(23), 1, sym__decimal_literal, - STATE(38), 1, + STATE(29), 1, sym_object_access, - STATE(1304), 1, + STATE(1287), 1, sym__expression, - ACTIONS(395), 2, + ACTIONS(379), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(21), 2, + STATE(18), 2, sym_double_quoted_string, sym_single_quoted_string, - STATE(345), 2, + STATE(353), 2, sym_comment, sym_include, - ACTIONS(359), 4, + ACTIONS(343), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(37), 4, + STATE(24), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(13), 18, + STATE(20), 18, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -53398,133 +54335,71 @@ static const uint16_t ts_small_parse_table[] = { sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [5745] = 6, - ACTIONS(59), 1, - anon_sym_SLASH_SLASH, - ACTIONS(61), 1, - anon_sym_SLASH_STAR, - ACTIONS(65), 1, - anon_sym_LBRACE, - ACTIONS(102), 2, - aux_sym_variable_definition_token2, - anon_sym_LIKE, - STATE(346), 2, - sym_comment, - sym_include, - ACTIONS(104), 48, - sym__namedot, - 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, - [5813] = 28, + [6035] = 28, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(353), 1, + ACTIONS(337), 1, sym_identifier, - ACTIONS(355), 1, + ACTIONS(339), 1, anon_sym_LBRACE, - ACTIONS(357), 1, + ACTIONS(341), 1, sym_null_expression, - ACTIONS(361), 1, + ACTIONS(345), 1, sym__integer_literal, - ACTIONS(363), 1, + ACTIONS(347), 1, anon_sym_DQUOTE, - ACTIONS(365), 1, + ACTIONS(349), 1, anon_sym_SQUOTE, - ACTIONS(367), 1, + ACTIONS(351), 1, anon_sym_LPAREN, - ACTIONS(371), 1, + ACTIONS(355), 1, aux_sym_unary_expression_token1, - ACTIONS(373), 1, + ACTIONS(357), 1, aux_sym_unary_expression_token2, - ACTIONS(375), 1, + ACTIONS(359), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(377), 1, + ACTIONS(361), 1, aux_sym_current_changed_expression_token1, - ACTIONS(379), 1, + ACTIONS(363), 1, aux_sym_locked_expression_token1, - ACTIONS(383), 1, + ACTIONS(367), 1, aux_sym_scope_tuning_token1, - ACTIONS(387), 1, + ACTIONS(371), 1, aux_sym_if_statement_token1, - ACTIONS(389), 1, + ACTIONS(373), 1, aux_sym_can_find_expression_token1, - ACTIONS(393), 1, + ACTIONS(377), 1, aux_sym_accumulate_expression_token1, - ACTIONS(429), 1, + ACTIONS(431), 1, aux_sym_input_expression_token1, - STATE(36), 1, + STATE(23), 1, sym__decimal_literal, - STATE(38), 1, + STATE(29), 1, sym_object_access, - STATE(137), 1, + STATE(720), 1, sym__expression, - ACTIONS(395), 2, + ACTIONS(379), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(21), 2, + STATE(18), 2, sym_double_quoted_string, sym_single_quoted_string, - STATE(347), 2, + STATE(354), 2, sym_comment, sym_include, - ACTIONS(359), 4, + ACTIONS(343), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(37), 4, + STATE(24), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(13), 18, + STATE(20), 18, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -53543,7 +54418,7 @@ static const uint16_t ts_small_parse_table[] = { sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [5924] = 28, + [6146] = 28, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, @@ -53582,19 +54457,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_can_find_expression_token1, ACTIONS(955), 1, aux_sym_accumulate_expression_token1, - STATE(788), 1, + STATE(820), 1, sym__expression, - STATE(898), 1, + STATE(1228), 1, sym_object_access, - STATE(1386), 1, + STATE(1581), 1, sym__decimal_literal, ACTIONS(957), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(348), 2, + STATE(355), 2, sym_comment, sym_include, - STATE(1158), 2, + STATE(1569), 2, sym_double_quoted_string, sym_single_quoted_string, ACTIONS(927), 4, @@ -53602,12 +54477,12 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(1384), 4, + STATE(1582), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(1396), 18, + STATE(1579), 18, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -53626,71 +54501,71 @@ static const uint16_t ts_small_parse_table[] = { sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [6035] = 28, + [6257] = 28, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(353), 1, + ACTIONS(959), 1, sym_identifier, - ACTIONS(355), 1, + ACTIONS(961), 1, anon_sym_LBRACE, - ACTIONS(357), 1, + ACTIONS(963), 1, sym_null_expression, - ACTIONS(361), 1, + ACTIONS(967), 1, sym__integer_literal, - ACTIONS(363), 1, + ACTIONS(969), 1, anon_sym_DQUOTE, - ACTIONS(365), 1, + ACTIONS(971), 1, anon_sym_SQUOTE, - ACTIONS(367), 1, + ACTIONS(973), 1, anon_sym_LPAREN, - ACTIONS(371), 1, + ACTIONS(975), 1, aux_sym_unary_expression_token1, - ACTIONS(373), 1, + ACTIONS(977), 1, aux_sym_unary_expression_token2, - ACTIONS(375), 1, + ACTIONS(979), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(377), 1, + ACTIONS(981), 1, aux_sym_current_changed_expression_token1, - ACTIONS(379), 1, + ACTIONS(983), 1, aux_sym_locked_expression_token1, - ACTIONS(383), 1, + ACTIONS(985), 1, + aux_sym_input_expression_token1, + ACTIONS(987), 1, aux_sym_scope_tuning_token1, - ACTIONS(387), 1, + ACTIONS(989), 1, aux_sym_if_statement_token1, - ACTIONS(389), 1, + ACTIONS(991), 1, aux_sym_can_find_expression_token1, - ACTIONS(393), 1, + ACTIONS(993), 1, aux_sym_accumulate_expression_token1, - ACTIONS(429), 1, - aux_sym_input_expression_token1, - STATE(36), 1, - sym__decimal_literal, - STATE(38), 1, - sym_object_access, - STATE(808), 1, + STATE(794), 1, sym__expression, - ACTIONS(395), 2, + STATE(1033), 1, + sym_object_access, + STATE(1335), 1, + sym__decimal_literal, + ACTIONS(995), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(21), 2, - sym_double_quoted_string, - sym_single_quoted_string, - STATE(349), 2, + STATE(356), 2, sym_comment, sym_include, - ACTIONS(359), 4, + STATE(1474), 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(37), 4, + STATE(1322), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(13), 18, + STATE(1384), 18, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -53709,71 +54584,71 @@ static const uint16_t ts_small_parse_table[] = { sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [6146] = 28, + [6368] = 28, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(353), 1, + ACTIONS(337), 1, sym_identifier, - ACTIONS(355), 1, + ACTIONS(339), 1, anon_sym_LBRACE, - ACTIONS(357), 1, + ACTIONS(341), 1, sym_null_expression, - ACTIONS(361), 1, + ACTIONS(345), 1, sym__integer_literal, - ACTIONS(363), 1, + ACTIONS(347), 1, anon_sym_DQUOTE, - ACTIONS(365), 1, + ACTIONS(349), 1, anon_sym_SQUOTE, - ACTIONS(367), 1, + ACTIONS(351), 1, anon_sym_LPAREN, - ACTIONS(371), 1, + ACTIONS(355), 1, aux_sym_unary_expression_token1, ACTIONS(373), 1, + aux_sym_can_find_expression_token1, + ACTIONS(423), 1, aux_sym_unary_expression_token2, - ACTIONS(375), 1, + ACTIONS(425), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(377), 1, + ACTIONS(427), 1, aux_sym_current_changed_expression_token1, - ACTIONS(379), 1, + ACTIONS(429), 1, aux_sym_locked_expression_token1, - ACTIONS(383), 1, + ACTIONS(431), 1, + aux_sym_input_expression_token1, + ACTIONS(433), 1, aux_sym_scope_tuning_token1, - ACTIONS(387), 1, + ACTIONS(437), 1, aux_sym_if_statement_token1, - ACTIONS(389), 1, - aux_sym_can_find_expression_token1, - ACTIONS(393), 1, + ACTIONS(447), 1, aux_sym_accumulate_expression_token1, - ACTIONS(429), 1, - aux_sym_input_expression_token1, - STATE(36), 1, + STATE(23), 1, sym__decimal_literal, - STATE(38), 1, + STATE(29), 1, sym_object_access, - STATE(628), 1, + STATE(674), 1, sym__expression, - ACTIONS(395), 2, + ACTIONS(379), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(21), 2, + STATE(18), 2, sym_double_quoted_string, sym_single_quoted_string, - STATE(350), 2, + STATE(357), 2, sym_comment, sym_include, - ACTIONS(359), 4, + ACTIONS(343), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(37), 4, + STATE(24), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(13), 18, + STATE(20), 18, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -53792,71 +54667,71 @@ static const uint16_t ts_small_parse_table[] = { sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [6257] = 28, + [6479] = 28, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(353), 1, + ACTIONS(337), 1, sym_identifier, - ACTIONS(355), 1, + ACTIONS(339), 1, anon_sym_LBRACE, - ACTIONS(357), 1, + ACTIONS(341), 1, sym_null_expression, - ACTIONS(361), 1, + ACTIONS(345), 1, sym__integer_literal, - ACTIONS(363), 1, + ACTIONS(347), 1, anon_sym_DQUOTE, - ACTIONS(365), 1, + ACTIONS(349), 1, anon_sym_SQUOTE, - ACTIONS(367), 1, + ACTIONS(351), 1, anon_sym_LPAREN, - ACTIONS(371), 1, + ACTIONS(355), 1, aux_sym_unary_expression_token1, - ACTIONS(373), 1, + ACTIONS(357), 1, aux_sym_unary_expression_token2, - ACTIONS(375), 1, + ACTIONS(359), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(377), 1, + ACTIONS(361), 1, aux_sym_current_changed_expression_token1, - ACTIONS(379), 1, + ACTIONS(363), 1, aux_sym_locked_expression_token1, - ACTIONS(383), 1, + ACTIONS(367), 1, aux_sym_scope_tuning_token1, - ACTIONS(387), 1, + ACTIONS(371), 1, aux_sym_if_statement_token1, - ACTIONS(389), 1, + ACTIONS(373), 1, aux_sym_can_find_expression_token1, - ACTIONS(393), 1, + ACTIONS(377), 1, aux_sym_accumulate_expression_token1, - ACTIONS(429), 1, + ACTIONS(431), 1, aux_sym_input_expression_token1, - STATE(36), 1, + STATE(23), 1, sym__decimal_literal, - STATE(38), 1, + STATE(29), 1, sym_object_access, - STATE(1313), 1, + STATE(631), 1, sym__expression, - ACTIONS(395), 2, + ACTIONS(379), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(21), 2, + STATE(18), 2, sym_double_quoted_string, sym_single_quoted_string, - STATE(351), 2, + STATE(358), 2, sym_comment, sym_include, - ACTIONS(359), 4, + ACTIONS(343), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(37), 4, + STATE(24), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(13), 18, + STATE(20), 18, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -53875,71 +54750,71 @@ static const uint16_t ts_small_parse_table[] = { sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [6368] = 28, + [6590] = 28, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(353), 1, + ACTIONS(337), 1, sym_identifier, - ACTIONS(355), 1, + ACTIONS(339), 1, anon_sym_LBRACE, - ACTIONS(357), 1, + ACTIONS(341), 1, sym_null_expression, - ACTIONS(361), 1, + ACTIONS(345), 1, sym__integer_literal, - ACTIONS(363), 1, + ACTIONS(347), 1, anon_sym_DQUOTE, - ACTIONS(365), 1, + ACTIONS(349), 1, anon_sym_SQUOTE, - ACTIONS(367), 1, + ACTIONS(351), 1, anon_sym_LPAREN, - ACTIONS(371), 1, + ACTIONS(355), 1, aux_sym_unary_expression_token1, - ACTIONS(373), 1, + ACTIONS(357), 1, aux_sym_unary_expression_token2, - ACTIONS(375), 1, + ACTIONS(359), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(377), 1, + ACTIONS(361), 1, aux_sym_current_changed_expression_token1, - ACTIONS(379), 1, + ACTIONS(363), 1, aux_sym_locked_expression_token1, - ACTIONS(383), 1, + ACTIONS(367), 1, aux_sym_scope_tuning_token1, - ACTIONS(387), 1, + ACTIONS(371), 1, aux_sym_if_statement_token1, - ACTIONS(389), 1, + ACTIONS(373), 1, aux_sym_can_find_expression_token1, - ACTIONS(393), 1, + ACTIONS(377), 1, aux_sym_accumulate_expression_token1, - ACTIONS(429), 1, + ACTIONS(431), 1, aux_sym_input_expression_token1, - STATE(36), 1, + STATE(23), 1, sym__decimal_literal, - STATE(38), 1, + STATE(29), 1, sym_object_access, - STATE(1336), 1, + STATE(644), 1, sym__expression, - ACTIONS(395), 2, + ACTIONS(379), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(21), 2, + STATE(18), 2, sym_double_quoted_string, sym_single_quoted_string, - STATE(352), 2, + STATE(359), 2, sym_comment, sym_include, - ACTIONS(359), 4, + ACTIONS(343), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(37), 4, + STATE(24), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(13), 18, + STATE(20), 18, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -53958,71 +54833,71 @@ static const uint16_t ts_small_parse_table[] = { sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [6479] = 28, + [6701] = 28, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(635), 1, + ACTIONS(337), 1, sym_identifier, - ACTIONS(637), 1, + ACTIONS(339), 1, anon_sym_LBRACE, - ACTIONS(641), 1, + ACTIONS(341), 1, sym_null_expression, - ACTIONS(645), 1, + ACTIONS(345), 1, sym__integer_literal, - ACTIONS(647), 1, + ACTIONS(347), 1, anon_sym_DQUOTE, - ACTIONS(649), 1, + ACTIONS(349), 1, anon_sym_SQUOTE, - ACTIONS(653), 1, + ACTIONS(351), 1, + anon_sym_LPAREN, + ACTIONS(355), 1, aux_sym_unary_expression_token1, - ACTIONS(655), 1, + ACTIONS(357), 1, aux_sym_unary_expression_token2, - ACTIONS(657), 1, + ACTIONS(359), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(659), 1, + ACTIONS(361), 1, aux_sym_current_changed_expression_token1, - ACTIONS(661), 1, + ACTIONS(363), 1, aux_sym_locked_expression_token1, - ACTIONS(663), 1, - aux_sym_input_expression_token1, - ACTIONS(667), 1, + ACTIONS(367), 1, aux_sym_scope_tuning_token1, - ACTIONS(669), 1, + ACTIONS(371), 1, aux_sym_if_statement_token1, - ACTIONS(673), 1, + ACTIONS(373), 1, aux_sym_can_find_expression_token1, - ACTIONS(675), 1, + ACTIONS(377), 1, aux_sym_accumulate_expression_token1, - ACTIONS(901), 1, - anon_sym_LPAREN, - STATE(534), 1, - sym__expression, - STATE(564), 1, + ACTIONS(431), 1, + aux_sym_input_expression_token1, + STATE(23), 1, sym__decimal_literal, - STATE(569), 1, + STATE(29), 1, sym_object_access, - ACTIONS(677), 2, + STATE(560), 1, + sym__expression, + ACTIONS(379), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(353), 2, - sym_comment, - sym_include, - STATE(565), 2, + STATE(18), 2, sym_double_quoted_string, sym_single_quoted_string, - ACTIONS(643), 4, + STATE(360), 2, + sym_comment, + sym_include, + ACTIONS(343), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(567), 4, + STATE(24), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(561), 18, + STATE(20), 18, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -54041,71 +54916,71 @@ static const uint16_t ts_small_parse_table[] = { sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [6590] = 28, + [6812] = 28, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(959), 1, + ACTIONS(337), 1, sym_identifier, - ACTIONS(961), 1, + ACTIONS(339), 1, anon_sym_LBRACE, - ACTIONS(963), 1, + ACTIONS(341), 1, sym_null_expression, - ACTIONS(967), 1, + ACTIONS(345), 1, sym__integer_literal, - ACTIONS(969), 1, + ACTIONS(347), 1, anon_sym_DQUOTE, - ACTIONS(971), 1, + ACTIONS(349), 1, anon_sym_SQUOTE, - ACTIONS(973), 1, + ACTIONS(351), 1, anon_sym_LPAREN, - ACTIONS(975), 1, + ACTIONS(355), 1, aux_sym_unary_expression_token1, - ACTIONS(977), 1, + ACTIONS(357), 1, aux_sym_unary_expression_token2, - ACTIONS(979), 1, + ACTIONS(359), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(981), 1, + ACTIONS(361), 1, aux_sym_current_changed_expression_token1, - ACTIONS(983), 1, + ACTIONS(363), 1, aux_sym_locked_expression_token1, - ACTIONS(985), 1, - aux_sym_input_expression_token1, - ACTIONS(987), 1, + ACTIONS(367), 1, aux_sym_scope_tuning_token1, - ACTIONS(989), 1, + ACTIONS(371), 1, aux_sym_if_statement_token1, - ACTIONS(991), 1, + ACTIONS(373), 1, aux_sym_can_find_expression_token1, - ACTIONS(993), 1, + ACTIONS(377), 1, aux_sym_accumulate_expression_token1, - STATE(826), 1, - sym__expression, - STATE(1553), 1, - sym_object_access, - STATE(1596), 1, + ACTIONS(431), 1, + aux_sym_input_expression_token1, + STATE(23), 1, sym__decimal_literal, - ACTIONS(995), 2, + STATE(29), 1, + sym_object_access, + STATE(557), 1, + sym__expression, + ACTIONS(379), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(354), 2, - sym_comment, - sym_include, - STATE(1594), 2, + STATE(18), 2, sym_double_quoted_string, sym_single_quoted_string, - ACTIONS(965), 4, + STATE(361), 2, + sym_comment, + sym_include, + ACTIONS(343), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(1592), 4, + STATE(24), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(1602), 18, + STATE(20), 18, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -54124,71 +54999,71 @@ static const uint16_t ts_small_parse_table[] = { sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [6701] = 28, + [6923] = 28, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(959), 1, + ACTIONS(337), 1, sym_identifier, - ACTIONS(961), 1, + ACTIONS(339), 1, anon_sym_LBRACE, - ACTIONS(963), 1, + ACTIONS(341), 1, sym_null_expression, - ACTIONS(967), 1, + ACTIONS(345), 1, sym__integer_literal, - ACTIONS(969), 1, + ACTIONS(347), 1, anon_sym_DQUOTE, - ACTIONS(971), 1, + ACTIONS(349), 1, anon_sym_SQUOTE, - ACTIONS(973), 1, + ACTIONS(351), 1, anon_sym_LPAREN, - ACTIONS(975), 1, + ACTIONS(355), 1, aux_sym_unary_expression_token1, - ACTIONS(977), 1, + ACTIONS(357), 1, aux_sym_unary_expression_token2, - ACTIONS(979), 1, + ACTIONS(359), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(981), 1, + ACTIONS(361), 1, aux_sym_current_changed_expression_token1, - ACTIONS(983), 1, + ACTIONS(363), 1, aux_sym_locked_expression_token1, - ACTIONS(985), 1, - aux_sym_input_expression_token1, - ACTIONS(987), 1, + ACTIONS(367), 1, aux_sym_scope_tuning_token1, - ACTIONS(989), 1, + ACTIONS(371), 1, aux_sym_if_statement_token1, - ACTIONS(991), 1, + ACTIONS(373), 1, aux_sym_can_find_expression_token1, - ACTIONS(993), 1, + ACTIONS(377), 1, aux_sym_accumulate_expression_token1, - STATE(825), 1, - sym__expression, - STATE(1553), 1, - sym_object_access, - STATE(1596), 1, + ACTIONS(431), 1, + aux_sym_input_expression_token1, + STATE(23), 1, sym__decimal_literal, - ACTIONS(995), 2, + STATE(29), 1, + sym_object_access, + STATE(1332), 1, + sym__expression, + ACTIONS(379), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(355), 2, - sym_comment, - sym_include, - STATE(1594), 2, + STATE(18), 2, sym_double_quoted_string, sym_single_quoted_string, - ACTIONS(965), 4, + STATE(362), 2, + sym_comment, + sym_include, + ACTIONS(343), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(1592), 4, + STATE(24), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(1602), 18, + STATE(20), 18, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -54207,7 +55082,7 @@ static const uint16_t ts_small_parse_table[] = { sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [6812] = 28, + [7034] = 28, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, @@ -54246,19 +55121,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_can_find_expression_token1, ACTIONS(955), 1, aux_sym_accumulate_expression_token1, - STATE(705), 1, + STATE(815), 1, sym__expression, - STATE(898), 1, + STATE(1228), 1, sym_object_access, - STATE(1386), 1, + STATE(1581), 1, sym__decimal_literal, ACTIONS(957), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(356), 2, + STATE(363), 2, sym_comment, sym_include, - STATE(1158), 2, + STATE(1569), 2, sym_double_quoted_string, sym_single_quoted_string, ACTIONS(927), 4, @@ -54266,12 +55141,12 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(1384), 4, + STATE(1582), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(1396), 18, + STATE(1579), 18, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -54290,71 +55165,71 @@ static const uint16_t ts_small_parse_table[] = { sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [6923] = 28, + [7145] = 28, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(959), 1, + ACTIONS(337), 1, sym_identifier, - ACTIONS(961), 1, + ACTIONS(339), 1, anon_sym_LBRACE, - ACTIONS(963), 1, + ACTIONS(341), 1, sym_null_expression, - ACTIONS(967), 1, + ACTIONS(345), 1, sym__integer_literal, - ACTIONS(969), 1, + ACTIONS(347), 1, anon_sym_DQUOTE, - ACTIONS(971), 1, + ACTIONS(349), 1, anon_sym_SQUOTE, - ACTIONS(973), 1, + ACTIONS(351), 1, anon_sym_LPAREN, - ACTIONS(975), 1, + ACTIONS(355), 1, aux_sym_unary_expression_token1, - ACTIONS(977), 1, + ACTIONS(357), 1, aux_sym_unary_expression_token2, - ACTIONS(979), 1, + ACTIONS(359), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(981), 1, + ACTIONS(361), 1, aux_sym_current_changed_expression_token1, - ACTIONS(983), 1, + ACTIONS(363), 1, aux_sym_locked_expression_token1, - ACTIONS(985), 1, - aux_sym_input_expression_token1, - ACTIONS(987), 1, + ACTIONS(367), 1, aux_sym_scope_tuning_token1, - ACTIONS(989), 1, + ACTIONS(371), 1, aux_sym_if_statement_token1, - ACTIONS(991), 1, + ACTIONS(373), 1, aux_sym_can_find_expression_token1, - ACTIONS(993), 1, + ACTIONS(377), 1, aux_sym_accumulate_expression_token1, - STATE(824), 1, - sym__expression, - STATE(1553), 1, - sym_object_access, - STATE(1596), 1, + ACTIONS(431), 1, + aux_sym_input_expression_token1, + STATE(23), 1, sym__decimal_literal, - ACTIONS(995), 2, + STATE(29), 1, + sym_object_access, + STATE(1165), 1, + sym__expression, + ACTIONS(379), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(357), 2, - sym_comment, - sym_include, - STATE(1594), 2, + STATE(18), 2, sym_double_quoted_string, sym_single_quoted_string, - ACTIONS(965), 4, + STATE(364), 2, + sym_comment, + sym_include, + ACTIONS(343), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(1592), 4, + STATE(24), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(1602), 18, + STATE(20), 18, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -54373,71 +55248,154 @@ static const uint16_t ts_small_parse_table[] = { sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [7034] = 28, + [7256] = 28, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(997), 1, + ACTIONS(337), 1, sym_identifier, - ACTIONS(999), 1, + ACTIONS(339), 1, anon_sym_LBRACE, - ACTIONS(1001), 1, + ACTIONS(341), 1, sym_null_expression, - ACTIONS(1005), 1, + ACTIONS(345), 1, sym__integer_literal, - ACTIONS(1007), 1, + ACTIONS(347), 1, anon_sym_DQUOTE, - ACTIONS(1009), 1, + ACTIONS(349), 1, anon_sym_SQUOTE, - ACTIONS(1011), 1, + ACTIONS(351), 1, anon_sym_LPAREN, - ACTIONS(1013), 1, + ACTIONS(355), 1, aux_sym_unary_expression_token1, - ACTIONS(1015), 1, + ACTIONS(357), 1, aux_sym_unary_expression_token2, - ACTIONS(1017), 1, + ACTIONS(359), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(1019), 1, + ACTIONS(361), 1, aux_sym_current_changed_expression_token1, - ACTIONS(1021), 1, + ACTIONS(363), 1, aux_sym_locked_expression_token1, - ACTIONS(1023), 1, - aux_sym_input_expression_token1, - ACTIONS(1025), 1, + ACTIONS(367), 1, aux_sym_scope_tuning_token1, - ACTIONS(1027), 1, + ACTIONS(371), 1, aux_sym_if_statement_token1, - ACTIONS(1029), 1, + ACTIONS(373), 1, aux_sym_can_find_expression_token1, - ACTIONS(1031), 1, + ACTIONS(377), 1, aux_sym_accumulate_expression_token1, - STATE(798), 1, - sym__expression, - STATE(1399), 1, - sym_object_access, - STATE(1577), 1, + ACTIONS(431), 1, + aux_sym_input_expression_token1, + STATE(23), 1, sym__decimal_literal, - ACTIONS(1033), 2, + STATE(29), 1, + sym_object_access, + STATE(1184), 1, + sym__expression, + ACTIONS(379), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(358), 2, + STATE(18), 2, + sym_double_quoted_string, + sym_single_quoted_string, + STATE(365), 2, sym_comment, sym_include, - STATE(1547), 2, + ACTIONS(343), 4, + aux_sym_boolean_literal_token1, + aux_sym_boolean_literal_token2, + aux_sym_boolean_literal_token3, + aux_sym_boolean_literal_token4, + STATE(24), 4, + sym_logical_expression, + sym_additive_expression, + sym_multiplicative_expression, + sym_comparison_expression, + STATE(20), 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, + [7367] = 28, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(339), 1, + anon_sym_LBRACE, + ACTIONS(341), 1, + sym_null_expression, + ACTIONS(345), 1, + sym__integer_literal, + ACTIONS(347), 1, + anon_sym_DQUOTE, + ACTIONS(349), 1, + anon_sym_SQUOTE, + ACTIONS(351), 1, + anon_sym_LPAREN, + ACTIONS(355), 1, + aux_sym_unary_expression_token1, + ACTIONS(357), 1, + aux_sym_unary_expression_token2, + ACTIONS(359), 1, + aux_sym_ambiguous_expression_token1, + ACTIONS(361), 1, + aux_sym_current_changed_expression_token1, + ACTIONS(363), 1, + aux_sym_locked_expression_token1, + ACTIONS(367), 1, + aux_sym_scope_tuning_token1, + ACTIONS(371), 1, + aux_sym_if_statement_token1, + ACTIONS(373), 1, + aux_sym_can_find_expression_token1, + ACTIONS(377), 1, + aux_sym_accumulate_expression_token1, + ACTIONS(431), 1, + aux_sym_input_expression_token1, + ACTIONS(997), 1, + sym_identifier, + STATE(23), 1, + sym__decimal_literal, + STATE(29), 1, + sym_object_access, + STATE(1195), 1, + sym__expression, + ACTIONS(379), 2, + aux_sym_available_expression_token1, + aux_sym_available_expression_token2, + STATE(18), 2, sym_double_quoted_string, sym_single_quoted_string, - ACTIONS(1003), 4, + STATE(366), 2, + sym_comment, + sym_include, + ACTIONS(343), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(1582), 4, + STATE(24), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(1555), 18, + STATE(20), 18, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -54456,71 +55414,71 @@ static const uint16_t ts_small_parse_table[] = { sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [7145] = 28, + [7478] = 28, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(353), 1, + ACTIONS(337), 1, sym_identifier, - ACTIONS(355), 1, + ACTIONS(339), 1, anon_sym_LBRACE, - ACTIONS(357), 1, + ACTIONS(341), 1, sym_null_expression, - ACTIONS(361), 1, + ACTIONS(345), 1, sym__integer_literal, - ACTIONS(363), 1, + ACTIONS(347), 1, anon_sym_DQUOTE, - ACTIONS(365), 1, + ACTIONS(349), 1, anon_sym_SQUOTE, - ACTIONS(367), 1, + ACTIONS(351), 1, anon_sym_LPAREN, - ACTIONS(371), 1, + ACTIONS(355), 1, aux_sym_unary_expression_token1, - ACTIONS(373), 1, + ACTIONS(357), 1, aux_sym_unary_expression_token2, - ACTIONS(375), 1, + ACTIONS(359), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(377), 1, + ACTIONS(361), 1, aux_sym_current_changed_expression_token1, - ACTIONS(379), 1, + ACTIONS(363), 1, aux_sym_locked_expression_token1, - ACTIONS(383), 1, + ACTIONS(367), 1, aux_sym_scope_tuning_token1, - ACTIONS(387), 1, + ACTIONS(371), 1, aux_sym_if_statement_token1, - ACTIONS(389), 1, + ACTIONS(373), 1, aux_sym_can_find_expression_token1, - ACTIONS(393), 1, + ACTIONS(377), 1, aux_sym_accumulate_expression_token1, - ACTIONS(429), 1, + ACTIONS(431), 1, aux_sym_input_expression_token1, - STATE(36), 1, + STATE(23), 1, sym__decimal_literal, - STATE(38), 1, + STATE(29), 1, sym_object_access, - STATE(692), 1, + STATE(1146), 1, sym__expression, - ACTIONS(395), 2, + ACTIONS(379), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(21), 2, + STATE(18), 2, sym_double_quoted_string, sym_single_quoted_string, - STATE(359), 2, + STATE(367), 2, sym_comment, sym_include, - ACTIONS(359), 4, + ACTIONS(343), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(37), 4, + STATE(24), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(13), 18, + STATE(20), 18, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -54539,7 +55497,7 @@ static const uint16_t ts_small_parse_table[] = { sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [7256] = 28, + [7589] = 28, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, @@ -54578,19 +55536,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_can_find_expression_token1, ACTIONS(993), 1, aux_sym_accumulate_expression_token1, - STATE(821), 1, + STATE(686), 1, sym__expression, - STATE(1553), 1, + STATE(1033), 1, sym_object_access, - STATE(1596), 1, + STATE(1335), 1, sym__decimal_literal, ACTIONS(995), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(360), 2, + STATE(368), 2, sym_comment, sym_include, - STATE(1594), 2, + STATE(1474), 2, sym_double_quoted_string, sym_single_quoted_string, ACTIONS(965), 4, @@ -54598,12 +55556,12 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(1592), 4, + STATE(1322), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(1602), 18, + STATE(1384), 18, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -54622,71 +55580,71 @@ static const uint16_t ts_small_parse_table[] = { sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [7367] = 28, + [7700] = 28, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(353), 1, - sym_identifier, - ACTIONS(355), 1, + ACTIONS(339), 1, anon_sym_LBRACE, - ACTIONS(357), 1, + ACTIONS(341), 1, sym_null_expression, - ACTIONS(361), 1, + ACTIONS(345), 1, sym__integer_literal, - ACTIONS(363), 1, + ACTIONS(347), 1, anon_sym_DQUOTE, - ACTIONS(365), 1, + ACTIONS(349), 1, anon_sym_SQUOTE, - ACTIONS(367), 1, + ACTIONS(351), 1, anon_sym_LPAREN, - ACTIONS(371), 1, + ACTIONS(355), 1, aux_sym_unary_expression_token1, - ACTIONS(373), 1, + ACTIONS(357), 1, aux_sym_unary_expression_token2, - ACTIONS(375), 1, + ACTIONS(359), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(377), 1, + ACTIONS(361), 1, aux_sym_current_changed_expression_token1, - ACTIONS(379), 1, + ACTIONS(363), 1, aux_sym_locked_expression_token1, - ACTIONS(383), 1, + ACTIONS(367), 1, aux_sym_scope_tuning_token1, - ACTIONS(387), 1, + ACTIONS(371), 1, aux_sym_if_statement_token1, - ACTIONS(389), 1, + ACTIONS(373), 1, aux_sym_can_find_expression_token1, - ACTIONS(393), 1, + ACTIONS(377), 1, aux_sym_accumulate_expression_token1, - ACTIONS(429), 1, + ACTIONS(431), 1, aux_sym_input_expression_token1, - STATE(36), 1, + ACTIONS(999), 1, + sym_identifier, + STATE(23), 1, sym__decimal_literal, - STATE(38), 1, + STATE(29), 1, sym_object_access, - STATE(1351), 1, + STATE(1554), 1, sym__expression, - ACTIONS(395), 2, + ACTIONS(379), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(21), 2, + STATE(18), 2, sym_double_quoted_string, sym_single_quoted_string, - STATE(361), 2, + STATE(369), 2, sym_comment, sym_include, - ACTIONS(359), 4, + ACTIONS(343), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(37), 4, + STATE(24), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(13), 18, + STATE(20), 18, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -54705,71 +55663,71 @@ static const uint16_t ts_small_parse_table[] = { sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [7478] = 28, + [7811] = 28, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(353), 1, + ACTIONS(959), 1, sym_identifier, - ACTIONS(355), 1, + ACTIONS(961), 1, anon_sym_LBRACE, - ACTIONS(357), 1, + ACTIONS(963), 1, sym_null_expression, - ACTIONS(361), 1, + ACTIONS(967), 1, sym__integer_literal, - ACTIONS(363), 1, + ACTIONS(969), 1, anon_sym_DQUOTE, - ACTIONS(365), 1, + ACTIONS(971), 1, anon_sym_SQUOTE, - ACTIONS(367), 1, + ACTIONS(973), 1, anon_sym_LPAREN, - ACTIONS(371), 1, + ACTIONS(975), 1, aux_sym_unary_expression_token1, - ACTIONS(373), 1, + ACTIONS(977), 1, aux_sym_unary_expression_token2, - ACTIONS(375), 1, + ACTIONS(979), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(377), 1, + ACTIONS(981), 1, aux_sym_current_changed_expression_token1, - ACTIONS(379), 1, + ACTIONS(983), 1, aux_sym_locked_expression_token1, - ACTIONS(383), 1, + ACTIONS(985), 1, + aux_sym_input_expression_token1, + ACTIONS(987), 1, aux_sym_scope_tuning_token1, - ACTIONS(387), 1, + ACTIONS(989), 1, aux_sym_if_statement_token1, - ACTIONS(389), 1, + ACTIONS(991), 1, aux_sym_can_find_expression_token1, - ACTIONS(393), 1, + ACTIONS(993), 1, aux_sym_accumulate_expression_token1, - ACTIONS(429), 1, - aux_sym_input_expression_token1, - STATE(36), 1, - sym__decimal_literal, - STATE(38), 1, - sym_object_access, - STATE(632), 1, + STATE(790), 1, sym__expression, - ACTIONS(395), 2, + STATE(1033), 1, + sym_object_access, + STATE(1335), 1, + sym__decimal_literal, + ACTIONS(995), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(21), 2, - sym_double_quoted_string, - sym_single_quoted_string, - STATE(362), 2, + STATE(370), 2, sym_comment, sym_include, - ACTIONS(359), 4, + STATE(1474), 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(37), 4, + STATE(1322), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(13), 18, + STATE(1384), 18, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -54788,71 +55746,71 @@ static const uint16_t ts_small_parse_table[] = { sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [7589] = 28, + [7922] = 28, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(353), 1, + ACTIONS(337), 1, sym_identifier, - ACTIONS(355), 1, + ACTIONS(339), 1, anon_sym_LBRACE, - ACTIONS(357), 1, + ACTIONS(341), 1, sym_null_expression, - ACTIONS(361), 1, + ACTIONS(345), 1, sym__integer_literal, - ACTIONS(363), 1, + ACTIONS(347), 1, anon_sym_DQUOTE, - ACTIONS(365), 1, + ACTIONS(349), 1, anon_sym_SQUOTE, - ACTIONS(367), 1, + ACTIONS(351), 1, anon_sym_LPAREN, - ACTIONS(371), 1, + ACTIONS(355), 1, aux_sym_unary_expression_token1, - ACTIONS(373), 1, + ACTIONS(357), 1, aux_sym_unary_expression_token2, - ACTIONS(375), 1, + ACTIONS(359), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(377), 1, + ACTIONS(361), 1, aux_sym_current_changed_expression_token1, - ACTIONS(379), 1, + ACTIONS(363), 1, aux_sym_locked_expression_token1, - ACTIONS(383), 1, + ACTIONS(367), 1, aux_sym_scope_tuning_token1, - ACTIONS(387), 1, + ACTIONS(371), 1, aux_sym_if_statement_token1, - ACTIONS(389), 1, + ACTIONS(373), 1, aux_sym_can_find_expression_token1, - ACTIONS(393), 1, + ACTIONS(377), 1, aux_sym_accumulate_expression_token1, - ACTIONS(429), 1, + ACTIONS(431), 1, aux_sym_input_expression_token1, - STATE(36), 1, + STATE(23), 1, sym__decimal_literal, - STATE(38), 1, + STATE(29), 1, sym_object_access, - STATE(707), 1, + STATE(1255), 1, sym__expression, - ACTIONS(395), 2, + ACTIONS(379), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(21), 2, + STATE(18), 2, sym_double_quoted_string, sym_single_quoted_string, - STATE(363), 2, + STATE(371), 2, sym_comment, sym_include, - ACTIONS(359), 4, + ACTIONS(343), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(37), 4, + STATE(24), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(13), 18, + STATE(20), 18, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -54871,71 +55829,71 @@ static const uint16_t ts_small_parse_table[] = { sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [7700] = 28, + [8033] = 28, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(1035), 1, + ACTIONS(635), 1, sym_identifier, - ACTIONS(1037), 1, + ACTIONS(637), 1, anon_sym_LBRACE, - ACTIONS(1039), 1, + ACTIONS(641), 1, sym_null_expression, - ACTIONS(1043), 1, + ACTIONS(645), 1, sym__integer_literal, - ACTIONS(1045), 1, + ACTIONS(647), 1, anon_sym_DQUOTE, - ACTIONS(1047), 1, + ACTIONS(649), 1, anon_sym_SQUOTE, - ACTIONS(1049), 1, - anon_sym_LPAREN, - ACTIONS(1051), 1, + ACTIONS(653), 1, aux_sym_unary_expression_token1, - ACTIONS(1053), 1, + ACTIONS(655), 1, aux_sym_unary_expression_token2, - ACTIONS(1055), 1, + ACTIONS(657), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(1057), 1, + ACTIONS(659), 1, aux_sym_current_changed_expression_token1, - ACTIONS(1059), 1, + ACTIONS(661), 1, aux_sym_locked_expression_token1, - ACTIONS(1061), 1, + ACTIONS(663), 1, aux_sym_input_expression_token1, - ACTIONS(1063), 1, + ACTIONS(667), 1, aux_sym_scope_tuning_token1, - ACTIONS(1065), 1, + ACTIONS(669), 1, aux_sym_if_statement_token1, - ACTIONS(1067), 1, + ACTIONS(673), 1, aux_sym_can_find_expression_token1, - ACTIONS(1069), 1, + ACTIONS(675), 1, aux_sym_accumulate_expression_token1, - STATE(619), 1, + ACTIONS(839), 1, + anon_sym_LPAREN, + STATE(532), 1, sym__expression, - STATE(642), 1, - sym_object_access, - STATE(699), 1, + STATE(565), 1, sym__decimal_literal, - ACTIONS(1071), 2, + STATE(587), 1, + sym_object_access, + ACTIONS(677), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(364), 2, + STATE(372), 2, sym_comment, sym_include, - STATE(700), 2, + STATE(580), 2, sym_double_quoted_string, sym_single_quoted_string, - ACTIONS(1041), 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(696), 4, + STATE(581), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(689), 18, + STATE(566), 18, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -54954,71 +55912,71 @@ static const uint16_t ts_small_parse_table[] = { sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [7811] = 28, + [8144] = 28, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(1073), 1, + ACTIONS(959), 1, sym_identifier, - ACTIONS(1075), 1, + ACTIONS(961), 1, anon_sym_LBRACE, - ACTIONS(1077), 1, + ACTIONS(963), 1, sym_null_expression, - ACTIONS(1081), 1, + ACTIONS(967), 1, sym__integer_literal, - ACTIONS(1083), 1, + ACTIONS(969), 1, anon_sym_DQUOTE, - ACTIONS(1085), 1, + ACTIONS(971), 1, anon_sym_SQUOTE, - ACTIONS(1087), 1, + ACTIONS(973), 1, anon_sym_LPAREN, - ACTIONS(1089), 1, + ACTIONS(975), 1, aux_sym_unary_expression_token1, - ACTIONS(1091), 1, + ACTIONS(977), 1, aux_sym_unary_expression_token2, - ACTIONS(1093), 1, + ACTIONS(979), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(1095), 1, + ACTIONS(981), 1, aux_sym_current_changed_expression_token1, - ACTIONS(1097), 1, + ACTIONS(983), 1, aux_sym_locked_expression_token1, - ACTIONS(1099), 1, + ACTIONS(985), 1, aux_sym_input_expression_token1, - ACTIONS(1101), 1, + ACTIONS(987), 1, aux_sym_scope_tuning_token1, - ACTIONS(1103), 1, + ACTIONS(989), 1, aux_sym_if_statement_token1, - ACTIONS(1105), 1, + ACTIONS(991), 1, aux_sym_can_find_expression_token1, - ACTIONS(1107), 1, + ACTIONS(993), 1, aux_sym_accumulate_expression_token1, - STATE(669), 1, + STATE(782), 1, sym__expression, - STATE(731), 1, + STATE(1033), 1, sym_object_access, - STATE(772), 1, + STATE(1335), 1, sym__decimal_literal, - ACTIONS(1109), 2, + ACTIONS(995), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(365), 2, + STATE(373), 2, sym_comment, sym_include, - STATE(771), 2, + STATE(1474), 2, sym_double_quoted_string, sym_single_quoted_string, - ACTIONS(1079), 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(744), 4, + STATE(1322), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(742), 18, + STATE(1384), 18, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -55037,71 +55995,71 @@ static const uint16_t ts_small_parse_table[] = { sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [7922] = 28, + [8255] = 28, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(921), 1, + ACTIONS(337), 1, sym_identifier, - ACTIONS(923), 1, + ACTIONS(339), 1, anon_sym_LBRACE, - ACTIONS(925), 1, + ACTIONS(341), 1, sym_null_expression, - ACTIONS(929), 1, + ACTIONS(345), 1, sym__integer_literal, - ACTIONS(931), 1, + ACTIONS(347), 1, anon_sym_DQUOTE, - ACTIONS(933), 1, + ACTIONS(349), 1, anon_sym_SQUOTE, - ACTIONS(935), 1, + ACTIONS(351), 1, anon_sym_LPAREN, - ACTIONS(937), 1, + ACTIONS(355), 1, aux_sym_unary_expression_token1, - ACTIONS(939), 1, + ACTIONS(357), 1, aux_sym_unary_expression_token2, - ACTIONS(941), 1, + ACTIONS(359), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(943), 1, + ACTIONS(361), 1, aux_sym_current_changed_expression_token1, - ACTIONS(945), 1, + ACTIONS(363), 1, aux_sym_locked_expression_token1, - ACTIONS(947), 1, - aux_sym_input_expression_token1, - ACTIONS(949), 1, + ACTIONS(367), 1, aux_sym_scope_tuning_token1, - ACTIONS(951), 1, + ACTIONS(371), 1, aux_sym_if_statement_token1, - ACTIONS(953), 1, + ACTIONS(373), 1, aux_sym_can_find_expression_token1, - ACTIONS(955), 1, + ACTIONS(377), 1, aux_sym_accumulate_expression_token1, - STATE(780), 1, - sym__expression, - STATE(898), 1, - sym_object_access, - STATE(1386), 1, + ACTIONS(431), 1, + aux_sym_input_expression_token1, + STATE(23), 1, sym__decimal_literal, - ACTIONS(957), 2, + STATE(29), 1, + sym_object_access, + STATE(1251), 1, + sym__expression, + ACTIONS(379), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(366), 2, - sym_comment, - sym_include, - STATE(1158), 2, + STATE(18), 2, sym_double_quoted_string, sym_single_quoted_string, - ACTIONS(927), 4, + STATE(374), 2, + sym_comment, + sym_include, + ACTIONS(343), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(1384), 4, + STATE(24), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(1396), 18, + STATE(20), 18, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -55120,71 +56078,71 @@ static const uint16_t ts_small_parse_table[] = { sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [8033] = 28, + [8366] = 28, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(355), 1, + ACTIONS(635), 1, + sym_identifier, + ACTIONS(637), 1, anon_sym_LBRACE, - ACTIONS(357), 1, + ACTIONS(641), 1, sym_null_expression, - ACTIONS(361), 1, + ACTIONS(645), 1, sym__integer_literal, - ACTIONS(363), 1, + ACTIONS(647), 1, anon_sym_DQUOTE, - ACTIONS(365), 1, + ACTIONS(649), 1, anon_sym_SQUOTE, - ACTIONS(367), 1, - anon_sym_LPAREN, - ACTIONS(371), 1, + ACTIONS(653), 1, aux_sym_unary_expression_token1, - ACTIONS(373), 1, + ACTIONS(655), 1, aux_sym_unary_expression_token2, - ACTIONS(375), 1, + ACTIONS(657), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(377), 1, + ACTIONS(659), 1, aux_sym_current_changed_expression_token1, - ACTIONS(379), 1, + ACTIONS(661), 1, aux_sym_locked_expression_token1, - ACTIONS(383), 1, + ACTIONS(663), 1, + aux_sym_input_expression_token1, + ACTIONS(667), 1, aux_sym_scope_tuning_token1, - ACTIONS(387), 1, + ACTIONS(669), 1, aux_sym_if_statement_token1, - ACTIONS(389), 1, + ACTIONS(673), 1, aux_sym_can_find_expression_token1, - ACTIONS(393), 1, + ACTIONS(675), 1, aux_sym_accumulate_expression_token1, - ACTIONS(429), 1, - aux_sym_input_expression_token1, - ACTIONS(1111), 1, - sym_identifier, - STATE(36), 1, + ACTIONS(839), 1, + anon_sym_LPAREN, + STATE(530), 1, + sym__expression, + STATE(565), 1, sym__decimal_literal, - STATE(38), 1, + STATE(587), 1, sym_object_access, - STATE(1341), 1, - sym__expression, - ACTIONS(395), 2, + ACTIONS(677), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(21), 2, - sym_double_quoted_string, - sym_single_quoted_string, - STATE(367), 2, + STATE(375), 2, sym_comment, sym_include, - ACTIONS(359), 4, + STATE(580), 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(37), 4, + STATE(581), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(13), 18, + STATE(566), 18, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -55203,71 +56161,71 @@ static const uint16_t ts_small_parse_table[] = { sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [8144] = 28, + [8477] = 28, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(353), 1, + ACTIONS(337), 1, sym_identifier, - ACTIONS(355), 1, + ACTIONS(339), 1, anon_sym_LBRACE, - ACTIONS(357), 1, + ACTIONS(341), 1, sym_null_expression, - ACTIONS(361), 1, + ACTIONS(345), 1, sym__integer_literal, - ACTIONS(363), 1, + ACTIONS(347), 1, anon_sym_DQUOTE, - ACTIONS(365), 1, + ACTIONS(349), 1, anon_sym_SQUOTE, - ACTIONS(367), 1, + ACTIONS(351), 1, anon_sym_LPAREN, - ACTIONS(371), 1, + ACTIONS(355), 1, aux_sym_unary_expression_token1, - ACTIONS(373), 1, + ACTIONS(357), 1, aux_sym_unary_expression_token2, - ACTIONS(375), 1, + ACTIONS(359), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(377), 1, + ACTIONS(361), 1, aux_sym_current_changed_expression_token1, - ACTIONS(379), 1, + ACTIONS(363), 1, aux_sym_locked_expression_token1, - ACTIONS(383), 1, + ACTIONS(367), 1, aux_sym_scope_tuning_token1, - ACTIONS(387), 1, + ACTIONS(371), 1, aux_sym_if_statement_token1, - ACTIONS(389), 1, + ACTIONS(373), 1, aux_sym_can_find_expression_token1, - ACTIONS(393), 1, + ACTIONS(377), 1, aux_sym_accumulate_expression_token1, - ACTIONS(429), 1, + ACTIONS(431), 1, aux_sym_input_expression_token1, - STATE(36), 1, + STATE(23), 1, sym__decimal_literal, - STATE(38), 1, + STATE(29), 1, sym_object_access, - STATE(1397), 1, + STATE(706), 1, sym__expression, - ACTIONS(395), 2, + ACTIONS(379), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(21), 2, + STATE(18), 2, sym_double_quoted_string, sym_single_quoted_string, - STATE(368), 2, + STATE(376), 2, sym_comment, sym_include, - ACTIONS(359), 4, + ACTIONS(343), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(37), 4, + STATE(24), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(13), 18, + STATE(20), 18, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -55286,71 +56244,71 @@ static const uint16_t ts_small_parse_table[] = { sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [8255] = 28, + [8588] = 28, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(353), 1, + ACTIONS(337), 1, sym_identifier, - ACTIONS(355), 1, + ACTIONS(339), 1, anon_sym_LBRACE, - ACTIONS(357), 1, + ACTIONS(341), 1, sym_null_expression, - ACTIONS(361), 1, + ACTIONS(345), 1, sym__integer_literal, - ACTIONS(363), 1, + ACTIONS(347), 1, anon_sym_DQUOTE, - ACTIONS(365), 1, + ACTIONS(349), 1, anon_sym_SQUOTE, - ACTIONS(367), 1, + ACTIONS(351), 1, anon_sym_LPAREN, - ACTIONS(371), 1, + ACTIONS(355), 1, aux_sym_unary_expression_token1, - ACTIONS(373), 1, + ACTIONS(357), 1, aux_sym_unary_expression_token2, - ACTIONS(375), 1, + ACTIONS(359), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(377), 1, + ACTIONS(361), 1, aux_sym_current_changed_expression_token1, - ACTIONS(379), 1, + ACTIONS(363), 1, aux_sym_locked_expression_token1, - ACTIONS(383), 1, + ACTIONS(367), 1, aux_sym_scope_tuning_token1, - ACTIONS(387), 1, + ACTIONS(371), 1, aux_sym_if_statement_token1, - ACTIONS(389), 1, + ACTIONS(373), 1, aux_sym_can_find_expression_token1, - ACTIONS(393), 1, + ACTIONS(377), 1, aux_sym_accumulate_expression_token1, - ACTIONS(429), 1, + ACTIONS(431), 1, aux_sym_input_expression_token1, - STATE(36), 1, + STATE(23), 1, sym__decimal_literal, - STATE(38), 1, + STATE(29), 1, sym_object_access, - STATE(1350), 1, + STATE(804), 1, sym__expression, - ACTIONS(395), 2, + ACTIONS(379), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(21), 2, + STATE(18), 2, sym_double_quoted_string, sym_single_quoted_string, - STATE(369), 2, + STATE(377), 2, sym_comment, sym_include, - ACTIONS(359), 4, + ACTIONS(343), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(37), 4, + STATE(24), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(13), 18, + STATE(20), 18, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -55369,71 +56327,71 @@ static const uint16_t ts_small_parse_table[] = { sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [8366] = 28, + [8699] = 28, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(921), 1, + ACTIONS(337), 1, sym_identifier, - ACTIONS(923), 1, + ACTIONS(339), 1, anon_sym_LBRACE, - ACTIONS(925), 1, + ACTIONS(341), 1, sym_null_expression, - ACTIONS(929), 1, + ACTIONS(345), 1, sym__integer_literal, - ACTIONS(931), 1, + ACTIONS(347), 1, anon_sym_DQUOTE, - ACTIONS(933), 1, + ACTIONS(349), 1, anon_sym_SQUOTE, - ACTIONS(935), 1, + ACTIONS(351), 1, anon_sym_LPAREN, - ACTIONS(937), 1, + ACTIONS(355), 1, aux_sym_unary_expression_token1, - ACTIONS(939), 1, + ACTIONS(357), 1, aux_sym_unary_expression_token2, - ACTIONS(941), 1, + ACTIONS(359), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(943), 1, + ACTIONS(361), 1, aux_sym_current_changed_expression_token1, - ACTIONS(945), 1, + ACTIONS(363), 1, aux_sym_locked_expression_token1, - ACTIONS(947), 1, - aux_sym_input_expression_token1, - ACTIONS(949), 1, + ACTIONS(367), 1, aux_sym_scope_tuning_token1, - ACTIONS(951), 1, + ACTIONS(371), 1, aux_sym_if_statement_token1, - ACTIONS(953), 1, + ACTIONS(373), 1, aux_sym_can_find_expression_token1, - ACTIONS(955), 1, + ACTIONS(377), 1, aux_sym_accumulate_expression_token1, - STATE(693), 1, - sym__expression, - STATE(898), 1, - sym_object_access, - STATE(1386), 1, + ACTIONS(431), 1, + aux_sym_input_expression_token1, + STATE(23), 1, sym__decimal_literal, - ACTIONS(957), 2, + STATE(29), 1, + sym_object_access, + STATE(818), 1, + sym__expression, + ACTIONS(379), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(370), 2, - sym_comment, - sym_include, - STATE(1158), 2, + STATE(18), 2, sym_double_quoted_string, sym_single_quoted_string, - ACTIONS(927), 4, + STATE(378), 2, + sym_comment, + sym_include, + ACTIONS(343), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(1384), 4, + STATE(24), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(1396), 18, + STATE(20), 18, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -55452,71 +56410,71 @@ static const uint16_t ts_small_parse_table[] = { sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [8477] = 28, + [8810] = 28, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(353), 1, + ACTIONS(337), 1, sym_identifier, - ACTIONS(355), 1, + ACTIONS(339), 1, anon_sym_LBRACE, - ACTIONS(357), 1, + ACTIONS(341), 1, sym_null_expression, - ACTIONS(361), 1, + ACTIONS(345), 1, sym__integer_literal, - ACTIONS(363), 1, + ACTIONS(347), 1, anon_sym_DQUOTE, - ACTIONS(365), 1, + ACTIONS(349), 1, anon_sym_SQUOTE, - ACTIONS(367), 1, + ACTIONS(351), 1, anon_sym_LPAREN, - ACTIONS(371), 1, + ACTIONS(355), 1, aux_sym_unary_expression_token1, - ACTIONS(373), 1, + ACTIONS(357), 1, aux_sym_unary_expression_token2, - ACTIONS(375), 1, + ACTIONS(359), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(377), 1, + ACTIONS(361), 1, aux_sym_current_changed_expression_token1, - ACTIONS(379), 1, + ACTIONS(363), 1, aux_sym_locked_expression_token1, - ACTIONS(383), 1, + ACTIONS(367), 1, aux_sym_scope_tuning_token1, - ACTIONS(387), 1, + ACTIONS(371), 1, aux_sym_if_statement_token1, - ACTIONS(389), 1, + ACTIONS(373), 1, aux_sym_can_find_expression_token1, - ACTIONS(393), 1, + ACTIONS(377), 1, aux_sym_accumulate_expression_token1, - ACTIONS(429), 1, + ACTIONS(431), 1, aux_sym_input_expression_token1, - STATE(36), 1, + STATE(23), 1, sym__decimal_literal, - STATE(38), 1, + STATE(29), 1, sym_object_access, - STATE(812), 1, + STATE(1148), 1, sym__expression, - ACTIONS(395), 2, + ACTIONS(379), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(21), 2, + STATE(18), 2, sym_double_quoted_string, sym_single_quoted_string, - STATE(371), 2, + STATE(379), 2, sym_comment, sym_include, - ACTIONS(359), 4, + ACTIONS(343), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(37), 4, + STATE(24), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(13), 18, + STATE(20), 18, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -55535,154 +56493,71 @@ static const uint16_t ts_small_parse_table[] = { sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [8588] = 28, + [8921] = 28, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(1073), 1, + ACTIONS(1001), 1, sym_identifier, - ACTIONS(1075), 1, + ACTIONS(1003), 1, anon_sym_LBRACE, - ACTIONS(1077), 1, + ACTIONS(1005), 1, sym_null_expression, - ACTIONS(1081), 1, + ACTIONS(1009), 1, sym__integer_literal, - ACTIONS(1083), 1, + ACTIONS(1011), 1, anon_sym_DQUOTE, - ACTIONS(1085), 1, + ACTIONS(1013), 1, anon_sym_SQUOTE, - ACTIONS(1087), 1, + ACTIONS(1015), 1, anon_sym_LPAREN, - ACTIONS(1089), 1, + ACTIONS(1017), 1, aux_sym_unary_expression_token1, - ACTIONS(1091), 1, + ACTIONS(1019), 1, aux_sym_unary_expression_token2, - ACTIONS(1093), 1, + ACTIONS(1021), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(1095), 1, + ACTIONS(1023), 1, aux_sym_current_changed_expression_token1, - ACTIONS(1097), 1, + ACTIONS(1025), 1, aux_sym_locked_expression_token1, - ACTIONS(1099), 1, + ACTIONS(1027), 1, aux_sym_input_expression_token1, - ACTIONS(1101), 1, + ACTIONS(1029), 1, aux_sym_scope_tuning_token1, - ACTIONS(1103), 1, + ACTIONS(1031), 1, aux_sym_if_statement_token1, - ACTIONS(1105), 1, + ACTIONS(1033), 1, aux_sym_can_find_expression_token1, - ACTIONS(1107), 1, + ACTIONS(1035), 1, aux_sym_accumulate_expression_token1, - STATE(660), 1, + STATE(662), 1, sym__expression, - STATE(731), 1, + STATE(735), 1, sym_object_access, - STATE(772), 1, + STATE(770), 1, sym__decimal_literal, - ACTIONS(1109), 2, + ACTIONS(1037), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(372), 2, + STATE(380), 2, sym_comment, sym_include, - STATE(771), 2, - sym_double_quoted_string, - sym_single_quoted_string, - ACTIONS(1079), 4, - aux_sym_boolean_literal_token1, - aux_sym_boolean_literal_token2, - aux_sym_boolean_literal_token3, - aux_sym_boolean_literal_token4, - STATE(744), 4, - sym_logical_expression, - sym_additive_expression, - sym_multiplicative_expression, - sym_comparison_expression, - STATE(742), 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, - [8699] = 28, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - ACTIONS(353), 1, - sym_identifier, - ACTIONS(355), 1, - anon_sym_LBRACE, - ACTIONS(357), 1, - sym_null_expression, - ACTIONS(361), 1, - sym__integer_literal, - ACTIONS(363), 1, - anon_sym_DQUOTE, - ACTIONS(365), 1, - anon_sym_SQUOTE, - ACTIONS(367), 1, - anon_sym_LPAREN, - ACTIONS(371), 1, - aux_sym_unary_expression_token1, - ACTIONS(373), 1, - aux_sym_unary_expression_token2, - ACTIONS(375), 1, - aux_sym_ambiguous_expression_token1, - ACTIONS(377), 1, - aux_sym_current_changed_expression_token1, - ACTIONS(379), 1, - aux_sym_locked_expression_token1, - ACTIONS(383), 1, - aux_sym_scope_tuning_token1, - ACTIONS(387), 1, - aux_sym_if_statement_token1, - ACTIONS(389), 1, - aux_sym_can_find_expression_token1, - ACTIONS(393), 1, - aux_sym_accumulate_expression_token1, - ACTIONS(429), 1, - aux_sym_input_expression_token1, - STATE(36), 1, - sym__decimal_literal, - STATE(38), 1, - sym_object_access, - STATE(547), 1, - sym__expression, - ACTIONS(395), 2, - aux_sym_available_expression_token1, - aux_sym_available_expression_token2, - STATE(21), 2, + STATE(769), 2, sym_double_quoted_string, sym_single_quoted_string, - STATE(373), 2, - sym_comment, - sym_include, - ACTIONS(359), 4, + ACTIONS(1007), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(37), 4, + STATE(748), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(13), 18, + STATE(746), 18, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -55701,7 +56576,7 @@ static const uint16_t ts_small_parse_table[] = { sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [8810] = 28, + [9032] = 28, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, @@ -55738,21 +56613,21 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_can_find_expression_token1, ACTIONS(675), 1, aux_sym_accumulate_expression_token1, - ACTIONS(901), 1, + ACTIONS(839), 1, anon_sym_LPAREN, - STATE(522), 1, + STATE(534), 1, sym__expression, - STATE(564), 1, + STATE(565), 1, sym__decimal_literal, - STATE(569), 1, + STATE(587), 1, sym_object_access, ACTIONS(677), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(374), 2, + STATE(381), 2, sym_comment, sym_include, - STATE(565), 2, + STATE(580), 2, sym_double_quoted_string, sym_single_quoted_string, ACTIONS(643), 4, @@ -55760,12 +56635,12 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(567), 4, + STATE(581), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(561), 18, + STATE(566), 18, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -55784,71 +56659,71 @@ static const uint16_t ts_small_parse_table[] = { sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [8921] = 28, + [9143] = 28, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(353), 1, + ACTIONS(959), 1, sym_identifier, - ACTIONS(355), 1, + ACTIONS(961), 1, anon_sym_LBRACE, - ACTIONS(357), 1, + ACTIONS(963), 1, sym_null_expression, - ACTIONS(361), 1, + ACTIONS(967), 1, sym__integer_literal, - ACTIONS(363), 1, + ACTIONS(969), 1, anon_sym_DQUOTE, - ACTIONS(365), 1, + ACTIONS(971), 1, anon_sym_SQUOTE, - ACTIONS(367), 1, + ACTIONS(973), 1, anon_sym_LPAREN, - ACTIONS(371), 1, + ACTIONS(975), 1, aux_sym_unary_expression_token1, - ACTIONS(373), 1, + ACTIONS(977), 1, aux_sym_unary_expression_token2, - ACTIONS(375), 1, + ACTIONS(979), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(377), 1, + ACTIONS(981), 1, aux_sym_current_changed_expression_token1, - ACTIONS(379), 1, + ACTIONS(983), 1, aux_sym_locked_expression_token1, - ACTIONS(383), 1, + ACTIONS(985), 1, + aux_sym_input_expression_token1, + ACTIONS(987), 1, aux_sym_scope_tuning_token1, - ACTIONS(387), 1, + ACTIONS(989), 1, aux_sym_if_statement_token1, - ACTIONS(389), 1, + ACTIONS(991), 1, aux_sym_can_find_expression_token1, - ACTIONS(393), 1, + ACTIONS(993), 1, aux_sym_accumulate_expression_token1, - ACTIONS(429), 1, - aux_sym_input_expression_token1, - STATE(36), 1, - sym__decimal_literal, - STATE(38), 1, - sym_object_access, - STATE(129), 1, + STATE(797), 1, sym__expression, - ACTIONS(395), 2, + STATE(1033), 1, + sym_object_access, + STATE(1335), 1, + sym__decimal_literal, + ACTIONS(995), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(21), 2, - sym_double_quoted_string, - sym_single_quoted_string, - STATE(375), 2, + STATE(382), 2, sym_comment, sym_include, - ACTIONS(359), 4, + STATE(1474), 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(37), 4, + STATE(1322), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(13), 18, + STATE(1384), 18, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -55867,71 +56742,71 @@ static const uint16_t ts_small_parse_table[] = { sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [9032] = 28, + [9254] = 28, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(353), 1, + ACTIONS(635), 1, sym_identifier, - ACTIONS(355), 1, + ACTIONS(637), 1, anon_sym_LBRACE, - ACTIONS(357), 1, + ACTIONS(641), 1, sym_null_expression, - ACTIONS(361), 1, + ACTIONS(645), 1, sym__integer_literal, - ACTIONS(363), 1, + ACTIONS(647), 1, anon_sym_DQUOTE, - ACTIONS(365), 1, + ACTIONS(649), 1, anon_sym_SQUOTE, - ACTIONS(367), 1, - anon_sym_LPAREN, - ACTIONS(371), 1, + ACTIONS(653), 1, aux_sym_unary_expression_token1, - ACTIONS(373), 1, + ACTIONS(655), 1, aux_sym_unary_expression_token2, - ACTIONS(375), 1, + ACTIONS(657), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(377), 1, + ACTIONS(659), 1, aux_sym_current_changed_expression_token1, - ACTIONS(379), 1, + ACTIONS(661), 1, aux_sym_locked_expression_token1, - ACTIONS(383), 1, + ACTIONS(663), 1, + aux_sym_input_expression_token1, + ACTIONS(667), 1, aux_sym_scope_tuning_token1, - ACTIONS(387), 1, + ACTIONS(669), 1, aux_sym_if_statement_token1, - ACTIONS(389), 1, + ACTIONS(673), 1, aux_sym_can_find_expression_token1, - ACTIONS(393), 1, + ACTIONS(675), 1, aux_sym_accumulate_expression_token1, - ACTIONS(429), 1, - aux_sym_input_expression_token1, - STATE(36), 1, + ACTIONS(839), 1, + anon_sym_LPAREN, + STATE(535), 1, + sym__expression, + STATE(565), 1, sym__decimal_literal, - STATE(38), 1, + STATE(587), 1, sym_object_access, - STATE(1314), 1, - sym__expression, - ACTIONS(395), 2, + ACTIONS(677), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(21), 2, - sym_double_quoted_string, - sym_single_quoted_string, - STATE(376), 2, + STATE(383), 2, sym_comment, sym_include, - ACTIONS(359), 4, + STATE(580), 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(37), 4, + STATE(581), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(13), 18, + STATE(566), 18, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -55950,71 +56825,71 @@ static const uint16_t ts_small_parse_table[] = { sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [9143] = 28, + [9365] = 28, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(1035), 1, + ACTIONS(959), 1, sym_identifier, - ACTIONS(1037), 1, + ACTIONS(961), 1, anon_sym_LBRACE, - ACTIONS(1039), 1, + ACTIONS(963), 1, sym_null_expression, - ACTIONS(1043), 1, + ACTIONS(967), 1, sym__integer_literal, - ACTIONS(1045), 1, + ACTIONS(969), 1, anon_sym_DQUOTE, - ACTIONS(1047), 1, + ACTIONS(971), 1, anon_sym_SQUOTE, - ACTIONS(1049), 1, + ACTIONS(973), 1, anon_sym_LPAREN, - ACTIONS(1051), 1, + ACTIONS(975), 1, aux_sym_unary_expression_token1, - ACTIONS(1053), 1, + ACTIONS(977), 1, aux_sym_unary_expression_token2, - ACTIONS(1055), 1, + ACTIONS(979), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(1057), 1, + ACTIONS(981), 1, aux_sym_current_changed_expression_token1, - ACTIONS(1059), 1, + ACTIONS(983), 1, aux_sym_locked_expression_token1, - ACTIONS(1061), 1, + ACTIONS(985), 1, aux_sym_input_expression_token1, - ACTIONS(1063), 1, + ACTIONS(987), 1, aux_sym_scope_tuning_token1, - ACTIONS(1065), 1, + ACTIONS(989), 1, aux_sym_if_statement_token1, - ACTIONS(1067), 1, + ACTIONS(991), 1, aux_sym_can_find_expression_token1, - ACTIONS(1069), 1, + ACTIONS(993), 1, aux_sym_accumulate_expression_token1, - STATE(612), 1, + STATE(798), 1, sym__expression, - STATE(642), 1, + STATE(1033), 1, sym_object_access, - STATE(699), 1, + STATE(1335), 1, sym__decimal_literal, - ACTIONS(1071), 2, + ACTIONS(995), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(377), 2, + STATE(384), 2, sym_comment, sym_include, - STATE(700), 2, + STATE(1474), 2, sym_double_quoted_string, sym_single_quoted_string, - ACTIONS(1041), 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(696), 4, + STATE(1322), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(689), 18, + STATE(1384), 18, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -56033,71 +56908,71 @@ static const uint16_t ts_small_parse_table[] = { sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [9254] = 28, + [9476] = 28, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(353), 1, + ACTIONS(959), 1, sym_identifier, - ACTIONS(355), 1, + ACTIONS(961), 1, anon_sym_LBRACE, - ACTIONS(357), 1, + ACTIONS(963), 1, sym_null_expression, - ACTIONS(361), 1, + ACTIONS(967), 1, sym__integer_literal, - ACTIONS(363), 1, + ACTIONS(969), 1, anon_sym_DQUOTE, - ACTIONS(365), 1, + ACTIONS(971), 1, anon_sym_SQUOTE, - ACTIONS(367), 1, + ACTIONS(973), 1, anon_sym_LPAREN, - ACTIONS(371), 1, + ACTIONS(975), 1, aux_sym_unary_expression_token1, - ACTIONS(373), 1, + ACTIONS(977), 1, aux_sym_unary_expression_token2, - ACTIONS(375), 1, + ACTIONS(979), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(377), 1, + ACTIONS(981), 1, aux_sym_current_changed_expression_token1, - ACTIONS(379), 1, + ACTIONS(983), 1, aux_sym_locked_expression_token1, - ACTIONS(383), 1, + ACTIONS(985), 1, + aux_sym_input_expression_token1, + ACTIONS(987), 1, aux_sym_scope_tuning_token1, - ACTIONS(387), 1, + ACTIONS(989), 1, aux_sym_if_statement_token1, - ACTIONS(389), 1, + ACTIONS(991), 1, aux_sym_can_find_expression_token1, - ACTIONS(393), 1, + ACTIONS(993), 1, aux_sym_accumulate_expression_token1, - ACTIONS(429), 1, - aux_sym_input_expression_token1, - STATE(36), 1, - sym__decimal_literal, - STATE(38), 1, - sym_object_access, - STATE(639), 1, + STATE(697), 1, sym__expression, - ACTIONS(395), 2, + STATE(1033), 1, + sym_object_access, + STATE(1335), 1, + sym__decimal_literal, + ACTIONS(995), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(21), 2, - sym_double_quoted_string, - sym_single_quoted_string, - STATE(378), 2, + STATE(385), 2, sym_comment, sym_include, - ACTIONS(359), 4, + STATE(1474), 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(37), 4, + STATE(1322), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(13), 18, + STATE(1384), 18, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -56116,71 +56991,71 @@ static const uint16_t ts_small_parse_table[] = { sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [9365] = 28, + [9587] = 28, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(353), 1, + ACTIONS(337), 1, sym_identifier, - ACTIONS(355), 1, + ACTIONS(339), 1, anon_sym_LBRACE, - ACTIONS(357), 1, + ACTIONS(341), 1, sym_null_expression, - ACTIONS(361), 1, + ACTIONS(345), 1, sym__integer_literal, - ACTIONS(363), 1, + ACTIONS(347), 1, anon_sym_DQUOTE, - ACTIONS(365), 1, + ACTIONS(349), 1, anon_sym_SQUOTE, - ACTIONS(367), 1, + ACTIONS(351), 1, anon_sym_LPAREN, - ACTIONS(371), 1, + ACTIONS(355), 1, aux_sym_unary_expression_token1, - ACTIONS(373), 1, + ACTIONS(357), 1, aux_sym_unary_expression_token2, - ACTIONS(375), 1, + ACTIONS(359), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(377), 1, + ACTIONS(361), 1, aux_sym_current_changed_expression_token1, - ACTIONS(379), 1, + ACTIONS(363), 1, aux_sym_locked_expression_token1, - ACTIONS(383), 1, + ACTIONS(367), 1, aux_sym_scope_tuning_token1, - ACTIONS(387), 1, + ACTIONS(371), 1, aux_sym_if_statement_token1, - ACTIONS(389), 1, + ACTIONS(373), 1, aux_sym_can_find_expression_token1, - ACTIONS(393), 1, + ACTIONS(377), 1, aux_sym_accumulate_expression_token1, - ACTIONS(429), 1, + ACTIONS(431), 1, aux_sym_input_expression_token1, - STATE(36), 1, + STATE(23), 1, sym__decimal_literal, - STATE(38), 1, + STATE(29), 1, sym_object_access, - STATE(1346), 1, + STATE(1429), 1, sym__expression, - ACTIONS(395), 2, + ACTIONS(379), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(21), 2, + STATE(18), 2, sym_double_quoted_string, sym_single_quoted_string, - STATE(379), 2, + STATE(386), 2, sym_comment, sym_include, - ACTIONS(359), 4, + ACTIONS(343), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(37), 4, + STATE(24), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(13), 18, + STATE(20), 18, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -56199,71 +57074,71 @@ static const uint16_t ts_small_parse_table[] = { sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [9476] = 28, + [9698] = 28, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(353), 1, + ACTIONS(337), 1, sym_identifier, - ACTIONS(355), 1, + ACTIONS(339), 1, anon_sym_LBRACE, - ACTIONS(357), 1, + ACTIONS(341), 1, sym_null_expression, - ACTIONS(361), 1, + ACTIONS(345), 1, sym__integer_literal, - ACTIONS(363), 1, + ACTIONS(347), 1, anon_sym_DQUOTE, - ACTIONS(365), 1, + ACTIONS(349), 1, anon_sym_SQUOTE, - ACTIONS(367), 1, + ACTIONS(351), 1, anon_sym_LPAREN, - ACTIONS(371), 1, + ACTIONS(355), 1, aux_sym_unary_expression_token1, - ACTIONS(373), 1, + ACTIONS(357), 1, aux_sym_unary_expression_token2, - ACTIONS(375), 1, + ACTIONS(359), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(377), 1, + ACTIONS(361), 1, aux_sym_current_changed_expression_token1, - ACTIONS(379), 1, + ACTIONS(363), 1, aux_sym_locked_expression_token1, - ACTIONS(383), 1, + ACTIONS(367), 1, aux_sym_scope_tuning_token1, - ACTIONS(387), 1, + ACTIONS(371), 1, aux_sym_if_statement_token1, - ACTIONS(389), 1, + ACTIONS(373), 1, aux_sym_can_find_expression_token1, - ACTIONS(393), 1, + ACTIONS(377), 1, aux_sym_accumulate_expression_token1, - ACTIONS(429), 1, + ACTIONS(431), 1, aux_sym_input_expression_token1, - STATE(36), 1, + STATE(23), 1, sym__decimal_literal, - STATE(38), 1, + STATE(29), 1, sym_object_access, - STATE(1498), 1, + STATE(639), 1, sym__expression, - ACTIONS(395), 2, + ACTIONS(379), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(21), 2, + STATE(18), 2, sym_double_quoted_string, sym_single_quoted_string, - STATE(380), 2, + STATE(387), 2, sym_comment, sym_include, - ACTIONS(359), 4, + ACTIONS(343), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(37), 4, + STATE(24), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(13), 18, + STATE(20), 18, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -56282,71 +57157,71 @@ static const uint16_t ts_small_parse_table[] = { sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [9587] = 28, + [9809] = 28, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(1073), 1, + ACTIONS(959), 1, sym_identifier, - ACTIONS(1075), 1, + ACTIONS(961), 1, anon_sym_LBRACE, - ACTIONS(1077), 1, + ACTIONS(963), 1, sym_null_expression, - ACTIONS(1081), 1, + ACTIONS(967), 1, sym__integer_literal, - ACTIONS(1083), 1, + ACTIONS(969), 1, anon_sym_DQUOTE, - ACTIONS(1085), 1, + ACTIONS(971), 1, anon_sym_SQUOTE, - ACTIONS(1087), 1, + ACTIONS(973), 1, anon_sym_LPAREN, - ACTIONS(1089), 1, + ACTIONS(975), 1, aux_sym_unary_expression_token1, - ACTIONS(1091), 1, + ACTIONS(977), 1, aux_sym_unary_expression_token2, - ACTIONS(1093), 1, + ACTIONS(979), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(1095), 1, + ACTIONS(981), 1, aux_sym_current_changed_expression_token1, - ACTIONS(1097), 1, + ACTIONS(983), 1, aux_sym_locked_expression_token1, - ACTIONS(1099), 1, + ACTIONS(985), 1, aux_sym_input_expression_token1, - ACTIONS(1101), 1, + ACTIONS(987), 1, aux_sym_scope_tuning_token1, - ACTIONS(1103), 1, + ACTIONS(989), 1, aux_sym_if_statement_token1, - ACTIONS(1105), 1, + ACTIONS(991), 1, aux_sym_can_find_expression_token1, - ACTIONS(1107), 1, + ACTIONS(993), 1, aux_sym_accumulate_expression_token1, - STATE(667), 1, + STATE(783), 1, sym__expression, - STATE(731), 1, + STATE(1033), 1, sym_object_access, - STATE(772), 1, + STATE(1335), 1, sym__decimal_literal, - ACTIONS(1109), 2, + ACTIONS(995), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(381), 2, + STATE(388), 2, sym_comment, sym_include, - STATE(771), 2, + STATE(1474), 2, sym_double_quoted_string, sym_single_quoted_string, - ACTIONS(1079), 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(744), 4, + STATE(1322), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(742), 18, + STATE(1384), 18, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -56365,71 +57240,71 @@ static const uint16_t ts_small_parse_table[] = { sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [9698] = 28, + [9920] = 28, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(353), 1, + ACTIONS(337), 1, sym_identifier, - ACTIONS(355), 1, + ACTIONS(339), 1, anon_sym_LBRACE, - ACTIONS(357), 1, + ACTIONS(341), 1, sym_null_expression, - ACTIONS(361), 1, + ACTIONS(345), 1, sym__integer_literal, - ACTIONS(363), 1, + ACTIONS(347), 1, anon_sym_DQUOTE, - ACTIONS(365), 1, + ACTIONS(349), 1, anon_sym_SQUOTE, - ACTIONS(367), 1, + ACTIONS(351), 1, anon_sym_LPAREN, - ACTIONS(371), 1, + ACTIONS(355), 1, aux_sym_unary_expression_token1, - ACTIONS(389), 1, - aux_sym_can_find_expression_token1, - ACTIONS(421), 1, + ACTIONS(357), 1, aux_sym_unary_expression_token2, - ACTIONS(423), 1, + ACTIONS(359), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(425), 1, + ACTIONS(361), 1, aux_sym_current_changed_expression_token1, - ACTIONS(427), 1, + ACTIONS(363), 1, aux_sym_locked_expression_token1, - ACTIONS(429), 1, - aux_sym_input_expression_token1, - ACTIONS(431), 1, + ACTIONS(367), 1, aux_sym_scope_tuning_token1, - ACTIONS(435), 1, + ACTIONS(371), 1, aux_sym_if_statement_token1, - ACTIONS(445), 1, + ACTIONS(373), 1, + aux_sym_can_find_expression_token1, + ACTIONS(377), 1, aux_sym_accumulate_expression_token1, - STATE(36), 1, + ACTIONS(431), 1, + aux_sym_input_expression_token1, + STATE(23), 1, sym__decimal_literal, - STATE(38), 1, + STATE(29), 1, sym_object_access, - STATE(647), 1, + STATE(751), 1, sym__expression, - ACTIONS(395), 2, + ACTIONS(379), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(21), 2, + STATE(18), 2, sym_double_quoted_string, sym_single_quoted_string, - STATE(382), 2, + STATE(389), 2, sym_comment, sym_include, - ACTIONS(359), 4, + ACTIONS(343), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(37), 4, + STATE(24), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(13), 18, + STATE(20), 18, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -56448,71 +57323,71 @@ static const uint16_t ts_small_parse_table[] = { sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [9809] = 28, + [10031] = 28, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(353), 1, + ACTIONS(959), 1, sym_identifier, - ACTIONS(355), 1, + ACTIONS(961), 1, anon_sym_LBRACE, - ACTIONS(357), 1, + ACTIONS(963), 1, sym_null_expression, - ACTIONS(361), 1, + ACTIONS(967), 1, sym__integer_literal, - ACTIONS(363), 1, + ACTIONS(969), 1, anon_sym_DQUOTE, - ACTIONS(365), 1, + ACTIONS(971), 1, anon_sym_SQUOTE, - ACTIONS(367), 1, + ACTIONS(973), 1, anon_sym_LPAREN, - ACTIONS(371), 1, + ACTIONS(975), 1, aux_sym_unary_expression_token1, - ACTIONS(373), 1, + ACTIONS(977), 1, aux_sym_unary_expression_token2, - ACTIONS(375), 1, + ACTIONS(979), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(377), 1, + ACTIONS(981), 1, aux_sym_current_changed_expression_token1, - ACTIONS(379), 1, + ACTIONS(983), 1, aux_sym_locked_expression_token1, - ACTIONS(383), 1, + ACTIONS(985), 1, + aux_sym_input_expression_token1, + ACTIONS(987), 1, aux_sym_scope_tuning_token1, - ACTIONS(387), 1, + ACTIONS(989), 1, aux_sym_if_statement_token1, - ACTIONS(389), 1, + ACTIONS(991), 1, aux_sym_can_find_expression_token1, - ACTIONS(393), 1, + ACTIONS(993), 1, aux_sym_accumulate_expression_token1, - ACTIONS(429), 1, - aux_sym_input_expression_token1, - STATE(36), 1, - sym__decimal_literal, - STATE(38), 1, - sym_object_access, - STATE(545), 1, + STATE(787), 1, sym__expression, - ACTIONS(395), 2, + STATE(1033), 1, + sym_object_access, + STATE(1335), 1, + sym__decimal_literal, + ACTIONS(995), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(21), 2, - sym_double_quoted_string, - sym_single_quoted_string, - STATE(383), 2, + STATE(390), 2, sym_comment, sym_include, - ACTIONS(359), 4, + STATE(1474), 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(37), 4, + STATE(1322), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(13), 18, + STATE(1384), 18, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -56531,71 +57406,71 @@ static const uint16_t ts_small_parse_table[] = { sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [9920] = 28, + [10142] = 28, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(353), 1, + ACTIONS(921), 1, sym_identifier, - ACTIONS(355), 1, + ACTIONS(923), 1, anon_sym_LBRACE, - ACTIONS(357), 1, + ACTIONS(925), 1, sym_null_expression, - ACTIONS(361), 1, + ACTIONS(929), 1, sym__integer_literal, - ACTIONS(363), 1, + ACTIONS(931), 1, anon_sym_DQUOTE, - ACTIONS(365), 1, + ACTIONS(933), 1, anon_sym_SQUOTE, - ACTIONS(367), 1, + ACTIONS(935), 1, anon_sym_LPAREN, - ACTIONS(371), 1, + ACTIONS(937), 1, aux_sym_unary_expression_token1, - ACTIONS(389), 1, - aux_sym_can_find_expression_token1, - ACTIONS(421), 1, + ACTIONS(939), 1, aux_sym_unary_expression_token2, - ACTIONS(423), 1, + ACTIONS(941), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(425), 1, + ACTIONS(943), 1, aux_sym_current_changed_expression_token1, - ACTIONS(427), 1, + ACTIONS(945), 1, aux_sym_locked_expression_token1, - ACTIONS(429), 1, + ACTIONS(947), 1, aux_sym_input_expression_token1, - ACTIONS(431), 1, + ACTIONS(949), 1, aux_sym_scope_tuning_token1, - ACTIONS(435), 1, + ACTIONS(951), 1, aux_sym_if_statement_token1, - ACTIONS(445), 1, + ACTIONS(953), 1, + aux_sym_can_find_expression_token1, + ACTIONS(955), 1, aux_sym_accumulate_expression_token1, - STATE(36), 1, - sym__decimal_literal, - STATE(38), 1, - sym_object_access, - STATE(645), 1, + STATE(821), 1, sym__expression, - ACTIONS(395), 2, + STATE(1228), 1, + sym_object_access, + STATE(1581), 1, + sym__decimal_literal, + ACTIONS(957), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(21), 2, - sym_double_quoted_string, - sym_single_quoted_string, - STATE(384), 2, + STATE(391), 2, sym_comment, sym_include, - ACTIONS(359), 4, + STATE(1569), 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(37), 4, + STATE(1582), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(13), 18, + STATE(1579), 18, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -56614,71 +57489,71 @@ static const uint16_t ts_small_parse_table[] = { sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [10031] = 28, + [10253] = 28, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(355), 1, + ACTIONS(337), 1, + sym_identifier, + ACTIONS(339), 1, anon_sym_LBRACE, - ACTIONS(357), 1, + ACTIONS(341), 1, sym_null_expression, - ACTIONS(361), 1, + ACTIONS(345), 1, sym__integer_literal, - ACTIONS(363), 1, + ACTIONS(347), 1, anon_sym_DQUOTE, - ACTIONS(365), 1, + ACTIONS(349), 1, anon_sym_SQUOTE, - ACTIONS(367), 1, + ACTIONS(351), 1, anon_sym_LPAREN, - ACTIONS(371), 1, + ACTIONS(355), 1, aux_sym_unary_expression_token1, - ACTIONS(373), 1, + ACTIONS(357), 1, aux_sym_unary_expression_token2, - ACTIONS(375), 1, + ACTIONS(359), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(377), 1, + ACTIONS(361), 1, aux_sym_current_changed_expression_token1, - ACTIONS(379), 1, + ACTIONS(363), 1, aux_sym_locked_expression_token1, - ACTIONS(383), 1, + ACTIONS(367), 1, aux_sym_scope_tuning_token1, - ACTIONS(387), 1, + ACTIONS(371), 1, aux_sym_if_statement_token1, - ACTIONS(389), 1, + ACTIONS(373), 1, aux_sym_can_find_expression_token1, - ACTIONS(393), 1, + ACTIONS(377), 1, aux_sym_accumulate_expression_token1, - ACTIONS(429), 1, + ACTIONS(431), 1, aux_sym_input_expression_token1, - ACTIONS(1113), 1, - sym_identifier, - STATE(36), 1, + STATE(23), 1, sym__decimal_literal, - STATE(38), 1, + STATE(29), 1, sym_object_access, - STATE(1168), 1, + STATE(1177), 1, sym__expression, - ACTIONS(395), 2, + ACTIONS(379), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(21), 2, + STATE(18), 2, sym_double_quoted_string, sym_single_quoted_string, - STATE(385), 2, + STATE(392), 2, sym_comment, sym_include, - ACTIONS(359), 4, + ACTIONS(343), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(37), 4, + STATE(24), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(13), 18, + STATE(20), 18, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -56697,71 +57572,71 @@ static const uint16_t ts_small_parse_table[] = { sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [10142] = 28, + [10364] = 28, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(353), 1, - sym_identifier, - ACTIONS(355), 1, + ACTIONS(339), 1, anon_sym_LBRACE, - ACTIONS(357), 1, + ACTIONS(341), 1, sym_null_expression, - ACTIONS(361), 1, + ACTIONS(345), 1, sym__integer_literal, - ACTIONS(363), 1, + ACTIONS(347), 1, anon_sym_DQUOTE, - ACTIONS(365), 1, + ACTIONS(349), 1, anon_sym_SQUOTE, - ACTIONS(367), 1, + ACTIONS(351), 1, anon_sym_LPAREN, - ACTIONS(371), 1, + ACTIONS(355), 1, aux_sym_unary_expression_token1, - ACTIONS(389), 1, - aux_sym_can_find_expression_token1, - ACTIONS(421), 1, + ACTIONS(357), 1, aux_sym_unary_expression_token2, - ACTIONS(423), 1, + ACTIONS(359), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(425), 1, + ACTIONS(361), 1, aux_sym_current_changed_expression_token1, - ACTIONS(427), 1, + ACTIONS(363), 1, aux_sym_locked_expression_token1, - ACTIONS(429), 1, - aux_sym_input_expression_token1, - ACTIONS(431), 1, + ACTIONS(367), 1, aux_sym_scope_tuning_token1, - ACTIONS(435), 1, + ACTIONS(371), 1, aux_sym_if_statement_token1, - ACTIONS(445), 1, + ACTIONS(373), 1, + aux_sym_can_find_expression_token1, + ACTIONS(377), 1, aux_sym_accumulate_expression_token1, - STATE(36), 1, + ACTIONS(431), 1, + aux_sym_input_expression_token1, + ACTIONS(1039), 1, + sym_identifier, + STATE(23), 1, sym__decimal_literal, - STATE(38), 1, + STATE(29), 1, sym_object_access, - STATE(643), 1, + STATE(1181), 1, sym__expression, - ACTIONS(395), 2, + ACTIONS(379), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(21), 2, + STATE(18), 2, sym_double_quoted_string, sym_single_quoted_string, - STATE(386), 2, + STATE(393), 2, sym_comment, sym_include, - ACTIONS(359), 4, + ACTIONS(343), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(37), 4, + STATE(24), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(13), 18, + STATE(20), 18, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -56780,71 +57655,71 @@ static const uint16_t ts_small_parse_table[] = { sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [10253] = 28, + [10475] = 28, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(353), 1, + ACTIONS(959), 1, sym_identifier, - ACTIONS(355), 1, + ACTIONS(961), 1, anon_sym_LBRACE, - ACTIONS(357), 1, + ACTIONS(963), 1, sym_null_expression, - ACTIONS(361), 1, + ACTIONS(967), 1, sym__integer_literal, - ACTIONS(363), 1, + ACTIONS(969), 1, anon_sym_DQUOTE, - ACTIONS(365), 1, + ACTIONS(971), 1, anon_sym_SQUOTE, - ACTIONS(367), 1, + ACTIONS(973), 1, anon_sym_LPAREN, - ACTIONS(371), 1, + ACTIONS(975), 1, aux_sym_unary_expression_token1, - ACTIONS(389), 1, - aux_sym_can_find_expression_token1, - ACTIONS(421), 1, + ACTIONS(977), 1, aux_sym_unary_expression_token2, - ACTIONS(423), 1, + ACTIONS(979), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(425), 1, + ACTIONS(981), 1, aux_sym_current_changed_expression_token1, - ACTIONS(427), 1, + ACTIONS(983), 1, aux_sym_locked_expression_token1, - ACTIONS(429), 1, + ACTIONS(985), 1, aux_sym_input_expression_token1, - ACTIONS(431), 1, + ACTIONS(987), 1, aux_sym_scope_tuning_token1, - ACTIONS(435), 1, + ACTIONS(989), 1, aux_sym_if_statement_token1, - ACTIONS(445), 1, + ACTIONS(991), 1, + aux_sym_can_find_expression_token1, + ACTIONS(993), 1, aux_sym_accumulate_expression_token1, - STATE(36), 1, - sym__decimal_literal, - STATE(38), 1, - sym_object_access, - STATE(657), 1, + STATE(717), 1, sym__expression, - ACTIONS(395), 2, + STATE(1033), 1, + sym_object_access, + STATE(1335), 1, + sym__decimal_literal, + ACTIONS(995), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(21), 2, - sym_double_quoted_string, - sym_single_quoted_string, - STATE(387), 2, + STATE(394), 2, sym_comment, sym_include, - ACTIONS(359), 4, + STATE(1474), 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(37), 4, + STATE(1322), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(13), 18, + STATE(1384), 18, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -56863,71 +57738,71 @@ static const uint16_t ts_small_parse_table[] = { sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [10364] = 28, + [10586] = 28, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(353), 1, + ACTIONS(921), 1, sym_identifier, - ACTIONS(355), 1, + ACTIONS(923), 1, anon_sym_LBRACE, - ACTIONS(357), 1, + ACTIONS(925), 1, sym_null_expression, - ACTIONS(361), 1, + ACTIONS(929), 1, sym__integer_literal, - ACTIONS(363), 1, + ACTIONS(931), 1, anon_sym_DQUOTE, - ACTIONS(365), 1, + ACTIONS(933), 1, anon_sym_SQUOTE, - ACTIONS(367), 1, + ACTIONS(935), 1, anon_sym_LPAREN, - ACTIONS(371), 1, + ACTIONS(937), 1, aux_sym_unary_expression_token1, - ACTIONS(373), 1, + ACTIONS(939), 1, aux_sym_unary_expression_token2, - ACTIONS(375), 1, + ACTIONS(941), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(377), 1, + ACTIONS(943), 1, aux_sym_current_changed_expression_token1, - ACTIONS(379), 1, + ACTIONS(945), 1, aux_sym_locked_expression_token1, - ACTIONS(383), 1, + ACTIONS(947), 1, + aux_sym_input_expression_token1, + ACTIONS(949), 1, aux_sym_scope_tuning_token1, - ACTIONS(387), 1, + ACTIONS(951), 1, aux_sym_if_statement_token1, - ACTIONS(389), 1, + ACTIONS(953), 1, aux_sym_can_find_expression_token1, - ACTIONS(393), 1, + ACTIONS(955), 1, aux_sym_accumulate_expression_token1, - ACTIONS(429), 1, - aux_sym_input_expression_token1, - STATE(36), 1, - sym__decimal_literal, - STATE(38), 1, - sym_object_access, - STATE(1347), 1, + STATE(806), 1, sym__expression, - ACTIONS(395), 2, + STATE(1228), 1, + sym_object_access, + STATE(1581), 1, + sym__decimal_literal, + ACTIONS(957), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(21), 2, - sym_double_quoted_string, - sym_single_quoted_string, - STATE(388), 2, + STATE(395), 2, sym_comment, sym_include, - ACTIONS(359), 4, + STATE(1569), 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(37), 4, + STATE(1582), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(13), 18, + STATE(1579), 18, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -56946,71 +57821,71 @@ static const uint16_t ts_small_parse_table[] = { sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [10475] = 28, + [10697] = 28, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(997), 1, + ACTIONS(959), 1, sym_identifier, - ACTIONS(999), 1, + ACTIONS(961), 1, anon_sym_LBRACE, - ACTIONS(1001), 1, + ACTIONS(963), 1, sym_null_expression, - ACTIONS(1005), 1, + ACTIONS(967), 1, sym__integer_literal, - ACTIONS(1007), 1, + ACTIONS(969), 1, anon_sym_DQUOTE, - ACTIONS(1009), 1, + ACTIONS(971), 1, anon_sym_SQUOTE, - ACTIONS(1011), 1, + ACTIONS(973), 1, anon_sym_LPAREN, - ACTIONS(1013), 1, + ACTIONS(975), 1, aux_sym_unary_expression_token1, - ACTIONS(1015), 1, + ACTIONS(977), 1, aux_sym_unary_expression_token2, - ACTIONS(1017), 1, + ACTIONS(979), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(1019), 1, + ACTIONS(981), 1, aux_sym_current_changed_expression_token1, - ACTIONS(1021), 1, + ACTIONS(983), 1, aux_sym_locked_expression_token1, - ACTIONS(1023), 1, + ACTIONS(985), 1, aux_sym_input_expression_token1, - ACTIONS(1025), 1, + ACTIONS(987), 1, aux_sym_scope_tuning_token1, - ACTIONS(1027), 1, + ACTIONS(989), 1, aux_sym_if_statement_token1, - ACTIONS(1029), 1, + ACTIONS(991), 1, aux_sym_can_find_expression_token1, - ACTIONS(1031), 1, + ACTIONS(993), 1, aux_sym_accumulate_expression_token1, - STATE(816), 1, + STATE(703), 1, sym__expression, - STATE(1399), 1, + STATE(1033), 1, sym_object_access, - STATE(1577), 1, + STATE(1335), 1, sym__decimal_literal, - ACTIONS(1033), 2, + ACTIONS(995), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(389), 2, + STATE(396), 2, sym_comment, sym_include, - STATE(1547), 2, + STATE(1474), 2, sym_double_quoted_string, sym_single_quoted_string, - ACTIONS(1003), 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(1582), 4, + STATE(1322), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(1555), 18, + STATE(1384), 18, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -57029,71 +57904,71 @@ static const uint16_t ts_small_parse_table[] = { sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [10586] = 28, + [10808] = 28, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(959), 1, + ACTIONS(1041), 1, sym_identifier, - ACTIONS(961), 1, + ACTIONS(1043), 1, anon_sym_LBRACE, - ACTIONS(963), 1, + ACTIONS(1045), 1, sym_null_expression, - ACTIONS(967), 1, + ACTIONS(1049), 1, sym__integer_literal, - ACTIONS(969), 1, + ACTIONS(1051), 1, anon_sym_DQUOTE, - ACTIONS(971), 1, + ACTIONS(1053), 1, anon_sym_SQUOTE, - ACTIONS(973), 1, + ACTIONS(1055), 1, anon_sym_LPAREN, - ACTIONS(975), 1, + ACTIONS(1057), 1, aux_sym_unary_expression_token1, - ACTIONS(977), 1, + ACTIONS(1059), 1, aux_sym_unary_expression_token2, - ACTIONS(979), 1, + ACTIONS(1061), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(981), 1, + ACTIONS(1063), 1, aux_sym_current_changed_expression_token1, - ACTIONS(983), 1, + ACTIONS(1065), 1, aux_sym_locked_expression_token1, - ACTIONS(985), 1, + ACTIONS(1067), 1, aux_sym_input_expression_token1, - ACTIONS(987), 1, + ACTIONS(1069), 1, aux_sym_scope_tuning_token1, - ACTIONS(989), 1, + ACTIONS(1071), 1, aux_sym_if_statement_token1, - ACTIONS(991), 1, + ACTIONS(1073), 1, aux_sym_can_find_expression_token1, - ACTIONS(993), 1, + ACTIONS(1075), 1, aux_sym_accumulate_expression_token1, - STATE(840), 1, + STATE(844), 1, sym__expression, - STATE(1553), 1, + STATE(1593), 1, sym_object_access, - STATE(1596), 1, + STATE(1630), 1, sym__decimal_literal, - ACTIONS(995), 2, + ACTIONS(1077), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(390), 2, + STATE(397), 2, sym_comment, sym_include, - STATE(1594), 2, + STATE(1626), 2, sym_double_quoted_string, sym_single_quoted_string, - ACTIONS(965), 4, + ACTIONS(1047), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(1592), 4, + STATE(1616), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(1602), 18, + STATE(1629), 18, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -57112,71 +57987,71 @@ static const uint16_t ts_small_parse_table[] = { sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [10697] = 28, + [10919] = 28, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(921), 1, + ACTIONS(337), 1, sym_identifier, - ACTIONS(923), 1, + ACTIONS(339), 1, anon_sym_LBRACE, - ACTIONS(925), 1, + ACTIONS(341), 1, sym_null_expression, - ACTIONS(929), 1, + ACTIONS(345), 1, sym__integer_literal, - ACTIONS(931), 1, + ACTIONS(347), 1, anon_sym_DQUOTE, - ACTIONS(933), 1, + ACTIONS(349), 1, anon_sym_SQUOTE, - ACTIONS(935), 1, + ACTIONS(351), 1, anon_sym_LPAREN, - ACTIONS(937), 1, + ACTIONS(355), 1, aux_sym_unary_expression_token1, - ACTIONS(939), 1, + ACTIONS(357), 1, aux_sym_unary_expression_token2, - ACTIONS(941), 1, + ACTIONS(359), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(943), 1, + ACTIONS(361), 1, aux_sym_current_changed_expression_token1, - ACTIONS(945), 1, + ACTIONS(363), 1, aux_sym_locked_expression_token1, - ACTIONS(947), 1, - aux_sym_input_expression_token1, - ACTIONS(949), 1, + ACTIONS(367), 1, aux_sym_scope_tuning_token1, - ACTIONS(951), 1, + ACTIONS(371), 1, aux_sym_if_statement_token1, - ACTIONS(953), 1, + ACTIONS(373), 1, aux_sym_can_find_expression_token1, - ACTIONS(955), 1, + ACTIONS(377), 1, aux_sym_accumulate_expression_token1, - STATE(682), 1, - sym__expression, - STATE(898), 1, - sym_object_access, - STATE(1386), 1, + ACTIONS(431), 1, + aux_sym_input_expression_token1, + STATE(23), 1, sym__decimal_literal, - ACTIONS(957), 2, + STATE(29), 1, + sym_object_access, + STATE(1546), 1, + sym__expression, + ACTIONS(379), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(391), 2, - sym_comment, - sym_include, - STATE(1158), 2, + STATE(18), 2, sym_double_quoted_string, sym_single_quoted_string, - ACTIONS(927), 4, + STATE(398), 2, + sym_comment, + sym_include, + ACTIONS(343), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(1384), 4, + STATE(24), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(1396), 18, + STATE(20), 18, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -57195,71 +58070,71 @@ static const uint16_t ts_small_parse_table[] = { sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [10808] = 28, + [11030] = 28, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(635), 1, + ACTIONS(1041), 1, sym_identifier, - ACTIONS(637), 1, + ACTIONS(1043), 1, anon_sym_LBRACE, - ACTIONS(641), 1, + ACTIONS(1045), 1, sym_null_expression, - ACTIONS(645), 1, + ACTIONS(1049), 1, sym__integer_literal, - ACTIONS(647), 1, + ACTIONS(1051), 1, anon_sym_DQUOTE, - ACTIONS(649), 1, + ACTIONS(1053), 1, anon_sym_SQUOTE, - ACTIONS(653), 1, + ACTIONS(1055), 1, + anon_sym_LPAREN, + ACTIONS(1057), 1, aux_sym_unary_expression_token1, - ACTIONS(655), 1, + ACTIONS(1059), 1, aux_sym_unary_expression_token2, - ACTIONS(657), 1, + ACTIONS(1061), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(659), 1, + ACTIONS(1063), 1, aux_sym_current_changed_expression_token1, - ACTIONS(661), 1, + ACTIONS(1065), 1, aux_sym_locked_expression_token1, - ACTIONS(663), 1, + ACTIONS(1067), 1, aux_sym_input_expression_token1, - ACTIONS(667), 1, + ACTIONS(1069), 1, aux_sym_scope_tuning_token1, - ACTIONS(669), 1, + ACTIONS(1071), 1, aux_sym_if_statement_token1, - ACTIONS(673), 1, + ACTIONS(1073), 1, aux_sym_can_find_expression_token1, - ACTIONS(675), 1, + ACTIONS(1075), 1, aux_sym_accumulate_expression_token1, - ACTIONS(901), 1, - anon_sym_LPAREN, - STATE(529), 1, + STATE(835), 1, sym__expression, - STATE(564), 1, - sym__decimal_literal, - STATE(569), 1, + STATE(1593), 1, sym_object_access, - ACTIONS(677), 2, + STATE(1630), 1, + sym__decimal_literal, + ACTIONS(1077), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(392), 2, + STATE(399), 2, sym_comment, sym_include, - STATE(565), 2, + STATE(1626), 2, sym_double_quoted_string, sym_single_quoted_string, - ACTIONS(643), 4, + ACTIONS(1047), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(567), 4, + STATE(1616), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(561), 18, + STATE(1629), 18, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -57278,154 +58153,71 @@ static const uint16_t ts_small_parse_table[] = { sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [10919] = 28, + [11141] = 28, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(921), 1, + ACTIONS(337), 1, sym_identifier, - ACTIONS(923), 1, + ACTIONS(339), 1, anon_sym_LBRACE, - ACTIONS(925), 1, + ACTIONS(341), 1, sym_null_expression, - ACTIONS(929), 1, + ACTIONS(345), 1, sym__integer_literal, - ACTIONS(931), 1, + ACTIONS(347), 1, anon_sym_DQUOTE, - ACTIONS(933), 1, + ACTIONS(349), 1, anon_sym_SQUOTE, - ACTIONS(935), 1, + ACTIONS(351), 1, anon_sym_LPAREN, - ACTIONS(937), 1, + ACTIONS(355), 1, aux_sym_unary_expression_token1, - ACTIONS(939), 1, + ACTIONS(357), 1, aux_sym_unary_expression_token2, - ACTIONS(941), 1, + ACTIONS(359), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(943), 1, + ACTIONS(361), 1, aux_sym_current_changed_expression_token1, - ACTIONS(945), 1, + ACTIONS(363), 1, aux_sym_locked_expression_token1, - ACTIONS(947), 1, - aux_sym_input_expression_token1, - ACTIONS(949), 1, + ACTIONS(367), 1, aux_sym_scope_tuning_token1, - ACTIONS(951), 1, + ACTIONS(371), 1, aux_sym_if_statement_token1, - ACTIONS(953), 1, + ACTIONS(373), 1, aux_sym_can_find_expression_token1, - ACTIONS(955), 1, + ACTIONS(377), 1, aux_sym_accumulate_expression_token1, - STATE(690), 1, - sym__expression, - STATE(898), 1, - sym_object_access, - STATE(1386), 1, - sym__decimal_literal, - ACTIONS(957), 2, - aux_sym_available_expression_token1, - aux_sym_available_expression_token2, - STATE(393), 2, - sym_comment, - sym_include, - STATE(1158), 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(1384), 4, - sym_logical_expression, - sym_additive_expression, - sym_multiplicative_expression, - sym_comparison_expression, - STATE(1396), 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, - [11030] = 28, - 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(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, + ACTIONS(431), 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(901), 1, - anon_sym_LPAREN, - STATE(533), 1, - sym__expression, - STATE(564), 1, + STATE(23), 1, sym__decimal_literal, - STATE(569), 1, + STATE(29), 1, sym_object_access, - ACTIONS(677), 2, + STATE(1516), 1, + sym__expression, + ACTIONS(379), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(394), 2, - sym_comment, - sym_include, - STATE(565), 2, + STATE(18), 2, sym_double_quoted_string, sym_single_quoted_string, - ACTIONS(643), 4, + STATE(400), 2, + sym_comment, + sym_include, + ACTIONS(343), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(567), 4, + STATE(24), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(561), 18, + STATE(20), 18, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -57444,71 +58236,71 @@ static const uint16_t ts_small_parse_table[] = { sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [11141] = 28, + [11252] = 28, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(353), 1, + ACTIONS(337), 1, sym_identifier, - ACTIONS(355), 1, + ACTIONS(339), 1, anon_sym_LBRACE, - ACTIONS(357), 1, + ACTIONS(341), 1, sym_null_expression, - ACTIONS(361), 1, + ACTIONS(345), 1, sym__integer_literal, - ACTIONS(363), 1, + ACTIONS(347), 1, anon_sym_DQUOTE, - ACTIONS(365), 1, + ACTIONS(349), 1, anon_sym_SQUOTE, - ACTIONS(367), 1, + ACTIONS(351), 1, anon_sym_LPAREN, - ACTIONS(371), 1, + ACTIONS(355), 1, aux_sym_unary_expression_token1, - ACTIONS(373), 1, + ACTIONS(357), 1, aux_sym_unary_expression_token2, - ACTIONS(375), 1, + ACTIONS(359), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(377), 1, + ACTIONS(361), 1, aux_sym_current_changed_expression_token1, - ACTIONS(379), 1, + ACTIONS(363), 1, aux_sym_locked_expression_token1, - ACTIONS(383), 1, + ACTIONS(367), 1, aux_sym_scope_tuning_token1, - ACTIONS(387), 1, + ACTIONS(371), 1, aux_sym_if_statement_token1, - ACTIONS(389), 1, + ACTIONS(373), 1, aux_sym_can_find_expression_token1, - ACTIONS(393), 1, + ACTIONS(377), 1, aux_sym_accumulate_expression_token1, - ACTIONS(429), 1, + ACTIONS(431), 1, aux_sym_input_expression_token1, - STATE(36), 1, + STATE(23), 1, sym__decimal_literal, - STATE(38), 1, + STATE(29), 1, sym_object_access, - STATE(1529), 1, + STATE(52), 1, sym__expression, - ACTIONS(395), 2, + ACTIONS(379), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(21), 2, + STATE(18), 2, sym_double_quoted_string, sym_single_quoted_string, - STATE(395), 2, + STATE(401), 2, sym_comment, sym_include, - ACTIONS(359), 4, + ACTIONS(343), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(37), 4, + STATE(24), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(13), 18, + STATE(20), 18, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -57527,71 +58319,71 @@ static const uint16_t ts_small_parse_table[] = { sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [11252] = 28, + [11363] = 28, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(921), 1, + ACTIONS(1041), 1, sym_identifier, - ACTIONS(923), 1, + ACTIONS(1043), 1, anon_sym_LBRACE, - ACTIONS(925), 1, + ACTIONS(1045), 1, sym_null_expression, - ACTIONS(929), 1, + ACTIONS(1049), 1, sym__integer_literal, - ACTIONS(931), 1, + ACTIONS(1051), 1, anon_sym_DQUOTE, - ACTIONS(933), 1, + ACTIONS(1053), 1, anon_sym_SQUOTE, - ACTIONS(935), 1, + ACTIONS(1055), 1, anon_sym_LPAREN, - ACTIONS(937), 1, + ACTIONS(1057), 1, aux_sym_unary_expression_token1, - ACTIONS(939), 1, + ACTIONS(1059), 1, aux_sym_unary_expression_token2, - ACTIONS(941), 1, + ACTIONS(1061), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(943), 1, + ACTIONS(1063), 1, aux_sym_current_changed_expression_token1, - ACTIONS(945), 1, + ACTIONS(1065), 1, aux_sym_locked_expression_token1, - ACTIONS(947), 1, + ACTIONS(1067), 1, aux_sym_input_expression_token1, - ACTIONS(949), 1, + ACTIONS(1069), 1, aux_sym_scope_tuning_token1, - ACTIONS(951), 1, + ACTIONS(1071), 1, aux_sym_if_statement_token1, - ACTIONS(953), 1, + ACTIONS(1073), 1, aux_sym_can_find_expression_token1, - ACTIONS(955), 1, + ACTIONS(1075), 1, aux_sym_accumulate_expression_token1, - STATE(793), 1, + STATE(847), 1, sym__expression, - STATE(898), 1, + STATE(1593), 1, sym_object_access, - STATE(1386), 1, + STATE(1630), 1, sym__decimal_literal, - ACTIONS(957), 2, + ACTIONS(1077), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(396), 2, + STATE(402), 2, sym_comment, sym_include, - STATE(1158), 2, + STATE(1626), 2, sym_double_quoted_string, sym_single_quoted_string, - ACTIONS(927), 4, + ACTIONS(1047), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(1384), 4, + STATE(1616), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(1396), 18, + STATE(1629), 18, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -57610,71 +58402,71 @@ static const uint16_t ts_small_parse_table[] = { sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [11363] = 28, + [11474] = 28, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(997), 1, + ACTIONS(1041), 1, sym_identifier, - ACTIONS(999), 1, + ACTIONS(1043), 1, anon_sym_LBRACE, - ACTIONS(1001), 1, + ACTIONS(1045), 1, sym_null_expression, - ACTIONS(1005), 1, + ACTIONS(1049), 1, sym__integer_literal, - ACTIONS(1007), 1, + ACTIONS(1051), 1, anon_sym_DQUOTE, - ACTIONS(1009), 1, + ACTIONS(1053), 1, anon_sym_SQUOTE, - ACTIONS(1011), 1, + ACTIONS(1055), 1, anon_sym_LPAREN, - ACTIONS(1013), 1, + ACTIONS(1057), 1, aux_sym_unary_expression_token1, - ACTIONS(1015), 1, + ACTIONS(1059), 1, aux_sym_unary_expression_token2, - ACTIONS(1017), 1, + ACTIONS(1061), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(1019), 1, + ACTIONS(1063), 1, aux_sym_current_changed_expression_token1, - ACTIONS(1021), 1, + ACTIONS(1065), 1, aux_sym_locked_expression_token1, - ACTIONS(1023), 1, + ACTIONS(1067), 1, aux_sym_input_expression_token1, - ACTIONS(1025), 1, + ACTIONS(1069), 1, aux_sym_scope_tuning_token1, - ACTIONS(1027), 1, + ACTIONS(1071), 1, aux_sym_if_statement_token1, - ACTIONS(1029), 1, + ACTIONS(1073), 1, aux_sym_can_find_expression_token1, - ACTIONS(1031), 1, + ACTIONS(1075), 1, aux_sym_accumulate_expression_token1, - STATE(802), 1, + STATE(836), 1, sym__expression, - STATE(1399), 1, + STATE(1593), 1, sym_object_access, - STATE(1577), 1, + STATE(1630), 1, sym__decimal_literal, - ACTIONS(1033), 2, + ACTIONS(1077), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(397), 2, + STATE(403), 2, sym_comment, sym_include, - STATE(1547), 2, + STATE(1626), 2, sym_double_quoted_string, sym_single_quoted_string, - ACTIONS(1003), 4, + ACTIONS(1047), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(1582), 4, + STATE(1616), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(1555), 18, + STATE(1629), 18, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -57693,71 +58485,71 @@ static const uint16_t ts_small_parse_table[] = { sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [11474] = 28, + [11585] = 28, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(353), 1, + ACTIONS(337), 1, sym_identifier, - ACTIONS(355), 1, + ACTIONS(339), 1, anon_sym_LBRACE, - ACTIONS(357), 1, + ACTIONS(341), 1, sym_null_expression, - ACTIONS(361), 1, + ACTIONS(345), 1, sym__integer_literal, - ACTIONS(363), 1, + ACTIONS(347), 1, anon_sym_DQUOTE, - ACTIONS(365), 1, + ACTIONS(349), 1, anon_sym_SQUOTE, - ACTIONS(367), 1, + ACTIONS(351), 1, anon_sym_LPAREN, - ACTIONS(371), 1, + ACTIONS(355), 1, aux_sym_unary_expression_token1, ACTIONS(373), 1, + aux_sym_can_find_expression_token1, + ACTIONS(423), 1, aux_sym_unary_expression_token2, - ACTIONS(375), 1, + ACTIONS(425), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(377), 1, + ACTIONS(427), 1, aux_sym_current_changed_expression_token1, - ACTIONS(379), 1, + ACTIONS(429), 1, aux_sym_locked_expression_token1, - ACTIONS(383), 1, + ACTIONS(431), 1, + aux_sym_input_expression_token1, + ACTIONS(433), 1, aux_sym_scope_tuning_token1, - ACTIONS(387), 1, + ACTIONS(437), 1, aux_sym_if_statement_token1, - ACTIONS(389), 1, - aux_sym_can_find_expression_token1, - ACTIONS(393), 1, + ACTIONS(447), 1, aux_sym_accumulate_expression_token1, - ACTIONS(429), 1, - aux_sym_input_expression_token1, - STATE(36), 1, + STATE(23), 1, sym__decimal_literal, - STATE(38), 1, + STATE(29), 1, sym_object_access, - STATE(1521), 1, + STATE(675), 1, sym__expression, - ACTIONS(395), 2, + ACTIONS(379), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(21), 2, + STATE(18), 2, sym_double_quoted_string, sym_single_quoted_string, - STATE(398), 2, + STATE(404), 2, sym_comment, sym_include, - ACTIONS(359), 4, + ACTIONS(343), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(37), 4, + STATE(24), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(13), 18, + STATE(20), 18, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -57776,71 +58568,71 @@ static const uint16_t ts_small_parse_table[] = { sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [11585] = 28, + [11696] = 28, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(353), 1, + ACTIONS(1041), 1, sym_identifier, - ACTIONS(355), 1, + ACTIONS(1043), 1, anon_sym_LBRACE, - ACTIONS(357), 1, + ACTIONS(1045), 1, sym_null_expression, - ACTIONS(361), 1, + ACTIONS(1049), 1, sym__integer_literal, - ACTIONS(363), 1, + ACTIONS(1051), 1, anon_sym_DQUOTE, - ACTIONS(365), 1, + ACTIONS(1053), 1, anon_sym_SQUOTE, - ACTIONS(367), 1, + ACTIONS(1055), 1, anon_sym_LPAREN, - ACTIONS(371), 1, + ACTIONS(1057), 1, aux_sym_unary_expression_token1, - ACTIONS(373), 1, + ACTIONS(1059), 1, aux_sym_unary_expression_token2, - ACTIONS(375), 1, + ACTIONS(1061), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(377), 1, + ACTIONS(1063), 1, aux_sym_current_changed_expression_token1, - ACTIONS(379), 1, + ACTIONS(1065), 1, aux_sym_locked_expression_token1, - ACTIONS(383), 1, + ACTIONS(1067), 1, + aux_sym_input_expression_token1, + ACTIONS(1069), 1, aux_sym_scope_tuning_token1, - ACTIONS(387), 1, + ACTIONS(1071), 1, aux_sym_if_statement_token1, - ACTIONS(389), 1, + ACTIONS(1073), 1, aux_sym_can_find_expression_token1, - ACTIONS(393), 1, + ACTIONS(1075), 1, aux_sym_accumulate_expression_token1, - ACTIONS(429), 1, - aux_sym_input_expression_token1, - STATE(36), 1, - sym__decimal_literal, - STATE(38), 1, - sym_object_access, - STATE(543), 1, + STATE(832), 1, sym__expression, - ACTIONS(395), 2, + STATE(1593), 1, + sym_object_access, + STATE(1630), 1, + sym__decimal_literal, + ACTIONS(1077), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(21), 2, - sym_double_quoted_string, - sym_single_quoted_string, - STATE(399), 2, + STATE(405), 2, sym_comment, sym_include, - ACTIONS(359), 4, + STATE(1626), 2, + sym_double_quoted_string, + sym_single_quoted_string, + ACTIONS(1047), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(37), 4, + STATE(1616), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(13), 18, + STATE(1629), 18, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -57859,71 +58651,71 @@ static const uint16_t ts_small_parse_table[] = { sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [11696] = 28, + [11807] = 28, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(353), 1, + ACTIONS(1041), 1, sym_identifier, - ACTIONS(355), 1, + ACTIONS(1043), 1, anon_sym_LBRACE, - ACTIONS(357), 1, + ACTIONS(1045), 1, sym_null_expression, - ACTIONS(361), 1, + ACTIONS(1049), 1, sym__integer_literal, - ACTIONS(363), 1, + ACTIONS(1051), 1, anon_sym_DQUOTE, - ACTIONS(365), 1, + ACTIONS(1053), 1, anon_sym_SQUOTE, - ACTIONS(367), 1, + ACTIONS(1055), 1, anon_sym_LPAREN, - ACTIONS(371), 1, + ACTIONS(1057), 1, aux_sym_unary_expression_token1, - ACTIONS(373), 1, + ACTIONS(1059), 1, aux_sym_unary_expression_token2, - ACTIONS(375), 1, + ACTIONS(1061), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(377), 1, + ACTIONS(1063), 1, aux_sym_current_changed_expression_token1, - ACTIONS(379), 1, + ACTIONS(1065), 1, aux_sym_locked_expression_token1, - ACTIONS(383), 1, + ACTIONS(1067), 1, + aux_sym_input_expression_token1, + ACTIONS(1069), 1, aux_sym_scope_tuning_token1, - ACTIONS(387), 1, + ACTIONS(1071), 1, aux_sym_if_statement_token1, - ACTIONS(389), 1, + ACTIONS(1073), 1, aux_sym_can_find_expression_token1, - ACTIONS(393), 1, + ACTIONS(1075), 1, aux_sym_accumulate_expression_token1, - ACTIONS(429), 1, - aux_sym_input_expression_token1, - STATE(36), 1, - sym__decimal_literal, - STATE(38), 1, - sym_object_access, - STATE(634), 1, + STATE(834), 1, sym__expression, - ACTIONS(395), 2, + STATE(1593), 1, + sym_object_access, + STATE(1630), 1, + sym__decimal_literal, + ACTIONS(1077), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(21), 2, - sym_double_quoted_string, - sym_single_quoted_string, - STATE(400), 2, + STATE(406), 2, sym_comment, sym_include, - ACTIONS(359), 4, + STATE(1626), 2, + sym_double_quoted_string, + sym_single_quoted_string, + ACTIONS(1047), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(37), 4, + STATE(1616), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(13), 18, + STATE(1629), 18, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -57942,71 +58734,71 @@ static const uint16_t ts_small_parse_table[] = { sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [11807] = 28, + [11918] = 28, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(353), 1, + ACTIONS(337), 1, sym_identifier, - ACTIONS(355), 1, + ACTIONS(339), 1, anon_sym_LBRACE, - ACTIONS(357), 1, + ACTIONS(341), 1, sym_null_expression, - ACTIONS(361), 1, + ACTIONS(345), 1, sym__integer_literal, - ACTIONS(363), 1, + ACTIONS(347), 1, anon_sym_DQUOTE, - ACTIONS(365), 1, + ACTIONS(349), 1, anon_sym_SQUOTE, - ACTIONS(367), 1, + ACTIONS(351), 1, anon_sym_LPAREN, - ACTIONS(371), 1, + ACTIONS(355), 1, aux_sym_unary_expression_token1, - ACTIONS(373), 1, + ACTIONS(357), 1, aux_sym_unary_expression_token2, - ACTIONS(375), 1, + ACTIONS(359), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(377), 1, + ACTIONS(361), 1, aux_sym_current_changed_expression_token1, - ACTIONS(379), 1, + ACTIONS(363), 1, aux_sym_locked_expression_token1, - ACTIONS(383), 1, + ACTIONS(367), 1, aux_sym_scope_tuning_token1, - ACTIONS(387), 1, + ACTIONS(371), 1, aux_sym_if_statement_token1, - ACTIONS(389), 1, + ACTIONS(373), 1, aux_sym_can_find_expression_token1, - ACTIONS(393), 1, + ACTIONS(377), 1, aux_sym_accumulate_expression_token1, - ACTIONS(429), 1, + ACTIONS(431), 1, aux_sym_input_expression_token1, - STATE(36), 1, + STATE(23), 1, sym__decimal_literal, - STATE(38), 1, + STATE(29), 1, sym_object_access, - STATE(557), 1, + STATE(550), 1, sym__expression, - ACTIONS(395), 2, + ACTIONS(379), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(21), 2, + STATE(18), 2, sym_double_quoted_string, sym_single_quoted_string, - STATE(401), 2, + STATE(407), 2, sym_comment, sym_include, - ACTIONS(359), 4, + ACTIONS(343), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(37), 4, + STATE(24), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(13), 18, + STATE(20), 18, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -58025,71 +58817,71 @@ static const uint16_t ts_small_parse_table[] = { sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [11918] = 28, + [12029] = 28, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(997), 1, + ACTIONS(1041), 1, sym_identifier, - ACTIONS(999), 1, + ACTIONS(1043), 1, anon_sym_LBRACE, - ACTIONS(1001), 1, + ACTIONS(1045), 1, sym_null_expression, - ACTIONS(1005), 1, + ACTIONS(1049), 1, sym__integer_literal, - ACTIONS(1007), 1, + ACTIONS(1051), 1, anon_sym_DQUOTE, - ACTIONS(1009), 1, + ACTIONS(1053), 1, anon_sym_SQUOTE, - ACTIONS(1011), 1, + ACTIONS(1055), 1, anon_sym_LPAREN, - ACTIONS(1013), 1, + ACTIONS(1057), 1, aux_sym_unary_expression_token1, - ACTIONS(1015), 1, + ACTIONS(1059), 1, aux_sym_unary_expression_token2, - ACTIONS(1017), 1, + ACTIONS(1061), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(1019), 1, + ACTIONS(1063), 1, aux_sym_current_changed_expression_token1, - ACTIONS(1021), 1, + ACTIONS(1065), 1, aux_sym_locked_expression_token1, - ACTIONS(1023), 1, + ACTIONS(1067), 1, aux_sym_input_expression_token1, - ACTIONS(1025), 1, + ACTIONS(1069), 1, aux_sym_scope_tuning_token1, - ACTIONS(1027), 1, + ACTIONS(1071), 1, aux_sym_if_statement_token1, - ACTIONS(1029), 1, + ACTIONS(1073), 1, aux_sym_can_find_expression_token1, - ACTIONS(1031), 1, + ACTIONS(1075), 1, aux_sym_accumulate_expression_token1, - STATE(819), 1, + STATE(831), 1, sym__expression, - STATE(1399), 1, + STATE(1593), 1, sym_object_access, - STATE(1577), 1, + STATE(1630), 1, sym__decimal_literal, - ACTIONS(1033), 2, + ACTIONS(1077), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(402), 2, + STATE(408), 2, sym_comment, sym_include, - STATE(1547), 2, + STATE(1626), 2, sym_double_quoted_string, sym_single_quoted_string, - ACTIONS(1003), 4, + ACTIONS(1047), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(1582), 4, + STATE(1616), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(1555), 18, + STATE(1629), 18, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -58108,71 +58900,71 @@ static const uint16_t ts_small_parse_table[] = { sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [12029] = 28, + [12140] = 28, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(635), 1, + ACTIONS(959), 1, sym_identifier, - ACTIONS(637), 1, + ACTIONS(961), 1, anon_sym_LBRACE, - ACTIONS(641), 1, + ACTIONS(963), 1, sym_null_expression, - ACTIONS(645), 1, + ACTIONS(967), 1, sym__integer_literal, - ACTIONS(647), 1, + ACTIONS(969), 1, anon_sym_DQUOTE, - ACTIONS(649), 1, + ACTIONS(971), 1, anon_sym_SQUOTE, - ACTIONS(653), 1, + ACTIONS(973), 1, + anon_sym_LPAREN, + ACTIONS(975), 1, aux_sym_unary_expression_token1, - ACTIONS(655), 1, + ACTIONS(977), 1, aux_sym_unary_expression_token2, - ACTIONS(657), 1, + ACTIONS(979), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(659), 1, + ACTIONS(981), 1, aux_sym_current_changed_expression_token1, - ACTIONS(661), 1, + ACTIONS(983), 1, aux_sym_locked_expression_token1, - ACTIONS(663), 1, + ACTIONS(985), 1, aux_sym_input_expression_token1, - ACTIONS(667), 1, + ACTIONS(987), 1, aux_sym_scope_tuning_token1, - ACTIONS(669), 1, + ACTIONS(989), 1, aux_sym_if_statement_token1, - ACTIONS(673), 1, + ACTIONS(991), 1, aux_sym_can_find_expression_token1, - ACTIONS(675), 1, + ACTIONS(993), 1, aux_sym_accumulate_expression_token1, - ACTIONS(901), 1, - anon_sym_LPAREN, - STATE(532), 1, + STATE(723), 1, sym__expression, - STATE(564), 1, - sym__decimal_literal, - STATE(569), 1, + STATE(1033), 1, sym_object_access, - ACTIONS(677), 2, + STATE(1335), 1, + sym__decimal_literal, + ACTIONS(995), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(403), 2, + STATE(409), 2, sym_comment, sym_include, - STATE(565), 2, + STATE(1474), 2, sym_double_quoted_string, sym_single_quoted_string, - ACTIONS(643), 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(567), 4, + STATE(1322), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(561), 18, + STATE(1384), 18, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -58191,71 +58983,71 @@ static const uint16_t ts_small_parse_table[] = { sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [12140] = 28, + [12251] = 28, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(353), 1, + ACTIONS(337), 1, sym_identifier, - ACTIONS(355), 1, + ACTIONS(339), 1, anon_sym_LBRACE, - ACTIONS(357), 1, + ACTIONS(341), 1, sym_null_expression, - ACTIONS(361), 1, + ACTIONS(345), 1, sym__integer_literal, - ACTIONS(363), 1, + ACTIONS(347), 1, anon_sym_DQUOTE, - ACTIONS(365), 1, + ACTIONS(349), 1, anon_sym_SQUOTE, - ACTIONS(367), 1, + ACTIONS(351), 1, anon_sym_LPAREN, - ACTIONS(371), 1, + ACTIONS(355), 1, aux_sym_unary_expression_token1, - ACTIONS(373), 1, + ACTIONS(357), 1, aux_sym_unary_expression_token2, - ACTIONS(375), 1, + ACTIONS(359), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(377), 1, + ACTIONS(361), 1, aux_sym_current_changed_expression_token1, - ACTIONS(379), 1, + ACTIONS(363), 1, aux_sym_locked_expression_token1, - ACTIONS(383), 1, + ACTIONS(367), 1, aux_sym_scope_tuning_token1, - ACTIONS(387), 1, + ACTIONS(371), 1, aux_sym_if_statement_token1, - ACTIONS(389), 1, + ACTIONS(373), 1, aux_sym_can_find_expression_token1, - ACTIONS(393), 1, + ACTIONS(377), 1, aux_sym_accumulate_expression_token1, - ACTIONS(429), 1, + ACTIONS(431), 1, aux_sym_input_expression_token1, - STATE(36), 1, + STATE(23), 1, sym__decimal_literal, - STATE(38), 1, + STATE(29), 1, sym_object_access, - STATE(591), 1, + STATE(597), 1, sym__expression, - ACTIONS(395), 2, + ACTIONS(379), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(21), 2, + STATE(18), 2, sym_double_quoted_string, sym_single_quoted_string, - STATE(404), 2, + STATE(410), 2, sym_comment, sym_include, - ACTIONS(359), 4, + ACTIONS(343), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(37), 4, + STATE(24), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(13), 18, + STATE(20), 18, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -58274,71 +59066,71 @@ static const uint16_t ts_small_parse_table[] = { sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [12251] = 28, + [12362] = 28, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(997), 1, + ACTIONS(337), 1, sym_identifier, - ACTIONS(999), 1, + ACTIONS(339), 1, anon_sym_LBRACE, - ACTIONS(1001), 1, + ACTIONS(341), 1, sym_null_expression, - ACTIONS(1005), 1, + ACTIONS(345), 1, sym__integer_literal, - ACTIONS(1007), 1, + ACTIONS(347), 1, anon_sym_DQUOTE, - ACTIONS(1009), 1, + ACTIONS(349), 1, anon_sym_SQUOTE, - ACTIONS(1011), 1, + ACTIONS(351), 1, anon_sym_LPAREN, - ACTIONS(1013), 1, + ACTIONS(355), 1, aux_sym_unary_expression_token1, - ACTIONS(1015), 1, + ACTIONS(357), 1, aux_sym_unary_expression_token2, - ACTIONS(1017), 1, + ACTIONS(359), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(1019), 1, + ACTIONS(361), 1, aux_sym_current_changed_expression_token1, - ACTIONS(1021), 1, + ACTIONS(363), 1, aux_sym_locked_expression_token1, - ACTIONS(1023), 1, - aux_sym_input_expression_token1, - ACTIONS(1025), 1, + ACTIONS(367), 1, aux_sym_scope_tuning_token1, - ACTIONS(1027), 1, + ACTIONS(371), 1, aux_sym_if_statement_token1, - ACTIONS(1029), 1, + ACTIONS(373), 1, aux_sym_can_find_expression_token1, - ACTIONS(1031), 1, + ACTIONS(377), 1, aux_sym_accumulate_expression_token1, - STATE(818), 1, - sym__expression, - STATE(1399), 1, - sym_object_access, - STATE(1577), 1, + ACTIONS(431), 1, + aux_sym_input_expression_token1, + STATE(23), 1, sym__decimal_literal, - ACTIONS(1033), 2, + STATE(29), 1, + sym_object_access, + STATE(641), 1, + sym__expression, + ACTIONS(379), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(405), 2, - sym_comment, - sym_include, - STATE(1547), 2, + STATE(18), 2, sym_double_quoted_string, sym_single_quoted_string, - ACTIONS(1003), 4, + STATE(411), 2, + sym_comment, + sym_include, + ACTIONS(343), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(1582), 4, + STATE(24), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(1555), 18, + STATE(20), 18, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -58357,71 +59149,71 @@ static const uint16_t ts_small_parse_table[] = { sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [12362] = 28, + [12473] = 28, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(1035), 1, + ACTIONS(1041), 1, sym_identifier, - ACTIONS(1037), 1, + ACTIONS(1043), 1, anon_sym_LBRACE, - ACTIONS(1039), 1, + ACTIONS(1045), 1, sym_null_expression, - ACTIONS(1043), 1, + ACTIONS(1049), 1, sym__integer_literal, - ACTIONS(1045), 1, + ACTIONS(1051), 1, anon_sym_DQUOTE, - ACTIONS(1047), 1, + ACTIONS(1053), 1, anon_sym_SQUOTE, - ACTIONS(1049), 1, + ACTIONS(1055), 1, anon_sym_LPAREN, - ACTIONS(1051), 1, + ACTIONS(1057), 1, aux_sym_unary_expression_token1, - ACTIONS(1053), 1, + ACTIONS(1059), 1, aux_sym_unary_expression_token2, - ACTIONS(1055), 1, + ACTIONS(1061), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(1057), 1, + ACTIONS(1063), 1, aux_sym_current_changed_expression_token1, - ACTIONS(1059), 1, + ACTIONS(1065), 1, aux_sym_locked_expression_token1, - ACTIONS(1061), 1, + ACTIONS(1067), 1, aux_sym_input_expression_token1, - ACTIONS(1063), 1, + ACTIONS(1069), 1, aux_sym_scope_tuning_token1, - ACTIONS(1065), 1, + ACTIONS(1071), 1, aux_sym_if_statement_token1, - ACTIONS(1067), 1, + ACTIONS(1073), 1, aux_sym_can_find_expression_token1, - ACTIONS(1069), 1, + ACTIONS(1075), 1, aux_sym_accumulate_expression_token1, - STATE(611), 1, + STATE(833), 1, sym__expression, - STATE(642), 1, + STATE(1593), 1, sym_object_access, - STATE(699), 1, + STATE(1630), 1, sym__decimal_literal, - ACTIONS(1071), 2, + ACTIONS(1077), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(406), 2, + STATE(412), 2, sym_comment, sym_include, - STATE(700), 2, + STATE(1626), 2, sym_double_quoted_string, sym_single_quoted_string, - ACTIONS(1041), 4, + ACTIONS(1047), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(696), 4, + STATE(1616), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(689), 18, + STATE(1629), 18, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -58440,71 +59232,71 @@ static const uint16_t ts_small_parse_table[] = { sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [12473] = 28, + [12584] = 28, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(353), 1, + ACTIONS(337), 1, sym_identifier, - ACTIONS(355), 1, + ACTIONS(339), 1, anon_sym_LBRACE, - ACTIONS(357), 1, + ACTIONS(341), 1, sym_null_expression, - ACTIONS(361), 1, + ACTIONS(345), 1, sym__integer_literal, - ACTIONS(363), 1, + ACTIONS(347), 1, anon_sym_DQUOTE, - ACTIONS(365), 1, + ACTIONS(349), 1, anon_sym_SQUOTE, - ACTIONS(367), 1, + ACTIONS(351), 1, anon_sym_LPAREN, - ACTIONS(371), 1, + ACTIONS(355), 1, aux_sym_unary_expression_token1, - ACTIONS(373), 1, + ACTIONS(357), 1, aux_sym_unary_expression_token2, - ACTIONS(375), 1, + ACTIONS(359), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(377), 1, + ACTIONS(361), 1, aux_sym_current_changed_expression_token1, - ACTIONS(379), 1, + ACTIONS(363), 1, aux_sym_locked_expression_token1, - ACTIONS(383), 1, + ACTIONS(367), 1, aux_sym_scope_tuning_token1, - ACTIONS(387), 1, + ACTIONS(371), 1, aux_sym_if_statement_token1, - ACTIONS(389), 1, + ACTIONS(373), 1, aux_sym_can_find_expression_token1, - ACTIONS(393), 1, + ACTIONS(377), 1, aux_sym_accumulate_expression_token1, - ACTIONS(429), 1, + ACTIONS(431), 1, aux_sym_input_expression_token1, - STATE(36), 1, + STATE(23), 1, sym__decimal_literal, - STATE(38), 1, + STATE(29), 1, sym_object_access, - STATE(1269), 1, + STATE(598), 1, sym__expression, - ACTIONS(395), 2, + ACTIONS(379), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(21), 2, + STATE(18), 2, sym_double_quoted_string, sym_single_quoted_string, - STATE(407), 2, + STATE(413), 2, sym_comment, sym_include, - ACTIONS(359), 4, + ACTIONS(343), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(37), 4, + STATE(24), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(13), 18, + STATE(20), 18, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -58523,71 +59315,71 @@ static const uint16_t ts_small_parse_table[] = { sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [12584] = 28, + [12695] = 28, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(353), 1, + ACTIONS(337), 1, sym_identifier, - ACTIONS(355), 1, + ACTIONS(339), 1, anon_sym_LBRACE, - ACTIONS(357), 1, + ACTIONS(341), 1, sym_null_expression, - ACTIONS(361), 1, + ACTIONS(345), 1, sym__integer_literal, - ACTIONS(363), 1, + ACTIONS(347), 1, anon_sym_DQUOTE, - ACTIONS(365), 1, + ACTIONS(349), 1, anon_sym_SQUOTE, - ACTIONS(367), 1, + ACTIONS(351), 1, anon_sym_LPAREN, - ACTIONS(371), 1, + ACTIONS(355), 1, aux_sym_unary_expression_token1, - ACTIONS(373), 1, + ACTIONS(357), 1, aux_sym_unary_expression_token2, - ACTIONS(375), 1, + ACTIONS(359), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(377), 1, + ACTIONS(361), 1, aux_sym_current_changed_expression_token1, - ACTIONS(379), 1, + ACTIONS(363), 1, aux_sym_locked_expression_token1, - ACTIONS(383), 1, + ACTIONS(367), 1, aux_sym_scope_tuning_token1, - ACTIONS(387), 1, + ACTIONS(371), 1, aux_sym_if_statement_token1, - ACTIONS(389), 1, + ACTIONS(373), 1, aux_sym_can_find_expression_token1, - ACTIONS(393), 1, + ACTIONS(377), 1, aux_sym_accumulate_expression_token1, - ACTIONS(429), 1, + ACTIONS(431), 1, aux_sym_input_expression_token1, - STATE(36), 1, + STATE(23), 1, sym__decimal_literal, - STATE(38), 1, + STATE(29), 1, sym_object_access, - STATE(138), 1, + STATE(546), 1, sym__expression, - ACTIONS(395), 2, + ACTIONS(379), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(21), 2, + STATE(18), 2, sym_double_quoted_string, sym_single_quoted_string, - STATE(408), 2, + STATE(414), 2, sym_comment, sym_include, - ACTIONS(359), 4, + ACTIONS(343), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(37), 4, + STATE(24), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(13), 18, + STATE(20), 18, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -58606,71 +59398,71 @@ static const uint16_t ts_small_parse_table[] = { sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [12695] = 28, + [12806] = 28, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(353), 1, + ACTIONS(337), 1, sym_identifier, - ACTIONS(355), 1, + ACTIONS(339), 1, anon_sym_LBRACE, - ACTIONS(357), 1, + ACTIONS(341), 1, sym_null_expression, - ACTIONS(361), 1, + ACTIONS(345), 1, sym__integer_literal, - ACTIONS(363), 1, + ACTIONS(347), 1, anon_sym_DQUOTE, - ACTIONS(365), 1, + ACTIONS(349), 1, anon_sym_SQUOTE, - ACTIONS(367), 1, + ACTIONS(351), 1, anon_sym_LPAREN, - ACTIONS(371), 1, + ACTIONS(355), 1, aux_sym_unary_expression_token1, - ACTIONS(373), 1, + ACTIONS(357), 1, aux_sym_unary_expression_token2, - ACTIONS(375), 1, + ACTIONS(359), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(377), 1, + ACTIONS(361), 1, aux_sym_current_changed_expression_token1, - ACTIONS(379), 1, + ACTIONS(363), 1, aux_sym_locked_expression_token1, - ACTIONS(383), 1, + ACTIONS(367), 1, aux_sym_scope_tuning_token1, - ACTIONS(387), 1, + ACTIONS(371), 1, aux_sym_if_statement_token1, - ACTIONS(389), 1, + ACTIONS(373), 1, aux_sym_can_find_expression_token1, - ACTIONS(393), 1, + ACTIONS(377), 1, aux_sym_accumulate_expression_token1, - ACTIONS(429), 1, + ACTIONS(431), 1, aux_sym_input_expression_token1, - STATE(36), 1, + STATE(23), 1, sym__decimal_literal, - STATE(38), 1, + STATE(29), 1, sym_object_access, - STATE(636), 1, + STATE(1394), 1, sym__expression, - ACTIONS(395), 2, + ACTIONS(379), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(21), 2, + STATE(18), 2, sym_double_quoted_string, sym_single_quoted_string, - STATE(409), 2, + STATE(415), 2, sym_comment, sym_include, - ACTIONS(359), 4, + ACTIONS(343), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(37), 4, + STATE(24), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(13), 18, + STATE(20), 18, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -58689,71 +59481,71 @@ static const uint16_t ts_small_parse_table[] = { sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [12806] = 28, + [12917] = 28, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(353), 1, + ACTIONS(921), 1, sym_identifier, - ACTIONS(355), 1, + ACTIONS(923), 1, anon_sym_LBRACE, - ACTIONS(357), 1, + ACTIONS(925), 1, sym_null_expression, - ACTIONS(361), 1, + ACTIONS(929), 1, sym__integer_literal, - ACTIONS(363), 1, + ACTIONS(931), 1, anon_sym_DQUOTE, - ACTIONS(365), 1, + ACTIONS(933), 1, anon_sym_SQUOTE, - ACTIONS(367), 1, + ACTIONS(935), 1, anon_sym_LPAREN, - ACTIONS(371), 1, + ACTIONS(937), 1, aux_sym_unary_expression_token1, - ACTIONS(373), 1, + ACTIONS(939), 1, aux_sym_unary_expression_token2, - ACTIONS(375), 1, + ACTIONS(941), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(377), 1, + ACTIONS(943), 1, aux_sym_current_changed_expression_token1, - ACTIONS(379), 1, + ACTIONS(945), 1, aux_sym_locked_expression_token1, - ACTIONS(383), 1, + ACTIONS(947), 1, + aux_sym_input_expression_token1, + ACTIONS(949), 1, aux_sym_scope_tuning_token1, - ACTIONS(387), 1, + ACTIONS(951), 1, aux_sym_if_statement_token1, - ACTIONS(389), 1, + ACTIONS(953), 1, aux_sym_can_find_expression_token1, - ACTIONS(393), 1, + ACTIONS(955), 1, aux_sym_accumulate_expression_token1, - ACTIONS(429), 1, - aux_sym_input_expression_token1, - STATE(36), 1, - sym__decimal_literal, - STATE(38), 1, - sym_object_access, - STATE(860), 1, + STATE(823), 1, sym__expression, - ACTIONS(395), 2, + STATE(1228), 1, + sym_object_access, + STATE(1581), 1, + sym__decimal_literal, + ACTIONS(957), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(21), 2, - sym_double_quoted_string, - sym_single_quoted_string, - STATE(410), 2, + STATE(416), 2, sym_comment, sym_include, - ACTIONS(359), 4, + STATE(1569), 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(37), 4, + STATE(1582), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(13), 18, + STATE(1579), 18, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -58772,71 +59564,71 @@ static const uint16_t ts_small_parse_table[] = { sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [12917] = 28, + [13028] = 28, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(353), 1, + ACTIONS(1041), 1, sym_identifier, - ACTIONS(355), 1, + ACTIONS(1043), 1, anon_sym_LBRACE, - ACTIONS(357), 1, + ACTIONS(1045), 1, sym_null_expression, - ACTIONS(361), 1, + ACTIONS(1049), 1, sym__integer_literal, - ACTIONS(363), 1, + ACTIONS(1051), 1, anon_sym_DQUOTE, - ACTIONS(365), 1, + ACTIONS(1053), 1, anon_sym_SQUOTE, - ACTIONS(367), 1, + ACTIONS(1055), 1, anon_sym_LPAREN, - ACTIONS(371), 1, + ACTIONS(1057), 1, aux_sym_unary_expression_token1, - ACTIONS(373), 1, + ACTIONS(1059), 1, aux_sym_unary_expression_token2, - ACTIONS(375), 1, + ACTIONS(1061), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(377), 1, + ACTIONS(1063), 1, aux_sym_current_changed_expression_token1, - ACTIONS(379), 1, + ACTIONS(1065), 1, aux_sym_locked_expression_token1, - ACTIONS(383), 1, + ACTIONS(1067), 1, + aux_sym_input_expression_token1, + ACTIONS(1069), 1, aux_sym_scope_tuning_token1, - ACTIONS(387), 1, + ACTIONS(1071), 1, aux_sym_if_statement_token1, - ACTIONS(389), 1, + ACTIONS(1073), 1, aux_sym_can_find_expression_token1, - ACTIONS(393), 1, + ACTIONS(1075), 1, aux_sym_accumulate_expression_token1, - ACTIONS(429), 1, - aux_sym_input_expression_token1, - STATE(36), 1, - sym__decimal_literal, - STATE(38), 1, - sym_object_access, - STATE(57), 1, + STATE(827), 1, sym__expression, - ACTIONS(395), 2, + STATE(1593), 1, + sym_object_access, + STATE(1630), 1, + sym__decimal_literal, + ACTIONS(1077), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(21), 2, - sym_double_quoted_string, - sym_single_quoted_string, - STATE(411), 2, + STATE(417), 2, sym_comment, sym_include, - ACTIONS(359), 4, + STATE(1626), 2, + sym_double_quoted_string, + sym_single_quoted_string, + ACTIONS(1047), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(37), 4, + STATE(1616), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(13), 18, + STATE(1629), 18, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -58855,71 +59647,71 @@ static const uint16_t ts_small_parse_table[] = { sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [13028] = 28, + [13139] = 28, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(353), 1, + ACTIONS(1041), 1, sym_identifier, - ACTIONS(355), 1, + ACTIONS(1043), 1, anon_sym_LBRACE, - ACTIONS(357), 1, + ACTIONS(1045), 1, sym_null_expression, - ACTIONS(361), 1, + ACTIONS(1049), 1, sym__integer_literal, - ACTIONS(363), 1, + ACTIONS(1051), 1, anon_sym_DQUOTE, - ACTIONS(365), 1, + ACTIONS(1053), 1, anon_sym_SQUOTE, - ACTIONS(367), 1, + ACTIONS(1055), 1, anon_sym_LPAREN, - ACTIONS(371), 1, + ACTIONS(1057), 1, aux_sym_unary_expression_token1, - ACTIONS(373), 1, + ACTIONS(1059), 1, aux_sym_unary_expression_token2, - ACTIONS(375), 1, + ACTIONS(1061), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(377), 1, + ACTIONS(1063), 1, aux_sym_current_changed_expression_token1, - ACTIONS(379), 1, + ACTIONS(1065), 1, aux_sym_locked_expression_token1, - ACTIONS(383), 1, + ACTIONS(1067), 1, + aux_sym_input_expression_token1, + ACTIONS(1069), 1, aux_sym_scope_tuning_token1, - ACTIONS(387), 1, + ACTIONS(1071), 1, aux_sym_if_statement_token1, - ACTIONS(389), 1, + ACTIONS(1073), 1, aux_sym_can_find_expression_token1, - ACTIONS(393), 1, + ACTIONS(1075), 1, aux_sym_accumulate_expression_token1, - ACTIONS(429), 1, - aux_sym_input_expression_token1, - STATE(36), 1, - sym__decimal_literal, - STATE(38), 1, - sym_object_access, - STATE(1493), 1, + STATE(826), 1, sym__expression, - ACTIONS(395), 2, + STATE(1593), 1, + sym_object_access, + STATE(1630), 1, + sym__decimal_literal, + ACTIONS(1077), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(21), 2, - sym_double_quoted_string, - sym_single_quoted_string, - STATE(412), 2, + STATE(418), 2, sym_comment, sym_include, - ACTIONS(359), 4, + STATE(1626), 2, + sym_double_quoted_string, + sym_single_quoted_string, + ACTIONS(1047), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(37), 4, + STATE(1616), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(13), 18, + STATE(1629), 18, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -58938,71 +59730,71 @@ static const uint16_t ts_small_parse_table[] = { sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [13139] = 28, + [13250] = 28, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(1073), 1, + ACTIONS(959), 1, sym_identifier, - ACTIONS(1075), 1, + ACTIONS(961), 1, anon_sym_LBRACE, - ACTIONS(1077), 1, + ACTIONS(963), 1, sym_null_expression, - ACTIONS(1081), 1, + ACTIONS(967), 1, sym__integer_literal, - ACTIONS(1083), 1, + ACTIONS(969), 1, anon_sym_DQUOTE, - ACTIONS(1085), 1, + ACTIONS(971), 1, anon_sym_SQUOTE, - ACTIONS(1087), 1, + ACTIONS(973), 1, anon_sym_LPAREN, - ACTIONS(1089), 1, + ACTIONS(975), 1, aux_sym_unary_expression_token1, - ACTIONS(1091), 1, + ACTIONS(977), 1, aux_sym_unary_expression_token2, - ACTIONS(1093), 1, + ACTIONS(979), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(1095), 1, + ACTIONS(981), 1, aux_sym_current_changed_expression_token1, - ACTIONS(1097), 1, + ACTIONS(983), 1, aux_sym_locked_expression_token1, - ACTIONS(1099), 1, + ACTIONS(985), 1, aux_sym_input_expression_token1, - ACTIONS(1101), 1, + ACTIONS(987), 1, aux_sym_scope_tuning_token1, - ACTIONS(1103), 1, + ACTIONS(989), 1, aux_sym_if_statement_token1, - ACTIONS(1105), 1, + ACTIONS(991), 1, aux_sym_can_find_expression_token1, - ACTIONS(1107), 1, + ACTIONS(993), 1, aux_sym_accumulate_expression_token1, - STATE(651), 1, + STATE(799), 1, sym__expression, - STATE(731), 1, + STATE(1033), 1, sym_object_access, - STATE(772), 1, + STATE(1335), 1, sym__decimal_literal, - ACTIONS(1109), 2, + ACTIONS(995), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(413), 2, + STATE(419), 2, sym_comment, sym_include, - STATE(771), 2, + STATE(1474), 2, sym_double_quoted_string, sym_single_quoted_string, - ACTIONS(1079), 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(744), 4, + STATE(1322), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(742), 18, + STATE(1384), 18, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -59021,71 +59813,71 @@ static const uint16_t ts_small_parse_table[] = { sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [13250] = 28, + [13361] = 28, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(353), 1, + ACTIONS(337), 1, sym_identifier, - ACTIONS(355), 1, + ACTIONS(339), 1, anon_sym_LBRACE, - ACTIONS(357), 1, + ACTIONS(341), 1, sym_null_expression, - ACTIONS(361), 1, + ACTIONS(345), 1, sym__integer_literal, - ACTIONS(363), 1, + ACTIONS(347), 1, anon_sym_DQUOTE, - ACTIONS(365), 1, + ACTIONS(349), 1, anon_sym_SQUOTE, - ACTIONS(367), 1, + ACTIONS(351), 1, anon_sym_LPAREN, - ACTIONS(371), 1, + ACTIONS(355), 1, aux_sym_unary_expression_token1, - ACTIONS(373), 1, + ACTIONS(357), 1, aux_sym_unary_expression_token2, - ACTIONS(375), 1, + ACTIONS(359), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(377), 1, + ACTIONS(361), 1, aux_sym_current_changed_expression_token1, - ACTIONS(379), 1, + ACTIONS(363), 1, aux_sym_locked_expression_token1, - ACTIONS(383), 1, + ACTIONS(367), 1, aux_sym_scope_tuning_token1, - ACTIONS(387), 1, + ACTIONS(371), 1, aux_sym_if_statement_token1, - ACTIONS(389), 1, + ACTIONS(373), 1, aux_sym_can_find_expression_token1, - ACTIONS(393), 1, + ACTIONS(377), 1, aux_sym_accumulate_expression_token1, - ACTIONS(429), 1, + ACTIONS(431), 1, aux_sym_input_expression_token1, - STATE(36), 1, + STATE(23), 1, sym__decimal_literal, - STATE(38), 1, + STATE(29), 1, sym_object_access, - STATE(593), 1, + STATE(635), 1, sym__expression, - ACTIONS(395), 2, + ACTIONS(379), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(21), 2, + STATE(18), 2, sym_double_quoted_string, sym_single_quoted_string, - STATE(414), 2, + STATE(420), 2, sym_comment, sym_include, - ACTIONS(359), 4, + ACTIONS(343), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(37), 4, + STATE(24), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(13), 18, + STATE(20), 18, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -59104,71 +59896,71 @@ static const uint16_t ts_small_parse_table[] = { sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [13361] = 28, + [13472] = 28, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(353), 1, + ACTIONS(337), 1, sym_identifier, - ACTIONS(355), 1, + ACTIONS(339), 1, anon_sym_LBRACE, - ACTIONS(357), 1, + ACTIONS(341), 1, sym_null_expression, - ACTIONS(361), 1, + ACTIONS(345), 1, sym__integer_literal, - ACTIONS(363), 1, + ACTIONS(347), 1, anon_sym_DQUOTE, - ACTIONS(365), 1, + ACTIONS(349), 1, anon_sym_SQUOTE, - ACTIONS(367), 1, + ACTIONS(351), 1, anon_sym_LPAREN, - ACTIONS(371), 1, + ACTIONS(355), 1, aux_sym_unary_expression_token1, - ACTIONS(389), 1, - aux_sym_can_find_expression_token1, - ACTIONS(421), 1, + ACTIONS(357), 1, aux_sym_unary_expression_token2, - ACTIONS(423), 1, + ACTIONS(359), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(425), 1, + ACTIONS(361), 1, aux_sym_current_changed_expression_token1, - ACTIONS(427), 1, + ACTIONS(363), 1, aux_sym_locked_expression_token1, - ACTIONS(429), 1, - aux_sym_input_expression_token1, - ACTIONS(431), 1, + ACTIONS(367), 1, aux_sym_scope_tuning_token1, - ACTIONS(435), 1, + ACTIONS(371), 1, aux_sym_if_statement_token1, - ACTIONS(445), 1, + ACTIONS(373), 1, + aux_sym_can_find_expression_token1, + ACTIONS(377), 1, aux_sym_accumulate_expression_token1, - STATE(36), 1, + ACTIONS(431), 1, + aux_sym_input_expression_token1, + STATE(23), 1, sym__decimal_literal, - STATE(38), 1, + STATE(29), 1, sym_object_access, - STATE(656), 1, + STATE(1486), 1, sym__expression, - ACTIONS(395), 2, + ACTIONS(379), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(21), 2, + STATE(18), 2, sym_double_quoted_string, sym_single_quoted_string, - STATE(415), 2, + STATE(421), 2, sym_comment, sym_include, - ACTIONS(359), 4, + ACTIONS(343), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(37), 4, + STATE(24), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(13), 18, + STATE(20), 18, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -59187,71 +59979,71 @@ static const uint16_t ts_small_parse_table[] = { sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [13472] = 28, + [13583] = 28, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(353), 1, + ACTIONS(635), 1, sym_identifier, - ACTIONS(355), 1, + ACTIONS(637), 1, anon_sym_LBRACE, - ACTIONS(357), 1, + ACTIONS(641), 1, sym_null_expression, - ACTIONS(361), 1, + ACTIONS(645), 1, sym__integer_literal, - ACTIONS(363), 1, + ACTIONS(647), 1, anon_sym_DQUOTE, - ACTIONS(365), 1, + ACTIONS(649), 1, anon_sym_SQUOTE, - ACTIONS(367), 1, - anon_sym_LPAREN, - ACTIONS(371), 1, + ACTIONS(653), 1, aux_sym_unary_expression_token1, - ACTIONS(389), 1, - aux_sym_can_find_expression_token1, - ACTIONS(421), 1, + ACTIONS(655), 1, aux_sym_unary_expression_token2, - ACTIONS(423), 1, + ACTIONS(657), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(425), 1, + ACTIONS(659), 1, aux_sym_current_changed_expression_token1, - ACTIONS(427), 1, + ACTIONS(661), 1, aux_sym_locked_expression_token1, - ACTIONS(429), 1, + ACTIONS(663), 1, aux_sym_input_expression_token1, - ACTIONS(431), 1, + ACTIONS(667), 1, aux_sym_scope_tuning_token1, - ACTIONS(435), 1, + ACTIONS(669), 1, aux_sym_if_statement_token1, - ACTIONS(445), 1, + ACTIONS(673), 1, + aux_sym_can_find_expression_token1, + ACTIONS(675), 1, aux_sym_accumulate_expression_token1, - STATE(36), 1, + ACTIONS(839), 1, + anon_sym_LPAREN, + STATE(529), 1, + sym__expression, + STATE(565), 1, sym__decimal_literal, - STATE(38), 1, + STATE(587), 1, sym_object_access, - STATE(655), 1, - sym__expression, - ACTIONS(395), 2, + ACTIONS(677), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(21), 2, - sym_double_quoted_string, - sym_single_quoted_string, - STATE(416), 2, + STATE(422), 2, sym_comment, sym_include, - ACTIONS(359), 4, + STATE(580), 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(37), 4, + STATE(581), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(13), 18, + STATE(566), 18, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -59270,71 +60062,71 @@ static const uint16_t ts_small_parse_table[] = { sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [13583] = 28, + [13694] = 28, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(353), 1, + ACTIONS(337), 1, sym_identifier, - ACTIONS(355), 1, + ACTIONS(339), 1, anon_sym_LBRACE, - ACTIONS(357), 1, + ACTIONS(341), 1, sym_null_expression, - ACTIONS(361), 1, + ACTIONS(345), 1, sym__integer_literal, - ACTIONS(363), 1, + ACTIONS(347), 1, anon_sym_DQUOTE, - ACTIONS(365), 1, + ACTIONS(349), 1, anon_sym_SQUOTE, - ACTIONS(367), 1, + ACTIONS(351), 1, anon_sym_LPAREN, - ACTIONS(371), 1, + ACTIONS(355), 1, aux_sym_unary_expression_token1, - ACTIONS(389), 1, - aux_sym_can_find_expression_token1, - ACTIONS(421), 1, + ACTIONS(357), 1, aux_sym_unary_expression_token2, - ACTIONS(423), 1, + ACTIONS(359), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(425), 1, + ACTIONS(361), 1, aux_sym_current_changed_expression_token1, - ACTIONS(427), 1, + ACTIONS(363), 1, aux_sym_locked_expression_token1, - ACTIONS(429), 1, - aux_sym_input_expression_token1, - ACTIONS(431), 1, + ACTIONS(367), 1, aux_sym_scope_tuning_token1, - ACTIONS(435), 1, + ACTIONS(371), 1, aux_sym_if_statement_token1, - ACTIONS(445), 1, + ACTIONS(373), 1, + aux_sym_can_find_expression_token1, + ACTIONS(377), 1, aux_sym_accumulate_expression_token1, - STATE(36), 1, + ACTIONS(431), 1, + aux_sym_input_expression_token1, + STATE(23), 1, sym__decimal_literal, - STATE(38), 1, + STATE(29), 1, sym_object_access, - STATE(670), 1, + STATE(554), 1, sym__expression, - ACTIONS(395), 2, + ACTIONS(379), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(21), 2, + STATE(18), 2, sym_double_quoted_string, sym_single_quoted_string, - STATE(417), 2, + STATE(423), 2, sym_comment, sym_include, - ACTIONS(359), 4, + ACTIONS(343), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(37), 4, + STATE(24), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(13), 18, + STATE(20), 18, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -59353,154 +60145,71 @@ static const uint16_t ts_small_parse_table[] = { sym_can_find_expression, sym_accumulate_expression, sym_available_expression, - [13694] = 28, + [13805] = 28, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(1073), 1, + ACTIONS(337), 1, sym_identifier, - ACTIONS(1075), 1, + ACTIONS(339), 1, anon_sym_LBRACE, - ACTIONS(1077), 1, + ACTIONS(341), 1, sym_null_expression, - ACTIONS(1081), 1, + ACTIONS(345), 1, sym__integer_literal, - ACTIONS(1083), 1, + ACTIONS(347), 1, anon_sym_DQUOTE, - ACTIONS(1085), 1, + ACTIONS(349), 1, anon_sym_SQUOTE, - ACTIONS(1087), 1, + ACTIONS(351), 1, anon_sym_LPAREN, - ACTIONS(1089), 1, + ACTIONS(355), 1, aux_sym_unary_expression_token1, - ACTIONS(1091), 1, + ACTIONS(357), 1, aux_sym_unary_expression_token2, - ACTIONS(1093), 1, + ACTIONS(359), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(1095), 1, + ACTIONS(361), 1, aux_sym_current_changed_expression_token1, - ACTIONS(1097), 1, + ACTIONS(363), 1, aux_sym_locked_expression_token1, - ACTIONS(1099), 1, - aux_sym_input_expression_token1, - ACTIONS(1101), 1, + ACTIONS(367), 1, aux_sym_scope_tuning_token1, - ACTIONS(1103), 1, + ACTIONS(371), 1, aux_sym_if_statement_token1, - ACTIONS(1105), 1, + ACTIONS(373), 1, aux_sym_can_find_expression_token1, - ACTIONS(1107), 1, + ACTIONS(377), 1, aux_sym_accumulate_expression_token1, - STATE(640), 1, - sym__expression, - STATE(731), 1, - sym_object_access, - STATE(772), 1, - sym__decimal_literal, - ACTIONS(1109), 2, - aux_sym_available_expression_token1, - aux_sym_available_expression_token2, - STATE(418), 2, - sym_comment, - sym_include, - STATE(771), 2, - sym_double_quoted_string, - sym_single_quoted_string, - ACTIONS(1079), 4, - aux_sym_boolean_literal_token1, - aux_sym_boolean_literal_token2, - aux_sym_boolean_literal_token3, - aux_sym_boolean_literal_token4, - STATE(744), 4, - sym_logical_expression, - sym_additive_expression, - sym_multiplicative_expression, - sym_comparison_expression, - STATE(742), 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, - [13805] = 28, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - ACTIONS(353), 1, - sym_identifier, - ACTIONS(355), 1, - anon_sym_LBRACE, - ACTIONS(357), 1, - sym_null_expression, - ACTIONS(361), 1, - sym__integer_literal, - ACTIONS(363), 1, - anon_sym_DQUOTE, - ACTIONS(365), 1, - anon_sym_SQUOTE, - ACTIONS(367), 1, - anon_sym_LPAREN, - ACTIONS(371), 1, - aux_sym_unary_expression_token1, - ACTIONS(389), 1, - aux_sym_can_find_expression_token1, - ACTIONS(421), 1, - aux_sym_unary_expression_token2, - ACTIONS(423), 1, - aux_sym_ambiguous_expression_token1, - ACTIONS(425), 1, - aux_sym_current_changed_expression_token1, - ACTIONS(427), 1, - aux_sym_locked_expression_token1, - ACTIONS(429), 1, - aux_sym_input_expression_token1, ACTIONS(431), 1, - aux_sym_scope_tuning_token1, - ACTIONS(435), 1, - aux_sym_if_statement_token1, - ACTIONS(445), 1, - aux_sym_accumulate_expression_token1, - STATE(36), 1, + aux_sym_input_expression_token1, + STATE(23), 1, sym__decimal_literal, - STATE(38), 1, + STATE(29), 1, sym_object_access, - STATE(654), 1, + STATE(1360), 1, sym__expression, - ACTIONS(395), 2, + ACTIONS(379), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(21), 2, + STATE(18), 2, sym_double_quoted_string, sym_single_quoted_string, - STATE(419), 2, + STATE(424), 2, sym_comment, sym_include, - ACTIONS(359), 4, + ACTIONS(343), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(37), 4, + STATE(24), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(13), 18, + STATE(20), 18, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -59524,66 +60233,66 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(353), 1, + ACTIONS(337), 1, sym_identifier, - ACTIONS(355), 1, + ACTIONS(339), 1, anon_sym_LBRACE, - ACTIONS(357), 1, + ACTIONS(341), 1, sym_null_expression, - ACTIONS(361), 1, + ACTIONS(345), 1, sym__integer_literal, - ACTIONS(363), 1, + ACTIONS(347), 1, anon_sym_DQUOTE, - ACTIONS(365), 1, + ACTIONS(349), 1, anon_sym_SQUOTE, - ACTIONS(367), 1, + ACTIONS(351), 1, anon_sym_LPAREN, - ACTIONS(371), 1, + ACTIONS(355), 1, aux_sym_unary_expression_token1, - ACTIONS(373), 1, + ACTIONS(357), 1, aux_sym_unary_expression_token2, - ACTIONS(375), 1, + ACTIONS(359), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(377), 1, + ACTIONS(361), 1, aux_sym_current_changed_expression_token1, - ACTIONS(379), 1, + ACTIONS(363), 1, aux_sym_locked_expression_token1, - ACTIONS(383), 1, + ACTIONS(367), 1, aux_sym_scope_tuning_token1, - ACTIONS(387), 1, + ACTIONS(371), 1, aux_sym_if_statement_token1, - ACTIONS(389), 1, + ACTIONS(373), 1, aux_sym_can_find_expression_token1, - ACTIONS(393), 1, + ACTIONS(377), 1, aux_sym_accumulate_expression_token1, - ACTIONS(429), 1, + ACTIONS(431), 1, aux_sym_input_expression_token1, - STATE(36), 1, + STATE(23), 1, sym__decimal_literal, - STATE(38), 1, + STATE(29), 1, sym_object_access, - STATE(855), 1, + STATE(1243), 1, sym__expression, - ACTIONS(395), 2, + ACTIONS(379), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(21), 2, + STATE(18), 2, sym_double_quoted_string, sym_single_quoted_string, - STATE(420), 2, + STATE(425), 2, sym_comment, sym_include, - ACTIONS(359), 4, + ACTIONS(343), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(37), 4, + STATE(24), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(13), 18, + STATE(20), 18, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -59607,66 +60316,66 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(353), 1, + ACTIONS(1041), 1, sym_identifier, - ACTIONS(355), 1, + ACTIONS(1043), 1, anon_sym_LBRACE, - ACTIONS(357), 1, + ACTIONS(1045), 1, sym_null_expression, - ACTIONS(361), 1, + ACTIONS(1049), 1, sym__integer_literal, - ACTIONS(363), 1, + ACTIONS(1051), 1, anon_sym_DQUOTE, - ACTIONS(365), 1, + ACTIONS(1053), 1, anon_sym_SQUOTE, - ACTIONS(367), 1, + ACTIONS(1055), 1, anon_sym_LPAREN, - ACTIONS(371), 1, + ACTIONS(1057), 1, aux_sym_unary_expression_token1, - ACTIONS(389), 1, - aux_sym_can_find_expression_token1, - ACTIONS(421), 1, + ACTIONS(1059), 1, aux_sym_unary_expression_token2, - ACTIONS(423), 1, + ACTIONS(1061), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(425), 1, + ACTIONS(1063), 1, aux_sym_current_changed_expression_token1, - ACTIONS(427), 1, + ACTIONS(1065), 1, aux_sym_locked_expression_token1, - ACTIONS(429), 1, + ACTIONS(1067), 1, aux_sym_input_expression_token1, - ACTIONS(431), 1, + ACTIONS(1069), 1, aux_sym_scope_tuning_token1, - ACTIONS(435), 1, + ACTIONS(1071), 1, aux_sym_if_statement_token1, - ACTIONS(445), 1, + ACTIONS(1073), 1, + aux_sym_can_find_expression_token1, + ACTIONS(1075), 1, aux_sym_accumulate_expression_token1, - STATE(36), 1, - sym__decimal_literal, - STATE(38), 1, - sym_object_access, - STATE(641), 1, + STATE(837), 1, sym__expression, - ACTIONS(395), 2, + STATE(1593), 1, + sym_object_access, + STATE(1630), 1, + sym__decimal_literal, + ACTIONS(1077), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(21), 2, - sym_double_quoted_string, - sym_single_quoted_string, - STATE(421), 2, + STATE(426), 2, sym_comment, sym_include, - ACTIONS(359), 4, + STATE(1626), 2, + sym_double_quoted_string, + sym_single_quoted_string, + ACTIONS(1047), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(37), 4, + STATE(1616), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(13), 18, + STATE(1629), 18, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -59690,66 +60399,66 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(1073), 1, + ACTIONS(337), 1, sym_identifier, - ACTIONS(1075), 1, + ACTIONS(339), 1, anon_sym_LBRACE, - ACTIONS(1077), 1, + ACTIONS(341), 1, sym_null_expression, - ACTIONS(1081), 1, + ACTIONS(345), 1, sym__integer_literal, - ACTIONS(1083), 1, + ACTIONS(347), 1, anon_sym_DQUOTE, - ACTIONS(1085), 1, + ACTIONS(349), 1, anon_sym_SQUOTE, - ACTIONS(1087), 1, + ACTIONS(351), 1, anon_sym_LPAREN, - ACTIONS(1089), 1, + ACTIONS(355), 1, aux_sym_unary_expression_token1, - ACTIONS(1091), 1, + ACTIONS(357), 1, aux_sym_unary_expression_token2, - ACTIONS(1093), 1, + ACTIONS(359), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(1095), 1, + ACTIONS(361), 1, aux_sym_current_changed_expression_token1, - ACTIONS(1097), 1, + ACTIONS(363), 1, aux_sym_locked_expression_token1, - ACTIONS(1099), 1, - aux_sym_input_expression_token1, - ACTIONS(1101), 1, + ACTIONS(367), 1, aux_sym_scope_tuning_token1, - ACTIONS(1103), 1, + ACTIONS(371), 1, aux_sym_if_statement_token1, - ACTIONS(1105), 1, + ACTIONS(373), 1, aux_sym_can_find_expression_token1, - ACTIONS(1107), 1, + ACTIONS(377), 1, aux_sym_accumulate_expression_token1, - STATE(650), 1, - sym__expression, - STATE(731), 1, - sym_object_access, - STATE(772), 1, + ACTIONS(431), 1, + aux_sym_input_expression_token1, + STATE(23), 1, sym__decimal_literal, - ACTIONS(1109), 2, + STATE(29), 1, + sym_object_access, + STATE(1246), 1, + sym__expression, + ACTIONS(379), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(422), 2, - sym_comment, - sym_include, - STATE(771), 2, + STATE(18), 2, sym_double_quoted_string, sym_single_quoted_string, - ACTIONS(1079), 4, + STATE(427), 2, + sym_comment, + sym_include, + ACTIONS(343), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(744), 4, + STATE(24), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(742), 18, + STATE(20), 18, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -59773,66 +60482,66 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(353), 1, + ACTIONS(337), 1, sym_identifier, - ACTIONS(355), 1, + ACTIONS(339), 1, anon_sym_LBRACE, - ACTIONS(357), 1, + ACTIONS(341), 1, sym_null_expression, - ACTIONS(361), 1, + ACTIONS(345), 1, sym__integer_literal, - ACTIONS(363), 1, + ACTIONS(347), 1, anon_sym_DQUOTE, - ACTIONS(365), 1, + ACTIONS(349), 1, anon_sym_SQUOTE, - ACTIONS(367), 1, + ACTIONS(351), 1, anon_sym_LPAREN, - ACTIONS(371), 1, + ACTIONS(355), 1, aux_sym_unary_expression_token1, - ACTIONS(389), 1, + ACTIONS(373), 1, aux_sym_can_find_expression_token1, - ACTIONS(421), 1, - aux_sym_unary_expression_token2, ACTIONS(423), 1, - aux_sym_ambiguous_expression_token1, + aux_sym_unary_expression_token2, ACTIONS(425), 1, - aux_sym_current_changed_expression_token1, + aux_sym_ambiguous_expression_token1, ACTIONS(427), 1, - aux_sym_locked_expression_token1, + aux_sym_current_changed_expression_token1, ACTIONS(429), 1, - aux_sym_input_expression_token1, + aux_sym_locked_expression_token1, ACTIONS(431), 1, + aux_sym_input_expression_token1, + ACTIONS(433), 1, aux_sym_scope_tuning_token1, - ACTIONS(435), 1, + ACTIONS(437), 1, aux_sym_if_statement_token1, - ACTIONS(445), 1, + ACTIONS(447), 1, aux_sym_accumulate_expression_token1, - STATE(36), 1, + STATE(23), 1, sym__decimal_literal, - STATE(38), 1, + STATE(29), 1, sym_object_access, - STATE(653), 1, + STATE(671), 1, sym__expression, - ACTIONS(395), 2, + ACTIONS(379), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(21), 2, + STATE(18), 2, sym_double_quoted_string, sym_single_quoted_string, - STATE(423), 2, + STATE(428), 2, sym_comment, sym_include, - ACTIONS(359), 4, + ACTIONS(343), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(37), 4, + STATE(24), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(13), 18, + STATE(20), 18, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -59856,66 +60565,66 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(1073), 1, + ACTIONS(337), 1, sym_identifier, - ACTIONS(1075), 1, + ACTIONS(339), 1, anon_sym_LBRACE, - ACTIONS(1077), 1, + ACTIONS(341), 1, sym_null_expression, - ACTIONS(1081), 1, + ACTIONS(345), 1, sym__integer_literal, - ACTIONS(1083), 1, + ACTIONS(347), 1, anon_sym_DQUOTE, - ACTIONS(1085), 1, + ACTIONS(349), 1, anon_sym_SQUOTE, - ACTIONS(1087), 1, + ACTIONS(351), 1, anon_sym_LPAREN, - ACTIONS(1089), 1, + ACTIONS(355), 1, aux_sym_unary_expression_token1, - ACTIONS(1091), 1, + ACTIONS(373), 1, + aux_sym_can_find_expression_token1, + ACTIONS(423), 1, aux_sym_unary_expression_token2, - ACTIONS(1093), 1, + ACTIONS(425), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(1095), 1, + ACTIONS(427), 1, aux_sym_current_changed_expression_token1, - ACTIONS(1097), 1, + ACTIONS(429), 1, aux_sym_locked_expression_token1, - ACTIONS(1099), 1, + ACTIONS(431), 1, aux_sym_input_expression_token1, - ACTIONS(1101), 1, + ACTIONS(433), 1, aux_sym_scope_tuning_token1, - ACTIONS(1103), 1, + ACTIONS(437), 1, aux_sym_if_statement_token1, - ACTIONS(1105), 1, - aux_sym_can_find_expression_token1, - ACTIONS(1107), 1, + ACTIONS(447), 1, aux_sym_accumulate_expression_token1, - STATE(662), 1, - sym__expression, - STATE(731), 1, - sym_object_access, - STATE(772), 1, + STATE(23), 1, sym__decimal_literal, - ACTIONS(1109), 2, + STATE(29), 1, + sym_object_access, + STATE(670), 1, + sym__expression, + ACTIONS(379), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(424), 2, - sym_comment, - sym_include, - STATE(771), 2, + STATE(18), 2, sym_double_quoted_string, sym_single_quoted_string, - ACTIONS(1079), 4, + STATE(429), 2, + sym_comment, + sym_include, + ACTIONS(343), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(744), 4, + STATE(24), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(742), 18, + STATE(20), 18, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -59939,66 +60648,66 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(353), 1, + ACTIONS(337), 1, sym_identifier, - ACTIONS(355), 1, + ACTIONS(339), 1, anon_sym_LBRACE, - ACTIONS(357), 1, + ACTIONS(341), 1, sym_null_expression, - ACTIONS(361), 1, + ACTIONS(345), 1, sym__integer_literal, - ACTIONS(363), 1, + ACTIONS(347), 1, anon_sym_DQUOTE, - ACTIONS(365), 1, + ACTIONS(349), 1, anon_sym_SQUOTE, - ACTIONS(367), 1, + ACTIONS(351), 1, anon_sym_LPAREN, - ACTIONS(371), 1, + ACTIONS(355), 1, aux_sym_unary_expression_token1, - ACTIONS(373), 1, + ACTIONS(357), 1, aux_sym_unary_expression_token2, - ACTIONS(375), 1, + ACTIONS(359), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(377), 1, + ACTIONS(361), 1, aux_sym_current_changed_expression_token1, - ACTIONS(379), 1, + ACTIONS(363), 1, aux_sym_locked_expression_token1, - ACTIONS(383), 1, + ACTIONS(367), 1, aux_sym_scope_tuning_token1, - ACTIONS(387), 1, + ACTIONS(371), 1, aux_sym_if_statement_token1, - ACTIONS(389), 1, + ACTIONS(373), 1, aux_sym_can_find_expression_token1, - ACTIONS(393), 1, + ACTIONS(377), 1, aux_sym_accumulate_expression_token1, - ACTIONS(429), 1, + ACTIONS(431), 1, aux_sym_input_expression_token1, - STATE(36), 1, + STATE(23), 1, sym__decimal_literal, - STATE(38), 1, + STATE(29), 1, sym_object_access, - STATE(217), 1, + STATE(556), 1, sym__expression, - ACTIONS(395), 2, + ACTIONS(379), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(21), 2, + STATE(18), 2, sym_double_quoted_string, sym_single_quoted_string, - STATE(425), 2, + STATE(430), 2, sym_comment, sym_include, - ACTIONS(359), 4, + ACTIONS(343), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(37), 4, + STATE(24), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(13), 18, + STATE(20), 18, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -60022,66 +60731,66 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(1073), 1, + ACTIONS(959), 1, sym_identifier, - ACTIONS(1075), 1, + ACTIONS(961), 1, anon_sym_LBRACE, - ACTIONS(1077), 1, + ACTIONS(963), 1, sym_null_expression, - ACTIONS(1081), 1, + ACTIONS(967), 1, sym__integer_literal, - ACTIONS(1083), 1, + ACTIONS(969), 1, anon_sym_DQUOTE, - ACTIONS(1085), 1, + ACTIONS(971), 1, anon_sym_SQUOTE, - ACTIONS(1087), 1, + ACTIONS(973), 1, anon_sym_LPAREN, - ACTIONS(1089), 1, + ACTIONS(975), 1, aux_sym_unary_expression_token1, - ACTIONS(1091), 1, + ACTIONS(977), 1, aux_sym_unary_expression_token2, - ACTIONS(1093), 1, + ACTIONS(979), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(1095), 1, + ACTIONS(981), 1, aux_sym_current_changed_expression_token1, - ACTIONS(1097), 1, + ACTIONS(983), 1, aux_sym_locked_expression_token1, - ACTIONS(1099), 1, + ACTIONS(985), 1, aux_sym_input_expression_token1, - ACTIONS(1101), 1, + ACTIONS(987), 1, aux_sym_scope_tuning_token1, - ACTIONS(1103), 1, + ACTIONS(989), 1, aux_sym_if_statement_token1, - ACTIONS(1105), 1, + ACTIONS(991), 1, aux_sym_can_find_expression_token1, - ACTIONS(1107), 1, + ACTIONS(993), 1, aux_sym_accumulate_expression_token1, - STATE(663), 1, + STATE(795), 1, sym__expression, - STATE(731), 1, + STATE(1033), 1, sym_object_access, - STATE(772), 1, + STATE(1335), 1, sym__decimal_literal, - ACTIONS(1109), 2, + ACTIONS(995), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(426), 2, + STATE(431), 2, sym_comment, sym_include, - STATE(771), 2, + STATE(1474), 2, sym_double_quoted_string, sym_single_quoted_string, - ACTIONS(1079), 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(744), 4, + STATE(1322), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(742), 18, + STATE(1384), 18, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -60105,66 +60814,66 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(353), 1, - sym_identifier, - ACTIONS(355), 1, + ACTIONS(339), 1, anon_sym_LBRACE, - ACTIONS(357), 1, + ACTIONS(341), 1, sym_null_expression, - ACTIONS(361), 1, + ACTIONS(345), 1, sym__integer_literal, - ACTIONS(363), 1, + ACTIONS(347), 1, anon_sym_DQUOTE, - ACTIONS(365), 1, + ACTIONS(349), 1, anon_sym_SQUOTE, - ACTIONS(367), 1, + ACTIONS(351), 1, anon_sym_LPAREN, - ACTIONS(371), 1, + ACTIONS(355), 1, aux_sym_unary_expression_token1, - ACTIONS(373), 1, + ACTIONS(357), 1, aux_sym_unary_expression_token2, - ACTIONS(375), 1, + ACTIONS(359), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(377), 1, + ACTIONS(361), 1, aux_sym_current_changed_expression_token1, - ACTIONS(379), 1, + ACTIONS(363), 1, aux_sym_locked_expression_token1, - ACTIONS(383), 1, + ACTIONS(367), 1, aux_sym_scope_tuning_token1, - ACTIONS(387), 1, + ACTIONS(371), 1, aux_sym_if_statement_token1, - ACTIONS(389), 1, + ACTIONS(373), 1, aux_sym_can_find_expression_token1, - ACTIONS(393), 1, + ACTIONS(377), 1, aux_sym_accumulate_expression_token1, - ACTIONS(429), 1, + ACTIONS(431), 1, aux_sym_input_expression_token1, - STATE(36), 1, + ACTIONS(1079), 1, + sym_identifier, + STATE(23), 1, sym__decimal_literal, - STATE(38), 1, + STATE(29), 1, sym_object_access, - STATE(143), 1, + STATE(1491), 1, sym__expression, - ACTIONS(395), 2, + ACTIONS(379), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(21), 2, + STATE(18), 2, sym_double_quoted_string, sym_single_quoted_string, - STATE(427), 2, + STATE(432), 2, sym_comment, sym_include, - ACTIONS(359), 4, + ACTIONS(343), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(37), 4, + STATE(24), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(13), 18, + STATE(20), 18, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -60188,66 +60897,66 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(635), 1, + ACTIONS(337), 1, sym_identifier, - ACTIONS(637), 1, + ACTIONS(339), 1, anon_sym_LBRACE, - ACTIONS(641), 1, + ACTIONS(341), 1, sym_null_expression, - ACTIONS(645), 1, + ACTIONS(345), 1, sym__integer_literal, - ACTIONS(647), 1, + ACTIONS(347), 1, anon_sym_DQUOTE, - ACTIONS(649), 1, + ACTIONS(349), 1, anon_sym_SQUOTE, - ACTIONS(653), 1, + ACTIONS(351), 1, + anon_sym_LPAREN, + ACTIONS(355), 1, aux_sym_unary_expression_token1, - ACTIONS(655), 1, + ACTIONS(357), 1, aux_sym_unary_expression_token2, - ACTIONS(657), 1, + ACTIONS(359), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(659), 1, + ACTIONS(361), 1, aux_sym_current_changed_expression_token1, - ACTIONS(661), 1, + ACTIONS(363), 1, aux_sym_locked_expression_token1, - ACTIONS(663), 1, - aux_sym_input_expression_token1, - ACTIONS(667), 1, + ACTIONS(367), 1, aux_sym_scope_tuning_token1, - ACTIONS(669), 1, + ACTIONS(371), 1, aux_sym_if_statement_token1, - ACTIONS(673), 1, + ACTIONS(373), 1, aux_sym_can_find_expression_token1, - ACTIONS(675), 1, + ACTIONS(377), 1, aux_sym_accumulate_expression_token1, - ACTIONS(901), 1, - anon_sym_LPAREN, - STATE(523), 1, - sym__expression, - STATE(564), 1, + ACTIONS(431), 1, + aux_sym_input_expression_token1, + STATE(23), 1, sym__decimal_literal, - STATE(569), 1, + STATE(29), 1, sym_object_access, - ACTIONS(677), 2, + STATE(1285), 1, + sym__expression, + ACTIONS(379), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(428), 2, - sym_comment, - sym_include, - STATE(565), 2, + STATE(18), 2, sym_double_quoted_string, sym_single_quoted_string, - ACTIONS(643), 4, + STATE(433), 2, + sym_comment, + sym_include, + ACTIONS(343), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(567), 4, + STATE(24), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(561), 18, + STATE(20), 18, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -60271,66 +60980,66 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(1035), 1, + ACTIONS(337), 1, sym_identifier, - ACTIONS(1037), 1, + ACTIONS(339), 1, anon_sym_LBRACE, - ACTIONS(1039), 1, + ACTIONS(341), 1, sym_null_expression, - ACTIONS(1043), 1, + ACTIONS(345), 1, sym__integer_literal, - ACTIONS(1045), 1, + ACTIONS(347), 1, anon_sym_DQUOTE, - ACTIONS(1047), 1, + ACTIONS(349), 1, anon_sym_SQUOTE, - ACTIONS(1049), 1, + ACTIONS(351), 1, anon_sym_LPAREN, - ACTIONS(1051), 1, + ACTIONS(355), 1, aux_sym_unary_expression_token1, - ACTIONS(1053), 1, + ACTIONS(357), 1, aux_sym_unary_expression_token2, - ACTIONS(1055), 1, + ACTIONS(359), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(1057), 1, + ACTIONS(361), 1, aux_sym_current_changed_expression_token1, - ACTIONS(1059), 1, + ACTIONS(363), 1, aux_sym_locked_expression_token1, - ACTIONS(1061), 1, - aux_sym_input_expression_token1, - ACTIONS(1063), 1, + ACTIONS(367), 1, aux_sym_scope_tuning_token1, - ACTIONS(1065), 1, + ACTIONS(371), 1, aux_sym_if_statement_token1, - ACTIONS(1067), 1, + ACTIONS(373), 1, aux_sym_can_find_expression_token1, - ACTIONS(1069), 1, + ACTIONS(377), 1, aux_sym_accumulate_expression_token1, - STATE(617), 1, - sym__expression, - STATE(642), 1, - sym_object_access, - STATE(699), 1, + ACTIONS(431), 1, + aux_sym_input_expression_token1, + STATE(23), 1, sym__decimal_literal, - ACTIONS(1071), 2, + STATE(29), 1, + sym_object_access, + STATE(552), 1, + sym__expression, + ACTIONS(379), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(429), 2, - sym_comment, - sym_include, - STATE(700), 2, + STATE(18), 2, sym_double_quoted_string, sym_single_quoted_string, - ACTIONS(1041), 4, + STATE(434), 2, + sym_comment, + sym_include, + ACTIONS(343), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(696), 4, + STATE(24), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(689), 18, + STATE(20), 18, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -60354,66 +61063,66 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(921), 1, + ACTIONS(959), 1, sym_identifier, - ACTIONS(923), 1, + ACTIONS(961), 1, anon_sym_LBRACE, - ACTIONS(925), 1, + ACTIONS(963), 1, sym_null_expression, - ACTIONS(929), 1, + ACTIONS(967), 1, sym__integer_literal, - ACTIONS(931), 1, + ACTIONS(969), 1, anon_sym_DQUOTE, - ACTIONS(933), 1, + ACTIONS(971), 1, anon_sym_SQUOTE, - ACTIONS(935), 1, + ACTIONS(973), 1, anon_sym_LPAREN, - ACTIONS(937), 1, + ACTIONS(975), 1, aux_sym_unary_expression_token1, - ACTIONS(939), 1, + ACTIONS(977), 1, aux_sym_unary_expression_token2, - ACTIONS(941), 1, + ACTIONS(979), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(943), 1, + ACTIONS(981), 1, aux_sym_current_changed_expression_token1, - ACTIONS(945), 1, + ACTIONS(983), 1, aux_sym_locked_expression_token1, - ACTIONS(947), 1, + ACTIONS(985), 1, aux_sym_input_expression_token1, - ACTIONS(949), 1, + ACTIONS(987), 1, aux_sym_scope_tuning_token1, - ACTIONS(951), 1, + ACTIONS(989), 1, aux_sym_if_statement_token1, - ACTIONS(953), 1, + ACTIONS(991), 1, aux_sym_can_find_expression_token1, - ACTIONS(955), 1, + ACTIONS(993), 1, aux_sym_accumulate_expression_token1, - STATE(703), 1, + STATE(693), 1, sym__expression, - STATE(898), 1, + STATE(1033), 1, sym_object_access, - STATE(1386), 1, + STATE(1335), 1, sym__decimal_literal, - ACTIONS(957), 2, + ACTIONS(995), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(430), 2, + STATE(435), 2, sym_comment, sym_include, - STATE(1158), 2, + STATE(1474), 2, sym_double_quoted_string, sym_single_quoted_string, - ACTIONS(927), 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(1384), 4, + STATE(1322), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(1396), 18, + STATE(1384), 18, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -60437,66 +61146,66 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(353), 1, + ACTIONS(337), 1, sym_identifier, - ACTIONS(355), 1, + ACTIONS(339), 1, anon_sym_LBRACE, - ACTIONS(357), 1, + ACTIONS(341), 1, sym_null_expression, - ACTIONS(361), 1, + ACTIONS(345), 1, sym__integer_literal, - ACTIONS(363), 1, + ACTIONS(347), 1, anon_sym_DQUOTE, - ACTIONS(365), 1, + ACTIONS(349), 1, anon_sym_SQUOTE, - ACTIONS(367), 1, + ACTIONS(351), 1, anon_sym_LPAREN, - ACTIONS(371), 1, + ACTIONS(355), 1, aux_sym_unary_expression_token1, ACTIONS(373), 1, + aux_sym_can_find_expression_token1, + ACTIONS(423), 1, aux_sym_unary_expression_token2, - ACTIONS(375), 1, + ACTIONS(425), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(377), 1, + ACTIONS(427), 1, aux_sym_current_changed_expression_token1, - ACTIONS(379), 1, + ACTIONS(429), 1, aux_sym_locked_expression_token1, - ACTIONS(383), 1, + ACTIONS(431), 1, + aux_sym_input_expression_token1, + ACTIONS(433), 1, aux_sym_scope_tuning_token1, - ACTIONS(387), 1, + ACTIONS(437), 1, aux_sym_if_statement_token1, - ACTIONS(389), 1, - aux_sym_can_find_expression_token1, - ACTIONS(393), 1, + ACTIONS(447), 1, aux_sym_accumulate_expression_token1, - ACTIONS(429), 1, - aux_sym_input_expression_token1, - STATE(36), 1, + STATE(23), 1, sym__decimal_literal, - STATE(38), 1, + STATE(29), 1, sym_object_access, - STATE(1487), 1, + STATE(669), 1, sym__expression, - ACTIONS(395), 2, + ACTIONS(379), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(21), 2, + STATE(18), 2, sym_double_quoted_string, sym_single_quoted_string, - STATE(431), 2, + STATE(436), 2, sym_comment, sym_include, - ACTIONS(359), 4, + ACTIONS(343), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(37), 4, + STATE(24), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(13), 18, + STATE(20), 18, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -60520,66 +61229,66 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(1035), 1, + ACTIONS(337), 1, sym_identifier, - ACTIONS(1037), 1, + ACTIONS(339), 1, anon_sym_LBRACE, - ACTIONS(1039), 1, + ACTIONS(341), 1, sym_null_expression, - ACTIONS(1043), 1, + ACTIONS(345), 1, sym__integer_literal, - ACTIONS(1045), 1, + ACTIONS(347), 1, anon_sym_DQUOTE, - ACTIONS(1047), 1, + ACTIONS(349), 1, anon_sym_SQUOTE, - ACTIONS(1049), 1, + ACTIONS(351), 1, anon_sym_LPAREN, - ACTIONS(1051), 1, + ACTIONS(355), 1, aux_sym_unary_expression_token1, - ACTIONS(1053), 1, + ACTIONS(357), 1, aux_sym_unary_expression_token2, - ACTIONS(1055), 1, + ACTIONS(359), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(1057), 1, + ACTIONS(361), 1, aux_sym_current_changed_expression_token1, - ACTIONS(1059), 1, + ACTIONS(363), 1, aux_sym_locked_expression_token1, - ACTIONS(1061), 1, - aux_sym_input_expression_token1, - ACTIONS(1063), 1, + ACTIONS(367), 1, aux_sym_scope_tuning_token1, - ACTIONS(1065), 1, + ACTIONS(371), 1, aux_sym_if_statement_token1, - ACTIONS(1067), 1, + ACTIONS(373), 1, aux_sym_can_find_expression_token1, - ACTIONS(1069), 1, + ACTIONS(377), 1, aux_sym_accumulate_expression_token1, - STATE(620), 1, - sym__expression, - STATE(642), 1, - sym_object_access, - STATE(699), 1, + ACTIONS(431), 1, + aux_sym_input_expression_token1, + STATE(23), 1, sym__decimal_literal, - ACTIONS(1071), 2, + STATE(29), 1, + sym_object_access, + STATE(629), 1, + sym__expression, + ACTIONS(379), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(432), 2, - sym_comment, - sym_include, - STATE(700), 2, + STATE(18), 2, sym_double_quoted_string, sym_single_quoted_string, - ACTIONS(1041), 4, + STATE(437), 2, + sym_comment, + sym_include, + ACTIONS(343), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(696), 4, + STATE(24), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(689), 18, + STATE(20), 18, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -60603,66 +61312,66 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(353), 1, + ACTIONS(959), 1, sym_identifier, - ACTIONS(355), 1, + ACTIONS(961), 1, anon_sym_LBRACE, - ACTIONS(357), 1, + ACTIONS(963), 1, sym_null_expression, - ACTIONS(361), 1, + ACTIONS(967), 1, sym__integer_literal, - ACTIONS(363), 1, + ACTIONS(969), 1, anon_sym_DQUOTE, - ACTIONS(365), 1, + ACTIONS(971), 1, anon_sym_SQUOTE, - ACTIONS(367), 1, + ACTIONS(973), 1, anon_sym_LPAREN, - ACTIONS(371), 1, + ACTIONS(975), 1, aux_sym_unary_expression_token1, - ACTIONS(373), 1, + ACTIONS(977), 1, aux_sym_unary_expression_token2, - ACTIONS(375), 1, + ACTIONS(979), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(377), 1, + ACTIONS(981), 1, aux_sym_current_changed_expression_token1, - ACTIONS(379), 1, + ACTIONS(983), 1, aux_sym_locked_expression_token1, - ACTIONS(383), 1, + ACTIONS(985), 1, + aux_sym_input_expression_token1, + ACTIONS(987), 1, aux_sym_scope_tuning_token1, - ACTIONS(387), 1, + ACTIONS(989), 1, aux_sym_if_statement_token1, - ACTIONS(389), 1, + ACTIONS(991), 1, aux_sym_can_find_expression_token1, - ACTIONS(393), 1, + ACTIONS(993), 1, aux_sym_accumulate_expression_token1, - ACTIONS(429), 1, - aux_sym_input_expression_token1, - STATE(36), 1, - sym__decimal_literal, - STATE(38), 1, - sym_object_access, - STATE(804), 1, + STATE(692), 1, sym__expression, - ACTIONS(395), 2, + STATE(1033), 1, + sym_object_access, + STATE(1335), 1, + sym__decimal_literal, + ACTIONS(995), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(21), 2, - sym_double_quoted_string, - sym_single_quoted_string, - STATE(433), 2, + STATE(438), 2, sym_comment, sym_include, - ACTIONS(359), 4, + STATE(1474), 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(37), 4, + STATE(1322), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(13), 18, + STATE(1384), 18, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -60686,66 +61395,66 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(353), 1, + ACTIONS(337), 1, sym_identifier, - ACTIONS(355), 1, + ACTIONS(339), 1, anon_sym_LBRACE, - ACTIONS(357), 1, + ACTIONS(341), 1, sym_null_expression, - ACTIONS(361), 1, + ACTIONS(345), 1, sym__integer_literal, - ACTIONS(363), 1, + ACTIONS(347), 1, anon_sym_DQUOTE, - ACTIONS(365), 1, + ACTIONS(349), 1, anon_sym_SQUOTE, - ACTIONS(367), 1, + ACTIONS(351), 1, anon_sym_LPAREN, - ACTIONS(371), 1, + ACTIONS(355), 1, aux_sym_unary_expression_token1, - ACTIONS(373), 1, + ACTIONS(357), 1, aux_sym_unary_expression_token2, - ACTIONS(375), 1, + ACTIONS(359), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(377), 1, + ACTIONS(361), 1, aux_sym_current_changed_expression_token1, - ACTIONS(379), 1, + ACTIONS(363), 1, aux_sym_locked_expression_token1, - ACTIONS(383), 1, + ACTIONS(367), 1, aux_sym_scope_tuning_token1, - ACTIONS(387), 1, + ACTIONS(371), 1, aux_sym_if_statement_token1, - ACTIONS(389), 1, + ACTIONS(373), 1, aux_sym_can_find_expression_token1, - ACTIONS(393), 1, + ACTIONS(377), 1, aux_sym_accumulate_expression_token1, - ACTIONS(429), 1, + ACTIONS(431), 1, aux_sym_input_expression_token1, - STATE(36), 1, + STATE(23), 1, sym__decimal_literal, - STATE(38), 1, + STATE(29), 1, sym_object_access, - STATE(633), 1, + STATE(1209), 1, sym__expression, - ACTIONS(395), 2, + ACTIONS(379), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(21), 2, + STATE(18), 2, sym_double_quoted_string, sym_single_quoted_string, - STATE(434), 2, + STATE(439), 2, sym_comment, sym_include, - ACTIONS(359), 4, + ACTIONS(343), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(37), 4, + STATE(24), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(13), 18, + STATE(20), 18, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -60769,66 +61478,66 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(353), 1, + ACTIONS(959), 1, sym_identifier, - ACTIONS(355), 1, + ACTIONS(961), 1, anon_sym_LBRACE, - ACTIONS(357), 1, + ACTIONS(963), 1, sym_null_expression, - ACTIONS(361), 1, + ACTIONS(967), 1, sym__integer_literal, - ACTIONS(363), 1, + ACTIONS(969), 1, anon_sym_DQUOTE, - ACTIONS(365), 1, + ACTIONS(971), 1, anon_sym_SQUOTE, - ACTIONS(367), 1, + ACTIONS(973), 1, anon_sym_LPAREN, - ACTIONS(371), 1, + ACTIONS(975), 1, aux_sym_unary_expression_token1, - ACTIONS(373), 1, + ACTIONS(977), 1, aux_sym_unary_expression_token2, - ACTIONS(375), 1, + ACTIONS(979), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(377), 1, + ACTIONS(981), 1, aux_sym_current_changed_expression_token1, - ACTIONS(379), 1, + ACTIONS(983), 1, aux_sym_locked_expression_token1, - ACTIONS(383), 1, + ACTIONS(985), 1, + aux_sym_input_expression_token1, + ACTIONS(987), 1, aux_sym_scope_tuning_token1, - ACTIONS(387), 1, + ACTIONS(989), 1, aux_sym_if_statement_token1, - ACTIONS(389), 1, + ACTIONS(991), 1, aux_sym_can_find_expression_token1, - ACTIONS(393), 1, + ACTIONS(993), 1, aux_sym_accumulate_expression_token1, - ACTIONS(429), 1, - aux_sym_input_expression_token1, - STATE(36), 1, - sym__decimal_literal, - STATE(38), 1, - sym_object_access, - STATE(542), 1, + STATE(792), 1, sym__expression, - ACTIONS(395), 2, + STATE(1033), 1, + sym_object_access, + STATE(1335), 1, + sym__decimal_literal, + ACTIONS(995), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(21), 2, - sym_double_quoted_string, - sym_single_quoted_string, - STATE(435), 2, + STATE(440), 2, sym_comment, sym_include, - ACTIONS(359), 4, + STATE(1474), 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(37), 4, + STATE(1322), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(13), 18, + STATE(1384), 18, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -60852,66 +61561,66 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(353), 1, + ACTIONS(337), 1, sym_identifier, - ACTIONS(355), 1, + ACTIONS(339), 1, anon_sym_LBRACE, - ACTIONS(357), 1, + ACTIONS(341), 1, sym_null_expression, - ACTIONS(361), 1, + ACTIONS(345), 1, sym__integer_literal, - ACTIONS(363), 1, + ACTIONS(347), 1, anon_sym_DQUOTE, - ACTIONS(365), 1, + ACTIONS(349), 1, anon_sym_SQUOTE, - ACTIONS(367), 1, + ACTIONS(351), 1, anon_sym_LPAREN, - ACTIONS(371), 1, + ACTIONS(355), 1, aux_sym_unary_expression_token1, - ACTIONS(373), 1, + ACTIONS(357), 1, aux_sym_unary_expression_token2, - ACTIONS(375), 1, + ACTIONS(359), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(377), 1, + ACTIONS(361), 1, aux_sym_current_changed_expression_token1, - ACTIONS(379), 1, + ACTIONS(363), 1, aux_sym_locked_expression_token1, - ACTIONS(383), 1, + ACTIONS(367), 1, aux_sym_scope_tuning_token1, - ACTIONS(387), 1, + ACTIONS(371), 1, aux_sym_if_statement_token1, - ACTIONS(389), 1, + ACTIONS(373), 1, aux_sym_can_find_expression_token1, - ACTIONS(393), 1, + ACTIONS(377), 1, aux_sym_accumulate_expression_token1, - ACTIONS(429), 1, + ACTIONS(431), 1, aux_sym_input_expression_token1, - STATE(36), 1, + STATE(23), 1, sym__decimal_literal, - STATE(38), 1, + STATE(29), 1, sym_object_access, - STATE(1520), 1, + STATE(1448), 1, sym__expression, - ACTIONS(395), 2, + ACTIONS(379), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(21), 2, + STATE(18), 2, sym_double_quoted_string, sym_single_quoted_string, - STATE(436), 2, + STATE(441), 2, sym_comment, sym_include, - ACTIONS(359), 4, + ACTIONS(343), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(37), 4, + STATE(24), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(13), 18, + STATE(20), 18, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -60935,66 +61644,66 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(353), 1, + ACTIONS(337), 1, sym_identifier, - ACTIONS(355), 1, + ACTIONS(339), 1, anon_sym_LBRACE, - ACTIONS(357), 1, + ACTIONS(341), 1, sym_null_expression, - ACTIONS(361), 1, + ACTIONS(345), 1, sym__integer_literal, - ACTIONS(363), 1, + ACTIONS(347), 1, anon_sym_DQUOTE, - ACTIONS(365), 1, + ACTIONS(349), 1, anon_sym_SQUOTE, - ACTIONS(367), 1, + ACTIONS(351), 1, anon_sym_LPAREN, - ACTIONS(371), 1, + ACTIONS(355), 1, aux_sym_unary_expression_token1, - ACTIONS(373), 1, + ACTIONS(357), 1, aux_sym_unary_expression_token2, - ACTIONS(375), 1, + ACTIONS(359), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(377), 1, + ACTIONS(361), 1, aux_sym_current_changed_expression_token1, - ACTIONS(379), 1, + ACTIONS(363), 1, aux_sym_locked_expression_token1, - ACTIONS(383), 1, + ACTIONS(367), 1, aux_sym_scope_tuning_token1, - ACTIONS(387), 1, + ACTIONS(371), 1, aux_sym_if_statement_token1, - ACTIONS(389), 1, + ACTIONS(373), 1, aux_sym_can_find_expression_token1, - ACTIONS(393), 1, + ACTIONS(377), 1, aux_sym_accumulate_expression_token1, - ACTIONS(429), 1, + ACTIONS(431), 1, aux_sym_input_expression_token1, - STATE(36), 1, + STATE(23), 1, sym__decimal_literal, - STATE(38), 1, + STATE(29), 1, sym_object_access, - STATE(212), 1, + STATE(636), 1, sym__expression, - ACTIONS(395), 2, + ACTIONS(379), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(21), 2, + STATE(18), 2, sym_double_quoted_string, sym_single_quoted_string, - STATE(437), 2, + STATE(442), 2, sym_comment, sym_include, - ACTIONS(359), 4, + ACTIONS(343), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(37), 4, + STATE(24), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(13), 18, + STATE(20), 18, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -61018,66 +61727,66 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(353), 1, + ACTIONS(337), 1, sym_identifier, - ACTIONS(355), 1, + ACTIONS(339), 1, anon_sym_LBRACE, - ACTIONS(357), 1, + ACTIONS(341), 1, sym_null_expression, - ACTIONS(361), 1, + ACTIONS(345), 1, sym__integer_literal, - ACTIONS(363), 1, + ACTIONS(347), 1, anon_sym_DQUOTE, - ACTIONS(365), 1, + ACTIONS(349), 1, anon_sym_SQUOTE, - ACTIONS(367), 1, + ACTIONS(351), 1, anon_sym_LPAREN, - ACTIONS(371), 1, + ACTIONS(355), 1, aux_sym_unary_expression_token1, - ACTIONS(373), 1, + ACTIONS(357), 1, aux_sym_unary_expression_token2, - ACTIONS(375), 1, + ACTIONS(359), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(377), 1, + ACTIONS(361), 1, aux_sym_current_changed_expression_token1, - ACTIONS(379), 1, + ACTIONS(363), 1, aux_sym_locked_expression_token1, - ACTIONS(383), 1, + ACTIONS(367), 1, aux_sym_scope_tuning_token1, - ACTIONS(387), 1, + ACTIONS(371), 1, aux_sym_if_statement_token1, - ACTIONS(389), 1, + ACTIONS(373), 1, aux_sym_can_find_expression_token1, - ACTIONS(393), 1, + ACTIONS(377), 1, aux_sym_accumulate_expression_token1, - ACTIONS(429), 1, + ACTIONS(431), 1, aux_sym_input_expression_token1, - STATE(36), 1, + STATE(23), 1, sym__decimal_literal, - STATE(38), 1, + STATE(29), 1, sym_object_access, - STATE(205), 1, + STATE(547), 1, sym__expression, - ACTIONS(395), 2, + ACTIONS(379), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(21), 2, + STATE(18), 2, sym_double_quoted_string, sym_single_quoted_string, - STATE(438), 2, + STATE(443), 2, sym_comment, sym_include, - ACTIONS(359), 4, + ACTIONS(343), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(37), 4, + STATE(24), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(13), 18, + STATE(20), 18, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -61101,66 +61810,66 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(921), 1, + ACTIONS(337), 1, sym_identifier, - ACTIONS(923), 1, + ACTIONS(339), 1, anon_sym_LBRACE, - ACTIONS(925), 1, + ACTIONS(341), 1, sym_null_expression, - ACTIONS(929), 1, + ACTIONS(345), 1, sym__integer_literal, - ACTIONS(931), 1, + ACTIONS(347), 1, anon_sym_DQUOTE, - ACTIONS(933), 1, + ACTIONS(349), 1, anon_sym_SQUOTE, - ACTIONS(935), 1, + ACTIONS(351), 1, anon_sym_LPAREN, - ACTIONS(937), 1, + ACTIONS(355), 1, aux_sym_unary_expression_token1, - ACTIONS(939), 1, + ACTIONS(373), 1, + aux_sym_can_find_expression_token1, + ACTIONS(423), 1, aux_sym_unary_expression_token2, - ACTIONS(941), 1, + ACTIONS(425), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(943), 1, + ACTIONS(427), 1, aux_sym_current_changed_expression_token1, - ACTIONS(945), 1, + ACTIONS(429), 1, aux_sym_locked_expression_token1, - ACTIONS(947), 1, + ACTIONS(431), 1, aux_sym_input_expression_token1, - ACTIONS(949), 1, + ACTIONS(433), 1, aux_sym_scope_tuning_token1, - ACTIONS(951), 1, + ACTIONS(437), 1, aux_sym_if_statement_token1, - ACTIONS(953), 1, - aux_sym_can_find_expression_token1, - ACTIONS(955), 1, + ACTIONS(447), 1, aux_sym_accumulate_expression_token1, - STATE(717), 1, - sym__expression, - STATE(898), 1, - sym_object_access, - STATE(1386), 1, + STATE(23), 1, sym__decimal_literal, - ACTIONS(957), 2, + STATE(29), 1, + sym_object_access, + STATE(666), 1, + sym__expression, + ACTIONS(379), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(439), 2, - sym_comment, - sym_include, - STATE(1158), 2, + STATE(18), 2, sym_double_quoted_string, sym_single_quoted_string, - ACTIONS(927), 4, + STATE(444), 2, + sym_comment, + sym_include, + ACTIONS(343), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(1384), 4, + STATE(24), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(1396), 18, + STATE(20), 18, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -61184,66 +61893,66 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(1073), 1, + ACTIONS(959), 1, sym_identifier, - ACTIONS(1075), 1, + ACTIONS(961), 1, anon_sym_LBRACE, - ACTIONS(1077), 1, + ACTIONS(963), 1, sym_null_expression, - ACTIONS(1081), 1, + ACTIONS(967), 1, sym__integer_literal, - ACTIONS(1083), 1, + ACTIONS(969), 1, anon_sym_DQUOTE, - ACTIONS(1085), 1, + ACTIONS(971), 1, anon_sym_SQUOTE, - ACTIONS(1087), 1, + ACTIONS(973), 1, anon_sym_LPAREN, - ACTIONS(1089), 1, + ACTIONS(975), 1, aux_sym_unary_expression_token1, - ACTIONS(1091), 1, + ACTIONS(977), 1, aux_sym_unary_expression_token2, - ACTIONS(1093), 1, + ACTIONS(979), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(1095), 1, + ACTIONS(981), 1, aux_sym_current_changed_expression_token1, - ACTIONS(1097), 1, + ACTIONS(983), 1, aux_sym_locked_expression_token1, - ACTIONS(1099), 1, + ACTIONS(985), 1, aux_sym_input_expression_token1, - ACTIONS(1101), 1, + ACTIONS(987), 1, aux_sym_scope_tuning_token1, - ACTIONS(1103), 1, + ACTIONS(989), 1, aux_sym_if_statement_token1, - ACTIONS(1105), 1, + ACTIONS(991), 1, aux_sym_can_find_expression_token1, - ACTIONS(1107), 1, + ACTIONS(993), 1, aux_sym_accumulate_expression_token1, - STATE(664), 1, + STATE(685), 1, sym__expression, - STATE(731), 1, + STATE(1033), 1, sym_object_access, - STATE(772), 1, + STATE(1335), 1, sym__decimal_literal, - ACTIONS(1109), 2, + ACTIONS(995), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(440), 2, + STATE(445), 2, sym_comment, sym_include, - STATE(771), 2, + STATE(1474), 2, sym_double_quoted_string, sym_single_quoted_string, - ACTIONS(1079), 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(744), 4, + STATE(1322), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(742), 18, + STATE(1384), 18, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -61267,66 +61976,66 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(959), 1, + ACTIONS(337), 1, sym_identifier, - ACTIONS(961), 1, + ACTIONS(339), 1, anon_sym_LBRACE, - ACTIONS(963), 1, + ACTIONS(341), 1, sym_null_expression, - ACTIONS(967), 1, + ACTIONS(345), 1, sym__integer_literal, - ACTIONS(969), 1, + ACTIONS(347), 1, anon_sym_DQUOTE, - ACTIONS(971), 1, + ACTIONS(349), 1, anon_sym_SQUOTE, - ACTIONS(973), 1, + ACTIONS(351), 1, anon_sym_LPAREN, - ACTIONS(975), 1, + ACTIONS(355), 1, aux_sym_unary_expression_token1, - ACTIONS(977), 1, + ACTIONS(357), 1, aux_sym_unary_expression_token2, - ACTIONS(979), 1, + ACTIONS(359), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(981), 1, + ACTIONS(361), 1, aux_sym_current_changed_expression_token1, - ACTIONS(983), 1, + ACTIONS(363), 1, aux_sym_locked_expression_token1, - ACTIONS(985), 1, - aux_sym_input_expression_token1, - ACTIONS(987), 1, + ACTIONS(367), 1, aux_sym_scope_tuning_token1, - ACTIONS(989), 1, + ACTIONS(371), 1, aux_sym_if_statement_token1, - ACTIONS(991), 1, + ACTIONS(373), 1, aux_sym_can_find_expression_token1, - ACTIONS(993), 1, + ACTIONS(377), 1, aux_sym_accumulate_expression_token1, - STATE(837), 1, - sym__expression, - STATE(1553), 1, - sym_object_access, - STATE(1596), 1, + ACTIONS(431), 1, + aux_sym_input_expression_token1, + STATE(23), 1, sym__decimal_literal, - ACTIONS(995), 2, + STATE(29), 1, + sym_object_access, + STATE(866), 1, + sym__expression, + ACTIONS(379), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(441), 2, - sym_comment, - sym_include, - STATE(1594), 2, + STATE(18), 2, sym_double_quoted_string, sym_single_quoted_string, - ACTIONS(965), 4, + STATE(446), 2, + sym_comment, + sym_include, + ACTIONS(343), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(1592), 4, + STATE(24), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(1602), 18, + STATE(20), 18, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -61350,66 +62059,66 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(921), 1, + ACTIONS(337), 1, sym_identifier, - ACTIONS(923), 1, + ACTIONS(339), 1, anon_sym_LBRACE, - ACTIONS(925), 1, + ACTIONS(341), 1, sym_null_expression, - ACTIONS(929), 1, + ACTIONS(345), 1, sym__integer_literal, - ACTIONS(931), 1, + ACTIONS(347), 1, anon_sym_DQUOTE, - ACTIONS(933), 1, + ACTIONS(349), 1, anon_sym_SQUOTE, - ACTIONS(935), 1, + ACTIONS(351), 1, anon_sym_LPAREN, - ACTIONS(937), 1, + ACTIONS(355), 1, aux_sym_unary_expression_token1, - ACTIONS(939), 1, + ACTIONS(357), 1, aux_sym_unary_expression_token2, - ACTIONS(941), 1, + ACTIONS(359), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(943), 1, + ACTIONS(361), 1, aux_sym_current_changed_expression_token1, - ACTIONS(945), 1, + ACTIONS(363), 1, aux_sym_locked_expression_token1, - ACTIONS(947), 1, - aux_sym_input_expression_token1, - ACTIONS(949), 1, + ACTIONS(367), 1, aux_sym_scope_tuning_token1, - ACTIONS(951), 1, + ACTIONS(371), 1, aux_sym_if_statement_token1, - ACTIONS(953), 1, + ACTIONS(373), 1, aux_sym_can_find_expression_token1, - ACTIONS(955), 1, + ACTIONS(377), 1, aux_sym_accumulate_expression_token1, - STATE(718), 1, - sym__expression, - STATE(898), 1, - sym_object_access, - STATE(1386), 1, + ACTIONS(431), 1, + aux_sym_input_expression_token1, + STATE(23), 1, sym__decimal_literal, - ACTIONS(957), 2, + STATE(29), 1, + sym_object_access, + STATE(55), 1, + sym__expression, + ACTIONS(379), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(442), 2, - sym_comment, - sym_include, - STATE(1158), 2, + STATE(18), 2, sym_double_quoted_string, sym_single_quoted_string, - ACTIONS(927), 4, + STATE(447), 2, + sym_comment, + sym_include, + ACTIONS(343), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(1384), 4, + STATE(24), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(1396), 18, + STATE(20), 18, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -61433,66 +62142,66 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(353), 1, + ACTIONS(337), 1, sym_identifier, - ACTIONS(355), 1, + ACTIONS(339), 1, anon_sym_LBRACE, - ACTIONS(357), 1, + ACTIONS(341), 1, sym_null_expression, - ACTIONS(361), 1, + ACTIONS(345), 1, sym__integer_literal, - ACTIONS(363), 1, + ACTIONS(347), 1, anon_sym_DQUOTE, - ACTIONS(365), 1, + ACTIONS(349), 1, anon_sym_SQUOTE, - ACTIONS(367), 1, + ACTIONS(351), 1, anon_sym_LPAREN, - ACTIONS(371), 1, + ACTIONS(355), 1, aux_sym_unary_expression_token1, - ACTIONS(373), 1, + ACTIONS(357), 1, aux_sym_unary_expression_token2, - ACTIONS(375), 1, + ACTIONS(359), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(377), 1, + ACTIONS(361), 1, aux_sym_current_changed_expression_token1, - ACTIONS(379), 1, + ACTIONS(363), 1, aux_sym_locked_expression_token1, - ACTIONS(383), 1, + ACTIONS(367), 1, aux_sym_scope_tuning_token1, - ACTIONS(387), 1, + ACTIONS(371), 1, aux_sym_if_statement_token1, - ACTIONS(389), 1, + ACTIONS(373), 1, aux_sym_can_find_expression_token1, - ACTIONS(393), 1, + ACTIONS(377), 1, aux_sym_accumulate_expression_token1, - ACTIONS(429), 1, + ACTIONS(431), 1, aux_sym_input_expression_token1, - STATE(36), 1, + STATE(23), 1, sym__decimal_literal, - STATE(38), 1, + STATE(29), 1, sym_object_access, - STATE(799), 1, + STATE(727), 1, sym__expression, - ACTIONS(395), 2, + ACTIONS(379), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(21), 2, + STATE(18), 2, sym_double_quoted_string, sym_single_quoted_string, - STATE(443), 2, + STATE(448), 2, sym_comment, sym_include, - ACTIONS(359), 4, + ACTIONS(343), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(37), 4, + STATE(24), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(13), 18, + STATE(20), 18, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -61516,66 +62225,66 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(353), 1, + ACTIONS(635), 1, sym_identifier, - ACTIONS(355), 1, + ACTIONS(637), 1, anon_sym_LBRACE, - ACTIONS(357), 1, + ACTIONS(641), 1, sym_null_expression, - ACTIONS(361), 1, + ACTIONS(645), 1, sym__integer_literal, - ACTIONS(363), 1, + ACTIONS(647), 1, anon_sym_DQUOTE, - ACTIONS(365), 1, + ACTIONS(649), 1, anon_sym_SQUOTE, - ACTIONS(367), 1, - anon_sym_LPAREN, - ACTIONS(371), 1, + ACTIONS(653), 1, aux_sym_unary_expression_token1, - ACTIONS(373), 1, + ACTIONS(655), 1, aux_sym_unary_expression_token2, - ACTIONS(375), 1, + ACTIONS(657), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(377), 1, + ACTIONS(659), 1, aux_sym_current_changed_expression_token1, - ACTIONS(379), 1, + ACTIONS(661), 1, aux_sym_locked_expression_token1, - ACTIONS(383), 1, + ACTIONS(663), 1, + aux_sym_input_expression_token1, + ACTIONS(667), 1, aux_sym_scope_tuning_token1, - ACTIONS(387), 1, + ACTIONS(669), 1, aux_sym_if_statement_token1, - ACTIONS(389), 1, + ACTIONS(673), 1, aux_sym_can_find_expression_token1, - ACTIONS(393), 1, + ACTIONS(675), 1, aux_sym_accumulate_expression_token1, - ACTIONS(429), 1, - aux_sym_input_expression_token1, - STATE(36), 1, + ACTIONS(839), 1, + anon_sym_LPAREN, + STATE(536), 1, + sym__expression, + STATE(565), 1, sym__decimal_literal, - STATE(38), 1, + STATE(587), 1, sym_object_access, - STATE(204), 1, - sym__expression, - ACTIONS(395), 2, + ACTIONS(677), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(21), 2, - sym_double_quoted_string, - sym_single_quoted_string, - STATE(444), 2, + STATE(449), 2, sym_comment, sym_include, - ACTIONS(359), 4, + STATE(580), 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(37), 4, + STATE(581), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(13), 18, + STATE(566), 18, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -61599,66 +62308,66 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(635), 1, + ACTIONS(959), 1, sym_identifier, - ACTIONS(637), 1, + ACTIONS(961), 1, anon_sym_LBRACE, - ACTIONS(641), 1, + ACTIONS(963), 1, sym_null_expression, - ACTIONS(645), 1, + ACTIONS(967), 1, sym__integer_literal, - ACTIONS(647), 1, + ACTIONS(969), 1, anon_sym_DQUOTE, - ACTIONS(649), 1, + ACTIONS(971), 1, anon_sym_SQUOTE, - ACTIONS(653), 1, + ACTIONS(973), 1, + anon_sym_LPAREN, + ACTIONS(975), 1, aux_sym_unary_expression_token1, - ACTIONS(655), 1, + ACTIONS(977), 1, aux_sym_unary_expression_token2, - ACTIONS(657), 1, + ACTIONS(979), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(659), 1, + ACTIONS(981), 1, aux_sym_current_changed_expression_token1, - ACTIONS(661), 1, + ACTIONS(983), 1, aux_sym_locked_expression_token1, - ACTIONS(663), 1, + ACTIONS(985), 1, aux_sym_input_expression_token1, - ACTIONS(667), 1, + ACTIONS(987), 1, aux_sym_scope_tuning_token1, - ACTIONS(669), 1, + ACTIONS(989), 1, aux_sym_if_statement_token1, - ACTIONS(673), 1, + ACTIONS(991), 1, aux_sym_can_find_expression_token1, - ACTIONS(675), 1, + ACTIONS(993), 1, aux_sym_accumulate_expression_token1, - ACTIONS(901), 1, - anon_sym_LPAREN, - STATE(524), 1, + STATE(696), 1, sym__expression, - STATE(564), 1, - sym__decimal_literal, - STATE(569), 1, + STATE(1033), 1, sym_object_access, - ACTIONS(677), 2, + STATE(1335), 1, + sym__decimal_literal, + ACTIONS(995), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(445), 2, + STATE(450), 2, sym_comment, sym_include, - STATE(565), 2, + STATE(1474), 2, sym_double_quoted_string, sym_single_quoted_string, - ACTIONS(643), 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(567), 4, + STATE(1322), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(561), 18, + STATE(1384), 18, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -61682,66 +62391,66 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(353), 1, + ACTIONS(337), 1, sym_identifier, - ACTIONS(355), 1, + ACTIONS(339), 1, anon_sym_LBRACE, - ACTIONS(357), 1, + ACTIONS(341), 1, sym_null_expression, - ACTIONS(361), 1, + ACTIONS(345), 1, sym__integer_literal, - ACTIONS(363), 1, + ACTIONS(347), 1, anon_sym_DQUOTE, - ACTIONS(365), 1, + ACTIONS(349), 1, anon_sym_SQUOTE, - ACTIONS(367), 1, + ACTIONS(351), 1, anon_sym_LPAREN, - ACTIONS(371), 1, + ACTIONS(355), 1, aux_sym_unary_expression_token1, - ACTIONS(373), 1, + ACTIONS(357), 1, aux_sym_unary_expression_token2, - ACTIONS(375), 1, + ACTIONS(359), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(377), 1, + ACTIONS(361), 1, aux_sym_current_changed_expression_token1, - ACTIONS(379), 1, + ACTIONS(363), 1, aux_sym_locked_expression_token1, - ACTIONS(383), 1, + ACTIONS(367), 1, aux_sym_scope_tuning_token1, - ACTIONS(387), 1, + ACTIONS(371), 1, aux_sym_if_statement_token1, - ACTIONS(389), 1, + ACTIONS(373), 1, aux_sym_can_find_expression_token1, - ACTIONS(393), 1, + ACTIONS(377), 1, aux_sym_accumulate_expression_token1, - ACTIONS(429), 1, + ACTIONS(431), 1, aux_sym_input_expression_token1, - STATE(36), 1, + STATE(23), 1, sym__decimal_literal, - STATE(38), 1, + STATE(29), 1, sym_object_access, - STATE(1440), 1, + STATE(810), 1, sym__expression, - ACTIONS(395), 2, + ACTIONS(379), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(21), 2, + STATE(18), 2, sym_double_quoted_string, sym_single_quoted_string, - STATE(446), 2, + STATE(451), 2, sym_comment, sym_include, - ACTIONS(359), 4, + ACTIONS(343), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(37), 4, + STATE(24), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(13), 18, + STATE(20), 18, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -61765,66 +62474,66 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(921), 1, + ACTIONS(337), 1, sym_identifier, - ACTIONS(923), 1, + ACTIONS(339), 1, anon_sym_LBRACE, - ACTIONS(925), 1, + ACTIONS(341), 1, sym_null_expression, - ACTIONS(929), 1, + ACTIONS(345), 1, sym__integer_literal, - ACTIONS(931), 1, + ACTIONS(347), 1, anon_sym_DQUOTE, - ACTIONS(933), 1, + ACTIONS(349), 1, anon_sym_SQUOTE, - ACTIONS(935), 1, + ACTIONS(351), 1, anon_sym_LPAREN, - ACTIONS(937), 1, + ACTIONS(355), 1, aux_sym_unary_expression_token1, - ACTIONS(939), 1, + ACTIONS(373), 1, + aux_sym_can_find_expression_token1, + ACTIONS(423), 1, aux_sym_unary_expression_token2, - ACTIONS(941), 1, + ACTIONS(425), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(943), 1, + ACTIONS(427), 1, aux_sym_current_changed_expression_token1, - ACTIONS(945), 1, + ACTIONS(429), 1, aux_sym_locked_expression_token1, - ACTIONS(947), 1, + ACTIONS(431), 1, aux_sym_input_expression_token1, - ACTIONS(949), 1, + ACTIONS(433), 1, aux_sym_scope_tuning_token1, - ACTIONS(951), 1, + ACTIONS(437), 1, aux_sym_if_statement_token1, - ACTIONS(953), 1, - aux_sym_can_find_expression_token1, - ACTIONS(955), 1, + ACTIONS(447), 1, aux_sym_accumulate_expression_token1, - STATE(686), 1, - sym__expression, - STATE(898), 1, - sym_object_access, - STATE(1386), 1, + STATE(23), 1, sym__decimal_literal, - ACTIONS(957), 2, + STATE(29), 1, + sym_object_access, + STATE(659), 1, + sym__expression, + ACTIONS(379), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(447), 2, - sym_comment, - sym_include, - STATE(1158), 2, + STATE(18), 2, sym_double_quoted_string, sym_single_quoted_string, - ACTIONS(927), 4, + STATE(452), 2, + sym_comment, + sym_include, + ACTIONS(343), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(1384), 4, + STATE(24), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(1396), 18, + STATE(20), 18, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -61848,66 +62557,66 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(353), 1, + ACTIONS(921), 1, sym_identifier, - ACTIONS(355), 1, + ACTIONS(923), 1, anon_sym_LBRACE, - ACTIONS(357), 1, + ACTIONS(925), 1, sym_null_expression, - ACTIONS(361), 1, + ACTIONS(929), 1, sym__integer_literal, - ACTIONS(363), 1, + ACTIONS(931), 1, anon_sym_DQUOTE, - ACTIONS(365), 1, + ACTIONS(933), 1, anon_sym_SQUOTE, - ACTIONS(367), 1, + ACTIONS(935), 1, anon_sym_LPAREN, - ACTIONS(371), 1, + ACTIONS(937), 1, aux_sym_unary_expression_token1, - ACTIONS(373), 1, + ACTIONS(939), 1, aux_sym_unary_expression_token2, - ACTIONS(375), 1, + ACTIONS(941), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(377), 1, + ACTIONS(943), 1, aux_sym_current_changed_expression_token1, - ACTIONS(379), 1, + ACTIONS(945), 1, aux_sym_locked_expression_token1, - ACTIONS(383), 1, + ACTIONS(947), 1, + aux_sym_input_expression_token1, + ACTIONS(949), 1, aux_sym_scope_tuning_token1, - ACTIONS(387), 1, + ACTIONS(951), 1, aux_sym_if_statement_token1, - ACTIONS(389), 1, + ACTIONS(953), 1, aux_sym_can_find_expression_token1, - ACTIONS(393), 1, + ACTIONS(955), 1, aux_sym_accumulate_expression_token1, - ACTIONS(429), 1, - aux_sym_input_expression_token1, - STATE(36), 1, - sym__decimal_literal, - STATE(38), 1, - sym_object_access, - STATE(725), 1, + STATE(813), 1, sym__expression, - ACTIONS(395), 2, + STATE(1228), 1, + sym_object_access, + STATE(1581), 1, + sym__decimal_literal, + ACTIONS(957), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(21), 2, - sym_double_quoted_string, - sym_single_quoted_string, - STATE(448), 2, + STATE(453), 2, sym_comment, sym_include, - ACTIONS(359), 4, + STATE(1569), 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(37), 4, + STATE(1582), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(13), 18, + STATE(1579), 18, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -61931,66 +62640,66 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(353), 1, + ACTIONS(337), 1, sym_identifier, - ACTIONS(355), 1, + ACTIONS(339), 1, anon_sym_LBRACE, - ACTIONS(357), 1, + ACTIONS(341), 1, sym_null_expression, - ACTIONS(361), 1, + ACTIONS(345), 1, sym__integer_literal, - ACTIONS(363), 1, + ACTIONS(347), 1, anon_sym_DQUOTE, - ACTIONS(365), 1, + ACTIONS(349), 1, anon_sym_SQUOTE, - ACTIONS(367), 1, + ACTIONS(351), 1, anon_sym_LPAREN, - ACTIONS(371), 1, + ACTIONS(355), 1, aux_sym_unary_expression_token1, - ACTIONS(373), 1, + ACTIONS(357), 1, aux_sym_unary_expression_token2, - ACTIONS(375), 1, + ACTIONS(359), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(377), 1, + ACTIONS(361), 1, aux_sym_current_changed_expression_token1, - ACTIONS(379), 1, + ACTIONS(363), 1, aux_sym_locked_expression_token1, - ACTIONS(383), 1, + ACTIONS(367), 1, aux_sym_scope_tuning_token1, - ACTIONS(387), 1, + ACTIONS(371), 1, aux_sym_if_statement_token1, - ACTIONS(389), 1, + ACTIONS(373), 1, aux_sym_can_find_expression_token1, - ACTIONS(393), 1, + ACTIONS(377), 1, aux_sym_accumulate_expression_token1, - ACTIONS(429), 1, + ACTIONS(431), 1, aux_sym_input_expression_token1, - STATE(36), 1, + STATE(23), 1, sym__decimal_literal, - STATE(38), 1, + STATE(29), 1, sym_object_access, - STATE(1457), 1, + STATE(549), 1, sym__expression, - ACTIONS(395), 2, + ACTIONS(379), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(21), 2, + STATE(18), 2, sym_double_quoted_string, sym_single_quoted_string, - STATE(449), 2, + STATE(454), 2, sym_comment, sym_include, - ACTIONS(359), 4, + ACTIONS(343), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(37), 4, + STATE(24), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(13), 18, + STATE(20), 18, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -62014,66 +62723,66 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(353), 1, + ACTIONS(337), 1, sym_identifier, - ACTIONS(355), 1, + ACTIONS(339), 1, anon_sym_LBRACE, - ACTIONS(357), 1, + ACTIONS(341), 1, sym_null_expression, - ACTIONS(361), 1, + ACTIONS(345), 1, sym__integer_literal, - ACTIONS(363), 1, + ACTIONS(347), 1, anon_sym_DQUOTE, - ACTIONS(365), 1, + ACTIONS(349), 1, anon_sym_SQUOTE, - ACTIONS(367), 1, + ACTIONS(351), 1, anon_sym_LPAREN, - ACTIONS(371), 1, + ACTIONS(355), 1, aux_sym_unary_expression_token1, - ACTIONS(373), 1, + ACTIONS(357), 1, aux_sym_unary_expression_token2, - ACTIONS(375), 1, + ACTIONS(359), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(377), 1, + ACTIONS(361), 1, aux_sym_current_changed_expression_token1, - ACTIONS(379), 1, + ACTIONS(363), 1, aux_sym_locked_expression_token1, - ACTIONS(383), 1, + ACTIONS(367), 1, aux_sym_scope_tuning_token1, - ACTIONS(387), 1, + ACTIONS(371), 1, aux_sym_if_statement_token1, - ACTIONS(389), 1, + ACTIONS(373), 1, aux_sym_can_find_expression_token1, - ACTIONS(393), 1, + ACTIONS(377), 1, aux_sym_accumulate_expression_token1, - ACTIONS(429), 1, + ACTIONS(431), 1, aux_sym_input_expression_token1, - STATE(36), 1, + STATE(23), 1, sym__decimal_literal, - STATE(38), 1, + STATE(29), 1, sym_object_access, - STATE(121), 1, + STATE(47), 1, sym__expression, - ACTIONS(395), 2, + ACTIONS(379), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(21), 2, + STATE(18), 2, sym_double_quoted_string, sym_single_quoted_string, - STATE(450), 2, + STATE(455), 2, sym_comment, sym_include, - ACTIONS(359), 4, + ACTIONS(343), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(37), 4, + STATE(24), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(13), 18, + STATE(20), 18, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -62097,66 +62806,66 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(353), 1, + ACTIONS(337), 1, sym_identifier, - ACTIONS(355), 1, + ACTIONS(339), 1, anon_sym_LBRACE, - ACTIONS(357), 1, + ACTIONS(341), 1, sym_null_expression, - ACTIONS(361), 1, + ACTIONS(345), 1, sym__integer_literal, - ACTIONS(363), 1, + ACTIONS(347), 1, anon_sym_DQUOTE, - ACTIONS(365), 1, + ACTIONS(349), 1, anon_sym_SQUOTE, - ACTIONS(367), 1, + ACTIONS(351), 1, anon_sym_LPAREN, - ACTIONS(371), 1, + ACTIONS(355), 1, aux_sym_unary_expression_token1, - ACTIONS(373), 1, + ACTIONS(357), 1, aux_sym_unary_expression_token2, - ACTIONS(375), 1, + ACTIONS(359), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(377), 1, + ACTIONS(361), 1, aux_sym_current_changed_expression_token1, - ACTIONS(379), 1, + ACTIONS(363), 1, aux_sym_locked_expression_token1, - ACTIONS(383), 1, + ACTIONS(367), 1, aux_sym_scope_tuning_token1, - ACTIONS(387), 1, + ACTIONS(371), 1, aux_sym_if_statement_token1, - ACTIONS(389), 1, + ACTIONS(373), 1, aux_sym_can_find_expression_token1, - ACTIONS(393), 1, + ACTIONS(377), 1, aux_sym_accumulate_expression_token1, - ACTIONS(429), 1, + ACTIONS(431), 1, aux_sym_input_expression_token1, - STATE(36), 1, + STATE(23), 1, sym__decimal_literal, - STATE(38), 1, + STATE(29), 1, sym_object_access, - STATE(1541), 1, + STATE(634), 1, sym__expression, - ACTIONS(395), 2, + ACTIONS(379), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(21), 2, + STATE(18), 2, sym_double_quoted_string, sym_single_quoted_string, - STATE(451), 2, + STATE(456), 2, sym_comment, sym_include, - ACTIONS(359), 4, + ACTIONS(343), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(37), 4, + STATE(24), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(13), 18, + STATE(20), 18, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -62180,66 +62889,66 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(355), 1, + ACTIONS(635), 1, + sym_identifier, + ACTIONS(637), 1, anon_sym_LBRACE, - ACTIONS(357), 1, + ACTIONS(641), 1, sym_null_expression, - ACTIONS(361), 1, + ACTIONS(645), 1, sym__integer_literal, - ACTIONS(363), 1, + ACTIONS(647), 1, anon_sym_DQUOTE, - ACTIONS(365), 1, + ACTIONS(649), 1, anon_sym_SQUOTE, - ACTIONS(367), 1, - anon_sym_LPAREN, - ACTIONS(371), 1, + ACTIONS(653), 1, aux_sym_unary_expression_token1, - ACTIONS(373), 1, + ACTIONS(655), 1, aux_sym_unary_expression_token2, - ACTIONS(375), 1, + ACTIONS(657), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(377), 1, + ACTIONS(659), 1, aux_sym_current_changed_expression_token1, - ACTIONS(379), 1, + ACTIONS(661), 1, aux_sym_locked_expression_token1, - ACTIONS(383), 1, + ACTIONS(663), 1, + aux_sym_input_expression_token1, + ACTIONS(667), 1, aux_sym_scope_tuning_token1, - ACTIONS(387), 1, + ACTIONS(669), 1, aux_sym_if_statement_token1, - ACTIONS(389), 1, + ACTIONS(673), 1, aux_sym_can_find_expression_token1, - ACTIONS(393), 1, + ACTIONS(675), 1, aux_sym_accumulate_expression_token1, - ACTIONS(429), 1, - aux_sym_input_expression_token1, - ACTIONS(1115), 1, - sym_identifier, - STATE(36), 1, + ACTIONS(839), 1, + anon_sym_LPAREN, + STATE(533), 1, + sym__expression, + STATE(565), 1, sym__decimal_literal, - STATE(38), 1, + STATE(587), 1, sym_object_access, - STATE(1337), 1, - sym__expression, - ACTIONS(395), 2, + ACTIONS(677), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(21), 2, - sym_double_quoted_string, - sym_single_quoted_string, - STATE(452), 2, + STATE(457), 2, sym_comment, sym_include, - ACTIONS(359), 4, + STATE(580), 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(37), 4, + STATE(581), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(13), 18, + STATE(566), 18, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -62263,66 +62972,66 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(353), 1, + ACTIONS(959), 1, sym_identifier, - ACTIONS(355), 1, + ACTIONS(961), 1, anon_sym_LBRACE, - ACTIONS(357), 1, + ACTIONS(963), 1, sym_null_expression, - ACTIONS(361), 1, + ACTIONS(967), 1, sym__integer_literal, - ACTIONS(363), 1, + ACTIONS(969), 1, anon_sym_DQUOTE, - ACTIONS(365), 1, + ACTIONS(971), 1, anon_sym_SQUOTE, - ACTIONS(367), 1, + ACTIONS(973), 1, anon_sym_LPAREN, - ACTIONS(371), 1, + ACTIONS(975), 1, aux_sym_unary_expression_token1, - ACTIONS(373), 1, + ACTIONS(977), 1, aux_sym_unary_expression_token2, - ACTIONS(375), 1, + ACTIONS(979), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(377), 1, + ACTIONS(981), 1, aux_sym_current_changed_expression_token1, - ACTIONS(379), 1, + ACTIONS(983), 1, aux_sym_locked_expression_token1, - ACTIONS(383), 1, + ACTIONS(985), 1, + aux_sym_input_expression_token1, + ACTIONS(987), 1, aux_sym_scope_tuning_token1, - ACTIONS(387), 1, + ACTIONS(989), 1, aux_sym_if_statement_token1, - ACTIONS(389), 1, + ACTIONS(991), 1, aux_sym_can_find_expression_token1, - ACTIONS(393), 1, + ACTIONS(993), 1, aux_sym_accumulate_expression_token1, - ACTIONS(429), 1, - aux_sym_input_expression_token1, - STATE(36), 1, - sym__decimal_literal, - STATE(38), 1, - sym_object_access, - STATE(550), 1, + STATE(691), 1, sym__expression, - ACTIONS(395), 2, + STATE(1033), 1, + sym_object_access, + STATE(1335), 1, + sym__decimal_literal, + ACTIONS(995), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(21), 2, - sym_double_quoted_string, - sym_single_quoted_string, - STATE(453), 2, + STATE(458), 2, sym_comment, sym_include, - ACTIONS(359), 4, + STATE(1474), 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(37), 4, + STATE(1322), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(13), 18, + STATE(1384), 18, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -62346,66 +63055,66 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(921), 1, + ACTIONS(337), 1, sym_identifier, - ACTIONS(923), 1, + ACTIONS(339), 1, anon_sym_LBRACE, - ACTIONS(925), 1, + ACTIONS(341), 1, sym_null_expression, - ACTIONS(929), 1, + ACTIONS(345), 1, sym__integer_literal, - ACTIONS(931), 1, + ACTIONS(347), 1, anon_sym_DQUOTE, - ACTIONS(933), 1, + ACTIONS(349), 1, anon_sym_SQUOTE, - ACTIONS(935), 1, + ACTIONS(351), 1, anon_sym_LPAREN, - ACTIONS(937), 1, + ACTIONS(355), 1, aux_sym_unary_expression_token1, - ACTIONS(939), 1, + ACTIONS(357), 1, aux_sym_unary_expression_token2, - ACTIONS(941), 1, + ACTIONS(359), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(943), 1, + ACTIONS(361), 1, aux_sym_current_changed_expression_token1, - ACTIONS(945), 1, + ACTIONS(363), 1, aux_sym_locked_expression_token1, - ACTIONS(947), 1, - aux_sym_input_expression_token1, - ACTIONS(949), 1, + ACTIONS(367), 1, aux_sym_scope_tuning_token1, - ACTIONS(951), 1, + ACTIONS(371), 1, aux_sym_if_statement_token1, - ACTIONS(953), 1, + ACTIONS(373), 1, aux_sym_can_find_expression_token1, - ACTIONS(955), 1, + ACTIONS(377), 1, aux_sym_accumulate_expression_token1, - STATE(789), 1, - sym__expression, - STATE(898), 1, - sym_object_access, - STATE(1386), 1, + ACTIONS(431), 1, + aux_sym_input_expression_token1, + STATE(23), 1, sym__decimal_literal, - ACTIONS(957), 2, + STATE(29), 1, + sym_object_access, + STATE(1140), 1, + sym__expression, + ACTIONS(379), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(454), 2, - sym_comment, - sym_include, - STATE(1158), 2, + STATE(18), 2, sym_double_quoted_string, sym_single_quoted_string, - ACTIONS(927), 4, + STATE(459), 2, + sym_comment, + sym_include, + ACTIONS(343), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(1384), 4, + STATE(24), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(1396), 18, + STATE(20), 18, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -62429,66 +63138,66 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(921), 1, + ACTIONS(1081), 1, sym_identifier, - ACTIONS(923), 1, + ACTIONS(1083), 1, anon_sym_LBRACE, - ACTIONS(925), 1, + ACTIONS(1085), 1, sym_null_expression, - ACTIONS(929), 1, + ACTIONS(1089), 1, sym__integer_literal, - ACTIONS(931), 1, + ACTIONS(1091), 1, anon_sym_DQUOTE, - ACTIONS(933), 1, + ACTIONS(1093), 1, anon_sym_SQUOTE, - ACTIONS(935), 1, + ACTIONS(1095), 1, anon_sym_LPAREN, - ACTIONS(937), 1, + ACTIONS(1097), 1, aux_sym_unary_expression_token1, - ACTIONS(939), 1, + ACTIONS(1099), 1, aux_sym_unary_expression_token2, - ACTIONS(941), 1, + ACTIONS(1101), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(943), 1, + ACTIONS(1103), 1, aux_sym_current_changed_expression_token1, - ACTIONS(945), 1, + ACTIONS(1105), 1, aux_sym_locked_expression_token1, - ACTIONS(947), 1, + ACTIONS(1107), 1, aux_sym_input_expression_token1, - ACTIONS(949), 1, + ACTIONS(1109), 1, aux_sym_scope_tuning_token1, - ACTIONS(951), 1, + ACTIONS(1111), 1, aux_sym_if_statement_token1, - ACTIONS(953), 1, + ACTIONS(1113), 1, aux_sym_can_find_expression_token1, - ACTIONS(955), 1, + ACTIONS(1115), 1, aux_sym_accumulate_expression_token1, - STATE(675), 1, + STATE(621), 1, sym__expression, - STATE(898), 1, + STATE(668), 1, sym_object_access, - STATE(1386), 1, + STATE(713), 1, sym__decimal_literal, - ACTIONS(957), 2, + ACTIONS(1117), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(455), 2, + STATE(460), 2, sym_comment, sym_include, - STATE(1158), 2, + STATE(719), 2, sym_double_quoted_string, sym_single_quoted_string, - ACTIONS(927), 4, + ACTIONS(1087), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(1384), 4, + STATE(688), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(1396), 18, + STATE(684), 18, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -62512,66 +63221,66 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(635), 1, + ACTIONS(337), 1, sym_identifier, - ACTIONS(637), 1, + ACTIONS(339), 1, anon_sym_LBRACE, - ACTIONS(641), 1, + ACTIONS(341), 1, sym_null_expression, - ACTIONS(645), 1, + ACTIONS(345), 1, sym__integer_literal, - ACTIONS(647), 1, + ACTIONS(347), 1, anon_sym_DQUOTE, - ACTIONS(649), 1, + ACTIONS(349), 1, anon_sym_SQUOTE, - ACTIONS(653), 1, + ACTIONS(351), 1, + anon_sym_LPAREN, + ACTIONS(355), 1, aux_sym_unary_expression_token1, - ACTIONS(655), 1, + ACTIONS(357), 1, aux_sym_unary_expression_token2, - ACTIONS(657), 1, + ACTIONS(359), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(659), 1, + ACTIONS(361), 1, aux_sym_current_changed_expression_token1, - ACTIONS(661), 1, + ACTIONS(363), 1, aux_sym_locked_expression_token1, - ACTIONS(663), 1, - aux_sym_input_expression_token1, - ACTIONS(667), 1, + ACTIONS(367), 1, aux_sym_scope_tuning_token1, - ACTIONS(669), 1, + ACTIONS(371), 1, aux_sym_if_statement_token1, - ACTIONS(673), 1, + ACTIONS(373), 1, aux_sym_can_find_expression_token1, - ACTIONS(675), 1, + ACTIONS(377), 1, aux_sym_accumulate_expression_token1, - ACTIONS(901), 1, - anon_sym_LPAREN, - STATE(525), 1, - sym__expression, - STATE(564), 1, + ACTIONS(431), 1, + aux_sym_input_expression_token1, + STATE(23), 1, sym__decimal_literal, - STATE(569), 1, + STATE(29), 1, sym_object_access, - ACTIONS(677), 2, + STATE(633), 1, + sym__expression, + ACTIONS(379), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(456), 2, - sym_comment, - sym_include, - STATE(565), 2, + STATE(18), 2, sym_double_quoted_string, sym_single_quoted_string, - ACTIONS(643), 4, + STATE(461), 2, + sym_comment, + sym_include, + ACTIONS(343), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(567), 4, + STATE(24), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(561), 18, + STATE(20), 18, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -62595,66 +63304,66 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(635), 1, + ACTIONS(959), 1, sym_identifier, - ACTIONS(637), 1, + ACTIONS(961), 1, anon_sym_LBRACE, - ACTIONS(641), 1, + ACTIONS(963), 1, sym_null_expression, - ACTIONS(645), 1, + ACTIONS(967), 1, sym__integer_literal, - ACTIONS(647), 1, + ACTIONS(969), 1, anon_sym_DQUOTE, - ACTIONS(649), 1, + ACTIONS(971), 1, anon_sym_SQUOTE, - ACTIONS(653), 1, + ACTIONS(973), 1, + anon_sym_LPAREN, + ACTIONS(975), 1, aux_sym_unary_expression_token1, - ACTIONS(655), 1, + ACTIONS(977), 1, aux_sym_unary_expression_token2, - ACTIONS(657), 1, + ACTIONS(979), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(659), 1, + ACTIONS(981), 1, aux_sym_current_changed_expression_token1, - ACTIONS(661), 1, + ACTIONS(983), 1, aux_sym_locked_expression_token1, - ACTIONS(663), 1, + ACTIONS(985), 1, aux_sym_input_expression_token1, - ACTIONS(667), 1, + ACTIONS(987), 1, aux_sym_scope_tuning_token1, - ACTIONS(669), 1, + ACTIONS(989), 1, aux_sym_if_statement_token1, - ACTIONS(673), 1, + ACTIONS(991), 1, aux_sym_can_find_expression_token1, - ACTIONS(675), 1, + ACTIONS(993), 1, aux_sym_accumulate_expression_token1, - ACTIONS(901), 1, - anon_sym_LPAREN, - STATE(526), 1, + STATE(701), 1, sym__expression, - STATE(564), 1, - sym__decimal_literal, - STATE(569), 1, + STATE(1033), 1, sym_object_access, - ACTIONS(677), 2, + STATE(1335), 1, + sym__decimal_literal, + ACTIONS(995), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(457), 2, + STATE(462), 2, sym_comment, sym_include, - STATE(565), 2, + STATE(1474), 2, sym_double_quoted_string, sym_single_quoted_string, - ACTIONS(643), 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(567), 4, + STATE(1322), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(561), 18, + STATE(1384), 18, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -62678,66 +63387,66 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(353), 1, + ACTIONS(1081), 1, sym_identifier, - ACTIONS(355), 1, + ACTIONS(1083), 1, anon_sym_LBRACE, - ACTIONS(357), 1, + ACTIONS(1085), 1, sym_null_expression, - ACTIONS(361), 1, + ACTIONS(1089), 1, sym__integer_literal, - ACTIONS(363), 1, + ACTIONS(1091), 1, anon_sym_DQUOTE, - ACTIONS(365), 1, + ACTIONS(1093), 1, anon_sym_SQUOTE, - ACTIONS(367), 1, + ACTIONS(1095), 1, anon_sym_LPAREN, - ACTIONS(371), 1, + ACTIONS(1097), 1, aux_sym_unary_expression_token1, - ACTIONS(373), 1, + ACTIONS(1099), 1, aux_sym_unary_expression_token2, - ACTIONS(375), 1, + ACTIONS(1101), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(377), 1, + ACTIONS(1103), 1, aux_sym_current_changed_expression_token1, - ACTIONS(379), 1, + ACTIONS(1105), 1, aux_sym_locked_expression_token1, - ACTIONS(383), 1, + ACTIONS(1107), 1, + aux_sym_input_expression_token1, + ACTIONS(1109), 1, aux_sym_scope_tuning_token1, - ACTIONS(387), 1, + ACTIONS(1111), 1, aux_sym_if_statement_token1, - ACTIONS(389), 1, + ACTIONS(1113), 1, aux_sym_can_find_expression_token1, - ACTIONS(393), 1, + ACTIONS(1115), 1, aux_sym_accumulate_expression_token1, - ACTIONS(429), 1, - aux_sym_input_expression_token1, - STATE(36), 1, - sym__decimal_literal, - STATE(38), 1, - sym_object_access, - STATE(1326), 1, + STATE(615), 1, sym__expression, - ACTIONS(395), 2, + STATE(668), 1, + sym_object_access, + STATE(713), 1, + sym__decimal_literal, + ACTIONS(1117), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(21), 2, - sym_double_quoted_string, - sym_single_quoted_string, - STATE(458), 2, + STATE(463), 2, sym_comment, sym_include, - ACTIONS(359), 4, + STATE(719), 2, + sym_double_quoted_string, + sym_single_quoted_string, + ACTIONS(1087), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(37), 4, + STATE(688), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(13), 18, + STATE(684), 18, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -62761,66 +63470,66 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(353), 1, + ACTIONS(1081), 1, sym_identifier, - ACTIONS(355), 1, + ACTIONS(1083), 1, anon_sym_LBRACE, - ACTIONS(357), 1, + ACTIONS(1085), 1, sym_null_expression, - ACTIONS(361), 1, + ACTIONS(1089), 1, sym__integer_literal, - ACTIONS(363), 1, + ACTIONS(1091), 1, anon_sym_DQUOTE, - ACTIONS(365), 1, + ACTIONS(1093), 1, anon_sym_SQUOTE, - ACTIONS(367), 1, + ACTIONS(1095), 1, anon_sym_LPAREN, - ACTIONS(371), 1, + ACTIONS(1097), 1, aux_sym_unary_expression_token1, - ACTIONS(373), 1, + ACTIONS(1099), 1, aux_sym_unary_expression_token2, - ACTIONS(375), 1, + ACTIONS(1101), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(377), 1, + ACTIONS(1103), 1, aux_sym_current_changed_expression_token1, - ACTIONS(379), 1, + ACTIONS(1105), 1, aux_sym_locked_expression_token1, - ACTIONS(383), 1, + ACTIONS(1107), 1, + aux_sym_input_expression_token1, + ACTIONS(1109), 1, aux_sym_scope_tuning_token1, - ACTIONS(387), 1, + ACTIONS(1111), 1, aux_sym_if_statement_token1, - ACTIONS(389), 1, + ACTIONS(1113), 1, aux_sym_can_find_expression_token1, - ACTIONS(393), 1, + ACTIONS(1115), 1, aux_sym_accumulate_expression_token1, - ACTIONS(429), 1, - aux_sym_input_expression_token1, - STATE(36), 1, - sym__decimal_literal, - STATE(38), 1, - sym_object_access, - STATE(630), 1, + STATE(618), 1, sym__expression, - ACTIONS(395), 2, + STATE(668), 1, + sym_object_access, + STATE(713), 1, + sym__decimal_literal, + ACTIONS(1117), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(21), 2, - sym_double_quoted_string, - sym_single_quoted_string, - STATE(459), 2, + STATE(464), 2, sym_comment, sym_include, - ACTIONS(359), 4, + STATE(719), 2, + sym_double_quoted_string, + sym_single_quoted_string, + ACTIONS(1087), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(37), 4, + STATE(688), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(13), 18, + STATE(684), 18, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -62844,66 +63553,66 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(921), 1, + ACTIONS(1081), 1, sym_identifier, - ACTIONS(923), 1, + ACTIONS(1083), 1, anon_sym_LBRACE, - ACTIONS(925), 1, + ACTIONS(1085), 1, sym_null_expression, - ACTIONS(929), 1, + ACTIONS(1089), 1, sym__integer_literal, - ACTIONS(931), 1, + ACTIONS(1091), 1, anon_sym_DQUOTE, - ACTIONS(933), 1, + ACTIONS(1093), 1, anon_sym_SQUOTE, - ACTIONS(935), 1, + ACTIONS(1095), 1, anon_sym_LPAREN, - ACTIONS(937), 1, + ACTIONS(1097), 1, aux_sym_unary_expression_token1, - ACTIONS(939), 1, + ACTIONS(1099), 1, aux_sym_unary_expression_token2, - ACTIONS(941), 1, + ACTIONS(1101), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(943), 1, + ACTIONS(1103), 1, aux_sym_current_changed_expression_token1, - ACTIONS(945), 1, + ACTIONS(1105), 1, aux_sym_locked_expression_token1, - ACTIONS(947), 1, + ACTIONS(1107), 1, aux_sym_input_expression_token1, - ACTIONS(949), 1, + ACTIONS(1109), 1, aux_sym_scope_tuning_token1, - ACTIONS(951), 1, + ACTIONS(1111), 1, aux_sym_if_statement_token1, - ACTIONS(953), 1, + ACTIONS(1113), 1, aux_sym_can_find_expression_token1, - ACTIONS(955), 1, + ACTIONS(1115), 1, aux_sym_accumulate_expression_token1, - STATE(776), 1, + STATE(619), 1, sym__expression, - STATE(898), 1, + STATE(668), 1, sym_object_access, - STATE(1386), 1, + STATE(713), 1, sym__decimal_literal, - ACTIONS(957), 2, + ACTIONS(1117), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(460), 2, + STATE(465), 2, sym_comment, sym_include, - STATE(1158), 2, + STATE(719), 2, sym_double_quoted_string, sym_single_quoted_string, - ACTIONS(927), 4, + ACTIONS(1087), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(1384), 4, + STATE(688), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(1396), 18, + STATE(684), 18, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -62927,66 +63636,66 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(921), 1, + ACTIONS(337), 1, sym_identifier, - ACTIONS(923), 1, + ACTIONS(339), 1, anon_sym_LBRACE, - ACTIONS(925), 1, + ACTIONS(341), 1, sym_null_expression, - ACTIONS(929), 1, + ACTIONS(345), 1, sym__integer_literal, - ACTIONS(931), 1, + ACTIONS(347), 1, anon_sym_DQUOTE, - ACTIONS(933), 1, + ACTIONS(349), 1, anon_sym_SQUOTE, - ACTIONS(935), 1, + ACTIONS(351), 1, anon_sym_LPAREN, - ACTIONS(937), 1, + ACTIONS(355), 1, aux_sym_unary_expression_token1, - ACTIONS(939), 1, + ACTIONS(357), 1, aux_sym_unary_expression_token2, - ACTIONS(941), 1, + ACTIONS(359), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(943), 1, + ACTIONS(361), 1, aux_sym_current_changed_expression_token1, - ACTIONS(945), 1, + ACTIONS(363), 1, aux_sym_locked_expression_token1, - ACTIONS(947), 1, - aux_sym_input_expression_token1, - ACTIONS(949), 1, + ACTIONS(367), 1, aux_sym_scope_tuning_token1, - ACTIONS(951), 1, + ACTIONS(371), 1, aux_sym_if_statement_token1, - ACTIONS(953), 1, + ACTIONS(373), 1, aux_sym_can_find_expression_token1, - ACTIONS(955), 1, + ACTIONS(377), 1, aux_sym_accumulate_expression_token1, - STATE(792), 1, - sym__expression, - STATE(898), 1, - sym_object_access, - STATE(1386), 1, + ACTIONS(431), 1, + aux_sym_input_expression_token1, + STATE(23), 1, sym__decimal_literal, - ACTIONS(957), 2, + STATE(29), 1, + sym_object_access, + STATE(1359), 1, + sym__expression, + ACTIONS(379), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(461), 2, - sym_comment, - sym_include, - STATE(1158), 2, + STATE(18), 2, sym_double_quoted_string, sym_single_quoted_string, - ACTIONS(927), 4, + STATE(466), 2, + sym_comment, + sym_include, + ACTIONS(343), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(1384), 4, + STATE(24), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(1396), 18, + STATE(20), 18, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -63010,66 +63719,66 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(353), 1, + ACTIONS(337), 1, sym_identifier, - ACTIONS(355), 1, + ACTIONS(339), 1, anon_sym_LBRACE, - ACTIONS(357), 1, + ACTIONS(341), 1, sym_null_expression, - ACTIONS(361), 1, + ACTIONS(345), 1, sym__integer_literal, - ACTIONS(363), 1, + ACTIONS(347), 1, anon_sym_DQUOTE, - ACTIONS(365), 1, + ACTIONS(349), 1, anon_sym_SQUOTE, - ACTIONS(367), 1, + ACTIONS(351), 1, anon_sym_LPAREN, - ACTIONS(371), 1, + ACTIONS(355), 1, aux_sym_unary_expression_token1, - ACTIONS(389), 1, - aux_sym_can_find_expression_token1, - ACTIONS(421), 1, + ACTIONS(357), 1, aux_sym_unary_expression_token2, - ACTIONS(423), 1, + ACTIONS(359), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(425), 1, + ACTIONS(361), 1, aux_sym_current_changed_expression_token1, - ACTIONS(427), 1, + ACTIONS(363), 1, aux_sym_locked_expression_token1, - ACTIONS(429), 1, - aux_sym_input_expression_token1, - ACTIONS(431), 1, + ACTIONS(367), 1, aux_sym_scope_tuning_token1, - ACTIONS(435), 1, + ACTIONS(371), 1, aux_sym_if_statement_token1, - ACTIONS(445), 1, + ACTIONS(373), 1, + aux_sym_can_find_expression_token1, + ACTIONS(377), 1, aux_sym_accumulate_expression_token1, - STATE(36), 1, + ACTIONS(431), 1, + aux_sym_input_expression_token1, + STATE(23), 1, sym__decimal_literal, - STATE(38), 1, + STATE(29), 1, sym_object_access, - STATE(652), 1, + STATE(558), 1, sym__expression, - ACTIONS(395), 2, + ACTIONS(379), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(21), 2, + STATE(18), 2, sym_double_quoted_string, sym_single_quoted_string, - STATE(462), 2, + STATE(467), 2, sym_comment, sym_include, - ACTIONS(359), 4, + ACTIONS(343), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(37), 4, + STATE(24), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(13), 18, + STATE(20), 18, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -63093,66 +63802,66 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(1073), 1, + ACTIONS(1001), 1, sym_identifier, - ACTIONS(1075), 1, + ACTIONS(1003), 1, anon_sym_LBRACE, - ACTIONS(1077), 1, + ACTIONS(1005), 1, sym_null_expression, - ACTIONS(1081), 1, + ACTIONS(1009), 1, sym__integer_literal, - ACTIONS(1083), 1, + ACTIONS(1011), 1, anon_sym_DQUOTE, - ACTIONS(1085), 1, + ACTIONS(1013), 1, anon_sym_SQUOTE, - ACTIONS(1087), 1, + ACTIONS(1015), 1, anon_sym_LPAREN, - ACTIONS(1089), 1, + ACTIONS(1017), 1, aux_sym_unary_expression_token1, - ACTIONS(1091), 1, + ACTIONS(1019), 1, aux_sym_unary_expression_token2, - ACTIONS(1093), 1, + ACTIONS(1021), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(1095), 1, + ACTIONS(1023), 1, aux_sym_current_changed_expression_token1, - ACTIONS(1097), 1, + ACTIONS(1025), 1, aux_sym_locked_expression_token1, - ACTIONS(1099), 1, + ACTIONS(1027), 1, aux_sym_input_expression_token1, - ACTIONS(1101), 1, + ACTIONS(1029), 1, aux_sym_scope_tuning_token1, - ACTIONS(1103), 1, + ACTIONS(1031), 1, aux_sym_if_statement_token1, - ACTIONS(1105), 1, + ACTIONS(1033), 1, aux_sym_can_find_expression_token1, - ACTIONS(1107), 1, + ACTIONS(1035), 1, aux_sym_accumulate_expression_token1, - STATE(665), 1, + STATE(661), 1, sym__expression, - STATE(731), 1, + STATE(735), 1, sym_object_access, - STATE(772), 1, + STATE(770), 1, sym__decimal_literal, - ACTIONS(1109), 2, + ACTIONS(1037), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(463), 2, + STATE(468), 2, sym_comment, sym_include, - STATE(771), 2, + STATE(769), 2, sym_double_quoted_string, sym_single_quoted_string, - ACTIONS(1079), 4, + ACTIONS(1007), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(744), 4, + STATE(748), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(742), 18, + STATE(746), 18, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -63176,66 +63885,66 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(959), 1, + ACTIONS(1081), 1, sym_identifier, - ACTIONS(961), 1, + ACTIONS(1083), 1, anon_sym_LBRACE, - ACTIONS(963), 1, + ACTIONS(1085), 1, sym_null_expression, - ACTIONS(967), 1, + ACTIONS(1089), 1, sym__integer_literal, - ACTIONS(969), 1, + ACTIONS(1091), 1, anon_sym_DQUOTE, - ACTIONS(971), 1, + ACTIONS(1093), 1, anon_sym_SQUOTE, - ACTIONS(973), 1, + ACTIONS(1095), 1, anon_sym_LPAREN, - ACTIONS(975), 1, + ACTIONS(1097), 1, aux_sym_unary_expression_token1, - ACTIONS(977), 1, + ACTIONS(1099), 1, aux_sym_unary_expression_token2, - ACTIONS(979), 1, + ACTIONS(1101), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(981), 1, + ACTIONS(1103), 1, aux_sym_current_changed_expression_token1, - ACTIONS(983), 1, + ACTIONS(1105), 1, aux_sym_locked_expression_token1, - ACTIONS(985), 1, + ACTIONS(1107), 1, aux_sym_input_expression_token1, - ACTIONS(987), 1, + ACTIONS(1109), 1, aux_sym_scope_tuning_token1, - ACTIONS(989), 1, + ACTIONS(1111), 1, aux_sym_if_statement_token1, - ACTIONS(991), 1, + ACTIONS(1113), 1, aux_sym_can_find_expression_token1, - ACTIONS(993), 1, + ACTIONS(1115), 1, aux_sym_accumulate_expression_token1, - STATE(834), 1, + STATE(620), 1, sym__expression, - STATE(1553), 1, + STATE(668), 1, sym_object_access, - STATE(1596), 1, + STATE(713), 1, sym__decimal_literal, - ACTIONS(995), 2, + ACTIONS(1117), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(464), 2, + STATE(469), 2, sym_comment, sym_include, - STATE(1594), 2, + STATE(719), 2, sym_double_quoted_string, sym_single_quoted_string, - ACTIONS(965), 4, + ACTIONS(1087), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(1592), 4, + STATE(688), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(1602), 18, + STATE(684), 18, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -63259,66 +63968,66 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(353), 1, + ACTIONS(1081), 1, sym_identifier, - ACTIONS(355), 1, + ACTIONS(1083), 1, anon_sym_LBRACE, - ACTIONS(357), 1, + ACTIONS(1085), 1, sym_null_expression, - ACTIONS(361), 1, + ACTIONS(1089), 1, sym__integer_literal, - ACTIONS(363), 1, + ACTIONS(1091), 1, anon_sym_DQUOTE, - ACTIONS(365), 1, + ACTIONS(1093), 1, anon_sym_SQUOTE, - ACTIONS(367), 1, + ACTIONS(1095), 1, anon_sym_LPAREN, - ACTIONS(371), 1, + ACTIONS(1097), 1, aux_sym_unary_expression_token1, - ACTIONS(373), 1, + ACTIONS(1099), 1, aux_sym_unary_expression_token2, - ACTIONS(375), 1, + ACTIONS(1101), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(377), 1, + ACTIONS(1103), 1, aux_sym_current_changed_expression_token1, - ACTIONS(379), 1, + ACTIONS(1105), 1, aux_sym_locked_expression_token1, - ACTIONS(383), 1, + ACTIONS(1107), 1, + aux_sym_input_expression_token1, + ACTIONS(1109), 1, aux_sym_scope_tuning_token1, - ACTIONS(387), 1, + ACTIONS(1111), 1, aux_sym_if_statement_token1, - ACTIONS(389), 1, + ACTIONS(1113), 1, aux_sym_can_find_expression_token1, - ACTIONS(393), 1, + ACTIONS(1115), 1, aux_sym_accumulate_expression_token1, - ACTIONS(429), 1, - aux_sym_input_expression_token1, - STATE(36), 1, - sym__decimal_literal, - STATE(38), 1, - sym_object_access, - STATE(741), 1, + STATE(617), 1, sym__expression, - ACTIONS(395), 2, + STATE(668), 1, + sym_object_access, + STATE(713), 1, + sym__decimal_literal, + ACTIONS(1117), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(21), 2, - sym_double_quoted_string, - sym_single_quoted_string, - STATE(465), 2, + STATE(470), 2, sym_comment, sym_include, - ACTIONS(359), 4, + STATE(719), 2, + sym_double_quoted_string, + sym_single_quoted_string, + ACTIONS(1087), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(37), 4, + STATE(688), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(13), 18, + STATE(684), 18, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -63342,66 +64051,66 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(997), 1, + ACTIONS(1081), 1, sym_identifier, - ACTIONS(999), 1, + ACTIONS(1083), 1, anon_sym_LBRACE, - ACTIONS(1001), 1, + ACTIONS(1085), 1, sym_null_expression, - ACTIONS(1005), 1, + ACTIONS(1089), 1, sym__integer_literal, - ACTIONS(1007), 1, + ACTIONS(1091), 1, anon_sym_DQUOTE, - ACTIONS(1009), 1, + ACTIONS(1093), 1, anon_sym_SQUOTE, - ACTIONS(1011), 1, + ACTIONS(1095), 1, anon_sym_LPAREN, - ACTIONS(1013), 1, + ACTIONS(1097), 1, aux_sym_unary_expression_token1, - ACTIONS(1015), 1, + ACTIONS(1099), 1, aux_sym_unary_expression_token2, - ACTIONS(1017), 1, + ACTIONS(1101), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(1019), 1, + ACTIONS(1103), 1, aux_sym_current_changed_expression_token1, - ACTIONS(1021), 1, + ACTIONS(1105), 1, aux_sym_locked_expression_token1, - ACTIONS(1023), 1, + ACTIONS(1107), 1, aux_sym_input_expression_token1, - ACTIONS(1025), 1, + ACTIONS(1109), 1, aux_sym_scope_tuning_token1, - ACTIONS(1027), 1, + ACTIONS(1111), 1, aux_sym_if_statement_token1, - ACTIONS(1029), 1, + ACTIONS(1113), 1, aux_sym_can_find_expression_token1, - ACTIONS(1031), 1, + ACTIONS(1115), 1, aux_sym_accumulate_expression_token1, - STATE(800), 1, + STATE(622), 1, sym__expression, - STATE(1399), 1, + STATE(668), 1, sym_object_access, - STATE(1577), 1, + STATE(713), 1, sym__decimal_literal, - ACTIONS(1033), 2, + ACTIONS(1117), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(466), 2, + STATE(471), 2, sym_comment, sym_include, - STATE(1547), 2, + STATE(719), 2, sym_double_quoted_string, sym_single_quoted_string, - ACTIONS(1003), 4, + ACTIONS(1087), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(1582), 4, + STATE(688), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(1555), 18, + STATE(684), 18, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -63425,66 +64134,66 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(1073), 1, + ACTIONS(337), 1, sym_identifier, - ACTIONS(1075), 1, + ACTIONS(339), 1, anon_sym_LBRACE, - ACTIONS(1077), 1, + ACTIONS(341), 1, sym_null_expression, - ACTIONS(1081), 1, + ACTIONS(345), 1, sym__integer_literal, - ACTIONS(1083), 1, + ACTIONS(347), 1, anon_sym_DQUOTE, - ACTIONS(1085), 1, + ACTIONS(349), 1, anon_sym_SQUOTE, - ACTIONS(1087), 1, + ACTIONS(351), 1, anon_sym_LPAREN, - ACTIONS(1089), 1, + ACTIONS(355), 1, aux_sym_unary_expression_token1, - ACTIONS(1091), 1, + ACTIONS(357), 1, aux_sym_unary_expression_token2, - ACTIONS(1093), 1, + ACTIONS(359), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(1095), 1, + ACTIONS(361), 1, aux_sym_current_changed_expression_token1, - ACTIONS(1097), 1, + ACTIONS(363), 1, aux_sym_locked_expression_token1, - ACTIONS(1099), 1, - aux_sym_input_expression_token1, - ACTIONS(1101), 1, + ACTIONS(367), 1, aux_sym_scope_tuning_token1, - ACTIONS(1103), 1, + ACTIONS(371), 1, aux_sym_if_statement_token1, - ACTIONS(1105), 1, + ACTIONS(373), 1, aux_sym_can_find_expression_token1, - ACTIONS(1107), 1, + ACTIONS(377), 1, aux_sym_accumulate_expression_token1, - STATE(661), 1, - sym__expression, - STATE(731), 1, - sym_object_access, - STATE(772), 1, + ACTIONS(431), 1, + aux_sym_input_expression_token1, + STATE(23), 1, sym__decimal_literal, - ACTIONS(1109), 2, + STATE(29), 1, + sym_object_access, + STATE(1158), 1, + sym__expression, + ACTIONS(379), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(467), 2, - sym_comment, - sym_include, - STATE(771), 2, + STATE(18), 2, sym_double_quoted_string, sym_single_quoted_string, - ACTIONS(1079), 4, + STATE(472), 2, + sym_comment, + sym_include, + ACTIONS(343), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(744), 4, + STATE(24), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(742), 18, + STATE(20), 18, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -63508,66 +64217,66 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(353), 1, + ACTIONS(1001), 1, sym_identifier, - ACTIONS(355), 1, + ACTIONS(1003), 1, anon_sym_LBRACE, - ACTIONS(357), 1, + ACTIONS(1005), 1, sym_null_expression, - ACTIONS(361), 1, + ACTIONS(1009), 1, sym__integer_literal, - ACTIONS(363), 1, + ACTIONS(1011), 1, anon_sym_DQUOTE, - ACTIONS(365), 1, + ACTIONS(1013), 1, anon_sym_SQUOTE, - ACTIONS(367), 1, + ACTIONS(1015), 1, anon_sym_LPAREN, - ACTIONS(371), 1, + ACTIONS(1017), 1, aux_sym_unary_expression_token1, - ACTIONS(373), 1, + ACTIONS(1019), 1, aux_sym_unary_expression_token2, - ACTIONS(375), 1, + ACTIONS(1021), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(377), 1, + ACTIONS(1023), 1, aux_sym_current_changed_expression_token1, - ACTIONS(379), 1, + ACTIONS(1025), 1, aux_sym_locked_expression_token1, - ACTIONS(383), 1, + ACTIONS(1027), 1, + aux_sym_input_expression_token1, + ACTIONS(1029), 1, aux_sym_scope_tuning_token1, - ACTIONS(387), 1, + ACTIONS(1031), 1, aux_sym_if_statement_token1, - ACTIONS(389), 1, + ACTIONS(1033), 1, aux_sym_can_find_expression_token1, - ACTIONS(393), 1, + ACTIONS(1035), 1, aux_sym_accumulate_expression_token1, - ACTIONS(429), 1, - aux_sym_input_expression_token1, - STATE(36), 1, - sym__decimal_literal, - STATE(38), 1, - sym_object_access, - STATE(810), 1, + STATE(664), 1, sym__expression, - ACTIONS(395), 2, + STATE(735), 1, + sym_object_access, + STATE(770), 1, + sym__decimal_literal, + ACTIONS(1037), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(21), 2, - sym_double_quoted_string, - sym_single_quoted_string, - STATE(468), 2, + STATE(473), 2, sym_comment, sym_include, - ACTIONS(359), 4, + STATE(769), 2, + sym_double_quoted_string, + sym_single_quoted_string, + ACTIONS(1007), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(37), 4, + STATE(748), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(13), 18, + STATE(746), 18, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -63591,66 +64300,66 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(353), 1, + ACTIONS(1001), 1, sym_identifier, - ACTIONS(355), 1, + ACTIONS(1003), 1, anon_sym_LBRACE, - ACTIONS(357), 1, + ACTIONS(1005), 1, sym_null_expression, - ACTIONS(361), 1, + ACTIONS(1009), 1, sym__integer_literal, - ACTIONS(363), 1, + ACTIONS(1011), 1, anon_sym_DQUOTE, - ACTIONS(365), 1, + ACTIONS(1013), 1, anon_sym_SQUOTE, - ACTIONS(367), 1, + ACTIONS(1015), 1, anon_sym_LPAREN, - ACTIONS(371), 1, + ACTIONS(1017), 1, aux_sym_unary_expression_token1, - ACTIONS(373), 1, + ACTIONS(1019), 1, aux_sym_unary_expression_token2, - ACTIONS(375), 1, + ACTIONS(1021), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(377), 1, + ACTIONS(1023), 1, aux_sym_current_changed_expression_token1, - ACTIONS(379), 1, + ACTIONS(1025), 1, aux_sym_locked_expression_token1, - ACTIONS(383), 1, + ACTIONS(1027), 1, + aux_sym_input_expression_token1, + ACTIONS(1029), 1, aux_sym_scope_tuning_token1, - ACTIONS(387), 1, + ACTIONS(1031), 1, aux_sym_if_statement_token1, - ACTIONS(389), 1, + ACTIONS(1033), 1, aux_sym_can_find_expression_token1, - ACTIONS(393), 1, + ACTIONS(1035), 1, aux_sym_accumulate_expression_token1, - ACTIONS(429), 1, - aux_sym_input_expression_token1, - STATE(36), 1, - sym__decimal_literal, - STATE(38), 1, - sym_object_access, - STATE(551), 1, + STATE(665), 1, sym__expression, - ACTIONS(395), 2, + STATE(735), 1, + sym_object_access, + STATE(770), 1, + sym__decimal_literal, + ACTIONS(1037), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(21), 2, - sym_double_quoted_string, - sym_single_quoted_string, - STATE(469), 2, + STATE(474), 2, sym_comment, sym_include, - ACTIONS(359), 4, + STATE(769), 2, + sym_double_quoted_string, + sym_single_quoted_string, + ACTIONS(1007), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(37), 4, + STATE(748), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(13), 18, + STATE(746), 18, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -63674,66 +64383,66 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(353), 1, + ACTIONS(337), 1, sym_identifier, - ACTIONS(355), 1, + ACTIONS(339), 1, anon_sym_LBRACE, - ACTIONS(357), 1, + ACTIONS(341), 1, sym_null_expression, - ACTIONS(361), 1, + ACTIONS(345), 1, sym__integer_literal, - ACTIONS(363), 1, + ACTIONS(347), 1, anon_sym_DQUOTE, - ACTIONS(365), 1, + ACTIONS(349), 1, anon_sym_SQUOTE, - ACTIONS(367), 1, + ACTIONS(351), 1, anon_sym_LPAREN, - ACTIONS(371), 1, + ACTIONS(355), 1, aux_sym_unary_expression_token1, ACTIONS(373), 1, + aux_sym_can_find_expression_token1, + ACTIONS(423), 1, aux_sym_unary_expression_token2, - ACTIONS(375), 1, + ACTIONS(425), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(377), 1, + ACTIONS(427), 1, aux_sym_current_changed_expression_token1, - ACTIONS(379), 1, + ACTIONS(429), 1, aux_sym_locked_expression_token1, - ACTIONS(383), 1, + ACTIONS(431), 1, + aux_sym_input_expression_token1, + ACTIONS(433), 1, aux_sym_scope_tuning_token1, - ACTIONS(387), 1, + ACTIONS(437), 1, aux_sym_if_statement_token1, - ACTIONS(389), 1, - aux_sym_can_find_expression_token1, - ACTIONS(393), 1, + ACTIONS(447), 1, aux_sym_accumulate_expression_token1, - ACTIONS(429), 1, - aux_sym_input_expression_token1, - STATE(36), 1, + STATE(23), 1, sym__decimal_literal, - STATE(38), 1, + STATE(29), 1, sym_object_access, - STATE(1322), 1, + STATE(658), 1, sym__expression, - ACTIONS(395), 2, + ACTIONS(379), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(21), 2, + STATE(18), 2, sym_double_quoted_string, sym_single_quoted_string, - STATE(470), 2, + STATE(475), 2, sym_comment, sym_include, - ACTIONS(359), 4, + ACTIONS(343), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(37), 4, + STATE(24), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(13), 18, + STATE(20), 18, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -63757,66 +64466,66 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(353), 1, + ACTIONS(1001), 1, sym_identifier, - ACTIONS(355), 1, + ACTIONS(1003), 1, anon_sym_LBRACE, - ACTIONS(357), 1, + ACTIONS(1005), 1, sym_null_expression, - ACTIONS(361), 1, + ACTIONS(1009), 1, sym__integer_literal, - ACTIONS(363), 1, + ACTIONS(1011), 1, anon_sym_DQUOTE, - ACTIONS(365), 1, + ACTIONS(1013), 1, anon_sym_SQUOTE, - ACTIONS(367), 1, + ACTIONS(1015), 1, anon_sym_LPAREN, - ACTIONS(371), 1, + ACTIONS(1017), 1, aux_sym_unary_expression_token1, - ACTIONS(373), 1, + ACTIONS(1019), 1, aux_sym_unary_expression_token2, - ACTIONS(375), 1, + ACTIONS(1021), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(377), 1, + ACTIONS(1023), 1, aux_sym_current_changed_expression_token1, - ACTIONS(379), 1, + ACTIONS(1025), 1, aux_sym_locked_expression_token1, - ACTIONS(383), 1, + ACTIONS(1027), 1, + aux_sym_input_expression_token1, + ACTIONS(1029), 1, aux_sym_scope_tuning_token1, - ACTIONS(387), 1, + ACTIONS(1031), 1, aux_sym_if_statement_token1, - ACTIONS(389), 1, + ACTIONS(1033), 1, aux_sym_can_find_expression_token1, - ACTIONS(393), 1, + ACTIONS(1035), 1, aux_sym_accumulate_expression_token1, - ACTIONS(429), 1, - aux_sym_input_expression_token1, - STATE(36), 1, - sym__decimal_literal, - STATE(38), 1, - sym_object_access, - STATE(1271), 1, + STATE(672), 1, sym__expression, - ACTIONS(395), 2, + STATE(735), 1, + sym_object_access, + STATE(770), 1, + sym__decimal_literal, + ACTIONS(1037), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(21), 2, - sym_double_quoted_string, - sym_single_quoted_string, - STATE(471), 2, + STATE(476), 2, sym_comment, sym_include, - ACTIONS(359), 4, + STATE(769), 2, + sym_double_quoted_string, + sym_single_quoted_string, + ACTIONS(1007), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(37), 4, + STATE(748), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(13), 18, + STATE(746), 18, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -63840,66 +64549,66 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(921), 1, + ACTIONS(1081), 1, sym_identifier, - ACTIONS(923), 1, + ACTIONS(1083), 1, anon_sym_LBRACE, - ACTIONS(925), 1, + ACTIONS(1085), 1, sym_null_expression, - ACTIONS(929), 1, + ACTIONS(1089), 1, sym__integer_literal, - ACTIONS(931), 1, + ACTIONS(1091), 1, anon_sym_DQUOTE, - ACTIONS(933), 1, + ACTIONS(1093), 1, anon_sym_SQUOTE, - ACTIONS(935), 1, + ACTIONS(1095), 1, anon_sym_LPAREN, - ACTIONS(937), 1, + ACTIONS(1097), 1, aux_sym_unary_expression_token1, - ACTIONS(939), 1, + ACTIONS(1099), 1, aux_sym_unary_expression_token2, - ACTIONS(941), 1, + ACTIONS(1101), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(943), 1, + ACTIONS(1103), 1, aux_sym_current_changed_expression_token1, - ACTIONS(945), 1, + ACTIONS(1105), 1, aux_sym_locked_expression_token1, - ACTIONS(947), 1, + ACTIONS(1107), 1, aux_sym_input_expression_token1, - ACTIONS(949), 1, + ACTIONS(1109), 1, aux_sym_scope_tuning_token1, - ACTIONS(951), 1, + ACTIONS(1111), 1, aux_sym_if_statement_token1, - ACTIONS(953), 1, + ACTIONS(1113), 1, aux_sym_can_find_expression_token1, - ACTIONS(955), 1, + ACTIONS(1115), 1, aux_sym_accumulate_expression_token1, - STATE(708), 1, + STATE(616), 1, sym__expression, - STATE(898), 1, + STATE(668), 1, sym_object_access, - STATE(1386), 1, + STATE(713), 1, sym__decimal_literal, - ACTIONS(957), 2, + ACTIONS(1117), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(472), 2, + STATE(477), 2, sym_comment, sym_include, - STATE(1158), 2, + STATE(719), 2, sym_double_quoted_string, sym_single_quoted_string, - ACTIONS(927), 4, + ACTIONS(1087), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(1384), 4, + STATE(688), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(1396), 18, + STATE(684), 18, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -63923,66 +64632,66 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(997), 1, + ACTIONS(1081), 1, sym_identifier, - ACTIONS(999), 1, + ACTIONS(1083), 1, anon_sym_LBRACE, - ACTIONS(1001), 1, + ACTIONS(1085), 1, sym_null_expression, - ACTIONS(1005), 1, + ACTIONS(1089), 1, sym__integer_literal, - ACTIONS(1007), 1, + ACTIONS(1091), 1, anon_sym_DQUOTE, - ACTIONS(1009), 1, + ACTIONS(1093), 1, anon_sym_SQUOTE, - ACTIONS(1011), 1, + ACTIONS(1095), 1, anon_sym_LPAREN, - ACTIONS(1013), 1, + ACTIONS(1097), 1, aux_sym_unary_expression_token1, - ACTIONS(1015), 1, + ACTIONS(1099), 1, aux_sym_unary_expression_token2, - ACTIONS(1017), 1, + ACTIONS(1101), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(1019), 1, + ACTIONS(1103), 1, aux_sym_current_changed_expression_token1, - ACTIONS(1021), 1, + ACTIONS(1105), 1, aux_sym_locked_expression_token1, - ACTIONS(1023), 1, + ACTIONS(1107), 1, aux_sym_input_expression_token1, - ACTIONS(1025), 1, + ACTIONS(1109), 1, aux_sym_scope_tuning_token1, - ACTIONS(1027), 1, + ACTIONS(1111), 1, aux_sym_if_statement_token1, - ACTIONS(1029), 1, + ACTIONS(1113), 1, aux_sym_can_find_expression_token1, - ACTIONS(1031), 1, + ACTIONS(1115), 1, aux_sym_accumulate_expression_token1, - STATE(809), 1, + STATE(625), 1, sym__expression, - STATE(1399), 1, + STATE(668), 1, sym_object_access, - STATE(1577), 1, + STATE(713), 1, sym__decimal_literal, - ACTIONS(1033), 2, + ACTIONS(1117), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(473), 2, + STATE(478), 2, sym_comment, sym_include, - STATE(1547), 2, + STATE(719), 2, sym_double_quoted_string, sym_single_quoted_string, - ACTIONS(1003), 4, + ACTIONS(1087), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(1582), 4, + STATE(688), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(1555), 18, + STATE(684), 18, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -64006,66 +64715,66 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(921), 1, + ACTIONS(1081), 1, sym_identifier, - ACTIONS(923), 1, + ACTIONS(1083), 1, anon_sym_LBRACE, - ACTIONS(925), 1, + ACTIONS(1085), 1, sym_null_expression, - ACTIONS(929), 1, + ACTIONS(1089), 1, sym__integer_literal, - ACTIONS(931), 1, + ACTIONS(1091), 1, anon_sym_DQUOTE, - ACTIONS(933), 1, + ACTIONS(1093), 1, anon_sym_SQUOTE, - ACTIONS(935), 1, + ACTIONS(1095), 1, anon_sym_LPAREN, - ACTIONS(937), 1, + ACTIONS(1097), 1, aux_sym_unary_expression_token1, - ACTIONS(939), 1, + ACTIONS(1099), 1, aux_sym_unary_expression_token2, - ACTIONS(941), 1, + ACTIONS(1101), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(943), 1, + ACTIONS(1103), 1, aux_sym_current_changed_expression_token1, - ACTIONS(945), 1, + ACTIONS(1105), 1, aux_sym_locked_expression_token1, - ACTIONS(947), 1, + ACTIONS(1107), 1, aux_sym_input_expression_token1, - ACTIONS(949), 1, + ACTIONS(1109), 1, aux_sym_scope_tuning_token1, - ACTIONS(951), 1, + ACTIONS(1111), 1, aux_sym_if_statement_token1, - ACTIONS(953), 1, + ACTIONS(1113), 1, aux_sym_can_find_expression_token1, - ACTIONS(955), 1, + ACTIONS(1115), 1, aux_sym_accumulate_expression_token1, - STATE(676), 1, + STATE(623), 1, sym__expression, - STATE(898), 1, + STATE(668), 1, sym_object_access, - STATE(1386), 1, + STATE(713), 1, sym__decimal_literal, - ACTIONS(957), 2, + ACTIONS(1117), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(474), 2, + STATE(479), 2, sym_comment, sym_include, - STATE(1158), 2, + STATE(719), 2, sym_double_quoted_string, sym_single_quoted_string, - ACTIONS(927), 4, + ACTIONS(1087), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(1384), 4, + STATE(688), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(1396), 18, + STATE(684), 18, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -64089,66 +64798,66 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(353), 1, + ACTIONS(337), 1, sym_identifier, - ACTIONS(355), 1, + ACTIONS(339), 1, anon_sym_LBRACE, - ACTIONS(357), 1, + ACTIONS(341), 1, sym_null_expression, - ACTIONS(361), 1, + ACTIONS(345), 1, sym__integer_literal, - ACTIONS(363), 1, + ACTIONS(347), 1, anon_sym_DQUOTE, - ACTIONS(365), 1, + ACTIONS(349), 1, anon_sym_SQUOTE, - ACTIONS(367), 1, + ACTIONS(351), 1, anon_sym_LPAREN, - ACTIONS(371), 1, + ACTIONS(355), 1, aux_sym_unary_expression_token1, ACTIONS(373), 1, + aux_sym_can_find_expression_token1, + ACTIONS(423), 1, aux_sym_unary_expression_token2, - ACTIONS(375), 1, + ACTIONS(425), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(377), 1, + ACTIONS(427), 1, aux_sym_current_changed_expression_token1, - ACTIONS(379), 1, + ACTIONS(429), 1, aux_sym_locked_expression_token1, - ACTIONS(383), 1, + ACTIONS(431), 1, + aux_sym_input_expression_token1, + ACTIONS(433), 1, aux_sym_scope_tuning_token1, - ACTIONS(387), 1, + ACTIONS(437), 1, aux_sym_if_statement_token1, - ACTIONS(389), 1, - aux_sym_can_find_expression_token1, - ACTIONS(393), 1, + ACTIONS(447), 1, aux_sym_accumulate_expression_token1, - ACTIONS(429), 1, - aux_sym_input_expression_token1, - STATE(36), 1, + STATE(23), 1, sym__decimal_literal, - STATE(38), 1, + STATE(29), 1, sym_object_access, - STATE(803), 1, + STATE(647), 1, sym__expression, - ACTIONS(395), 2, + ACTIONS(379), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(21), 2, + STATE(18), 2, sym_double_quoted_string, sym_single_quoted_string, - STATE(475), 2, + STATE(480), 2, sym_comment, sym_include, - ACTIONS(359), 4, + ACTIONS(343), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(37), 4, + STATE(24), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(13), 18, + STATE(20), 18, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -64172,66 +64881,66 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(353), 1, + ACTIONS(337), 1, sym_identifier, - ACTIONS(355), 1, + ACTIONS(339), 1, anon_sym_LBRACE, - ACTIONS(357), 1, + ACTIONS(341), 1, sym_null_expression, - ACTIONS(361), 1, + ACTIONS(345), 1, sym__integer_literal, - ACTIONS(363), 1, + ACTIONS(347), 1, anon_sym_DQUOTE, - ACTIONS(365), 1, + ACTIONS(349), 1, anon_sym_SQUOTE, - ACTIONS(367), 1, + ACTIONS(351), 1, anon_sym_LPAREN, - ACTIONS(371), 1, + ACTIONS(355), 1, aux_sym_unary_expression_token1, - ACTIONS(373), 1, + ACTIONS(357), 1, aux_sym_unary_expression_token2, - ACTIONS(375), 1, + ACTIONS(359), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(377), 1, + ACTIONS(361), 1, aux_sym_current_changed_expression_token1, - ACTIONS(379), 1, + ACTIONS(363), 1, aux_sym_locked_expression_token1, - ACTIONS(383), 1, + ACTIONS(367), 1, aux_sym_scope_tuning_token1, - ACTIONS(387), 1, + ACTIONS(371), 1, aux_sym_if_statement_token1, - ACTIONS(389), 1, + ACTIONS(373), 1, aux_sym_can_find_expression_token1, - ACTIONS(393), 1, + ACTIONS(377), 1, aux_sym_accumulate_expression_token1, - ACTIONS(429), 1, + ACTIONS(431), 1, aux_sym_input_expression_token1, - STATE(36), 1, + STATE(23), 1, sym__decimal_literal, - STATE(38), 1, + STATE(29), 1, sym_object_access, - STATE(839), 1, + STATE(56), 1, sym__expression, - ACTIONS(395), 2, + ACTIONS(379), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(21), 2, + STATE(18), 2, sym_double_quoted_string, sym_single_quoted_string, - STATE(476), 2, + STATE(481), 2, sym_comment, sym_include, - ACTIONS(359), 4, + ACTIONS(343), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(37), 4, + STATE(24), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(13), 18, + STATE(20), 18, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -64255,66 +64964,66 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(355), 1, + ACTIONS(1081), 1, + sym_identifier, + ACTIONS(1083), 1, anon_sym_LBRACE, - ACTIONS(357), 1, + ACTIONS(1085), 1, sym_null_expression, - ACTIONS(361), 1, + ACTIONS(1089), 1, sym__integer_literal, - ACTIONS(363), 1, + ACTIONS(1091), 1, anon_sym_DQUOTE, - ACTIONS(365), 1, + ACTIONS(1093), 1, anon_sym_SQUOTE, - ACTIONS(367), 1, + ACTIONS(1095), 1, anon_sym_LPAREN, - ACTIONS(371), 1, + ACTIONS(1097), 1, aux_sym_unary_expression_token1, - ACTIONS(373), 1, + ACTIONS(1099), 1, aux_sym_unary_expression_token2, - ACTIONS(375), 1, + ACTIONS(1101), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(377), 1, + ACTIONS(1103), 1, aux_sym_current_changed_expression_token1, - ACTIONS(379), 1, + ACTIONS(1105), 1, aux_sym_locked_expression_token1, - ACTIONS(383), 1, + ACTIONS(1107), 1, + aux_sym_input_expression_token1, + ACTIONS(1109), 1, aux_sym_scope_tuning_token1, - ACTIONS(387), 1, + ACTIONS(1111), 1, aux_sym_if_statement_token1, - ACTIONS(389), 1, + ACTIONS(1113), 1, aux_sym_can_find_expression_token1, - ACTIONS(393), 1, + ACTIONS(1115), 1, aux_sym_accumulate_expression_token1, - ACTIONS(429), 1, - aux_sym_input_expression_token1, - ACTIONS(1117), 1, - sym_identifier, - STATE(36), 1, - sym__decimal_literal, - STATE(38), 1, - sym_object_access, - STATE(1229), 1, + STATE(624), 1, sym__expression, - ACTIONS(395), 2, + STATE(668), 1, + sym_object_access, + STATE(713), 1, + sym__decimal_literal, + ACTIONS(1117), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(21), 2, - sym_double_quoted_string, - sym_single_quoted_string, - STATE(477), 2, + STATE(482), 2, sym_comment, sym_include, - ACTIONS(359), 4, + STATE(719), 2, + sym_double_quoted_string, + sym_single_quoted_string, + ACTIONS(1087), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(37), 4, + STATE(688), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(13), 18, + STATE(684), 18, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -64338,66 +65047,66 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(921), 1, + ACTIONS(337), 1, sym_identifier, - ACTIONS(923), 1, + ACTIONS(339), 1, anon_sym_LBRACE, - ACTIONS(925), 1, + ACTIONS(341), 1, sym_null_expression, - ACTIONS(929), 1, + ACTIONS(345), 1, sym__integer_literal, - ACTIONS(931), 1, + ACTIONS(347), 1, anon_sym_DQUOTE, - ACTIONS(933), 1, + ACTIONS(349), 1, anon_sym_SQUOTE, - ACTIONS(935), 1, + ACTIONS(351), 1, anon_sym_LPAREN, - ACTIONS(937), 1, + ACTIONS(355), 1, aux_sym_unary_expression_token1, - ACTIONS(939), 1, + ACTIONS(357), 1, aux_sym_unary_expression_token2, - ACTIONS(941), 1, + ACTIONS(359), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(943), 1, + ACTIONS(361), 1, aux_sym_current_changed_expression_token1, - ACTIONS(945), 1, + ACTIONS(363), 1, aux_sym_locked_expression_token1, - ACTIONS(947), 1, - aux_sym_input_expression_token1, - ACTIONS(949), 1, + ACTIONS(367), 1, aux_sym_scope_tuning_token1, - ACTIONS(951), 1, + ACTIONS(371), 1, aux_sym_if_statement_token1, - ACTIONS(953), 1, + ACTIONS(373), 1, aux_sym_can_find_expression_token1, - ACTIONS(955), 1, + ACTIONS(377), 1, aux_sym_accumulate_expression_token1, - STATE(712), 1, - sym__expression, - STATE(898), 1, - sym_object_access, - STATE(1386), 1, + ACTIONS(431), 1, + aux_sym_input_expression_token1, + STATE(23), 1, sym__decimal_literal, - ACTIONS(957), 2, + STATE(29), 1, + sym_object_access, + STATE(1226), 1, + sym__expression, + ACTIONS(379), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(478), 2, - sym_comment, - sym_include, - STATE(1158), 2, + STATE(18), 2, sym_double_quoted_string, sym_single_quoted_string, - ACTIONS(927), 4, + STATE(483), 2, + sym_comment, + sym_include, + ACTIONS(343), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(1384), 4, + STATE(24), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(1396), 18, + STATE(20), 18, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -64421,66 +65130,66 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(635), 1, + ACTIONS(337), 1, sym_identifier, - ACTIONS(637), 1, + ACTIONS(339), 1, anon_sym_LBRACE, - ACTIONS(641), 1, + ACTIONS(341), 1, sym_null_expression, - ACTIONS(645), 1, + ACTIONS(345), 1, sym__integer_literal, - ACTIONS(647), 1, + ACTIONS(347), 1, anon_sym_DQUOTE, - ACTIONS(649), 1, + ACTIONS(349), 1, anon_sym_SQUOTE, - ACTIONS(653), 1, + ACTIONS(351), 1, + anon_sym_LPAREN, + ACTIONS(355), 1, aux_sym_unary_expression_token1, - ACTIONS(655), 1, + ACTIONS(373), 1, + aux_sym_can_find_expression_token1, + ACTIONS(423), 1, aux_sym_unary_expression_token2, - ACTIONS(657), 1, + ACTIONS(425), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(659), 1, + ACTIONS(427), 1, aux_sym_current_changed_expression_token1, - ACTIONS(661), 1, + ACTIONS(429), 1, aux_sym_locked_expression_token1, - ACTIONS(663), 1, + ACTIONS(431), 1, aux_sym_input_expression_token1, - ACTIONS(667), 1, + ACTIONS(433), 1, aux_sym_scope_tuning_token1, - ACTIONS(669), 1, + ACTIONS(437), 1, aux_sym_if_statement_token1, - ACTIONS(673), 1, - aux_sym_can_find_expression_token1, - ACTIONS(675), 1, + ACTIONS(447), 1, aux_sym_accumulate_expression_token1, - ACTIONS(901), 1, - anon_sym_LPAREN, - STATE(527), 1, - sym__expression, - STATE(564), 1, + STATE(23), 1, sym__decimal_literal, - STATE(569), 1, + STATE(29), 1, sym_object_access, - ACTIONS(677), 2, + STATE(656), 1, + sym__expression, + ACTIONS(379), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(479), 2, - sym_comment, - sym_include, - STATE(565), 2, + STATE(18), 2, sym_double_quoted_string, sym_single_quoted_string, - ACTIONS(643), 4, + STATE(484), 2, + sym_comment, + sym_include, + ACTIONS(343), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(567), 4, + STATE(24), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(561), 18, + STATE(20), 18, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -64504,66 +65213,66 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(353), 1, + ACTIONS(337), 1, sym_identifier, - ACTIONS(355), 1, + ACTIONS(339), 1, anon_sym_LBRACE, - ACTIONS(357), 1, + ACTIONS(341), 1, sym_null_expression, - ACTIONS(361), 1, + ACTIONS(345), 1, sym__integer_literal, - ACTIONS(363), 1, + ACTIONS(347), 1, anon_sym_DQUOTE, - ACTIONS(365), 1, + ACTIONS(349), 1, anon_sym_SQUOTE, - ACTIONS(367), 1, + ACTIONS(351), 1, anon_sym_LPAREN, - ACTIONS(371), 1, + ACTIONS(355), 1, aux_sym_unary_expression_token1, - ACTIONS(373), 1, + ACTIONS(357), 1, aux_sym_unary_expression_token2, - ACTIONS(375), 1, + ACTIONS(359), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(377), 1, + ACTIONS(361), 1, aux_sym_current_changed_expression_token1, - ACTIONS(379), 1, + ACTIONS(363), 1, aux_sym_locked_expression_token1, - ACTIONS(383), 1, + ACTIONS(367), 1, aux_sym_scope_tuning_token1, - ACTIONS(387), 1, + ACTIONS(371), 1, aux_sym_if_statement_token1, - ACTIONS(389), 1, + ACTIONS(373), 1, aux_sym_can_find_expression_token1, - ACTIONS(393), 1, + ACTIONS(377), 1, aux_sym_accumulate_expression_token1, - ACTIONS(429), 1, + ACTIONS(431), 1, aux_sym_input_expression_token1, - STATE(36), 1, + STATE(23), 1, sym__decimal_literal, - STATE(38), 1, + STATE(29), 1, sym_object_access, - STATE(626), 1, + STATE(638), 1, sym__expression, - ACTIONS(395), 2, + ACTIONS(379), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(21), 2, + STATE(18), 2, sym_double_quoted_string, sym_single_quoted_string, - STATE(480), 2, + STATE(485), 2, sym_comment, sym_include, - ACTIONS(359), 4, + ACTIONS(343), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(37), 4, + STATE(24), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(13), 18, + STATE(20), 18, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -64587,66 +65296,66 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(353), 1, + ACTIONS(337), 1, sym_identifier, - ACTIONS(355), 1, + ACTIONS(339), 1, anon_sym_LBRACE, - ACTIONS(357), 1, + ACTIONS(341), 1, sym_null_expression, - ACTIONS(361), 1, + ACTIONS(345), 1, sym__integer_literal, - ACTIONS(363), 1, + ACTIONS(347), 1, anon_sym_DQUOTE, - ACTIONS(365), 1, + ACTIONS(349), 1, anon_sym_SQUOTE, - ACTIONS(367), 1, + ACTIONS(351), 1, anon_sym_LPAREN, - ACTIONS(371), 1, + ACTIONS(355), 1, aux_sym_unary_expression_token1, ACTIONS(373), 1, + aux_sym_can_find_expression_token1, + ACTIONS(423), 1, aux_sym_unary_expression_token2, - ACTIONS(375), 1, + ACTIONS(425), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(377), 1, + ACTIONS(427), 1, aux_sym_current_changed_expression_token1, - ACTIONS(379), 1, + ACTIONS(429), 1, aux_sym_locked_expression_token1, - ACTIONS(383), 1, + ACTIONS(431), 1, + aux_sym_input_expression_token1, + ACTIONS(433), 1, aux_sym_scope_tuning_token1, - ACTIONS(387), 1, + ACTIONS(437), 1, aux_sym_if_statement_token1, - ACTIONS(389), 1, - aux_sym_can_find_expression_token1, - ACTIONS(393), 1, + ACTIONS(447), 1, aux_sym_accumulate_expression_token1, - ACTIONS(429), 1, - aux_sym_input_expression_token1, - STATE(36), 1, + STATE(23), 1, sym__decimal_literal, - STATE(38), 1, + STATE(29), 1, sym_object_access, - STATE(1410), 1, + STATE(655), 1, sym__expression, - ACTIONS(395), 2, + ACTIONS(379), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(21), 2, + STATE(18), 2, sym_double_quoted_string, sym_single_quoted_string, - STATE(481), 2, + STATE(486), 2, sym_comment, sym_include, - ACTIONS(359), 4, + ACTIONS(343), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(37), 4, + STATE(24), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(13), 18, + STATE(20), 18, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -64670,66 +65379,66 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(921), 1, + ACTIONS(337), 1, sym_identifier, - ACTIONS(923), 1, + ACTIONS(339), 1, anon_sym_LBRACE, - ACTIONS(925), 1, + ACTIONS(341), 1, sym_null_expression, - ACTIONS(929), 1, + ACTIONS(345), 1, sym__integer_literal, - ACTIONS(931), 1, + ACTIONS(347), 1, anon_sym_DQUOTE, - ACTIONS(933), 1, + ACTIONS(349), 1, anon_sym_SQUOTE, - ACTIONS(935), 1, + ACTIONS(351), 1, anon_sym_LPAREN, - ACTIONS(937), 1, + ACTIONS(355), 1, aux_sym_unary_expression_token1, - ACTIONS(939), 1, + ACTIONS(357), 1, aux_sym_unary_expression_token2, - ACTIONS(941), 1, + ACTIONS(359), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(943), 1, + ACTIONS(361), 1, aux_sym_current_changed_expression_token1, - ACTIONS(945), 1, + ACTIONS(363), 1, aux_sym_locked_expression_token1, - ACTIONS(947), 1, - aux_sym_input_expression_token1, - ACTIONS(949), 1, + ACTIONS(367), 1, aux_sym_scope_tuning_token1, - ACTIONS(951), 1, + ACTIONS(371), 1, aux_sym_if_statement_token1, - ACTIONS(953), 1, + ACTIONS(373), 1, aux_sym_can_find_expression_token1, - ACTIONS(955), 1, + ACTIONS(377), 1, aux_sym_accumulate_expression_token1, - STATE(684), 1, - sym__expression, - STATE(898), 1, - sym_object_access, - STATE(1386), 1, + ACTIONS(431), 1, + aux_sym_input_expression_token1, + STATE(23), 1, sym__decimal_literal, - ACTIONS(957), 2, + STATE(29), 1, + sym_object_access, + STATE(1312), 1, + sym__expression, + ACTIONS(379), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(482), 2, - sym_comment, - sym_include, - STATE(1158), 2, + STATE(18), 2, sym_double_quoted_string, sym_single_quoted_string, - ACTIONS(927), 4, + STATE(487), 2, + sym_comment, + sym_include, + ACTIONS(343), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(1384), 4, + STATE(24), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(1396), 18, + STATE(20), 18, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -64753,66 +65462,66 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(353), 1, + ACTIONS(337), 1, sym_identifier, - ACTIONS(355), 1, + ACTIONS(339), 1, anon_sym_LBRACE, - ACTIONS(357), 1, + ACTIONS(341), 1, sym_null_expression, - ACTIONS(361), 1, + ACTIONS(345), 1, sym__integer_literal, - ACTIONS(363), 1, + ACTIONS(347), 1, anon_sym_DQUOTE, - ACTIONS(365), 1, + ACTIONS(349), 1, anon_sym_SQUOTE, - ACTIONS(367), 1, + ACTIONS(351), 1, anon_sym_LPAREN, - ACTIONS(371), 1, + ACTIONS(355), 1, aux_sym_unary_expression_token1, - ACTIONS(373), 1, + ACTIONS(357), 1, aux_sym_unary_expression_token2, - ACTIONS(375), 1, + ACTIONS(359), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(377), 1, + ACTIONS(361), 1, aux_sym_current_changed_expression_token1, - ACTIONS(379), 1, + ACTIONS(363), 1, aux_sym_locked_expression_token1, - ACTIONS(383), 1, + ACTIONS(367), 1, aux_sym_scope_tuning_token1, - ACTIONS(387), 1, + ACTIONS(371), 1, aux_sym_if_statement_token1, - ACTIONS(389), 1, + ACTIONS(373), 1, aux_sym_can_find_expression_token1, - ACTIONS(393), 1, + ACTIONS(377), 1, aux_sym_accumulate_expression_token1, - ACTIONS(429), 1, + ACTIONS(431), 1, aux_sym_input_expression_token1, - STATE(36), 1, + STATE(23), 1, sym__decimal_literal, - STATE(38), 1, + STATE(29), 1, sym_object_access, - STATE(572), 1, + STATE(764), 1, sym__expression, - ACTIONS(395), 2, + ACTIONS(379), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(21), 2, + STATE(18), 2, sym_double_quoted_string, sym_single_quoted_string, - STATE(483), 2, + STATE(488), 2, sym_comment, sym_include, - ACTIONS(359), 4, + ACTIONS(343), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(37), 4, + STATE(24), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(13), 18, + STATE(20), 18, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -64836,66 +65545,66 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(997), 1, + ACTIONS(959), 1, sym_identifier, - ACTIONS(999), 1, + ACTIONS(961), 1, anon_sym_LBRACE, - ACTIONS(1001), 1, + ACTIONS(963), 1, sym_null_expression, - ACTIONS(1005), 1, + ACTIONS(967), 1, sym__integer_literal, - ACTIONS(1007), 1, + ACTIONS(969), 1, anon_sym_DQUOTE, - ACTIONS(1009), 1, + ACTIONS(971), 1, anon_sym_SQUOTE, - ACTIONS(1011), 1, + ACTIONS(973), 1, anon_sym_LPAREN, - ACTIONS(1013), 1, + ACTIONS(975), 1, aux_sym_unary_expression_token1, - ACTIONS(1015), 1, + ACTIONS(977), 1, aux_sym_unary_expression_token2, - ACTIONS(1017), 1, + ACTIONS(979), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(1019), 1, + ACTIONS(981), 1, aux_sym_current_changed_expression_token1, - ACTIONS(1021), 1, + ACTIONS(983), 1, aux_sym_locked_expression_token1, - ACTIONS(1023), 1, + ACTIONS(985), 1, aux_sym_input_expression_token1, - ACTIONS(1025), 1, + ACTIONS(987), 1, aux_sym_scope_tuning_token1, - ACTIONS(1027), 1, + ACTIONS(989), 1, aux_sym_if_statement_token1, - ACTIONS(1029), 1, + ACTIONS(991), 1, aux_sym_can_find_expression_token1, - ACTIONS(1031), 1, + ACTIONS(993), 1, aux_sym_accumulate_expression_token1, - STATE(813), 1, + STATE(679), 1, sym__expression, - STATE(1399), 1, + STATE(1033), 1, sym_object_access, - STATE(1577), 1, + STATE(1335), 1, sym__decimal_literal, - ACTIONS(1033), 2, + ACTIONS(995), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(484), 2, + STATE(489), 2, sym_comment, sym_include, - STATE(1547), 2, + STATE(1474), 2, sym_double_quoted_string, sym_single_quoted_string, - ACTIONS(1003), 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(1582), 4, + STATE(1322), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(1555), 18, + STATE(1384), 18, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -64919,66 +65628,66 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(353), 1, + ACTIONS(921), 1, sym_identifier, - ACTIONS(355), 1, + ACTIONS(923), 1, anon_sym_LBRACE, - ACTIONS(357), 1, + ACTIONS(925), 1, sym_null_expression, - ACTIONS(361), 1, + ACTIONS(929), 1, sym__integer_literal, - ACTIONS(363), 1, + ACTIONS(931), 1, anon_sym_DQUOTE, - ACTIONS(365), 1, + ACTIONS(933), 1, anon_sym_SQUOTE, - ACTIONS(367), 1, + ACTIONS(935), 1, anon_sym_LPAREN, - ACTIONS(371), 1, + ACTIONS(937), 1, aux_sym_unary_expression_token1, - ACTIONS(373), 1, + ACTIONS(939), 1, aux_sym_unary_expression_token2, - ACTIONS(375), 1, + ACTIONS(941), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(377), 1, + ACTIONS(943), 1, aux_sym_current_changed_expression_token1, - ACTIONS(379), 1, + ACTIONS(945), 1, aux_sym_locked_expression_token1, - ACTIONS(383), 1, + ACTIONS(947), 1, + aux_sym_input_expression_token1, + ACTIONS(949), 1, aux_sym_scope_tuning_token1, - ACTIONS(387), 1, + ACTIONS(951), 1, aux_sym_if_statement_token1, - ACTIONS(389), 1, + ACTIONS(953), 1, aux_sym_can_find_expression_token1, - ACTIONS(393), 1, + ACTIONS(955), 1, aux_sym_accumulate_expression_token1, - ACTIONS(429), 1, - aux_sym_input_expression_token1, - STATE(36), 1, - sym__decimal_literal, - STATE(38), 1, - sym_object_access, - STATE(1414), 1, + STATE(808), 1, sym__expression, - ACTIONS(395), 2, + STATE(1228), 1, + sym_object_access, + STATE(1581), 1, + sym__decimal_literal, + ACTIONS(957), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(21), 2, - sym_double_quoted_string, - sym_single_quoted_string, - STATE(485), 2, + STATE(490), 2, sym_comment, sym_include, - ACTIONS(359), 4, + STATE(1569), 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(37), 4, + STATE(1582), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(13), 18, + STATE(1579), 18, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -65002,66 +65711,66 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(353), 1, + ACTIONS(921), 1, sym_identifier, - ACTIONS(355), 1, + ACTIONS(923), 1, anon_sym_LBRACE, - ACTIONS(357), 1, + ACTIONS(925), 1, sym_null_expression, - ACTIONS(361), 1, + ACTIONS(929), 1, sym__integer_literal, - ACTIONS(363), 1, + ACTIONS(931), 1, anon_sym_DQUOTE, - ACTIONS(365), 1, + ACTIONS(933), 1, anon_sym_SQUOTE, - ACTIONS(367), 1, + ACTIONS(935), 1, anon_sym_LPAREN, - ACTIONS(371), 1, + ACTIONS(937), 1, aux_sym_unary_expression_token1, - ACTIONS(373), 1, + ACTIONS(939), 1, aux_sym_unary_expression_token2, - ACTIONS(375), 1, + ACTIONS(941), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(377), 1, + ACTIONS(943), 1, aux_sym_current_changed_expression_token1, - ACTIONS(379), 1, + ACTIONS(945), 1, aux_sym_locked_expression_token1, - ACTIONS(383), 1, + ACTIONS(947), 1, + aux_sym_input_expression_token1, + ACTIONS(949), 1, aux_sym_scope_tuning_token1, - ACTIONS(387), 1, + ACTIONS(951), 1, aux_sym_if_statement_token1, - ACTIONS(389), 1, + ACTIONS(953), 1, aux_sym_can_find_expression_token1, - ACTIONS(393), 1, + ACTIONS(955), 1, aux_sym_accumulate_expression_token1, - ACTIONS(429), 1, - aux_sym_input_expression_token1, - STATE(36), 1, - sym__decimal_literal, - STATE(38), 1, - sym_object_access, - STATE(555), 1, + STATE(816), 1, sym__expression, - ACTIONS(395), 2, + STATE(1228), 1, + sym_object_access, + STATE(1581), 1, + sym__decimal_literal, + ACTIONS(957), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(21), 2, - sym_double_quoted_string, - sym_single_quoted_string, - STATE(486), 2, + STATE(491), 2, sym_comment, sym_include, - ACTIONS(359), 4, + STATE(1569), 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(37), 4, + STATE(1582), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(13), 18, + STATE(1579), 18, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -65085,66 +65794,66 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(1035), 1, + ACTIONS(921), 1, sym_identifier, - ACTIONS(1037), 1, + ACTIONS(923), 1, anon_sym_LBRACE, - ACTIONS(1039), 1, + ACTIONS(925), 1, sym_null_expression, - ACTIONS(1043), 1, + ACTIONS(929), 1, sym__integer_literal, - ACTIONS(1045), 1, + ACTIONS(931), 1, anon_sym_DQUOTE, - ACTIONS(1047), 1, + ACTIONS(933), 1, anon_sym_SQUOTE, - ACTIONS(1049), 1, + ACTIONS(935), 1, anon_sym_LPAREN, - ACTIONS(1051), 1, + ACTIONS(937), 1, aux_sym_unary_expression_token1, - ACTIONS(1053), 1, + ACTIONS(939), 1, aux_sym_unary_expression_token2, - ACTIONS(1055), 1, + ACTIONS(941), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(1057), 1, + ACTIONS(943), 1, aux_sym_current_changed_expression_token1, - ACTIONS(1059), 1, + ACTIONS(945), 1, aux_sym_locked_expression_token1, - ACTIONS(1061), 1, + ACTIONS(947), 1, aux_sym_input_expression_token1, - ACTIONS(1063), 1, + ACTIONS(949), 1, aux_sym_scope_tuning_token1, - ACTIONS(1065), 1, + ACTIONS(951), 1, aux_sym_if_statement_token1, - ACTIONS(1067), 1, + ACTIONS(953), 1, aux_sym_can_find_expression_token1, - ACTIONS(1069), 1, + ACTIONS(955), 1, aux_sym_accumulate_expression_token1, - STATE(610), 1, + STATE(825), 1, sym__expression, - STATE(642), 1, + STATE(1228), 1, sym_object_access, - STATE(699), 1, + STATE(1581), 1, sym__decimal_literal, - ACTIONS(1071), 2, + ACTIONS(957), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(487), 2, + STATE(492), 2, sym_comment, sym_include, - STATE(700), 2, + STATE(1569), 2, sym_double_quoted_string, sym_single_quoted_string, - ACTIONS(1041), 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(696), 4, + STATE(1582), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(689), 18, + STATE(1579), 18, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -65168,66 +65877,66 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(1035), 1, + ACTIONS(337), 1, sym_identifier, - ACTIONS(1037), 1, + ACTIONS(339), 1, anon_sym_LBRACE, - ACTIONS(1039), 1, + ACTIONS(341), 1, sym_null_expression, - ACTIONS(1043), 1, + ACTIONS(345), 1, sym__integer_literal, - ACTIONS(1045), 1, + ACTIONS(347), 1, anon_sym_DQUOTE, - ACTIONS(1047), 1, + ACTIONS(349), 1, anon_sym_SQUOTE, - ACTIONS(1049), 1, + ACTIONS(351), 1, anon_sym_LPAREN, - ACTIONS(1051), 1, + ACTIONS(355), 1, aux_sym_unary_expression_token1, - ACTIONS(1053), 1, + ACTIONS(357), 1, aux_sym_unary_expression_token2, - ACTIONS(1055), 1, + ACTIONS(359), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(1057), 1, + ACTIONS(361), 1, aux_sym_current_changed_expression_token1, - ACTIONS(1059), 1, + ACTIONS(363), 1, aux_sym_locked_expression_token1, - ACTIONS(1061), 1, - aux_sym_input_expression_token1, - ACTIONS(1063), 1, + ACTIONS(367), 1, aux_sym_scope_tuning_token1, - ACTIONS(1065), 1, + ACTIONS(371), 1, aux_sym_if_statement_token1, - ACTIONS(1067), 1, + ACTIONS(373), 1, aux_sym_can_find_expression_token1, - ACTIONS(1069), 1, + ACTIONS(377), 1, aux_sym_accumulate_expression_token1, - STATE(618), 1, - sym__expression, - STATE(642), 1, - sym_object_access, - STATE(699), 1, + ACTIONS(431), 1, + aux_sym_input_expression_token1, + STATE(23), 1, sym__decimal_literal, - ACTIONS(1071), 2, + STATE(29), 1, + sym_object_access, + STATE(814), 1, + sym__expression, + ACTIONS(379), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(488), 2, - sym_comment, - sym_include, - STATE(700), 2, + STATE(18), 2, sym_double_quoted_string, sym_single_quoted_string, - ACTIONS(1041), 4, + STATE(493), 2, + sym_comment, + sym_include, + ACTIONS(343), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(696), 4, + STATE(24), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(689), 18, + STATE(20), 18, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -65251,66 +65960,66 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(353), 1, + ACTIONS(337), 1, sym_identifier, - ACTIONS(355), 1, + ACTIONS(339), 1, anon_sym_LBRACE, - ACTIONS(357), 1, + ACTIONS(341), 1, sym_null_expression, - ACTIONS(361), 1, + ACTIONS(345), 1, sym__integer_literal, - ACTIONS(363), 1, + ACTIONS(347), 1, anon_sym_DQUOTE, - ACTIONS(365), 1, + ACTIONS(349), 1, anon_sym_SQUOTE, - ACTIONS(367), 1, + ACTIONS(351), 1, anon_sym_LPAREN, - ACTIONS(371), 1, + ACTIONS(355), 1, aux_sym_unary_expression_token1, - ACTIONS(373), 1, + ACTIONS(357), 1, aux_sym_unary_expression_token2, - ACTIONS(375), 1, + ACTIONS(359), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(377), 1, + ACTIONS(361), 1, aux_sym_current_changed_expression_token1, - ACTIONS(379), 1, + ACTIONS(363), 1, aux_sym_locked_expression_token1, - ACTIONS(383), 1, + ACTIONS(367), 1, aux_sym_scope_tuning_token1, - ACTIONS(387), 1, + ACTIONS(371), 1, aux_sym_if_statement_token1, - ACTIONS(389), 1, + ACTIONS(373), 1, aux_sym_can_find_expression_token1, - ACTIONS(393), 1, + ACTIONS(377), 1, aux_sym_accumulate_expression_token1, - ACTIONS(429), 1, + ACTIONS(431), 1, aux_sym_input_expression_token1, - STATE(36), 1, + STATE(23), 1, sym__decimal_literal, - STATE(38), 1, + STATE(29), 1, sym_object_access, - STATE(554), 1, + STATE(1266), 1, sym__expression, - ACTIONS(395), 2, + ACTIONS(379), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(21), 2, + STATE(18), 2, sym_double_quoted_string, sym_single_quoted_string, - STATE(489), 2, + STATE(494), 2, sym_comment, sym_include, - ACTIONS(359), 4, + ACTIONS(343), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(37), 4, + STATE(24), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(13), 18, + STATE(20), 18, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -65334,66 +66043,66 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(921), 1, + ACTIONS(337), 1, sym_identifier, - ACTIONS(923), 1, + ACTIONS(339), 1, anon_sym_LBRACE, - ACTIONS(925), 1, + ACTIONS(341), 1, sym_null_expression, - ACTIONS(929), 1, + ACTIONS(345), 1, sym__integer_literal, - ACTIONS(931), 1, + ACTIONS(347), 1, anon_sym_DQUOTE, - ACTIONS(933), 1, + ACTIONS(349), 1, anon_sym_SQUOTE, - ACTIONS(935), 1, + ACTIONS(351), 1, anon_sym_LPAREN, - ACTIONS(937), 1, + ACTIONS(355), 1, aux_sym_unary_expression_token1, - ACTIONS(939), 1, + ACTIONS(357), 1, aux_sym_unary_expression_token2, - ACTIONS(941), 1, + ACTIONS(359), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(943), 1, + ACTIONS(361), 1, aux_sym_current_changed_expression_token1, - ACTIONS(945), 1, + ACTIONS(363), 1, aux_sym_locked_expression_token1, - ACTIONS(947), 1, - aux_sym_input_expression_token1, - ACTIONS(949), 1, + ACTIONS(367), 1, aux_sym_scope_tuning_token1, - ACTIONS(951), 1, + ACTIONS(371), 1, aux_sym_if_statement_token1, - ACTIONS(953), 1, + ACTIONS(373), 1, aux_sym_can_find_expression_token1, - ACTIONS(955), 1, + ACTIONS(377), 1, aux_sym_accumulate_expression_token1, - STATE(795), 1, - sym__expression, - STATE(898), 1, - sym_object_access, - STATE(1386), 1, + ACTIONS(431), 1, + aux_sym_input_expression_token1, + STATE(23), 1, sym__decimal_literal, - ACTIONS(957), 2, + STATE(29), 1, + sym_object_access, + STATE(1032), 1, + sym__expression, + ACTIONS(379), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(490), 2, - sym_comment, - sym_include, - STATE(1158), 2, + STATE(18), 2, sym_double_quoted_string, sym_single_quoted_string, - ACTIONS(927), 4, + STATE(495), 2, + sym_comment, + sym_include, + ACTIONS(343), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(1384), 4, + STATE(24), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(1396), 18, + STATE(20), 18, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -65417,66 +66126,66 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(997), 1, + ACTIONS(337), 1, sym_identifier, - ACTIONS(999), 1, + ACTIONS(339), 1, anon_sym_LBRACE, - ACTIONS(1001), 1, + ACTIONS(341), 1, sym_null_expression, - ACTIONS(1005), 1, + ACTIONS(345), 1, sym__integer_literal, - ACTIONS(1007), 1, + ACTIONS(347), 1, anon_sym_DQUOTE, - ACTIONS(1009), 1, + ACTIONS(349), 1, anon_sym_SQUOTE, - ACTIONS(1011), 1, + ACTIONS(351), 1, anon_sym_LPAREN, - ACTIONS(1013), 1, + ACTIONS(355), 1, aux_sym_unary_expression_token1, - ACTIONS(1015), 1, + ACTIONS(357), 1, aux_sym_unary_expression_token2, - ACTIONS(1017), 1, + ACTIONS(359), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(1019), 1, + ACTIONS(361), 1, aux_sym_current_changed_expression_token1, - ACTIONS(1021), 1, + ACTIONS(363), 1, aux_sym_locked_expression_token1, - ACTIONS(1023), 1, - aux_sym_input_expression_token1, - ACTIONS(1025), 1, + ACTIONS(367), 1, aux_sym_scope_tuning_token1, - ACTIONS(1027), 1, + ACTIONS(371), 1, aux_sym_if_statement_token1, - ACTIONS(1029), 1, + ACTIONS(373), 1, aux_sym_can_find_expression_token1, - ACTIONS(1031), 1, + ACTIONS(377), 1, aux_sym_accumulate_expression_token1, - STATE(811), 1, - sym__expression, - STATE(1399), 1, - sym_object_access, - STATE(1577), 1, + ACTIONS(431), 1, + aux_sym_input_expression_token1, + STATE(23), 1, sym__decimal_literal, - ACTIONS(1033), 2, + STATE(29), 1, + sym_object_access, + STATE(1517), 1, + sym__expression, + ACTIONS(379), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(491), 2, - sym_comment, - sym_include, - STATE(1547), 2, + STATE(18), 2, sym_double_quoted_string, sym_single_quoted_string, - ACTIONS(1003), 4, + STATE(496), 2, + sym_comment, + sym_include, + ACTIONS(343), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(1582), 4, + STATE(24), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(1555), 18, + STATE(20), 18, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -65500,66 +66209,66 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(921), 1, + ACTIONS(337), 1, sym_identifier, - ACTIONS(923), 1, + ACTIONS(339), 1, anon_sym_LBRACE, - ACTIONS(925), 1, + ACTIONS(341), 1, sym_null_expression, - ACTIONS(929), 1, + ACTIONS(345), 1, sym__integer_literal, - ACTIONS(931), 1, + ACTIONS(347), 1, anon_sym_DQUOTE, - ACTIONS(933), 1, + ACTIONS(349), 1, anon_sym_SQUOTE, - ACTIONS(935), 1, + ACTIONS(351), 1, anon_sym_LPAREN, - ACTIONS(937), 1, + ACTIONS(355), 1, aux_sym_unary_expression_token1, - ACTIONS(939), 1, + ACTIONS(357), 1, aux_sym_unary_expression_token2, - ACTIONS(941), 1, + ACTIONS(359), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(943), 1, + ACTIONS(361), 1, aux_sym_current_changed_expression_token1, - ACTIONS(945), 1, + ACTIONS(363), 1, aux_sym_locked_expression_token1, - ACTIONS(947), 1, - aux_sym_input_expression_token1, - ACTIONS(949), 1, + ACTIONS(367), 1, aux_sym_scope_tuning_token1, - ACTIONS(951), 1, + ACTIONS(371), 1, aux_sym_if_statement_token1, - ACTIONS(953), 1, + ACTIONS(373), 1, aux_sym_can_find_expression_token1, - ACTIONS(955), 1, + ACTIONS(377), 1, aux_sym_accumulate_expression_token1, - STATE(796), 1, - sym__expression, - STATE(898), 1, - sym_object_access, - STATE(1386), 1, + ACTIONS(431), 1, + aux_sym_input_expression_token1, + STATE(23), 1, sym__decimal_literal, - ACTIONS(957), 2, + STATE(29), 1, + sym_object_access, + STATE(51), 1, + sym__expression, + ACTIONS(379), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(492), 2, - sym_comment, - sym_include, - STATE(1158), 2, + STATE(18), 2, sym_double_quoted_string, sym_single_quoted_string, - ACTIONS(927), 4, + STATE(497), 2, + sym_comment, + sym_include, + ACTIONS(343), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(1384), 4, + STATE(24), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(1396), 18, + STATE(20), 18, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -65583,66 +66292,66 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(997), 1, + ACTIONS(337), 1, sym_identifier, - ACTIONS(999), 1, + ACTIONS(339), 1, anon_sym_LBRACE, - ACTIONS(1001), 1, + ACTIONS(341), 1, sym_null_expression, - ACTIONS(1005), 1, + ACTIONS(345), 1, sym__integer_literal, - ACTIONS(1007), 1, + ACTIONS(347), 1, anon_sym_DQUOTE, - ACTIONS(1009), 1, + ACTIONS(349), 1, anon_sym_SQUOTE, - ACTIONS(1011), 1, + ACTIONS(351), 1, anon_sym_LPAREN, - ACTIONS(1013), 1, + ACTIONS(355), 1, aux_sym_unary_expression_token1, - ACTIONS(1015), 1, + ACTIONS(357), 1, aux_sym_unary_expression_token2, - ACTIONS(1017), 1, + ACTIONS(359), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(1019), 1, + ACTIONS(361), 1, aux_sym_current_changed_expression_token1, - ACTIONS(1021), 1, + ACTIONS(363), 1, aux_sym_locked_expression_token1, - ACTIONS(1023), 1, - aux_sym_input_expression_token1, - ACTIONS(1025), 1, + ACTIONS(367), 1, aux_sym_scope_tuning_token1, - ACTIONS(1027), 1, + ACTIONS(371), 1, aux_sym_if_statement_token1, - ACTIONS(1029), 1, + ACTIONS(373), 1, aux_sym_can_find_expression_token1, - ACTIONS(1031), 1, + ACTIONS(377), 1, aux_sym_accumulate_expression_token1, - STATE(806), 1, - sym__expression, - STATE(1399), 1, - sym_object_access, - STATE(1577), 1, + ACTIONS(431), 1, + aux_sym_input_expression_token1, + STATE(23), 1, sym__decimal_literal, - ACTIONS(1033), 2, + STATE(29), 1, + sym_object_access, + STATE(50), 1, + sym__expression, + ACTIONS(379), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(493), 2, - sym_comment, - sym_include, - STATE(1547), 2, + STATE(18), 2, sym_double_quoted_string, sym_single_quoted_string, - ACTIONS(1003), 4, + STATE(498), 2, + sym_comment, + sym_include, + ACTIONS(343), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(1582), 4, + STATE(24), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(1555), 18, + STATE(20), 18, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -65700,19 +66409,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_can_find_expression_token1, ACTIONS(955), 1, aux_sym_accumulate_expression_token1, - STATE(797), 1, + STATE(807), 1, sym__expression, - STATE(898), 1, + STATE(1228), 1, sym_object_access, - STATE(1386), 1, + STATE(1581), 1, sym__decimal_literal, ACTIONS(957), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(494), 2, + STATE(499), 2, sym_comment, sym_include, - STATE(1158), 2, + STATE(1569), 2, sym_double_quoted_string, sym_single_quoted_string, ACTIONS(927), 4, @@ -65720,12 +66429,12 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(1384), 4, + STATE(1582), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(1396), 18, + STATE(1579), 18, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -65749,66 +66458,66 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(921), 1, + ACTIONS(1001), 1, sym_identifier, - ACTIONS(923), 1, + ACTIONS(1003), 1, anon_sym_LBRACE, - ACTIONS(925), 1, + ACTIONS(1005), 1, sym_null_expression, - ACTIONS(929), 1, + ACTIONS(1009), 1, sym__integer_literal, - ACTIONS(931), 1, + ACTIONS(1011), 1, anon_sym_DQUOTE, - ACTIONS(933), 1, + ACTIONS(1013), 1, anon_sym_SQUOTE, - ACTIONS(935), 1, + ACTIONS(1015), 1, anon_sym_LPAREN, - ACTIONS(937), 1, + ACTIONS(1017), 1, aux_sym_unary_expression_token1, - ACTIONS(939), 1, + ACTIONS(1019), 1, aux_sym_unary_expression_token2, - ACTIONS(941), 1, + ACTIONS(1021), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(943), 1, + ACTIONS(1023), 1, aux_sym_current_changed_expression_token1, - ACTIONS(945), 1, + ACTIONS(1025), 1, aux_sym_locked_expression_token1, - ACTIONS(947), 1, + ACTIONS(1027), 1, aux_sym_input_expression_token1, - ACTIONS(949), 1, + ACTIONS(1029), 1, aux_sym_scope_tuning_token1, - ACTIONS(951), 1, + ACTIONS(1031), 1, aux_sym_if_statement_token1, - ACTIONS(953), 1, + ACTIONS(1033), 1, aux_sym_can_find_expression_token1, - ACTIONS(955), 1, + ACTIONS(1035), 1, aux_sym_accumulate_expression_token1, - STATE(777), 1, + STATE(673), 1, sym__expression, - STATE(898), 1, + STATE(735), 1, sym_object_access, - STATE(1386), 1, + STATE(770), 1, sym__decimal_literal, - ACTIONS(957), 2, + ACTIONS(1037), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(495), 2, + STATE(500), 2, sym_comment, sym_include, - STATE(1158), 2, + STATE(769), 2, sym_double_quoted_string, sym_single_quoted_string, - ACTIONS(927), 4, + ACTIONS(1007), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(1384), 4, + STATE(748), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(1396), 18, + STATE(746), 18, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -65832,66 +66541,66 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(353), 1, + ACTIONS(1001), 1, sym_identifier, - ACTIONS(355), 1, + ACTIONS(1003), 1, anon_sym_LBRACE, - ACTIONS(357), 1, + ACTIONS(1005), 1, sym_null_expression, - ACTIONS(361), 1, + ACTIONS(1009), 1, sym__integer_literal, - ACTIONS(363), 1, + ACTIONS(1011), 1, anon_sym_DQUOTE, - ACTIONS(365), 1, + ACTIONS(1013), 1, anon_sym_SQUOTE, - ACTIONS(367), 1, + ACTIONS(1015), 1, anon_sym_LPAREN, - ACTIONS(371), 1, + ACTIONS(1017), 1, aux_sym_unary_expression_token1, - ACTIONS(373), 1, + ACTIONS(1019), 1, aux_sym_unary_expression_token2, - ACTIONS(375), 1, + ACTIONS(1021), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(377), 1, + ACTIONS(1023), 1, aux_sym_current_changed_expression_token1, - ACTIONS(379), 1, + ACTIONS(1025), 1, aux_sym_locked_expression_token1, - ACTIONS(383), 1, + ACTIONS(1027), 1, + aux_sym_input_expression_token1, + ACTIONS(1029), 1, aux_sym_scope_tuning_token1, - ACTIONS(387), 1, + ACTIONS(1031), 1, aux_sym_if_statement_token1, - ACTIONS(389), 1, + ACTIONS(1033), 1, aux_sym_can_find_expression_token1, - ACTIONS(393), 1, + ACTIONS(1035), 1, aux_sym_accumulate_expression_token1, - ACTIONS(429), 1, - aux_sym_input_expression_token1, - STATE(36), 1, - sym__decimal_literal, - STATE(38), 1, - sym_object_access, - STATE(1451), 1, + STATE(667), 1, sym__expression, - ACTIONS(395), 2, + STATE(735), 1, + sym_object_access, + STATE(770), 1, + sym__decimal_literal, + ACTIONS(1037), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(21), 2, - sym_double_quoted_string, - sym_single_quoted_string, - STATE(496), 2, + STATE(501), 2, sym_comment, sym_include, - ACTIONS(359), 4, + STATE(769), 2, + sym_double_quoted_string, + sym_single_quoted_string, + ACTIONS(1007), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(37), 4, + STATE(748), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(13), 18, + STATE(746), 18, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -65915,66 +66624,66 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(353), 1, + ACTIONS(337), 1, sym_identifier, - ACTIONS(355), 1, + ACTIONS(339), 1, anon_sym_LBRACE, - ACTIONS(357), 1, + ACTIONS(341), 1, sym_null_expression, - ACTIONS(361), 1, + ACTIONS(345), 1, sym__integer_literal, - ACTIONS(363), 1, + ACTIONS(347), 1, anon_sym_DQUOTE, - ACTIONS(365), 1, + ACTIONS(349), 1, anon_sym_SQUOTE, - ACTIONS(367), 1, + ACTIONS(351), 1, anon_sym_LPAREN, - ACTIONS(371), 1, + ACTIONS(355), 1, aux_sym_unary_expression_token1, - ACTIONS(373), 1, + ACTIONS(357), 1, aux_sym_unary_expression_token2, - ACTIONS(375), 1, + ACTIONS(359), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(377), 1, + ACTIONS(361), 1, aux_sym_current_changed_expression_token1, - ACTIONS(379), 1, + ACTIONS(363), 1, aux_sym_locked_expression_token1, - ACTIONS(383), 1, + ACTIONS(367), 1, aux_sym_scope_tuning_token1, - ACTIONS(387), 1, + ACTIONS(371), 1, aux_sym_if_statement_token1, - ACTIONS(389), 1, + ACTIONS(373), 1, aux_sym_can_find_expression_token1, - ACTIONS(393), 1, + ACTIONS(377), 1, aux_sym_accumulate_expression_token1, - ACTIONS(429), 1, + ACTIONS(431), 1, aux_sym_input_expression_token1, - STATE(36), 1, + STATE(23), 1, sym__decimal_literal, - STATE(38), 1, + STATE(29), 1, sym_object_access, - STATE(1290), 1, + STATE(824), 1, sym__expression, - ACTIONS(395), 2, + ACTIONS(379), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(21), 2, + STATE(18), 2, sym_double_quoted_string, sym_single_quoted_string, - STATE(497), 2, + STATE(502), 2, sym_comment, sym_include, - ACTIONS(359), 4, + ACTIONS(343), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(37), 4, + STATE(24), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(13), 18, + STATE(20), 18, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -65998,66 +66707,66 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(997), 1, + ACTIONS(1001), 1, sym_identifier, - ACTIONS(999), 1, + ACTIONS(1003), 1, anon_sym_LBRACE, - ACTIONS(1001), 1, - sym_null_expression, ACTIONS(1005), 1, + sym_null_expression, + ACTIONS(1009), 1, sym__integer_literal, - ACTIONS(1007), 1, + ACTIONS(1011), 1, anon_sym_DQUOTE, - ACTIONS(1009), 1, + ACTIONS(1013), 1, anon_sym_SQUOTE, - ACTIONS(1011), 1, + ACTIONS(1015), 1, anon_sym_LPAREN, - ACTIONS(1013), 1, + ACTIONS(1017), 1, aux_sym_unary_expression_token1, - ACTIONS(1015), 1, + ACTIONS(1019), 1, aux_sym_unary_expression_token2, - ACTIONS(1017), 1, + ACTIONS(1021), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(1019), 1, + ACTIONS(1023), 1, aux_sym_current_changed_expression_token1, - ACTIONS(1021), 1, + ACTIONS(1025), 1, aux_sym_locked_expression_token1, - ACTIONS(1023), 1, + ACTIONS(1027), 1, aux_sym_input_expression_token1, - ACTIONS(1025), 1, + ACTIONS(1029), 1, aux_sym_scope_tuning_token1, - ACTIONS(1027), 1, + ACTIONS(1031), 1, aux_sym_if_statement_token1, - ACTIONS(1029), 1, + ACTIONS(1033), 1, aux_sym_can_find_expression_token1, - ACTIONS(1031), 1, + ACTIONS(1035), 1, aux_sym_accumulate_expression_token1, - STATE(820), 1, + STATE(663), 1, sym__expression, - STATE(1399), 1, + STATE(735), 1, sym_object_access, - STATE(1577), 1, + STATE(770), 1, sym__decimal_literal, - ACTIONS(1033), 2, + ACTIONS(1037), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(498), 2, + STATE(503), 2, sym_comment, sym_include, - STATE(1547), 2, + STATE(769), 2, sym_double_quoted_string, sym_single_quoted_string, - ACTIONS(1003), 4, + ACTIONS(1007), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(1582), 4, + STATE(748), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(1555), 18, + STATE(746), 18, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -66081,66 +66790,66 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(353), 1, + ACTIONS(1001), 1, sym_identifier, - ACTIONS(355), 1, + ACTIONS(1003), 1, anon_sym_LBRACE, - ACTIONS(357), 1, + ACTIONS(1005), 1, sym_null_expression, - ACTIONS(361), 1, + ACTIONS(1009), 1, sym__integer_literal, - ACTIONS(363), 1, + ACTIONS(1011), 1, anon_sym_DQUOTE, - ACTIONS(365), 1, + ACTIONS(1013), 1, anon_sym_SQUOTE, - ACTIONS(367), 1, + ACTIONS(1015), 1, anon_sym_LPAREN, - ACTIONS(371), 1, + ACTIONS(1017), 1, aux_sym_unary_expression_token1, - ACTIONS(373), 1, + ACTIONS(1019), 1, aux_sym_unary_expression_token2, - ACTIONS(375), 1, + ACTIONS(1021), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(377), 1, + ACTIONS(1023), 1, aux_sym_current_changed_expression_token1, - ACTIONS(379), 1, + ACTIONS(1025), 1, aux_sym_locked_expression_token1, - ACTIONS(383), 1, + ACTIONS(1027), 1, + aux_sym_input_expression_token1, + ACTIONS(1029), 1, aux_sym_scope_tuning_token1, - ACTIONS(387), 1, + ACTIONS(1031), 1, aux_sym_if_statement_token1, - ACTIONS(389), 1, + ACTIONS(1033), 1, aux_sym_can_find_expression_token1, - ACTIONS(393), 1, + ACTIONS(1035), 1, aux_sym_accumulate_expression_token1, - ACTIONS(429), 1, - aux_sym_input_expression_token1, - STATE(36), 1, - sym__decimal_literal, - STATE(38), 1, - sym_object_access, - STATE(629), 1, + STATE(646), 1, sym__expression, - ACTIONS(395), 2, + STATE(735), 1, + sym_object_access, + STATE(770), 1, + sym__decimal_literal, + ACTIONS(1037), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(21), 2, - sym_double_quoted_string, - sym_single_quoted_string, - STATE(499), 2, + STATE(504), 2, sym_comment, sym_include, - ACTIONS(359), 4, + STATE(769), 2, + sym_double_quoted_string, + sym_single_quoted_string, + ACTIONS(1007), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(37), 4, + STATE(748), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(13), 18, + STATE(746), 18, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -66164,66 +66873,66 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(353), 1, + ACTIONS(959), 1, sym_identifier, - ACTIONS(355), 1, + ACTIONS(961), 1, anon_sym_LBRACE, - ACTIONS(357), 1, + ACTIONS(963), 1, sym_null_expression, - ACTIONS(361), 1, + ACTIONS(967), 1, sym__integer_literal, - ACTIONS(363), 1, + ACTIONS(969), 1, anon_sym_DQUOTE, - ACTIONS(365), 1, + ACTIONS(971), 1, anon_sym_SQUOTE, - ACTIONS(367), 1, + ACTIONS(973), 1, anon_sym_LPAREN, - ACTIONS(371), 1, + ACTIONS(975), 1, aux_sym_unary_expression_token1, - ACTIONS(373), 1, + ACTIONS(977), 1, aux_sym_unary_expression_token2, - ACTIONS(375), 1, + ACTIONS(979), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(377), 1, + ACTIONS(981), 1, aux_sym_current_changed_expression_token1, - ACTIONS(379), 1, + ACTIONS(983), 1, aux_sym_locked_expression_token1, - ACTIONS(383), 1, + ACTIONS(985), 1, + aux_sym_input_expression_token1, + ACTIONS(987), 1, aux_sym_scope_tuning_token1, - ACTIONS(387), 1, + ACTIONS(989), 1, aux_sym_if_statement_token1, - ACTIONS(389), 1, + ACTIONS(991), 1, aux_sym_can_find_expression_token1, - ACTIONS(393), 1, + ACTIONS(993), 1, aux_sym_accumulate_expression_token1, - ACTIONS(429), 1, - aux_sym_input_expression_token1, - STATE(36), 1, - sym__decimal_literal, - STATE(38), 1, - sym_object_access, - STATE(1427), 1, + STATE(803), 1, sym__expression, - ACTIONS(395), 2, + STATE(1033), 1, + sym_object_access, + STATE(1335), 1, + sym__decimal_literal, + ACTIONS(995), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(21), 2, - sym_double_quoted_string, - sym_single_quoted_string, - STATE(500), 2, + STATE(505), 2, sym_comment, sym_include, - ACTIONS(359), 4, + STATE(1474), 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(37), 4, + STATE(1322), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(13), 18, + STATE(1384), 18, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -66247,66 +66956,66 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(921), 1, + ACTIONS(337), 1, sym_identifier, - ACTIONS(923), 1, + ACTIONS(339), 1, anon_sym_LBRACE, - ACTIONS(925), 1, + ACTIONS(341), 1, sym_null_expression, - ACTIONS(929), 1, + ACTIONS(345), 1, sym__integer_literal, - ACTIONS(931), 1, + ACTIONS(347), 1, anon_sym_DQUOTE, - ACTIONS(933), 1, + ACTIONS(349), 1, anon_sym_SQUOTE, - ACTIONS(935), 1, + ACTIONS(351), 1, anon_sym_LPAREN, - ACTIONS(937), 1, + ACTIONS(355), 1, aux_sym_unary_expression_token1, - ACTIONS(939), 1, + ACTIONS(357), 1, aux_sym_unary_expression_token2, - ACTIONS(941), 1, + ACTIONS(359), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(943), 1, + ACTIONS(361), 1, aux_sym_current_changed_expression_token1, - ACTIONS(945), 1, + ACTIONS(363), 1, aux_sym_locked_expression_token1, - ACTIONS(947), 1, - aux_sym_input_expression_token1, - ACTIONS(949), 1, + ACTIONS(367), 1, aux_sym_scope_tuning_token1, - ACTIONS(951), 1, + ACTIONS(371), 1, aux_sym_if_statement_token1, - ACTIONS(953), 1, + ACTIONS(373), 1, aux_sym_can_find_expression_token1, - ACTIONS(955), 1, + ACTIONS(377), 1, aux_sym_accumulate_expression_token1, - STATE(786), 1, - sym__expression, - STATE(898), 1, - sym_object_access, - STATE(1386), 1, + ACTIONS(431), 1, + aux_sym_input_expression_token1, + STATE(23), 1, sym__decimal_literal, - ACTIONS(957), 2, + STATE(29), 1, + sym_object_access, + STATE(596), 1, + sym__expression, + ACTIONS(379), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(501), 2, - sym_comment, - sym_include, - STATE(1158), 2, + STATE(18), 2, sym_double_quoted_string, sym_single_quoted_string, - ACTIONS(927), 4, + STATE(506), 2, + sym_comment, + sym_include, + ACTIONS(343), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(1384), 4, + STATE(24), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(1396), 18, + STATE(20), 18, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -66330,66 +67039,66 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(959), 1, + ACTIONS(337), 1, sym_identifier, - ACTIONS(961), 1, + ACTIONS(339), 1, anon_sym_LBRACE, - ACTIONS(963), 1, + ACTIONS(341), 1, sym_null_expression, - ACTIONS(967), 1, + ACTIONS(345), 1, sym__integer_literal, - ACTIONS(969), 1, + ACTIONS(347), 1, anon_sym_DQUOTE, - ACTIONS(971), 1, + ACTIONS(349), 1, anon_sym_SQUOTE, - ACTIONS(973), 1, + ACTIONS(351), 1, anon_sym_LPAREN, - ACTIONS(975), 1, + ACTIONS(355), 1, aux_sym_unary_expression_token1, - ACTIONS(977), 1, + ACTIONS(357), 1, aux_sym_unary_expression_token2, - ACTIONS(979), 1, + ACTIONS(359), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(981), 1, + ACTIONS(361), 1, aux_sym_current_changed_expression_token1, - ACTIONS(983), 1, + ACTIONS(363), 1, aux_sym_locked_expression_token1, - ACTIONS(985), 1, - aux_sym_input_expression_token1, - ACTIONS(987), 1, + ACTIONS(367), 1, aux_sym_scope_tuning_token1, - ACTIONS(989), 1, + ACTIONS(371), 1, aux_sym_if_statement_token1, - ACTIONS(991), 1, + ACTIONS(373), 1, aux_sym_can_find_expression_token1, - ACTIONS(993), 1, + ACTIONS(377), 1, aux_sym_accumulate_expression_token1, - STATE(833), 1, - sym__expression, - STATE(1553), 1, - sym_object_access, - STATE(1596), 1, + ACTIONS(431), 1, + aux_sym_input_expression_token1, + STATE(23), 1, sym__decimal_literal, - ACTIONS(995), 2, + STATE(29), 1, + sym_object_access, + STATE(53), 1, + sym__expression, + ACTIONS(379), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(502), 2, - sym_comment, - sym_include, - STATE(1594), 2, + STATE(18), 2, sym_double_quoted_string, sym_single_quoted_string, - ACTIONS(965), 4, + STATE(507), 2, + sym_comment, + sym_include, + ACTIONS(343), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(1592), 4, + STATE(24), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(1602), 18, + STATE(20), 18, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -66413,66 +67122,66 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(959), 1, + ACTIONS(337), 1, sym_identifier, - ACTIONS(961), 1, + ACTIONS(339), 1, anon_sym_LBRACE, - ACTIONS(963), 1, + ACTIONS(341), 1, sym_null_expression, - ACTIONS(967), 1, + ACTIONS(345), 1, sym__integer_literal, - ACTIONS(969), 1, + ACTIONS(347), 1, anon_sym_DQUOTE, - ACTIONS(971), 1, + ACTIONS(349), 1, anon_sym_SQUOTE, - ACTIONS(973), 1, + ACTIONS(351), 1, anon_sym_LPAREN, - ACTIONS(975), 1, + ACTIONS(355), 1, aux_sym_unary_expression_token1, - ACTIONS(977), 1, + ACTIONS(357), 1, aux_sym_unary_expression_token2, - ACTIONS(979), 1, + ACTIONS(359), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(981), 1, + ACTIONS(361), 1, aux_sym_current_changed_expression_token1, - ACTIONS(983), 1, + ACTIONS(363), 1, aux_sym_locked_expression_token1, - ACTIONS(985), 1, - aux_sym_input_expression_token1, - ACTIONS(987), 1, + ACTIONS(367), 1, aux_sym_scope_tuning_token1, - ACTIONS(989), 1, + ACTIONS(371), 1, aux_sym_if_statement_token1, - ACTIONS(991), 1, + ACTIONS(373), 1, aux_sym_can_find_expression_token1, - ACTIONS(993), 1, + ACTIONS(377), 1, aux_sym_accumulate_expression_token1, - STATE(832), 1, - sym__expression, - STATE(1553), 1, - sym_object_access, - STATE(1596), 1, + ACTIONS(431), 1, + aux_sym_input_expression_token1, + STATE(23), 1, sym__decimal_literal, - ACTIONS(995), 2, + STATE(29), 1, + sym_object_access, + STATE(1377), 1, + sym__expression, + ACTIONS(379), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(503), 2, - sym_comment, - sym_include, - STATE(1594), 2, + STATE(18), 2, sym_double_quoted_string, sym_single_quoted_string, - ACTIONS(965), 4, + STATE(508), 2, + sym_comment, + sym_include, + ACTIONS(343), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(1592), 4, + STATE(24), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(1602), 18, + STATE(20), 18, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -66496,66 +67205,66 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(353), 1, + ACTIONS(1001), 1, sym_identifier, - ACTIONS(355), 1, + ACTIONS(1003), 1, anon_sym_LBRACE, - ACTIONS(357), 1, + ACTIONS(1005), 1, sym_null_expression, - ACTIONS(361), 1, + ACTIONS(1009), 1, sym__integer_literal, - ACTIONS(363), 1, + ACTIONS(1011), 1, anon_sym_DQUOTE, - ACTIONS(365), 1, + ACTIONS(1013), 1, anon_sym_SQUOTE, - ACTIONS(367), 1, + ACTIONS(1015), 1, anon_sym_LPAREN, - ACTIONS(371), 1, + ACTIONS(1017), 1, aux_sym_unary_expression_token1, - ACTIONS(373), 1, + ACTIONS(1019), 1, aux_sym_unary_expression_token2, - ACTIONS(375), 1, + ACTIONS(1021), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(377), 1, + ACTIONS(1023), 1, aux_sym_current_changed_expression_token1, - ACTIONS(379), 1, + ACTIONS(1025), 1, aux_sym_locked_expression_token1, - ACTIONS(383), 1, + ACTIONS(1027), 1, + aux_sym_input_expression_token1, + ACTIONS(1029), 1, aux_sym_scope_tuning_token1, - ACTIONS(387), 1, + ACTIONS(1031), 1, aux_sym_if_statement_token1, - ACTIONS(389), 1, + ACTIONS(1033), 1, aux_sym_can_find_expression_token1, - ACTIONS(393), 1, + ACTIONS(1035), 1, aux_sym_accumulate_expression_token1, - ACTIONS(429), 1, - aux_sym_input_expression_token1, - STATE(36), 1, - sym__decimal_literal, - STATE(38), 1, - sym_object_access, - STATE(548), 1, + STATE(660), 1, sym__expression, - ACTIONS(395), 2, + STATE(735), 1, + sym_object_access, + STATE(770), 1, + sym__decimal_literal, + ACTIONS(1037), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(21), 2, - sym_double_quoted_string, - sym_single_quoted_string, - STATE(504), 2, + STATE(509), 2, sym_comment, sym_include, - ACTIONS(359), 4, + STATE(769), 2, + sym_double_quoted_string, + sym_single_quoted_string, + ACTIONS(1007), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(37), 4, + STATE(748), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(13), 18, + STATE(746), 18, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -66579,66 +67288,66 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(353), 1, + ACTIONS(337), 1, sym_identifier, - ACTIONS(355), 1, + ACTIONS(339), 1, anon_sym_LBRACE, - ACTIONS(357), 1, + ACTIONS(341), 1, sym_null_expression, - ACTIONS(361), 1, + ACTIONS(345), 1, sym__integer_literal, - ACTIONS(363), 1, + ACTIONS(347), 1, anon_sym_DQUOTE, - ACTIONS(365), 1, + ACTIONS(349), 1, anon_sym_SQUOTE, - ACTIONS(367), 1, + ACTIONS(351), 1, anon_sym_LPAREN, - ACTIONS(371), 1, + ACTIONS(355), 1, aux_sym_unary_expression_token1, - ACTIONS(373), 1, + ACTIONS(357), 1, aux_sym_unary_expression_token2, - ACTIONS(375), 1, + ACTIONS(359), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(377), 1, + ACTIONS(361), 1, aux_sym_current_changed_expression_token1, - ACTIONS(379), 1, + ACTIONS(363), 1, aux_sym_locked_expression_token1, - ACTIONS(383), 1, + ACTIONS(367), 1, aux_sym_scope_tuning_token1, - ACTIONS(387), 1, + ACTIONS(371), 1, aux_sym_if_statement_token1, - ACTIONS(389), 1, + ACTIONS(373), 1, aux_sym_can_find_expression_token1, - ACTIONS(393), 1, + ACTIONS(377), 1, aux_sym_accumulate_expression_token1, - ACTIONS(429), 1, + ACTIONS(431), 1, aux_sym_input_expression_token1, - STATE(36), 1, + STATE(23), 1, sym__decimal_literal, - STATE(38), 1, + STATE(29), 1, sym_object_access, - STATE(1277), 1, + STATE(584), 1, sym__expression, - ACTIONS(395), 2, + ACTIONS(379), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(21), 2, + STATE(18), 2, sym_double_quoted_string, sym_single_quoted_string, - STATE(505), 2, + STATE(510), 2, sym_comment, sym_include, - ACTIONS(359), 4, + ACTIONS(343), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(37), 4, + STATE(24), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(13), 18, + STATE(20), 18, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -66662,66 +67371,66 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(959), 1, + ACTIONS(337), 1, sym_identifier, - ACTIONS(961), 1, + ACTIONS(339), 1, anon_sym_LBRACE, - ACTIONS(963), 1, + ACTIONS(341), 1, sym_null_expression, - ACTIONS(967), 1, + ACTIONS(345), 1, sym__integer_literal, - ACTIONS(969), 1, + ACTIONS(347), 1, anon_sym_DQUOTE, - ACTIONS(971), 1, + ACTIONS(349), 1, anon_sym_SQUOTE, - ACTIONS(973), 1, + ACTIONS(351), 1, anon_sym_LPAREN, - ACTIONS(975), 1, + ACTIONS(355), 1, aux_sym_unary_expression_token1, - ACTIONS(977), 1, + ACTIONS(357), 1, aux_sym_unary_expression_token2, - ACTIONS(979), 1, + ACTIONS(359), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(981), 1, + ACTIONS(361), 1, aux_sym_current_changed_expression_token1, - ACTIONS(983), 1, + ACTIONS(363), 1, aux_sym_locked_expression_token1, - ACTIONS(985), 1, - aux_sym_input_expression_token1, - ACTIONS(987), 1, + ACTIONS(367), 1, aux_sym_scope_tuning_token1, - ACTIONS(989), 1, + ACTIONS(371), 1, aux_sym_if_statement_token1, - ACTIONS(991), 1, + ACTIONS(373), 1, aux_sym_can_find_expression_token1, - ACTIONS(993), 1, + ACTIONS(377), 1, aux_sym_accumulate_expression_token1, - STATE(831), 1, - sym__expression, - STATE(1553), 1, - sym_object_access, - STATE(1596), 1, + ACTIONS(431), 1, + aux_sym_input_expression_token1, + STATE(23), 1, sym__decimal_literal, - ACTIONS(995), 2, + STATE(29), 1, + sym_object_access, + STATE(49), 1, + sym__expression, + ACTIONS(379), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(506), 2, - sym_comment, - sym_include, - STATE(1594), 2, + STATE(18), 2, sym_double_quoted_string, sym_single_quoted_string, - ACTIONS(965), 4, + STATE(511), 2, + sym_comment, + sym_include, + ACTIONS(343), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(1592), 4, + STATE(24), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(1602), 18, + STATE(20), 18, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -66745,66 +67454,66 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(1035), 1, + ACTIONS(337), 1, sym_identifier, - ACTIONS(1037), 1, + ACTIONS(339), 1, anon_sym_LBRACE, - ACTIONS(1039), 1, + ACTIONS(341), 1, sym_null_expression, - ACTIONS(1043), 1, + ACTIONS(345), 1, sym__integer_literal, - ACTIONS(1045), 1, + ACTIONS(347), 1, anon_sym_DQUOTE, - ACTIONS(1047), 1, + ACTIONS(349), 1, anon_sym_SQUOTE, - ACTIONS(1049), 1, + ACTIONS(351), 1, anon_sym_LPAREN, - ACTIONS(1051), 1, + ACTIONS(355), 1, aux_sym_unary_expression_token1, - ACTIONS(1053), 1, + ACTIONS(357), 1, aux_sym_unary_expression_token2, - ACTIONS(1055), 1, + ACTIONS(359), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(1057), 1, + ACTIONS(361), 1, aux_sym_current_changed_expression_token1, - ACTIONS(1059), 1, + ACTIONS(363), 1, aux_sym_locked_expression_token1, - ACTIONS(1061), 1, - aux_sym_input_expression_token1, - ACTIONS(1063), 1, + ACTIONS(367), 1, aux_sym_scope_tuning_token1, - ACTIONS(1065), 1, + ACTIONS(371), 1, aux_sym_if_statement_token1, - ACTIONS(1067), 1, + ACTIONS(373), 1, aux_sym_can_find_expression_token1, - ACTIONS(1069), 1, + ACTIONS(377), 1, aux_sym_accumulate_expression_token1, - STATE(616), 1, - sym__expression, - STATE(642), 1, - sym_object_access, - STATE(699), 1, + ACTIONS(431), 1, + aux_sym_input_expression_token1, + STATE(23), 1, sym__decimal_literal, - ACTIONS(1071), 2, + STATE(29), 1, + sym_object_access, + STATE(48), 1, + sym__expression, + ACTIONS(379), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(507), 2, - sym_comment, - sym_include, - STATE(700), 2, + STATE(18), 2, sym_double_quoted_string, sym_single_quoted_string, - ACTIONS(1041), 4, + STATE(512), 2, + sym_comment, + sym_include, + ACTIONS(343), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(696), 4, + STATE(24), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(689), 18, + STATE(20), 18, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -66828,66 +67537,66 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(1035), 1, + ACTIONS(1001), 1, sym_identifier, - ACTIONS(1037), 1, + ACTIONS(1003), 1, anon_sym_LBRACE, - ACTIONS(1039), 1, + ACTIONS(1005), 1, sym_null_expression, - ACTIONS(1043), 1, + ACTIONS(1009), 1, sym__integer_literal, - ACTIONS(1045), 1, + ACTIONS(1011), 1, anon_sym_DQUOTE, - ACTIONS(1047), 1, + ACTIONS(1013), 1, anon_sym_SQUOTE, - ACTIONS(1049), 1, + ACTIONS(1015), 1, anon_sym_LPAREN, - ACTIONS(1051), 1, + ACTIONS(1017), 1, aux_sym_unary_expression_token1, - ACTIONS(1053), 1, + ACTIONS(1019), 1, aux_sym_unary_expression_token2, - ACTIONS(1055), 1, + ACTIONS(1021), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(1057), 1, + ACTIONS(1023), 1, aux_sym_current_changed_expression_token1, - ACTIONS(1059), 1, + ACTIONS(1025), 1, aux_sym_locked_expression_token1, - ACTIONS(1061), 1, + ACTIONS(1027), 1, aux_sym_input_expression_token1, - ACTIONS(1063), 1, + ACTIONS(1029), 1, aux_sym_scope_tuning_token1, - ACTIONS(1065), 1, + ACTIONS(1031), 1, aux_sym_if_statement_token1, - ACTIONS(1067), 1, + ACTIONS(1033), 1, aux_sym_can_find_expression_token1, - ACTIONS(1069), 1, + ACTIONS(1035), 1, aux_sym_accumulate_expression_token1, - STATE(615), 1, + STATE(645), 1, sym__expression, - STATE(642), 1, + STATE(735), 1, sym_object_access, - STATE(699), 1, + STATE(770), 1, sym__decimal_literal, - ACTIONS(1071), 2, + ACTIONS(1037), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(508), 2, + STATE(513), 2, sym_comment, sym_include, - STATE(700), 2, + STATE(769), 2, sym_double_quoted_string, sym_single_quoted_string, - ACTIONS(1041), 4, + ACTIONS(1007), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(696), 4, + STATE(748), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(689), 18, + STATE(746), 18, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -66911,66 +67620,66 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(353), 1, + ACTIONS(337), 1, sym_identifier, - ACTIONS(355), 1, + ACTIONS(339), 1, anon_sym_LBRACE, - ACTIONS(357), 1, + ACTIONS(341), 1, sym_null_expression, - ACTIONS(361), 1, + ACTIONS(345), 1, sym__integer_literal, - ACTIONS(363), 1, + ACTIONS(347), 1, anon_sym_DQUOTE, - ACTIONS(365), 1, + ACTIONS(349), 1, anon_sym_SQUOTE, - ACTIONS(367), 1, + ACTIONS(351), 1, anon_sym_LPAREN, - ACTIONS(371), 1, + ACTIONS(355), 1, aux_sym_unary_expression_token1, - ACTIONS(373), 1, + ACTIONS(357), 1, aux_sym_unary_expression_token2, - ACTIONS(375), 1, + ACTIONS(359), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(377), 1, + ACTIONS(361), 1, aux_sym_current_changed_expression_token1, - ACTIONS(379), 1, + ACTIONS(363), 1, aux_sym_locked_expression_token1, - ACTIONS(383), 1, + ACTIONS(367), 1, aux_sym_scope_tuning_token1, - ACTIONS(387), 1, + ACTIONS(371), 1, aux_sym_if_statement_token1, - ACTIONS(389), 1, + ACTIONS(373), 1, aux_sym_can_find_expression_token1, - ACTIONS(393), 1, + ACTIONS(377), 1, aux_sym_accumulate_expression_token1, - ACTIONS(429), 1, + ACTIONS(431), 1, aux_sym_input_expression_token1, - STATE(36), 1, + STATE(23), 1, sym__decimal_literal, - STATE(38), 1, + STATE(29), 1, sym_object_access, - STATE(775), 1, + STATE(788), 1, sym__expression, - ACTIONS(395), 2, + ACTIONS(379), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(21), 2, + STATE(18), 2, sym_double_quoted_string, sym_single_quoted_string, - STATE(509), 2, + STATE(514), 2, sym_comment, sym_include, - ACTIONS(359), 4, + ACTIONS(343), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(37), 4, + STATE(24), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(13), 18, + STATE(20), 18, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -66994,66 +67703,66 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(1035), 1, + ACTIONS(635), 1, sym_identifier, - ACTIONS(1037), 1, + ACTIONS(637), 1, anon_sym_LBRACE, - ACTIONS(1039), 1, + ACTIONS(641), 1, sym_null_expression, - ACTIONS(1043), 1, + ACTIONS(645), 1, sym__integer_literal, - ACTIONS(1045), 1, + ACTIONS(647), 1, anon_sym_DQUOTE, - ACTIONS(1047), 1, + ACTIONS(649), 1, anon_sym_SQUOTE, - ACTIONS(1049), 1, - anon_sym_LPAREN, - ACTIONS(1051), 1, + ACTIONS(653), 1, aux_sym_unary_expression_token1, - ACTIONS(1053), 1, + ACTIONS(655), 1, aux_sym_unary_expression_token2, - ACTIONS(1055), 1, + ACTIONS(657), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(1057), 1, + ACTIONS(659), 1, aux_sym_current_changed_expression_token1, - ACTIONS(1059), 1, + ACTIONS(661), 1, aux_sym_locked_expression_token1, - ACTIONS(1061), 1, + ACTIONS(663), 1, aux_sym_input_expression_token1, - ACTIONS(1063), 1, + ACTIONS(667), 1, aux_sym_scope_tuning_token1, - ACTIONS(1065), 1, + ACTIONS(669), 1, aux_sym_if_statement_token1, - ACTIONS(1067), 1, + ACTIONS(673), 1, aux_sym_can_find_expression_token1, - ACTIONS(1069), 1, + ACTIONS(675), 1, aux_sym_accumulate_expression_token1, - STATE(614), 1, + ACTIONS(839), 1, + anon_sym_LPAREN, + STATE(538), 1, sym__expression, - STATE(642), 1, - sym_object_access, - STATE(699), 1, + STATE(565), 1, sym__decimal_literal, - ACTIONS(1071), 2, + STATE(587), 1, + sym_object_access, + ACTIONS(677), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(510), 2, + STATE(515), 2, sym_comment, sym_include, - STATE(700), 2, + STATE(580), 2, sym_double_quoted_string, sym_single_quoted_string, - ACTIONS(1041), 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(696), 4, + STATE(581), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(689), 18, + STATE(566), 18, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -67077,66 +67786,66 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(353), 1, + ACTIONS(337), 1, sym_identifier, - ACTIONS(355), 1, + ACTIONS(339), 1, anon_sym_LBRACE, - ACTIONS(357), 1, + ACTIONS(341), 1, sym_null_expression, - ACTIONS(361), 1, + ACTIONS(345), 1, sym__integer_literal, - ACTIONS(363), 1, + ACTIONS(347), 1, anon_sym_DQUOTE, - ACTIONS(365), 1, + ACTIONS(349), 1, anon_sym_SQUOTE, - ACTIONS(367), 1, + ACTIONS(351), 1, anon_sym_LPAREN, - ACTIONS(371), 1, + ACTIONS(355), 1, aux_sym_unary_expression_token1, - ACTIONS(373), 1, + ACTIONS(357), 1, aux_sym_unary_expression_token2, - ACTIONS(375), 1, + ACTIONS(359), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(377), 1, + ACTIONS(361), 1, aux_sym_current_changed_expression_token1, - ACTIONS(379), 1, + ACTIONS(363), 1, aux_sym_locked_expression_token1, - ACTIONS(383), 1, + ACTIONS(367), 1, aux_sym_scope_tuning_token1, - ACTIONS(387), 1, + ACTIONS(371), 1, aux_sym_if_statement_token1, - ACTIONS(389), 1, + ACTIONS(373), 1, aux_sym_can_find_expression_token1, - ACTIONS(393), 1, + ACTIONS(377), 1, aux_sym_accumulate_expression_token1, - ACTIONS(429), 1, + ACTIONS(431), 1, aux_sym_input_expression_token1, - STATE(36), 1, + STATE(23), 1, sym__decimal_literal, - STATE(38), 1, + STATE(29), 1, sym_object_access, - STATE(658), 1, + STATE(54), 1, sym__expression, - ACTIONS(395), 2, + ACTIONS(379), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(21), 2, + STATE(18), 2, sym_double_quoted_string, sym_single_quoted_string, - STATE(511), 2, + STATE(516), 2, sym_comment, sym_include, - ACTIONS(359), 4, + ACTIONS(343), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(37), 4, + STATE(24), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(13), 18, + STATE(20), 18, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -67160,66 +67869,66 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(353), 1, + ACTIONS(635), 1, sym_identifier, - ACTIONS(355), 1, + ACTIONS(637), 1, anon_sym_LBRACE, - ACTIONS(357), 1, + ACTIONS(641), 1, sym_null_expression, - ACTIONS(361), 1, + ACTIONS(645), 1, sym__integer_literal, - ACTIONS(363), 1, + ACTIONS(647), 1, anon_sym_DQUOTE, - ACTIONS(365), 1, + ACTIONS(649), 1, anon_sym_SQUOTE, - ACTIONS(367), 1, - anon_sym_LPAREN, - ACTIONS(371), 1, + ACTIONS(653), 1, aux_sym_unary_expression_token1, - ACTIONS(373), 1, + ACTIONS(655), 1, aux_sym_unary_expression_token2, - ACTIONS(375), 1, + ACTIONS(657), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(377), 1, + ACTIONS(659), 1, aux_sym_current_changed_expression_token1, - ACTIONS(379), 1, + ACTIONS(661), 1, aux_sym_locked_expression_token1, - ACTIONS(383), 1, + ACTIONS(663), 1, + aux_sym_input_expression_token1, + ACTIONS(667), 1, aux_sym_scope_tuning_token1, - ACTIONS(387), 1, + ACTIONS(669), 1, aux_sym_if_statement_token1, - ACTIONS(389), 1, + ACTIONS(673), 1, aux_sym_can_find_expression_token1, - ACTIONS(393), 1, + ACTIONS(675), 1, aux_sym_accumulate_expression_token1, - ACTIONS(429), 1, - aux_sym_input_expression_token1, - STATE(36), 1, + ACTIONS(839), 1, + anon_sym_LPAREN, + STATE(539), 1, + sym__expression, + STATE(565), 1, sym__decimal_literal, - STATE(38), 1, + STATE(587), 1, sym_object_access, - STATE(702), 1, - sym__expression, - ACTIONS(395), 2, + ACTIONS(677), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(21), 2, - sym_double_quoted_string, - sym_single_quoted_string, - STATE(512), 2, + STATE(517), 2, sym_comment, sym_include, - ACTIONS(359), 4, + STATE(580), 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(37), 4, + STATE(581), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(13), 18, + STATE(566), 18, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -67243,66 +67952,66 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(921), 1, - sym_identifier, - ACTIONS(923), 1, + ACTIONS(339), 1, anon_sym_LBRACE, - ACTIONS(925), 1, + ACTIONS(341), 1, sym_null_expression, - ACTIONS(929), 1, + ACTIONS(345), 1, sym__integer_literal, - ACTIONS(931), 1, + ACTIONS(347), 1, anon_sym_DQUOTE, - ACTIONS(933), 1, + ACTIONS(349), 1, anon_sym_SQUOTE, - ACTIONS(935), 1, + ACTIONS(351), 1, anon_sym_LPAREN, - ACTIONS(937), 1, + ACTIONS(355), 1, aux_sym_unary_expression_token1, - ACTIONS(939), 1, + ACTIONS(357), 1, aux_sym_unary_expression_token2, - ACTIONS(941), 1, + ACTIONS(359), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(943), 1, + ACTIONS(361), 1, aux_sym_current_changed_expression_token1, - ACTIONS(945), 1, + ACTIONS(363), 1, aux_sym_locked_expression_token1, - ACTIONS(947), 1, - aux_sym_input_expression_token1, - ACTIONS(949), 1, + ACTIONS(367), 1, aux_sym_scope_tuning_token1, - ACTIONS(951), 1, + ACTIONS(371), 1, aux_sym_if_statement_token1, - ACTIONS(953), 1, + ACTIONS(373), 1, aux_sym_can_find_expression_token1, - ACTIONS(955), 1, + ACTIONS(377), 1, aux_sym_accumulate_expression_token1, - STATE(680), 1, - sym__expression, - STATE(898), 1, - sym_object_access, - STATE(1386), 1, + ACTIONS(431), 1, + aux_sym_input_expression_token1, + ACTIONS(1119), 1, + sym_identifier, + STATE(23), 1, sym__decimal_literal, - ACTIONS(957), 2, + STATE(29), 1, + sym_object_access, + STATE(1544), 1, + sym__expression, + ACTIONS(379), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(513), 2, - sym_comment, - sym_include, - STATE(1158), 2, + STATE(18), 2, sym_double_quoted_string, sym_single_quoted_string, - ACTIONS(927), 4, + STATE(518), 2, + sym_comment, + sym_include, + ACTIONS(343), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(1384), 4, + STATE(24), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(1396), 18, + STATE(20), 18, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -67326,66 +68035,66 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(1035), 1, + ACTIONS(337), 1, sym_identifier, - ACTIONS(1037), 1, + ACTIONS(339), 1, anon_sym_LBRACE, - ACTIONS(1039), 1, + ACTIONS(341), 1, sym_null_expression, - ACTIONS(1043), 1, + ACTIONS(345), 1, sym__integer_literal, - ACTIONS(1045), 1, + ACTIONS(347), 1, anon_sym_DQUOTE, - ACTIONS(1047), 1, + ACTIONS(349), 1, anon_sym_SQUOTE, - ACTIONS(1049), 1, + ACTIONS(351), 1, anon_sym_LPAREN, - ACTIONS(1051), 1, + ACTIONS(355), 1, aux_sym_unary_expression_token1, - ACTIONS(1053), 1, + ACTIONS(357), 1, aux_sym_unary_expression_token2, - ACTIONS(1055), 1, + ACTIONS(359), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(1057), 1, + ACTIONS(361), 1, aux_sym_current_changed_expression_token1, - ACTIONS(1059), 1, + ACTIONS(363), 1, aux_sym_locked_expression_token1, - ACTIONS(1061), 1, - aux_sym_input_expression_token1, - ACTIONS(1063), 1, + ACTIONS(367), 1, aux_sym_scope_tuning_token1, - ACTIONS(1065), 1, + ACTIONS(371), 1, aux_sym_if_statement_token1, - ACTIONS(1067), 1, + ACTIONS(373), 1, aux_sym_can_find_expression_token1, - ACTIONS(1069), 1, + ACTIONS(377), 1, aux_sym_accumulate_expression_token1, - STATE(613), 1, - sym__expression, - STATE(642), 1, - sym_object_access, - STATE(699), 1, + ACTIONS(431), 1, + aux_sym_input_expression_token1, + STATE(23), 1, sym__decimal_literal, - ACTIONS(1071), 2, + STATE(29), 1, + sym_object_access, + STATE(654), 1, + sym__expression, + ACTIONS(379), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(514), 2, - sym_comment, - sym_include, - STATE(700), 2, + STATE(18), 2, sym_double_quoted_string, sym_single_quoted_string, - ACTIONS(1041), 4, + STATE(519), 2, + sym_comment, + sym_include, + ACTIONS(343), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(696), 4, + STATE(24), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(689), 18, + STATE(20), 18, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -67409,66 +68118,66 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(959), 1, + ACTIONS(337), 1, sym_identifier, - ACTIONS(961), 1, + ACTIONS(339), 1, anon_sym_LBRACE, - ACTIONS(963), 1, + ACTIONS(341), 1, sym_null_expression, - ACTIONS(967), 1, + ACTIONS(345), 1, sym__integer_literal, - ACTIONS(969), 1, + ACTIONS(347), 1, anon_sym_DQUOTE, - ACTIONS(971), 1, + ACTIONS(349), 1, anon_sym_SQUOTE, - ACTIONS(973), 1, + ACTIONS(351), 1, anon_sym_LPAREN, - ACTIONS(975), 1, + ACTIONS(355), 1, aux_sym_unary_expression_token1, - ACTIONS(977), 1, + ACTIONS(357), 1, aux_sym_unary_expression_token2, - ACTIONS(979), 1, + ACTIONS(359), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(981), 1, + ACTIONS(361), 1, aux_sym_current_changed_expression_token1, - ACTIONS(983), 1, + ACTIONS(363), 1, aux_sym_locked_expression_token1, - ACTIONS(985), 1, - aux_sym_input_expression_token1, - ACTIONS(987), 1, + ACTIONS(367), 1, aux_sym_scope_tuning_token1, - ACTIONS(989), 1, + ACTIONS(371), 1, aux_sym_if_statement_token1, - ACTIONS(991), 1, + ACTIONS(373), 1, aux_sym_can_find_expression_token1, - ACTIONS(993), 1, + ACTIONS(377), 1, aux_sym_accumulate_expression_token1, - STATE(830), 1, - sym__expression, - STATE(1553), 1, - sym_object_access, - STATE(1596), 1, + ACTIONS(431), 1, + aux_sym_input_expression_token1, + STATE(23), 1, sym__decimal_literal, - ACTIONS(995), 2, + STATE(29), 1, + sym_object_access, + STATE(676), 1, + sym__expression, + ACTIONS(379), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(515), 2, - sym_comment, - sym_include, - STATE(1594), 2, + STATE(18), 2, sym_double_quoted_string, sym_single_quoted_string, - ACTIONS(965), 4, + STATE(520), 2, + sym_comment, + sym_include, + ACTIONS(343), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(1592), 4, + STATE(24), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(1602), 18, + STATE(20), 18, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -67492,66 +68201,66 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(355), 1, + ACTIONS(959), 1, + sym_identifier, + ACTIONS(961), 1, anon_sym_LBRACE, - ACTIONS(357), 1, + ACTIONS(963), 1, sym_null_expression, - ACTIONS(361), 1, + ACTIONS(967), 1, sym__integer_literal, - ACTIONS(363), 1, + ACTIONS(969), 1, anon_sym_DQUOTE, - ACTIONS(365), 1, + ACTIONS(971), 1, anon_sym_SQUOTE, - ACTIONS(367), 1, + ACTIONS(973), 1, anon_sym_LPAREN, - ACTIONS(371), 1, + ACTIONS(975), 1, aux_sym_unary_expression_token1, - ACTIONS(373), 1, + ACTIONS(977), 1, aux_sym_unary_expression_token2, - ACTIONS(375), 1, + ACTIONS(979), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(377), 1, + ACTIONS(981), 1, aux_sym_current_changed_expression_token1, - ACTIONS(379), 1, + ACTIONS(983), 1, aux_sym_locked_expression_token1, - ACTIONS(383), 1, + ACTIONS(985), 1, + aux_sym_input_expression_token1, + ACTIONS(987), 1, aux_sym_scope_tuning_token1, - ACTIONS(387), 1, + ACTIONS(989), 1, aux_sym_if_statement_token1, - ACTIONS(389), 1, + ACTIONS(991), 1, aux_sym_can_find_expression_token1, - ACTIONS(393), 1, + ACTIONS(993), 1, aux_sym_accumulate_expression_token1, - ACTIONS(429), 1, - aux_sym_input_expression_token1, - ACTIONS(1119), 1, - sym_identifier, - STATE(36), 1, - sym__decimal_literal, - STATE(38), 1, - sym_object_access, - STATE(1173), 1, + STATE(687), 1, sym__expression, - ACTIONS(395), 2, + STATE(1033), 1, + sym_object_access, + STATE(1335), 1, + sym__decimal_literal, + ACTIONS(995), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(21), 2, - sym_double_quoted_string, - sym_single_quoted_string, - STATE(516), 2, + STATE(521), 2, sym_comment, sym_include, - ACTIONS(359), 4, + STATE(1474), 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(37), 4, + STATE(1322), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(13), 18, + STATE(1384), 18, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -67575,66 +68284,66 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(353), 1, + ACTIONS(337), 1, sym_identifier, - ACTIONS(355), 1, + ACTIONS(339), 1, anon_sym_LBRACE, - ACTIONS(357), 1, + ACTIONS(341), 1, sym_null_expression, - ACTIONS(361), 1, + ACTIONS(345), 1, sym__integer_literal, - ACTIONS(363), 1, + ACTIONS(347), 1, anon_sym_DQUOTE, - ACTIONS(365), 1, + ACTIONS(349), 1, anon_sym_SQUOTE, - ACTIONS(367), 1, + ACTIONS(351), 1, anon_sym_LPAREN, - ACTIONS(371), 1, + ACTIONS(355), 1, aux_sym_unary_expression_token1, - ACTIONS(373), 1, + ACTIONS(357), 1, aux_sym_unary_expression_token2, - ACTIONS(375), 1, + ACTIONS(359), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(377), 1, + ACTIONS(361), 1, aux_sym_current_changed_expression_token1, - ACTIONS(379), 1, + ACTIONS(363), 1, aux_sym_locked_expression_token1, - ACTIONS(383), 1, + ACTIONS(367), 1, aux_sym_scope_tuning_token1, - ACTIONS(387), 1, + ACTIONS(371), 1, aux_sym_if_statement_token1, - ACTIONS(389), 1, + ACTIONS(373), 1, aux_sym_can_find_expression_token1, - ACTIONS(393), 1, + ACTIONS(377), 1, aux_sym_accumulate_expression_token1, - ACTIONS(429), 1, + ACTIONS(431), 1, aux_sym_input_expression_token1, - STATE(36), 1, + STATE(23), 1, sym__decimal_literal, - STATE(38), 1, + STATE(29), 1, sym_object_access, - STATE(624), 1, + STATE(842), 1, sym__expression, - ACTIONS(395), 2, + ACTIONS(379), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(21), 2, + STATE(18), 2, sym_double_quoted_string, sym_single_quoted_string, - STATE(517), 2, + STATE(522), 2, sym_comment, sym_include, - ACTIONS(359), 4, + ACTIONS(343), 4, aux_sym_boolean_literal_token1, aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(37), 4, + STATE(24), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(13), 18, + STATE(20), 18, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -67658,66 +68367,66 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(353), 1, + ACTIONS(959), 1, sym_identifier, - ACTIONS(355), 1, + ACTIONS(961), 1, anon_sym_LBRACE, - ACTIONS(357), 1, + ACTIONS(963), 1, sym_null_expression, - ACTIONS(361), 1, + ACTIONS(967), 1, sym__integer_literal, - ACTIONS(363), 1, + ACTIONS(969), 1, anon_sym_DQUOTE, - ACTIONS(365), 1, + ACTIONS(971), 1, anon_sym_SQUOTE, - ACTIONS(367), 1, + ACTIONS(973), 1, anon_sym_LPAREN, - ACTIONS(371), 1, + ACTIONS(975), 1, aux_sym_unary_expression_token1, - ACTIONS(373), 1, + ACTIONS(977), 1, aux_sym_unary_expression_token2, - ACTIONS(375), 1, + ACTIONS(979), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(377), 1, + ACTIONS(981), 1, aux_sym_current_changed_expression_token1, - ACTIONS(379), 1, + ACTIONS(983), 1, aux_sym_locked_expression_token1, - ACTIONS(383), 1, + ACTIONS(985), 1, + aux_sym_input_expression_token1, + ACTIONS(987), 1, aux_sym_scope_tuning_token1, - ACTIONS(387), 1, + ACTIONS(989), 1, aux_sym_if_statement_token1, - ACTIONS(389), 1, + ACTIONS(991), 1, aux_sym_can_find_expression_token1, - ACTIONS(393), 1, + ACTIONS(993), 1, aux_sym_accumulate_expression_token1, - ACTIONS(429), 1, - aux_sym_input_expression_token1, - STATE(36), 1, - sym__decimal_literal, - STATE(38), 1, - sym_object_access, - STATE(1262), 1, + STATE(690), 1, sym__expression, - ACTIONS(395), 2, + STATE(1033), 1, + sym_object_access, + STATE(1335), 1, + sym__decimal_literal, + ACTIONS(995), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(21), 2, - sym_double_quoted_string, - sym_single_quoted_string, - STATE(518), 2, + STATE(523), 2, sym_comment, sym_include, - ACTIONS(359), 4, + STATE(1474), 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(37), 4, + STATE(1322), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(13), 18, + STATE(1384), 18, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -67741,66 +68450,66 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(353), 1, + ACTIONS(959), 1, sym_identifier, - ACTIONS(355), 1, + ACTIONS(961), 1, anon_sym_LBRACE, - ACTIONS(357), 1, + ACTIONS(963), 1, sym_null_expression, - ACTIONS(361), 1, + ACTIONS(967), 1, sym__integer_literal, - ACTIONS(363), 1, + ACTIONS(969), 1, anon_sym_DQUOTE, - ACTIONS(365), 1, + ACTIONS(971), 1, anon_sym_SQUOTE, - ACTIONS(367), 1, + ACTIONS(973), 1, anon_sym_LPAREN, - ACTIONS(371), 1, + ACTIONS(975), 1, aux_sym_unary_expression_token1, - ACTIONS(373), 1, + ACTIONS(977), 1, aux_sym_unary_expression_token2, - ACTIONS(375), 1, + ACTIONS(979), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(377), 1, + ACTIONS(981), 1, aux_sym_current_changed_expression_token1, - ACTIONS(379), 1, + ACTIONS(983), 1, aux_sym_locked_expression_token1, - ACTIONS(383), 1, + ACTIONS(985), 1, + aux_sym_input_expression_token1, + ACTIONS(987), 1, aux_sym_scope_tuning_token1, - ACTIONS(387), 1, + ACTIONS(989), 1, aux_sym_if_statement_token1, - ACTIONS(389), 1, + ACTIONS(991), 1, aux_sym_can_find_expression_token1, - ACTIONS(393), 1, + ACTIONS(993), 1, aux_sym_accumulate_expression_token1, - ACTIONS(429), 1, - aux_sym_input_expression_token1, - STATE(36), 1, - sym__decimal_literal, - STATE(38), 1, - sym_object_access, - STATE(592), 1, + STATE(705), 1, sym__expression, - ACTIONS(395), 2, + STATE(1033), 1, + sym_object_access, + STATE(1335), 1, + sym__decimal_literal, + ACTIONS(995), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(21), 2, - sym_double_quoted_string, - sym_single_quoted_string, - STATE(519), 2, + STATE(524), 2, sym_comment, sym_include, - ACTIONS(359), 4, + STATE(1474), 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(37), 4, + STATE(1322), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(13), 18, + STATE(1384), 18, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -67824,66 +68533,66 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(353), 1, + ACTIONS(635), 1, sym_identifier, - ACTIONS(355), 1, + ACTIONS(637), 1, anon_sym_LBRACE, - ACTIONS(357), 1, + ACTIONS(641), 1, sym_null_expression, - ACTIONS(361), 1, + ACTIONS(645), 1, sym__integer_literal, - ACTIONS(363), 1, + ACTIONS(647), 1, anon_sym_DQUOTE, - ACTIONS(365), 1, + ACTIONS(649), 1, anon_sym_SQUOTE, - ACTIONS(367), 1, - anon_sym_LPAREN, - ACTIONS(371), 1, + ACTIONS(653), 1, aux_sym_unary_expression_token1, - ACTIONS(373), 1, + ACTIONS(655), 1, aux_sym_unary_expression_token2, - ACTIONS(375), 1, + ACTIONS(657), 1, aux_sym_ambiguous_expression_token1, - ACTIONS(377), 1, + ACTIONS(659), 1, aux_sym_current_changed_expression_token1, - ACTIONS(379), 1, + ACTIONS(661), 1, aux_sym_locked_expression_token1, - ACTIONS(383), 1, + ACTIONS(663), 1, + aux_sym_input_expression_token1, + ACTIONS(667), 1, aux_sym_scope_tuning_token1, - ACTIONS(387), 1, + ACTIONS(669), 1, aux_sym_if_statement_token1, - ACTIONS(389), 1, + ACTIONS(673), 1, aux_sym_can_find_expression_token1, - ACTIONS(393), 1, + ACTIONS(675), 1, aux_sym_accumulate_expression_token1, - ACTIONS(429), 1, - aux_sym_input_expression_token1, - STATE(36), 1, + ACTIONS(839), 1, + anon_sym_LPAREN, + STATE(527), 1, + sym__expression, + STATE(565), 1, sym__decimal_literal, - STATE(38), 1, + STATE(587), 1, sym_object_access, - STATE(784), 1, - sym__expression, - ACTIONS(395), 2, + ACTIONS(677), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(21), 2, - sym_double_quoted_string, - sym_single_quoted_string, - STATE(520), 2, + STATE(525), 2, sym_comment, sym_include, - ACTIONS(359), 4, + STATE(580), 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(37), 4, + STATE(581), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(13), 18, + STATE(566), 18, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -67941,19 +68650,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_can_find_expression_token1, ACTIONS(955), 1, aux_sym_accumulate_expression_token1, - STATE(679), 1, + STATE(822), 1, sym__expression, - STATE(898), 1, + STATE(1228), 1, sym_object_access, - STATE(1386), 1, + STATE(1581), 1, sym__decimal_literal, ACTIONS(957), 2, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - STATE(521), 2, + STATE(526), 2, sym_comment, sym_include, - STATE(1158), 2, + STATE(1569), 2, sym_double_quoted_string, sym_single_quoted_string, ACTIONS(927), 4, @@ -67961,12 +68670,12 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_boolean_literal_token2, aux_sym_boolean_literal_token3, aux_sym_boolean_literal_token4, - STATE(1384), 4, + STATE(1582), 4, sym_logical_expression, sym_additive_expression, sym_multiplicative_expression, sym_comparison_expression, - STATE(1396), 18, + STATE(1579), 18, sym_constant, sym_qualified_name, sym_boolean_literal, @@ -67990,27 +68699,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(445), 1, - sym__logical_operator, - STATE(456), 1, - sym__additive_operator, - STATE(457), 1, + STATE(372), 1, sym__multiplicative_operator, - STATE(479), 1, + STATE(375), 1, sym__comparison_operator, - ACTIONS(283), 2, + STATE(381), 1, + sym__logical_operator, + STATE(457), 1, + sym__additive_operator, + ACTIONS(227), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(295), 2, + ACTIONS(239), 2, sym__or_operator, sym__and_operator, ACTIONS(1123), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(522), 2, + STATE(527), 2, sym_comment, sym_include, - ACTIONS(291), 15, + ACTIONS(235), 15, anon_sym_LT, anon_sym_LT_EQ, anon_sym_LT_GT, @@ -68051,50 +68760,32 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_expression_token1, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - [25316] = 12, + [25316] = 10, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(445), 1, - sym__logical_operator, - STATE(456), 1, - sym__additive_operator, - STATE(457), 1, - sym__multiplicative_operator, - STATE(479), 1, - sym__comparison_operator, - ACTIONS(283), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(295), 2, + ACTIONS(1125), 1, + anon_sym_LPAREN, + ACTIONS(1127), 1, + sym__namedot, + ACTIONS(1129), 1, + sym__namecolon, + STATE(540), 1, + aux_sym_qualified_name_repeat1, + STATE(541), 1, + aux_sym_object_access_repeat1, + ACTIONS(67), 2, sym__or_operator, sym__and_operator, - ACTIONS(1123), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(523), 2, + STATE(528), 2, sym_comment, sym_include, - ACTIONS(291), 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(1125), 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, @@ -68104,45 +68795,61 @@ 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, aux_sym_accumulate_expression_token1, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - [25394] = 12, + [25390] = 12, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(445), 1, - sym__logical_operator, - STATE(456), 1, - sym__additive_operator, - STATE(457), 1, + STATE(372), 1, sym__multiplicative_operator, - STATE(479), 1, + STATE(375), 1, sym__comparison_operator, - ACTIONS(283), 2, + STATE(381), 1, + sym__logical_operator, + STATE(457), 1, + sym__additive_operator, + ACTIONS(227), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(295), 2, + ACTIONS(239), 2, sym__or_operator, sym__and_operator, ACTIONS(1123), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(524), 2, + STATE(529), 2, sym_comment, sym_include, - ACTIONS(291), 15, + ACTIONS(235), 15, anon_sym_LT, anon_sym_LT_EQ, anon_sym_LT_GT, @@ -68158,7 +68865,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(1127), 24, + ACTIONS(1131), 24, anon_sym_LBRACE, sym_identifier, sym__terminator, @@ -68183,29 +68890,32 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_expression_token1, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - [25472] = 10, + [25468] = 11, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(445), 1, - sym__logical_operator, - STATE(456), 1, - sym__additive_operator, - STATE(457), 1, + STATE(372), 1, sym__multiplicative_operator, - STATE(479), 1, + STATE(375), 1, sym__comparison_operator, - ACTIONS(283), 2, + STATE(381), 1, + sym__logical_operator, + STATE(457), 1, + sym__additive_operator, + ACTIONS(227), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(317), 2, + ACTIONS(257), 2, sym__or_operator, sym__and_operator, - STATE(525), 2, + ACTIONS(1123), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(530), 2, sym_comment, sym_include, - ACTIONS(319), 41, + ACTIONS(259), 39, anon_sym_LBRACE, sym_identifier, sym__terminator, @@ -68224,8 +68934,6 @@ 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, @@ -68247,30 +68955,50 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_expression_token1, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - [25546] = 9, + [25544] = 12, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(445), 1, - sym__logical_operator, - STATE(456), 1, - sym__additive_operator, - STATE(457), 1, + STATE(372), 1, sym__multiplicative_operator, - STATE(479), 1, + STATE(375), 1, sym__comparison_operator, - ACTIONS(315), 2, + STATE(381), 1, + sym__logical_operator, + STATE(457), 1, + sym__additive_operator, + ACTIONS(227), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(239), 2, sym__or_operator, sym__and_operator, - STATE(526), 2, + ACTIONS(1123), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(531), 2, sym_comment, sym_include, - ACTIONS(313), 43, - anon_sym_SLASH, + ACTIONS(235), 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, anon_sym_LBRACE, sym_identifier, - anon_sym_STAR, sym__terminator, sym_null_expression, aux_sym_boolean_literal_token1, @@ -68287,57 +69015,36 @@ 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, - [25618] = 11, + [25622] = 9, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(445), 1, - sym__logical_operator, - STATE(456), 1, - sym__additive_operator, - STATE(457), 1, + STATE(372), 1, sym__multiplicative_operator, - STATE(479), 1, + STATE(375), 1, sym__comparison_operator, - ACTIONS(283), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(307), 2, + STATE(381), 1, + sym__logical_operator, + STATE(457), 1, + sym__additive_operator, + ACTIONS(255), 2, sym__or_operator, sym__and_operator, - ACTIONS(1123), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(527), 2, + STATE(532), 2, sym_comment, sym_include, - ACTIONS(309), 39, + ACTIONS(253), 43, + anon_sym_SLASH, anon_sym_LBRACE, sym_identifier, + anon_sym_STAR, sym__terminator, sym_null_expression, aux_sym_boolean_literal_token1, @@ -68354,6 +69061,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, @@ -68380,27 +69089,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(1129), 1, - anon_sym_LPAREN, - ACTIONS(1131), 1, - sym__namedot, - ACTIONS(1133), 1, - sym__namecolon, - STATE(536), 1, - aux_sym_qualified_name_repeat1, - STATE(540), 1, - aux_sym_object_access_repeat1, - ACTIONS(77), 2, + STATE(372), 1, + sym__multiplicative_operator, + STATE(375), 1, + sym__comparison_operator, + STATE(381), 1, + sym__logical_operator, + STATE(457), 1, + sym__additive_operator, + ACTIONS(227), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(249), 2, sym__or_operator, sym__and_operator, - STATE(528), 2, + STATE(533), 2, sym_comment, sym_include, - ACTIONS(75), 42, - anon_sym_SLASH, + ACTIONS(251), 41, anon_sym_LBRACE, sym_identifier, - anon_sym_STAR, sym__terminator, sym_null_expression, aux_sym_boolean_literal_token1, @@ -68410,6 +69118,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, @@ -68444,27 +69153,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(445), 1, - sym__logical_operator, - STATE(456), 1, - sym__additive_operator, - STATE(457), 1, + STATE(372), 1, sym__multiplicative_operator, - STATE(479), 1, + STATE(375), 1, sym__comparison_operator, - ACTIONS(283), 2, + STATE(381), 1, + sym__logical_operator, + STATE(457), 1, + sym__additive_operator, + ACTIONS(227), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(295), 2, + ACTIONS(239), 2, sym__or_operator, sym__and_operator, ACTIONS(1123), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(529), 2, + STATE(534), 2, sym_comment, sym_include, - ACTIONS(291), 15, + ACTIONS(235), 15, anon_sym_LT, anon_sym_LT_EQ, anon_sym_LT_GT, @@ -68505,96 +69214,32 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_expression_token1, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - [25846] = 10, + [25846] = 12, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(1129), 1, - anon_sym_LPAREN, - ACTIONS(1131), 1, - sym__namedot, - ACTIONS(1133), 1, - sym__namecolon, - STATE(536), 1, - aux_sym_qualified_name_repeat1, - STATE(540), 1, - aux_sym_object_access_repeat1, - ACTIONS(67), 2, - sym__or_operator, - sym__and_operator, - STATE(530), 2, - sym_comment, - sym_include, - ACTIONS(63), 42, - 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, - 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, - [25920] = 12, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - STATE(445), 1, - sym__logical_operator, - STATE(456), 1, - sym__additive_operator, - STATE(457), 1, + STATE(372), 1, sym__multiplicative_operator, - STATE(479), 1, + STATE(375), 1, sym__comparison_operator, - ACTIONS(283), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(295), 2, + STATE(381), 1, + sym__logical_operator, + STATE(457), 1, + sym__additive_operator, + ACTIONS(125), 2, sym__or_operator, sym__and_operator, + ACTIONS(227), 2, + anon_sym_SLASH, + anon_sym_STAR, ACTIONS(1123), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(531), 2, + STATE(535), 2, sym_comment, sym_include, - ACTIONS(291), 15, + ACTIONS(235), 15, anon_sym_LT, anon_sym_LT_EQ, anon_sym_LT_GT, @@ -68610,7 +69255,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(1137), 24, + ACTIONS(123), 24, anon_sym_LBRACE, sym_identifier, sym__terminator, @@ -68635,32 +69280,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, + [25924] = 12, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(445), 1, - sym__logical_operator, - STATE(456), 1, - sym__additive_operator, - STATE(457), 1, + STATE(372), 1, sym__multiplicative_operator, - STATE(479), 1, + STATE(375), 1, sym__comparison_operator, - ACTIONS(283), 2, + STATE(381), 1, + sym__logical_operator, + STATE(457), 1, + sym__additive_operator, + ACTIONS(227), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(295), 2, + ACTIONS(239), 2, sym__or_operator, sym__and_operator, ACTIONS(1123), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(532), 2, + STATE(536), 2, sym_comment, sym_include, - ACTIONS(291), 15, + ACTIONS(235), 15, anon_sym_LT, anon_sym_LT_EQ, anon_sym_LT_GT, @@ -68676,7 +69321,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(1139), 24, + ACTIONS(1137), 24, anon_sym_LBRACE, sym_identifier, sym__terminator, @@ -68701,50 +69346,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, + [26002] = 10, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(445), 1, - sym__logical_operator, - STATE(456), 1, - sym__additive_operator, - STATE(457), 1, - sym__multiplicative_operator, - STATE(479), 1, - sym__comparison_operator, - ACTIONS(283), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(295), 2, + ACTIONS(1125), 1, + anon_sym_LPAREN, + ACTIONS(1127), 1, + sym__namedot, + ACTIONS(1129), 1, + sym__namecolon, + STATE(540), 1, + aux_sym_qualified_name_repeat1, + STATE(541), 1, + aux_sym_object_access_repeat1, + ACTIONS(77), 2, sym__or_operator, sym__and_operator, - ACTIONS(1123), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(533), 2, + STATE(537), 2, sym_comment, sym_include, - ACTIONS(291), 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(1141), 24, + ACTIONS(75), 42, + anon_sym_SLASH, anon_sym_LBRACE, sym_identifier, + anon_sym_STAR, sym__terminator, sym_null_expression, aux_sym_boolean_literal_token1, @@ -68754,45 +69381,61 @@ 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, aux_sym_accumulate_expression_token1, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - [26154] = 12, + [26076] = 12, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(445), 1, - sym__logical_operator, - STATE(456), 1, - sym__additive_operator, - STATE(457), 1, + STATE(372), 1, sym__multiplicative_operator, - STATE(479), 1, + STATE(375), 1, sym__comparison_operator, - ACTIONS(219), 2, - sym__or_operator, - sym__and_operator, - ACTIONS(283), 2, + STATE(381), 1, + sym__logical_operator, + STATE(457), 1, + sym__additive_operator, + ACTIONS(227), 2, anon_sym_SLASH, anon_sym_STAR, + ACTIONS(239), 2, + sym__or_operator, + sym__and_operator, ACTIONS(1123), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(534), 2, + STATE(538), 2, sym_comment, sym_include, - ACTIONS(291), 15, + ACTIONS(235), 15, anon_sym_LT, anon_sym_LT_EQ, anon_sym_LT_GT, @@ -68808,7 +69451,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(217), 24, + ACTIONS(1139), 24, anon_sym_LBRACE, sym_identifier, sym__terminator, @@ -68833,26 +69476,50 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_expression_token1, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - [26232] = 7, + [26154] = 12, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(1131), 1, - sym__namedot, - STATE(536), 1, - aux_sym_qualified_name_repeat1, - ACTIONS(89), 2, + STATE(372), 1, + sym__multiplicative_operator, + STATE(375), 1, + sym__comparison_operator, + STATE(381), 1, + sym__logical_operator, + STATE(457), 1, + sym__additive_operator, + ACTIONS(227), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(239), 2, sym__or_operator, sym__and_operator, - STATE(535), 2, + ACTIONS(1123), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(539), 2, sym_comment, sym_include, - ACTIONS(87), 43, - anon_sym_SLASH, + ACTIONS(235), 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(1141), 24, anon_sym_LBRACE, sym_identifier, - anon_sym_STAR, sym__terminator, sym_null_expression, aux_sym_boolean_literal_token1, @@ -68869,45 +69536,28 @@ 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, - [26298] = 7, + [26232] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(1131), 1, + ACTIONS(1127), 1, sym__namedot, - STATE(537), 1, + STATE(543), 1, aux_sym_qualified_name_repeat1, - ACTIONS(93), 2, + ACTIONS(81), 2, sym__or_operator, sym__and_operator, - STATE(536), 2, + STATE(540), 2, sym_comment, sym_include, - ACTIONS(91), 43, + ACTIONS(79), 43, anon_sym_SLASH, anon_sym_LBRACE, sym_identifier, @@ -68951,21 +69601,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, + [26298] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(1143), 1, - sym__namedot, - ACTIONS(104), 2, + ACTIONS(1129), 1, + sym__namecolon, + STATE(544), 1, + aux_sym_object_access_repeat1, + ACTIONS(107), 2, sym__or_operator, sym__and_operator, - STATE(537), 3, + STATE(541), 2, sym_comment, sym_include, - aux_sym_qualified_name_repeat1, - ACTIONS(102), 43, + ACTIONS(105), 43, anon_sym_SLASH, anon_sym_LBRACE, sym_identifier, @@ -69009,21 +69660,22 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_expression_token1, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - [26428] = 6, + [26364] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(1146), 1, - sym__namecolon, - ACTIONS(97), 2, + ACTIONS(1127), 1, + sym__namedot, + STATE(540), 1, + aux_sym_qualified_name_repeat1, + ACTIONS(89), 2, sym__or_operator, sym__and_operator, - STATE(538), 3, + STATE(542), 2, sym_comment, sym_include, - aux_sym_object_access_repeat1, - ACTIONS(95), 43, + ACTIONS(87), 43, anon_sym_SLASH, anon_sym_LBRACE, sym_identifier, @@ -69067,22 +69719,21 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_expression_token1, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - [26492] = 7, + [26430] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(1131), 1, + ACTIONS(1143), 1, sym__namedot, - STATE(536), 1, - aux_sym_qualified_name_repeat1, - ACTIONS(85), 2, + ACTIONS(100), 2, sym__or_operator, sym__and_operator, - STATE(539), 2, + STATE(543), 3, sym_comment, sym_include, - ACTIONS(83), 43, + aux_sym_qualified_name_repeat1, + ACTIONS(98), 43, anon_sym_SLASH, anon_sym_LBRACE, sym_identifier, @@ -69126,22 +69777,21 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_expression_token1, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - [26558] = 7, + [26494] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(1133), 1, + ACTIONS(1146), 1, sym__namecolon, - STATE(538), 1, - aux_sym_object_access_repeat1, - ACTIONS(81), 2, + ACTIONS(93), 2, sym__or_operator, sym__and_operator, - STATE(540), 2, + STATE(544), 3, sym_comment, sym_include, - ACTIONS(79), 43, + aux_sym_object_access_repeat1, + ACTIONS(91), 43, anon_sym_SLASH, anon_sym_LBRACE, sym_identifier, @@ -69185,19 +69835,22 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_expression_token1, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - [26624] = 5, + [26558] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(541), 2, - sym_comment, - sym_include, - ACTIONS(117), 3, - sym__namecolon, + ACTIONS(1127), 1, + sym__namedot, + STATE(540), 1, + aux_sym_qualified_name_repeat1, + ACTIONS(85), 2, sym__or_operator, sym__and_operator, - ACTIONS(115), 43, + STATE(545), 2, + sym_comment, + sym_include, + ACTIONS(83), 43, anon_sym_SLASH, anon_sym_LBRACE, sym_identifier, @@ -69241,114 +69894,43 @@ 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(283), 1, + ACTIONS(227), 1, anon_sym_SLASH, - ACTIONS(285), 1, + ACTIONS(229), 1, anon_sym_STAR, ACTIONS(1149), 1, sym__terminator, ACTIONS(1155), 1, aux_sym_input_stream_tuning_token9, - STATE(347), 1, - sym__multiplicative_operator, - STATE(375), 1, - sym__comparison_operator, - STATE(408), 1, - sym__additive_operator, - STATE(411), 1, + STATE(401), 1, sym__logical_operator, - STATE(1719), 1, - aux_sym_output_stream_statement_repeat1, - STATE(1814), 1, - sym_output_stream_tuning, - ACTIONS(289), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(291), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(295), 2, - sym__or_operator, - sym__and_operator, - STATE(542), 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(293), 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, - [26776] = 20, - ACTIONS(59), 1, - anon_sym_SLASH_SLASH, - ACTIONS(61), 1, - anon_sym_SLASH_STAR, - ACTIONS(65), 1, - anon_sym_LBRACE, - ACTIONS(283), 1, - anon_sym_SLASH, - ACTIONS(285), 1, - anon_sym_STAR, - ACTIONS(1155), 1, - aux_sym_input_stream_tuning_token9, - ACTIONS(1157), 1, - sym__terminator, - STATE(347), 1, - sym__multiplicative_operator, - STATE(375), 1, + STATE(447), 1, sym__comparison_operator, - STATE(408), 1, + STATE(507), 1, sym__additive_operator, - STATE(411), 1, - sym__logical_operator, - STATE(1720), 1, + STATE(516), 1, + sym__multiplicative_operator, + STATE(1724), 1, aux_sym_output_stream_statement_repeat1, - STATE(1814), 1, + STATE(1824), 1, sym_output_stream_tuning, - ACTIONS(289), 2, + ACTIONS(233), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(291), 2, + ACTIONS(235), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(295), 2, + ACTIONS(239), 2, sym__or_operator, sym__and_operator, - STATE(543), 2, + STATE(546), 2, sym_comment, sym_include, ACTIONS(1151), 4, @@ -69369,7 +69951,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(293), 13, + ACTIONS(237), 13, anon_sym_LT_EQ, anon_sym_LT_GT, anon_sym_EQ, @@ -69383,100 +69965,43 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - [26867] = 6, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - ACTIONS(1159), 1, - aux_sym_function_call_token1, - ACTIONS(215), 2, - sym__or_operator, - sym__and_operator, - STATE(544), 2, - sym_comment, - sym_include, - ACTIONS(213), 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, - [26930] = 20, + [26715] = 20, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(283), 1, + ACTIONS(227), 1, anon_sym_SLASH, - ACTIONS(285), 1, + ACTIONS(229), 1, anon_sym_STAR, ACTIONS(1155), 1, aux_sym_input_stream_tuning_token9, - ACTIONS(1161), 1, + ACTIONS(1157), 1, sym__terminator, - STATE(347), 1, - sym__multiplicative_operator, - STATE(375), 1, + STATE(401), 1, + sym__logical_operator, + STATE(447), 1, sym__comparison_operator, - STATE(408), 1, + STATE(507), 1, sym__additive_operator, - STATE(411), 1, - sym__logical_operator, - STATE(1703), 1, + STATE(516), 1, + sym__multiplicative_operator, + STATE(1733), 1, aux_sym_output_stream_statement_repeat1, - STATE(1814), 1, + STATE(1824), 1, sym_output_stream_tuning, - ACTIONS(289), 2, + ACTIONS(233), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(291), 2, + ACTIONS(235), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(295), 2, + ACTIONS(239), 2, sym__or_operator, sym__and_operator, - STATE(545), 2, + STATE(547), 2, sym_comment, sym_include, ACTIONS(1151), 4, @@ -69497,7 +70022,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(293), 13, + ACTIONS(237), 13, anon_sym_LT_EQ, anon_sym_LT_GT, anon_sym_EQ, @@ -69511,20 +70036,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - [27021] = 6, + [26806] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(1163), 1, - sym__namedot, - ACTIONS(111), 2, + ACTIONS(1159), 1, + aux_sym_function_call_token1, + ACTIONS(129), 2, sym__or_operator, sym__and_operator, - STATE(546), 2, + STATE(548), 2, sym_comment, sym_include, - ACTIONS(109), 43, + ACTIONS(127), 43, anon_sym_SLASH, anon_sym_LBRACE, sym_identifier, @@ -69568,43 +70093,43 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_expression_token1, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - [27084] = 20, + [26869] = 20, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(283), 1, + ACTIONS(227), 1, anon_sym_SLASH, - ACTIONS(285), 1, + ACTIONS(229), 1, anon_sym_STAR, ACTIONS(1155), 1, aux_sym_input_stream_tuning_token9, - ACTIONS(1165), 1, + ACTIONS(1161), 1, sym__terminator, - STATE(347), 1, - sym__multiplicative_operator, - STATE(375), 1, + STATE(401), 1, + sym__logical_operator, + STATE(447), 1, sym__comparison_operator, - STATE(408), 1, + STATE(507), 1, sym__additive_operator, - STATE(411), 1, - sym__logical_operator, - STATE(1729), 1, + STATE(516), 1, + sym__multiplicative_operator, + STATE(1738), 1, aux_sym_output_stream_statement_repeat1, - STATE(1814), 1, + STATE(1824), 1, sym_output_stream_tuning, - ACTIONS(289), 2, + ACTIONS(233), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(291), 2, + ACTIONS(235), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(295), 2, + ACTIONS(239), 2, sym__or_operator, sym__and_operator, - STATE(547), 2, + STATE(549), 2, sym_comment, sym_include, ACTIONS(1151), 4, @@ -69625,7 +70150,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(293), 13, + ACTIONS(237), 13, anon_sym_LT_EQ, anon_sym_LT_GT, anon_sym_EQ, @@ -69639,43 +70164,43 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - [27175] = 20, + [26960] = 20, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(283), 1, + ACTIONS(227), 1, anon_sym_SLASH, - ACTIONS(285), 1, + ACTIONS(229), 1, anon_sym_STAR, ACTIONS(1155), 1, aux_sym_input_stream_tuning_token9, - ACTIONS(1167), 1, + ACTIONS(1163), 1, sym__terminator, - STATE(347), 1, - sym__multiplicative_operator, - STATE(375), 1, + STATE(401), 1, + sym__logical_operator, + STATE(447), 1, sym__comparison_operator, - STATE(408), 1, + STATE(507), 1, sym__additive_operator, - STATE(411), 1, - sym__logical_operator, - STATE(1709), 1, + STATE(516), 1, + sym__multiplicative_operator, + STATE(1713), 1, aux_sym_output_stream_statement_repeat1, - STATE(1814), 1, + STATE(1824), 1, sym_output_stream_tuning, - ACTIONS(289), 2, + ACTIONS(233), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(291), 2, + ACTIONS(235), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(295), 2, + ACTIONS(239), 2, sym__or_operator, sym__and_operator, - STATE(548), 2, + STATE(550), 2, sym_comment, sym_include, ACTIONS(1151), 4, @@ -69696,7 +70221,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(293), 13, + ACTIONS(237), 13, anon_sym_LT_EQ, anon_sym_LT_GT, anon_sym_EQ, @@ -69710,20 +70235,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - [27266] = 6, + [27051] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(1169), 1, - aux_sym_function_call_token1, - ACTIONS(133), 2, - sym__or_operator, - sym__and_operator, - STATE(549), 2, + STATE(551), 2, sym_comment, sym_include, - ACTIONS(131), 43, + ACTIONS(117), 3, + sym__namecolon, + sym__or_operator, + sym__and_operator, + ACTIONS(115), 43, anon_sym_SLASH, anon_sym_LBRACE, sym_identifier, @@ -69767,43 +70291,43 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_expression_token1, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - [27329] = 20, + [27112] = 20, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(283), 1, + ACTIONS(227), 1, anon_sym_SLASH, - ACTIONS(285), 1, + ACTIONS(229), 1, anon_sym_STAR, ACTIONS(1155), 1, aux_sym_input_stream_tuning_token9, - ACTIONS(1171), 1, + ACTIONS(1165), 1, sym__terminator, - STATE(347), 1, - sym__multiplicative_operator, - STATE(375), 1, + STATE(401), 1, + sym__logical_operator, + STATE(447), 1, sym__comparison_operator, - STATE(408), 1, + STATE(507), 1, sym__additive_operator, - STATE(411), 1, - sym__logical_operator, - STATE(1722), 1, + STATE(516), 1, + sym__multiplicative_operator, + STATE(1740), 1, aux_sym_output_stream_statement_repeat1, - STATE(1814), 1, + STATE(1824), 1, sym_output_stream_tuning, - ACTIONS(289), 2, + ACTIONS(233), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(291), 2, + ACTIONS(235), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(295), 2, + ACTIONS(239), 2, sym__or_operator, sym__and_operator, - STATE(550), 2, + STATE(552), 2, sym_comment, sym_include, ACTIONS(1151), 4, @@ -69824,7 +70348,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(293), 13, + ACTIONS(237), 13, anon_sym_LT_EQ, anon_sym_LT_GT, anon_sym_EQ, @@ -69838,43 +70362,100 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - [27420] = 20, + [27203] = 6, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(1167), 1, + anon_sym_NO_DASHERROR, + ACTIONS(197), 2, + sym__or_operator, + sym__and_operator, + STATE(553), 2, + sym_comment, + sym_include, + ACTIONS(195), 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, + [27266] = 20, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(283), 1, + ACTIONS(227), 1, anon_sym_SLASH, - ACTIONS(285), 1, + ACTIONS(229), 1, anon_sym_STAR, ACTIONS(1155), 1, aux_sym_input_stream_tuning_token9, - ACTIONS(1173), 1, + ACTIONS(1169), 1, sym__terminator, - STATE(347), 1, - sym__multiplicative_operator, - STATE(375), 1, + STATE(401), 1, + sym__logical_operator, + STATE(447), 1, sym__comparison_operator, - STATE(408), 1, + STATE(507), 1, sym__additive_operator, - STATE(411), 1, - sym__logical_operator, - STATE(1704), 1, + STATE(516), 1, + sym__multiplicative_operator, + STATE(1727), 1, aux_sym_output_stream_statement_repeat1, - STATE(1814), 1, + STATE(1824), 1, sym_output_stream_tuning, - ACTIONS(289), 2, + ACTIONS(233), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(291), 2, + ACTIONS(235), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(295), 2, + ACTIONS(239), 2, sym__or_operator, sym__and_operator, - STATE(551), 2, + STATE(554), 2, sym_comment, sym_include, ACTIONS(1151), 4, @@ -69895,7 +70476,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(293), 13, + ACTIONS(237), 13, anon_sym_LT_EQ, anon_sym_LT_GT, anon_sym_EQ, @@ -69909,77 +70490,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - [27511] = 6, + [27357] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(1175), 1, - anon_sym_NO_DASHERROR, - ACTIONS(631), 2, - sym__or_operator, - sym__and_operator, - STATE(552), 2, + STATE(555), 2, sym_comment, sym_include, - ACTIONS(629), 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, - [27574] = 6, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - ACTIONS(1177), 1, - anon_sym_NO_DASHERROR, - ACTIONS(207), 2, + ACTIONS(100), 3, + sym__namedot, sym__or_operator, sym__and_operator, - STATE(553), 2, - sym_comment, - sym_include, - ACTIONS(205), 43, + ACTIONS(98), 43, anon_sym_SLASH, anon_sym_LBRACE, sym_identifier, @@ -70023,43 +70546,43 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_expression_token1, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - [27637] = 20, + [27418] = 20, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(283), 1, + ACTIONS(227), 1, anon_sym_SLASH, - ACTIONS(285), 1, + ACTIONS(229), 1, anon_sym_STAR, ACTIONS(1155), 1, aux_sym_input_stream_tuning_token9, - ACTIONS(1179), 1, + ACTIONS(1171), 1, sym__terminator, - STATE(347), 1, - sym__multiplicative_operator, - STATE(375), 1, + STATE(401), 1, + sym__logical_operator, + STATE(447), 1, sym__comparison_operator, - STATE(408), 1, + STATE(507), 1, sym__additive_operator, - STATE(411), 1, - sym__logical_operator, - STATE(1715), 1, + STATE(516), 1, + sym__multiplicative_operator, + STATE(1730), 1, aux_sym_output_stream_statement_repeat1, - STATE(1814), 1, + STATE(1824), 1, sym_output_stream_tuning, - ACTIONS(289), 2, + ACTIONS(233), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(291), 2, + ACTIONS(235), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(295), 2, + ACTIONS(239), 2, sym__or_operator, sym__and_operator, - STATE(554), 2, + STATE(556), 2, sym_comment, sym_include, ACTIONS(1151), 4, @@ -70080,7 +70603,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(293), 13, + ACTIONS(237), 13, anon_sym_LT_EQ, anon_sym_LT_GT, anon_sym_EQ, @@ -70094,43 +70617,114 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - [27728] = 20, + [27509] = 20, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(283), 1, + ACTIONS(227), 1, anon_sym_SLASH, - ACTIONS(285), 1, + ACTIONS(229), 1, anon_sym_STAR, ACTIONS(1155), 1, aux_sym_input_stream_tuning_token9, - ACTIONS(1181), 1, + ACTIONS(1173), 1, sym__terminator, - STATE(347), 1, - sym__multiplicative_operator, - STATE(375), 1, + STATE(401), 1, + sym__logical_operator, + STATE(447), 1, sym__comparison_operator, - STATE(408), 1, + STATE(507), 1, sym__additive_operator, - STATE(411), 1, + STATE(516), 1, + sym__multiplicative_operator, + STATE(1708), 1, + aux_sym_output_stream_statement_repeat1, + STATE(1824), 1, + sym_output_stream_tuning, + ACTIONS(233), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(235), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(239), 2, + sym__or_operator, + sym__and_operator, + STATE(557), 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(237), 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, + [27600] = 20, + ACTIONS(59), 1, + anon_sym_SLASH_SLASH, + ACTIONS(61), 1, + anon_sym_SLASH_STAR, + ACTIONS(65), 1, + anon_sym_LBRACE, + ACTIONS(227), 1, + anon_sym_SLASH, + ACTIONS(229), 1, + anon_sym_STAR, + ACTIONS(1155), 1, + aux_sym_input_stream_tuning_token9, + ACTIONS(1175), 1, + sym__terminator, + STATE(401), 1, sym__logical_operator, - STATE(1698), 1, + STATE(447), 1, + sym__comparison_operator, + STATE(507), 1, + sym__additive_operator, + STATE(516), 1, + sym__multiplicative_operator, + STATE(1720), 1, aux_sym_output_stream_statement_repeat1, - STATE(1814), 1, + STATE(1824), 1, sym_output_stream_tuning, - ACTIONS(289), 2, + ACTIONS(233), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(291), 2, + ACTIONS(235), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(295), 2, + ACTIONS(239), 2, sym__or_operator, sym__and_operator, - STATE(555), 2, + STATE(558), 2, sym_comment, sym_include, ACTIONS(1151), 4, @@ -70151,7 +70745,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(293), 13, + ACTIONS(237), 13, anon_sym_LT_EQ, anon_sym_LT_GT, anon_sym_EQ, @@ -70165,19 +70759,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - [27819] = 5, + [27691] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(556), 2, - sym_comment, - sym_include, - ACTIONS(104), 3, - sym__namedot, + ACTIONS(1177), 1, + aux_sym_function_call_token1, + ACTIONS(155), 2, sym__or_operator, sym__and_operator, - ACTIONS(102), 43, + STATE(559), 2, + sym_comment, + sym_include, + ACTIONS(153), 43, anon_sym_SLASH, anon_sym_LBRACE, sym_identifier, @@ -70221,43 +70816,43 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_expression_token1, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - [27880] = 20, + [27754] = 20, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(283), 1, + ACTIONS(227), 1, anon_sym_SLASH, - ACTIONS(285), 1, + ACTIONS(229), 1, anon_sym_STAR, ACTIONS(1155), 1, aux_sym_input_stream_tuning_token9, - ACTIONS(1183), 1, + ACTIONS(1179), 1, sym__terminator, - STATE(347), 1, - sym__multiplicative_operator, - STATE(375), 1, + STATE(401), 1, + sym__logical_operator, + STATE(447), 1, sym__comparison_operator, - STATE(408), 1, + STATE(507), 1, sym__additive_operator, - STATE(411), 1, - sym__logical_operator, - STATE(1723), 1, + STATE(516), 1, + sym__multiplicative_operator, + STATE(1709), 1, aux_sym_output_stream_statement_repeat1, - STATE(1814), 1, + STATE(1824), 1, sym_output_stream_tuning, - ACTIONS(289), 2, + ACTIONS(233), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(291), 2, + ACTIONS(235), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(295), 2, + ACTIONS(239), 2, sym__or_operator, sym__and_operator, - STATE(557), 2, + STATE(560), 2, sym_comment, sym_include, ACTIONS(1151), 4, @@ -70278,7 +70873,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(293), 13, + ACTIONS(237), 13, anon_sym_LT_EQ, anon_sym_LT_GT, anon_sym_EQ, @@ -70292,18 +70887,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - [27971] = 5, + [27845] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(67), 2, + ACTIONS(1181), 1, + sym__namedot, + ACTIONS(111), 2, sym__or_operator, sym__and_operator, - STATE(558), 2, + STATE(561), 2, sym_comment, sym_include, - ACTIONS(63), 43, + ACTIONS(109), 43, anon_sym_SLASH, anon_sym_LBRACE, sym_identifier, @@ -70347,18 +70944,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_expression_token1, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - [28031] = 5, + [27908] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(223), 2, + ACTIONS(1183), 1, + anon_sym_NO_DASHERROR, + ACTIONS(529), 2, sym__or_operator, sym__and_operator, - STATE(559), 2, + STATE(562), 2, sym_comment, sym_include, - ACTIONS(221), 43, + ACTIONS(527), 43, anon_sym_SLASH, anon_sym_LBRACE, sym_identifier, @@ -70402,18 +71001,18 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_expression_token1, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - [28091] = 5, + [27971] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(163), 2, + ACTIONS(197), 2, sym__or_operator, sym__and_operator, - STATE(560), 2, + STATE(563), 2, sym_comment, sym_include, - ACTIONS(161), 43, + ACTIONS(195), 43, anon_sym_SLASH, anon_sym_LBRACE, sym_identifier, @@ -70457,18 +71056,18 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_expression_token1, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - [28151] = 5, + [28031] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(77), 2, + ACTIONS(201), 2, sym__or_operator, sym__and_operator, - STATE(561), 2, + STATE(564), 2, sym_comment, sym_include, - ACTIONS(75), 43, + ACTIONS(199), 43, anon_sym_SLASH, anon_sym_LBRACE, sym_identifier, @@ -70512,18 +71111,18 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_expression_token1, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - [28211] = 5, + [28091] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(171), 2, + ACTIONS(111), 2, sym__or_operator, sym__and_operator, - STATE(562), 2, + STATE(565), 2, sym_comment, sym_include, - ACTIONS(169), 43, + ACTIONS(109), 43, anon_sym_SLASH, anon_sym_LBRACE, sym_identifier, @@ -70567,18 +71166,18 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_expression_token1, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - [28271] = 5, + [28151] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(179), 2, + ACTIONS(67), 2, sym__or_operator, sym__and_operator, - STATE(563), 2, + STATE(566), 2, sym_comment, sym_include, - ACTIONS(177), 43, + ACTIONS(63), 43, anon_sym_SLASH, anon_sym_LBRACE, sym_identifier, @@ -70622,18 +71221,18 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_expression_token1, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - [28331] = 5, + [28211] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(111), 2, + ACTIONS(151), 2, sym__or_operator, sym__and_operator, - STATE(564), 2, + STATE(567), 2, sym_comment, sym_include, - ACTIONS(109), 43, + ACTIONS(149), 43, anon_sym_SLASH, anon_sym_LBRACE, sym_identifier, @@ -70677,18 +71276,18 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_expression_token1, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - [28391] = 5, + [28271] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(147), 2, + ACTIONS(155), 2, sym__or_operator, sym__and_operator, - STATE(565), 2, + STATE(568), 2, sym_comment, sym_include, - ACTIONS(145), 43, + ACTIONS(153), 43, anon_sym_SLASH, anon_sym_LBRACE, sym_identifier, @@ -70732,18 +71331,18 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_expression_token1, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - [28451] = 5, + [28331] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(159), 2, + ACTIONS(85), 2, sym__or_operator, sym__and_operator, - STATE(566), 2, + STATE(569), 2, sym_comment, sym_include, - ACTIONS(157), 43, + ACTIONS(83), 43, anon_sym_SLASH, anon_sym_LBRACE, sym_identifier, @@ -70787,18 +71386,18 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_expression_token1, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - [28511] = 5, + [28391] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(203), 2, + ACTIONS(165), 2, sym__or_operator, sym__and_operator, - STATE(567), 2, + STATE(570), 2, sym_comment, sym_include, - ACTIONS(201), 43, + ACTIONS(163), 43, anon_sym_SLASH, anon_sym_LBRACE, sym_identifier, @@ -70842,18 +71441,18 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_expression_token1, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - [28571] = 5, + [28451] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(167), 2, + ACTIONS(181), 2, sym__or_operator, sym__and_operator, - STATE(568), 2, + STATE(571), 2, sym_comment, sym_include, - ACTIONS(165), 43, + ACTIONS(179), 43, anon_sym_SLASH, anon_sym_LBRACE, sym_identifier, @@ -70897,20 +71496,18 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_expression_token1, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - [28631] = 6, + [28511] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(1129), 1, - anon_sym_LPAREN, - ACTIONS(77), 2, + ACTIONS(217), 2, sym__or_operator, sym__and_operator, - STATE(569), 2, + STATE(572), 2, sym_comment, sym_include, - ACTIONS(75), 42, + ACTIONS(215), 43, anon_sym_SLASH, anon_sym_LBRACE, sym_identifier, @@ -70924,6 +71521,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, @@ -70953,18 +71551,18 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_expression_token1, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - [28693] = 5, + [28571] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(195), 2, + ACTIONS(209), 2, sym__or_operator, sym__and_operator, - STATE(570), 2, + STATE(573), 2, sym_comment, sym_include, - ACTIONS(193), 43, + ACTIONS(207), 43, anon_sym_SLASH, anon_sym_LBRACE, sym_identifier, @@ -71008,18 +71606,18 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_expression_token1, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - [28753] = 5, + [28631] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(129), 2, + ACTIONS(177), 2, sym__or_operator, sym__and_operator, - STATE(571), 2, + STATE(574), 2, sym_comment, sym_include, - ACTIONS(127), 43, + ACTIONS(175), 43, anon_sym_SLASH, anon_sym_LBRACE, sym_identifier, @@ -71063,43 +71661,45 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_expression_token1, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - [28813] = 16, - ACTIONS(59), 1, + [28691] = 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(283), 1, + ACTIONS(135), 2, + sym__or_operator, + sym__and_operator, + STATE(575), 2, + sym_comment, + sym_include, + ACTIONS(133), 43, anon_sym_SLASH, - ACTIONS(285), 1, + anon_sym_LBRACE, + sym_identifier, anon_sym_STAR, - ACTIONS(1187), 1, - aux_sym_input_stream_tuning_token11, - STATE(347), 1, - sym__multiplicative_operator, - STATE(375), 1, - sym__comparison_operator, - STATE(408), 1, - sym__additive_operator, - STATE(411), 1, - sym__logical_operator, - ACTIONS(289), 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(291), 2, anon_sym_LT, - anon_sym_GT, - ACTIONS(295), 2, - sym__or_operator, - sym__and_operator, - STATE(572), 2, - sym_comment, - sym_include, - ACTIONS(293), 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, @@ -71110,37 +71710,26 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - 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, - [28895] = 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, + [28751] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(143), 2, + ACTIONS(1125), 1, + anon_sym_LPAREN, + ACTIONS(77), 2, sym__or_operator, sym__and_operator, - STATE(573), 2, + STATE(576), 2, sym_comment, sym_include, - ACTIONS(141), 43, + ACTIONS(75), 42, anon_sym_SLASH, anon_sym_LBRACE, sym_identifier, @@ -71154,7 +71743,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, @@ -71184,18 +71772,18 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_expression_token1, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - [28955] = 5, + [28813] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(155), 2, + ACTIONS(205), 2, sym__or_operator, sym__and_operator, - STATE(574), 2, + STATE(577), 2, sym_comment, sym_include, - ACTIONS(153), 43, + ACTIONS(203), 43, anon_sym_SLASH, anon_sym_LBRACE, sym_identifier, @@ -71239,18 +71827,18 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_expression_token1, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - [29015] = 5, + [28873] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(199), 2, + ACTIONS(173), 2, sym__or_operator, sym__and_operator, - STATE(575), 2, + STATE(578), 2, sym_comment, sym_include, - ACTIONS(197), 43, + ACTIONS(171), 43, anon_sym_SLASH, anon_sym_LBRACE, sym_identifier, @@ -71294,73 +71882,18 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_expression_token1, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - [29075] = 5, + [28933] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(121), 2, + ACTIONS(169), 2, sym__or_operator, sym__and_operator, - STATE(576), 2, - sym_comment, - sym_include, - ACTIONS(119), 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, - [29135] = 5, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - ACTIONS(191), 2, - sym__or_operator, - sym__and_operator, - STATE(577), 2, + STATE(579), 2, sym_comment, sym_include, - ACTIONS(189), 43, + ACTIONS(167), 43, anon_sym_SLASH, anon_sym_LBRACE, sym_identifier, @@ -71404,18 +71937,18 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_expression_token1, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - [29195] = 5, + [28993] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(183), 2, + ACTIONS(143), 2, sym__or_operator, sym__and_operator, - STATE(578), 2, + STATE(580), 2, sym_comment, sym_include, - ACTIONS(181), 43, + ACTIONS(141), 43, anon_sym_SLASH, anon_sym_LBRACE, sym_identifier, @@ -71459,18 +71992,18 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_expression_token1, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - [29255] = 5, + [29053] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(151), 2, + ACTIONS(161), 2, sym__or_operator, sym__and_operator, - STATE(579), 2, + STATE(581), 2, sym_comment, sym_include, - ACTIONS(149), 43, + ACTIONS(159), 43, anon_sym_SLASH, anon_sym_LBRACE, sym_identifier, @@ -71514,18 +72047,18 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_expression_token1, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - [29315] = 5, + [29113] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(215), 2, + ACTIONS(213), 2, sym__or_operator, sym__and_operator, - STATE(580), 2, + STATE(582), 2, sym_comment, sym_include, - ACTIONS(213), 43, + ACTIONS(211), 43, anon_sym_SLASH, anon_sym_LBRACE, sym_identifier, @@ -71569,18 +72102,18 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_expression_token1, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - [29375] = 5, + [29173] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(211), 2, + ACTIONS(189), 2, sym__or_operator, sym__and_operator, - STATE(581), 2, + STATE(583), 2, sym_comment, sym_include, - ACTIONS(209), 43, + ACTIONS(187), 43, anon_sym_SLASH, anon_sym_LBRACE, sym_identifier, @@ -71624,155 +72157,43 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_expression_token1, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - [29435] = 5, - ACTIONS(3), 1, + [29233] = 16, + ACTIONS(59), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(61), 1, anon_sym_SLASH_STAR, - ACTIONS(207), 2, - sym__or_operator, - sym__and_operator, - STATE(582), 2, - sym_comment, - sym_include, - ACTIONS(205), 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, - [29495] = 5, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - ACTIONS(85), 2, - sym__or_operator, - sym__and_operator, - STATE(583), 2, - sym_comment, - sym_include, - ACTIONS(83), 43, + ACTIONS(227), 1, anon_sym_SLASH, - anon_sym_LBRACE, - sym_identifier, + ACTIONS(229), 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(401), 1, + sym__logical_operator, + STATE(447), 1, + sym__comparison_operator, + STATE(507), 1, + sym__additive_operator, + STATE(516), 1, + sym__multiplicative_operator, + ACTIONS(233), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(235), 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, - [29555] = 5, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - ACTIONS(89), 2, + ACTIONS(239), 2, sym__or_operator, sym__and_operator, STATE(584), 2, sym_comment, sym_include, - ACTIONS(87), 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(237), 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, @@ -71783,24 +72204,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, - [29615] = 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, + [29315] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(175), 2, + ACTIONS(147), 2, sym__or_operator, sym__and_operator, STATE(585), 2, sym_comment, sym_include, - ACTIONS(173), 43, + ACTIONS(145), 43, anon_sym_SLASH, anon_sym_LBRACE, sym_identifier, @@ -71844,20 +72278,18 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_expression_token1, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - [29675] = 6, + [29375] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(1129), 1, - anon_sym_LPAREN, - ACTIONS(67), 2, + ACTIONS(225), 2, sym__or_operator, sym__and_operator, STATE(586), 2, sym_comment, sym_include, - ACTIONS(63), 42, + ACTIONS(223), 43, anon_sym_SLASH, anon_sym_LBRACE, sym_identifier, @@ -71871,6 +72303,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, @@ -71900,18 +72333,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_expression_token1, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - [29737] = 5, + [29435] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(219), 2, + ACTIONS(1125), 1, + anon_sym_LPAREN, + ACTIONS(67), 2, sym__or_operator, sym__and_operator, STATE(587), 2, sym_comment, sym_include, - ACTIONS(217), 43, + ACTIONS(63), 42, anon_sym_SLASH, anon_sym_LBRACE, sym_identifier, @@ -71925,7 +72360,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, @@ -71955,18 +72389,18 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_expression_token1, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - [29797] = 5, + [29497] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(139), 2, + ACTIONS(221), 2, sym__or_operator, sym__and_operator, STATE(588), 2, sym_comment, sym_include, - ACTIONS(137), 43, + ACTIONS(219), 43, anon_sym_SLASH, anon_sym_LBRACE, sym_identifier, @@ -72010,18 +72444,18 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_expression_token1, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - [29857] = 5, + [29557] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(125), 2, + ACTIONS(89), 2, sym__or_operator, sym__and_operator, STATE(589), 2, sym_comment, sym_include, - ACTIONS(123), 43, + ACTIONS(87), 43, anon_sym_SLASH, anon_sym_LBRACE, sym_identifier, @@ -72065,18 +72499,293 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_expression_token1, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - [29917] = 5, + [29617] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(187), 2, + ACTIONS(139), 2, sym__or_operator, sym__and_operator, STATE(590), 2, sym_comment, sym_include, - ACTIONS(185), 43, + ACTIONS(137), 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, + [29677] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(77), 2, + sym__or_operator, + sym__and_operator, + STATE(591), 2, + sym_comment, + sym_include, + ACTIONS(75), 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, + [29737] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(193), 2, + sym__or_operator, + sym__and_operator, + STATE(592), 2, + sym_comment, + sym_include, + ACTIONS(191), 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, + [29797] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(121), 2, + sym__or_operator, + sym__and_operator, + STATE(593), 2, + sym_comment, + sym_include, + ACTIONS(119), 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, + [29857] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(185), 2, + sym__or_operator, + sym__and_operator, + STATE(594), 2, + sym_comment, + sym_include, + ACTIONS(183), 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, + [29917] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(125), 2, + sym__or_operator, + sym__and_operator, + STATE(595), 2, + sym_comment, + sym_include, + ACTIONS(123), 43, anon_sym_SLASH, anon_sym_LBRACE, sym_identifier, @@ -72127,31 +72836,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(283), 1, + ACTIONS(227), 1, anon_sym_SLASH, - ACTIONS(285), 1, + ACTIONS(229), 1, anon_sym_STAR, - STATE(347), 1, - sym__multiplicative_operator, - STATE(375), 1, + STATE(401), 1, + sym__logical_operator, + STATE(447), 1, sym__comparison_operator, - STATE(408), 1, + STATE(507), 1, sym__additive_operator, - STATE(411), 1, - sym__logical_operator, - ACTIONS(289), 2, + STATE(516), 1, + sym__multiplicative_operator, + ACTIONS(233), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(291), 2, + ACTIONS(235), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(295), 2, + ACTIONS(239), 2, sym__or_operator, sym__and_operator, - STATE(591), 2, + STATE(596), 2, sym_comment, sym_include, - ACTIONS(293), 13, + ACTIONS(237), 13, anon_sym_LT_EQ, anon_sym_LT_GT, anon_sym_EQ, @@ -72165,7 +72874,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(1189), 18, + ACTIONS(1185), 18, sym__terminator, aux_sym_input_stream_tuning_token1, aux_sym_input_stream_tuning_token2, @@ -72191,31 +72900,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(283), 1, + ACTIONS(227), 1, anon_sym_SLASH, - ACTIONS(285), 1, + ACTIONS(229), 1, anon_sym_STAR, - STATE(347), 1, - sym__multiplicative_operator, - STATE(375), 1, + STATE(401), 1, + sym__logical_operator, + STATE(447), 1, sym__comparison_operator, - STATE(408), 1, + STATE(507), 1, sym__additive_operator, - STATE(411), 1, - sym__logical_operator, - ACTIONS(289), 2, + STATE(516), 1, + sym__multiplicative_operator, + ACTIONS(233), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(291), 2, + ACTIONS(235), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(295), 2, + ACTIONS(239), 2, sym__or_operator, sym__and_operator, - STATE(592), 2, + STATE(597), 2, sym_comment, sym_include, - ACTIONS(293), 13, + ACTIONS(237), 13, anon_sym_LT_EQ, anon_sym_LT_GT, anon_sym_EQ, @@ -72229,7 +72938,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(1185), 18, + ACTIONS(1189), 18, sym__terminator, aux_sym_input_stream_tuning_token1, aux_sym_input_stream_tuning_token2, @@ -72255,31 +72964,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(283), 1, + ACTIONS(227), 1, anon_sym_SLASH, - ACTIONS(285), 1, + ACTIONS(229), 1, anon_sym_STAR, - STATE(347), 1, - sym__multiplicative_operator, - STATE(375), 1, + STATE(401), 1, + sym__logical_operator, + STATE(447), 1, sym__comparison_operator, - STATE(408), 1, + STATE(507), 1, sym__additive_operator, - STATE(411), 1, - sym__logical_operator, - ACTIONS(289), 2, + STATE(516), 1, + sym__multiplicative_operator, + ACTIONS(233), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(291), 2, + ACTIONS(235), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(295), 2, + ACTIONS(239), 2, sym__or_operator, sym__and_operator, - STATE(593), 2, + STATE(598), 2, sym_comment, sym_include, - ACTIONS(293), 13, + ACTIONS(237), 13, anon_sym_LT_EQ, anon_sym_LT_GT, anon_sym_EQ, @@ -72319,9 +73028,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(283), 1, + ACTIONS(227), 1, anon_sym_SLASH, - ACTIONS(285), 1, + ACTIONS(229), 1, anon_sym_STAR, ACTIONS(1193), 1, anon_sym_RPAREN, @@ -72333,31 +73042,31 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_query_tuning_token5, ACTIONS(1203), 1, aux_sym_of_token1, - STATE(416), 1, - sym__logical_operator, - STATE(419), 1, - sym__additive_operator, - STATE(421), 1, - sym__multiplicative_operator, - STATE(423), 1, + STATE(404), 1, sym__comparison_operator, - STATE(1896), 1, + STATE(428), 1, + sym__multiplicative_operator, + STATE(429), 1, + sym__additive_operator, + STATE(436), 1, + sym__logical_operator, + STATE(1887), 1, aux_sym_can_find_expression_repeat2, - STATE(1944), 1, + STATE(1960), 1, sym__using_first, - ACTIONS(289), 2, + ACTIONS(233), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(291), 2, + ACTIONS(235), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(295), 2, + ACTIONS(239), 2, sym__or_operator, sym__and_operator, - STATE(594), 2, + STATE(599), 2, sym_comment, sym_include, - STATE(2166), 3, + STATE(2222), 3, sym_where_clause, sym_query_tuning, sym_of, @@ -72367,7 +73076,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_query_tuning_token2, aux_sym_query_tuning_token3, aux_sym_query_tuning_token4, - ACTIONS(293), 13, + ACTIONS(237), 13, anon_sym_LT_EQ, anon_sym_LT_GT, anon_sym_EQ, @@ -72388,9 +73097,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(283), 1, + ACTIONS(227), 1, anon_sym_SLASH, - ACTIONS(285), 1, + ACTIONS(229), 1, anon_sym_STAR, ACTIONS(1197), 1, aux_sym_using_statement_token1, @@ -72402,31 +73111,31 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_of_token1, ACTIONS(1205), 1, anon_sym_RPAREN, - STATE(416), 1, - sym__logical_operator, - STATE(419), 1, - sym__additive_operator, - STATE(421), 1, - sym__multiplicative_operator, - STATE(423), 1, + STATE(404), 1, sym__comparison_operator, - STATE(1872), 1, + STATE(428), 1, + sym__multiplicative_operator, + STATE(429), 1, + sym__additive_operator, + STATE(436), 1, + sym__logical_operator, + STATE(1916), 1, aux_sym_can_find_expression_repeat2, - STATE(1944), 1, + STATE(1960), 1, sym__using_first, - ACTIONS(289), 2, + ACTIONS(233), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(291), 2, + ACTIONS(235), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(295), 2, + ACTIONS(239), 2, sym__or_operator, sym__and_operator, - STATE(595), 2, + STATE(600), 2, sym_comment, sym_include, - STATE(2166), 3, + STATE(2222), 3, sym_where_clause, sym_query_tuning, sym_of, @@ -72436,7 +73145,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_query_tuning_token2, aux_sym_query_tuning_token3, aux_sym_query_tuning_token4, - ACTIONS(293), 13, + ACTIONS(237), 13, anon_sym_LT_EQ, anon_sym_LT_GT, anon_sym_EQ, @@ -72457,9 +73166,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(283), 1, + ACTIONS(227), 1, anon_sym_SLASH, - ACTIONS(285), 1, + ACTIONS(229), 1, anon_sym_STAR, ACTIONS(1197), 1, aux_sym_using_statement_token1, @@ -72471,31 +73180,31 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_of_token1, ACTIONS(1207), 1, anon_sym_RPAREN, - STATE(416), 1, - sym__logical_operator, - STATE(419), 1, - sym__additive_operator, - STATE(421), 1, - sym__multiplicative_operator, - STATE(423), 1, + STATE(404), 1, sym__comparison_operator, - STATE(1894), 1, + STATE(428), 1, + sym__multiplicative_operator, + STATE(429), 1, + sym__additive_operator, + STATE(436), 1, + sym__logical_operator, + STATE(1905), 1, aux_sym_can_find_expression_repeat2, - STATE(1944), 1, + STATE(1960), 1, sym__using_first, - ACTIONS(289), 2, + ACTIONS(233), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(291), 2, + ACTIONS(235), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(295), 2, + ACTIONS(239), 2, sym__or_operator, sym__and_operator, - STATE(596), 2, + STATE(601), 2, sym_comment, sym_include, - STATE(2166), 3, + STATE(2222), 3, sym_where_clause, sym_query_tuning, sym_of, @@ -72505,7 +73214,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_query_tuning_token2, aux_sym_query_tuning_token3, aux_sym_query_tuning_token4, - ACTIONS(293), 13, + ACTIONS(237), 13, anon_sym_LT_EQ, anon_sym_LT_GT, anon_sym_EQ, @@ -72526,9 +73235,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(283), 1, + ACTIONS(227), 1, anon_sym_SLASH, - ACTIONS(285), 1, + ACTIONS(229), 1, anon_sym_STAR, ACTIONS(1197), 1, aux_sym_using_statement_token1, @@ -72540,31 +73249,31 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_of_token1, ACTIONS(1209), 1, anon_sym_RPAREN, - STATE(416), 1, - sym__logical_operator, - STATE(419), 1, - sym__additive_operator, - STATE(421), 1, - sym__multiplicative_operator, - STATE(423), 1, + STATE(404), 1, sym__comparison_operator, - STATE(1892), 1, + STATE(428), 1, + sym__multiplicative_operator, + STATE(429), 1, + sym__additive_operator, + STATE(436), 1, + sym__logical_operator, + STATE(1909), 1, aux_sym_can_find_expression_repeat2, - STATE(1944), 1, + STATE(1960), 1, sym__using_first, - ACTIONS(289), 2, + ACTIONS(233), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(291), 2, + ACTIONS(235), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(295), 2, + ACTIONS(239), 2, sym__or_operator, sym__and_operator, - STATE(597), 2, + STATE(602), 2, sym_comment, sym_include, - STATE(2166), 3, + STATE(2222), 3, sym_where_clause, sym_query_tuning, sym_of, @@ -72574,7 +73283,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_query_tuning_token2, aux_sym_query_tuning_token3, aux_sym_query_tuning_token4, - ACTIONS(293), 13, + ACTIONS(237), 13, anon_sym_LT_EQ, anon_sym_LT_GT, anon_sym_EQ, @@ -72595,9 +73304,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(283), 1, + ACTIONS(227), 1, anon_sym_SLASH, - ACTIONS(285), 1, + ACTIONS(229), 1, anon_sym_STAR, ACTIONS(1197), 1, aux_sym_using_statement_token1, @@ -72609,31 +73318,31 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_of_token1, ACTIONS(1211), 1, anon_sym_RPAREN, - STATE(416), 1, - sym__logical_operator, - STATE(419), 1, - sym__additive_operator, - STATE(421), 1, - sym__multiplicative_operator, - STATE(423), 1, + STATE(404), 1, sym__comparison_operator, - STATE(1869), 1, + STATE(428), 1, + sym__multiplicative_operator, + STATE(429), 1, + sym__additive_operator, + STATE(436), 1, + sym__logical_operator, + STATE(1914), 1, aux_sym_can_find_expression_repeat2, - STATE(1944), 1, + STATE(1960), 1, sym__using_first, - ACTIONS(289), 2, + ACTIONS(233), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(291), 2, + ACTIONS(235), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(295), 2, + ACTIONS(239), 2, sym__or_operator, sym__and_operator, - STATE(598), 2, + STATE(603), 2, sym_comment, sym_include, - STATE(2166), 3, + STATE(2222), 3, sym_where_clause, sym_query_tuning, sym_of, @@ -72643,7 +73352,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_query_tuning_token2, aux_sym_query_tuning_token3, aux_sym_query_tuning_token4, - ACTIONS(293), 13, + ACTIONS(237), 13, anon_sym_LT_EQ, anon_sym_LT_GT, anon_sym_EQ, @@ -72657,73 +73366,16 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - [30674] = 11, - ACTIONS(59), 1, - anon_sym_SLASH_SLASH, - ACTIONS(61), 1, - anon_sym_SLASH_STAR, - ACTIONS(65), 1, - anon_sym_LBRACE, - ACTIONS(1213), 1, - anon_sym_LPAREN, - ACTIONS(1215), 1, - sym__namedot, - ACTIONS(1217), 1, - sym__namecolon, - STATE(622), 1, - aux_sym_object_access_repeat1, - STATE(638), 1, - aux_sym_qualified_name_repeat1, - STATE(599), 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, - [30742] = 23, + [30674] = 23, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(283), 1, + ACTIONS(227), 1, anon_sym_SLASH, - ACTIONS(285), 1, + ACTIONS(229), 1, anon_sym_STAR, ACTIONS(1197), 1, aux_sym_using_statement_token1, @@ -72733,33 +73385,33 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_query_tuning_token5, ACTIONS(1203), 1, aux_sym_of_token1, - ACTIONS(1219), 1, + ACTIONS(1213), 1, anon_sym_RPAREN, - STATE(416), 1, - sym__logical_operator, - STATE(419), 1, - sym__additive_operator, - STATE(421), 1, - sym__multiplicative_operator, - STATE(423), 1, + STATE(404), 1, sym__comparison_operator, - STATE(1885), 1, + STATE(428), 1, + sym__multiplicative_operator, + STATE(429), 1, + sym__additive_operator, + STATE(436), 1, + sym__logical_operator, + STATE(1902), 1, aux_sym_can_find_expression_repeat2, - STATE(1944), 1, + STATE(1960), 1, sym__using_first, - ACTIONS(289), 2, + ACTIONS(233), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(291), 2, + ACTIONS(235), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(295), 2, + ACTIONS(239), 2, sym__or_operator, sym__and_operator, - STATE(600), 2, + STATE(604), 2, sym_comment, sym_include, - STATE(2166), 3, + STATE(2222), 3, sym_where_clause, sym_query_tuning, sym_of, @@ -72769,7 +73421,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_query_tuning_token2, aux_sym_query_tuning_token3, aux_sym_query_tuning_token4, - ACTIONS(293), 13, + ACTIONS(237), 13, anon_sym_LT_EQ, anon_sym_LT_GT, anon_sym_EQ, @@ -72783,16 +73435,16 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - [30834] = 23, + [30766] = 23, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(283), 1, + ACTIONS(227), 1, anon_sym_SLASH, - ACTIONS(285), 1, + ACTIONS(229), 1, anon_sym_STAR, ACTIONS(1197), 1, aux_sym_using_statement_token1, @@ -72802,33 +73454,33 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_query_tuning_token5, ACTIONS(1203), 1, aux_sym_of_token1, - ACTIONS(1221), 1, + ACTIONS(1215), 1, anon_sym_RPAREN, - STATE(416), 1, - sym__logical_operator, - STATE(419), 1, - sym__additive_operator, - STATE(421), 1, - sym__multiplicative_operator, - STATE(423), 1, + STATE(404), 1, sym__comparison_operator, - STATE(1877), 1, + STATE(428), 1, + sym__multiplicative_operator, + STATE(429), 1, + sym__additive_operator, + STATE(436), 1, + sym__logical_operator, + STATE(1906), 1, aux_sym_can_find_expression_repeat2, - STATE(1944), 1, + STATE(1960), 1, sym__using_first, - ACTIONS(289), 2, + ACTIONS(233), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(291), 2, + ACTIONS(235), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(295), 2, + ACTIONS(239), 2, sym__or_operator, sym__and_operator, - STATE(601), 2, + STATE(605), 2, sym_comment, sym_include, - STATE(2166), 3, + STATE(2222), 3, sym_where_clause, sym_query_tuning, sym_of, @@ -72838,7 +73490,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_query_tuning_token2, aux_sym_query_tuning_token3, aux_sym_query_tuning_token4, - ACTIONS(293), 13, + ACTIONS(237), 13, anon_sym_LT_EQ, anon_sym_LT_GT, anon_sym_EQ, @@ -72852,16 +73504,16 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - [30926] = 23, + [30858] = 23, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(283), 1, + ACTIONS(227), 1, anon_sym_SLASH, - ACTIONS(285), 1, + ACTIONS(229), 1, anon_sym_STAR, ACTIONS(1197), 1, aux_sym_using_statement_token1, @@ -72871,33 +73523,33 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_query_tuning_token5, ACTIONS(1203), 1, aux_sym_of_token1, - ACTIONS(1223), 1, + ACTIONS(1217), 1, anon_sym_RPAREN, - STATE(416), 1, - sym__logical_operator, - STATE(419), 1, - sym__additive_operator, - STATE(421), 1, - sym__multiplicative_operator, - STATE(423), 1, + STATE(404), 1, sym__comparison_operator, - STATE(1891), 1, + STATE(428), 1, + sym__multiplicative_operator, + STATE(429), 1, + sym__additive_operator, + STATE(436), 1, + sym__logical_operator, + STATE(1912), 1, aux_sym_can_find_expression_repeat2, - STATE(1944), 1, + STATE(1960), 1, sym__using_first, - ACTIONS(289), 2, + ACTIONS(233), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(291), 2, + ACTIONS(235), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(295), 2, + ACTIONS(239), 2, sym__or_operator, sym__and_operator, - STATE(602), 2, + STATE(606), 2, sym_comment, sym_include, - STATE(2166), 3, + STATE(2222), 3, sym_where_clause, sym_query_tuning, sym_of, @@ -72907,7 +73559,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_query_tuning_token2, aux_sym_query_tuning_token3, aux_sym_query_tuning_token4, - ACTIONS(293), 13, + ACTIONS(237), 13, anon_sym_LT_EQ, anon_sym_LT_GT, anon_sym_EQ, @@ -72921,6 +73573,63 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, + [30950] = 11, + ACTIONS(59), 1, + anon_sym_SLASH_SLASH, + ACTIONS(61), 1, + anon_sym_SLASH_STAR, + ACTIONS(65), 1, + anon_sym_LBRACE, + ACTIONS(1219), 1, + anon_sym_LPAREN, + ACTIONS(1221), 1, + sym__namedot, + ACTIONS(1223), 1, + sym__namecolon, + STATE(626), 1, + aux_sym_object_access_repeat1, + STATE(628), 1, + aux_sym_qualified_name_repeat1, + STATE(607), 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, [31018] = 23, ACTIONS(59), 1, anon_sym_SLASH_SLASH, @@ -72928,9 +73637,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(283), 1, + ACTIONS(227), 1, anon_sym_SLASH, - ACTIONS(285), 1, + ACTIONS(229), 1, anon_sym_STAR, ACTIONS(1197), 1, aux_sym_using_statement_token1, @@ -72942,31 +73651,31 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_of_token1, ACTIONS(1225), 1, anon_sym_RPAREN, - STATE(416), 1, - sym__logical_operator, - STATE(419), 1, - sym__additive_operator, - STATE(421), 1, - sym__multiplicative_operator, - STATE(423), 1, + STATE(404), 1, sym__comparison_operator, - STATE(1883), 1, + STATE(428), 1, + sym__multiplicative_operator, + STATE(429), 1, + sym__additive_operator, + STATE(436), 1, + sym__logical_operator, + STATE(1913), 1, aux_sym_can_find_expression_repeat2, - STATE(1944), 1, + STATE(1960), 1, sym__using_first, - ACTIONS(289), 2, + ACTIONS(233), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(291), 2, + ACTIONS(235), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(295), 2, + ACTIONS(239), 2, sym__or_operator, sym__and_operator, - STATE(603), 2, + STATE(608), 2, sym_comment, sym_include, - STATE(2166), 3, + STATE(2222), 3, sym_where_clause, sym_query_tuning, sym_of, @@ -72976,7 +73685,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_query_tuning_token2, aux_sym_query_tuning_token3, aux_sym_query_tuning_token4, - ACTIONS(293), 13, + ACTIONS(237), 13, anon_sym_LT_EQ, anon_sym_LT_GT, anon_sym_EQ, @@ -72990,73 +73699,16 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - [31110] = 11, + [31110] = 23, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(1213), 1, - anon_sym_LPAREN, - ACTIONS(1215), 1, - sym__namedot, - ACTIONS(1217), 1, - sym__namecolon, - STATE(622), 1, - aux_sym_object_access_repeat1, - STATE(638), 1, - aux_sym_qualified_name_repeat1, - STATE(604), 2, - sym_comment, - sym_include, - ACTIONS(75), 5, + ACTIONS(227), 1, anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - 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, - 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, - [31178] = 23, - ACTIONS(59), 1, - anon_sym_SLASH_SLASH, - ACTIONS(61), 1, - anon_sym_SLASH_STAR, - ACTIONS(65), 1, - anon_sym_LBRACE, - ACTIONS(283), 1, - anon_sym_SLASH, - ACTIONS(285), 1, + ACTIONS(229), 1, anon_sym_STAR, ACTIONS(1197), 1, aux_sym_using_statement_token1, @@ -73068,31 +73720,31 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_of_token1, ACTIONS(1227), 1, anon_sym_RPAREN, - STATE(416), 1, - sym__logical_operator, - STATE(419), 1, - sym__additive_operator, - STATE(421), 1, - sym__multiplicative_operator, - STATE(423), 1, + STATE(404), 1, sym__comparison_operator, - STATE(1879), 1, + STATE(428), 1, + sym__multiplicative_operator, + STATE(429), 1, + sym__additive_operator, + STATE(436), 1, + sym__logical_operator, + STATE(1893), 1, aux_sym_can_find_expression_repeat2, - STATE(1944), 1, + STATE(1960), 1, sym__using_first, - ACTIONS(289), 2, + ACTIONS(233), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(291), 2, + ACTIONS(235), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(295), 2, + ACTIONS(239), 2, sym__or_operator, sym__and_operator, - STATE(605), 2, + STATE(609), 2, sym_comment, sym_include, - STATE(2166), 3, + STATE(2222), 3, sym_where_clause, sym_query_tuning, sym_of, @@ -73102,7 +73754,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_query_tuning_token2, aux_sym_query_tuning_token3, aux_sym_query_tuning_token4, - ACTIONS(293), 13, + ACTIONS(237), 13, anon_sym_LT_EQ, anon_sym_LT_GT, anon_sym_EQ, @@ -73116,16 +73768,16 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - [31270] = 23, + [31202] = 23, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(283), 1, + ACTIONS(227), 1, anon_sym_SLASH, - ACTIONS(285), 1, + ACTIONS(229), 1, anon_sym_STAR, ACTIONS(1197), 1, aux_sym_using_statement_token1, @@ -73137,31 +73789,31 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_of_token1, ACTIONS(1229), 1, anon_sym_RPAREN, - STATE(416), 1, - sym__logical_operator, - STATE(419), 1, - sym__additive_operator, - STATE(421), 1, - sym__multiplicative_operator, - STATE(423), 1, + STATE(404), 1, sym__comparison_operator, - STATE(1895), 1, + STATE(428), 1, + sym__multiplicative_operator, + STATE(429), 1, + sym__additive_operator, + STATE(436), 1, + sym__logical_operator, + STATE(1899), 1, aux_sym_can_find_expression_repeat2, - STATE(1944), 1, + STATE(1960), 1, sym__using_first, - ACTIONS(289), 2, + ACTIONS(233), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(291), 2, + ACTIONS(235), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(295), 2, + ACTIONS(239), 2, sym__or_operator, sym__and_operator, - STATE(606), 2, + STATE(610), 2, sym_comment, sym_include, - STATE(2166), 3, + STATE(2222), 3, sym_where_clause, sym_query_tuning, sym_of, @@ -73171,7 +73823,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_query_tuning_token2, aux_sym_query_tuning_token3, aux_sym_query_tuning_token4, - ACTIONS(293), 13, + ACTIONS(237), 13, anon_sym_LT_EQ, anon_sym_LT_GT, anon_sym_EQ, @@ -73185,6 +73837,63 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, + [31294] = 11, + ACTIONS(59), 1, + anon_sym_SLASH_SLASH, + ACTIONS(61), 1, + anon_sym_SLASH_STAR, + ACTIONS(65), 1, + anon_sym_LBRACE, + ACTIONS(1219), 1, + anon_sym_LPAREN, + ACTIONS(1221), 1, + sym__namedot, + ACTIONS(1223), 1, + sym__namecolon, + STATE(626), 1, + aux_sym_object_access_repeat1, + STATE(628), 1, + aux_sym_qualified_name_repeat1, + STATE(611), 2, + sym_comment, + sym_include, + ACTIONS(75), 5, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + 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, + 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, [31362] = 23, ACTIONS(59), 1, anon_sym_SLASH_SLASH, @@ -73192,9 +73901,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(283), 1, + ACTIONS(227), 1, anon_sym_SLASH, - ACTIONS(285), 1, + ACTIONS(229), 1, anon_sym_STAR, ACTIONS(1197), 1, aux_sym_using_statement_token1, @@ -73206,31 +73915,31 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_of_token1, ACTIONS(1231), 1, anon_sym_RPAREN, - STATE(416), 1, - sym__logical_operator, - STATE(419), 1, - sym__additive_operator, - STATE(421), 1, - sym__multiplicative_operator, - STATE(423), 1, + STATE(404), 1, sym__comparison_operator, - STATE(1873), 1, + STATE(428), 1, + sym__multiplicative_operator, + STATE(429), 1, + sym__additive_operator, + STATE(436), 1, + sym__logical_operator, + STATE(1879), 1, aux_sym_can_find_expression_repeat2, - STATE(1944), 1, + STATE(1960), 1, sym__using_first, - ACTIONS(289), 2, + ACTIONS(233), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(291), 2, + ACTIONS(235), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(295), 2, + ACTIONS(239), 2, sym__or_operator, sym__and_operator, - STATE(607), 2, + STATE(612), 2, sym_comment, sym_include, - STATE(2166), 3, + STATE(2222), 3, sym_where_clause, sym_query_tuning, sym_of, @@ -73240,7 +73949,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_query_tuning_token2, aux_sym_query_tuning_token3, aux_sym_query_tuning_token4, - ACTIONS(293), 13, + ACTIONS(237), 13, anon_sym_LT_EQ, anon_sym_LT_GT, anon_sym_EQ, @@ -73261,9 +73970,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(283), 1, + ACTIONS(227), 1, anon_sym_SLASH, - ACTIONS(285), 1, + ACTIONS(229), 1, anon_sym_STAR, ACTIONS(1197), 1, aux_sym_using_statement_token1, @@ -73275,31 +73984,31 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_of_token1, ACTIONS(1233), 1, anon_sym_RPAREN, - STATE(416), 1, - sym__logical_operator, - STATE(419), 1, - sym__additive_operator, - STATE(421), 1, - sym__multiplicative_operator, - STATE(423), 1, + STATE(404), 1, sym__comparison_operator, - STATE(1898), 1, + STATE(428), 1, + sym__multiplicative_operator, + STATE(429), 1, + sym__additive_operator, + STATE(436), 1, + sym__logical_operator, + STATE(1888), 1, aux_sym_can_find_expression_repeat2, - STATE(1944), 1, + STATE(1960), 1, sym__using_first, - ACTIONS(289), 2, + ACTIONS(233), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(291), 2, + ACTIONS(235), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(295), 2, + ACTIONS(239), 2, sym__or_operator, sym__and_operator, - STATE(608), 2, + STATE(613), 2, sym_comment, sym_include, - STATE(2166), 3, + STATE(2222), 3, sym_where_clause, sym_query_tuning, sym_of, @@ -73309,7 +74018,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_query_tuning_token2, aux_sym_query_tuning_token3, aux_sym_query_tuning_token4, - ACTIONS(293), 13, + ACTIONS(237), 13, anon_sym_LT_EQ, anon_sym_LT_GT, anon_sym_EQ, @@ -73330,9 +74039,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(283), 1, + ACTIONS(227), 1, anon_sym_SLASH, - ACTIONS(285), 1, + ACTIONS(229), 1, anon_sym_STAR, ACTIONS(1197), 1, aux_sym_using_statement_token1, @@ -73344,31 +74053,31 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_of_token1, ACTIONS(1235), 1, anon_sym_RPAREN, - STATE(416), 1, - sym__logical_operator, - STATE(419), 1, - sym__additive_operator, - STATE(421), 1, - sym__multiplicative_operator, - STATE(423), 1, + STATE(404), 1, sym__comparison_operator, - STATE(1887), 1, + STATE(428), 1, + sym__multiplicative_operator, + STATE(429), 1, + sym__additive_operator, + STATE(436), 1, + sym__logical_operator, + STATE(1880), 1, aux_sym_can_find_expression_repeat2, - STATE(1944), 1, + STATE(1960), 1, sym__using_first, - ACTIONS(289), 2, + ACTIONS(233), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(291), 2, + ACTIONS(235), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(295), 2, + ACTIONS(239), 2, sym__or_operator, sym__and_operator, - STATE(609), 2, + STATE(614), 2, sym_comment, sym_include, - STATE(2166), 3, + STATE(2222), 3, sym_where_clause, sym_query_tuning, sym_of, @@ -73378,7 +74087,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_query_tuning_token2, aux_sym_query_tuning_token3, aux_sym_query_tuning_token4, - ACTIONS(293), 13, + ACTIONS(237), 13, anon_sym_LT_EQ, anon_sym_LT_GT, anon_sym_EQ, @@ -73392,41 +74101,40 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - [31638] = 16, + [31638] = 13, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(283), 1, + ACTIONS(227), 1, anon_sym_SLASH, - ACTIONS(285), 1, + ACTIONS(229), 1, anon_sym_STAR, - ACTIONS(1135), 1, - aux_sym_variable_definition_token2, - STATE(488), 1, + STATE(463), 1, sym__comparison_operator, - STATE(507), 1, + STATE(464), 1, sym__multiplicative_operator, - STATE(508), 1, + STATE(465), 1, sym__additive_operator, - STATE(510), 1, + STATE(469), 1, sym__logical_operator, - ACTIONS(289), 2, + ACTIONS(233), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(295), 2, - sym__or_operator, - sym__and_operator, - STATE(610), 2, + STATE(615), 2, sym_comment, sym_include, - ACTIONS(291), 3, + ACTIONS(259), 4, anon_sym_LT, anon_sym_GT, aux_sym__comparison_operator_token6, - ACTIONS(293), 12, + aux_sym_variable_definition_token2, + ACTIONS(257), 27, + sym__or_operator, + sym__and_operator, + aux_sym__block_terminator_token1, anon_sym_LT_EQ, anon_sym_LT_GT, anon_sym_EQ, @@ -73439,8 +74147,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(305), 13, - aux_sym__block_terminator_token1, aux_sym_variable_tuning_token1, aux_sym_variable_tuning_token5, aux_sym_variable_tuning_token6, @@ -73453,41 +74159,41 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_setter_token1, aux_sym_method_definition_token1, aux_sym_constructor_definition_token1, - [31715] = 16, + [31709] = 16, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(283), 1, + ACTIONS(227), 1, anon_sym_SLASH, - ACTIONS(285), 1, + ACTIONS(229), 1, anon_sym_STAR, ACTIONS(1141), 1, aux_sym_variable_definition_token2, - STATE(488), 1, + STATE(463), 1, sym__comparison_operator, - STATE(507), 1, + STATE(464), 1, sym__multiplicative_operator, - STATE(508), 1, + STATE(465), 1, sym__additive_operator, - STATE(510), 1, + STATE(469), 1, sym__logical_operator, - ACTIONS(289), 2, + ACTIONS(233), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(295), 2, + ACTIONS(239), 2, sym__or_operator, sym__and_operator, - STATE(611), 2, + STATE(616), 2, sym_comment, sym_include, - ACTIONS(291), 3, + ACTIONS(235), 3, anon_sym_LT, anon_sym_GT, aux_sym__comparison_operator_token6, - ACTIONS(293), 12, + ACTIONS(237), 12, anon_sym_LT_EQ, anon_sym_LT_GT, anon_sym_EQ, @@ -73500,7 +74206,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(325), 13, + ACTIONS(243), 13, aux_sym__block_terminator_token1, aux_sym_variable_tuning_token1, aux_sym_variable_tuning_token5, @@ -73514,41 +74220,41 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_setter_token1, aux_sym_method_definition_token1, aux_sym_constructor_definition_token1, - [31792] = 16, + [31786] = 16, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(283), 1, + ACTIONS(227), 1, anon_sym_SLASH, - ACTIONS(285), 1, + ACTIONS(229), 1, anon_sym_STAR, - ACTIONS(1239), 1, + ACTIONS(1137), 1, aux_sym_variable_definition_token2, - STATE(488), 1, + STATE(463), 1, sym__comparison_operator, - STATE(507), 1, + STATE(464), 1, sym__multiplicative_operator, - STATE(508), 1, + STATE(465), 1, sym__additive_operator, - STATE(510), 1, + STATE(469), 1, sym__logical_operator, - ACTIONS(289), 2, + ACTIONS(233), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(295), 2, + ACTIONS(239), 2, sym__or_operator, sym__and_operator, - STATE(612), 2, + STATE(617), 2, sym_comment, sym_include, - ACTIONS(291), 3, + ACTIONS(235), 3, anon_sym_LT, anon_sym_GT, aux_sym__comparison_operator_token6, - ACTIONS(293), 12, + ACTIONS(237), 12, anon_sym_LT_EQ, anon_sym_LT_GT, anon_sym_EQ, @@ -73561,7 +74267,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(1237), 13, + ACTIONS(231), 13, aux_sym__block_terminator_token1, aux_sym_variable_tuning_token1, aux_sym_variable_tuning_token5, @@ -73575,41 +74281,37 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_setter_token1, aux_sym_method_definition_token1, aux_sym_constructor_definition_token1, - [31869] = 16, + [31863] = 10, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(283), 1, - anon_sym_SLASH, - ACTIONS(285), 1, - anon_sym_STAR, - ACTIONS(1125), 1, - aux_sym_variable_definition_token2, - STATE(488), 1, + STATE(463), 1, sym__comparison_operator, - STATE(507), 1, + STATE(464), 1, sym__multiplicative_operator, - STATE(508), 1, + STATE(465), 1, sym__additive_operator, - STATE(510), 1, + STATE(469), 1, sym__logical_operator, - ACTIONS(289), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(295), 2, - sym__or_operator, - sym__and_operator, - STATE(613), 2, + STATE(618), 2, sym_comment, sym_include, - ACTIONS(291), 3, + ACTIONS(253), 5, + anon_sym_SLASH, anon_sym_LT, anon_sym_GT, aux_sym__comparison_operator_token6, - ACTIONS(293), 12, + aux_sym_variable_definition_token2, + ACTIONS(255), 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, @@ -73622,8 +74324,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(321), 13, - aux_sym__block_terminator_token1, aux_sym_variable_tuning_token1, aux_sym_variable_tuning_token5, aux_sym_variable_tuning_token6, @@ -73636,41 +74336,39 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_setter_token1, aux_sym_method_definition_token1, aux_sym_constructor_definition_token1, - [31946] = 16, + [31928] = 12, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(283), 1, + ACTIONS(227), 1, anon_sym_SLASH, - ACTIONS(285), 1, + ACTIONS(229), 1, anon_sym_STAR, - ACTIONS(1127), 1, - aux_sym_variable_definition_token2, - STATE(488), 1, + STATE(463), 1, sym__comparison_operator, - STATE(507), 1, + STATE(464), 1, sym__multiplicative_operator, - STATE(508), 1, + STATE(465), 1, sym__additive_operator, - STATE(510), 1, + STATE(469), 1, sym__logical_operator, - ACTIONS(289), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(295), 2, - sym__or_operator, - sym__and_operator, - STATE(614), 2, + STATE(619), 2, sym_comment, sym_include, - ACTIONS(291), 3, + ACTIONS(251), 4, anon_sym_LT, anon_sym_GT, aux_sym__comparison_operator_token6, - ACTIONS(293), 12, + aux_sym_variable_definition_token2, + ACTIONS(249), 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, @@ -73683,8 +74381,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(287), 13, - aux_sym__block_terminator_token1, aux_sym_variable_tuning_token1, aux_sym_variable_tuning_token5, aux_sym_variable_tuning_token6, @@ -73697,39 +74393,41 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_setter_token1, aux_sym_method_definition_token1, aux_sym_constructor_definition_token1, - [32023] = 12, + [31997] = 16, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(283), 1, + ACTIONS(227), 1, anon_sym_SLASH, - ACTIONS(285), 1, + ACTIONS(229), 1, anon_sym_STAR, - STATE(488), 1, + ACTIONS(1135), 1, + aux_sym_variable_definition_token2, + STATE(463), 1, sym__comparison_operator, - STATE(507), 1, + STATE(464), 1, sym__multiplicative_operator, - STATE(508), 1, + STATE(465), 1, sym__additive_operator, - STATE(510), 1, + STATE(469), 1, sym__logical_operator, - STATE(615), 2, + ACTIONS(233), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(239), 2, + sym__or_operator, + sym__and_operator, + STATE(620), 2, sym_comment, sym_include, - ACTIONS(319), 4, + ACTIONS(235), 3, anon_sym_LT, anon_sym_GT, aux_sym__comparison_operator_token6, - aux_sym_variable_definition_token2, - ACTIONS(317), 29, - sym__or_operator, - sym__and_operator, - aux_sym__block_terminator_token1, - anon_sym_PLUS, - anon_sym_DASH, + ACTIONS(237), 12, anon_sym_LT_EQ, anon_sym_LT_GT, anon_sym_EQ, @@ -73742,6 +74440,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(247), 13, + aux_sym__block_terminator_token1, aux_sym_variable_tuning_token1, aux_sym_variable_tuning_token5, aux_sym_variable_tuning_token6, @@ -73754,37 +74454,41 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_setter_token1, aux_sym_method_definition_token1, aux_sym_constructor_definition_token1, - [32092] = 10, + [32074] = 16, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - STATE(488), 1, + ACTIONS(227), 1, + anon_sym_SLASH, + ACTIONS(229), 1, + anon_sym_STAR, + ACTIONS(1131), 1, + aux_sym_variable_definition_token2, + STATE(463), 1, sym__comparison_operator, - STATE(507), 1, + STATE(464), 1, sym__multiplicative_operator, - STATE(508), 1, + STATE(465), 1, sym__additive_operator, - STATE(510), 1, + STATE(469), 1, sym__logical_operator, - STATE(616), 2, + ACTIONS(233), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(239), 2, + sym__or_operator, + sym__and_operator, + STATE(621), 2, sym_comment, sym_include, - ACTIONS(313), 5, - anon_sym_SLASH, + ACTIONS(235), 3, anon_sym_LT, anon_sym_GT, aux_sym__comparison_operator_token6, - aux_sym_variable_definition_token2, - ACTIONS(315), 30, - sym__or_operator, - sym__and_operator, - anon_sym_STAR, - aux_sym__block_terminator_token1, - anon_sym_PLUS, - anon_sym_DASH, + ACTIONS(237), 12, anon_sym_LT_EQ, anon_sym_LT_GT, anon_sym_EQ, @@ -73797,6 +74501,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(261), 13, + aux_sym__block_terminator_token1, aux_sym_variable_tuning_token1, aux_sym_variable_tuning_token5, aux_sym_variable_tuning_token6, @@ -73809,38 +74515,41 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_setter_token1, aux_sym_method_definition_token1, aux_sym_constructor_definition_token1, - [32157] = 15, + [32151] = 16, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(217), 1, - aux_sym_variable_definition_token2, - ACTIONS(283), 1, + ACTIONS(227), 1, anon_sym_SLASH, - ACTIONS(285), 1, + ACTIONS(229), 1, anon_sym_STAR, - STATE(488), 1, + ACTIONS(1139), 1, + aux_sym_variable_definition_token2, + STATE(463), 1, sym__comparison_operator, - STATE(507), 1, + STATE(464), 1, sym__multiplicative_operator, - STATE(508), 1, + STATE(465), 1, sym__additive_operator, - STATE(510), 1, + STATE(469), 1, sym__logical_operator, - ACTIONS(289), 2, + ACTIONS(233), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(617), 2, + ACTIONS(239), 2, + sym__or_operator, + sym__and_operator, + STATE(622), 2, sym_comment, sym_include, - ACTIONS(291), 3, + ACTIONS(235), 3, anon_sym_LT, anon_sym_GT, aux_sym__comparison_operator_token6, - ACTIONS(293), 12, + ACTIONS(237), 12, anon_sym_LT_EQ, anon_sym_LT_GT, anon_sym_EQ, @@ -73853,9 +74562,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(219), 15, - sym__or_operator, - sym__and_operator, + ACTIONS(241), 13, aux_sym__block_terminator_token1, aux_sym_variable_tuning_token1, aux_sym_variable_tuning_token5, @@ -73869,40 +74576,38 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_setter_token1, aux_sym_method_definition_token1, aux_sym_constructor_definition_token1, - [32232] = 13, + [32228] = 15, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(283), 1, + ACTIONS(123), 1, + aux_sym_variable_definition_token2, + ACTIONS(227), 1, anon_sym_SLASH, - ACTIONS(285), 1, + ACTIONS(229), 1, anon_sym_STAR, - STATE(488), 1, + STATE(463), 1, sym__comparison_operator, - STATE(507), 1, + STATE(464), 1, sym__multiplicative_operator, - STATE(508), 1, + STATE(465), 1, sym__additive_operator, - STATE(510), 1, + STATE(469), 1, sym__logical_operator, - ACTIONS(289), 2, + ACTIONS(233), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(618), 2, + STATE(623), 2, sym_comment, sym_include, - ACTIONS(309), 4, + ACTIONS(235), 3, anon_sym_LT, anon_sym_GT, aux_sym__comparison_operator_token6, - aux_sym_variable_definition_token2, - ACTIONS(307), 27, - sym__or_operator, - sym__and_operator, - aux_sym__block_terminator_token1, + ACTIONS(237), 12, anon_sym_LT_EQ, anon_sym_LT_GT, anon_sym_EQ, @@ -73915,6 +74620,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, + ACTIONS(125), 15, + sym__or_operator, + sym__and_operator, + aux_sym__block_terminator_token1, aux_sym_variable_tuning_token1, aux_sym_variable_tuning_token5, aux_sym_variable_tuning_token6, @@ -73934,34 +74643,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(283), 1, + ACTIONS(227), 1, anon_sym_SLASH, - ACTIONS(285), 1, + ACTIONS(229), 1, anon_sym_STAR, - ACTIONS(1121), 1, + ACTIONS(1239), 1, aux_sym_variable_definition_token2, - STATE(488), 1, + STATE(463), 1, sym__comparison_operator, - STATE(507), 1, + STATE(464), 1, sym__multiplicative_operator, - STATE(508), 1, + STATE(465), 1, sym__additive_operator, - STATE(510), 1, + STATE(469), 1, sym__logical_operator, - ACTIONS(289), 2, + ACTIONS(233), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(295), 2, + ACTIONS(239), 2, sym__or_operator, sym__and_operator, - STATE(619), 2, + STATE(624), 2, sym_comment, sym_include, - ACTIONS(291), 3, + ACTIONS(235), 3, anon_sym_LT, anon_sym_GT, aux_sym__comparison_operator_token6, - ACTIONS(293), 12, + ACTIONS(237), 12, anon_sym_LT_EQ, anon_sym_LT_GT, anon_sym_EQ, @@ -73974,7 +74683,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(327), 13, + ACTIONS(1237), 13, aux_sym__block_terminator_token1, aux_sym_variable_tuning_token1, aux_sym_variable_tuning_token5, @@ -73995,34 +74704,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(283), 1, + ACTIONS(227), 1, anon_sym_SLASH, - ACTIONS(285), 1, + ACTIONS(229), 1, anon_sym_STAR, - ACTIONS(1139), 1, + ACTIONS(1121), 1, aux_sym_variable_definition_token2, - STATE(488), 1, + STATE(463), 1, sym__comparison_operator, - STATE(507), 1, + STATE(464), 1, sym__multiplicative_operator, - STATE(508), 1, + STATE(465), 1, sym__additive_operator, - STATE(510), 1, + STATE(469), 1, sym__logical_operator, - ACTIONS(289), 2, + ACTIONS(233), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(295), 2, + ACTIONS(239), 2, sym__or_operator, sym__and_operator, - STATE(620), 2, + STATE(625), 2, sym_comment, sym_include, - ACTIONS(291), 3, + ACTIONS(235), 3, anon_sym_LT, anon_sym_GT, aux_sym__comparison_operator_token6, - ACTIONS(293), 12, + ACTIONS(237), 12, anon_sym_LT_EQ, anon_sym_LT_GT, anon_sym_EQ, @@ -74035,7 +74744,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(323), 13, + ACTIONS(245), 13, aux_sym__block_terminator_token1, aux_sym_variable_tuning_token1, aux_sym_variable_tuning_token5, @@ -74049,26 +74758,27 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_setter_token1, aux_sym_method_definition_token1, aux_sym_constructor_definition_token1, - [32457] = 7, + [32457] = 8, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(1241), 1, + ACTIONS(1223), 1, sym__namecolon, - STATE(621), 3, + STATE(627), 1, + aux_sym_object_access_repeat1, + STATE(626), 2, sym_comment, sym_include, - aux_sym_object_access_repeat1, - ACTIONS(95), 5, + ACTIONS(105), 5, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, aux_sym__comparison_operator_token6, aux_sym_variable_definition_token2, - ACTIONS(97), 31, + ACTIONS(107), 31, sym__or_operator, sym__and_operator, anon_sym_STAR, @@ -74100,27 +74810,26 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_setter_token1, aux_sym_method_definition_token1, aux_sym_constructor_definition_token1, - [32515] = 8, + [32517] = 7, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(1217), 1, + ACTIONS(1241), 1, sym__namecolon, - STATE(621), 1, - aux_sym_object_access_repeat1, - STATE(622), 2, + STATE(627), 3, sym_comment, sym_include, - ACTIONS(79), 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(81), 31, + ACTIONS(93), 31, sym__or_operator, sym__and_operator, anon_sym_STAR, @@ -74152,34 +74861,31 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_setter_token1, aux_sym_method_definition_token1, aux_sym_constructor_definition_token1, - [32575] = 11, + [32575] = 8, 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, + ACTIONS(1221), 1, sym__namedot, - ACTIONS(1248), 1, - sym__namecolon, - STATE(688), 1, - aux_sym_object_access_repeat1, - STATE(723), 1, + STATE(630), 1, aux_sym_qualified_name_repeat1, - STATE(623), 2, + STATE(628), 2, sym_comment, sym_include, - ACTIONS(63), 3, + ACTIONS(79), 5, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(67), 29, + 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, @@ -74191,71 +74897,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, - 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, - [32640] = 20, + 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] = 20, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(283), 1, + ACTIONS(227), 1, anon_sym_SLASH, - ACTIONS(285), 1, + ACTIONS(229), 1, anon_sym_STAR, - ACTIONS(1250), 1, + ACTIONS(1244), 1, sym__terminator, - ACTIONS(1256), 1, + ACTIONS(1250), 1, aux_sym_input_stream_tuning_token9, - STATE(347), 1, - sym__multiplicative_operator, - STATE(375), 1, + STATE(401), 1, + sym__logical_operator, + STATE(447), 1, sym__comparison_operator, - STATE(408), 1, + STATE(507), 1, sym__additive_operator, - STATE(411), 1, - sym__logical_operator, - STATE(2017), 1, + STATE(516), 1, + sym__multiplicative_operator, + STATE(1977), 1, aux_sym_input_stream_statement_repeat1, - STATE(2144), 1, + STATE(2156), 1, sym_input_stream_tuning, - ACTIONS(289), 2, + ACTIONS(233), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(291), 2, + ACTIONS(235), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(295), 2, + ACTIONS(239), 2, sym__or_operator, sym__and_operator, - ACTIONS(1252), 2, + ACTIONS(1246), 2, aux_sym_input_stream_tuning_token1, aux_sym_input_stream_tuning_token5, - STATE(624), 2, + STATE(629), 2, sym_comment, sym_include, - ACTIONS(1254), 6, + ACTIONS(1248), 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(293), 13, + ACTIONS(237), 13, anon_sym_LT_EQ, anon_sym_LT_GT, anon_sym_EQ, @@ -74269,29 +74975,30 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - [32723] = 6, + [32717] = 7, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - STATE(625), 2, + ACTIONS(1252), 1, + sym__namedot, + STATE(630), 3, sym_comment, sym_include, - ACTIONS(115), 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(117), 32, - sym__namecolon, + ACTIONS(100), 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, @@ -74318,56 +75025,56 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_setter_token1, aux_sym_method_definition_token1, aux_sym_constructor_definition_token1, - [32778] = 20, + [32774] = 20, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(283), 1, + ACTIONS(227), 1, anon_sym_SLASH, - ACTIONS(285), 1, + ACTIONS(229), 1, anon_sym_STAR, - ACTIONS(1256), 1, + ACTIONS(1250), 1, aux_sym_input_stream_tuning_token9, - ACTIONS(1258), 1, + ACTIONS(1255), 1, sym__terminator, - STATE(347), 1, - sym__multiplicative_operator, - STATE(375), 1, + STATE(401), 1, + sym__logical_operator, + STATE(447), 1, sym__comparison_operator, - STATE(408), 1, + STATE(507), 1, sym__additive_operator, - STATE(411), 1, - sym__logical_operator, - STATE(2018), 1, + STATE(516), 1, + sym__multiplicative_operator, + STATE(2007), 1, aux_sym_input_stream_statement_repeat1, - STATE(2144), 1, + STATE(2156), 1, sym_input_stream_tuning, - ACTIONS(289), 2, + ACTIONS(233), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(291), 2, + ACTIONS(235), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(295), 2, + ACTIONS(239), 2, sym__or_operator, sym__and_operator, - ACTIONS(1252), 2, + ACTIONS(1246), 2, aux_sym_input_stream_tuning_token1, aux_sym_input_stream_tuning_token5, - STATE(626), 2, + STATE(631), 2, sym_comment, sym_include, - ACTIONS(1254), 6, + ACTIONS(1248), 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(293), 13, + ACTIONS(237), 13, anon_sym_LT_EQ, anon_sym_LT_GT, anon_sym_EQ, @@ -74381,31 +75088,34 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - [32861] = 8, + [32857] = 11, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(1215), 1, + ACTIONS(1257), 1, + anon_sym_LPAREN, + ACTIONS(1259), 1, sym__namedot, - STATE(638), 1, + ACTIONS(1261), 1, + sym__namecolon, + STATE(722), 1, + aux_sym_object_access_repeat1, + STATE(728), 1, aux_sym_qualified_name_repeat1, - STATE(627), 2, + STATE(632), 2, sym_comment, sym_include, - ACTIONS(87), 5, + ACTIONS(63), 3, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - aux_sym__comparison_operator_token6, - aux_sym_variable_definition_token2, - ACTIONS(89), 30, + ACTIONS(67), 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, @@ -74417,71 +75127,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, - [32920] = 20, + 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, + [32922] = 20, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(283), 1, + ACTIONS(227), 1, anon_sym_SLASH, - ACTIONS(285), 1, + ACTIONS(229), 1, anon_sym_STAR, - ACTIONS(1256), 1, + ACTIONS(1250), 1, aux_sym_input_stream_tuning_token9, - ACTIONS(1260), 1, + ACTIONS(1263), 1, sym__terminator, - STATE(347), 1, - sym__multiplicative_operator, - STATE(375), 1, + STATE(401), 1, + sym__logical_operator, + STATE(447), 1, sym__comparison_operator, - STATE(408), 1, + STATE(507), 1, sym__additive_operator, - STATE(411), 1, - sym__logical_operator, - STATE(1958), 1, + STATE(516), 1, + sym__multiplicative_operator, + STATE(2018), 1, aux_sym_input_stream_statement_repeat1, - STATE(2144), 1, + STATE(2156), 1, sym_input_stream_tuning, - ACTIONS(289), 2, + ACTIONS(233), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(291), 2, + ACTIONS(235), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(295), 2, + ACTIONS(239), 2, sym__or_operator, sym__and_operator, - ACTIONS(1252), 2, + ACTIONS(1246), 2, aux_sym_input_stream_tuning_token1, aux_sym_input_stream_tuning_token5, - STATE(628), 2, + STATE(633), 2, sym_comment, sym_include, - ACTIONS(1254), 6, + ACTIONS(1248), 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(293), 13, + ACTIONS(237), 13, anon_sym_LT_EQ, anon_sym_LT_GT, anon_sym_EQ, @@ -74495,56 +75205,56 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - [33003] = 20, + [33005] = 20, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(283), 1, + ACTIONS(227), 1, anon_sym_SLASH, - ACTIONS(285), 1, + ACTIONS(229), 1, anon_sym_STAR, - ACTIONS(1256), 1, + ACTIONS(1250), 1, aux_sym_input_stream_tuning_token9, - ACTIONS(1262), 1, + ACTIONS(1265), 1, sym__terminator, - STATE(347), 1, - sym__multiplicative_operator, - STATE(375), 1, + STATE(401), 1, + sym__logical_operator, + STATE(447), 1, sym__comparison_operator, - STATE(408), 1, + STATE(507), 1, sym__additive_operator, - STATE(411), 1, - sym__logical_operator, - STATE(1991), 1, + STATE(516), 1, + sym__multiplicative_operator, + STATE(1999), 1, aux_sym_input_stream_statement_repeat1, - STATE(2144), 1, + STATE(2156), 1, sym_input_stream_tuning, - ACTIONS(289), 2, + ACTIONS(233), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(291), 2, + ACTIONS(235), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(295), 2, + ACTIONS(239), 2, sym__or_operator, sym__and_operator, - ACTIONS(1252), 2, + ACTIONS(1246), 2, aux_sym_input_stream_tuning_token1, aux_sym_input_stream_tuning_token5, - STATE(629), 2, + STATE(634), 2, sym_comment, sym_include, - ACTIONS(1254), 6, + ACTIONS(1248), 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(293), 13, + ACTIONS(237), 13, anon_sym_LT_EQ, anon_sym_LT_GT, anon_sym_EQ, @@ -74558,56 +75268,119 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - [33086] = 20, + [33088] = 20, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(283), 1, + ACTIONS(227), 1, anon_sym_SLASH, - ACTIONS(285), 1, + ACTIONS(229), 1, anon_sym_STAR, - ACTIONS(1256), 1, + ACTIONS(1250), 1, aux_sym_input_stream_tuning_token9, - ACTIONS(1264), 1, + ACTIONS(1267), 1, sym__terminator, - STATE(347), 1, - sym__multiplicative_operator, - STATE(375), 1, + STATE(401), 1, + sym__logical_operator, + STATE(447), 1, sym__comparison_operator, - STATE(408), 1, + STATE(507), 1, sym__additive_operator, - STATE(411), 1, + STATE(516), 1, + sym__multiplicative_operator, + STATE(2023), 1, + aux_sym_input_stream_statement_repeat1, + STATE(2156), 1, + sym_input_stream_tuning, + ACTIONS(233), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(235), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(239), 2, + sym__or_operator, + sym__and_operator, + ACTIONS(1246), 2, + aux_sym_input_stream_tuning_token1, + aux_sym_input_stream_tuning_token5, + STATE(635), 2, + sym_comment, + sym_include, + ACTIONS(1248), 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(237), 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, + [33171] = 20, + ACTIONS(59), 1, + anon_sym_SLASH_SLASH, + ACTIONS(61), 1, + anon_sym_SLASH_STAR, + ACTIONS(65), 1, + anon_sym_LBRACE, + ACTIONS(227), 1, + anon_sym_SLASH, + ACTIONS(229), 1, + anon_sym_STAR, + ACTIONS(1250), 1, + aux_sym_input_stream_tuning_token9, + ACTIONS(1269), 1, + sym__terminator, + STATE(401), 1, sym__logical_operator, - STATE(2022), 1, + STATE(447), 1, + sym__comparison_operator, + STATE(507), 1, + sym__additive_operator, + STATE(516), 1, + sym__multiplicative_operator, + STATE(2026), 1, aux_sym_input_stream_statement_repeat1, - STATE(2144), 1, + STATE(2156), 1, sym_input_stream_tuning, - ACTIONS(289), 2, + ACTIONS(233), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(291), 2, + ACTIONS(235), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(295), 2, + ACTIONS(239), 2, sym__or_operator, sym__and_operator, - ACTIONS(1252), 2, + ACTIONS(1246), 2, aux_sym_input_stream_tuning_token1, aux_sym_input_stream_tuning_token5, - STATE(630), 2, + STATE(636), 2, sym_comment, sym_include, - ACTIONS(1254), 6, + ACTIONS(1248), 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(293), 13, + ACTIONS(237), 13, anon_sym_LT_EQ, anon_sym_LT_GT, anon_sym_EQ, @@ -74621,18 +75394,18 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - [33169] = 8, + [33254] = 8, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(1215), 1, + ACTIONS(1221), 1, sym__namedot, - STATE(638), 1, + STATE(628), 1, aux_sym_qualified_name_repeat1, - STATE(631), 2, + STATE(637), 2, sym_comment, sym_include, ACTIONS(83), 5, @@ -74672,119 +75445,56 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_setter_token1, aux_sym_method_definition_token1, aux_sym_constructor_definition_token1, - [33228] = 20, + [33313] = 20, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(283), 1, + ACTIONS(227), 1, anon_sym_SLASH, - ACTIONS(285), 1, + ACTIONS(229), 1, anon_sym_STAR, - ACTIONS(1256), 1, + ACTIONS(1250), 1, aux_sym_input_stream_tuning_token9, - ACTIONS(1266), 1, + ACTIONS(1271), 1, sym__terminator, - STATE(347), 1, - sym__multiplicative_operator, - STATE(375), 1, - sym__comparison_operator, - STATE(408), 1, - sym__additive_operator, - STATE(411), 1, + STATE(401), 1, sym__logical_operator, - STATE(2010), 1, - aux_sym_input_stream_statement_repeat1, - STATE(2144), 1, - sym_input_stream_tuning, - ACTIONS(289), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(291), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(295), 2, - sym__or_operator, - sym__and_operator, - ACTIONS(1252), 2, - aux_sym_input_stream_tuning_token1, - aux_sym_input_stream_tuning_token5, - STATE(632), 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(293), 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, - [33311] = 20, - ACTIONS(59), 1, - anon_sym_SLASH_SLASH, - ACTIONS(61), 1, - anon_sym_SLASH_STAR, - ACTIONS(65), 1, - anon_sym_LBRACE, - ACTIONS(283), 1, - anon_sym_SLASH, - ACTIONS(285), 1, - anon_sym_STAR, - ACTIONS(1256), 1, - aux_sym_input_stream_tuning_token9, - ACTIONS(1268), 1, - sym__terminator, - STATE(347), 1, - sym__multiplicative_operator, - STATE(375), 1, + STATE(447), 1, sym__comparison_operator, - STATE(408), 1, + STATE(507), 1, sym__additive_operator, - STATE(411), 1, - sym__logical_operator, - STATE(2006), 1, + STATE(516), 1, + sym__multiplicative_operator, + STATE(1985), 1, aux_sym_input_stream_statement_repeat1, - STATE(2144), 1, + STATE(2156), 1, sym_input_stream_tuning, - ACTIONS(289), 2, + ACTIONS(233), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(291), 2, + ACTIONS(235), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(295), 2, + ACTIONS(239), 2, sym__or_operator, sym__and_operator, - ACTIONS(1252), 2, + ACTIONS(1246), 2, aux_sym_input_stream_tuning_token1, aux_sym_input_stream_tuning_token5, - STATE(633), 2, + STATE(638), 2, sym_comment, sym_include, - ACTIONS(1254), 6, + ACTIONS(1248), 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(293), 13, + ACTIONS(237), 13, anon_sym_LT_EQ, anon_sym_LT_GT, anon_sym_EQ, @@ -74798,56 +75508,56 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - [33394] = 20, + [33396] = 20, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(283), 1, + ACTIONS(227), 1, anon_sym_SLASH, - ACTIONS(285), 1, + ACTIONS(229), 1, anon_sym_STAR, - ACTIONS(1256), 1, + ACTIONS(1250), 1, aux_sym_input_stream_tuning_token9, - ACTIONS(1270), 1, + ACTIONS(1273), 1, sym__terminator, - STATE(347), 1, - sym__multiplicative_operator, - STATE(375), 1, + STATE(401), 1, + sym__logical_operator, + STATE(447), 1, sym__comparison_operator, - STATE(408), 1, + STATE(507), 1, sym__additive_operator, - STATE(411), 1, - sym__logical_operator, - STATE(1984), 1, + STATE(516), 1, + sym__multiplicative_operator, + STATE(1983), 1, aux_sym_input_stream_statement_repeat1, - STATE(2144), 1, + STATE(2156), 1, sym_input_stream_tuning, - ACTIONS(289), 2, + ACTIONS(233), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(291), 2, + ACTIONS(235), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(295), 2, + ACTIONS(239), 2, sym__or_operator, sym__and_operator, - ACTIONS(1252), 2, + ACTIONS(1246), 2, aux_sym_input_stream_tuning_token1, aux_sym_input_stream_tuning_token5, - STATE(634), 2, + STATE(639), 2, sym_comment, sym_include, - ACTIONS(1254), 6, + ACTIONS(1248), 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(293), 13, + ACTIONS(237), 13, anon_sym_LT_EQ, anon_sym_LT_GT, anon_sym_EQ, @@ -74861,26 +75571,27 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - [33477] = 7, + [33479] = 8, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(1272), 1, + ACTIONS(1221), 1, sym__namedot, - STATE(635), 3, + STATE(628), 1, + aux_sym_qualified_name_repeat1, + STATE(640), 2, sym_comment, sym_include, - aux_sym_qualified_name_repeat1, - ACTIONS(102), 5, + ACTIONS(87), 5, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, aux_sym__comparison_operator_token6, aux_sym_variable_definition_token2, - ACTIONS(104), 30, + ACTIONS(89), 30, sym__or_operator, sym__and_operator, anon_sym_STAR, @@ -74911,56 +75622,56 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_setter_token1, aux_sym_method_definition_token1, aux_sym_constructor_definition_token1, - [33534] = 20, + [33538] = 20, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(283), 1, + ACTIONS(227), 1, anon_sym_SLASH, - ACTIONS(285), 1, + ACTIONS(229), 1, anon_sym_STAR, - ACTIONS(1256), 1, + ACTIONS(1250), 1, aux_sym_input_stream_tuning_token9, ACTIONS(1275), 1, sym__terminator, - STATE(347), 1, - sym__multiplicative_operator, - STATE(375), 1, + STATE(401), 1, + sym__logical_operator, + STATE(447), 1, sym__comparison_operator, - STATE(408), 1, + STATE(507), 1, sym__additive_operator, - STATE(411), 1, - sym__logical_operator, - STATE(2008), 1, + STATE(516), 1, + sym__multiplicative_operator, + STATE(1970), 1, aux_sym_input_stream_statement_repeat1, - STATE(2144), 1, + STATE(2156), 1, sym_input_stream_tuning, - ACTIONS(289), 2, + ACTIONS(233), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(291), 2, + ACTIONS(235), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(295), 2, + ACTIONS(239), 2, sym__or_operator, sym__and_operator, - ACTIONS(1252), 2, + ACTIONS(1246), 2, aux_sym_input_stream_tuning_token1, aux_sym_input_stream_tuning_token5, - STATE(636), 2, + STATE(641), 2, sym_comment, sym_include, - ACTIONS(1254), 6, + ACTIONS(1248), 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(293), 13, + ACTIONS(237), 13, anon_sym_LT_EQ, anon_sym_LT_GT, anon_sym_EQ, @@ -74974,24 +75685,24 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - [33617] = 11, + [33621] = 11, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(1244), 1, + ACTIONS(1257), 1, anon_sym_LPAREN, - ACTIONS(1246), 1, + ACTIONS(1259), 1, sym__namedot, - ACTIONS(1248), 1, + ACTIONS(1261), 1, sym__namecolon, - STATE(688), 1, + STATE(722), 1, aux_sym_object_access_repeat1, - STATE(723), 1, + STATE(728), 1, aux_sym_qualified_name_repeat1, - STATE(637), 2, + STATE(642), 2, sym_comment, sym_include, ACTIONS(75), 3, @@ -75028,31 +75739,29 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_query_tuning_token5, aux_sym_sort_clause_token1, aux_sym_sort_clause_token2, - [33682] = 8, + [33686] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(1215), 1, - sym__namedot, - STATE(635), 1, - aux_sym_qualified_name_repeat1, - STATE(638), 2, + STATE(643), 2, sym_comment, sym_include, - ACTIONS(91), 5, + ACTIONS(115), 5, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, aux_sym__comparison_operator_token6, aux_sym_variable_definition_token2, - ACTIONS(93), 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, @@ -75086,49 +75795,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(283), 1, + ACTIONS(227), 1, anon_sym_SLASH, - ACTIONS(285), 1, + ACTIONS(229), 1, anon_sym_STAR, - ACTIONS(1256), 1, + ACTIONS(1250), 1, aux_sym_input_stream_tuning_token9, ACTIONS(1277), 1, sym__terminator, - STATE(347), 1, - sym__multiplicative_operator, - STATE(375), 1, + STATE(401), 1, + sym__logical_operator, + STATE(447), 1, sym__comparison_operator, - STATE(408), 1, + STATE(507), 1, sym__additive_operator, - STATE(411), 1, - sym__logical_operator, - STATE(1983), 1, + STATE(516), 1, + sym__multiplicative_operator, + STATE(1981), 1, aux_sym_input_stream_statement_repeat1, - STATE(2144), 1, + STATE(2156), 1, sym_input_stream_tuning, - ACTIONS(289), 2, + ACTIONS(233), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(291), 2, + ACTIONS(235), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(295), 2, + ACTIONS(239), 2, sym__or_operator, sym__and_operator, - ACTIONS(1252), 2, + ACTIONS(1246), 2, aux_sym_input_stream_tuning_token1, aux_sym_input_stream_tuning_token5, - STATE(639), 2, + STATE(644), 2, sym_comment, sym_include, - ACTIONS(1254), 6, + ACTIONS(1248), 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(293), 13, + ACTIONS(237), 13, anon_sym_LT_EQ, anon_sym_LT_GT, anon_sym_EQ, @@ -75149,31 +75858,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(283), 1, + ACTIONS(227), 1, anon_sym_SLASH, - ACTIONS(285), 1, + ACTIONS(229), 1, anon_sym_STAR, - STATE(424), 1, + STATE(501), 1, sym__logical_operator, - STATE(426), 1, + STATE(503), 1, sym__additive_operator, - STATE(440), 1, + STATE(504), 1, sym__multiplicative_operator, - STATE(463), 1, + STATE(509), 1, sym__comparison_operator, - ACTIONS(289), 2, + ACTIONS(233), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(291), 2, + ACTIONS(235), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(295), 2, + ACTIONS(239), 2, sym__or_operator, sym__and_operator, - STATE(640), 2, + STATE(645), 2, sym_comment, sym_include, - ACTIONS(321), 11, + ACTIONS(261), 11, anon_sym_COMMA, aux_sym_function_call_token1, anon_sym_COLON, @@ -75185,7 +75894,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_query_tuning_token5, aux_sym_sort_clause_token1, aux_sym_sort_clause_token2, - ACTIONS(293), 13, + ACTIONS(237), 13, anon_sym_LT_EQ, anon_sym_LT_GT, anon_sym_EQ, @@ -75206,27 +75915,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - STATE(416), 1, + STATE(501), 1, sym__logical_operator, - STATE(419), 1, + STATE(503), 1, sym__additive_operator, - STATE(421), 1, + STATE(504), 1, sym__multiplicative_operator, - STATE(423), 1, + STATE(509), 1, sym__comparison_operator, - STATE(641), 2, + STATE(646), 2, sym_comment, sym_include, - ACTIONS(313), 3, + ACTIONS(253), 3, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(315), 29, + ACTIONS(255), 29, sym__or_operator, sym__and_operator, anon_sym_STAR, - sym__terminator, - anon_sym_RPAREN, anon_sym_PLUS, anon_sym_DASH, anon_sym_LT_EQ, @@ -75242,96 +75949,49 @@ 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_function_call_token1, - aux_sym_using_statement_token1, - aux_sym_where_clause_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_of_token1, - [33958] = 7, - ACTIONS(59), 1, - anon_sym_SLASH_SLASH, - ACTIONS(61), 1, - anon_sym_SLASH_STAR, - ACTIONS(65), 1, - anon_sym_LBRACE, - ACTIONS(1213), 1, - anon_sym_LPAREN, - STATE(642), 2, - sym_comment, - sym_include, - ACTIONS(75), 5, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - 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, - 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, - [34014] = 15, + aux_sym_sort_clause_token1, + aux_sym_sort_clause_token2, + [33958] = 15, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(283), 1, + ACTIONS(227), 1, anon_sym_SLASH, - ACTIONS(285), 1, + ACTIONS(229), 1, anon_sym_STAR, - STATE(416), 1, - sym__logical_operator, - STATE(419), 1, - sym__additive_operator, - STATE(421), 1, - sym__multiplicative_operator, - STATE(423), 1, + STATE(404), 1, sym__comparison_operator, - ACTIONS(289), 2, + STATE(428), 1, + sym__multiplicative_operator, + STATE(429), 1, + sym__additive_operator, + STATE(436), 1, + sym__logical_operator, + ACTIONS(233), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(291), 2, + ACTIONS(235), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(295), 2, + ACTIONS(239), 2, sym__or_operator, sym__and_operator, - STATE(643), 2, + STATE(647), 2, sym_comment, sym_include, - ACTIONS(325), 11, + ACTIONS(243), 11, sym__terminator, anon_sym_RPAREN, aux_sym_function_call_token1, @@ -75343,7 +76003,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_query_tuning_token4, aux_sym_query_tuning_token5, aux_sym_of_token1, - ACTIONS(293), 13, + ACTIONS(237), 13, anon_sym_LT_EQ, anon_sym_LT_GT, anon_sym_EQ, @@ -75357,7 +76017,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - [34086] = 7, + [34030] = 7, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, @@ -75365,17 +76025,17 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(65), 1, anon_sym_LBRACE, ACTIONS(1279), 1, - aux_sym_function_call_token1, - STATE(644), 2, + sym__namedot, + STATE(648), 2, sym_comment, sym_include, - ACTIONS(131), 5, + ACTIONS(109), 5, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, aux_sym__comparison_operator_token6, aux_sym_variable_definition_token2, - ACTIONS(133), 30, + ACTIONS(111), 30, sym__or_operator, sym__and_operator, anon_sym_STAR, @@ -75406,50 +76066,31 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_setter_token1, aux_sym_method_definition_token1, aux_sym_constructor_definition_token1, - [34142] = 15, + [34086] = 7, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(283), 1, + ACTIONS(1281), 1, + aux_sym_function_call_token1, + STATE(649), 2, + sym_comment, + sym_include, + ACTIONS(127), 5, anon_sym_SLASH, - ACTIONS(285), 1, - anon_sym_STAR, - STATE(416), 1, - sym__logical_operator, - STATE(419), 1, - sym__additive_operator, - STATE(421), 1, - sym__multiplicative_operator, - STATE(423), 1, - sym__comparison_operator, - ACTIONS(289), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(291), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(295), 2, + aux_sym__comparison_operator_token6, + aux_sym_variable_definition_token2, + ACTIONS(129), 30, sym__or_operator, sym__and_operator, - STATE(645), 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(293), 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, @@ -75459,29 +76100,40 @@ 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, - [34214] = 7, + 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, + [34142] = 7, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(1281), 1, + ACTIONS(1283), 1, aux_sym_function_call_token1, - STATE(646), 2, + STATE(650), 2, sym_comment, sym_include, - ACTIONS(213), 5, + ACTIONS(153), 5, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, aux_sym__comparison_operator_token6, aux_sym_variable_definition_token2, - ACTIONS(215), 30, + ACTIONS(155), 30, sym__or_operator, sym__and_operator, anon_sym_STAR, @@ -75512,49 +76164,31 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_setter_token1, aux_sym_method_definition_token1, aux_sym_constructor_definition_token1, - [34270] = 14, + [34198] = 7, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(283), 1, + ACTIONS(1285), 1, + anon_sym_NO_DASHERROR, + STATE(651), 2, + sym_comment, + sym_include, + ACTIONS(527), 5, anon_sym_SLASH, - ACTIONS(285), 1, - anon_sym_STAR, - STATE(416), 1, - sym__logical_operator, - STATE(419), 1, - sym__additive_operator, - STATE(421), 1, - sym__multiplicative_operator, - STATE(423), 1, - sym__comparison_operator, - ACTIONS(289), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(291), 2, anon_sym_LT, anon_sym_GT, - STATE(647), 2, - sym_comment, - sym_include, - ACTIONS(219), 13, + aux_sym__comparison_operator_token6, + aux_sym_variable_definition_token2, + ACTIONS(529), 30, sym__or_operator, sym__and_operator, - 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(293), 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, @@ -75564,29 +76198,40 @@ 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, - [34340] = 7, + 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, + [34254] = 7, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(1283), 1, + ACTIONS(1287), 1, anon_sym_NO_DASHERROR, - STATE(648), 2, + STATE(652), 2, sym_comment, sym_include, - ACTIONS(629), 5, + ACTIONS(195), 5, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, aux_sym__comparison_operator_token6, aux_sym_variable_definition_token2, - ACTIONS(631), 30, + ACTIONS(197), 30, sym__or_operator, sym__and_operator, anon_sym_STAR, @@ -75617,25 +76262,24 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_setter_token1, aux_sym_method_definition_token1, aux_sym_constructor_definition_token1, - [34396] = 7, + [34310] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(1285), 1, - anon_sym_NO_DASHERROR, - STATE(649), 2, + STATE(653), 2, sym_comment, sym_include, - ACTIONS(205), 5, + ACTIONS(98), 5, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, aux_sym__comparison_operator_token6, aux_sym_variable_definition_token2, - ACTIONS(207), 30, + ACTIONS(100), 31, + sym__namedot, sym__or_operator, sym__and_operator, anon_sym_STAR, @@ -75666,50 +76310,51 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_setter_token1, aux_sym_method_definition_token1, aux_sym_constructor_definition_token1, - [34452] = 15, + [34364] = 16, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(283), 1, + ACTIONS(227), 1, anon_sym_SLASH, - ACTIONS(285), 1, + ACTIONS(229), 1, anon_sym_STAR, - STATE(424), 1, + ACTIONS(1291), 1, + aux_sym_input_stream_tuning_token11, + STATE(401), 1, sym__logical_operator, - STATE(426), 1, + STATE(447), 1, + sym__comparison_operator, + STATE(507), 1, sym__additive_operator, - STATE(440), 1, + STATE(516), 1, sym__multiplicative_operator, - STATE(463), 1, - sym__comparison_operator, - ACTIONS(289), 2, + ACTIONS(233), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(291), 2, + ACTIONS(235), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(295), 2, + ACTIONS(239), 2, sym__or_operator, sym__and_operator, - STATE(650), 2, + STATE(654), 2, sym_comment, sym_include, - ACTIONS(325), 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(293), 13, + ACTIONS(1289), 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(237), 13, anon_sym_LT_EQ, anon_sym_LT_GT, anon_sym_EQ, @@ -75723,50 +76368,49 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - [34524] = 15, + [34438] = 14, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(283), 1, + ACTIONS(227), 1, anon_sym_SLASH, - ACTIONS(285), 1, + ACTIONS(229), 1, anon_sym_STAR, - STATE(424), 1, - sym__logical_operator, - STATE(426), 1, - sym__additive_operator, - STATE(440), 1, - sym__multiplicative_operator, - STATE(463), 1, + STATE(404), 1, sym__comparison_operator, - ACTIONS(289), 2, + STATE(428), 1, + sym__multiplicative_operator, + STATE(429), 1, + sym__additive_operator, + STATE(436), 1, + sym__logical_operator, + ACTIONS(233), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(291), 2, + ACTIONS(235), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(295), 2, - sym__or_operator, - sym__and_operator, - STATE(651), 2, + STATE(655), 2, sym_comment, sym_include, - ACTIONS(327), 11, - anon_sym_COMMA, + ACTIONS(125), 13, + sym__or_operator, + sym__and_operator, + sym__terminator, + anon_sym_RPAREN, aux_sym_function_call_token1, - anon_sym_COLON, - aux_sym_on_error_phrase_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_sort_clause_token1, - aux_sym_sort_clause_token2, - ACTIONS(293), 13, + aux_sym_of_token1, + ACTIONS(237), 13, anon_sym_LT_EQ, anon_sym_LT_GT, anon_sym_EQ, @@ -75780,38 +76424,38 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - [34596] = 15, + [34508] = 15, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(283), 1, + ACTIONS(227), 1, anon_sym_SLASH, - ACTIONS(285), 1, + ACTIONS(229), 1, anon_sym_STAR, - STATE(416), 1, - sym__logical_operator, - STATE(419), 1, - sym__additive_operator, - STATE(421), 1, - sym__multiplicative_operator, - STATE(423), 1, + STATE(404), 1, sym__comparison_operator, - ACTIONS(289), 2, + STATE(428), 1, + sym__multiplicative_operator, + STATE(429), 1, + sym__additive_operator, + STATE(436), 1, + sym__logical_operator, + ACTIONS(233), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(291), 2, + ACTIONS(235), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(295), 2, + ACTIONS(239), 2, sym__or_operator, sym__and_operator, - STATE(652), 2, + STATE(656), 2, sym_comment, sym_include, - ACTIONS(305), 11, + ACTIONS(245), 11, sym__terminator, anon_sym_RPAREN, aux_sym_function_call_token1, @@ -75823,7 +76467,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_query_tuning_token4, aux_sym_query_tuning_token5, aux_sym_of_token1, - ACTIONS(293), 13, + ACTIONS(237), 13, anon_sym_LT_EQ, anon_sym_LT_GT, anon_sym_EQ, @@ -75837,39 +76481,99 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - [34668] = 13, + [34580] = 7, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(283), 1, + ACTIONS(1219), 1, + anon_sym_LPAREN, + STATE(657), 2, + sym_comment, + sym_include, + ACTIONS(75), 5, anon_sym_SLASH, - ACTIONS(285), 1, + anon_sym_LT, + anon_sym_GT, + aux_sym__comparison_operator_token6, + aux_sym_variable_definition_token2, + ACTIONS(77), 30, + sym__or_operator, + sym__and_operator, anon_sym_STAR, - STATE(416), 1, - sym__logical_operator, - STATE(419), 1, - sym__additive_operator, - STATE(421), 1, - sym__multiplicative_operator, - STATE(423), 1, + 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, + [34636] = 15, + ACTIONS(59), 1, + anon_sym_SLASH_SLASH, + ACTIONS(61), 1, + anon_sym_SLASH_STAR, + ACTIONS(65), 1, + anon_sym_LBRACE, + ACTIONS(227), 1, + anon_sym_SLASH, + ACTIONS(229), 1, + anon_sym_STAR, + STATE(404), 1, sym__comparison_operator, - ACTIONS(289), 2, + STATE(428), 1, + sym__multiplicative_operator, + STATE(429), 1, + sym__additive_operator, + STATE(436), 1, + sym__logical_operator, + ACTIONS(233), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(309), 2, + ACTIONS(235), 2, anon_sym_LT, anon_sym_GT, - STATE(653), 2, - sym_comment, - sym_include, - ACTIONS(307), 26, + ACTIONS(239), 2, sym__or_operator, sym__and_operator, + STATE(658), 2, + sym_comment, + sym_include, + ACTIONS(1293), 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(237), 13, anon_sym_LT_EQ, anon_sym_LT_GT, anon_sym_EQ, @@ -75883,6 +76587,40 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, + [34708] = 15, + ACTIONS(59), 1, + anon_sym_SLASH_SLASH, + ACTIONS(61), 1, + anon_sym_SLASH_STAR, + ACTIONS(65), 1, + anon_sym_LBRACE, + ACTIONS(227), 1, + anon_sym_SLASH, + ACTIONS(229), 1, + anon_sym_STAR, + STATE(404), 1, + sym__comparison_operator, + STATE(428), 1, + sym__multiplicative_operator, + STATE(429), 1, + sym__additive_operator, + STATE(436), 1, + sym__logical_operator, + ACTIONS(233), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(235), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(239), 2, + sym__or_operator, + sym__and_operator, + STATE(659), 2, + sym_comment, + sym_include, + ACTIONS(241), 11, + sym__terminator, + anon_sym_RPAREN, aux_sym_function_call_token1, aux_sym_using_statement_token1, aux_sym_where_clause_token1, @@ -75892,38 +76630,51 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_query_tuning_token4, aux_sym_query_tuning_token5, aux_sym_of_token1, - [34736] = 12, + ACTIONS(237), 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, + [34780] = 13, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(283), 1, + ACTIONS(227), 1, anon_sym_SLASH, - ACTIONS(285), 1, + ACTIONS(229), 1, anon_sym_STAR, - STATE(416), 1, + STATE(501), 1, sym__logical_operator, - STATE(419), 1, + STATE(503), 1, sym__additive_operator, - STATE(421), 1, + STATE(504), 1, sym__multiplicative_operator, - STATE(423), 1, + STATE(509), 1, sym__comparison_operator, - ACTIONS(319), 2, + ACTIONS(233), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(259), 2, anon_sym_LT, anon_sym_GT, - STATE(654), 2, + STATE(660), 2, sym_comment, sym_include, - ACTIONS(317), 28, + ACTIONS(257), 26, 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, @@ -75937,59 +76688,60 @@ 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_function_call_token1, - aux_sym_using_statement_token1, - aux_sym_where_clause_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_of_token1, - [34802] = 15, + aux_sym_sort_clause_token1, + aux_sym_sort_clause_token2, + [34848] = 14, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(283), 1, + ACTIONS(227), 1, anon_sym_SLASH, - ACTIONS(285), 1, + ACTIONS(229), 1, anon_sym_STAR, - STATE(416), 1, + STATE(501), 1, sym__logical_operator, - STATE(419), 1, + STATE(503), 1, sym__additive_operator, - STATE(421), 1, + STATE(504), 1, sym__multiplicative_operator, - STATE(423), 1, + STATE(509), 1, sym__comparison_operator, - ACTIONS(289), 2, + ACTIONS(233), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(291), 2, + ACTIONS(235), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(295), 2, - sym__or_operator, - sym__and_operator, - STATE(655), 2, + STATE(661), 2, sym_comment, sym_include, - ACTIONS(287), 11, - sym__terminator, - anon_sym_RPAREN, + ACTIONS(125), 13, + sym__or_operator, + sym__and_operator, + anon_sym_COMMA, aux_sym_function_call_token1, - aux_sym_using_statement_token1, - aux_sym_where_clause_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_of_token1, - ACTIONS(293), 13, + aux_sym_sort_clause_token1, + aux_sym_sort_clause_token2, + ACTIONS(237), 13, anon_sym_LT_EQ, anon_sym_LT_GT, anon_sym_EQ, @@ -76003,50 +76755,50 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - [34874] = 15, + [34918] = 15, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(283), 1, + ACTIONS(227), 1, anon_sym_SLASH, - ACTIONS(285), 1, + ACTIONS(229), 1, anon_sym_STAR, - STATE(416), 1, + STATE(501), 1, sym__logical_operator, - STATE(419), 1, + STATE(503), 1, sym__additive_operator, - STATE(421), 1, + STATE(504), 1, sym__multiplicative_operator, - STATE(423), 1, + STATE(509), 1, sym__comparison_operator, - ACTIONS(289), 2, + ACTIONS(233), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(291), 2, + ACTIONS(235), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(295), 2, + ACTIONS(239), 2, sym__or_operator, sym__and_operator, - STATE(656), 2, + STATE(662), 2, sym_comment, sym_include, - ACTIONS(321), 11, - sym__terminator, - anon_sym_RPAREN, + ACTIONS(1293), 11, + anon_sym_COMMA, aux_sym_function_call_token1, - aux_sym_using_statement_token1, - aux_sym_where_clause_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_of_token1, - ACTIONS(293), 13, + aux_sym_sort_clause_token1, + aux_sym_sort_clause_token2, + ACTIONS(237), 13, anon_sym_LT_EQ, anon_sym_LT_GT, anon_sym_EQ, @@ -76060,50 +76812,36 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - [34946] = 15, + [34990] = 12, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(283), 1, + ACTIONS(227), 1, anon_sym_SLASH, - ACTIONS(285), 1, + ACTIONS(229), 1, anon_sym_STAR, - STATE(416), 1, + STATE(501), 1, sym__logical_operator, - STATE(419), 1, + STATE(503), 1, sym__additive_operator, - STATE(421), 1, + STATE(504), 1, sym__multiplicative_operator, - STATE(423), 1, + STATE(509), 1, sym__comparison_operator, - ACTIONS(289), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(291), 2, + ACTIONS(251), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(295), 2, - sym__or_operator, - sym__and_operator, - STATE(657), 2, + STATE(663), 2, sym_comment, sym_include, - ACTIONS(323), 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(293), 13, + ACTIONS(249), 28, + sym__or_operator, + sym__and_operator, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_LT_EQ, anon_sym_LT_GT, anon_sym_EQ, @@ -76117,51 +76855,61 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - [35018] = 16, + 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, + [35056] = 15, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(283), 1, + ACTIONS(227), 1, anon_sym_SLASH, - ACTIONS(285), 1, + ACTIONS(229), 1, anon_sym_STAR, - ACTIONS(1289), 1, - aux_sym_input_stream_tuning_token11, - STATE(347), 1, + STATE(501), 1, + sym__logical_operator, + STATE(503), 1, + sym__additive_operator, + STATE(504), 1, sym__multiplicative_operator, - STATE(375), 1, + STATE(509), 1, sym__comparison_operator, - STATE(408), 1, - sym__additive_operator, - STATE(411), 1, - sym__logical_operator, - ACTIONS(289), 2, + ACTIONS(233), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(291), 2, + ACTIONS(235), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(295), 2, + ACTIONS(239), 2, sym__or_operator, sym__and_operator, - STATE(658), 2, + STATE(664), 2, sym_comment, sym_include, - ACTIONS(1287), 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(293), 13, + ACTIONS(245), 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(237), 13, anon_sym_LT_EQ, anon_sym_LT_GT, anon_sym_EQ, @@ -76175,31 +76923,50 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - [35092] = 7, + [35128] = 15, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(1291), 1, - sym__namedot, - STATE(659), 2, - sym_comment, - sym_include, - ACTIONS(109), 5, + ACTIONS(227), 1, anon_sym_SLASH, + ACTIONS(229), 1, + anon_sym_STAR, + STATE(501), 1, + sym__logical_operator, + STATE(503), 1, + sym__additive_operator, + STATE(504), 1, + sym__multiplicative_operator, + STATE(509), 1, + sym__comparison_operator, + ACTIONS(233), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(235), 2, anon_sym_LT, anon_sym_GT, - aux_sym__comparison_operator_token6, - aux_sym_variable_definition_token2, - ACTIONS(111), 30, + ACTIONS(239), 2, sym__or_operator, sym__and_operator, - anon_sym_STAR, - aux_sym__block_terminator_token1, - anon_sym_PLUS, - anon_sym_DASH, + STATE(665), 2, + sym_comment, + sym_include, + ACTIONS(243), 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(237), 13, anon_sym_LT_EQ, anon_sym_LT_GT, anon_sym_EQ, @@ -76209,64 +76976,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, - 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, - [35148] = 14, + [35200] = 15, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(283), 1, + ACTIONS(227), 1, anon_sym_SLASH, - ACTIONS(285), 1, + ACTIONS(229), 1, anon_sym_STAR, - STATE(424), 1, - sym__logical_operator, - STATE(426), 1, - sym__additive_operator, - STATE(440), 1, - sym__multiplicative_operator, - STATE(463), 1, + STATE(404), 1, sym__comparison_operator, - ACTIONS(289), 2, + STATE(428), 1, + sym__multiplicative_operator, + STATE(429), 1, + sym__additive_operator, + STATE(436), 1, + sym__logical_operator, + ACTIONS(233), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(291), 2, + ACTIONS(235), 2, anon_sym_LT, anon_sym_GT, - STATE(660), 2, - sym_comment, - sym_include, - ACTIONS(219), 13, + ACTIONS(239), 2, sym__or_operator, sym__and_operator, - anon_sym_COMMA, + STATE(666), 2, + sym_comment, + sym_include, + ACTIONS(231), 11, + sym__terminator, + anon_sym_RPAREN, aux_sym_function_call_token1, - anon_sym_COLON, - aux_sym_on_error_phrase_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_sort_clause_token1, - aux_sym_sort_clause_token2, - ACTIONS(293), 13, + aux_sym_of_token1, + ACTIONS(237), 13, anon_sym_LT_EQ, anon_sym_LT_GT, anon_sym_EQ, @@ -76280,38 +77037,38 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - [35218] = 15, + [35272] = 15, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(283), 1, + ACTIONS(227), 1, anon_sym_SLASH, - ACTIONS(285), 1, + ACTIONS(229), 1, anon_sym_STAR, - STATE(424), 1, + STATE(501), 1, sym__logical_operator, - STATE(426), 1, + STATE(503), 1, sym__additive_operator, - STATE(440), 1, + STATE(504), 1, sym__multiplicative_operator, - STATE(463), 1, + STATE(509), 1, sym__comparison_operator, - ACTIONS(289), 2, + ACTIONS(233), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(291), 2, + ACTIONS(235), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(295), 2, + ACTIONS(239), 2, sym__or_operator, sym__and_operator, - STATE(661), 2, + STATE(667), 2, sym_comment, sym_include, - ACTIONS(323), 11, + ACTIONS(247), 11, anon_sym_COMMA, aux_sym_function_call_token1, anon_sym_COLON, @@ -76323,7 +77080,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_query_tuning_token5, aux_sym_sort_clause_token1, aux_sym_sort_clause_token2, - ACTIONS(293), 13, + ACTIONS(237), 13, anon_sym_LT_EQ, anon_sym_LT_GT, anon_sym_EQ, @@ -76337,50 +77094,99 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - [35290] = 15, + [35344] = 7, + ACTIONS(59), 1, + anon_sym_SLASH_SLASH, + ACTIONS(61), 1, + anon_sym_SLASH_STAR, + ACTIONS(65), 1, + anon_sym_LBRACE, + ACTIONS(1219), 1, + anon_sym_LPAREN, + STATE(668), 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, + [35400] = 15, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(283), 1, + ACTIONS(227), 1, anon_sym_SLASH, - ACTIONS(285), 1, + ACTIONS(229), 1, anon_sym_STAR, - STATE(424), 1, - sym__logical_operator, - STATE(426), 1, - sym__additive_operator, - STATE(440), 1, - sym__multiplicative_operator, - STATE(463), 1, + STATE(404), 1, sym__comparison_operator, - ACTIONS(289), 2, + STATE(428), 1, + sym__multiplicative_operator, + STATE(429), 1, + sym__additive_operator, + STATE(436), 1, + sym__logical_operator, + ACTIONS(233), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(291), 2, + ACTIONS(235), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(295), 2, + ACTIONS(239), 2, sym__or_operator, sym__and_operator, - STATE(662), 2, + STATE(669), 2, sym_comment, sym_include, - ACTIONS(287), 11, - anon_sym_COMMA, + ACTIONS(247), 11, + sym__terminator, + anon_sym_RPAREN, aux_sym_function_call_token1, - anon_sym_COLON, - aux_sym_on_error_phrase_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_sort_clause_token1, - aux_sym_sort_clause_token2, - ACTIONS(293), 13, + aux_sym_of_token1, + ACTIONS(237), 13, anon_sym_LT_EQ, anon_sym_LT_GT, anon_sym_EQ, @@ -76394,34 +77200,36 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - [35362] = 12, + [35472] = 12, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(283), 1, + ACTIONS(227), 1, anon_sym_SLASH, - ACTIONS(285), 1, + ACTIONS(229), 1, anon_sym_STAR, - STATE(424), 1, - sym__logical_operator, - STATE(426), 1, - sym__additive_operator, - STATE(440), 1, - sym__multiplicative_operator, - STATE(463), 1, + STATE(404), 1, sym__comparison_operator, - ACTIONS(319), 2, + STATE(428), 1, + sym__multiplicative_operator, + STATE(429), 1, + sym__additive_operator, + STATE(436), 1, + sym__logical_operator, + ACTIONS(251), 2, anon_sym_LT, anon_sym_GT, - STATE(663), 2, + STATE(670), 2, sym_comment, sym_include, - ACTIONS(317), 28, + ACTIONS(249), 28, sym__or_operator, sym__and_operator, + sym__terminator, + anon_sym_RPAREN, anon_sym_PLUS, anon_sym_DASH, anon_sym_LT_EQ, @@ -76437,43 +77245,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_function_call_token1, - anon_sym_COLON, - aux_sym_on_error_phrase_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_sort_clause_token1, - aux_sym_sort_clause_token2, - [35428] = 10, + aux_sym_of_token1, + [35538] = 10, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - STATE(424), 1, - sym__logical_operator, - STATE(426), 1, - sym__additive_operator, - STATE(440), 1, - sym__multiplicative_operator, - STATE(463), 1, + STATE(404), 1, sym__comparison_operator, - STATE(664), 2, + STATE(428), 1, + sym__multiplicative_operator, + STATE(429), 1, + sym__additive_operator, + STATE(436), 1, + sym__logical_operator, + STATE(671), 2, sym_comment, sym_include, - ACTIONS(313), 3, + ACTIONS(253), 3, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(315), 29, + ACTIONS(255), 29, sym__or_operator, sym__and_operator, anon_sym_STAR, + sym__terminator, + anon_sym_RPAREN, anon_sym_PLUS, anon_sym_DASH, anon_sym_LT_EQ, @@ -76489,48 +77297,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, aux_sym_function_call_token1, - anon_sym_COLON, - aux_sym_on_error_phrase_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_sort_clause_token1, - aux_sym_sort_clause_token2, - [35490] = 13, + aux_sym_of_token1, + [35600] = 15, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(283), 1, + ACTIONS(227), 1, anon_sym_SLASH, - ACTIONS(285), 1, + ACTIONS(229), 1, anon_sym_STAR, - STATE(424), 1, + STATE(501), 1, sym__logical_operator, - STATE(426), 1, + STATE(503), 1, sym__additive_operator, - STATE(440), 1, + STATE(504), 1, sym__multiplicative_operator, - STATE(463), 1, + STATE(509), 1, sym__comparison_operator, - ACTIONS(289), 2, + ACTIONS(233), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(309), 2, + ACTIONS(235), 2, anon_sym_LT, anon_sym_GT, - STATE(665), 2, - sym_comment, - sym_include, - ACTIONS(307), 26, + ACTIONS(239), 2, sym__or_operator, sym__and_operator, + STATE(672), 2, + sym_comment, + sym_include, + ACTIONS(241), 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(237), 13, anon_sym_LT_EQ, anon_sym_LT_GT, anon_sym_EQ, @@ -76544,6 +77363,38 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, + [35672] = 15, + ACTIONS(59), 1, + anon_sym_SLASH_SLASH, + ACTIONS(61), 1, + anon_sym_SLASH_STAR, + ACTIONS(65), 1, + anon_sym_LBRACE, + ACTIONS(227), 1, + anon_sym_SLASH, + ACTIONS(229), 1, + anon_sym_STAR, + STATE(501), 1, + sym__logical_operator, + STATE(503), 1, + sym__additive_operator, + STATE(504), 1, + sym__multiplicative_operator, + STATE(509), 1, + sym__comparison_operator, + ACTIONS(233), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(235), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(239), 2, + sym__or_operator, + sym__and_operator, + STATE(673), 2, + sym_comment, + sym_include, + ACTIONS(231), 11, anon_sym_COMMA, aux_sym_function_call_token1, anon_sym_COLON, @@ -76555,30 +77406,110 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_query_tuning_token5, aux_sym_sort_clause_token1, aux_sym_sort_clause_token2, - [35558] = 6, + ACTIONS(237), 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, + [35744] = 15, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - STATE(666), 2, - sym_comment, - sym_include, - ACTIONS(102), 5, + ACTIONS(227), 1, anon_sym_SLASH, + ACTIONS(229), 1, + anon_sym_STAR, + STATE(404), 1, + sym__comparison_operator, + STATE(428), 1, + sym__multiplicative_operator, + STATE(429), 1, + sym__additive_operator, + STATE(436), 1, + sym__logical_operator, + ACTIONS(233), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(235), 2, anon_sym_LT, anon_sym_GT, - aux_sym__comparison_operator_token6, - aux_sym_variable_definition_token2, - ACTIONS(104), 31, - sym__namedot, + ACTIONS(239), 2, sym__or_operator, sym__and_operator, + STATE(674), 2, + sym_comment, + sym_include, + ACTIONS(261), 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(237), 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, + [35816] = 13, + ACTIONS(59), 1, + anon_sym_SLASH_SLASH, + ACTIONS(61), 1, + anon_sym_SLASH_STAR, + ACTIONS(65), 1, + anon_sym_LBRACE, + ACTIONS(227), 1, + anon_sym_SLASH, + ACTIONS(229), 1, anon_sym_STAR, - aux_sym__block_terminator_token1, + STATE(404), 1, + sym__comparison_operator, + STATE(428), 1, + sym__multiplicative_operator, + STATE(429), 1, + sym__additive_operator, + STATE(436), 1, + sym__logical_operator, + ACTIONS(233), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(259), 2, + anon_sym_LT, + anon_sym_GT, + STATE(675), 2, + sym_comment, + sym_include, + ACTIONS(257), 26, + sym__or_operator, + sym__and_operator, + sym__terminator, + anon_sym_RPAREN, anon_sym_LT_EQ, anon_sym_LT_GT, anon_sym_EQ, @@ -76588,65 +77519,62 @@ 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, - [35612] = 15, + 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, + [35884] = 15, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(283), 1, + ACTIONS(227), 1, anon_sym_SLASH, - ACTIONS(285), 1, + ACTIONS(229), 1, anon_sym_STAR, - STATE(424), 1, + STATE(401), 1, sym__logical_operator, - STATE(426), 1, + STATE(447), 1, + sym__comparison_operator, + STATE(507), 1, sym__additive_operator, - STATE(440), 1, + STATE(516), 1, sym__multiplicative_operator, - STATE(463), 1, - sym__comparison_operator, - ACTIONS(289), 2, + ACTIONS(233), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(291), 2, + ACTIONS(235), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(295), 2, + ACTIONS(239), 2, sym__or_operator, sym__and_operator, - STATE(667), 2, + STATE(676), 2, sym_comment, sym_include, - ACTIONS(305), 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(293), 13, + ACTIONS(1289), 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(237), 13, anon_sym_LT_EQ, anon_sym_LT_GT, anon_sym_EQ, @@ -76660,25 +77588,23 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - [35684] = 7, + [35955] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(1213), 1, - anon_sym_LPAREN, - STATE(668), 2, + STATE(677), 2, sym_comment, sym_include, - ACTIONS(63), 5, + ACTIONS(187), 5, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, aux_sym__comparison_operator_token6, aux_sym_variable_definition_token2, - ACTIONS(67), 30, + ACTIONS(189), 30, sym__or_operator, sym__and_operator, anon_sym_STAR, @@ -76709,53 +77635,106 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_setter_token1, aux_sym_method_definition_token1, aux_sym_constructor_definition_token1, - [35740] = 15, + [36008] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(283), 1, + STATE(678), 2, + sym_comment, + sym_include, + ACTIONS(175), 5, anon_sym_SLASH, - ACTIONS(285), 1, + anon_sym_LT, + anon_sym_GT, + aux_sym__comparison_operator_token6, + aux_sym_variable_definition_token2, + ACTIONS(177), 30, + sym__or_operator, + sym__and_operator, anon_sym_STAR, - STATE(424), 1, + 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, + [36061] = 22, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_LBRACE, + 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(1301), 1, + aux_sym_widget_field_token1, + STATE(419), 1, + sym__comparison_operator, + STATE(431), 1, sym__logical_operator, - STATE(426), 1, - sym__additive_operator, STATE(440), 1, + sym__additive_operator, + STATE(505), 1, sym__multiplicative_operator, - STATE(463), 1, - sym__comparison_operator, - ACTIONS(289), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(291), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(295), 2, + STATE(863), 1, + sym_do_block, + STATE(2150), 1, + aux_sym_on_statement_repeat1, + STATE(2445), 1, + aux_sym_on_statement_repeat2, + STATE(3291), 1, + sym_widget_phrase, + STATE(4307), 1, + sym_label, + ACTIONS(227), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(239), 2, sym__or_operator, sym__and_operator, - STATE(669), 2, + ACTIONS(1123), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(679), 2, sym_comment, sym_include, - ACTIONS(1293), 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(293), 13, + ACTIONS(235), 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, @@ -76766,50 +77745,29 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - [35812] = 15, + [36146] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(283), 1, + STATE(680), 2, + sym_comment, + sym_include, + ACTIONS(83), 5, anon_sym_SLASH, - ACTIONS(285), 1, - anon_sym_STAR, - STATE(416), 1, - sym__logical_operator, - STATE(419), 1, - sym__additive_operator, - STATE(421), 1, - sym__multiplicative_operator, - STATE(423), 1, - sym__comparison_operator, - ACTIONS(289), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(291), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(295), 2, + aux_sym__comparison_operator_token6, + aux_sym_variable_definition_token2, + ACTIONS(85), 30, sym__or_operator, sym__and_operator, - STATE(670), 2, - sym_comment, - sym_include, - ACTIONS(1293), 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(293), 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, @@ -76819,27 +77777,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, - [35884] = 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, + [36199] = 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(681), 2, sym_comment, sym_include, - ACTIONS(181), 5, + ACTIONS(211), 5, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, aux_sym__comparison_operator_token6, aux_sym_variable_definition_token2, - ACTIONS(183), 30, + ACTIONS(213), 30, sym__or_operator, sym__and_operator, anon_sym_STAR, @@ -76870,23 +77839,23 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_setter_token1, aux_sym_method_definition_token1, aux_sym_constructor_definition_token1, - [35937] = 6, + [36252] = 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(682), 2, sym_comment, sym_include, - ACTIONS(173), 5, + ACTIONS(163), 5, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, aux_sym__comparison_operator_token6, aux_sym_variable_definition_token2, - ACTIONS(175), 30, + ACTIONS(165), 30, sym__or_operator, sym__and_operator, anon_sym_STAR, @@ -76917,23 +77886,23 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_setter_token1, aux_sym_method_definition_token1, aux_sym_constructor_definition_token1, - [35990] = 6, + [36305] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - STATE(673), 2, + STATE(683), 2, sym_comment, sym_include, - ACTIONS(213), 5, + ACTIONS(171), 5, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, aux_sym__comparison_operator_token6, aux_sym_variable_definition_token2, - ACTIONS(215), 30, + ACTIONS(173), 30, sym__or_operator, sym__and_operator, anon_sym_STAR, @@ -76964,23 +77933,23 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_setter_token1, aux_sym_method_definition_token1, aux_sym_constructor_definition_token1, - [36043] = 6, + [36358] = 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(684), 2, sym_comment, sym_include, - ACTIONS(87), 5, + ACTIONS(63), 5, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, aux_sym__comparison_operator_token6, aux_sym_variable_definition_token2, - ACTIONS(89), 30, + ACTIONS(67), 30, sym__or_operator, sym__and_operator, anon_sym_STAR, @@ -77011,7 +77980,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_setter_token1, aux_sym_method_definition_token1, aux_sym_constructor_definition_token1, - [36096] = 22, + [36411] = 22, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, @@ -77026,39 +77995,39 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_input_expression_token2, ACTIONS(1299), 1, anon_sym_COMMA, - ACTIONS(1301), 1, + ACTIONS(1303), 1, aux_sym_widget_field_token1, - STATE(492), 1, + STATE(419), 1, + sym__comparison_operator, + STATE(431), 1, sym__logical_operator, - STATE(494), 1, + STATE(440), 1, sym__additive_operator, - STATE(495), 1, + STATE(505), 1, sym__multiplicative_operator, - STATE(501), 1, - sym__comparison_operator, - STATE(1082), 1, + STATE(962), 1, sym_do_block, - STATE(2160), 1, + STATE(2198), 1, aux_sym_on_statement_repeat1, - STATE(2530), 1, + STATE(2467), 1, aux_sym_on_statement_repeat2, - STATE(3194), 1, + STATE(3291), 1, sym_widget_phrase, - STATE(4193), 1, + STATE(4243), 1, sym_label, - ACTIONS(283), 2, + ACTIONS(227), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(295), 2, + ACTIONS(239), 2, sym__or_operator, sym__and_operator, ACTIONS(1123), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(675), 2, + STATE(685), 2, sym_comment, sym_include, - ACTIONS(291), 15, + ACTIONS(235), 15, anon_sym_LT, anon_sym_LT_EQ, anon_sym_LT_GT, @@ -77074,14 +78043,14 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - [36181] = 22, + [36496] = 22, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(261), 1, + ACTIONS(297), 1, aux_sym_do_block_token1, ACTIONS(1295), 1, sym_identifier, @@ -77089,39 +78058,102 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_input_expression_token2, ACTIONS(1299), 1, anon_sym_COMMA, - ACTIONS(1303), 1, + ACTIONS(1305), 1, aux_sym_widget_field_token1, - STATE(492), 1, + STATE(419), 1, + sym__comparison_operator, + STATE(431), 1, sym__logical_operator, - STATE(494), 1, + STATE(440), 1, sym__additive_operator, - STATE(495), 1, + STATE(505), 1, sym__multiplicative_operator, - STATE(501), 1, + STATE(1319), 1, + sym_do_block, + STATE(2153), 1, + aux_sym_on_statement_repeat1, + STATE(2517), 1, + aux_sym_on_statement_repeat2, + STATE(3291), 1, + sym_widget_phrase, + STATE(4560), 1, + sym_label, + ACTIONS(227), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(239), 2, + sym__or_operator, + sym__and_operator, + ACTIONS(1123), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(686), 2, + sym_comment, + sym_include, + ACTIONS(235), 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, + [36581] = 22, + 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, + ACTIONS(1299), 1, + anon_sym_COMMA, + ACTIONS(1307), 1, + aux_sym_widget_field_token1, + STATE(419), 1, sym__comparison_operator, - STATE(1142), 1, + STATE(431), 1, + sym__logical_operator, + STATE(440), 1, + sym__additive_operator, + STATE(505), 1, + sym__multiplicative_operator, + STATE(1343), 1, sym_do_block, - STATE(2147), 1, + STATE(2235), 1, aux_sym_on_statement_repeat1, - STATE(2470), 1, + STATE(2562), 1, aux_sym_on_statement_repeat2, - STATE(3194), 1, + STATE(3291), 1, sym_widget_phrase, - STATE(4440), 1, + STATE(4362), 1, sym_label, - ACTIONS(283), 2, + ACTIONS(227), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(295), 2, + ACTIONS(239), 2, sym__or_operator, sym__and_operator, ACTIONS(1123), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(676), 2, + STATE(687), 2, sym_comment, sym_include, - ACTIONS(291), 15, + ACTIONS(235), 15, anon_sym_LT, anon_sym_LT_EQ, anon_sym_LT_GT, @@ -77137,23 +78169,23 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - [36266] = 6, + [36666] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - STATE(677), 2, + STATE(688), 2, sym_comment, sym_include, - ACTIONS(209), 5, + ACTIONS(159), 5, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, aux_sym__comparison_operator_token6, aux_sym_variable_definition_token2, - ACTIONS(211), 30, + ACTIONS(161), 30, sym__or_operator, sym__and_operator, anon_sym_STAR, @@ -77184,23 +78216,23 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_setter_token1, aux_sym_method_definition_token1, aux_sym_constructor_definition_token1, - [36319] = 6, + [36719] = 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(689), 2, sym_comment, sym_include, - ACTIONS(149), 5, + ACTIONS(87), 5, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, aux_sym__comparison_operator_token6, aux_sym_variable_definition_token2, - ACTIONS(151), 30, + ACTIONS(89), 30, sym__or_operator, sym__and_operator, anon_sym_STAR, @@ -77231,7 +78263,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_setter_token1, aux_sym_method_definition_token1, aux_sym_constructor_definition_token1, - [36372] = 22, + [36772] = 22, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, @@ -77246,39 +78278,39 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_input_expression_token2, ACTIONS(1299), 1, anon_sym_COMMA, - ACTIONS(1305), 1, + ACTIONS(1309), 1, aux_sym_widget_field_token1, - STATE(492), 1, + STATE(419), 1, + sym__comparison_operator, + STATE(431), 1, sym__logical_operator, - STATE(494), 1, + STATE(440), 1, sym__additive_operator, - STATE(495), 1, + STATE(505), 1, sym__multiplicative_operator, - STATE(501), 1, - sym__comparison_operator, - STATE(1001), 1, - sym_do_block, - STATE(2141), 1, + STATE(2226), 1, aux_sym_on_statement_repeat1, - STATE(2409), 1, + STATE(2556), 1, aux_sym_on_statement_repeat2, - STATE(3194), 1, + STATE(3291), 1, sym_widget_phrase, - STATE(4176), 1, + STATE(3622), 1, + sym_do_block, + STATE(4453), 1, sym_label, - ACTIONS(283), 2, + ACTIONS(227), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(295), 2, + ACTIONS(239), 2, sym__or_operator, sym__and_operator, ACTIONS(1123), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(679), 2, + STATE(690), 2, sym_comment, sym_include, - ACTIONS(291), 15, + ACTIONS(235), 15, anon_sym_LT, anon_sym_LT_EQ, anon_sym_LT_GT, @@ -77294,14 +78326,14 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - [36457] = 22, + [36857] = 22, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(261), 1, + ACTIONS(791), 1, aux_sym_do_block_token1, ACTIONS(1295), 1, sym_identifier, @@ -77309,39 +78341,39 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_input_expression_token2, ACTIONS(1299), 1, anon_sym_COMMA, - ACTIONS(1307), 1, + ACTIONS(1311), 1, aux_sym_widget_field_token1, - STATE(492), 1, + STATE(419), 1, + sym__comparison_operator, + STATE(431), 1, sym__logical_operator, - STATE(494), 1, + STATE(440), 1, sym__additive_operator, - STATE(495), 1, + STATE(505), 1, sym__multiplicative_operator, - STATE(501), 1, - sym__comparison_operator, - STATE(1508), 1, + STATE(899), 1, sym_do_block, - STATE(2156), 1, + STATE(2164), 1, aux_sym_on_statement_repeat1, - STATE(2541), 1, + STATE(2456), 1, aux_sym_on_statement_repeat2, - STATE(3194), 1, + STATE(3291), 1, sym_widget_phrase, - STATE(4440), 1, + STATE(4307), 1, sym_label, - ACTIONS(283), 2, + ACTIONS(227), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(295), 2, + ACTIONS(239), 2, sym__or_operator, sym__and_operator, ACTIONS(1123), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(680), 2, + STATE(691), 2, sym_comment, sym_include, - ACTIONS(291), 15, + ACTIONS(235), 15, anon_sym_LT, anon_sym_LT_EQ, anon_sym_LT_GT, @@ -77357,61 +78389,77 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - [36542] = 6, - ACTIONS(59), 1, + [36942] = 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(681), 2, - sym_comment, - sym_include, - ACTIONS(127), 5, + 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(1313), 1, + aux_sym_widget_field_token1, + STATE(419), 1, + sym__comparison_operator, + STATE(431), 1, + sym__logical_operator, + STATE(440), 1, + sym__additive_operator, + STATE(505), 1, + sym__multiplicative_operator, + STATE(1009), 1, + sym_do_block, + STATE(2230), 1, + aux_sym_on_statement_repeat1, + STATE(2481), 1, + aux_sym_on_statement_repeat2, + STATE(3291), 1, + sym_widget_phrase, + STATE(4243), 1, + sym_label, + ACTIONS(227), 2, anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - aux_sym__comparison_operator_token6, - aux_sym_variable_definition_token2, - ACTIONS(129), 30, + anon_sym_STAR, + ACTIONS(239), 2, sym__or_operator, sym__and_operator, - anon_sym_STAR, - aux_sym__block_terminator_token1, + ACTIONS(1123), 2, anon_sym_PLUS, anon_sym_DASH, + STATE(692), 2, + sym_comment, + sym_include, + ACTIONS(235), 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, - [36595] = 22, + [37027] = 22, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(825), 1, + ACTIONS(791), 1, aux_sym_do_block_token1, ACTIONS(1295), 1, sym_identifier, @@ -77419,39 +78467,39 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_input_expression_token2, ACTIONS(1299), 1, anon_sym_COMMA, - ACTIONS(1309), 1, + ACTIONS(1315), 1, aux_sym_widget_field_token1, - STATE(492), 1, + STATE(419), 1, + sym__comparison_operator, + STATE(431), 1, sym__logical_operator, - STATE(494), 1, + STATE(440), 1, sym__additive_operator, - STATE(495), 1, + STATE(505), 1, sym__multiplicative_operator, - STATE(501), 1, - sym__comparison_operator, - STATE(983), 1, + STATE(949), 1, sym_do_block, - STATE(2146), 1, + STATE(2197), 1, aux_sym_on_statement_repeat1, - STATE(2484), 1, + STATE(2470), 1, aux_sym_on_statement_repeat2, - STATE(3194), 1, + STATE(3291), 1, sym_widget_phrase, - STATE(4176), 1, + STATE(4307), 1, sym_label, - ACTIONS(283), 2, + ACTIONS(227), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(295), 2, + ACTIONS(239), 2, sym__or_operator, sym__and_operator, ACTIONS(1123), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(682), 2, + STATE(693), 2, sym_comment, sym_include, - ACTIONS(291), 15, + ACTIONS(235), 15, anon_sym_LT, anon_sym_LT_EQ, anon_sym_LT_GT, @@ -77467,23 +78515,23 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - [36680] = 6, + [37112] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - STATE(683), 2, + STATE(694), 2, sym_comment, sym_include, - ACTIONS(205), 5, + ACTIONS(223), 5, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, aux_sym__comparison_operator_token6, aux_sym_variable_definition_token2, - ACTIONS(207), 30, + ACTIONS(225), 30, sym__or_operator, sym__and_operator, anon_sym_STAR, @@ -77514,86 +78562,23 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_setter_token1, aux_sym_method_definition_token1, aux_sym_constructor_definition_token1, - [36733] = 22, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - ACTIONS(7), 1, - anon_sym_LBRACE, - ACTIONS(789), 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(1311), 1, - aux_sym_widget_field_token1, - STATE(492), 1, - sym__logical_operator, - STATE(494), 1, - sym__additive_operator, - STATE(495), 1, - sym__multiplicative_operator, - STATE(501), 1, - sym__comparison_operator, - STATE(2204), 1, - aux_sym_on_statement_repeat1, - STATE(2466), 1, - aux_sym_on_statement_repeat2, - STATE(3194), 1, - sym_widget_phrase, - STATE(3430), 1, - sym_do_block, - STATE(4379), 1, - sym_label, - ACTIONS(283), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(295), 2, - sym__or_operator, - sym__and_operator, - ACTIONS(1123), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(684), 2, - sym_comment, - sym_include, - ACTIONS(291), 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, - [36818] = 6, + [37165] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - STATE(685), 2, + STATE(695), 2, sym_comment, sym_include, - ACTIONS(177), 5, + ACTIONS(167), 5, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, aux_sym__comparison_operator_token6, aux_sym_variable_definition_token2, - ACTIONS(179), 30, + ACTIONS(169), 30, sym__or_operator, sym__and_operator, anon_sym_STAR, @@ -77624,14 +78609,14 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_setter_token1, aux_sym_method_definition_token1, aux_sym_constructor_definition_token1, - [36871] = 22, + [37218] = 22, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(261), 1, + ACTIONS(43), 1, aux_sym_do_block_token1, ACTIONS(1295), 1, sym_identifier, @@ -77639,39 +78624,39 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_input_expression_token2, ACTIONS(1299), 1, anon_sym_COMMA, - ACTIONS(1313), 1, + ACTIONS(1317), 1, aux_sym_widget_field_token1, - STATE(492), 1, + STATE(419), 1, + sym__comparison_operator, + STATE(431), 1, sym__logical_operator, - STATE(494), 1, + STATE(440), 1, sym__additive_operator, - STATE(495), 1, + STATE(505), 1, sym__multiplicative_operator, - STATE(501), 1, - sym__comparison_operator, - STATE(1204), 1, + STATE(1514), 1, sym_do_block, - STATE(2138), 1, + STATE(2192), 1, aux_sym_on_statement_repeat1, - STATE(2405), 1, + STATE(2519), 1, aux_sym_on_statement_repeat2, - STATE(3194), 1, + STATE(3291), 1, sym_widget_phrase, - STATE(4440), 1, + STATE(4362), 1, sym_label, - ACTIONS(283), 2, + ACTIONS(227), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(295), 2, + ACTIONS(239), 2, sym__or_operator, sym__and_operator, ACTIONS(1123), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(686), 2, + STATE(696), 2, sym_comment, sym_include, - ACTIONS(291), 15, + ACTIONS(235), 15, anon_sym_LT, anon_sym_LT_EQ, anon_sym_LT_GT, @@ -77687,23 +78672,86 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - [36956] = 6, + [37303] = 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(1319), 1, + aux_sym_widget_field_token1, + STATE(419), 1, + sym__comparison_operator, + STATE(431), 1, + sym__logical_operator, + STATE(440), 1, + sym__additive_operator, + STATE(505), 1, + sym__multiplicative_operator, + STATE(935), 1, + sym_do_block, + STATE(2169), 1, + aux_sym_on_statement_repeat1, + STATE(2436), 1, + aux_sym_on_statement_repeat2, + STATE(3291), 1, + sym_widget_phrase, + STATE(4243), 1, + sym_label, + ACTIONS(227), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(239), 2, + sym__or_operator, + sym__and_operator, + ACTIONS(1123), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(697), 2, + sym_comment, + sym_include, + ACTIONS(235), 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, + [37388] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - STATE(687), 2, + STATE(698), 2, sym_comment, sym_include, - ACTIONS(137), 5, + ACTIONS(183), 5, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, aux_sym__comparison_operator_token6, aux_sym_variable_definition_token2, - ACTIONS(139), 30, + ACTIONS(185), 30, sym__or_operator, sym__and_operator, anon_sym_STAR, @@ -77734,29 +78782,27 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_setter_token1, aux_sym_method_definition_token1, aux_sym_constructor_definition_token1, - [37009] = 8, + [37441] = 6, 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(698), 1, - aux_sym_object_access_repeat1, - STATE(688), 2, + STATE(699), 2, sym_comment, sym_include, - ACTIONS(79), 3, + ACTIONS(119), 5, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(81), 30, + aux_sym__comparison_operator_token6, + aux_sym_variable_definition_token2, + ACTIONS(121), 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, @@ -77768,38 +78814,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, - 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, - [37066] = 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, + [37494] = 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(700), 2, sym_comment, sym_include, - ACTIONS(75), 5, + ACTIONS(191), 5, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, aux_sym__comparison_operator_token6, aux_sym_variable_definition_token2, - ACTIONS(77), 30, + ACTIONS(193), 30, sym__or_operator, sym__and_operator, anon_sym_STAR, @@ -77830,14 +78876,14 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_setter_token1, aux_sym_method_definition_token1, aux_sym_constructor_definition_token1, - [37119] = 22, + [37547] = 22, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(789), 1, + ACTIONS(825), 1, aux_sym_do_block_token1, ACTIONS(1295), 1, sym_identifier, @@ -77845,39 +78891,39 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_input_expression_token2, ACTIONS(1299), 1, anon_sym_COMMA, - ACTIONS(1315), 1, + ACTIONS(1321), 1, aux_sym_widget_field_token1, - STATE(492), 1, + STATE(419), 1, + sym__comparison_operator, + STATE(431), 1, sym__logical_operator, - STATE(494), 1, + STATE(440), 1, sym__additive_operator, - STATE(495), 1, + STATE(505), 1, sym__multiplicative_operator, - STATE(501), 1, - sym__comparison_operator, - STATE(2201), 1, + STATE(2151), 1, aux_sym_on_statement_repeat1, - STATE(2501), 1, + STATE(2452), 1, aux_sym_on_statement_repeat2, - STATE(3194), 1, + STATE(3291), 1, sym_widget_phrase, - STATE(3451), 1, + STATE(3571), 1, sym_do_block, - STATE(4379), 1, + STATE(4453), 1, sym_label, - ACTIONS(283), 2, + ACTIONS(227), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(295), 2, + ACTIONS(239), 2, sym__or_operator, sym__and_operator, ACTIONS(1123), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(690), 2, + STATE(701), 2, sym_comment, sym_include, - ACTIONS(291), 15, + ACTIONS(235), 15, anon_sym_LT, anon_sym_LT_EQ, anon_sym_LT_GT, @@ -77893,23 +78939,23 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - [37204] = 6, + [37632] = 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(702), 2, sym_comment, sym_include, - ACTIONS(141), 5, + ACTIONS(75), 5, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, aux_sym__comparison_operator_token6, aux_sym_variable_definition_token2, - ACTIONS(143), 30, + ACTIONS(77), 30, sym__or_operator, sym__and_operator, anon_sym_STAR, @@ -77940,70 +78986,14 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_setter_token1, aux_sym_method_definition_token1, aux_sym_constructor_definition_token1, - [37257] = 15, - ACTIONS(59), 1, - anon_sym_SLASH_SLASH, - ACTIONS(61), 1, - anon_sym_SLASH_STAR, - ACTIONS(65), 1, - anon_sym_LBRACE, - ACTIONS(283), 1, - anon_sym_SLASH, - ACTIONS(285), 1, - anon_sym_STAR, - STATE(347), 1, - sym__multiplicative_operator, - STATE(375), 1, - sym__comparison_operator, - STATE(408), 1, - sym__additive_operator, - STATE(411), 1, - sym__logical_operator, - ACTIONS(289), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(291), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(295), 2, - sym__or_operator, - sym__and_operator, - STATE(692), 2, - sym_comment, - sym_include, - ACTIONS(1317), 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(293), 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, - [37328] = 22, + [37685] = 22, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(825), 1, + ACTIONS(43), 1, aux_sym_do_block_token1, ACTIONS(1295), 1, sym_identifier, @@ -78011,39 +79001,39 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_input_expression_token2, ACTIONS(1299), 1, anon_sym_COMMA, - ACTIONS(1319), 1, + ACTIONS(1323), 1, aux_sym_widget_field_token1, - STATE(492), 1, + STATE(419), 1, + sym__comparison_operator, + STATE(431), 1, sym__logical_operator, - STATE(494), 1, + STATE(440), 1, sym__additive_operator, - STATE(495), 1, + STATE(505), 1, sym__multiplicative_operator, - STATE(501), 1, - sym__comparison_operator, - STATE(1019), 1, + STATE(1356), 1, sym_do_block, - STATE(2167), 1, + STATE(2152), 1, aux_sym_on_statement_repeat1, - STATE(2504), 1, + STATE(2448), 1, aux_sym_on_statement_repeat2, - STATE(3194), 1, + STATE(3291), 1, sym_widget_phrase, - STATE(4176), 1, + STATE(4362), 1, sym_label, - ACTIONS(283), 2, + ACTIONS(227), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(295), 2, + ACTIONS(239), 2, sym__or_operator, sym__and_operator, ACTIONS(1123), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(693), 2, + STATE(703), 2, sym_comment, sym_include, - ACTIONS(291), 15, + ACTIONS(235), 15, anon_sym_LT, anon_sym_LT_EQ, anon_sym_LT_GT, @@ -78059,23 +79049,23 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - [37413] = 6, + [37770] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - STATE(694), 2, + STATE(704), 2, sym_comment, sym_include, - ACTIONS(221), 5, + ACTIONS(123), 5, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, aux_sym__comparison_operator_token6, aux_sym_variable_definition_token2, - ACTIONS(223), 30, + ACTIONS(125), 30, sym__or_operator, sym__and_operator, anon_sym_STAR, @@ -78106,76 +79096,112 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_setter_token1, aux_sym_method_definition_token1, aux_sym_constructor_definition_token1, - [37466] = 6, - ACTIONS(59), 1, + [37823] = 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(695), 2, - sym_comment, - sym_include, - ACTIONS(217), 5, + 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(1325), 1, + aux_sym_widget_field_token1, + STATE(419), 1, + sym__comparison_operator, + STATE(431), 1, + sym__logical_operator, + STATE(440), 1, + sym__additive_operator, + STATE(505), 1, + sym__multiplicative_operator, + STATE(2213), 1, + aux_sym_on_statement_repeat1, + STATE(2584), 1, + aux_sym_on_statement_repeat2, + STATE(3291), 1, + sym_widget_phrase, + STATE(3604), 1, + sym_do_block, + STATE(4453), 1, + sym_label, + ACTIONS(227), 2, anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - aux_sym__comparison_operator_token6, - aux_sym_variable_definition_token2, - ACTIONS(219), 30, + anon_sym_STAR, + ACTIONS(239), 2, sym__or_operator, sym__and_operator, - anon_sym_STAR, - aux_sym__block_terminator_token1, + ACTIONS(1123), 2, anon_sym_PLUS, anon_sym_DASH, + STATE(705), 2, + sym_comment, + sym_include, + ACTIONS(235), 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, - [37519] = 6, + [37908] = 15, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - STATE(696), 2, - sym_comment, - sym_include, - ACTIONS(201), 5, + ACTIONS(227), 1, anon_sym_SLASH, + ACTIONS(229), 1, + anon_sym_STAR, + STATE(401), 1, + sym__logical_operator, + STATE(447), 1, + sym__comparison_operator, + STATE(507), 1, + sym__additive_operator, + STATE(516), 1, + sym__multiplicative_operator, + ACTIONS(233), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(235), 2, anon_sym_LT, anon_sym_GT, - aux_sym__comparison_operator_token6, - aux_sym_variable_definition_token2, - ACTIONS(203), 30, + ACTIONS(239), 2, sym__or_operator, sym__and_operator, - anon_sym_STAR, - aux_sym__block_terminator_token1, - anon_sym_PLUS, - anon_sym_DASH, + STATE(706), 2, + sym_comment, + sym_include, + ACTIONS(1327), 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(237), 13, anon_sym_LT_EQ, anon_sym_LT_GT, anon_sym_EQ, @@ -78185,38 +79211,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, - [37572] = 6, + [37979] = 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(707), 2, sym_comment, sym_include, - ACTIONS(63), 5, + ACTIONS(199), 5, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, aux_sym__comparison_operator_token6, aux_sym_variable_definition_token2, - ACTIONS(67), 30, + ACTIONS(201), 30, sym__or_operator, sym__and_operator, anon_sym_STAR, @@ -78247,28 +79262,27 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_setter_token1, aux_sym_method_definition_token1, aux_sym_constructor_definition_token1, - [37625] = 7, + [38032] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(1321), 1, - sym__namecolon, - ACTIONS(95), 3, + STATE(708), 2, + sym_comment, + sym_include, + ACTIONS(145), 5, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - STATE(698), 3, - sym_comment, - sym_include, - aux_sym_object_access_repeat1, - ACTIONS(97), 30, + aux_sym__comparison_operator_token6, + aux_sym_variable_definition_token2, + ACTIONS(147), 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, @@ -78280,38 +79294,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, - 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, - [37680] = 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, + [38085] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - STATE(699), 2, + STATE(709), 2, sym_comment, sym_include, - ACTIONS(109), 5, + ACTIONS(149), 5, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, aux_sym__comparison_operator_token6, aux_sym_variable_definition_token2, - ACTIONS(111), 30, + ACTIONS(151), 30, sym__or_operator, sym__and_operator, anon_sym_STAR, @@ -78342,23 +79356,23 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_setter_token1, aux_sym_method_definition_token1, aux_sym_constructor_definition_token1, - [37733] = 6, + [38138] = 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(710), 2, sym_comment, sym_include, - ACTIONS(145), 5, + ACTIONS(133), 5, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, aux_sym__comparison_operator_token6, aux_sym_variable_definition_token2, - ACTIONS(147), 30, + ACTIONS(135), 30, sym__or_operator, sym__and_operator, anon_sym_STAR, @@ -78389,23 +79403,23 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_setter_token1, aux_sym_method_definition_token1, aux_sym_constructor_definition_token1, - [37786] = 6, + [38191] = 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(711), 2, sym_comment, sym_include, - ACTIONS(123), 5, + ACTIONS(219), 5, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, aux_sym__comparison_operator_token6, aux_sym_variable_definition_token2, - ACTIONS(125), 30, + ACTIONS(221), 30, sym__or_operator, sym__and_operator, anon_sym_STAR, @@ -78436,142 +79450,23 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_setter_token1, aux_sym_method_definition_token1, aux_sym_constructor_definition_token1, - [37839] = 15, + [38244] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(283), 1, - anon_sym_SLASH, - ACTIONS(285), 1, - anon_sym_STAR, - STATE(347), 1, - sym__multiplicative_operator, - STATE(375), 1, - sym__comparison_operator, - STATE(408), 1, - sym__additive_operator, - STATE(411), 1, - sym__logical_operator, - ACTIONS(289), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(291), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(295), 2, - sym__or_operator, - sym__and_operator, - STATE(702), 2, - sym_comment, - sym_include, - ACTIONS(1287), 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(293), 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, - [37910] = 22, - 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, - ACTIONS(1299), 1, - anon_sym_COMMA, - ACTIONS(1324), 1, - aux_sym_widget_field_token1, - STATE(492), 1, - sym__logical_operator, - STATE(494), 1, - sym__additive_operator, - STATE(495), 1, - sym__multiplicative_operator, - STATE(501), 1, - sym__comparison_operator, - STATE(1296), 1, - sym_do_block, - STATE(2184), 1, - aux_sym_on_statement_repeat1, - STATE(2499), 1, - aux_sym_on_statement_repeat2, - STATE(3194), 1, - sym_widget_phrase, - STATE(4253), 1, - sym_label, - ACTIONS(283), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(295), 2, - sym__or_operator, - sym__and_operator, - ACTIONS(1123), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(703), 2, - sym_comment, - sym_include, - ACTIONS(291), 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, - [37995] = 6, - ACTIONS(59), 1, - anon_sym_SLASH_SLASH, - ACTIONS(61), 1, - anon_sym_SLASH_STAR, - ACTIONS(65), 1, - anon_sym_LBRACE, - STATE(704), 2, + STATE(712), 2, sym_comment, sym_include, - ACTIONS(169), 5, + ACTIONS(153), 5, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, aux_sym__comparison_operator_token6, aux_sym_variable_definition_token2, - ACTIONS(171), 30, + ACTIONS(155), 30, sym__or_operator, sym__and_operator, anon_sym_STAR, @@ -78602,86 +79497,23 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_setter_token1, aux_sym_method_definition_token1, aux_sym_constructor_definition_token1, - [38048] = 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(1326), 1, - aux_sym_widget_field_token1, - STATE(492), 1, - sym__logical_operator, - STATE(494), 1, - sym__additive_operator, - STATE(495), 1, - sym__multiplicative_operator, - STATE(501), 1, - sym__comparison_operator, - STATE(1018), 1, - sym_do_block, - STATE(2202), 1, - aux_sym_on_statement_repeat1, - STATE(2535), 1, - aux_sym_on_statement_repeat2, - STATE(3194), 1, - sym_widget_phrase, - STATE(4193), 1, - sym_label, - ACTIONS(283), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(295), 2, - sym__or_operator, - sym__and_operator, - ACTIONS(1123), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(705), 2, - sym_comment, - sym_include, - ACTIONS(291), 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, - [38133] = 6, + [38297] = 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(713), 2, sym_comment, sym_include, - ACTIONS(157), 5, + ACTIONS(109), 5, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, aux_sym__comparison_operator_token6, aux_sym_variable_definition_token2, - ACTIONS(159), 30, + ACTIONS(111), 30, sym__or_operator, sym__and_operator, anon_sym_STAR, @@ -78712,142 +79544,23 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_setter_token1, aux_sym_method_definition_token1, aux_sym_constructor_definition_token1, - [38186] = 15, + [38350] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(283), 1, - anon_sym_SLASH, - ACTIONS(285), 1, - anon_sym_STAR, - STATE(347), 1, - sym__multiplicative_operator, - STATE(375), 1, - sym__comparison_operator, - STATE(408), 1, - sym__additive_operator, - STATE(411), 1, - sym__logical_operator, - ACTIONS(289), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(291), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(295), 2, - sym__or_operator, - sym__and_operator, - STATE(707), 2, - sym_comment, - sym_include, - ACTIONS(1328), 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(293), 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, - [38257] = 22, - 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, - ACTIONS(1299), 1, - anon_sym_COMMA, - ACTIONS(1330), 1, - aux_sym_widget_field_token1, - STATE(492), 1, - sym__logical_operator, - STATE(494), 1, - sym__additive_operator, - STATE(495), 1, - sym__multiplicative_operator, - STATE(501), 1, - sym__comparison_operator, - STATE(1250), 1, - sym_do_block, - STATE(2183), 1, - aux_sym_on_statement_repeat1, - STATE(2431), 1, - aux_sym_on_statement_repeat2, - STATE(3194), 1, - sym_widget_phrase, - STATE(4253), 1, - sym_label, - ACTIONS(283), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(295), 2, - sym__or_operator, - sym__and_operator, - ACTIONS(1123), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(708), 2, - sym_comment, - sym_include, - ACTIONS(291), 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, - [38342] = 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(714), 2, sym_comment, sym_include, - ACTIONS(83), 5, + ACTIONS(195), 5, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, aux_sym__comparison_operator_token6, aux_sym_variable_definition_token2, - ACTIONS(85), 30, + ACTIONS(197), 30, sym__or_operator, sym__and_operator, anon_sym_STAR, @@ -78878,23 +79591,23 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_setter_token1, aux_sym_method_definition_token1, aux_sym_constructor_definition_token1, - [38395] = 6, + [38403] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - STATE(710), 2, + STATE(715), 2, sym_comment, sym_include, - ACTIONS(119), 5, + ACTIONS(215), 5, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, aux_sym__comparison_operator_token6, aux_sym_variable_definition_token2, - ACTIONS(121), 30, + ACTIONS(217), 30, sym__or_operator, sym__and_operator, anon_sym_STAR, @@ -78925,23 +79638,23 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_setter_token1, aux_sym_method_definition_token1, aux_sym_constructor_definition_token1, - [38448] = 6, + [38456] = 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(716), 2, sym_comment, sym_include, - ACTIONS(189), 5, + ACTIONS(179), 5, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, aux_sym__comparison_operator_token6, aux_sym_variable_definition_token2, - ACTIONS(191), 30, + ACTIONS(181), 30, sym__or_operator, sym__and_operator, anon_sym_STAR, @@ -78972,14 +79685,14 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_setter_token1, aux_sym_method_definition_token1, aux_sym_constructor_definition_token1, - [38501] = 22, + [38509] = 22, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(755), 1, + ACTIONS(297), 1, aux_sym_do_block_token1, ACTIONS(1295), 1, sym_identifier, @@ -78987,39 +79700,39 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_input_expression_token2, ACTIONS(1299), 1, anon_sym_COMMA, - ACTIONS(1332), 1, + ACTIONS(1329), 1, aux_sym_widget_field_token1, - STATE(492), 1, + STATE(419), 1, + sym__comparison_operator, + STATE(431), 1, sym__logical_operator, - STATE(494), 1, + STATE(440), 1, sym__additive_operator, - STATE(495), 1, + STATE(505), 1, sym__multiplicative_operator, - STATE(501), 1, - sym__comparison_operator, - STATE(1059), 1, + STATE(1152), 1, sym_do_block, - STATE(2212), 1, + STATE(2166), 1, aux_sym_on_statement_repeat1, - STATE(2419), 1, + STATE(2529), 1, aux_sym_on_statement_repeat2, - STATE(3194), 1, + STATE(3291), 1, sym_widget_phrase, - STATE(4193), 1, + STATE(4560), 1, sym_label, - ACTIONS(283), 2, + ACTIONS(227), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(295), 2, + ACTIONS(239), 2, sym__or_operator, sym__and_operator, ACTIONS(1123), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(712), 2, + STATE(717), 2, sym_comment, sym_include, - ACTIONS(291), 15, + ACTIONS(235), 15, anon_sym_LT, anon_sym_LT_EQ, anon_sym_LT_GT, @@ -79035,23 +79748,23 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - [38586] = 6, + [38594] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - STATE(713), 2, + STATE(718), 2, sym_comment, sym_include, - ACTIONS(161), 5, + ACTIONS(203), 5, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, aux_sym__comparison_operator_token6, aux_sym_variable_definition_token2, - ACTIONS(163), 30, + ACTIONS(205), 30, sym__or_operator, sym__and_operator, anon_sym_STAR, @@ -79082,23 +79795,23 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_setter_token1, aux_sym_method_definition_token1, aux_sym_constructor_definition_token1, - [38639] = 6, + [38647] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - STATE(714), 2, + STATE(719), 2, sym_comment, sym_include, - ACTIONS(197), 5, + ACTIONS(141), 5, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, aux_sym__comparison_operator_token6, aux_sym_variable_definition_token2, - ACTIONS(199), 30, + ACTIONS(143), 30, sym__or_operator, sym__and_operator, anon_sym_STAR, @@ -79129,29 +79842,49 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_setter_token1, aux_sym_method_definition_token1, aux_sym_constructor_definition_token1, - [38692] = 6, + [38700] = 15, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - STATE(715), 2, - sym_comment, - sym_include, - ACTIONS(193), 5, + ACTIONS(227), 1, anon_sym_SLASH, + ACTIONS(229), 1, + anon_sym_STAR, + STATE(401), 1, + sym__logical_operator, + STATE(447), 1, + sym__comparison_operator, + STATE(507), 1, + sym__additive_operator, + STATE(516), 1, + sym__multiplicative_operator, + ACTIONS(233), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(235), 2, anon_sym_LT, anon_sym_GT, - aux_sym__comparison_operator_token6, - aux_sym_variable_definition_token2, - ACTIONS(195), 30, + ACTIONS(239), 2, sym__or_operator, sym__and_operator, - anon_sym_STAR, - aux_sym__block_terminator_token1, - anon_sym_PLUS, - anon_sym_DASH, + STATE(720), 2, + sym_comment, + sym_include, + ACTIONS(1331), 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(237), 13, anon_sym_LT_EQ, anon_sym_LT_GT, anon_sym_EQ, @@ -79161,38 +79894,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, - [38745] = 6, + [38771] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - STATE(716), 2, + STATE(721), 2, sym_comment, sym_include, - ACTIONS(185), 5, + ACTIONS(207), 5, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, aux_sym__comparison_operator_token6, aux_sym_variable_definition_token2, - ACTIONS(187), 30, + ACTIONS(209), 30, sym__or_operator, sym__and_operator, anon_sym_STAR, @@ -79223,59 +79945,34 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_setter_token1, aux_sym_method_definition_token1, aux_sym_constructor_definition_token1, - [38798] = 22, - ACTIONS(3), 1, + [38824] = 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(789), 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(492), 1, - sym__logical_operator, - STATE(494), 1, - sym__additive_operator, - STATE(495), 1, - sym__multiplicative_operator, - STATE(501), 1, - sym__comparison_operator, - STATE(2213), 1, - aux_sym_on_statement_repeat1, - STATE(2433), 1, - aux_sym_on_statement_repeat2, - STATE(3194), 1, - sym_widget_phrase, - STATE(3407), 1, - sym_do_block, - STATE(4379), 1, - sym_label, - ACTIONS(283), 2, + ACTIONS(1261), 1, + sym__namecolon, + STATE(724), 1, + aux_sym_object_access_repeat1, + STATE(722), 2, + sym_comment, + sym_include, + ACTIONS(105), 3, anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(295), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(107), 30, sym__or_operator, sym__and_operator, - ACTIONS(1123), 2, + anon_sym_STAR, + anon_sym_LPAREN, anon_sym_PLUS, anon_sym_DASH, - STATE(717), 2, - sym_comment, - sym_include, - ACTIONS(291), 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, @@ -79286,14 +79983,25 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - [38883] = 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, + [38881] = 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(297), 1, aux_sym_do_block_token1, ACTIONS(1295), 1, sym_identifier, @@ -79301,39 +80009,39 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_input_expression_token2, ACTIONS(1299), 1, anon_sym_COMMA, - ACTIONS(1336), 1, + ACTIONS(1333), 1, aux_sym_widget_field_token1, - STATE(492), 1, + STATE(419), 1, + sym__comparison_operator, + STATE(431), 1, sym__logical_operator, - STATE(494), 1, + STATE(440), 1, sym__additive_operator, - STATE(495), 1, + STATE(505), 1, sym__multiplicative_operator, - STATE(501), 1, - sym__comparison_operator, - STATE(1146), 1, + STATE(1270), 1, sym_do_block, - STATE(2210), 1, + STATE(2201), 1, aux_sym_on_statement_repeat1, - STATE(2422), 1, + STATE(2541), 1, aux_sym_on_statement_repeat2, - STATE(3194), 1, + STATE(3291), 1, sym_widget_phrase, - STATE(4253), 1, + STATE(4560), 1, sym_label, - ACTIONS(283), 2, + ACTIONS(227), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(295), 2, + ACTIONS(239), 2, sym__or_operator, sym__and_operator, ACTIONS(1123), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(718), 2, + STATE(723), 2, sym_comment, sym_include, - ACTIONS(291), 15, + ACTIONS(235), 15, anon_sym_LT, anon_sym_LT_EQ, anon_sym_LT_GT, @@ -79349,27 +80057,28 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - [38968] = 6, + [38966] = 7, 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(153), 5, + ACTIONS(1335), 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(155), 30, + STATE(724), 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, @@ -79381,21 +80090,21 @@ 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, + 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, [39021] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, @@ -79403,16 +80112,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - STATE(720), 2, + STATE(725), 2, sym_comment, sym_include, - ACTIONS(165), 5, + ACTIONS(137), 5, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, aux_sym__comparison_operator_token6, aux_sym_variable_definition_token2, - ACTIONS(167), 30, + ACTIONS(139), 30, sym__or_operator, sym__and_operator, anon_sym_STAR, @@ -79450,7 +80159,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - STATE(721), 2, + STATE(726), 2, sym_comment, sym_include, ACTIONS(115), 3, @@ -79489,25 +80198,80 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_query_tuning_token5, aux_sym_sort_clause_token1, aux_sym_sort_clause_token2, - [39126] = 8, + [39126] = 15, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(1246), 1, + ACTIONS(227), 1, + anon_sym_SLASH, + ACTIONS(229), 1, + anon_sym_STAR, + STATE(401), 1, + sym__logical_operator, + STATE(447), 1, + sym__comparison_operator, + STATE(507), 1, + sym__additive_operator, + STATE(516), 1, + sym__multiplicative_operator, + ACTIONS(233), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(235), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(239), 2, + sym__or_operator, + sym__and_operator, + STATE(727), 2, + sym_comment, + sym_include, + ACTIONS(1338), 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(237), 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, + [39196] = 8, + ACTIONS(59), 1, + anon_sym_SLASH_SLASH, + ACTIONS(61), 1, + anon_sym_SLASH_STAR, + ACTIONS(65), 1, + anon_sym_LBRACE, + ACTIONS(1259), 1, sym__namedot, - STATE(723), 1, + STATE(729), 1, aux_sym_qualified_name_repeat1, - STATE(722), 2, + STATE(728), 2, sym_comment, sym_include, - ACTIONS(87), 3, + ACTIONS(79), 3, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(89), 29, + ACTIONS(81), 29, sym__or_operator, sym__and_operator, anon_sym_STAR, @@ -79537,25 +80301,24 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_query_tuning_token5, aux_sym_sort_clause_token1, aux_sym_sort_clause_token2, - [39182] = 8, + [39252] = 7, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(1246), 1, + ACTIONS(1340), 1, sym__namedot, - STATE(727), 1, - aux_sym_qualified_name_repeat1, - STATE(723), 2, - sym_comment, - sym_include, - ACTIONS(91), 3, + ACTIONS(98), 3, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(93), 29, + STATE(729), 3, + sym_comment, + sym_include, + aux_sym_qualified_name_repeat1, + ACTIONS(100), 29, sym__or_operator, sym__and_operator, anon_sym_STAR, @@ -79585,19 +80348,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_query_tuning_token5, aux_sym_sort_clause_token1, aux_sym_sort_clause_token2, - [39238] = 6, + [39306] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(447), 1, + ACTIONS(449), 1, sym__namedot, - STATE(726), 1, + STATE(732), 1, aux_sym_qualified_name_repeat1, - STATE(724), 2, + STATE(730), 2, sym_comment, sym_include, - ACTIONS(91), 33, + ACTIONS(79), 33, anon_sym_LBRACE, sym_identifier, sym_null_expression, @@ -79631,48 +80394,30 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_expression_token1, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - [39290] = 15, + [39358] = 8, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(283), 1, + ACTIONS(1259), 1, + sym__namedot, + STATE(728), 1, + aux_sym_qualified_name_repeat1, + STATE(731), 2, + sym_comment, + sym_include, + ACTIONS(87), 3, anon_sym_SLASH, - ACTIONS(285), 1, - anon_sym_STAR, - STATE(347), 1, - sym__multiplicative_operator, - STATE(375), 1, - sym__comparison_operator, - STATE(408), 1, - sym__additive_operator, - STATE(411), 1, - sym__logical_operator, - ACTIONS(289), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(291), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(295), 2, + ACTIONS(89), 29, sym__or_operator, sym__and_operator, - STATE(725), 2, - sym_comment, - sym_include, - ACTIONS(1338), 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(293), 13, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_LT_EQ, anon_sym_LT_GT, anon_sym_EQ, @@ -79686,18 +80431,29 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - [39360] = 5, + 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, + [39414] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(1340), 1, + ACTIONS(1343), 1, sym__namedot, - STATE(726), 3, + STATE(732), 3, sym_comment, sym_include, aux_sym_qualified_name_repeat1, - ACTIONS(102), 33, + ACTIONS(98), 33, anon_sym_LBRACE, sym_identifier, sym_null_expression, @@ -79731,24 +80487,70 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_expression_token1, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - [39410] = 7, + [39464] = 8, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(1343), 1, + ACTIONS(1259), 1, sym__namedot, - ACTIONS(102), 3, + STATE(728), 1, + aux_sym_qualified_name_repeat1, + STATE(733), 2, + sym_comment, + sym_include, + ACTIONS(83), 3, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - STATE(727), 3, + ACTIONS(85), 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, + [39520] = 6, + ACTIONS(59), 1, + anon_sym_SLASH_SLASH, + ACTIONS(61), 1, + anon_sym_SLASH_STAR, + ACTIONS(65), 1, + anon_sym_LBRACE, + STATE(734), 2, sym_comment, sym_include, - aux_sym_qualified_name_repeat1, - ACTIONS(104), 29, + ACTIONS(98), 3, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(100), 30, + sym__namedot, sym__or_operator, sym__and_operator, anon_sym_STAR, @@ -79778,25 +80580,23 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_query_tuning_token5, aux_sym_sort_clause_token1, aux_sym_sort_clause_token2, - [39464] = 8, + [39571] = 7, 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(723), 1, - aux_sym_qualified_name_repeat1, - STATE(728), 2, + ACTIONS(1257), 1, + anon_sym_LPAREN, + STATE(735), 2, sym_comment, sym_include, - ACTIONS(83), 3, + ACTIONS(63), 3, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(85), 29, + ACTIONS(67), 29, sym__or_operator, sym__and_operator, anon_sym_STAR, @@ -79826,7 +80626,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_query_tuning_token5, aux_sym_sort_clause_token1, aux_sym_sort_clause_token2, - [39520] = 7, + [39624] = 7, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, @@ -79834,20 +80634,18 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(65), 1, anon_sym_LBRACE, ACTIONS(1346), 1, - anon_sym_NO_DASHERROR, - STATE(729), 2, + sym__namedot, + STATE(736), 2, sym_comment, sym_include, - ACTIONS(205), 3, + ACTIONS(109), 3, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(207), 29, + ACTIONS(111), 29, sym__or_operator, sym__and_operator, anon_sym_STAR, - sym__terminator, - anon_sym_RPAREN, anon_sym_PLUS, anon_sym_DASH, anon_sym_LT_EQ, @@ -79863,47 +80661,55 @@ 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_function_call_token1, - aux_sym_using_statement_token1, - aux_sym_where_clause_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_of_token1, - [39573] = 5, - ACTIONS(3), 1, + aux_sym_sort_clause_token1, + aux_sym_sort_clause_token2, + [39677] = 7, + ACTIONS(59), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(61), 1, anon_sym_SLASH_STAR, - ACTIONS(104), 1, - sym__namedot, - STATE(730), 2, + ACTIONS(65), 1, + anon_sym_LBRACE, + ACTIONS(1348), 1, + anon_sym_NO_DASHERROR, + STATE(737), 2, sym_comment, sym_include, - ACTIONS(102), 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, + ACTIONS(195), 3, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(197), 29, + sym__or_operator, + sym__and_operator, + anon_sym_STAR, + sym__terminator, 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, + 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, 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, @@ -79911,28 +80717,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_can_find_expression_token1, aux_sym_of_token1, - aux_sym_accumulate_expression_token1, - aux_sym_available_expression_token1, - aux_sym_available_expression_token2, - [39622] = 7, + [39730] = 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(731), 2, + ACTIONS(1350), 1, + anon_sym_NO_DASHERROR, + STATE(738), 2, sym_comment, sym_include, - ACTIONS(75), 3, + ACTIONS(195), 3, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(77), 29, + ACTIONS(197), 29, sym__or_operator, sym__and_operator, anon_sym_STAR, @@ -79962,23 +80764,23 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_query_tuning_token5, aux_sym_sort_clause_token1, aux_sym_sort_clause_token2, - [39675] = 7, + [39783] = 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(732), 2, + ACTIONS(1352), 1, + anon_sym_NO_DASHERROR, + STATE(739), 2, sym_comment, sym_include, - ACTIONS(63), 3, + ACTIONS(527), 3, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(67), 29, + ACTIONS(529), 29, sym__or_operator, sym__and_operator, anon_sym_STAR, @@ -80008,22 +80810,23 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_query_tuning_token5, aux_sym_sort_clause_token1, aux_sym_sort_clause_token2, - [39728] = 6, + [39836] = 7, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - STATE(733), 2, + ACTIONS(1257), 1, + anon_sym_LPAREN, + STATE(740), 2, sym_comment, sym_include, - ACTIONS(102), 3, + ACTIONS(75), 3, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(104), 30, - sym__namedot, + ACTIONS(77), 29, sym__or_operator, sym__and_operator, anon_sym_STAR, @@ -80053,94 +80856,140 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_query_tuning_token5, aux_sym_sort_clause_token1, aux_sym_sort_clause_token2, - [39779] = 29, + [39889] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(100), 1, + sym__namedot, + STATE(741), 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, + [39938] = 29, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(1350), 1, + ACTIONS(1356), 1, aux_sym_variable_tuning_token6, - ACTIONS(1358), 1, + ACTIONS(1364), 1, aux_sym_variable_definition_token3, - ACTIONS(1360), 1, + ACTIONS(1366), 1, aux_sym_variable_definition_token4, - ACTIONS(1362), 1, + ACTIONS(1368), 1, aux_sym_buffer_definition_token1, - ACTIONS(1364), 1, + ACTIONS(1370), 1, aux_sym_buffer_definition_token3, - ACTIONS(1366), 1, + ACTIONS(1372), 1, aux_sym_query_definition_token1, - ACTIONS(1368), 1, + ACTIONS(1374), 1, aux_sym_function_parameter_token1, - ACTIONS(1372), 1, + ACTIONS(1378), 1, aux_sym_property_tuning_token1, - ACTIONS(1374), 1, + ACTIONS(1380), 1, aux_sym_property_definition_token1, - ACTIONS(1376), 1, + ACTIONS(1382), 1, aux_sym_event_definition_token1, - ACTIONS(1378), 1, + ACTIONS(1384), 1, aux_sym_data_source_definition_token1, - STATE(787), 1, + STATE(802), 1, sym_access_tuning, - STATE(1836), 1, + STATE(1831), 1, sym_scope_tuning, - STATE(1852), 1, + STATE(1851), 1, aux_sym_variable_definition_repeat1, - STATE(1893), 1, + STATE(1885), 1, sym_property_tuning, - STATE(1947), 1, + STATE(1961), 1, sym_serialization_tuning, - STATE(1954), 1, + STATE(2008), 1, aux_sym_buffer_definition_repeat1, - STATE(2363), 1, + STATE(2399), 1, aux_sym_property_definition_repeat1, - STATE(2495), 1, + STATE(2512), 1, aux_sym_property_definition_repeat2, - STATE(2828), 1, + STATE(2840), 1, sym_property_type, - ACTIONS(1348), 2, + ACTIONS(1354), 2, aux_sym_variable_tuning_token1, aux_sym_variable_tuning_token5, - ACTIONS(1356), 2, + ACTIONS(1362), 2, aux_sym_serialization_tuning_token1, aux_sym_serialization_tuning_token2, - ACTIONS(1370), 2, + ACTIONS(1376), 2, aux_sym_property_type_token1, aux_sym_property_type_token2, - STATE(734), 2, + STATE(742), 2, sym_comment, sym_include, - ACTIONS(1354), 3, + ACTIONS(1360), 3, aux_sym_access_tuning_token1, aux_sym_access_tuning_token2, aux_sym_access_tuning_token3, - ACTIONS(1352), 4, + ACTIONS(1358), 4, aux_sym_scope_tuning_token1, aux_sym_scope_tuning_token2, aux_sym_scope_tuning_token3, aux_sym_scope_tuning_token4, - [39876] = 7, + [40035] = 7, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(1380), 1, + ACTIONS(1386), 1, anon_sym_NO_DASHERROR, - STATE(735), 2, + STATE(743), 2, sym_comment, sym_include, - ACTIONS(629), 3, + ACTIONS(527), 3, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(631), 29, + ACTIONS(529), 29, sym__or_operator, sym__and_operator, anon_sym_STAR, + sym__terminator, + anon_sym_RPAREN, anon_sym_PLUS, anon_sym_DASH, anon_sym_LT_EQ, @@ -80156,34 +81005,30 @@ 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_function_call_token1, - anon_sym_COLON, - aux_sym_on_error_phrase_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_sort_clause_token1, - aux_sym_sort_clause_token2, - [39929] = 7, + aux_sym_of_token1, + [40088] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(1382), 1, - anon_sym_NO_DASHERROR, - STATE(736), 2, + STATE(744), 2, sym_comment, sym_include, - ACTIONS(205), 3, + ACTIONS(179), 3, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(207), 29, + ACTIONS(181), 29, sym__or_operator, sym__and_operator, anon_sym_STAR, @@ -80213,23 +81058,21 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_query_tuning_token5, aux_sym_sort_clause_token1, aux_sym_sort_clause_token2, - [39982] = 7, + [40138] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(1384), 1, - sym__namedot, - STATE(737), 2, + STATE(745), 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), 29, sym__or_operator, sym__and_operator, anon_sym_STAR, @@ -80259,28 +81102,24 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_query_tuning_token5, aux_sym_sort_clause_token1, aux_sym_sort_clause_token2, - [40035] = 7, + [40188] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(1386), 1, - anon_sym_NO_DASHERROR, - STATE(738), 2, + STATE(746), 2, sym_comment, sym_include, - ACTIONS(629), 3, + ACTIONS(63), 3, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(631), 29, + ACTIONS(67), 29, sym__or_operator, sym__and_operator, anon_sym_STAR, - sym__terminator, - anon_sym_RPAREN, anon_sym_PLUS, anon_sym_DASH, anon_sym_LT_EQ, @@ -80296,30 +81135,32 @@ 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_function_call_token1, - aux_sym_using_statement_token1, - aux_sym_where_clause_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_of_token1, - [40088] = 6, + aux_sym_sort_clause_token1, + aux_sym_sort_clause_token2, + [40238] = 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(747), 2, sym_comment, sym_include, - ACTIONS(123), 3, + ACTIONS(149), 3, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(125), 29, + ACTIONS(151), 29, sym__or_operator, sym__and_operator, anon_sym_STAR, @@ -80349,21 +81190,21 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_query_tuning_token5, aux_sym_sort_clause_token1, aux_sym_sort_clause_token2, - [40138] = 6, + [40288] = 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(748), 2, sym_comment, sym_include, - ACTIONS(189), 3, + ACTIONS(159), 3, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(191), 29, + ACTIONS(161), 29, sym__or_operator, sym__and_operator, anon_sym_STAR, @@ -80393,46 +81234,26 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_query_tuning_token5, aux_sym_sort_clause_token1, aux_sym_sort_clause_token2, - [40188] = 15, + [40338] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(283), 1, + STATE(749), 2, + sym_comment, + sym_include, + ACTIONS(137), 3, anon_sym_SLASH, - ACTIONS(285), 1, - anon_sym_STAR, - STATE(347), 1, - sym__multiplicative_operator, - STATE(375), 1, - sym__comparison_operator, - STATE(408), 1, - sym__additive_operator, - STATE(411), 1, - sym__logical_operator, - ACTIONS(289), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(291), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(295), 2, + ACTIONS(139), 29, sym__or_operator, sym__and_operator, - STATE(741), 2, - sym_comment, - sym_include, - ACTIONS(1388), 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, - ACTIONS(293), 13, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_LT_EQ, anon_sym_LT_GT, anon_sym_EQ, @@ -80446,21 +81267,32 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - [40256] = 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, + [40388] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - STATE(742), 2, + STATE(750), 2, sym_comment, sym_include, - ACTIONS(75), 3, + ACTIONS(195), 3, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(77), 29, + ACTIONS(197), 29, sym__or_operator, sym__and_operator, anon_sym_STAR, @@ -80490,26 +81322,47 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_query_tuning_token5, aux_sym_sort_clause_token1, aux_sym_sort_clause_token2, - [40306] = 6, + [40438] = 16, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - STATE(743), 2, - sym_comment, - sym_include, - ACTIONS(177), 3, + ACTIONS(227), 1, anon_sym_SLASH, + ACTIONS(229), 1, + anon_sym_STAR, + ACTIONS(1390), 1, + anon_sym_BY, + STATE(401), 1, + sym__logical_operator, + STATE(447), 1, + sym__comparison_operator, + STATE(507), 1, + sym__additive_operator, + STATE(516), 1, + sym__multiplicative_operator, + ACTIONS(233), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(235), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(179), 29, + ACTIONS(239), 2, sym__or_operator, sym__and_operator, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_DASH, + STATE(751), 2, + sym_comment, + sym_include, + ACTIONS(1388), 6, + anon_sym_COLON, + aux_sym_while_phrase_token1, + aux_sym_repeat_tuning_token1, + aux_sym_on_error_phrase_token1, + aux_sym_stop_after_phrase_token1, + aux_sym_do_tuning_token1, + ACTIONS(237), 13, anon_sym_LT_EQ, anon_sym_LT_GT, anon_sym_EQ, @@ -80523,32 +81376,21 @@ 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_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, - [40356] = 6, + [40508] = 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(752), 2, sym_comment, sym_include, - ACTIONS(201), 3, + ACTIONS(75), 3, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(203), 29, + ACTIONS(77), 29, sym__or_operator, sym__and_operator, anon_sym_STAR, @@ -80578,21 +81420,21 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_query_tuning_token5, aux_sym_sort_clause_token1, aux_sym_sort_clause_token2, - [40406] = 6, + [40558] = 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(753), 2, sym_comment, sym_include, - ACTIONS(63), 3, + ACTIONS(207), 3, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(67), 29, + ACTIONS(209), 29, sym__or_operator, sym__and_operator, anon_sym_STAR, @@ -80622,21 +81464,21 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_query_tuning_token5, aux_sym_sort_clause_token1, aux_sym_sort_clause_token2, - [40456] = 6, + [40608] = 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(754), 2, sym_comment, sym_include, - ACTIONS(217), 3, + ACTIONS(123), 3, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(219), 29, + ACTIONS(125), 29, sym__or_operator, sym__and_operator, anon_sym_STAR, @@ -80666,21 +81508,21 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_query_tuning_token5, aux_sym_sort_clause_token1, aux_sym_sort_clause_token2, - [40506] = 6, + [40658] = 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(755), 2, sym_comment, sym_include, - ACTIONS(87), 3, + ACTIONS(211), 3, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(89), 29, + ACTIONS(213), 29, sym__or_operator, sym__and_operator, anon_sym_STAR, @@ -80710,21 +81552,21 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_query_tuning_token5, aux_sym_sort_clause_token1, aux_sym_sort_clause_token2, - [40556] = 6, + [40708] = 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(756), 2, sym_comment, sym_include, - ACTIONS(209), 3, + ACTIONS(83), 3, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(211), 29, + ACTIONS(85), 29, sym__or_operator, sym__and_operator, anon_sym_STAR, @@ -80754,21 +81596,21 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_query_tuning_token5, aux_sym_sort_clause_token1, aux_sym_sort_clause_token2, - [40606] = 6, + [40758] = 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(757), 2, sym_comment, sym_include, - ACTIONS(157), 3, + ACTIONS(203), 3, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(159), 29, + ACTIONS(205), 29, sym__or_operator, sym__and_operator, anon_sym_STAR, @@ -80798,21 +81640,21 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_query_tuning_token5, aux_sym_sort_clause_token1, aux_sym_sort_clause_token2, - [40656] = 6, + [40808] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - STATE(750), 2, + STATE(758), 2, sym_comment, sym_include, - ACTIONS(185), 3, + ACTIONS(223), 3, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(187), 29, + ACTIONS(225), 29, sym__or_operator, sym__and_operator, anon_sym_STAR, @@ -80842,73 +81684,21 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_query_tuning_token5, aux_sym_sort_clause_token1, aux_sym_sort_clause_token2, - [40706] = 14, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - ACTIONS(7), 1, - anon_sym_LBRACE, - ACTIONS(1390), 1, - sym_identifier, - ACTIONS(1394), 1, - aux_sym_primitive_type_token19, - STATE(829), 1, - aux_sym_method_definition_repeat1, - STATE(835), 1, - sym_access_tuning, - STATE(1629), 1, - sym_method_tuning, - STATE(4323), 1, - sym_primitive_type, - STATE(4451), 1, - sym_qualified_name, - STATE(751), 2, - sym_comment, - sym_include, - ACTIONS(1398), 3, - aux_sym_access_tuning_token1, - aux_sym_access_tuning_token2, - aux_sym_access_tuning_token3, - ACTIONS(1396), 4, - aux_sym_scope_tuning_token4, - aux_sym_property_type_token1, - aux_sym_property_type_token2, - aux_sym_method_tuning_token1, - ACTIONS(1392), 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, - [40772] = 6, + [40858] = 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(193), 3, + ACTIONS(87), 3, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(195), 29, + ACTIONS(89), 29, sym__or_operator, sym__and_operator, anon_sym_STAR, @@ -80938,21 +81728,21 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_query_tuning_token5, aux_sym_sort_clause_token1, aux_sym_sort_clause_token2, - [40822] = 6, + [40908] = 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(127), 3, + ACTIONS(219), 3, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(129), 29, + ACTIONS(221), 29, sym__or_operator, sym__and_operator, anon_sym_STAR, @@ -80982,66 +81772,21 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_query_tuning_token5, aux_sym_sort_clause_token1, aux_sym_sort_clause_token2, - [40872] = 7, - ACTIONS(59), 1, - anon_sym_SLASH_SLASH, - ACTIONS(61), 1, - anon_sym_SLASH_STAR, - ACTIONS(65), 1, - anon_sym_LBRACE, - ACTIONS(1400), 1, - aux_sym_function_call_token1, - STATE(754), 2, - sym_comment, - sym_include, - ACTIONS(213), 3, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(215), 28, - 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, - 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, - [40924] = 6, + [40958] = 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(761), 2, sym_comment, sym_include, - ACTIONS(213), 3, + ACTIONS(145), 3, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(215), 29, + ACTIONS(147), 29, sym__or_operator, sym__and_operator, anon_sym_STAR, @@ -81071,23 +81816,23 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_query_tuning_token5, aux_sym_sort_clause_token1, aux_sym_sort_clause_token2, - [40974] = 7, + [41008] = 7, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(1402), 1, + ACTIONS(1392), 1, aux_sym_function_call_token1, - STATE(756), 2, + STATE(762), 2, sym_comment, sym_include, - ACTIONS(131), 3, + ACTIONS(127), 3, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(133), 28, + ACTIONS(129), 28, sym__or_operator, sym__and_operator, anon_sym_STAR, @@ -81116,21 +81861,21 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_query_tuning_token5, aux_sym_sort_clause_token1, aux_sym_sort_clause_token2, - [41026] = 6, + [41060] = 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(763), 2, sym_comment, sym_include, - ACTIONS(197), 3, + ACTIONS(183), 3, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(199), 29, + ACTIONS(185), 29, sym__or_operator, sym__and_operator, anon_sym_STAR, @@ -81160,26 +81905,46 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_query_tuning_token5, aux_sym_sort_clause_token1, aux_sym_sort_clause_token2, - [41076] = 6, + [41110] = 15, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - STATE(758), 2, - sym_comment, - sym_include, - ACTIONS(153), 3, + ACTIONS(227), 1, anon_sym_SLASH, + ACTIONS(229), 1, + anon_sym_STAR, + STATE(401), 1, + sym__logical_operator, + STATE(447), 1, + sym__comparison_operator, + STATE(507), 1, + sym__additive_operator, + STATE(516), 1, + sym__multiplicative_operator, + ACTIONS(233), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(235), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(155), 29, + ACTIONS(239), 2, sym__or_operator, sym__and_operator, - anon_sym_STAR, - anon_sym_PLUS, - anon_sym_DASH, + STATE(764), 2, + sym_comment, + sym_include, + ACTIONS(1394), 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, + ACTIONS(237), 13, anon_sym_LT_EQ, anon_sym_LT_GT, anon_sym_EQ, @@ -81193,32 +81958,21 @@ 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_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, - [41126] = 6, + [41178] = 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(765), 2, sym_comment, sym_include, - ACTIONS(165), 3, + ACTIONS(133), 3, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(167), 29, + ACTIONS(135), 29, sym__or_operator, sym__and_operator, anon_sym_STAR, @@ -81248,65 +82002,75 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_query_tuning_token5, aux_sym_sort_clause_token1, aux_sym_sort_clause_token2, - [41176] = 6, - ACTIONS(59), 1, + [41228] = 14, + 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(760), 2, + ACTIONS(1396), 1, + sym_identifier, + ACTIONS(1400), 1, + aux_sym_primitive_type_token19, + STATE(828), 1, + sym_access_tuning, + STATE(838), 1, + aux_sym_method_definition_repeat1, + STATE(1604), 1, + sym_method_tuning, + STATE(4417), 1, + sym_primitive_type, + STATE(4673), 1, + sym_qualified_name, + STATE(766), 2, sym_comment, sym_include, - ACTIONS(119), 3, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(121), 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, - [41226] = 6, + ACTIONS(1404), 3, + aux_sym_access_tuning_token1, + aux_sym_access_tuning_token2, + aux_sym_access_tuning_token3, + ACTIONS(1402), 4, + aux_sym_scope_tuning_token4, + aux_sym_property_type_token1, + aux_sym_property_type_token2, + aux_sym_method_tuning_token1, + ACTIONS(1398), 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, + [41294] = 7, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - STATE(761), 2, + ACTIONS(1406), 1, + aux_sym_function_call_token1, + STATE(767), 2, sym_comment, sym_include, - ACTIONS(141), 3, + ACTIONS(153), 3, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(143), 29, + ACTIONS(155), 28, sym__or_operator, sym__and_operator, anon_sym_STAR, @@ -81326,7 +82090,6 @@ 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, @@ -81336,21 +82099,21 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_query_tuning_token5, aux_sym_sort_clause_token1, aux_sym_sort_clause_token2, - [41276] = 6, + [41346] = 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(768), 2, sym_comment, sym_include, - ACTIONS(149), 3, + ACTIONS(187), 3, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(151), 29, + ACTIONS(189), 29, sym__or_operator, sym__and_operator, anon_sym_STAR, @@ -81380,21 +82143,21 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_query_tuning_token5, aux_sym_sort_clause_token1, aux_sym_sort_clause_token2, - [41326] = 6, + [41396] = 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(769), 2, sym_comment, sym_include, - ACTIONS(205), 3, + ACTIONS(141), 3, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(207), 29, + ACTIONS(143), 29, sym__or_operator, sym__and_operator, anon_sym_STAR, @@ -81424,21 +82187,21 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_query_tuning_token5, aux_sym_sort_clause_token1, aux_sym_sort_clause_token2, - [41376] = 6, + [41446] = 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(770), 2, sym_comment, sym_include, - ACTIONS(173), 3, + ACTIONS(109), 3, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(175), 29, + ACTIONS(111), 29, sym__or_operator, sym__and_operator, anon_sym_STAR, @@ -81468,21 +82231,21 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_query_tuning_token5, aux_sym_sort_clause_token1, aux_sym_sort_clause_token2, - [41426] = 6, + [41496] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - STATE(765), 2, + STATE(771), 2, sym_comment, sym_include, - ACTIONS(169), 3, + ACTIONS(215), 3, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(171), 29, + ACTIONS(217), 29, sym__or_operator, sym__and_operator, anon_sym_STAR, @@ -81512,21 +82275,21 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_query_tuning_token5, aux_sym_sort_clause_token1, aux_sym_sort_clause_token2, - [41476] = 6, + [41546] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - STATE(766), 2, + STATE(772), 2, sym_comment, sym_include, - ACTIONS(83), 3, + ACTIONS(163), 3, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(85), 29, + ACTIONS(165), 29, sym__or_operator, sym__and_operator, anon_sym_STAR, @@ -81556,21 +82319,21 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_query_tuning_token5, aux_sym_sort_clause_token1, aux_sym_sort_clause_token2, - [41526] = 6, + [41596] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - STATE(767), 2, + STATE(773), 2, sym_comment, sym_include, - ACTIONS(221), 3, + ACTIONS(167), 3, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(223), 29, + ACTIONS(169), 29, sym__or_operator, sym__and_operator, anon_sym_STAR, @@ -81600,21 +82363,21 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_query_tuning_token5, aux_sym_sort_clause_token1, aux_sym_sort_clause_token2, - [41576] = 6, + [41646] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - STATE(768), 2, + STATE(774), 2, sym_comment, sym_include, - ACTIONS(181), 3, + ACTIONS(199), 3, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(183), 29, + ACTIONS(201), 29, sym__or_operator, sym__and_operator, anon_sym_STAR, @@ -81644,21 +82407,21 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_query_tuning_token5, aux_sym_sort_clause_token1, aux_sym_sort_clause_token2, - [41626] = 6, + [41696] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - STATE(769), 2, + STATE(775), 2, sym_comment, sym_include, - ACTIONS(161), 3, + ACTIONS(171), 3, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(163), 29, + ACTIONS(173), 29, sym__or_operator, sym__and_operator, anon_sym_STAR, @@ -81688,21 +82451,21 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_query_tuning_token5, aux_sym_sort_clause_token1, aux_sym_sort_clause_token2, - [41676] = 6, + [41746] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - STATE(770), 2, + STATE(776), 2, sym_comment, sym_include, - ACTIONS(137), 3, + ACTIONS(175), 3, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(139), 29, + ACTIONS(177), 29, sym__or_operator, sym__and_operator, anon_sym_STAR, @@ -81732,21 +82495,21 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_query_tuning_token5, aux_sym_sort_clause_token1, aux_sym_sort_clause_token2, - [41726] = 6, + [41796] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - STATE(771), 2, + STATE(777), 2, sym_comment, sym_include, - ACTIONS(145), 3, + ACTIONS(119), 3, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(147), 29, + ACTIONS(121), 29, sym__or_operator, sym__and_operator, anon_sym_STAR, @@ -81776,21 +82539,21 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_query_tuning_token5, aux_sym_sort_clause_token1, aux_sym_sort_clause_token2, - [41776] = 6, + [41846] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - STATE(772), 2, + STATE(778), 2, sym_comment, sym_include, - ACTIONS(109), 3, + ACTIONS(191), 3, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(111), 29, + ACTIONS(193), 29, sym__or_operator, sym__and_operator, anon_sym_STAR, @@ -81820,27 +82583,27 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_query_tuning_token5, aux_sym_sort_clause_token1, aux_sym_sort_clause_token2, - [41826] = 11, + [41896] = 11, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(1404), 1, + ACTIONS(1408), 1, anon_sym_LPAREN, - ACTIONS(1406), 1, + ACTIONS(1410), 1, sym__namedot, - ACTIONS(1408), 1, + ACTIONS(1412), 1, sym__namecolon, - STATE(815), 1, + STATE(817), 1, aux_sym_object_access_repeat1, - STATE(842), 1, + STATE(846), 1, aux_sym_qualified_name_repeat1, ACTIONS(77), 2, sym__or_operator, sym__and_operator, - STATE(773), 2, + STATE(779), 2, sym_comment, sym_include, ACTIONS(75), 24, @@ -81868,27 +82631,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, aux_sym_do_block_token1, aux_sym_widget_field_token1, - [41885] = 11, + [41955] = 11, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(1404), 1, + ACTIONS(1408), 1, anon_sym_LPAREN, - ACTIONS(1406), 1, + ACTIONS(1410), 1, sym__namedot, - ACTIONS(1408), 1, + ACTIONS(1412), 1, sym__namecolon, - STATE(815), 1, + STATE(817), 1, aux_sym_object_access_repeat1, - STATE(842), 1, + STATE(846), 1, aux_sym_qualified_name_repeat1, ACTIONS(67), 2, sym__or_operator, sym__and_operator, - STATE(774), 2, + STATE(780), 2, sym_comment, sym_include, ACTIONS(63), 24, @@ -81916,93 +82679,84 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, aux_sym_do_block_token1, aux_sym_widget_field_token1, - [41944] = 16, + [42014] = 7, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(283), 1, - anon_sym_SLASH, - ACTIONS(285), 1, - anon_sym_STAR, - ACTIONS(1412), 1, - anon_sym_BY, - STATE(347), 1, - sym__multiplicative_operator, - STATE(375), 1, - sym__comparison_operator, - STATE(408), 1, - sym__additive_operator, - STATE(411), 1, - sym__logical_operator, - ACTIONS(289), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(291), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(295), 2, - sym__or_operator, - sym__and_operator, - STATE(775), 2, + ACTIONS(109), 1, + aux_sym_variable_definition_token2, + ACTIONS(1414), 1, + sym__namedot, + STATE(781), 2, sym_comment, sym_include, - ACTIONS(1410), 5, + ACTIONS(111), 29, + 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_repeat_tuning_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, - ACTIONS(293), 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, - [42013] = 13, + aux_sym_field_definition_token1, + aux_sym_index_definition_token1, + [42065] = 13, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(492), 1, + STATE(419), 1, + sym__comparison_operator, + STATE(431), 1, sym__logical_operator, - STATE(494), 1, + STATE(440), 1, sym__additive_operator, - STATE(495), 1, + STATE(505), 1, sym__multiplicative_operator, - STATE(501), 1, - sym__comparison_operator, - ACTIONS(283), 2, + ACTIONS(227), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(295), 2, + ACTIONS(239), 2, sym__or_operator, sym__and_operator, ACTIONS(1123), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(776), 2, + STATE(782), 2, sym_comment, sym_include, - ACTIONS(1141), 5, + ACTIONS(1121), 5, sym_identifier, aux_sym_input_expression_token2, anon_sym_COMMA, aux_sym_do_block_token1, aux_sym_widget_field_token1, - ACTIONS(291), 15, + ACTIONS(235), 15, anon_sym_LT, anon_sym_LT_EQ, anon_sym_LT_GT, @@ -82018,82 +82772,40 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - [42075] = 10, + [42127] = 13, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(492), 1, + STATE(419), 1, + sym__comparison_operator, + STATE(431), 1, sym__logical_operator, - STATE(494), 1, + STATE(440), 1, sym__additive_operator, - STATE(495), 1, + STATE(505), 1, sym__multiplicative_operator, - STATE(501), 1, - sym__comparison_operator, - ACTIONS(315), 2, + ACTIONS(227), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(239), 2, sym__or_operator, sym__and_operator, - STATE(777), 2, + ACTIONS(1123), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(783), 2, sym_comment, sym_include, - ACTIONS(313), 24, - anon_sym_SLASH, + ACTIONS(1131), 5, 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, - [42131] = 10, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - ACTIONS(1414), 1, - anon_sym_LPAREN, - ACTIONS(1416), 1, - sym__namedot, - ACTIONS(1418), 1, - sym__namecolon, - STATE(836), 1, - aux_sym_object_access_repeat1, - STATE(874), 1, - aux_sym_qualified_name_repeat1, - ACTIONS(77), 2, - sym__or_operator, - sym__and_operator, - STATE(778), 2, - sym_comment, - sym_include, - ACTIONS(75), 24, - anon_sym_SLASH, - anon_sym_LBRACE, - anon_sym_RBRACE, - sym_identifier, - anon_sym_STAR, - anon_sym_DQUOTE, - anon_sym_PLUS, - anon_sym_DASH, + ACTIONS(235), 15, anon_sym_LT, anon_sym_LT_EQ, anon_sym_LT_GT, @@ -82109,28 +82821,25 @@ 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, - [42187] = 9, + [42189] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(1420), 1, - ts_builtin_sym_end, - ACTIONS(1424), 1, + ACTIONS(1418), 1, aux_sym_else_if_statement_token1, - STATE(783), 1, - aux_sym_if_statement_repeat1, - STATE(779), 2, - sym_comment, - sym_include, - STATE(1105), 2, + STATE(1055), 2, sym_else_if_statement, sym_else_statement, - ACTIONS(1422), 25, + STATE(784), 3, + sym_comment, + sym_include, + aux_sym_if_statement_repeat1, + ACTIONS(1416), 26, sym_identifier, + aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, aux_sym_variable_definition_token1, @@ -82155,70 +82864,64 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [42241] = 13, + [42239] = 9, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(492), 1, - sym__logical_operator, - STATE(494), 1, - sym__additive_operator, - STATE(495), 1, - sym__multiplicative_operator, - STATE(501), 1, - sym__comparison_operator, - ACTIONS(283), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(295), 2, - sym__or_operator, - sym__and_operator, - ACTIONS(1123), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(780), 2, + ACTIONS(1421), 1, + ts_builtin_sym_end, + ACTIONS(1425), 1, + aux_sym_else_if_statement_token1, + STATE(789), 1, + aux_sym_if_statement_repeat1, + STATE(785), 2, sym_comment, sym_include, - ACTIONS(1426), 5, + STATE(1061), 2, + sym_else_if_statement, + sym_else_statement, + ACTIONS(1423), 25, sym_identifier, - aux_sym_input_expression_token2, - 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, - ACTIONS(291), 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, - [42303] = 7, + 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, + [42293] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(109), 1, + ACTIONS(219), 1, aux_sym_variable_definition_token2, - ACTIONS(1428), 1, - sym__namedot, - STATE(781), 2, + STATE(786), 2, sym_comment, sym_include, - ACTIONS(111), 28, + ACTIONS(221), 29, sym__terminator, aux_sym__block_terminator_token1, aux_sym_variable_tuning_token1, @@ -82236,6 +82939,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_query_definition_tuning_token2, anon_sym_COLON, aux_sym_while_phrase_token1, + aux_sym_repeat_tuning_token1, aux_sym_property_tuning_token1, aux_sym_getter_token1, aux_sym_setter_token1, @@ -82247,41 +82951,96 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_do_tuning_token1, aux_sym_field_definition_token1, aux_sym_index_definition_token1, - [42353] = 10, + [42341] = 13, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(1414), 1, - anon_sym_LPAREN, - ACTIONS(1416), 1, - sym__namedot, - ACTIONS(1418), 1, - sym__namecolon, - STATE(836), 1, - aux_sym_object_access_repeat1, - STATE(874), 1, - aux_sym_qualified_name_repeat1, - ACTIONS(67), 2, + ACTIONS(7), 1, + anon_sym_LBRACE, + STATE(419), 1, + sym__comparison_operator, + STATE(431), 1, + sym__logical_operator, + STATE(440), 1, + sym__additive_operator, + STATE(505), 1, + sym__multiplicative_operator, + ACTIONS(227), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(239), 2, sym__or_operator, sym__and_operator, - STATE(782), 2, + ACTIONS(1123), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(787), 2, sym_comment, sym_include, - ACTIONS(63), 24, - anon_sym_SLASH, - anon_sym_LBRACE, - anon_sym_RBRACE, + ACTIONS(1137), 5, sym_identifier, + aux_sym_input_expression_token2, + anon_sym_COMMA, + aux_sym_do_block_token1, + aux_sym_widget_field_token1, + ACTIONS(235), 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, + [42403] = 15, + ACTIONS(59), 1, + anon_sym_SLASH_SLASH, + ACTIONS(61), 1, + anon_sym_SLASH_STAR, + ACTIONS(65), 1, + anon_sym_LBRACE, + ACTIONS(227), 1, + anon_sym_SLASH, + ACTIONS(229), 1, anon_sym_STAR, - anon_sym_DQUOTE, + STATE(401), 1, + sym__logical_operator, + STATE(447), 1, + sym__comparison_operator, + STATE(507), 1, + sym__additive_operator, + STATE(516), 1, + sym__multiplicative_operator, + ACTIONS(233), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(235), 2, anon_sym_LT, + anon_sym_GT, + ACTIONS(239), 2, + sym__or_operator, + sym__and_operator, + STATE(788), 2, + sym_comment, + sym_include, + 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(237), 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, @@ -82292,27 +83051,26 @@ 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, - [42409] = 9, + [42469] = 9, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(1424), 1, + ACTIONS(1425), 1, aux_sym_else_if_statement_token1, - ACTIONS(1430), 1, + ACTIONS(1427), 1, ts_builtin_sym_end, - STATE(791), 1, + STATE(800), 1, aux_sym_if_statement_repeat1, - STATE(783), 2, + STATE(789), 2, sym_comment, sym_include, - STATE(1105), 2, + STATE(1061), 2, sym_else_if_statement, sym_else_statement, - ACTIONS(1432), 25, + ACTIONS(1429), 25, sym_identifier, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, @@ -82338,47 +83096,45 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [42463] = 15, - ACTIONS(59), 1, + [42523] = 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(283), 1, - anon_sym_SLASH, - ACTIONS(285), 1, - anon_sym_STAR, - STATE(347), 1, - sym__multiplicative_operator, - STATE(375), 1, + STATE(419), 1, sym__comparison_operator, - STATE(408), 1, - sym__additive_operator, - STATE(411), 1, + STATE(431), 1, sym__logical_operator, - ACTIONS(289), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(291), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(295), 2, + STATE(440), 1, + sym__additive_operator, + STATE(505), 1, + sym__multiplicative_operator, + ACTIONS(227), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(239), 2, sym__or_operator, sym__and_operator, - STATE(784), 2, + ACTIONS(1123), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(790), 2, sym_comment, sym_include, - 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(293), 13, + ACTIONS(1431), 5, + sym_identifier, + aux_sym_input_expression_token2, + anon_sym_COMMA, + aux_sym_do_block_token1, + aux_sym_widget_field_token1, + ACTIONS(235), 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, @@ -82389,24 +83145,24 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - [42529] = 8, + [42585] = 8, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(1434), 1, + ACTIONS(1433), 1, aux_sym_else_if_statement_token1, - STATE(794), 1, + STATE(805), 1, aux_sym_if_statement_repeat1, - STATE(785), 2, + STATE(791), 2, sym_comment, sym_include, - STATE(847), 2, + STATE(1055), 2, sym_else_if_statement, sym_else_statement, - ACTIONS(1422), 26, + ACTIONS(1423), 26, sym_identifier, aux_sym__block_terminator_token1, aux_sym_input_expression_token1, @@ -82433,36 +83189,35 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [42581] = 12, + [42637] = 11, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(492), 1, + STATE(419), 1, + sym__comparison_operator, + STATE(431), 1, sym__logical_operator, - STATE(494), 1, + STATE(440), 1, sym__additive_operator, - STATE(495), 1, + STATE(505), 1, sym__multiplicative_operator, - STATE(501), 1, - sym__comparison_operator, - ACTIONS(283), 2, + ACTIONS(227), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(307), 2, + ACTIONS(249), 2, sym__or_operator, sym__and_operator, - ACTIONS(1123), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(786), 2, + STATE(792), 2, sym_comment, sym_include, - ACTIONS(309), 20, + ACTIONS(251), 22, sym_identifier, aux_sym_input_expression_token2, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_LT, anon_sym_LT_EQ, anon_sym_LT_GT, @@ -82481,100 +83236,86 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, aux_sym_do_block_token1, aux_sym_widget_field_token1, - [42641] = 24, - ACTIONS(59), 1, + [42695] = 10, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(61), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(65), 1, - anon_sym_LBRACE, - ACTIONS(1350), 1, - aux_sym_variable_tuning_token6, - ACTIONS(1372), 1, - aux_sym_property_tuning_token1, - ACTIONS(1448), 1, - aux_sym_variable_definition_token4, - ACTIONS(1452), 1, - aux_sym_function_parameter_token1, - ACTIONS(1454), 1, - aux_sym_property_definition_token1, - ACTIONS(1456), 1, - aux_sym_event_definition_token1, - ACTIONS(1458), 1, - aux_sym_data_source_definition_token1, - STATE(1893), 1, - sym_property_tuning, - STATE(2351), 1, - aux_sym_property_definition_repeat1, - STATE(2471), 1, - aux_sym_property_definition_repeat2, - STATE(2828), 1, - sym_property_type, - STATE(4206), 1, - sym_serialization_tuning, - STATE(4208), 1, - sym_scope_tuning, - ACTIONS(1348), 2, - aux_sym_variable_tuning_token1, - aux_sym_variable_tuning_token5, - ACTIONS(1370), 2, - aux_sym_property_type_token1, - aux_sym_property_type_token2, - ACTIONS(1443), 2, - aux_sym_serialization_tuning_token1, - aux_sym_serialization_tuning_token2, - ACTIONS(1446), 2, - aux_sym_variable_definition_token3, - aux_sym_buffer_definition_token3, - ACTIONS(1450), 2, - aux_sym_buffer_definition_token1, - aux_sym_query_definition_token1, - STATE(787), 2, + ACTIONS(1435), 1, + anon_sym_LPAREN, + ACTIONS(1437), 1, + sym__namedot, + ACTIONS(1439), 1, + sym__namecolon, + STATE(841), 1, + aux_sym_object_access_repeat1, + STATE(933), 1, + aux_sym_qualified_name_repeat1, + ACTIONS(77), 2, + sym__or_operator, + sym__and_operator, + STATE(793), 2, sym_comment, sym_include, - ACTIONS(1440), 3, - aux_sym_access_tuning_token1, - aux_sym_access_tuning_token2, - aux_sym_access_tuning_token3, - ACTIONS(1436), 4, - aux_sym_scope_tuning_token1, - aux_sym_scope_tuning_token2, - aux_sym_scope_tuning_token3, - aux_sym_scope_tuning_token4, - [42725] = 13, + ACTIONS(75), 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, + [42751] = 13, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(492), 1, + STATE(419), 1, + sym__comparison_operator, + STATE(431), 1, sym__logical_operator, - STATE(494), 1, + STATE(440), 1, sym__additive_operator, - STATE(495), 1, + STATE(505), 1, sym__multiplicative_operator, - STATE(501), 1, - sym__comparison_operator, - ACTIONS(219), 2, + ACTIONS(125), 2, sym__or_operator, sym__and_operator, - ACTIONS(283), 2, + ACTIONS(227), 2, anon_sym_SLASH, anon_sym_STAR, ACTIONS(1123), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(788), 2, + STATE(794), 2, sym_comment, sym_include, - ACTIONS(217), 5, + ACTIONS(123), 5, sym_identifier, aux_sym_input_expression_token2, anon_sym_COMMA, aux_sym_do_block_token1, aux_sym_widget_field_token1, - ACTIONS(291), 15, + ACTIONS(235), 15, anon_sym_LT, anon_sym_LT_EQ, anon_sym_LT_GT, @@ -82590,40 +83331,40 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - [42787] = 13, + [42813] = 13, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(492), 1, + STATE(419), 1, + sym__comparison_operator, + STATE(431), 1, sym__logical_operator, - STATE(494), 1, + STATE(440), 1, sym__additive_operator, - STATE(495), 1, + STATE(505), 1, sym__multiplicative_operator, - STATE(501), 1, - sym__comparison_operator, - ACTIONS(283), 2, + ACTIONS(227), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(295), 2, + ACTIONS(239), 2, sym__or_operator, sym__and_operator, ACTIONS(1123), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(789), 2, + STATE(795), 2, sym_comment, sym_include, - ACTIONS(1121), 5, + ACTIONS(1135), 5, sym_identifier, aux_sym_input_expression_token2, anon_sym_COMMA, aux_sym_do_block_token1, aux_sym_widget_field_token1, - ACTIONS(291), 15, + ACTIONS(235), 15, anon_sym_LT, anon_sym_LT_EQ, anon_sym_LT_GT, @@ -82639,118 +83380,122 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - [42849] = 7, - ACTIONS(3), 1, + [42875] = 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(1462), 1, - aux_sym_else_if_statement_token1, - STATE(847), 2, - sym_else_if_statement, - sym_else_statement, - STATE(790), 3, + ACTIONS(109), 1, + aux_sym_variable_definition_token2, + STATE(796), 2, sym_comment, sym_include, - aux_sym_if_statement_repeat1, - ACTIONS(1460), 26, - sym_identifier, + ACTIONS(111), 29, + sym__terminator, aux_sym__block_terminator_token1, - aux_sym_input_expression_token1, - aux_sym_primitive_type_token19, + 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_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_query_definition_tuning_token1, + anon_sym_SCROLLING, + aux_sym_query_definition_tuning_token2, + anon_sym_COLON, + aux_sym_while_phrase_token1, + aux_sym_repeat_tuning_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_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, - [42899] = 8, + aux_sym_stop_after_phrase_token1, + aux_sym_do_tuning_token1, + aux_sym_field_definition_token1, + aux_sym_index_definition_token1, + [42923] = 13, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(1465), 1, - ts_builtin_sym_end, - ACTIONS(1467), 1, - aux_sym_else_if_statement_token1, - STATE(1105), 2, - sym_else_if_statement, - sym_else_statement, - STATE(791), 3, + STATE(419), 1, + sym__comparison_operator, + STATE(431), 1, + sym__logical_operator, + STATE(440), 1, + sym__additive_operator, + STATE(505), 1, + sym__multiplicative_operator, + ACTIONS(227), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(239), 2, + sym__or_operator, + sym__and_operator, + ACTIONS(1123), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(797), 2, sym_comment, sym_include, - aux_sym_if_statement_repeat1, - ACTIONS(1460), 25, + ACTIONS(1141), 5, 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_input_expression_token2, + 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, - [42951] = 13, + aux_sym_widget_field_token1, + ACTIONS(235), 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, + [42985] = 13, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(492), 1, + STATE(419), 1, + sym__comparison_operator, + STATE(431), 1, sym__logical_operator, - STATE(494), 1, + STATE(440), 1, sym__additive_operator, - STATE(495), 1, + STATE(505), 1, sym__multiplicative_operator, - STATE(501), 1, - sym__comparison_operator, - ACTIONS(283), 2, + ACTIONS(227), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(295), 2, + ACTIONS(239), 2, sym__or_operator, sym__and_operator, ACTIONS(1123), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(792), 2, + STATE(798), 2, sym_comment, sym_include, ACTIONS(1139), 5, @@ -82759,7 +83504,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, aux_sym_do_block_token1, aux_sym_widget_field_token1, - ACTIONS(291), 15, + ACTIONS(235), 15, anon_sym_LT, anon_sym_LT_EQ, anon_sym_LT_GT, @@ -82775,40 +83520,36 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - [43013] = 13, + [43047] = 12, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(492), 1, + STATE(419), 1, + sym__comparison_operator, + STATE(431), 1, sym__logical_operator, - STATE(494), 1, + STATE(440), 1, sym__additive_operator, - STATE(495), 1, + STATE(505), 1, sym__multiplicative_operator, - STATE(501), 1, - sym__comparison_operator, - ACTIONS(283), 2, + ACTIONS(227), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(295), 2, + ACTIONS(257), 2, sym__or_operator, sym__and_operator, ACTIONS(1123), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(793), 2, + STATE(799), 2, sym_comment, sym_include, - ACTIONS(1135), 5, + ACTIONS(259), 20, sym_identifier, aux_sym_input_expression_token2, - anon_sym_COMMA, - aux_sym_do_block_token1, - aux_sym_widget_field_token1, - ACTIONS(291), 15, anon_sym_LT, anon_sym_LT_EQ, anon_sym_LT_GT, @@ -82824,26 +83565,29 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - [43075] = 8, + anon_sym_COMMA, + aux_sym_do_block_token1, + aux_sym_widget_field_token1, + [43107] = 8, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(1434), 1, + ACTIONS(1441), 1, + ts_builtin_sym_end, + ACTIONS(1443), 1, aux_sym_else_if_statement_token1, - STATE(790), 1, - aux_sym_if_statement_repeat1, - STATE(794), 2, - sym_comment, - sym_include, - STATE(847), 2, + STATE(1061), 2, sym_else_if_statement, sym_else_statement, - ACTIONS(1432), 26, + STATE(800), 3, + sym_comment, + sym_include, + aux_sym_if_statement_repeat1, + ACTIONS(1416), 25, sym_identifier, - aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, aux_sym_variable_definition_token1, @@ -82868,40 +83612,36 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [43127] = 13, + [43159] = 10, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, - anon_sym_LBRACE, - STATE(492), 1, - sym__logical_operator, - STATE(494), 1, - sym__additive_operator, - STATE(495), 1, - sym__multiplicative_operator, - STATE(501), 1, - sym__comparison_operator, - ACTIONS(283), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(295), 2, + ACTIONS(1435), 1, + anon_sym_LPAREN, + ACTIONS(1437), 1, + sym__namedot, + ACTIONS(1439), 1, + sym__namecolon, + STATE(841), 1, + aux_sym_object_access_repeat1, + STATE(933), 1, + aux_sym_qualified_name_repeat1, + ACTIONS(67), 2, sym__or_operator, sym__and_operator, - ACTIONS(1123), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(795), 2, + STATE(801), 2, sym_comment, sym_include, - ACTIONS(1125), 5, + ACTIONS(63), 24, + anon_sym_SLASH, + anon_sym_LBRACE, + anon_sym_RBRACE, sym_identifier, - aux_sym_input_expression_token2, - anon_sym_COMMA, - aux_sym_do_block_token1, - aux_sym_widget_field_token1, - ACTIONS(291), 15, + anon_sym_STAR, + anon_sym_DQUOTE, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_LT, anon_sym_LT_EQ, anon_sym_LT_GT, @@ -82917,40 +83657,95 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - [43189] = 13, + aux_sym_include_argument_token1, + [43215] = 24, + 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_variable_tuning_token6, + ACTIONS(1378), 1, + aux_sym_property_tuning_token1, + ACTIONS(1458), 1, + aux_sym_variable_definition_token4, + ACTIONS(1462), 1, + aux_sym_function_parameter_token1, + ACTIONS(1464), 1, + aux_sym_property_definition_token1, + ACTIONS(1466), 1, + aux_sym_event_definition_token1, + ACTIONS(1468), 1, + aux_sym_data_source_definition_token1, + STATE(1885), 1, + sym_property_tuning, + STATE(2371), 1, + aux_sym_property_definition_repeat1, + STATE(2588), 1, + aux_sym_property_definition_repeat2, + STATE(2840), 1, + sym_property_type, + STATE(4294), 1, + sym_scope_tuning, + STATE(4313), 1, + sym_serialization_tuning, + ACTIONS(1354), 2, + aux_sym_variable_tuning_token1, + aux_sym_variable_tuning_token5, + ACTIONS(1376), 2, + aux_sym_property_type_token1, + aux_sym_property_type_token2, + ACTIONS(1453), 2, + aux_sym_serialization_tuning_token1, + aux_sym_serialization_tuning_token2, + ACTIONS(1456), 2, + aux_sym_variable_definition_token3, + aux_sym_buffer_definition_token3, + ACTIONS(1460), 2, + aux_sym_buffer_definition_token1, + aux_sym_query_definition_token1, + STATE(802), 2, + sym_comment, + sym_include, + ACTIONS(1450), 3, + aux_sym_access_tuning_token1, + aux_sym_access_tuning_token2, + aux_sym_access_tuning_token3, + ACTIONS(1446), 4, + aux_sym_scope_tuning_token1, + aux_sym_scope_tuning_token2, + aux_sym_scope_tuning_token3, + aux_sym_scope_tuning_token4, + [43299] = 10, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(492), 1, + STATE(419), 1, + sym__comparison_operator, + STATE(431), 1, sym__logical_operator, - STATE(494), 1, + STATE(440), 1, sym__additive_operator, - STATE(495), 1, + STATE(505), 1, sym__multiplicative_operator, - STATE(501), 1, - sym__comparison_operator, - ACTIONS(283), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(295), 2, + ACTIONS(255), 2, sym__or_operator, sym__and_operator, - ACTIONS(1123), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(796), 2, + STATE(803), 2, sym_comment, sym_include, - ACTIONS(1127), 5, + ACTIONS(253), 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(291), 15, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_LT, anon_sym_LT_EQ, anon_sym_LT_GT, @@ -82966,40 +83761,50 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - [43251] = 11, - ACTIONS(3), 1, + anon_sym_COMMA, + aux_sym_do_block_token1, + aux_sym_widget_field_token1, + [43355] = 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(492), 1, + ACTIONS(227), 1, + anon_sym_SLASH, + ACTIONS(229), 1, + anon_sym_STAR, + STATE(401), 1, sym__logical_operator, - STATE(494), 1, + STATE(447), 1, + sym__comparison_operator, + STATE(507), 1, sym__additive_operator, - STATE(495), 1, + STATE(516), 1, sym__multiplicative_operator, - STATE(501), 1, - sym__comparison_operator, - ACTIONS(283), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(317), 2, + ACTIONS(233), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(235), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(239), 2, sym__or_operator, sym__and_operator, - STATE(797), 2, + STATE(804), 2, sym_comment, sym_include, - ACTIONS(319), 22, - sym_identifier, - aux_sym_input_expression_token2, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT, + ACTIONS(1470), 5, + anon_sym_COLON, + aux_sym_repeat_tuning_token1, + aux_sym_on_error_phrase_token1, + aux_sym_stop_after_phrase_token1, + aux_sym_do_tuning_token1, + ACTIONS(237), 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, @@ -83010,41 +83815,82 @@ 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, + [43421] = 8, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_LBRACE, + ACTIONS(1433), 1, + aux_sym_else_if_statement_token1, + STATE(784), 1, + aux_sym_if_statement_repeat1, + STATE(805), 2, + sym_comment, + sym_include, + STATE(1055), 2, + sym_else_if_statement, + sym_else_statement, + ACTIONS(1429), 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_widget_field_token1, - [43309] = 12, + 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, + [43473] = 12, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(397), 1, - sym__comparison_operator, - STATE(473), 1, + STATE(490), 1, sym__logical_operator, - STATE(484), 1, + STATE(491), 1, + sym__comparison_operator, + STATE(492), 1, sym__additive_operator, - STATE(493), 1, + STATE(526), 1, sym__multiplicative_operator, - ACTIONS(283), 2, + ACTIONS(227), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(295), 2, + ACTIONS(239), 2, sym__or_operator, sym__and_operator, ACTIONS(1123), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(798), 2, + STATE(806), 2, sym_comment, sym_include, - ACTIONS(1135), 5, + ACTIONS(1139), 5, anon_sym_LBRACE, anon_sym_RBRACE, sym_identifier, anon_sym_DQUOTE, aux_sym_include_argument_token1, - ACTIONS(291), 15, + ACTIONS(235), 15, anon_sym_LT, anon_sym_LT_EQ, anon_sym_LT_GT, @@ -83060,88 +83906,38 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - [43368] = 15, - ACTIONS(59), 1, - anon_sym_SLASH_SLASH, - ACTIONS(61), 1, - anon_sym_SLASH_STAR, - ACTIONS(65), 1, - anon_sym_LBRACE, - ACTIONS(283), 1, - anon_sym_SLASH, - ACTIONS(285), 1, - anon_sym_STAR, - STATE(347), 1, - sym__multiplicative_operator, - STATE(375), 1, - sym__comparison_operator, - STATE(408), 1, - sym__additive_operator, - STATE(411), 1, - sym__logical_operator, - ACTIONS(289), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(291), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(295), 2, - sym__or_operator, - sym__and_operator, - STATE(799), 2, - sym_comment, - sym_include, - ACTIONS(1470), 4, - anon_sym_COLON, - aux_sym_on_error_phrase_token1, - aux_sym_stop_after_phrase_token1, - aux_sym_do_tuning_token1, - ACTIONS(293), 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, - [43433] = 12, + [43532] = 12, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(397), 1, - sym__comparison_operator, - STATE(473), 1, + STATE(490), 1, sym__logical_operator, - STATE(484), 1, + STATE(491), 1, + sym__comparison_operator, + STATE(492), 1, sym__additive_operator, - STATE(493), 1, + STATE(526), 1, sym__multiplicative_operator, - ACTIONS(283), 2, + ACTIONS(227), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(295), 2, + ACTIONS(239), 2, sym__or_operator, sym__and_operator, ACTIONS(1123), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(800), 2, + STATE(807), 2, sym_comment, sym_include, - ACTIONS(1125), 5, + ACTIONS(1472), 5, anon_sym_LBRACE, anon_sym_RBRACE, sym_identifier, anon_sym_DQUOTE, aux_sym_include_argument_token1, - ACTIONS(291), 15, + ACTIONS(235), 15, anon_sym_LT, anon_sym_LT_EQ, anon_sym_LT_GT, @@ -83157,77 +83953,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] = 6, - 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, - STATE(801), 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, - [43539] = 11, + [43591] = 12, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(397), 1, - sym__comparison_operator, - STATE(473), 1, + STATE(490), 1, sym__logical_operator, - STATE(484), 1, + STATE(491), 1, + sym__comparison_operator, + STATE(492), 1, sym__additive_operator, - STATE(493), 1, + STATE(526), 1, sym__multiplicative_operator, - ACTIONS(283), 2, + ACTIONS(227), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(307), 2, + ACTIONS(239), 2, sym__or_operator, sym__and_operator, ACTIONS(1123), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(802), 2, + STATE(808), 2, sym_comment, sym_include, - ACTIONS(309), 20, + ACTIONS(1135), 5, anon_sym_LBRACE, anon_sym_RBRACE, sym_identifier, anon_sym_DQUOTE, + aux_sym_include_argument_token1, + ACTIONS(235), 15, anon_sym_LT, anon_sym_LT_EQ, anon_sym_LT_GT, @@ -83243,50 +84000,41 @@ 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, - [43596] = 18, - ACTIONS(59), 1, + [43650] = 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(283), 1, - anon_sym_SLASH, - ACTIONS(285), 1, - anon_sym_STAR, - ACTIONS(1472), 1, - anon_sym_COMMA, ACTIONS(1474), 1, - aux_sym_of_token1, + anon_sym_LPAREN, ACTIONS(1476), 1, - aux_sym_on_statement_token1, - STATE(347), 1, - sym__multiplicative_operator, - STATE(375), 1, - sym__comparison_operator, - STATE(408), 1, - sym__additive_operator, - STATE(411), 1, - sym__logical_operator, - STATE(2975), 1, - aux_sym_on_statement_repeat1, - ACTIONS(289), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(291), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(295), 2, + sym__namedot, + ACTIONS(1478), 1, + sym__namecolon, + STATE(849), 1, + aux_sym_object_access_repeat1, + STATE(1389), 1, + aux_sym_qualified_name_repeat1, + ACTIONS(67), 2, sym__or_operator, sym__and_operator, - STATE(803), 2, + STATE(809), 2, sym_comment, sym_include, - ACTIONS(293), 13, + ACTIONS(63), 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, @@ -83297,46 +84045,47 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - [43667] = 18, + anon_sym_NO_DASHERROR, + [43707] = 18, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(283), 1, + ACTIONS(227), 1, anon_sym_SLASH, - ACTIONS(285), 1, + ACTIONS(229), 1, anon_sym_STAR, - ACTIONS(1472), 1, + ACTIONS(1480), 1, anon_sym_COMMA, - ACTIONS(1478), 1, + ACTIONS(1482), 1, aux_sym_of_token1, - ACTIONS(1480), 1, + ACTIONS(1484), 1, aux_sym_on_statement_token1, - STATE(347), 1, - sym__multiplicative_operator, - STATE(375), 1, + STATE(401), 1, + sym__logical_operator, + STATE(447), 1, sym__comparison_operator, - STATE(408), 1, + STATE(507), 1, sym__additive_operator, - STATE(411), 1, - sym__logical_operator, - STATE(2949), 1, + STATE(516), 1, + sym__multiplicative_operator, + STATE(3150), 1, aux_sym_on_statement_repeat1, - ACTIONS(289), 2, + ACTIONS(233), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(291), 2, + ACTIONS(235), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(295), 2, + ACTIONS(239), 2, sym__or_operator, sym__and_operator, - STATE(804), 2, + STATE(810), 2, sym_comment, sym_include, - ACTIONS(293), 13, + ACTIONS(237), 13, anon_sym_LT_EQ, anon_sym_LT_GT, anon_sym_EQ, @@ -83350,28 +84099,34 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - [43738] = 7, + [43778] = 11, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(1482), 1, + ACTIONS(1474), 1, + anon_sym_LPAREN, + ACTIONS(1476), 1, + sym__namedot, + ACTIONS(1478), 1, sym__namecolon, - ACTIONS(97), 2, + STATE(849), 1, + aux_sym_object_access_repeat1, + STATE(1389), 1, + aux_sym_qualified_name_repeat1, + ACTIONS(77), 2, sym__or_operator, sym__and_operator, - STATE(805), 3, + STATE(811), 2, sym_comment, sym_include, - aux_sym_object_access_repeat1, - ACTIONS(95), 25, + ACTIONS(75), 22, anon_sym_SLASH, sym_identifier, anon_sym_STAR, - anon_sym_LPAREN, - aux_sym_input_expression_token2, + sym__terminator, anon_sym_PLUS, anon_sym_DASH, anon_sym_LT, @@ -83389,35 +84144,29 @@ 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, - [43787] = 9, + anon_sym_NO_DASHERROR, + [43835] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(397), 1, - sym__comparison_operator, - STATE(473), 1, - sym__logical_operator, - STATE(484), 1, - sym__additive_operator, - STATE(493), 1, - sym__multiplicative_operator, - ACTIONS(315), 2, + ACTIONS(7), 1, + anon_sym_LBRACE, + ACTIONS(1486), 1, + sym__namecolon, + ACTIONS(93), 2, sym__or_operator, sym__and_operator, - STATE(806), 2, + STATE(812), 3, sym_comment, sym_include, - ACTIONS(313), 24, + 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, + aux_sym_input_expression_token2, anon_sym_PLUS, anon_sym_DASH, anon_sym_LT, @@ -83435,133 +84184,41 @@ 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, - [43840] = 6, - ACTIONS(59), 1, - anon_sym_SLASH_SLASH, - ACTIONS(61), 1, - anon_sym_SLASH_STAR, - ACTIONS(65), 1, - anon_sym_LBRACE, - ACTIONS(181), 1, - aux_sym_variable_definition_token2, - STATE(807), 2, - sym_comment, - sym_include, - ACTIONS(183), 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, - [43887] = 18, - ACTIONS(59), 1, - anon_sym_SLASH_SLASH, - ACTIONS(61), 1, - anon_sym_SLASH_STAR, - ACTIONS(65), 1, - anon_sym_LBRACE, - ACTIONS(283), 1, - anon_sym_SLASH, - ACTIONS(285), 1, - anon_sym_STAR, - ACTIONS(1472), 1, anon_sym_COMMA, - ACTIONS(1485), 1, - aux_sym_of_token1, - ACTIONS(1487), 1, - aux_sym_on_statement_token1, - STATE(347), 1, - sym__multiplicative_operator, - STATE(375), 1, - sym__comparison_operator, - STATE(408), 1, - sym__additive_operator, - STATE(411), 1, - sym__logical_operator, - STATE(2936), 1, - aux_sym_on_statement_repeat1, - ACTIONS(289), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(291), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(295), 2, - sym__or_operator, - sym__and_operator, - STATE(808), 2, - sym_comment, - sym_include, - ACTIONS(293), 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, - [43958] = 12, + aux_sym_do_block_token1, + aux_sym_widget_field_token1, + [43884] = 12, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(397), 1, - sym__comparison_operator, - STATE(473), 1, + STATE(490), 1, sym__logical_operator, - STATE(484), 1, + STATE(491), 1, + sym__comparison_operator, + STATE(492), 1, sym__additive_operator, - STATE(493), 1, + STATE(526), 1, sym__multiplicative_operator, - ACTIONS(283), 2, + ACTIONS(227), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(295), 2, + ACTIONS(239), 2, sym__or_operator, sym__and_operator, ACTIONS(1123), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(809), 2, + STATE(813), 2, sym_comment, sym_include, - ACTIONS(1127), 5, + ACTIONS(1137), 5, anon_sym_LBRACE, anon_sym_RBRACE, sym_identifier, anon_sym_DQUOTE, aux_sym_include_argument_token1, - ACTIONS(291), 15, + ACTIONS(235), 15, anon_sym_LT, anon_sym_LT_EQ, anon_sym_LT_GT, @@ -83577,46 +84234,46 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - [44017] = 18, + [43943] = 18, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(283), 1, + ACTIONS(227), 1, anon_sym_SLASH, - ACTIONS(285), 1, + ACTIONS(229), 1, anon_sym_STAR, - ACTIONS(1472), 1, + ACTIONS(1480), 1, anon_sym_COMMA, ACTIONS(1489), 1, aux_sym_of_token1, ACTIONS(1491), 1, aux_sym_on_statement_token1, - STATE(347), 1, - sym__multiplicative_operator, - STATE(375), 1, + STATE(401), 1, + sym__logical_operator, + STATE(447), 1, sym__comparison_operator, - STATE(408), 1, + STATE(507), 1, sym__additive_operator, - STATE(411), 1, - sym__logical_operator, - STATE(3046), 1, + STATE(516), 1, + sym__multiplicative_operator, + STATE(3075), 1, aux_sym_on_statement_repeat1, - ACTIONS(289), 2, + ACTIONS(233), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(291), 2, + ACTIONS(235), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(295), 2, + ACTIONS(239), 2, sym__or_operator, sym__and_operator, - STATE(810), 2, + STATE(814), 2, sym_comment, sym_include, - ACTIONS(293), 13, + ACTIONS(237), 13, anon_sym_LT_EQ, anon_sym_LT_GT, anon_sym_EQ, @@ -83630,38 +84287,38 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - [44088] = 12, + [44014] = 12, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(397), 1, - sym__comparison_operator, - STATE(473), 1, + STATE(490), 1, sym__logical_operator, - STATE(484), 1, + STATE(491), 1, + sym__comparison_operator, + STATE(492), 1, sym__additive_operator, - STATE(493), 1, + STATE(526), 1, sym__multiplicative_operator, - ACTIONS(283), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(295), 2, + ACTIONS(125), 2, sym__or_operator, sym__and_operator, + ACTIONS(227), 2, + anon_sym_SLASH, + anon_sym_STAR, ACTIONS(1123), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(811), 2, + STATE(815), 2, sym_comment, sym_include, - ACTIONS(1493), 5, + ACTIONS(123), 5, anon_sym_LBRACE, anon_sym_RBRACE, sym_identifier, anon_sym_DQUOTE, aux_sym_include_argument_token1, - ACTIONS(291), 15, + ACTIONS(235), 15, anon_sym_LT, anon_sym_LT_EQ, anon_sym_LT_GT, @@ -83677,88 +84334,36 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - [44147] = 18, - ACTIONS(59), 1, - anon_sym_SLASH_SLASH, - ACTIONS(61), 1, - anon_sym_SLASH_STAR, - ACTIONS(65), 1, - anon_sym_LBRACE, - ACTIONS(283), 1, - anon_sym_SLASH, - ACTIONS(285), 1, - anon_sym_STAR, - ACTIONS(1472), 1, - anon_sym_COMMA, - ACTIONS(1495), 1, - aux_sym_of_token1, - ACTIONS(1497), 1, - aux_sym_on_statement_token1, - STATE(347), 1, - sym__multiplicative_operator, - STATE(375), 1, - sym__comparison_operator, - STATE(408), 1, - sym__additive_operator, - STATE(411), 1, - sym__logical_operator, - STATE(2986), 1, - aux_sym_on_statement_repeat1, - ACTIONS(289), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(291), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(295), 2, - sym__or_operator, - sym__and_operator, - STATE(812), 2, - sym_comment, - sym_include, - ACTIONS(293), 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, - [44218] = 10, + [44073] = 11, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(397), 1, - sym__comparison_operator, - STATE(473), 1, + STATE(490), 1, sym__logical_operator, - STATE(484), 1, + STATE(491), 1, + sym__comparison_operator, + STATE(492), 1, sym__additive_operator, - STATE(493), 1, + STATE(526), 1, sym__multiplicative_operator, - ACTIONS(283), 2, + ACTIONS(227), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(317), 2, + ACTIONS(257), 2, sym__or_operator, sym__and_operator, - STATE(813), 2, + ACTIONS(1123), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(816), 2, sym_comment, sym_include, - ACTIONS(319), 22, + ACTIONS(259), 20, anon_sym_LBRACE, anon_sym_RBRACE, sym_identifier, anon_sym_DQUOTE, - anon_sym_PLUS, - anon_sym_DASH, anon_sym_LT, anon_sym_LT_EQ, anon_sym_LT_GT, @@ -83775,34 +84380,29 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, aux_sym_include_argument_token1, - [44273] = 11, + [44130] = 8, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(1499), 1, - anon_sym_LPAREN, - ACTIONS(1501), 1, - sym__namedot, - ACTIONS(1503), 1, + ACTIONS(1412), 1, sym__namecolon, - STATE(854), 1, + STATE(812), 1, aux_sym_object_access_repeat1, - STATE(1265), 1, - aux_sym_qualified_name_repeat1, - ACTIONS(77), 2, + ACTIONS(107), 2, sym__or_operator, sym__and_operator, - STATE(814), 2, + STATE(817), 2, sym_comment, sym_include, - ACTIONS(75), 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, @@ -83820,37 +84420,52 @@ 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, - [44330] = 8, - ACTIONS(3), 1, + anon_sym_COMMA, + aux_sym_do_block_token1, + aux_sym_widget_field_token1, + [44181] = 18, + 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(1408), 1, - sym__namecolon, - STATE(805), 1, - aux_sym_object_access_repeat1, - ACTIONS(81), 2, - sym__or_operator, - sym__and_operator, - STATE(815), 2, - sym_comment, - sym_include, - ACTIONS(79), 25, + ACTIONS(227), 1, anon_sym_SLASH, - sym_identifier, + ACTIONS(229), 1, anon_sym_STAR, - anon_sym_LPAREN, - aux_sym_input_expression_token2, + ACTIONS(1480), 1, + anon_sym_COMMA, + ACTIONS(1493), 1, + aux_sym_of_token1, + ACTIONS(1495), 1, + aux_sym_on_statement_token1, + STATE(401), 1, + sym__logical_operator, + STATE(447), 1, + sym__comparison_operator, + STATE(507), 1, + sym__additive_operator, + STATE(516), 1, + sym__multiplicative_operator, + STATE(3153), 1, + aux_sym_on_statement_repeat1, + ACTIONS(233), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(235), 2, anon_sym_LT, + anon_sym_GT, + ACTIONS(239), 2, + sym__or_operator, + sym__and_operator, + STATE(818), 2, + sym_comment, + sym_include, + ACTIONS(237), 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, @@ -83861,46 +84476,49 @@ 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, - [44381] = 12, - ACTIONS(3), 1, + [44252] = 18, + ACTIONS(59), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(61), 1, anon_sym_SLASH_STAR, - STATE(397), 1, - sym__comparison_operator, - STATE(473), 1, + ACTIONS(65), 1, + anon_sym_LBRACE, + ACTIONS(227), 1, + anon_sym_SLASH, + ACTIONS(229), 1, + anon_sym_STAR, + ACTIONS(1480), 1, + anon_sym_COMMA, + ACTIONS(1497), 1, + aux_sym_of_token1, + ACTIONS(1499), 1, + aux_sym_on_statement_token1, + STATE(401), 1, sym__logical_operator, - STATE(484), 1, + STATE(447), 1, + sym__comparison_operator, + STATE(507), 1, sym__additive_operator, - STATE(493), 1, + STATE(516), 1, sym__multiplicative_operator, - ACTIONS(219), 2, - sym__or_operator, - sym__and_operator, - ACTIONS(283), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(1123), 2, + STATE(3008), 1, + aux_sym_on_statement_repeat1, + ACTIONS(233), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(816), 2, + ACTIONS(235), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(239), 2, + sym__or_operator, + sym__and_operator, + STATE(819), 2, sym_comment, sym_include, - ACTIONS(217), 5, - anon_sym_LBRACE, - anon_sym_RBRACE, - sym_identifier, - anon_sym_DQUOTE, - aux_sym_include_argument_token1, - ACTIONS(291), 15, - anon_sym_LT, + ACTIONS(237), 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, @@ -83911,36 +84529,38 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - [44440] = 11, + [44323] = 12, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, - anon_sym_LBRACE, - ACTIONS(1499), 1, - anon_sym_LPAREN, - ACTIONS(1501), 1, - sym__namedot, - ACTIONS(1503), 1, - sym__namecolon, - STATE(854), 1, - aux_sym_object_access_repeat1, - STATE(1265), 1, - aux_sym_qualified_name_repeat1, - ACTIONS(67), 2, + STATE(490), 1, + sym__logical_operator, + STATE(491), 1, + sym__comparison_operator, + STATE(492), 1, + sym__additive_operator, + STATE(526), 1, + sym__multiplicative_operator, + ACTIONS(227), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(239), 2, sym__or_operator, sym__and_operator, - STATE(817), 2, + ACTIONS(1123), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(820), 2, sym_comment, sym_include, - ACTIONS(63), 22, - anon_sym_SLASH, + ACTIONS(1121), 5, + anon_sym_LBRACE, + anon_sym_RBRACE, sym_identifier, - anon_sym_STAR, - sym__terminator, - anon_sym_PLUS, - anon_sym_DASH, + anon_sym_DQUOTE, + aux_sym_include_argument_token1, + ACTIONS(235), 15, anon_sym_LT, anon_sym_LT_EQ, anon_sym_LT_GT, @@ -83956,39 +84576,38 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - anon_sym_NO_DASHERROR, - [44497] = 12, + [44382] = 12, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(397), 1, - sym__comparison_operator, - STATE(473), 1, + STATE(490), 1, sym__logical_operator, - STATE(484), 1, + STATE(491), 1, + sym__comparison_operator, + STATE(492), 1, sym__additive_operator, - STATE(493), 1, + STATE(526), 1, sym__multiplicative_operator, - ACTIONS(283), 2, + ACTIONS(227), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(295), 2, + ACTIONS(239), 2, sym__or_operator, sym__and_operator, ACTIONS(1123), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(818), 2, + STATE(821), 2, sym_comment, sym_include, - ACTIONS(1139), 5, + ACTIONS(1141), 5, anon_sym_LBRACE, anon_sym_RBRACE, sym_identifier, anon_sym_DQUOTE, aux_sym_include_argument_token1, - ACTIONS(291), 15, + ACTIONS(235), 15, anon_sym_LT, anon_sym_LT_EQ, anon_sym_LT_GT, @@ -84004,38 +84623,34 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - [44556] = 12, + [44441] = 9, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(397), 1, - sym__comparison_operator, - STATE(473), 1, + STATE(490), 1, sym__logical_operator, - STATE(484), 1, + STATE(491), 1, + sym__comparison_operator, + STATE(492), 1, sym__additive_operator, - STATE(493), 1, + STATE(526), 1, sym__multiplicative_operator, - ACTIONS(283), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(295), 2, + ACTIONS(255), 2, sym__or_operator, sym__and_operator, - ACTIONS(1123), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(819), 2, + STATE(822), 2, sym_comment, sym_include, - ACTIONS(1141), 5, + ACTIONS(253), 24, + anon_sym_SLASH, anon_sym_LBRACE, anon_sym_RBRACE, sym_identifier, + anon_sym_STAR, anon_sym_DQUOTE, - aux_sym_include_argument_token1, - ACTIONS(291), 15, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_LT, anon_sym_LT_EQ, anon_sym_LT_GT, @@ -84051,38 +84666,39 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - [44615] = 12, + aux_sym_include_argument_token1, + [44494] = 12, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(397), 1, - sym__comparison_operator, - STATE(473), 1, + STATE(490), 1, sym__logical_operator, - STATE(484), 1, + STATE(491), 1, + sym__comparison_operator, + STATE(492), 1, sym__additive_operator, - STATE(493), 1, + STATE(526), 1, sym__multiplicative_operator, - ACTIONS(283), 2, + ACTIONS(227), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(295), 2, + ACTIONS(239), 2, sym__or_operator, sym__and_operator, ACTIONS(1123), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(820), 2, + STATE(823), 2, sym_comment, sym_include, - ACTIONS(1121), 5, + ACTIONS(1131), 5, anon_sym_LBRACE, anon_sym_RBRACE, sym_identifier, anon_sym_DQUOTE, aux_sym_include_argument_token1, - ACTIONS(291), 15, + ACTIONS(235), 15, anon_sym_LT, anon_sym_LT_EQ, anon_sym_LT_GT, @@ -84098,82 +84714,49 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - [44674] = 13, - ACTIONS(3), 1, + [44553] = 18, + 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(464), 1, - sym__comparison_operator, - STATE(502), 1, - sym__multiplicative_operator, - STATE(503), 1, - sym__additive_operator, - STATE(506), 1, - sym__logical_operator, - ACTIONS(219), 2, - sym__or_operator, - sym__and_operator, - ACTIONS(283), 2, + ACTIONS(227), 1, anon_sym_SLASH, + ACTIONS(229), 1, anon_sym_STAR, - ACTIONS(1123), 2, + ACTIONS(1480), 1, + anon_sym_COMMA, + ACTIONS(1501), 1, + aux_sym_of_token1, + ACTIONS(1503), 1, + aux_sym_on_statement_token1, + STATE(401), 1, + sym__logical_operator, + STATE(447), 1, + sym__comparison_operator, + STATE(507), 1, + sym__additive_operator, + STATE(516), 1, + sym__multiplicative_operator, + STATE(3163), 1, + aux_sym_on_statement_repeat1, + ACTIONS(233), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(821), 2, - sym_comment, - sym_include, - ACTIONS(217), 3, - sym_identifier, - sym__terminator, - anon_sym_NO_DASHERROR, - ACTIONS(291), 15, + ACTIONS(235), 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, - [44734] = 8, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - ACTIONS(7), 1, - anon_sym_LBRACE, - ACTIONS(1406), 1, - sym__namedot, - STATE(842), 1, - aux_sym_qualified_name_repeat1, - ACTIONS(89), 2, + ACTIONS(239), 2, sym__or_operator, sym__and_operator, - STATE(822), 2, + STATE(824), 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, + ACTIONS(237), 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, @@ -84184,29 +84767,33 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - anon_sym_COMMA, - aux_sym_do_block_token1, - aux_sym_widget_field_token1, - [44784] = 6, + [44624] = 10, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, - anon_sym_LBRACE, - STATE(823), 2, - sym_comment, - sym_include, - ACTIONS(117), 3, - sym__namecolon, + STATE(490), 1, + sym__logical_operator, + STATE(491), 1, + sym__comparison_operator, + STATE(492), 1, + sym__additive_operator, + STATE(526), 1, + sym__multiplicative_operator, + ACTIONS(227), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(249), 2, sym__or_operator, sym__and_operator, - ACTIONS(115), 25, - anon_sym_SLASH, + STATE(825), 2, + sym_comment, + sym_include, + ACTIONS(251), 22, + anon_sym_LBRACE, + anon_sym_RBRACE, sym_identifier, - anon_sym_STAR, - anon_sym_LPAREN, - aux_sym_input_expression_token2, + anon_sym_DQUOTE, anon_sym_PLUS, anon_sym_DASH, anon_sym_LT, @@ -84224,41 +84811,39 @@ 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, - [44830] = 13, + aux_sym_include_argument_token1, + [44679] = 13, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(464), 1, + STATE(399), 1, sym__comparison_operator, - STATE(502), 1, + STATE(403), 1, sym__multiplicative_operator, - STATE(503), 1, + STATE(412), 1, sym__additive_operator, - STATE(506), 1, + STATE(417), 1, sym__logical_operator, - ACTIONS(283), 2, + ACTIONS(227), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(295), 2, + ACTIONS(239), 2, sym__or_operator, sym__and_operator, ACTIONS(1123), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(824), 2, + STATE(826), 2, sym_comment, sym_include, - ACTIONS(1121), 3, + ACTIONS(1137), 3, sym_identifier, sym__terminator, anon_sym_NO_DASHERROR, - ACTIONS(291), 15, + ACTIONS(235), 15, anon_sym_LT, anon_sym_LT_EQ, anon_sym_LT_GT, @@ -84274,38 +84859,38 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - [44890] = 13, + [44739] = 13, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(464), 1, + STATE(399), 1, sym__comparison_operator, - STATE(502), 1, + STATE(403), 1, sym__multiplicative_operator, - STATE(503), 1, + STATE(412), 1, sym__additive_operator, - STATE(506), 1, + STATE(417), 1, sym__logical_operator, - ACTIONS(283), 2, + ACTIONS(227), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(295), 2, + ACTIONS(239), 2, sym__or_operator, sym__and_operator, ACTIONS(1123), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(825), 2, + STATE(827), 2, sym_comment, sym_include, - ACTIONS(1141), 3, + ACTIONS(1135), 3, sym_identifier, sym__terminator, anon_sym_NO_DASHERROR, - ACTIONS(291), 15, + ACTIONS(235), 15, anon_sym_LT, anon_sym_LT_EQ, anon_sym_LT_GT, @@ -84321,38 +84906,122 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - [44950] = 13, + [44799] = 12, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(464), 1, - sym__comparison_operator, - STATE(502), 1, - sym__multiplicative_operator, - STATE(503), 1, - sym__additive_operator, - STATE(506), 1, - sym__logical_operator, - ACTIONS(283), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(295), 2, + ACTIONS(1396), 1, + sym_identifier, + ACTIONS(1400), 1, + aux_sym_primitive_type_token19, + STATE(829), 1, + aux_sym_method_definition_repeat1, + STATE(1604), 1, + sym_method_tuning, + STATE(4311), 1, + sym_primitive_type, + STATE(4673), 1, + sym_qualified_name, + STATE(828), 2, + sym_comment, + sym_include, + ACTIONS(1402), 4, + aux_sym_scope_tuning_token4, + aux_sym_property_type_token1, + aux_sym_property_type_token2, + aux_sym_method_tuning_token1, + ACTIONS(1398), 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, + [44857] = 12, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_LBRACE, + ACTIONS(1396), 1, + sym_identifier, + ACTIONS(1400), 1, + aux_sym_primitive_type_token19, + STATE(1424), 1, + aux_sym_method_definition_repeat1, + STATE(1604), 1, + sym_method_tuning, + STATE(4217), 1, + sym_primitive_type, + STATE(4673), 1, + sym_qualified_name, + STATE(829), 2, + sym_comment, + sym_include, + ACTIONS(1402), 4, + aux_sym_scope_tuning_token4, + aux_sym_property_type_token1, + aux_sym_property_type_token2, + aux_sym_method_tuning_token1, + ACTIONS(1398), 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, + [44915] = 6, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(1505), 1, + sym__namecolon, + ACTIONS(93), 2, sym__or_operator, sym__and_operator, - ACTIONS(1123), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(826), 2, + STATE(830), 3, sym_comment, sym_include, - ACTIONS(1139), 3, + aux_sym_object_access_repeat1, + ACTIONS(91), 25, + anon_sym_SLASH, + anon_sym_LBRACE, + anon_sym_RBRACE, sym_identifier, - sym__terminator, - anon_sym_NO_DASHERROR, - ACTIONS(291), 15, + 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, @@ -84368,30 +85037,39 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - [45010] = 8, + aux_sym_include_argument_token1, + [44961] = 13, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(1406), 1, - sym__namedot, - STATE(842), 1, - aux_sym_qualified_name_repeat1, - ACTIONS(85), 2, + STATE(399), 1, + sym__comparison_operator, + STATE(403), 1, + sym__multiplicative_operator, + STATE(412), 1, + sym__additive_operator, + STATE(417), 1, + sym__logical_operator, + ACTIONS(125), 2, sym__or_operator, sym__and_operator, - STATE(827), 2, - sym_comment, - sym_include, - ACTIONS(83), 24, + ACTIONS(227), 2, anon_sym_SLASH, - sym_identifier, anon_sym_STAR, - aux_sym_input_expression_token2, + ACTIONS(1123), 2, anon_sym_PLUS, anon_sym_DASH, + STATE(831), 2, + sym_comment, + sym_include, + ACTIONS(123), 3, + sym_identifier, + sym__terminator, + anon_sym_NO_DASHERROR, + ACTIONS(235), 15, anon_sym_LT, anon_sym_LT_EQ, anon_sym_LT_GT, @@ -84407,33 +85085,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, - [45060] = 6, + [45021] = 13, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(1505), 1, - sym__namecolon, - ACTIONS(97), 2, + ACTIONS(7), 1, + anon_sym_LBRACE, + STATE(399), 1, + sym__comparison_operator, + STATE(403), 1, + sym__multiplicative_operator, + STATE(412), 1, + sym__additive_operator, + STATE(417), 1, + sym__logical_operator, + ACTIONS(227), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(239), 2, sym__or_operator, sym__and_operator, - STATE(828), 3, + ACTIONS(1123), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(832), 2, sym_comment, sym_include, - aux_sym_object_access_repeat1, - ACTIONS(95), 25, - anon_sym_SLASH, - anon_sym_LBRACE, - anon_sym_RBRACE, + ACTIONS(1131), 3, sym_identifier, - anon_sym_STAR, - anon_sym_DQUOTE, - anon_sym_LPAREN, - anon_sym_PLUS, - anon_sym_DASH, + sym__terminator, + anon_sym_NO_DASHERROR, + ACTIONS(235), 15, anon_sym_LT, anon_sym_LT_EQ, anon_sym_LT_GT, @@ -84449,85 +85132,35 @@ 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, - [45106] = 12, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - ACTIONS(7), 1, - anon_sym_LBRACE, - ACTIONS(1390), 1, - sym_identifier, - ACTIONS(1394), 1, - aux_sym_primitive_type_token19, - STATE(1231), 1, - aux_sym_method_definition_repeat1, - STATE(1629), 1, - sym_method_tuning, - STATE(4201), 1, - sym_primitive_type, - STATE(4451), 1, - sym_qualified_name, - STATE(829), 2, - sym_comment, - sym_include, - ACTIONS(1396), 4, - aux_sym_scope_tuning_token4, - aux_sym_property_type_token1, - aux_sym_property_type_token2, - aux_sym_method_tuning_token1, - ACTIONS(1392), 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, - [45164] = 13, + [45081] = 11, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(464), 1, + STATE(399), 1, sym__comparison_operator, - STATE(502), 1, + STATE(403), 1, sym__multiplicative_operator, - STATE(503), 1, + STATE(412), 1, sym__additive_operator, - STATE(506), 1, + STATE(417), 1, sym__logical_operator, - ACTIONS(283), 2, + ACTIONS(227), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(295), 2, + ACTIONS(249), 2, sym__or_operator, sym__and_operator, - ACTIONS(1123), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(830), 2, + STATE(833), 2, sym_comment, sym_include, - ACTIONS(1125), 3, + ACTIONS(251), 20, sym_identifier, sym__terminator, - anon_sym_NO_DASHERROR, - ACTIONS(291), 15, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_LT, anon_sym_LT_EQ, anon_sym_LT_GT, @@ -84543,38 +85176,39 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - [45224] = 13, + anon_sym_NO_DASHERROR, + [45137] = 13, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(464), 1, + STATE(399), 1, sym__comparison_operator, - STATE(502), 1, + STATE(403), 1, sym__multiplicative_operator, - STATE(503), 1, + STATE(412), 1, sym__additive_operator, - STATE(506), 1, + STATE(417), 1, sym__logical_operator, - ACTIONS(283), 2, + ACTIONS(227), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(295), 2, + ACTIONS(239), 2, sym__or_operator, sym__and_operator, ACTIONS(1123), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(831), 2, + STATE(834), 2, sym_comment, sym_include, - ACTIONS(1127), 3, + ACTIONS(1121), 3, sym_identifier, sym__terminator, anon_sym_NO_DASHERROR, - ACTIONS(291), 15, + ACTIONS(235), 15, anon_sym_LT, anon_sym_LT_EQ, anon_sym_LT_GT, @@ -84590,35 +85224,36 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - [45284] = 11, + [45197] = 12, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(464), 1, + STATE(399), 1, sym__comparison_operator, - STATE(502), 1, + STATE(403), 1, sym__multiplicative_operator, - STATE(503), 1, + STATE(412), 1, sym__additive_operator, - STATE(506), 1, + STATE(417), 1, sym__logical_operator, - ACTIONS(283), 2, + ACTIONS(227), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(317), 2, + ACTIONS(257), 2, sym__or_operator, sym__and_operator, - STATE(832), 2, + ACTIONS(1123), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(835), 2, sym_comment, sym_include, - ACTIONS(319), 20, + ACTIONS(259), 18, sym_identifier, sym__terminator, - anon_sym_PLUS, - anon_sym_DASH, anon_sym_LT, anon_sym_LT_EQ, anon_sym_LT_GT, @@ -84635,28 +85270,28 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, anon_sym_NO_DASHERROR, - [45340] = 10, + [45255] = 10, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(464), 1, + STATE(399), 1, sym__comparison_operator, - STATE(502), 1, + STATE(403), 1, sym__multiplicative_operator, - STATE(503), 1, + STATE(412), 1, sym__additive_operator, - STATE(506), 1, + STATE(417), 1, sym__logical_operator, - ACTIONS(315), 2, + ACTIONS(255), 2, sym__or_operator, sym__and_operator, - STATE(833), 2, + STATE(836), 2, sym_comment, sym_include, - ACTIONS(313), 22, + ACTIONS(253), 22, anon_sym_SLASH, sym_identifier, anon_sym_STAR, @@ -84679,36 +85314,38 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, anon_sym_NO_DASHERROR, - [45394] = 12, + [45309] = 13, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(464), 1, + STATE(399), 1, sym__comparison_operator, - STATE(502), 1, + STATE(403), 1, sym__multiplicative_operator, - STATE(503), 1, + STATE(412), 1, sym__additive_operator, - STATE(506), 1, + STATE(417), 1, sym__logical_operator, - ACTIONS(283), 2, + ACTIONS(227), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(307), 2, + ACTIONS(239), 2, sym__or_operator, sym__and_operator, ACTIONS(1123), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(834), 2, + STATE(837), 2, sym_comment, sym_include, - ACTIONS(309), 18, + ACTIONS(1508), 3, sym_identifier, sym__terminator, + anon_sym_NO_DASHERROR, + ACTIONS(235), 15, anon_sym_LT, anon_sym_LT_EQ, anon_sym_LT_GT, @@ -84724,35 +85361,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, - [45452] = 12, + [45369] = 12, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(1390), 1, + ACTIONS(1396), 1, sym_identifier, - ACTIONS(1394), 1, + ACTIONS(1400), 1, aux_sym_primitive_type_token19, - STATE(841), 1, + STATE(1424), 1, aux_sym_method_definition_repeat1, - STATE(1629), 1, + STATE(1604), 1, sym_method_tuning, - STATE(4201), 1, + STATE(4311), 1, sym_primitive_type, - STATE(4451), 1, + STATE(4673), 1, sym_qualified_name, - STATE(835), 2, + STATE(838), 2, sym_comment, sym_include, - ACTIONS(1396), 4, + ACTIONS(1402), 4, aux_sym_scope_tuning_token4, aux_sym_property_type_token1, aux_sym_property_type_token2, aux_sym_method_tuning_token1, - ACTIONS(1392), 18, + ACTIONS(1398), 18, aux_sym_primitive_type_token1, aux_sym_primitive_type_token2, aux_sym_primitive_type_token3, @@ -84771,29 +85407,28 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_primitive_type_token16, aux_sym_primitive_type_token17, aux_sym_primitive_type_token18, - [45510] = 7, + [45427] = 8, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(1418), 1, - sym__namecolon, - STATE(828), 1, - aux_sym_object_access_repeat1, - ACTIONS(81), 2, + ACTIONS(7), 1, + anon_sym_LBRACE, + ACTIONS(1410), 1, + sym__namedot, + STATE(846), 1, + aux_sym_qualified_name_repeat1, + ACTIONS(85), 2, sym__or_operator, sym__and_operator, - STATE(836), 2, + STATE(839), 2, sym_comment, sym_include, - ACTIONS(79), 25, + ACTIONS(83), 24, anon_sym_SLASH, - anon_sym_LBRACE, - anon_sym_RBRACE, sym_identifier, anon_sym_STAR, - anon_sym_DQUOTE, - anon_sym_LPAREN, + aux_sym_input_expression_token2, anon_sym_PLUS, anon_sym_DASH, anon_sym_LT, @@ -84811,39 +85446,32 @@ 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, - [45558] = 13, + anon_sym_COMMA, + aux_sym_do_block_token1, + aux_sym_widget_field_token1, + [45477] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(464), 1, - sym__comparison_operator, - STATE(502), 1, - sym__multiplicative_operator, - STATE(503), 1, - sym__additive_operator, - STATE(506), 1, - sym__logical_operator, - ACTIONS(283), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(295), 2, + ACTIONS(1510), 1, + sym__namedot, + ACTIONS(100), 2, sym__or_operator, sym__and_operator, - ACTIONS(1123), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(837), 2, + STATE(840), 3, sym_comment, sym_include, - ACTIONS(1135), 3, + aux_sym_qualified_name_repeat1, + ACTIONS(98), 24, + anon_sym_SLASH, sym_identifier, - sym__terminator, - anon_sym_NO_DASHERROR, - ACTIONS(291), 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, @@ -84859,27 +85487,32 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - [45618] = 7, + anon_sym_COMMA, + aux_sym_do_block_token1, + aux_sym_widget_field_token1, + [45525] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, - anon_sym_LBRACE, - ACTIONS(1508), 1, - sym__namedot, - ACTIONS(104), 2, + ACTIONS(1439), 1, + sym__namecolon, + STATE(830), 1, + aux_sym_object_access_repeat1, + ACTIONS(107), 2, sym__or_operator, sym__and_operator, - STATE(838), 3, + STATE(841), 2, sym_comment, sym_include, - aux_sym_qualified_name_repeat1, - ACTIONS(102), 24, + ACTIONS(105), 25, anon_sym_SLASH, + anon_sym_LBRACE, + anon_sym_RBRACE, sym_identifier, anon_sym_STAR, - aux_sym_input_expression_token2, + anon_sym_DQUOTE, + anon_sym_LPAREN, anon_sym_PLUS, anon_sym_DASH, anon_sym_LT, @@ -84897,45 +85530,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, - [45666] = 15, + aux_sym_include_argument_token1, + [45573] = 15, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(283), 1, + ACTIONS(227), 1, anon_sym_SLASH, - ACTIONS(285), 1, + ACTIONS(229), 1, anon_sym_STAR, - STATE(347), 1, - sym__multiplicative_operator, - STATE(375), 1, + STATE(401), 1, + sym__logical_operator, + STATE(447), 1, sym__comparison_operator, - STATE(408), 1, + STATE(507), 1, sym__additive_operator, - STATE(411), 1, - sym__logical_operator, - ACTIONS(289), 2, + STATE(516), 1, + sym__multiplicative_operator, + ACTIONS(233), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(291), 2, + ACTIONS(235), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(295), 2, + ACTIONS(239), 2, sym__or_operator, sym__and_operator, - STATE(839), 2, + STATE(842), 2, sym_comment, sym_include, - ACTIONS(1511), 3, + ACTIONS(1513), 3, anon_sym_COMMA, aux_sym_of_token1, aux_sym_on_statement_token1, - ACTIONS(293), 13, + ACTIONS(237), 13, anon_sym_LT_EQ, anon_sym_LT_GT, anon_sym_EQ, @@ -84949,38 +85580,78 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - [45730] = 13, + [45637] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(464), 1, + STATE(843), 2, + sym_comment, + sym_include, + 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, + 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, + [45683] = 13, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_LBRACE, + STATE(399), 1, sym__comparison_operator, - STATE(502), 1, + STATE(403), 1, sym__multiplicative_operator, - STATE(503), 1, + STATE(412), 1, sym__additive_operator, - STATE(506), 1, + STATE(417), 1, sym__logical_operator, - ACTIONS(283), 2, + ACTIONS(227), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(295), 2, + ACTIONS(239), 2, sym__or_operator, sym__and_operator, ACTIONS(1123), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(840), 2, + STATE(844), 2, sym_comment, sym_include, - ACTIONS(1513), 3, + ACTIONS(1139), 3, sym_identifier, sym__terminator, anon_sym_NO_DASHERROR, - ACTIONS(291), 15, + ACTIONS(235), 15, anon_sym_LT, anon_sym_LT_EQ, anon_sym_LT_GT, @@ -84996,70 +85667,66 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - [45790] = 12, + [45743] = 8, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(1390), 1, - sym_identifier, - ACTIONS(1394), 1, - aux_sym_primitive_type_token19, - STATE(1231), 1, - aux_sym_method_definition_repeat1, - STATE(1629), 1, - sym_method_tuning, - STATE(4094), 1, - sym_primitive_type, - STATE(4451), 1, - sym_qualified_name, - STATE(841), 2, + ACTIONS(1410), 1, + sym__namedot, + STATE(846), 1, + aux_sym_qualified_name_repeat1, + ACTIONS(89), 2, + sym__or_operator, + sym__and_operator, + STATE(845), 2, sym_comment, sym_include, - ACTIONS(1396), 4, - aux_sym_scope_tuning_token4, - aux_sym_property_type_token1, - aux_sym_property_type_token2, - aux_sym_method_tuning_token1, - ACTIONS(1392), 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, - [45848] = 8, + 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, + [45793] = 8, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(1406), 1, + ACTIONS(1410), 1, sym__namedot, - STATE(838), 1, + STATE(840), 1, aux_sym_qualified_name_repeat1, - ACTIONS(93), 2, + ACTIONS(81), 2, sym__or_operator, sym__and_operator, - STATE(842), 2, + STATE(846), 2, sym_comment, sym_include, - ACTIONS(91), 24, + ACTIONS(79), 24, anon_sym_SLASH, sym_identifier, anon_sym_STAR, @@ -85084,20 +85751,66 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, aux_sym_do_block_token1, aux_sym_widget_field_token1, - [45898] = 6, + [45843] = 13, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(1515), 1, - ts_builtin_sym_end, - STATE(843), 2, + STATE(399), 1, + sym__comparison_operator, + STATE(403), 1, + sym__multiplicative_operator, + STATE(412), 1, + sym__additive_operator, + STATE(417), 1, + sym__logical_operator, + ACTIONS(227), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(239), 2, + sym__or_operator, + sym__and_operator, + ACTIONS(1123), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(847), 2, + sym_comment, + sym_include, + ACTIONS(1141), 3, + sym_identifier, + sym__terminator, + anon_sym_NO_DASHERROR, + ACTIONS(235), 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, + [45903] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_LBRACE, + STATE(848), 2, sym_comment, sym_include, - ACTIONS(1517), 26, + ACTIONS(1515), 27, sym_identifier, + aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, aux_sym_variable_definition_token1, @@ -85123,28 +85836,29 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [45943] = 7, + [45946] = 8, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(1416), 1, - sym__namedot, - STATE(874), 1, - aux_sym_qualified_name_repeat1, - ACTIONS(89), 2, + ACTIONS(7), 1, + anon_sym_LBRACE, + ACTIONS(1478), 1, + sym__namecolon, + STATE(1122), 1, + aux_sym_object_access_repeat1, + ACTIONS(107), 2, sym__or_operator, sym__and_operator, - STATE(844), 2, + STATE(849), 2, sym_comment, sym_include, - ACTIONS(87), 24, + ACTIONS(105), 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, @@ -85162,20 +85876,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, - [45990] = 5, + anon_sym_NO_DASHERROR, + [45995] = 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(1517), 1, + ts_builtin_sym_end, + STATE(850), 2, sym_comment, sym_include, - ACTIONS(1519), 27, + ACTIONS(1519), 26, sym_identifier, - aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, aux_sym_variable_definition_token1, @@ -85201,19 +85916,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [46033] = 5, + [46040] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(846), 2, + ACTIONS(1521), 1, + ts_builtin_sym_end, + STATE(851), 2, sym_comment, sym_include, - ACTIONS(1521), 27, + 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, @@ -85239,19 +85955,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [46076] = 5, + [46085] = 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(1525), 1, + ts_builtin_sym_end, + STATE(852), 2, sym_comment, sym_include, - ACTIONS(1523), 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, @@ -85277,19 +85994,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [46119] = 5, + [46130] = 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(1529), 1, + ts_builtin_sym_end, + STATE(853), 2, sym_comment, sym_include, - ACTIONS(1525), 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, @@ -85315,19 +86033,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [46162] = 5, + [46175] = 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(1533), 1, + ts_builtin_sym_end, + STATE(854), 2, sym_comment, sym_include, - ACTIONS(1527), 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, @@ -85353,17 +86072,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [46205] = 5, + [46220] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(850), 2, + STATE(855), 2, sym_comment, sym_include, - ACTIONS(1529), 27, + ACTIONS(1537), 27, sym_identifier, aux_sym__block_terminator_token1, aux_sym_input_expression_token1, @@ -85391,19 +86110,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [46248] = 5, + [46263] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(851), 2, + ACTIONS(1539), 1, + ts_builtin_sym_end, + STATE(856), 2, sym_comment, sym_include, - ACTIONS(1531), 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, @@ -85429,67 +86149,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [46291] = 15, - ACTIONS(59), 1, - anon_sym_SLASH_SLASH, - ACTIONS(61), 1, - anon_sym_SLASH_STAR, - ACTIONS(65), 1, - anon_sym_LBRACE, - ACTIONS(283), 1, - anon_sym_SLASH, - ACTIONS(285), 1, - anon_sym_STAR, - STATE(347), 1, - sym__multiplicative_operator, - STATE(375), 1, - sym__comparison_operator, - STATE(408), 1, - sym__additive_operator, - STATE(411), 1, - sym__logical_operator, - ACTIONS(289), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(291), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(295), 2, - sym__or_operator, - sym__and_operator, - ACTIONS(1533), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - STATE(852), 2, - sym_comment, - sym_include, - ACTIONS(293), 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, - [46354] = 5, + [46308] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(853), 2, + ACTIONS(1543), 1, + ts_builtin_sym_end, + STATE(857), 2, sym_comment, sym_include, - ACTIONS(1535), 27, + 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, @@ -85515,108 +86188,98 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [46397] = 8, + [46353] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(1503), 1, - sym__namecolon, - STATE(966), 1, - aux_sym_object_access_repeat1, - ACTIONS(81), 2, - sym__or_operator, - sym__and_operator, - STATE(854), 2, + ACTIONS(1547), 1, + ts_builtin_sym_end, + STATE(858), 2, sym_comment, sym_include, - ACTIONS(79), 23, - anon_sym_SLASH, + ACTIONS(1549), 26, 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, - [46446] = 15, - ACTIONS(59), 1, + 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, + [46398] = 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(283), 1, - anon_sym_SLASH, - ACTIONS(285), 1, - anon_sym_STAR, - STATE(347), 1, - sym__multiplicative_operator, - STATE(375), 1, - sym__comparison_operator, - STATE(408), 1, - sym__additive_operator, - STATE(411), 1, - sym__logical_operator, - ACTIONS(289), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(291), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(295), 2, - sym__or_operator, - sym__and_operator, - ACTIONS(1537), 2, - sym__terminator, - aux_sym_output_stream_statement_token1, - STATE(855), 2, + ACTIONS(1551), 1, + ts_builtin_sym_end, + STATE(859), 2, sym_comment, sym_include, - ACTIONS(293), 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, - [46509] = 5, + ACTIONS(1553), 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, + [46443] = 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(1555), 1, + ts_builtin_sym_end, + STATE(860), 2, sym_comment, sym_include, - ACTIONS(1539), 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, @@ -85642,19 +86305,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [46552] = 5, + [46488] = 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(1559), 1, + ts_builtin_sym_end, + STATE(861), 2, sym_comment, sym_include, - ACTIONS(1541), 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, @@ -85680,19 +86344,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [46595] = 5, + [46533] = 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(1563), 1, + ts_builtin_sym_end, + STATE(862), 2, sym_comment, sym_include, - ACTIONS(1543), 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, @@ -85718,19 +86383,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [46638] = 5, + [46578] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(859), 2, + ACTIONS(1567), 1, + ts_builtin_sym_end, + STATE(863), 2, sym_comment, sym_include, - ACTIONS(1545), 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, @@ -85756,67 +86422,59 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [46681] = 15, - ACTIONS(59), 1, + [46623] = 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(283), 1, - anon_sym_SLASH, - ACTIONS(285), 1, - anon_sym_STAR, - STATE(347), 1, - sym__multiplicative_operator, - STATE(375), 1, - sym__comparison_operator, - STATE(408), 1, - sym__additive_operator, - STATE(411), 1, - sym__logical_operator, - ACTIONS(289), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(291), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(295), 2, - sym__or_operator, - sym__and_operator, - ACTIONS(1547), 2, - anon_sym_COLON, - aux_sym_on_error_phrase_token1, - STATE(860), 2, + ACTIONS(1571), 1, + ts_builtin_sym_end, + STATE(864), 2, sym_comment, sym_include, - ACTIONS(293), 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, - [46744] = 5, + 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, + 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, + [46668] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(861), 2, + ACTIONS(1575), 1, + ts_builtin_sym_end, + STATE(865), 2, sym_comment, sym_include, - ACTIONS(1549), 27, + ACTIONS(1577), 26, sym_identifier, - aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, aux_sym_variable_definition_token1, @@ -85842,41 +86500,41 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [46787] = 15, + [46713] = 15, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(283), 1, + ACTIONS(227), 1, anon_sym_SLASH, - ACTIONS(285), 1, + ACTIONS(229), 1, anon_sym_STAR, - STATE(347), 1, - sym__multiplicative_operator, - STATE(375), 1, + STATE(401), 1, + sym__logical_operator, + STATE(447), 1, sym__comparison_operator, - STATE(408), 1, + STATE(507), 1, sym__additive_operator, - STATE(411), 1, - sym__logical_operator, - ACTIONS(289), 2, + STATE(516), 1, + sym__multiplicative_operator, + ACTIONS(233), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(291), 2, + ACTIONS(235), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(295), 2, + ACTIONS(239), 2, sym__or_operator, sym__and_operator, - ACTIONS(1533), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - STATE(862), 2, + ACTIONS(1579), 2, + anon_sym_COLON, + aux_sym_on_error_phrase_token1, + STATE(866), 2, sym_comment, sym_include, - ACTIONS(293), 13, + ACTIONS(237), 13, anon_sym_LT_EQ, anon_sym_LT_GT, anon_sym_EQ, @@ -85890,17 +86548,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - [46850] = 5, + [46776] = 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(867), 2, sym_comment, sym_include, - ACTIONS(1551), 27, + ACTIONS(1581), 27, sym_identifier, aux_sym__block_terminator_token1, aux_sym_input_expression_token1, @@ -85928,19 +86586,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [46893] = 5, + [46819] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(864), 2, + ACTIONS(1583), 1, + ts_builtin_sym_end, + STATE(868), 2, sym_comment, sym_include, - ACTIONS(1553), 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, @@ -85966,17 +86625,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [46936] = 5, + [46864] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(865), 2, + STATE(869), 2, sym_comment, sym_include, - ACTIONS(1555), 27, + ACTIONS(1587), 27, sym_identifier, aux_sym__block_terminator_token1, aux_sym_input_expression_token1, @@ -86004,20 +86663,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [46979] = 6, + [46907] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(1557), 1, - ts_builtin_sym_end, - STATE(866), 2, + STATE(870), 2, sym_comment, sym_include, - ACTIONS(1559), 26, + ACTIONS(1589), 27, sym_identifier, + aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, aux_sym_variable_definition_token1, @@ -86043,19 +86701,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [47024] = 5, + [46950] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(867), 2, + ACTIONS(1591), 1, + ts_builtin_sym_end, + STATE(871), 2, sym_comment, sym_include, - ACTIONS(1561), 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, @@ -86081,19 +86740,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [47067] = 6, + [46995] = 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(1595), 1, ts_builtin_sym_end, - STATE(868), 2, + STATE(872), 2, sym_comment, sym_include, - ACTIONS(1525), 26, + ACTIONS(1597), 26, sym_identifier, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, @@ -86120,19 +86779,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [47112] = 5, + [47040] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(869), 2, + ACTIONS(1599), 1, + ts_builtin_sym_end, + STATE(873), 2, sym_comment, sym_include, - ACTIONS(1565), 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, @@ -86158,19 +86818,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [47155] = 5, + [47085] = 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(1603), 1, + ts_builtin_sym_end, + STATE(874), 2, sym_comment, sym_include, - ACTIONS(1567), 27, + ACTIONS(1605), 26, sym_identifier, - aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, aux_sym_variable_definition_token1, @@ -86196,27 +86857,26 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [47198] = 6, + [47130] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(1569), 1, - sym__namedot, - ACTIONS(104), 2, + ACTIONS(7), 1, + anon_sym_LBRACE, + ACTIONS(1607), 1, + aux_sym_function_call_token1, + ACTIONS(129), 2, sym__or_operator, sym__and_operator, - STATE(871), 3, + STATE(875), 2, sym_comment, sym_include, - aux_sym_qualified_name_repeat1, - ACTIONS(102), 24, + ACTIONS(127), 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, @@ -86234,20 +86894,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, - [47243] = 5, + anon_sym_COMMA, + aux_sym_do_block_token1, + aux_sym_widget_field_token1, + [47177] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(872), 2, + ACTIONS(1609), 1, + ts_builtin_sym_end, + STATE(876), 2, sym_comment, sym_include, - ACTIONS(1572), 27, + 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, @@ -86273,91 +86936,44 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [47286] = 23, + [47222] = 15, 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_tuning_token6, - ACTIONS(1364), 1, - aux_sym_buffer_definition_token3, - ACTIONS(1368), 1, - aux_sym_function_parameter_token1, - ACTIONS(1372), 1, - aux_sym_property_tuning_token1, - ACTIONS(1374), 1, - aux_sym_property_definition_token1, - ACTIONS(1376), 1, - aux_sym_event_definition_token1, - STATE(1617), 1, - sym_access_tuning, - STATE(1893), 1, - sym_property_tuning, - STATE(1930), 1, - aux_sym_variable_definition_repeat1, - STATE(1947), 1, - sym_serialization_tuning, - STATE(1994), 1, - sym_scope_tuning, - STATE(2363), 1, - aux_sym_property_definition_repeat1, - STATE(2495), 1, - aux_sym_property_definition_repeat2, - STATE(2828), 1, - sym_property_type, - ACTIONS(1348), 2, - aux_sym_variable_tuning_token1, - aux_sym_variable_tuning_token5, - ACTIONS(1356), 2, - aux_sym_serialization_tuning_token1, - aux_sym_serialization_tuning_token2, - ACTIONS(1370), 2, - aux_sym_property_type_token1, - aux_sym_property_type_token2, - STATE(873), 2, - sym_comment, - sym_include, - ACTIONS(1354), 3, - aux_sym_access_tuning_token1, - aux_sym_access_tuning_token2, - aux_sym_access_tuning_token3, - ACTIONS(1352), 4, - aux_sym_scope_tuning_token1, - aux_sym_scope_tuning_token2, - aux_sym_scope_tuning_token3, - aux_sym_scope_tuning_token4, - [47365] = 7, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - ACTIONS(1416), 1, - sym__namedot, - STATE(871), 1, - aux_sym_qualified_name_repeat1, - ACTIONS(93), 2, - sym__or_operator, - sym__and_operator, - STATE(874), 2, - sym_comment, - sym_include, - ACTIONS(91), 24, + ACTIONS(227), 1, anon_sym_SLASH, - anon_sym_LBRACE, - anon_sym_RBRACE, - sym_identifier, + ACTIONS(229), 1, anon_sym_STAR, - anon_sym_DQUOTE, + STATE(401), 1, + sym__logical_operator, + STATE(447), 1, + sym__comparison_operator, + STATE(507), 1, + sym__additive_operator, + STATE(516), 1, + sym__multiplicative_operator, + ACTIONS(233), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(235), 2, anon_sym_LT, + anon_sym_GT, + ACTIONS(239), 2, + sym__or_operator, + sym__and_operator, + ACTIONS(1613), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + STATE(877), 2, + sym_comment, + sym_include, + ACTIONS(237), 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, @@ -86368,20 +86984,20 @@ 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, - [47412] = 5, + [47285] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(875), 2, + ACTIONS(1615), 1, + ts_builtin_sym_end, + STATE(878), 2, sym_comment, sym_include, - ACTIONS(1574), 27, + ACTIONS(1617), 26, sym_identifier, - aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, aux_sym_variable_definition_token1, @@ -86407,59 +87023,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [47455] = 7, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - ACTIONS(1416), 1, - sym__namedot, - STATE(874), 1, - aux_sym_qualified_name_repeat1, - ACTIONS(85), 2, - sym__or_operator, - sym__and_operator, - STATE(876), 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, - [47502] = 5, + [47330] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(877), 2, + ACTIONS(1619), 1, + ts_builtin_sym_end, + STATE(879), 2, sym_comment, sym_include, - ACTIONS(1576), 27, + 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, @@ -86485,19 +87062,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [47545] = 5, + [47375] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(878), 2, + ACTIONS(1623), 1, + ts_builtin_sym_end, + STATE(880), 2, sym_comment, sym_include, - ACTIONS(1578), 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, @@ -86523,19 +87101,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [47588] = 5, + [47420] = 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(1627), 1, + ts_builtin_sym_end, + STATE(881), 2, sym_comment, sym_include, - ACTIONS(1580), 27, + ACTIONS(1629), 26, sym_identifier, - aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, aux_sym_variable_definition_token1, @@ -86561,19 +87140,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [47631] = 5, + [47465] = 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(1631), 1, + ts_builtin_sym_end, + STATE(882), 2, sym_comment, sym_include, - ACTIONS(1582), 27, + ACTIONS(1633), 26, sym_identifier, - aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, aux_sym_variable_definition_token1, @@ -86599,19 +87179,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [47674] = 6, + [47510] = 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(1635), 1, ts_builtin_sym_end, - STATE(881), 2, + STATE(883), 2, sym_comment, sym_include, - ACTIONS(1586), 26, + ACTIONS(1637), 26, sym_identifier, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, @@ -86638,20 +87218,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [47719] = 6, + [47555] = 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(882), 2, + STATE(884), 2, sym_comment, sym_include, - ACTIONS(1590), 26, + ACTIONS(1639), 27, sym_identifier, + aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, aux_sym_variable_definition_token1, @@ -86677,17 +87256,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [47764] = 5, + [47598] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(883), 2, + STATE(885), 2, sym_comment, sym_include, - ACTIONS(1592), 27, + ACTIONS(1641), 27, sym_identifier, aux_sym__block_terminator_token1, aux_sym_input_expression_token1, @@ -86715,17 +87294,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [47807] = 5, + [47641] = 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(886), 2, sym_comment, sym_include, - ACTIONS(1594), 27, + ACTIONS(1643), 27, sym_identifier, aux_sym__block_terminator_token1, aux_sym_input_expression_token1, @@ -86753,17 +87332,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [47850] = 5, + [47684] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(885), 2, + STATE(887), 2, sym_comment, sym_include, - ACTIONS(1596), 27, + ACTIONS(1645), 27, sym_identifier, aux_sym__block_terminator_token1, aux_sym_input_expression_token1, @@ -86791,17 +87370,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [47893] = 5, + [47727] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(886), 2, + STATE(888), 2, sym_comment, sym_include, - ACTIONS(1598), 27, + ACTIONS(1647), 27, sym_identifier, aux_sym__block_terminator_token1, aux_sym_input_expression_token1, @@ -86829,17 +87408,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [47936] = 5, + [47770] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(887), 2, + STATE(889), 2, sym_comment, sym_include, - ACTIONS(1600), 27, + ACTIONS(1649), 27, sym_identifier, aux_sym__block_terminator_token1, aux_sym_input_expression_token1, @@ -86867,20 +87446,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [47979] = 6, + [47813] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(1602), 1, - ts_builtin_sym_end, - STATE(888), 2, + STATE(890), 2, sym_comment, sym_include, - ACTIONS(1567), 26, + ACTIONS(1651), 27, sym_identifier, + aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, aux_sym_variable_definition_token1, @@ -86906,17 +87484,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [48024] = 5, + [47856] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(889), 2, + STATE(891), 2, sym_comment, sym_include, - ACTIONS(1604), 27, + ACTIONS(1653), 27, sym_identifier, aux_sym__block_terminator_token1, aux_sym_input_expression_token1, @@ -86944,19 +87522,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [48067] = 5, + [47899] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(890), 2, + ACTIONS(1655), 1, + ts_builtin_sym_end, + STATE(892), 2, sym_comment, sym_include, - ACTIONS(1606), 27, + 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, @@ -86982,20 +87561,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [48110] = 6, + [47944] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(1608), 1, - ts_builtin_sym_end, - STATE(891), 2, + STATE(893), 2, sym_comment, sym_include, - ACTIONS(1565), 26, + ACTIONS(1659), 27, sym_identifier, + aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, aux_sym_variable_definition_token1, @@ -87021,20 +87599,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [48155] = 6, + [47987] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(1610), 1, - ts_builtin_sym_end, - STATE(892), 2, + STATE(894), 2, sym_comment, sym_include, - ACTIONS(1555), 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, @@ -87060,19 +87637,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [48200] = 5, + [48030] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(893), 2, + ACTIONS(1663), 1, + ts_builtin_sym_end, + STATE(895), 2, sym_comment, sym_include, - ACTIONS(1612), 27, + ACTIONS(1665), 26, sym_identifier, - aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, aux_sym_variable_definition_token1, @@ -87098,19 +87676,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [48243] = 5, + [48075] = 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(1667), 1, + ts_builtin_sym_end, + STATE(896), 2, sym_comment, sym_include, - ACTIONS(1614), 27, + 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, @@ -87136,19 +87715,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [48286] = 5, + [48120] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(895), 2, + ACTIONS(1671), 1, + ts_builtin_sym_end, + STATE(897), 2, sym_comment, sym_include, - ACTIONS(1616), 27, + 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, @@ -87174,22 +87754,22 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [48329] = 7, + [48165] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(1618), 1, - sym__namedot, - ACTIONS(111), 2, + ACTIONS(1675), 1, + aux_sym_function_call_token1, + ACTIONS(155), 2, sym__or_operator, sym__and_operator, - STATE(896), 2, + STATE(898), 2, sym_comment, sym_include, - ACTIONS(109), 24, + ACTIONS(153), 24, anon_sym_SLASH, sym_identifier, anon_sym_STAR, @@ -87214,19 +87794,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, aux_sym_do_block_token1, aux_sym_widget_field_token1, - [48376] = 5, + [48212] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(897), 2, + ACTIONS(1677), 1, + ts_builtin_sym_end, + STATE(899), 2, sym_comment, sym_include, - ACTIONS(1620), 27, + ACTIONS(1679), 26, sym_identifier, - aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, aux_sym_variable_definition_token1, @@ -87252,59 +87833,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [48419] = 7, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - ACTIONS(7), 1, - anon_sym_LBRACE, - ACTIONS(1404), 1, - anon_sym_LPAREN, - ACTIONS(77), 2, - sym__or_operator, - sym__and_operator, - STATE(898), 2, - sym_comment, - sym_include, - ACTIONS(75), 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, - [48466] = 5, + [48257] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(899), 2, + ACTIONS(1681), 1, + ts_builtin_sym_end, + STATE(900), 2, sym_comment, sym_include, - ACTIONS(1622), 27, + ACTIONS(1683), 26, sym_identifier, - aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, aux_sym_variable_definition_token1, @@ -87330,19 +87872,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [48509] = 6, + [48302] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(1624), 1, + ACTIONS(1685), 1, ts_builtin_sym_end, - STATE(900), 2, + STATE(901), 2, sym_comment, sym_include, - ACTIONS(1626), 26, + ACTIONS(1687), 26, sym_identifier, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, @@ -87369,58 +87911,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [48554] = 6, + [48347] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(1628), 1, - ts_builtin_sym_end, - STATE(901), 2, - sym_comment, - sym_include, - ACTIONS(1630), 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, - [48599] = 6, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - ACTIONS(7), 1, - anon_sym_LBRACE, - ACTIONS(1632), 1, + ACTIONS(1689), 1, ts_builtin_sym_end, STATE(902), 2, sym_comment, sym_include, - ACTIONS(1553), 26, + ACTIONS(1691), 26, sym_identifier, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, @@ -87447,19 +87950,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [48644] = 5, + [48392] = 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(903), 2, sym_comment, sym_include, - ACTIONS(1634), 27, + 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, @@ -87485,19 +87989,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [48687] = 6, + [48437] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(1636), 1, + ACTIONS(1697), 1, ts_builtin_sym_end, STATE(904), 2, sym_comment, sym_include, - ACTIONS(1638), 26, + ACTIONS(1699), 26, sym_identifier, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, @@ -87524,7 +88028,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [48732] = 5, + [48482] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, @@ -87534,7 +88038,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(905), 2, sym_comment, sym_include, - ACTIONS(1640), 27, + ACTIONS(1701), 27, sym_identifier, aux_sym__block_terminator_token1, aux_sym_input_expression_token1, @@ -87562,19 +88066,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [48775] = 6, + [48525] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(1642), 1, + ACTIONS(1703), 1, ts_builtin_sym_end, STATE(906), 2, sym_comment, sym_include, - ACTIONS(1549), 26, + ACTIONS(1705), 26, sym_identifier, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, @@ -87601,19 +88105,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [48820] = 5, + [48570] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, + ACTIONS(1707), 1, + ts_builtin_sym_end, STATE(907), 2, sym_comment, sym_include, - ACTIONS(1644), 27, + ACTIONS(1709), 26, sym_identifier, - aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, aux_sym_variable_definition_token1, @@ -87639,7 +88144,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [48863] = 5, + [48615] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, @@ -87649,7 +88154,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(908), 2, sym_comment, sym_include, - ACTIONS(1646), 27, + ACTIONS(1711), 27, sym_identifier, aux_sym__block_terminator_token1, aux_sym_input_expression_token1, @@ -87677,7 +88182,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [48906] = 5, + [48658] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, @@ -87687,7 +88192,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(909), 2, sym_comment, sym_include, - ACTIONS(1648), 27, + ACTIONS(1713), 27, sym_identifier, aux_sym__block_terminator_token1, aux_sym_input_expression_token1, @@ -87715,7 +88220,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [48949] = 5, + [48701] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, @@ -87725,7 +88230,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(910), 2, sym_comment, sym_include, - ACTIONS(1650), 27, + ACTIONS(1715), 27, sym_identifier, aux_sym__block_terminator_token1, aux_sym_input_expression_token1, @@ -87753,7 +88258,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [48992] = 5, + [48744] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, @@ -87763,7 +88268,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(911), 2, sym_comment, sym_include, - ACTIONS(1652), 27, + ACTIONS(1717), 27, sym_identifier, aux_sym__block_terminator_token1, aux_sym_input_expression_token1, @@ -87791,20 +88296,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [49035] = 6, + [48787] = 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(912), 2, sym_comment, sym_include, - ACTIONS(1545), 26, + ACTIONS(1719), 27, sym_identifier, + aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, aux_sym_variable_definition_token1, @@ -87830,20 +88334,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [49080] = 6, + [48830] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(1656), 1, - ts_builtin_sym_end, STATE(913), 2, sym_comment, sym_include, - ACTIONS(1535), 26, + ACTIONS(1721), 27, sym_identifier, + aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, aux_sym_variable_definition_token1, @@ -87869,20 +88372,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [49125] = 6, + [48873] = 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(914), 2, sym_comment, sym_include, - ACTIONS(1660), 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, @@ -87908,20 +88410,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [49170] = 6, + [48916] = 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(915), 2, sym_comment, sym_include, - ACTIONS(1531), 26, + ACTIONS(1725), 27, sym_identifier, + aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, aux_sym_variable_definition_token1, @@ -87947,7 +88448,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [49215] = 5, + [48959] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, @@ -87957,7 +88458,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(916), 2, sym_comment, sym_include, - ACTIONS(1664), 27, + ACTIONS(1727), 27, sym_identifier, aux_sym__block_terminator_token1, aux_sym_input_expression_token1, @@ -87985,7 +88486,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [49258] = 5, + [49002] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, @@ -87995,7 +88496,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(917), 2, sym_comment, sym_include, - ACTIONS(1666), 27, + ACTIONS(1729), 27, sym_identifier, aux_sym__block_terminator_token1, aux_sym_input_expression_token1, @@ -88023,7 +88524,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [49301] = 5, + [49045] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, @@ -88033,7 +88534,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(918), 2, sym_comment, sym_include, - ACTIONS(1668), 27, + ACTIONS(1731), 27, sym_identifier, aux_sym__block_terminator_token1, aux_sym_input_expression_token1, @@ -88061,7 +88562,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [49344] = 5, + [49088] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, @@ -88071,7 +88572,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(919), 2, sym_comment, sym_include, - ACTIONS(1670), 27, + ACTIONS(1733), 27, sym_identifier, aux_sym__block_terminator_token1, aux_sym_input_expression_token1, @@ -88099,60 +88600,22 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [49387] = 5, + [49131] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(920), 2, - sym_comment, - sym_include, - ACTIONS(1672), 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, - [49430] = 7, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - ACTIONS(7), 1, - anon_sym_LBRACE, - ACTIONS(1404), 1, - anon_sym_LPAREN, - ACTIONS(67), 2, + ACTIONS(1735), 1, + anon_sym_NO_DASHERROR, + ACTIONS(197), 2, sym__or_operator, sym__and_operator, - STATE(921), 2, + STATE(920), 2, sym_comment, sym_include, - ACTIONS(63), 24, + ACTIONS(195), 24, anon_sym_SLASH, sym_identifier, anon_sym_STAR, @@ -88177,17 +88640,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, aux_sym_do_block_token1, aux_sym_widget_field_token1, - [49477] = 5, + [49178] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(922), 2, + STATE(921), 2, sym_comment, sym_include, - ACTIONS(1674), 27, + ACTIONS(1737), 27, sym_identifier, aux_sym__block_terminator_token1, aux_sym_input_expression_token1, @@ -88215,17 +88678,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [49520] = 5, + [49221] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(923), 2, + STATE(922), 2, sym_comment, sym_include, - ACTIONS(1676), 27, + ACTIONS(1739), 27, sym_identifier, aux_sym__block_terminator_token1, aux_sym_input_expression_token1, @@ -88253,19 +88716,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [49563] = 5, + [49264] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(924), 2, + ACTIONS(1741), 1, + ts_builtin_sym_end, + STATE(923), 2, sym_comment, sym_include, - ACTIONS(1678), 27, + ACTIONS(1743), 26, sym_identifier, - aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, aux_sym_variable_definition_token1, @@ -88291,17 +88755,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [49606] = 5, + [49309] = 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(924), 2, sym_comment, sym_include, - ACTIONS(1680), 27, + ACTIONS(1745), 27, sym_identifier, aux_sym__block_terminator_token1, aux_sym_input_expression_token1, @@ -88329,19 +88793,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [49649] = 6, + [49352] = 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(1747), 1, ts_builtin_sym_end, - STATE(926), 2, + STATE(925), 2, sym_comment, sym_include, - ACTIONS(1519), 26, + ACTIONS(1749), 26, sym_identifier, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, @@ -88368,20 +88832,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [49694] = 6, + [49397] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(1684), 1, - ts_builtin_sym_end, - STATE(927), 2, + STATE(926), 2, sym_comment, sym_include, - ACTIONS(1686), 26, + ACTIONS(1751), 27, sym_identifier, + aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, aux_sym_variable_definition_token1, @@ -88407,19 +88870,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [49739] = 6, + [49440] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(1688), 1, + ACTIONS(1753), 1, ts_builtin_sym_end, - STATE(928), 2, + STATE(927), 2, sym_comment, sym_include, - ACTIONS(1690), 26, + ACTIONS(1755), 26, sym_identifier, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, @@ -88446,17 +88909,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [49784] = 5, + [49485] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(929), 2, + STATE(928), 2, sym_comment, sym_include, - ACTIONS(1692), 27, + ACTIONS(1757), 27, sym_identifier, aux_sym__block_terminator_token1, aux_sym_input_expression_token1, @@ -88484,20 +88947,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [49827] = 6, + [49528] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(1694), 1, - ts_builtin_sym_end, - STATE(930), 2, + STATE(929), 2, sym_comment, sym_include, - ACTIONS(1529), 26, + ACTIONS(1759), 27, sym_identifier, + aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, aux_sym_variable_definition_token1, @@ -88523,20 +88985,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [49872] = 6, + [49571] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(1696), 1, - ts_builtin_sym_end, - STATE(931), 2, + STATE(930), 2, sym_comment, sym_include, - ACTIONS(1527), 26, + ACTIONS(1761), 27, sym_identifier, + aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, aux_sym_variable_definition_token1, @@ -88562,20 +89023,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [49917] = 6, + [49614] = 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(932), 2, + STATE(931), 2, sym_comment, sym_include, - ACTIONS(1521), 26, + ACTIONS(1763), 27, sym_identifier, + aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, aux_sym_variable_definition_token1, @@ -88601,20 +89061,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [49962] = 6, + [49657] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(1700), 1, - ts_builtin_sym_end, - STATE(933), 2, + STATE(932), 2, sym_comment, sym_include, - ACTIONS(1702), 26, + ACTIONS(1765), 27, sym_identifier, + aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, aux_sym_variable_definition_token1, @@ -88640,20 +89099,59 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [50007] = 6, + [49700] = 7, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(1437), 1, + sym__namedot, + STATE(937), 1, + aux_sym_qualified_name_repeat1, + ACTIONS(81), 2, + sym__or_operator, + sym__and_operator, + STATE(933), 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, + [49747] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(1704), 1, - ts_builtin_sym_end, STATE(934), 2, sym_comment, sym_include, - ACTIONS(1706), 26, + ACTIONS(1767), 27, sym_identifier, + aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, aux_sym_variable_definition_token1, @@ -88679,20 +89177,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [50052] = 6, + [49790] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(1708), 1, - ts_builtin_sym_end, STATE(935), 2, sym_comment, sym_include, - ACTIONS(1710), 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, @@ -88718,7 +89215,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [50097] = 5, + [49833] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, @@ -88728,7 +89225,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(936), 2, sym_comment, sym_include, - ACTIONS(1712), 27, + ACTIONS(1771), 27, sym_identifier, aux_sym__block_terminator_token1, aux_sym_input_expression_token1, @@ -88756,58 +89253,58 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [50140] = 6, + [49876] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, - anon_sym_LBRACE, - ACTIONS(1714), 1, - ts_builtin_sym_end, - STATE(937), 2, + ACTIONS(1773), 1, + sym__namedot, + ACTIONS(100), 2, + sym__or_operator, + sym__and_operator, + STATE(937), 3, sym_comment, sym_include, - ACTIONS(1716), 26, + aux_sym_qualified_name_repeat1, + ACTIONS(98), 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_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, - [50185] = 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, + [49921] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(1718), 1, + ACTIONS(1776), 1, ts_builtin_sym_end, STATE(938), 2, sym_comment, sym_include, - ACTIONS(1720), 26, + ACTIONS(1778), 26, sym_identifier, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, @@ -88834,7 +89331,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [50230] = 5, + [49966] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, @@ -88844,7 +89341,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(939), 2, sym_comment, sym_include, - ACTIONS(1722), 27, + ACTIONS(1780), 27, sym_identifier, aux_sym__block_terminator_token1, aux_sym_input_expression_token1, @@ -88872,20 +89369,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [50273] = 6, + [50009] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(1724), 1, - ts_builtin_sym_end, STATE(940), 2, sym_comment, sym_include, - ACTIONS(1726), 26, + ACTIONS(1782), 27, sym_identifier, + aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, aux_sym_variable_definition_token1, @@ -88911,7 +89407,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [50318] = 5, + [50052] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, @@ -88921,7 +89417,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(941), 2, sym_comment, sym_include, - ACTIONS(1728), 27, + ACTIONS(1784), 27, sym_identifier, aux_sym__block_terminator_token1, aux_sym_input_expression_token1, @@ -88949,19 +89445,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [50361] = 6, + [50095] = 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(1786), 1, ts_builtin_sym_end, STATE(942), 2, sym_comment, sym_include, - ACTIONS(1732), 26, + ACTIONS(1784), 26, sym_identifier, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, @@ -88988,19 +89484,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [50406] = 5, + [50140] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, + ACTIONS(1788), 1, + ts_builtin_sym_end, STATE(943), 2, sym_comment, sym_include, - ACTIONS(1734), 27, + ACTIONS(1782), 26, sym_identifier, - aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, aux_sym_variable_definition_token1, @@ -89026,7 +89523,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [50449] = 5, + [50185] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, @@ -89036,7 +89533,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(944), 2, sym_comment, sym_include, - ACTIONS(1736), 27, + ACTIONS(1778), 27, sym_identifier, aux_sym__block_terminator_token1, aux_sym_input_expression_token1, @@ -89064,7 +89561,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [50492] = 5, + [50228] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, @@ -89074,7 +89571,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(945), 2, sym_comment, sym_include, - ACTIONS(1738), 27, + ACTIONS(1749), 27, sym_identifier, aux_sym__block_terminator_token1, aux_sym_input_expression_token1, @@ -89102,20 +89599,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [50535] = 6, + [50271] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(1740), 1, - ts_builtin_sym_end, STATE(946), 2, sym_comment, sym_include, - ACTIONS(1742), 26, + ACTIONS(1743), 27, sym_identifier, + aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, aux_sym_variable_definition_token1, @@ -89141,19 +89637,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [50580] = 5, + [50314] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, + ACTIONS(1790), 1, + ts_builtin_sym_end, STATE(947), 2, sym_comment, sym_include, - ACTIONS(1744), 27, + ACTIONS(1780), 26, sym_identifier, - aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, aux_sym_variable_definition_token1, @@ -89179,19 +89676,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [50623] = 5, + [50359] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, + ACTIONS(1792), 1, + ts_builtin_sym_end, STATE(948), 2, sym_comment, sym_include, - ACTIONS(1517), 27, + ACTIONS(1771), 26, sym_identifier, - aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, aux_sym_variable_definition_token1, @@ -89217,19 +89715,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [50666] = 6, + [50404] = 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(1794), 1, ts_builtin_sym_end, STATE(949), 2, sym_comment, sym_include, - ACTIONS(1748), 26, + ACTIONS(1769), 26, sym_identifier, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, @@ -89256,20 +89754,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [50711] = 6, + [50449] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(1750), 1, - ts_builtin_sym_end, STATE(950), 2, sym_comment, sym_include, - ACTIONS(1752), 26, + ACTIONS(1699), 27, sym_identifier, + aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, aux_sym_variable_definition_token1, @@ -89295,20 +89792,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [50756] = 6, + [50492] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(1754), 1, - ts_builtin_sym_end, STATE(951), 2, sym_comment, sym_include, - ACTIONS(1756), 26, + ACTIONS(1695), 27, sym_identifier, + aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, aux_sym_variable_definition_token1, @@ -89334,19 +89830,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [50801] = 5, + [50535] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, + ACTIONS(1796), 1, + ts_builtin_sym_end, STATE(952), 2, sym_comment, sym_include, - ACTIONS(1758), 27, + ACTIONS(1798), 26, sym_identifier, - aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, aux_sym_variable_definition_token1, @@ -89372,19 +89869,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [50844] = 5, + [50580] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, + ACTIONS(1800), 1, + ts_builtin_sym_end, STATE(953), 2, sym_comment, sym_include, - ACTIONS(1760), 27, + ACTIONS(1802), 26, sym_identifier, - aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, aux_sym_variable_definition_token1, @@ -89410,19 +89908,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [50887] = 6, + [50625] = 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(1804), 1, ts_builtin_sym_end, STATE(954), 2, sym_comment, sym_include, - ACTIONS(1764), 26, + ACTIONS(1806), 26, sym_identifier, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, @@ -89449,19 +89947,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [50932] = 6, + [50670] = 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(1808), 1, ts_builtin_sym_end, STATE(955), 2, sym_comment, sym_include, - ACTIONS(1768), 26, + ACTIONS(1810), 26, sym_identifier, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, @@ -89488,19 +89986,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [50977] = 6, + [50715] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(1770), 1, + ACTIONS(1812), 1, ts_builtin_sym_end, STATE(956), 2, sym_comment, sym_include, - ACTIONS(1772), 26, + ACTIONS(1814), 26, sym_identifier, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, @@ -89527,20 +90025,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [51022] = 6, + [50760] = 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(957), 2, sym_comment, sym_include, - ACTIONS(1640), 26, + ACTIONS(1691), 27, sym_identifier, + aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, aux_sym_variable_definition_token1, @@ -89566,20 +90063,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [51067] = 6, + [50803] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(1776), 1, - ts_builtin_sym_end, STATE(958), 2, sym_comment, sym_include, - ACTIONS(1680), 26, + ACTIONS(1709), 27, sym_identifier, + aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, aux_sym_variable_definition_token1, @@ -89605,20 +90101,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [51112] = 6, + [50846] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(1778), 1, - ts_builtin_sym_end, STATE(959), 2, sym_comment, sym_include, - ACTIONS(1670), 26, + ACTIONS(1687), 27, sym_identifier, + aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, aux_sym_variable_definition_token1, @@ -89644,20 +90139,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [51157] = 6, + [50889] = 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(960), 2, sym_comment, sym_include, - ACTIONS(1666), 26, + ACTIONS(1683), 27, sym_identifier, + aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, aux_sym_variable_definition_token1, @@ -89683,19 +90177,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [51202] = 6, + [50932] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(1782), 1, + ACTIONS(1816), 1, ts_builtin_sym_end, STATE(961), 2, sym_comment, sym_include, - ACTIONS(1784), 26, + ACTIONS(1767), 26, sym_identifier, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, @@ -89722,20 +90216,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [51247] = 6, + [50977] = 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(962), 2, sym_comment, sym_include, - ACTIONS(1543), 26, + ACTIONS(1679), 27, sym_identifier, + aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, aux_sym_variable_definition_token1, @@ -89761,17 +90254,55 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [51292] = 5, + [51020] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(963), 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, + [51063] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(963), 2, + STATE(964), 2, sym_comment, sym_include, - ACTIONS(1788), 27, + ACTIONS(1673), 27, sym_identifier, aux_sym__block_terminator_token1, aux_sym_input_expression_token1, @@ -89799,17 +90330,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [51335] = 5, + [51106] = 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(965), 2, sym_comment, sym_include, - ACTIONS(1790), 27, + ACTIONS(1669), 27, sym_identifier, aux_sym__block_terminator_token1, aux_sym_input_expression_token1, @@ -89837,17 +90368,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [51378] = 5, + [51149] = 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(966), 2, sym_comment, sym_include, - ACTIONS(1772), 27, + ACTIONS(1665), 27, sym_identifier, aux_sym__block_terminator_token1, aux_sym_input_expression_token1, @@ -89875,35 +90406,44 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [51421] = 7, - ACTIONS(3), 1, + [51192] = 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(1792), 1, - sym__namecolon, - ACTIONS(97), 2, - sym__or_operator, - sym__and_operator, - STATE(966), 3, - sym_comment, - sym_include, - aux_sym_object_access_repeat1, - ACTIONS(95), 23, + ACTIONS(227), 1, anon_sym_SLASH, - sym_identifier, + ACTIONS(229), 1, anon_sym_STAR, - sym__terminator, - anon_sym_LPAREN, + STATE(401), 1, + sym__logical_operator, + STATE(447), 1, + sym__comparison_operator, + STATE(507), 1, + sym__additive_operator, + STATE(516), 1, + sym__multiplicative_operator, + ACTIONS(233), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(235), 2, anon_sym_LT, + anon_sym_GT, + ACTIONS(239), 2, + sym__or_operator, + sym__and_operator, + ACTIONS(1613), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + STATE(967), 2, + sym_comment, + sym_include, + ACTIONS(237), 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, @@ -89914,18 +90454,55 @@ 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, - [51468] = 5, + [51255] = 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(968), 2, + sym_comment, + sym_include, + ACTIONS(1637), 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, + [51298] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_LBRACE, + STATE(969), 2, sym_comment, sym_include, - ACTIONS(1795), 27, + ACTIONS(1633), 27, sym_identifier, aux_sym__block_terminator_token1, aux_sym_input_expression_token1, @@ -89953,19 +90530,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [51511] = 6, + [51341] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(1797), 1, + ACTIONS(1818), 1, ts_builtin_sym_end, - STATE(968), 2, + STATE(970), 2, sym_comment, sym_include, - ACTIONS(1799), 26, + ACTIONS(1820), 26, sym_identifier, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, @@ -89992,17 +90569,56 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [51556] = 5, + [51386] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(969), 2, + ACTIONS(1822), 1, + ts_builtin_sym_end, + STATE(971), 2, sym_comment, sym_include, - ACTIONS(1764), 27, + ACTIONS(1824), 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, + [51431] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_LBRACE, + STATE(972), 2, + sym_comment, + sym_include, + ACTIONS(1625), 27, sym_identifier, aux_sym__block_terminator_token1, aux_sym_input_expression_token1, @@ -90030,20 +90646,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [51599] = 6, + [51474] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(1801), 1, - ts_builtin_sym_end, - STATE(970), 2, + STATE(973), 2, sym_comment, sym_include, - ACTIONS(1803), 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, @@ -90069,20 +90684,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [51644] = 6, + [51517] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(1805), 1, - ts_builtin_sym_end, - STATE(971), 2, + STATE(974), 2, sym_comment, sym_include, - ACTIONS(1807), 26, + ACTIONS(1617), 27, sym_identifier, + aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, aux_sym_variable_definition_token1, @@ -90108,19 +90722,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [51689] = 6, + [51560] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(1809), 1, + ACTIONS(1826), 1, ts_builtin_sym_end, - STATE(972), 2, + STATE(975), 2, sym_comment, sym_include, - ACTIONS(1811), 26, + ACTIONS(1765), 26, sym_identifier, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, @@ -90147,19 +90761,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [51734] = 5, + [51605] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(973), 2, + ACTIONS(1828), 1, + ts_builtin_sym_end, + STATE(976), 2, sym_comment, sym_include, - ACTIONS(1813), 27, + ACTIONS(1763), 26, sym_identifier, - aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, aux_sym_variable_definition_token1, @@ -90185,19 +90800,60 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [51777] = 5, + [51650] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(974), 2, + ACTIONS(1830), 1, + sym__namedot, + ACTIONS(111), 2, + sym__or_operator, + sym__and_operator, + STATE(977), 2, sym_comment, sym_include, - ACTIONS(1815), 27, + ACTIONS(109), 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, + [51697] = 6, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_LBRACE, + ACTIONS(1832), 1, + ts_builtin_sym_end, + STATE(978), 2, + sym_comment, + sym_include, + ACTIONS(1733), 26, sym_identifier, - aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, aux_sym_variable_definition_token1, @@ -90223,19 +90879,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [51820] = 5, + [51742] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(975), 2, + ACTIONS(1834), 1, + ts_builtin_sym_end, + STATE(979), 2, sym_comment, sym_include, - ACTIONS(1817), 27, + ACTIONS(1761), 26, sym_identifier, - aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, aux_sym_variable_definition_token1, @@ -90261,19 +90918,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [51863] = 6, + [51787] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(1819), 1, + ACTIONS(1836), 1, ts_builtin_sym_end, - STATE(976), 2, + STATE(980), 2, sym_comment, sym_include, - ACTIONS(1821), 26, + ACTIONS(1838), 26, sym_identifier, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, @@ -90300,19 +90957,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [51908] = 5, + [51832] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(977), 2, + ACTIONS(1840), 1, + ts_builtin_sym_end, + STATE(981), 2, sym_comment, sym_include, - ACTIONS(1823), 27, + ACTIONS(1759), 26, sym_identifier, - aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, aux_sym_variable_definition_token1, @@ -90338,17 +90996,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [51951] = 5, + [51877] = 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(982), 2, sym_comment, sym_include, - ACTIONS(1825), 27, + ACTIONS(1605), 27, sym_identifier, aux_sym__block_terminator_token1, aux_sym_input_expression_token1, @@ -90376,19 +91034,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [51994] = 5, + [51920] = 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(1842), 1, + ts_builtin_sym_end, + STATE(983), 2, sym_comment, sym_include, - ACTIONS(1827), 27, + ACTIONS(1757), 26, sym_identifier, - aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, aux_sym_variable_definition_token1, @@ -90414,17 +91073,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [52037] = 5, + [51965] = 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(984), 2, sym_comment, sym_include, - ACTIONS(1829), 27, + ACTIONS(1601), 27, sym_identifier, aux_sym__block_terminator_token1, aux_sym_input_expression_token1, @@ -90452,19 +91111,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [52080] = 5, + [52008] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(981), 2, + ACTIONS(1844), 1, + ts_builtin_sym_end, + STATE(985), 2, sym_comment, sym_include, - ACTIONS(1831), 27, + ACTIONS(1751), 26, sym_identifier, - aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, aux_sym_variable_definition_token1, @@ -90490,19 +91150,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [52123] = 6, + [52053] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(1833), 1, + ACTIONS(1846), 1, ts_builtin_sym_end, - STATE(982), 2, + STATE(986), 2, sym_comment, sym_include, - ACTIONS(1835), 26, + ACTIONS(1848), 26, sym_identifier, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, @@ -90529,19 +91189,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [52168] = 5, + [52098] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(983), 2, + ACTIONS(1850), 1, + ts_builtin_sym_end, + STATE(987), 2, sym_comment, sym_include, - ACTIONS(1837), 27, + ACTIONS(1852), 26, sym_identifier, - aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, aux_sym_variable_definition_token1, @@ -90567,19 +91228,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [52211] = 5, + [52143] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(984), 2, + ACTIONS(1854), 1, + ts_builtin_sym_end, + STATE(988), 2, sym_comment, sym_include, - ACTIONS(1839), 27, + ACTIONS(1856), 26, sym_identifier, - aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, aux_sym_variable_definition_token1, @@ -90605,17 +91267,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [52254] = 5, + [52188] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(985), 2, + STATE(989), 2, sym_comment, sym_include, - ACTIONS(1841), 27, + ACTIONS(1858), 27, sym_identifier, aux_sym__block_terminator_token1, aux_sym_input_expression_token1, @@ -90643,19 +91305,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [52297] = 6, + [52231] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(1843), 1, + ACTIONS(1860), 1, ts_builtin_sym_end, - STATE(986), 2, + STATE(990), 2, sym_comment, sym_include, - ACTIONS(1845), 26, + ACTIONS(1862), 26, sym_identifier, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, @@ -90682,17 +91344,56 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [52342] = 5, + [52276] = 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(1864), 1, + ts_builtin_sym_end, + STATE(991), 2, sym_comment, sym_include, - ACTIONS(1847), 27, + ACTIONS(1866), 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, + [52321] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_LBRACE, + STATE(992), 2, + sym_comment, + sym_include, + ACTIONS(1868), 27, sym_identifier, aux_sym__block_terminator_token1, aux_sym_input_expression_token1, @@ -90720,19 +91421,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [52385] = 6, + [52364] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(1849), 1, + ACTIONS(1870), 1, ts_builtin_sym_end, - STATE(988), 2, + STATE(993), 2, sym_comment, sym_include, - ACTIONS(1851), 26, + ACTIONS(1745), 26, sym_identifier, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, @@ -90759,17 +91460,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [52430] = 5, + [52409] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(989), 2, + STATE(994), 2, sym_comment, sym_include, - ACTIONS(1853), 27, + ACTIONS(1872), 27, sym_identifier, aux_sym__block_terminator_token1, aux_sym_input_expression_token1, @@ -90797,19 +91498,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [52473] = 6, + [52452] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(1855), 1, + ACTIONS(1874), 1, ts_builtin_sym_end, - STATE(990), 2, + STATE(995), 2, sym_comment, sym_include, - ACTIONS(1857), 26, + ACTIONS(1876), 26, sym_identifier, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, @@ -90836,19 +91537,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [52518] = 6, + [52497] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(1859), 1, + ACTIONS(1878), 1, ts_builtin_sym_end, - STATE(991), 2, + STATE(996), 2, sym_comment, sym_include, - ACTIONS(1861), 26, + ACTIONS(1880), 26, sym_identifier, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, @@ -90875,19 +91576,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [52563] = 6, + [52542] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(1863), 1, + ACTIONS(1882), 1, ts_builtin_sym_end, - STATE(992), 2, + STATE(997), 2, sym_comment, sym_include, - ACTIONS(1539), 26, + ACTIONS(1884), 26, sym_identifier, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, @@ -90914,20 +91615,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [52608] = 6, + [52587] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(1865), 1, - ts_builtin_sym_end, - STATE(993), 2, + STATE(998), 2, sym_comment, sym_include, - ACTIONS(1867), 26, + ACTIONS(1886), 27, sym_identifier, + aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, aux_sym_variable_definition_token1, @@ -90953,20 +91653,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [52653] = 6, + [52630] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(1869), 1, - ts_builtin_sym_end, - STATE(994), 2, + STATE(999), 2, sym_comment, sym_include, - ACTIONS(1541), 26, + ACTIONS(1888), 27, sym_identifier, + aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, aux_sym_variable_definition_token1, @@ -90992,19 +91691,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [52698] = 6, + [52673] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(1871), 1, + ACTIONS(1890), 1, ts_builtin_sym_end, - STATE(995), 2, + STATE(1000), 2, sym_comment, sym_include, - ACTIONS(1574), 26, + ACTIONS(1892), 26, sym_identifier, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, @@ -91031,19 +91730,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [52743] = 6, + [52718] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(1873), 1, + ACTIONS(1894), 1, ts_builtin_sym_end, - STATE(996), 2, + STATE(1001), 2, sym_comment, sym_include, - ACTIONS(1551), 26, + ACTIONS(1896), 26, sym_identifier, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, @@ -91070,20 +91769,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [52788] = 6, + [52763] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(1875), 1, - ts_builtin_sym_end, - STATE(997), 2, + STATE(1002), 2, sym_comment, sym_include, - ACTIONS(1561), 26, + ACTIONS(1593), 27, sym_identifier, + aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, aux_sym_variable_definition_token1, @@ -91109,20 +91807,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [52833] = 6, + [52806] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(1877), 1, - ts_builtin_sym_end, - STATE(998), 2, + STATE(1003), 2, sym_comment, sym_include, - ACTIONS(1879), 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, @@ -91148,57 +91845,55 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [52878] = 7, + [52849] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(1881), 1, - anon_sym_NO_DASHERROR, - ACTIONS(631), 2, - sym__or_operator, - sym__and_operator, - STATE(999), 2, + STATE(1004), 2, sym_comment, sym_include, - ACTIONS(629), 24, - anon_sym_SLASH, + ACTIONS(1585), 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, - [52925] = 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, + [52892] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(1000), 2, + STATE(1005), 2, sym_comment, sym_include, - ACTIONS(1883), 27, + ACTIONS(1900), 27, sym_identifier, aux_sym__block_terminator_token1, aux_sym_input_expression_token1, @@ -91226,17 +91921,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [52968] = 5, + [52935] = 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(1006), 2, sym_comment, sym_include, - ACTIONS(1885), 27, + ACTIONS(1902), 27, sym_identifier, aux_sym__block_terminator_token1, aux_sym_input_expression_token1, @@ -91264,17 +91959,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [53011] = 5, + [52978] = 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(1007), 2, sym_comment, sym_include, - ACTIONS(1887), 27, + ACTIONS(1577), 27, sym_identifier, aux_sym__block_terminator_token1, aux_sym_input_expression_token1, @@ -91302,20 +91997,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [53054] = 6, + [53021] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(1889), 1, - ts_builtin_sym_end, - STATE(1003), 2, + STATE(1008), 2, sym_comment, sym_include, - ACTIONS(1891), 26, + ACTIONS(1573), 27, sym_identifier, + aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, aux_sym_variable_definition_token1, @@ -91341,20 +92035,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [53099] = 6, + [53064] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(1893), 1, - ts_builtin_sym_end, - STATE(1004), 2, + STATE(1009), 2, sym_comment, sym_include, - ACTIONS(1895), 26, + ACTIONS(1569), 27, sym_identifier, + aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, aux_sym_variable_definition_token1, @@ -91380,20 +92073,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [53144] = 6, + [53107] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(1897), 1, - ts_builtin_sym_end, - STATE(1005), 2, + STATE(1010), 2, sym_comment, sym_include, - ACTIONS(1899), 26, + ACTIONS(1565), 27, sym_identifier, + aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, aux_sym_variable_definition_token1, @@ -91419,20 +92111,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [53189] = 6, + [53150] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(1901), 1, - ts_builtin_sym_end, - STATE(1006), 2, + STATE(1011), 2, sym_comment, sym_include, - ACTIONS(1903), 26, + ACTIONS(1561), 27, sym_identifier, + aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, aux_sym_variable_definition_token1, @@ -91458,20 +92149,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [53234] = 6, + [53193] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(1905), 1, - ts_builtin_sym_end, - STATE(1007), 2, + STATE(1012), 2, sym_comment, sym_include, - ACTIONS(1907), 26, + ACTIONS(1557), 27, sym_identifier, + aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, aux_sym_variable_definition_token1, @@ -91497,17 +92187,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [53279] = 5, + [53236] = 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(1013), 2, sym_comment, sym_include, - ACTIONS(1909), 27, + ACTIONS(1553), 27, sym_identifier, aux_sym__block_terminator_token1, aux_sym_input_expression_token1, @@ -91535,17 +92225,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [53322] = 5, + [53279] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(1009), 2, + STATE(1014), 2, sym_comment, sym_include, - ACTIONS(1911), 27, + ACTIONS(1549), 27, sym_identifier, aux_sym__block_terminator_token1, aux_sym_input_expression_token1, @@ -91573,19 +92263,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [53365] = 6, + [53322] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(1913), 1, + ACTIONS(1904), 1, ts_builtin_sym_end, - STATE(1010), 2, + STATE(1015), 2, sym_comment, sym_include, - ACTIONS(1915), 26, + ACTIONS(1906), 26, sym_identifier, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, @@ -91612,6 +92302,44 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, + [53367] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_LBRACE, + STATE(1016), 2, + sym_comment, + sym_include, + ACTIONS(1908), 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, [53410] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, @@ -91619,10 +92347,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(1011), 2, + STATE(1017), 2, sym_comment, sym_include, - ACTIONS(1917), 27, + ACTIONS(1910), 27, sym_identifier, aux_sym__block_terminator_token1, aux_sym_input_expression_token1, @@ -91657,10 +92385,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(1012), 2, + STATE(1018), 2, sym_comment, sym_include, - ACTIONS(1919), 27, + ACTIONS(1545), 27, sym_identifier, aux_sym__block_terminator_token1, aux_sym_input_expression_token1, @@ -91695,12 +92423,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(1921), 1, + ACTIONS(1912), 1, ts_builtin_sym_end, - STATE(1013), 2, + STATE(1019), 2, sym_comment, sym_include, - ACTIONS(1923), 26, + ACTIONS(1914), 26, sym_identifier, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, @@ -91727,20 +92455,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [53541] = 6, + [53541] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(1925), 1, - ts_builtin_sym_end, - STATE(1014), 2, + STATE(1020), 2, sym_comment, sym_include, - ACTIONS(1927), 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, @@ -91766,19 +92493,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [53586] = 5, + [53584] = 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(1918), 1, + ts_builtin_sym_end, + STATE(1021), 2, sym_comment, sym_include, - ACTIONS(1929), 27, + 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, @@ -91811,10 +92539,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(1016), 2, + STATE(1022), 2, sym_comment, sym_include, - ACTIONS(1931), 27, + ACTIONS(1922), 27, sym_identifier, aux_sym__block_terminator_token1, aux_sym_input_expression_token1, @@ -91842,19 +92570,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [53672] = 5, + [53672] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(1017), 2, + ACTIONS(1924), 1, + ts_builtin_sym_end, + STATE(1023), 2, sym_comment, sym_include, - ACTIONS(1933), 27, + ACTIONS(1922), 26, sym_identifier, - aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, aux_sym_variable_definition_token1, @@ -91880,19 +92609,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [53715] = 6, + [53717] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(1935), 1, + ACTIONS(1926), 1, ts_builtin_sym_end, - STATE(1018), 2, + STATE(1024), 2, sym_comment, sym_include, - ACTIONS(1937), 26, + ACTIONS(1916), 26, sym_identifier, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, @@ -91919,17 +92648,56 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [53760] = 5, + [53762] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(1019), 2, + ACTIONS(1928), 1, + ts_builtin_sym_end, + STATE(1025), 2, + sym_comment, + sym_include, + ACTIONS(1910), 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, + [53807] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_LBRACE, + STATE(1026), 2, sym_comment, sym_include, - ACTIONS(1937), 27, + ACTIONS(1920), 27, sym_identifier, aux_sym__block_terminator_token1, aux_sym_input_expression_token1, @@ -91957,17 +92725,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [53803] = 5, + [53850] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(1020), 2, + STATE(1027), 2, sym_comment, sym_include, - ACTIONS(1927), 27, + ACTIONS(1914), 27, sym_identifier, aux_sym__block_terminator_token1, aux_sym_input_expression_token1, @@ -91995,19 +92763,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [53846] = 5, + [53893] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(1021), 2, + ACTIONS(1930), 1, + ts_builtin_sym_end, + STATE(1028), 2, sym_comment, sym_include, - ACTIONS(1923), 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, @@ -92033,17 +92802,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [53889] = 5, + [53938] = 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(1029), 2, sym_comment, sym_include, - ACTIONS(1915), 27, + ACTIONS(1541), 27, sym_identifier, aux_sym__block_terminator_token1, aux_sym_input_expression_token1, @@ -92071,17 +92840,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [53932] = 5, + [53981] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(1023), 2, + STATE(1030), 2, sym_comment, sym_include, - ACTIONS(1907), 27, + ACTIONS(1535), 27, sym_identifier, aux_sym__block_terminator_token1, aux_sym_input_expression_token1, @@ -92109,17 +92878,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [53975] = 5, + [54024] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(1024), 2, + STATE(1031), 2, sym_comment, sym_include, - ACTIONS(1903), 27, + ACTIONS(1531), 27, sym_identifier, aux_sym__block_terminator_token1, aux_sym_input_expression_token1, @@ -92147,19 +92916,108 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [54018] = 5, + [54067] = 15, + ACTIONS(59), 1, + anon_sym_SLASH_SLASH, + ACTIONS(61), 1, + anon_sym_SLASH_STAR, + ACTIONS(65), 1, + anon_sym_LBRACE, + ACTIONS(227), 1, + anon_sym_SLASH, + ACTIONS(229), 1, + anon_sym_STAR, + STATE(401), 1, + sym__logical_operator, + STATE(447), 1, + sym__comparison_operator, + STATE(507), 1, + sym__additive_operator, + STATE(516), 1, + sym__multiplicative_operator, + ACTIONS(233), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(235), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(239), 2, + sym__or_operator, + sym__and_operator, + ACTIONS(1932), 2, + sym__terminator, + aux_sym_output_stream_statement_token1, + STATE(1032), 2, + sym_comment, + sym_include, + ACTIONS(237), 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, + [54130] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(1025), 2, + ACTIONS(1408), 1, + anon_sym_LPAREN, + ACTIONS(67), 2, + sym__or_operator, + sym__and_operator, + STATE(1033), 2, sym_comment, sym_include, - ACTIONS(1899), 27, + 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, + [54177] = 6, + 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(1034), 2, + sym_comment, + sym_include, + 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, @@ -92185,20 +93043,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [54061] = 6, + [54222] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(1939), 1, - ts_builtin_sym_end, - STATE(1026), 2, + STATE(1035), 2, sym_comment, sym_include, - ACTIONS(1795), 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, @@ -92224,17 +93081,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [54106] = 5, + [54265] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(1027), 2, + STATE(1036), 2, sym_comment, sym_include, - ACTIONS(1895), 27, + ACTIONS(1896), 27, sym_identifier, aux_sym__block_terminator_token1, aux_sym_input_expression_token1, @@ -92262,17 +93119,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [54149] = 5, + [54308] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(1028), 2, + STATE(1037), 2, sym_comment, sym_include, - ACTIONS(1590), 27, + ACTIONS(1884), 27, sym_identifier, aux_sym__block_terminator_token1, aux_sym_input_expression_token1, @@ -92300,20 +93157,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [54192] = 6, + [54351] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(1941), 1, - ts_builtin_sym_end, - STATE(1029), 2, + STATE(1038), 2, sym_comment, sym_include, - ACTIONS(1933), 26, + ACTIONS(1880), 27, sym_identifier, + aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, aux_sym_variable_definition_token1, @@ -92339,17 +93195,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [54237] = 5, + [54394] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(1030), 2, + STATE(1039), 2, sym_comment, sym_include, - ACTIONS(1559), 27, + ACTIONS(1876), 27, sym_identifier, aux_sym__block_terminator_token1, aux_sym_input_expression_token1, @@ -92377,17 +93233,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [54280] = 5, + [54437] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(1031), 2, + STATE(1040), 2, sym_comment, sym_include, - ACTIONS(1742), 27, + ACTIONS(1523), 27, sym_identifier, aux_sym__block_terminator_token1, aux_sym_input_expression_token1, @@ -92415,20 +93271,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [54323] = 6, + [54480] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(1943), 1, - ts_builtin_sym_end, - STATE(1032), 2, + STATE(1041), 2, sym_comment, sym_include, - ACTIONS(1931), 26, + ACTIONS(1866), 27, sym_identifier, + aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, aux_sym_variable_definition_token1, @@ -92454,20 +93309,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [54368] = 6, + [54523] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(1945), 1, - ts_builtin_sym_end, - STATE(1033), 2, + STATE(1042), 2, sym_comment, sym_include, - ACTIONS(1929), 26, + ACTIONS(1862), 27, sym_identifier, + aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, aux_sym_variable_definition_token1, @@ -92493,20 +93347,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [54413] = 6, + [54566] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(1947), 1, - ts_builtin_sym_end, - STATE(1034), 2, + STATE(1043), 2, sym_comment, sym_include, - ACTIONS(1919), 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, @@ -92532,20 +93385,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [54458] = 6, + [54609] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(1949), 1, - ts_builtin_sym_end, - STATE(1035), 2, + STATE(1044), 2, sym_comment, sym_include, - ACTIONS(1917), 26, + ACTIONS(1852), 27, sym_identifier, + aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, aux_sym_variable_definition_token1, @@ -92571,17 +93423,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [54503] = 5, + [54652] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(1036), 2, + STATE(1045), 2, sym_comment, sym_include, - ACTIONS(1879), 27, + ACTIONS(1848), 27, sym_identifier, aux_sym__block_terminator_token1, aux_sym_input_expression_token1, @@ -92609,19 +93461,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [54546] = 5, + [54695] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(1037), 2, + ACTIONS(1938), 1, + ts_builtin_sym_end, + STATE(1046), 2, sym_comment, sym_include, - ACTIONS(1867), 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, @@ -92647,19 +93500,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [54589] = 5, + [54740] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(1038), 2, + ACTIONS(1942), 1, + ts_builtin_sym_end, + STATE(1047), 2, sym_comment, sym_include, - ACTIONS(1861), 27, + ACTIONS(1537), 26, sym_identifier, - aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, aux_sym_variable_definition_token1, @@ -92685,19 +93539,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [54632] = 6, + [54785] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(1951), 1, + ACTIONS(1944), 1, ts_builtin_sym_end, - STATE(1039), 2, + STATE(1048), 2, sym_comment, sym_include, - ACTIONS(1911), 26, + ACTIONS(1581), 26, sym_identifier, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, @@ -92724,20 +93578,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [54677] = 6, + [54830] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(1953), 1, - ts_builtin_sym_end, - STATE(1040), 2, + STATE(1049), 2, sym_comment, sym_include, - ACTIONS(1909), 26, + ACTIONS(1519), 27, sym_identifier, + aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, aux_sym_variable_definition_token1, @@ -92763,59 +93616,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [54722] = 7, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - ACTIONS(7), 1, - anon_sym_LBRACE, - ACTIONS(1955), 1, - anon_sym_NO_DASHERROR, - ACTIONS(207), 2, - sym__or_operator, - sym__and_operator, - STATE(1041), 2, - sym_comment, - sym_include, - ACTIONS(205), 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, - [54769] = 5, + [54873] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(1042), 2, + ACTIONS(1946), 1, + ts_builtin_sym_end, + STATE(1050), 2, sym_comment, sym_include, - ACTIONS(1857), 27, + ACTIONS(1737), 26, sym_identifier, - aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, aux_sym_variable_definition_token1, @@ -92841,19 +93655,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [54812] = 5, + [54918] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(1043), 2, + ACTIONS(1948), 1, + ts_builtin_sym_end, + STATE(1051), 2, sym_comment, sym_include, - ACTIONS(1851), 27, + ACTIONS(1587), 26, sym_identifier, - aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, aux_sym_variable_definition_token1, @@ -92879,20 +93694,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [54855] = 6, + [54963] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(1957), 1, - ts_builtin_sym_end, - STATE(1044), 2, + STATE(1052), 2, sym_comment, sym_include, - ACTIONS(1887), 26, + ACTIONS(1611), 27, sym_identifier, + aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, aux_sym_variable_definition_token1, @@ -92918,19 +93732,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [54900] = 6, + [55006] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(1959), 1, + ACTIONS(1950), 1, ts_builtin_sym_end, - STATE(1045), 2, + STATE(1053), 2, sym_comment, sym_include, - ACTIONS(1883), 26, + ACTIONS(1902), 26, sym_identifier, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, @@ -92957,57 +93771,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [54945] = 5, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - STATE(1046), 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, - [54988] = 6, + [55051] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(1961), 1, + ACTIONS(1952), 1, ts_builtin_sym_end, - STATE(1047), 2, + STATE(1054), 2, sym_comment, sym_include, - ACTIONS(1853), 26, + ACTIONS(1900), 26, sym_identifier, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, @@ -93034,17 +93810,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [55033] = 5, + [55096] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(1048), 2, + STATE(1055), 2, sym_comment, sym_include, - ACTIONS(1845), 27, + ACTIONS(1954), 27, sym_identifier, aux_sym__block_terminator_token1, aux_sym_input_expression_token1, @@ -93072,19 +93848,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [55076] = 5, + [55139] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(1049), 2, + ACTIONS(1956), 1, + ts_builtin_sym_end, + STATE(1056), 2, sym_comment, sym_include, - ACTIONS(1835), 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, @@ -93110,17 +93887,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [55119] = 5, + [55184] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(1050), 2, + STATE(1057), 2, sym_comment, sym_include, - ACTIONS(1821), 27, + ACTIONS(1958), 27, sym_identifier, aux_sym__block_terminator_token1, aux_sym_input_expression_token1, @@ -93148,17 +93925,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [55162] = 5, + [55227] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(1051), 2, + STATE(1058), 2, sym_comment, sym_include, - ACTIONS(1811), 27, + ACTIONS(1960), 27, sym_identifier, aux_sym__block_terminator_token1, aux_sym_input_expression_token1, @@ -93186,19 +93963,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [55205] = 6, + [55270] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(1963), 1, + ACTIONS(1962), 1, ts_builtin_sym_end, - STATE(1052), 2, + STATE(1059), 2, sym_comment, sym_include, - ACTIONS(1847), 26, + ACTIONS(1589), 26, sym_identifier, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, @@ -93225,17 +94002,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [55250] = 5, + [55315] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(1053), 2, + STATE(1060), 2, sym_comment, sym_include, - ACTIONS(1807), 27, + ACTIONS(1964), 27, sym_identifier, aux_sym__block_terminator_token1, aux_sym_input_expression_token1, @@ -93263,19 +94040,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [55293] = 5, + [55358] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(1054), 2, + ACTIONS(1966), 1, + ts_builtin_sym_end, + STATE(1061), 2, sym_comment, sym_include, - ACTIONS(1803), 27, + ACTIONS(1954), 26, sym_identifier, - aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, aux_sym_variable_definition_token1, @@ -93301,20 +94079,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [55336] = 6, + [55403] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(1965), 1, - ts_builtin_sym_end, - STATE(1055), 2, + STATE(1062), 2, sym_comment, sym_include, - ACTIONS(1841), 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, @@ -93340,59 +94117,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [55381] = 6, + [55446] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(1056), 2, - sym_comment, - sym_include, - ACTIONS(104), 3, - sym__namedot, - sym__or_operator, - sym__and_operator, - ACTIONS(102), 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, - [55426] = 6, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - ACTIONS(7), 1, - anon_sym_LBRACE, - ACTIONS(1967), 1, - ts_builtin_sym_end, - STATE(1057), 2, + STATE(1063), 2, sym_comment, sym_include, - ACTIONS(1839), 26, + ACTIONS(1970), 27, sym_identifier, + aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, aux_sym_variable_definition_token1, @@ -93418,19 +94155,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [55471] = 6, + [55489] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(1969), 1, + ACTIONS(1972), 1, ts_builtin_sym_end, - STATE(1058), 2, + STATE(1064), 2, sym_comment, sym_include, - ACTIONS(1634), 26, + ACTIONS(1888), 26, sym_identifier, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, @@ -93457,19 +94194,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [55516] = 6, + [55534] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(1971), 1, + ACTIONS(1974), 1, ts_builtin_sym_end, - STATE(1059), 2, + STATE(1065), 2, sym_comment, sym_include, - ACTIONS(1837), 26, + ACTIONS(1886), 26, sym_identifier, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, @@ -93496,20 +94233,75 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [55561] = 6, + [55579] = 23, + 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_variable_tuning_token6, + ACTIONS(1370), 1, + aux_sym_buffer_definition_token3, + ACTIONS(1374), 1, + aux_sym_function_parameter_token1, + ACTIONS(1378), 1, + aux_sym_property_tuning_token1, + ACTIONS(1380), 1, + aux_sym_property_definition_token1, + ACTIONS(1382), 1, + aux_sym_event_definition_token1, + STATE(1610), 1, + sym_access_tuning, + STATE(1885), 1, + sym_property_tuning, + STATE(1938), 1, + aux_sym_variable_definition_repeat1, + STATE(1961), 1, + sym_serialization_tuning, + STATE(1991), 1, + sym_scope_tuning, + STATE(2399), 1, + aux_sym_property_definition_repeat1, + STATE(2512), 1, + aux_sym_property_definition_repeat2, + STATE(2840), 1, + sym_property_type, + ACTIONS(1354), 2, + aux_sym_variable_tuning_token1, + aux_sym_variable_tuning_token5, + ACTIONS(1362), 2, + aux_sym_serialization_tuning_token1, + aux_sym_serialization_tuning_token2, + ACTIONS(1376), 2, + aux_sym_property_type_token1, + aux_sym_property_type_token2, + STATE(1066), 2, + sym_comment, + sym_include, + ACTIONS(1360), 3, + aux_sym_access_tuning_token1, + aux_sym_access_tuning_token2, + aux_sym_access_tuning_token3, + ACTIONS(1358), 4, + aux_sym_scope_tuning_token1, + aux_sym_scope_tuning_token2, + aux_sym_scope_tuning_token3, + aux_sym_scope_tuning_token4, + [55658] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(1973), 1, - ts_builtin_sym_end, - STATE(1060), 2, + STATE(1067), 2, sym_comment, sym_include, - ACTIONS(1831), 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, @@ -93535,17 +94327,57 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [55606] = 5, + [55701] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(1061), 2, + ACTIONS(1978), 1, + anon_sym_NO_DASHERROR, + ACTIONS(529), 2, + sym__or_operator, + sym__and_operator, + STATE(1068), 2, + sym_comment, + sym_include, + ACTIONS(527), 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, + [55748] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_LBRACE, + STATE(1069), 2, sym_comment, sym_include, - ACTIONS(1799), 27, + ACTIONS(1936), 27, sym_identifier, aux_sym__block_terminator_token1, aux_sym_input_expression_token1, @@ -93573,20 +94405,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [55649] = 6, + [55791] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(1975), 1, - ts_builtin_sym_end, - STATE(1062), 2, + STATE(1070), 2, sym_comment, sym_include, - ACTIONS(1829), 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, @@ -93612,20 +94443,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [55694] = 6, + [55834] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(1977), 1, - ts_builtin_sym_end, - STATE(1063), 2, + STATE(1071), 2, sym_comment, sym_include, - ACTIONS(1827), 26, + ACTIONS(1906), 27, sym_identifier, + aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, aux_sym_variable_definition_token1, @@ -93651,17 +94481,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [55739] = 5, + [55877] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(1064), 2, + STATE(1072), 2, sym_comment, sym_include, - ACTIONS(1702), 27, + ACTIONS(1892), 27, sym_identifier, aux_sym__block_terminator_token1, aux_sym_input_expression_token1, @@ -93689,20 +94519,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [55782] = 6, + [55920] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(1979), 1, - ts_builtin_sym_end, - STATE(1065), 2, + STATE(1073), 2, sym_comment, sym_include, - ACTIONS(1825), 26, + ACTIONS(1838), 27, sym_identifier, + aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, aux_sym_variable_definition_token1, @@ -93728,20 +94557,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [55827] = 6, + [55963] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(1981), 1, - ts_builtin_sym_end, - STATE(1066), 2, + STATE(1074), 2, sym_comment, sym_include, - ACTIONS(1823), 26, + ACTIONS(1814), 27, sym_identifier, + aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, aux_sym_variable_definition_token1, @@ -93767,20 +94595,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [55872] = 6, + [56006] = 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(1067), 2, + STATE(1075), 2, sym_comment, sym_include, - ACTIONS(1817), 26, + ACTIONS(1810), 27, sym_identifier, + aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, aux_sym_variable_definition_token1, @@ -93806,19 +94633,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [55917] = 6, + [56049] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(1985), 1, + ACTIONS(1980), 1, ts_builtin_sym_end, - STATE(1068), 2, + STATE(1076), 2, sym_comment, sym_include, - ACTIONS(1815), 26, + ACTIONS(1731), 26, sym_identifier, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, @@ -93845,20 +94672,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [55962] = 6, + [56094] = 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(1069), 2, + STATE(1077), 2, sym_comment, sym_include, - ACTIONS(1813), 26, + ACTIONS(1806), 27, sym_identifier, + aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, aux_sym_variable_definition_token1, @@ -93884,60 +94710,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [56007] = 7, + [56137] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(1989), 1, - aux_sym_function_call_token1, - ACTIONS(215), 2, - sym__or_operator, - sym__and_operator, - STATE(1070), 2, - sym_comment, - sym_include, - ACTIONS(213), 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, - [56054] = 6, - 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(1071), 2, + STATE(1078), 2, sym_comment, sym_include, - ACTIONS(1790), 26, + ACTIONS(1802), 27, sym_identifier, + aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, aux_sym_variable_definition_token1, @@ -93963,20 +94748,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [56099] = 6, + [56180] = 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(1072), 2, + STATE(1079), 2, sym_comment, sym_include, - ACTIONS(1788), 26, + ACTIONS(1798), 27, sym_identifier, + aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, aux_sym_variable_definition_token1, @@ -94002,19 +94786,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [56144] = 6, + [56223] = 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(1982), 1, ts_builtin_sym_end, - STATE(1073), 2, + STATE(1080), 2, sym_comment, sym_include, - ACTIONS(1760), 26, + ACTIONS(1872), 26, sym_identifier, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, @@ -94041,19 +94825,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [56189] = 6, + [56268] = 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(1984), 1, ts_builtin_sym_end, - STATE(1074), 2, + STATE(1081), 2, sym_comment, sym_include, - ACTIONS(1758), 26, + ACTIONS(1964), 26, sym_identifier, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, @@ -94080,19 +94864,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [56234] = 5, + [56313] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(1075), 2, + ACTIONS(1986), 1, + ts_builtin_sym_end, + STATE(1082), 2, sym_comment, sym_include, - ACTIONS(1784), 27, + ACTIONS(1729), 26, sym_identifier, - aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, aux_sym_variable_definition_token1, @@ -94118,17 +94903,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [56277] = 5, + [56358] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(1076), 2, + STATE(1083), 2, sym_comment, sym_include, - ACTIONS(1756), 27, + ACTIONS(1820), 27, sym_identifier, aux_sym__block_terminator_token1, aux_sym_input_expression_token1, @@ -94156,19 +94941,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [56320] = 5, + [56401] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(1077), 2, + ACTIONS(1988), 1, + ts_builtin_sym_end, + STATE(1084), 2, sym_comment, sym_include, - ACTIONS(1752), 27, + ACTIONS(1868), 26, sym_identifier, - aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, aux_sym_variable_definition_token1, @@ -94194,19 +94980,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [56363] = 5, + [56446] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(1078), 2, + ACTIONS(1990), 1, + ts_builtin_sym_end, + STATE(1085), 2, sym_comment, sym_include, - ACTIONS(1748), 27, + ACTIONS(1976), 26, sym_identifier, - aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, aux_sym_variable_definition_token1, @@ -94232,19 +95019,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [56406] = 5, + [56491] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(1079), 2, + ACTIONS(1992), 1, + ts_builtin_sym_end, + STATE(1086), 2, sym_comment, sym_include, - ACTIONS(1732), 27, + ACTIONS(1727), 26, sym_identifier, - aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, aux_sym_variable_definition_token1, @@ -94270,17 +95058,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [56449] = 5, + [56536] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(1080), 2, + STATE(1087), 2, sym_comment, sym_include, - ACTIONS(1726), 27, + ACTIONS(1597), 27, sym_identifier, aux_sym__block_terminator_token1, aux_sym_input_expression_token1, @@ -94308,20 +95096,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [56492] = 6, + [56579] = 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(1081), 2, + STATE(1088), 2, sym_comment, sym_include, - ACTIONS(1744), 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, @@ -94347,20 +95134,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [56537] = 6, + [56622] = 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(1082), 2, + STATE(1089), 2, sym_comment, sym_include, - ACTIONS(1885), 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, @@ -94386,19 +95172,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [56582] = 5, + [56665] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(1083), 2, + ACTIONS(1994), 1, + ts_builtin_sym_end, + STATE(1090), 2, sym_comment, sym_include, - ACTIONS(1720), 27, + ACTIONS(1858), 26, sym_identifier, - aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, aux_sym_variable_definition_token1, @@ -94424,17 +95211,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [56625] = 5, + [56710] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(1084), 2, + STATE(1091), 2, sym_comment, sym_include, - ACTIONS(1716), 27, + ACTIONS(1996), 27, sym_identifier, aux_sym__block_terminator_token1, aux_sym_input_expression_token1, @@ -94462,17 +95249,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [56668] = 5, + [56753] = 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(1092), 2, sym_comment, sym_include, - ACTIONS(1690), 27, + ACTIONS(1998), 27, sym_identifier, aux_sym__block_terminator_token1, aux_sym_input_expression_token1, @@ -94500,20 +95287,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [56711] = 6, + [56796] = 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(1086), 2, + STATE(1093), 2, sym_comment, sym_include, - ACTIONS(1738), 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, @@ -94539,17 +95325,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [56756] = 5, + [56839] = 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(1094), 2, sym_comment, sym_include, - ACTIONS(1686), 27, + ACTIONS(2002), 27, sym_identifier, aux_sym__block_terminator_token1, aux_sym_input_expression_token1, @@ -94577,20 +95363,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [56799] = 6, + [56882] = 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(1088), 2, + STATE(1095), 2, sym_comment, sym_include, - ACTIONS(1736), 26, + ACTIONS(2004), 27, sym_identifier, + aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, aux_sym_variable_definition_token1, @@ -94616,20 +95401,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [56844] = 6, + [56925] = 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(1089), 2, + STATE(1096), 2, sym_comment, sym_include, - ACTIONS(1734), 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, @@ -94655,20 +95439,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [56889] = 6, + [56968] = 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(1090), 2, + STATE(1097), 2, sym_comment, sym_include, - ACTIONS(1728), 26, + ACTIONS(2008), 27, sym_identifier, + aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, aux_sym_variable_definition_token1, @@ -94694,20 +95477,59 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [56934] = 6, + [57011] = 7, 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(1091), 2, + ACTIONS(1408), 1, + anon_sym_LPAREN, + ACTIONS(77), 2, + sym__or_operator, + sym__and_operator, + STATE(1098), 2, sym_comment, sym_include, - ACTIONS(1722), 26, + ACTIONS(75), 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, + [57058] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_LBRACE, + STATE(1099), 2, + sym_comment, + sym_include, + 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, @@ -94733,19 +95555,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [56979] = 6, + [57101] = 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(2012), 1, ts_builtin_sym_end, - STATE(1092), 2, + STATE(1100), 2, sym_comment, sym_include, - ACTIONS(1712), 26, + ACTIONS(2010), 26, sym_identifier, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, @@ -94772,19 +95594,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [57024] = 6, + [57146] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(2015), 1, + ACTIONS(2014), 1, ts_builtin_sym_end, - STATE(1093), 2, + STATE(1101), 2, sym_comment, sym_include, - ACTIONS(1572), 26, + ACTIONS(1725), 26, sym_identifier, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, @@ -94811,19 +95633,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [57069] = 6, + [57191] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(2017), 1, + ACTIONS(2016), 1, ts_builtin_sym_end, - STATE(1094), 2, + STATE(1102), 2, sym_comment, sym_include, - ACTIONS(1692), 26, + ACTIONS(1723), 26, sym_identifier, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, @@ -94850,19 +95672,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [57114] = 6, + [57236] = 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(2018), 1, ts_builtin_sym_end, - STATE(1095), 2, + STATE(1103), 2, sym_comment, sym_include, - ACTIONS(1678), 26, + ACTIONS(1958), 26, sym_identifier, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, @@ -94889,19 +95711,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [57159] = 6, + [57281] = 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(2020), 1, ts_builtin_sym_end, - STATE(1096), 2, + STATE(1104), 2, sym_comment, sym_include, - ACTIONS(1676), 26, + ACTIONS(1721), 26, sym_identifier, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, @@ -94928,19 +95750,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [57204] = 5, + [57326] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(1097), 2, + ACTIONS(2022), 1, + ts_builtin_sym_end, + STATE(1105), 2, sym_comment, sym_include, - ACTIONS(1710), 27, + 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, @@ -94966,19 +95789,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [57247] = 5, + [57371] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(1098), 2, + ACTIONS(2024), 1, + ts_builtin_sym_end, + STATE(1106), 2, sym_comment, sym_include, - ACTIONS(1768), 27, + ACTIONS(1717), 26, sym_identifier, - aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, aux_sym_variable_definition_token1, @@ -95004,19 +95828,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [57290] = 6, + [57416] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(2023), 1, + ACTIONS(2026), 1, ts_builtin_sym_end, - STATE(1099), 2, + STATE(1107), 2, sym_comment, sym_include, - ACTIONS(1674), 26, + ACTIONS(1715), 26, sym_identifier, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, @@ -95043,19 +95867,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [57335] = 6, + [57461] = 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(2028), 1, ts_builtin_sym_end, - STATE(1100), 2, + STATE(1108), 2, sym_comment, sym_include, - ACTIONS(1672), 26, + ACTIONS(1739), 26, sym_identifier, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, @@ -95082,20 +95906,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [57380] = 6, + [57506] = 5, 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(1101), 2, + STATE(1109), 2, sym_comment, sym_include, - ACTIONS(1668), 26, + ACTIONS(1755), 27, sym_identifier, + aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, aux_sym_variable_definition_token1, @@ -95121,19 +95944,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [57425] = 6, + [57549] = 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(2030), 1, ts_builtin_sym_end, - STATE(1102), 2, + STATE(1110), 2, sym_comment, sym_include, - ACTIONS(1664), 26, + ACTIONS(1653), 26, sym_identifier, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, @@ -95160,19 +95983,58 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [57470] = 6, + [57594] = 6, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_LBRACE, + STATE(1111), 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, + [57639] = 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(2032), 1, ts_builtin_sym_end, - STATE(1103), 2, + STATE(1112), 2, sym_comment, sym_include, - ACTIONS(1652), 26, + ACTIONS(1713), 26, sym_identifier, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, @@ -95199,19 +96061,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [57515] = 6, + [57684] = 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(2034), 1, ts_builtin_sym_end, - STATE(1104), 2, + STATE(1113), 2, sym_comment, sym_include, - ACTIONS(1650), 26, + ACTIONS(1711), 26, sym_identifier, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, @@ -95238,19 +96100,59 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [57560] = 6, + [57729] = 7, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(1437), 1, + sym__namedot, + STATE(933), 1, + aux_sym_qualified_name_repeat1, + ACTIONS(85), 2, + sym__or_operator, + sym__and_operator, + STATE(1114), 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, + [57776] = 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(2036), 1, ts_builtin_sym_end, - STATE(1105), 2, + STATE(1115), 2, sym_comment, sym_include, - ACTIONS(1523), 26, + ACTIONS(2008), 26, sym_identifier, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, @@ -95277,19 +96179,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [57605] = 6, + [57821] = 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(2038), 1, ts_builtin_sym_end, - STATE(1106), 2, + STATE(1116), 2, sym_comment, sym_include, - ACTIONS(1648), 26, + ACTIONS(1970), 26, sym_identifier, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, @@ -95316,19 +96218,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [57650] = 6, + [57866] = 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(2040), 1, ts_builtin_sym_end, - STATE(1107), 2, + STATE(1117), 2, sym_comment, sym_include, - ACTIONS(1646), 26, + ACTIONS(1960), 26, sym_identifier, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, @@ -95355,19 +96257,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [57695] = 6, + [57911] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(2041), 1, + ACTIONS(2042), 1, ts_builtin_sym_end, - STATE(1108), 2, + STATE(1118), 2, sym_comment, sym_include, - ACTIONS(1644), 26, + ACTIONS(2006), 26, sym_identifier, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, @@ -95394,19 +96296,59 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [57740] = 6, + [57956] = 7, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(1437), 1, + sym__namedot, + STATE(933), 1, + aux_sym_qualified_name_repeat1, + ACTIONS(89), 2, + sym__or_operator, + sym__and_operator, + STATE(1119), 2, + sym_comment, + sym_include, + ACTIONS(87), 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, + [58003] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(2043), 1, + ACTIONS(2044), 1, ts_builtin_sym_end, - STATE(1109), 2, + STATE(1120), 2, sym_comment, sym_include, - ACTIONS(1622), 26, + ACTIONS(1996), 26, sym_identifier, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, @@ -95433,19 +96375,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [57785] = 6, + [58048] = 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(2046), 1, ts_builtin_sym_end, - STATE(1110), 2, + STATE(1121), 2, sym_comment, sym_include, - ACTIONS(1620), 26, + ACTIONS(1701), 26, sym_identifier, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, @@ -95472,19 +96414,59 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [57830] = 6, + [58093] = 7, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_LBRACE, + ACTIONS(2048), 1, + sym__namecolon, + ACTIONS(93), 2, + sym__or_operator, + sym__and_operator, + STATE(1122), 3, + sym_comment, + sym_include, + aux_sym_object_access_repeat1, + ACTIONS(91), 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, + [58140] = 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(2051), 1, ts_builtin_sym_end, - STATE(1111), 2, + STATE(1123), 2, sym_comment, sym_include, - ACTIONS(1616), 26, + ACTIONS(2004), 26, sym_identifier, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, @@ -95511,17 +96493,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [57875] = 5, + [58185] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(1112), 2, + STATE(1124), 2, sym_comment, sym_include, - ACTIONS(1660), 27, + ACTIONS(1657), 27, sym_identifier, aux_sym__block_terminator_token1, aux_sym_input_expression_token1, @@ -95549,19 +96531,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [57918] = 5, + [58228] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(1113), 2, + ACTIONS(2053), 1, + ts_builtin_sym_end, + STATE(1125), 2, sym_comment, sym_include, - ACTIONS(1638), 27, + ACTIONS(1639), 26, sym_identifier, - aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, aux_sym_variable_definition_token1, @@ -95587,19 +96570,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [57961] = 5, + [58273] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(1114), 2, + ACTIONS(2055), 1, + ts_builtin_sym_end, + STATE(1126), 2, sym_comment, sym_include, - ACTIONS(1630), 27, + ACTIONS(2002), 26, sym_identifier, - aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, aux_sym_variable_definition_token1, @@ -95625,19 +96609,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [58004] = 5, + [58318] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(1115), 2, + ACTIONS(2057), 1, + ts_builtin_sym_end, + STATE(1127), 2, sym_comment, sym_include, - ACTIONS(1626), 27, + ACTIONS(1641), 26, sym_identifier, - aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, aux_sym_variable_definition_token1, @@ -95663,19 +96648,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [58047] = 5, + [58363] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(1116), 2, + ACTIONS(2059), 1, + ts_builtin_sym_end, + STATE(1128), 2, sym_comment, sym_include, - ACTIONS(1706), 27, + 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, @@ -95701,19 +96687,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [58090] = 6, + [58408] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(2049), 1, + ACTIONS(2061), 1, ts_builtin_sym_end, - STATE(1117), 2, + STATE(1129), 2, sym_comment, sym_include, - ACTIONS(1600), 26, + ACTIONS(2000), 26, sym_identifier, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, @@ -95740,19 +96726,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [58135] = 5, + [58453] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(1118), 2, + ACTIONS(2063), 1, + ts_builtin_sym_end, + STATE(1130), 2, sym_comment, sym_include, - ACTIONS(1586), 27, + ACTIONS(1998), 26, sym_identifier, - aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, aux_sym_variable_definition_token1, @@ -95778,19 +96765,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [58178] = 6, + [58498] = 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(2065), 1, ts_builtin_sym_end, - STATE(1119), 2, + STATE(1131), 2, sym_comment, sym_include, - ACTIONS(1604), 26, + ACTIONS(1643), 26, sym_identifier, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, @@ -95817,19 +96804,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [58223] = 6, + [58543] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(2053), 1, + ACTIONS(2067), 1, ts_builtin_sym_end, - STATE(1120), 2, + STATE(1132), 2, sym_comment, sym_include, - ACTIONS(1576), 26, + ACTIONS(1645), 26, sym_identifier, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, @@ -95856,19 +96843,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [58268] = 6, + [58588] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(2055), 1, + ACTIONS(2069), 1, ts_builtin_sym_end, - STATE(1121), 2, + STATE(1133), 2, sym_comment, sym_include, - ACTIONS(1606), 26, + ACTIONS(1968), 26, sym_identifier, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, @@ -95895,19 +96882,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [58313] = 6, + [58633] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(2057), 1, + ACTIONS(2071), 1, ts_builtin_sym_end, - STATE(1122), 2, + STATE(1134), 2, sym_comment, sym_include, - ACTIONS(1614), 26, + ACTIONS(1661), 26, sym_identifier, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, @@ -95934,19 +96921,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [58358] = 6, + [58678] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(2059), 1, + ACTIONS(2073), 1, ts_builtin_sym_end, - STATE(1123), 2, + STATE(1135), 2, sym_comment, sym_include, - ACTIONS(1578), 26, + ACTIONS(1659), 26, sym_identifier, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, @@ -95973,19 +96960,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [58403] = 6, + [58723] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(2061), 1, + ACTIONS(2075), 1, ts_builtin_sym_end, - STATE(1124), 2, + STATE(1136), 2, sym_comment, sym_include, - ACTIONS(1580), 26, + ACTIONS(1647), 26, sym_identifier, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, @@ -96012,19 +96999,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [58448] = 6, + [58768] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(2063), 1, + ACTIONS(2077), 1, ts_builtin_sym_end, - STATE(1125), 2, + STATE(1137), 2, sym_comment, sym_include, - ACTIONS(1582), 26, + ACTIONS(1651), 26, sym_identifier, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, @@ -96051,20 +97038,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [58493] = 6, + [58813] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(2065), 1, - ts_builtin_sym_end, - STATE(1126), 2, + STATE(1138), 2, sym_comment, sym_include, - ACTIONS(1612), 26, + ACTIONS(1705), 27, sym_identifier, + aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, aux_sym_variable_definition_token1, @@ -96090,19 +97076,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [58538] = 6, + [58856] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(2067), 1, + ACTIONS(2079), 1, ts_builtin_sym_end, - STATE(1127), 2, + STATE(1139), 2, sym_comment, sym_include, - ACTIONS(1592), 26, + ACTIONS(1649), 26, sym_identifier, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, @@ -96129,33 +97115,43 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [58583] = 7, - ACTIONS(3), 1, + [58901] = 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(2069), 1, - aux_sym_function_call_token1, - ACTIONS(133), 2, - sym__or_operator, - sym__and_operator, - STATE(1128), 2, - sym_comment, - sym_include, - ACTIONS(131), 24, + ACTIONS(227), 1, anon_sym_SLASH, - sym_identifier, + ACTIONS(229), 1, anon_sym_STAR, - aux_sym_input_expression_token2, + ACTIONS(2081), 1, + anon_sym_RPAREN, + STATE(401), 1, + sym__logical_operator, + STATE(447), 1, + sym__comparison_operator, + STATE(507), 1, + sym__additive_operator, + STATE(516), 1, + sym__multiplicative_operator, + ACTIONS(233), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(235), 2, anon_sym_LT, + anon_sym_GT, + ACTIONS(239), 2, + sym__or_operator, + sym__and_operator, + STATE(1140), 2, + sym_comment, + sym_include, + ACTIONS(237), 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, @@ -96166,23 +97162,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, + [58963] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_LBRACE, + STATE(1141), 2, + sym_comment, + sym_include, + 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, + 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, - [58630] = 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, + [59005] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(2071), 1, - ts_builtin_sym_end, - STATE(1129), 2, + STATE(1142), 2, sym_comment, sym_include, - ACTIONS(1594), 26, + 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, @@ -96190,7 +97219,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, @@ -96208,20 +97236,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [58675] = 6, + [59047] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(2073), 1, - ts_builtin_sym_end, - STATE(1130), 2, + STATE(1143), 2, sym_comment, sym_include, - ACTIONS(1596), 26, + ACTIONS(2083), 26, sym_identifier, + aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, aux_sym_variable_definition_token1, @@ -96229,7 +97256,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, @@ -96247,20 +97273,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [58720] = 6, + [59089] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(2075), 1, - ts_builtin_sym_end, - STATE(1131), 2, + STATE(1144), 2, sym_comment, sym_include, - ACTIONS(1598), 26, + 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, @@ -96268,7 +97293,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, @@ -96286,17 +97310,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [58765] = 5, + [59131] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(1132), 2, + STATE(1145), 2, sym_comment, sym_include, - ACTIONS(1891), 27, + ACTIONS(1617), 26, sym_identifier, aux_sym__block_terminator_token1, aux_sym_input_expression_token1, @@ -96306,7 +97330,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, @@ -96324,20 +97347,151 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [58808] = 6, + [59173] = 15, + ACTIONS(59), 1, + anon_sym_SLASH_SLASH, + ACTIONS(61), 1, + anon_sym_SLASH_STAR, + ACTIONS(65), 1, + anon_sym_LBRACE, + ACTIONS(227), 1, + anon_sym_SLASH, + ACTIONS(229), 1, + anon_sym_STAR, + ACTIONS(2085), 1, + aux_sym_if_statement_token2, + STATE(401), 1, + sym__logical_operator, + STATE(447), 1, + sym__comparison_operator, + STATE(507), 1, + sym__additive_operator, + STATE(516), 1, + sym__multiplicative_operator, + ACTIONS(233), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(235), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(239), 2, + sym__or_operator, + sym__and_operator, + STATE(1146), 2, + sym_comment, + sym_include, + ACTIONS(237), 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, + [59235] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(1704), 1, - ts_builtin_sym_end, - STATE(1133), 2, + ACTIONS(221), 2, + sym__or_operator, + sym__and_operator, + STATE(1147), 2, + sym_comment, + sym_include, + ACTIONS(219), 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, + [59279] = 15, + ACTIONS(59), 1, + anon_sym_SLASH_SLASH, + ACTIONS(61), 1, + anon_sym_SLASH_STAR, + ACTIONS(65), 1, + anon_sym_LBRACE, + ACTIONS(227), 1, + anon_sym_SLASH, + ACTIONS(229), 1, + anon_sym_STAR, + ACTIONS(2087), 1, + aux_sym_if_statement_token2, + STATE(401), 1, + sym__logical_operator, + STATE(447), 1, + sym__comparison_operator, + STATE(507), 1, + sym__additive_operator, + STATE(516), 1, + sym__multiplicative_operator, + ACTIONS(233), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(235), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(239), 2, + sym__or_operator, + sym__and_operator, + STATE(1148), 2, + sym_comment, + sym_include, + ACTIONS(237), 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, + [59341] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_LBRACE, + STATE(1149), 2, sym_comment, sym_include, - ACTIONS(1706), 25, + ACTIONS(1665), 26, sym_identifier, + aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, aux_sym_variable_definition_token1, @@ -96362,20 +97516,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [58852] = 6, + [59383] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(1602), 1, - ts_builtin_sym_end, - STATE(1134), 2, + STATE(1150), 2, sym_comment, sym_include, - ACTIONS(1567), 25, + 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, @@ -96400,17 +97553,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [58896] = 5, + [59425] = 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(1151), 2, sym_comment, sym_include, - ACTIONS(1825), 26, + ACTIONS(1673), 26, sym_identifier, aux_sym__block_terminator_token1, aux_sym_input_expression_token1, @@ -96437,20 +97590,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [58938] = 6, + [59467] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(2077), 1, - ts_builtin_sym_end, - STATE(1136), 2, + STATE(1152), 2, sym_comment, sym_include, - ACTIONS(2079), 25, + ACTIONS(1679), 26, sym_identifier, + aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, aux_sym_variable_definition_token1, @@ -96475,17 +97627,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [58982] = 5, + [59509] = 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(1153), 2, sym_comment, sym_include, - ACTIONS(1827), 26, + ACTIONS(1683), 26, sym_identifier, aux_sym__block_terminator_token1, aux_sym_input_expression_token1, @@ -96512,55 +97664,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [59024] = 6, + [59551] = 5, 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(1138), 2, - sym_comment, - sym_include, - ACTIONS(1664), 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, - [59068] = 5, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - ACTIONS(7), 1, - anon_sym_LBRACE, - STATE(1139), 2, + STATE(1154), 2, sym_comment, sym_include, - ACTIONS(1829), 26, + ACTIONS(2089), 26, sym_identifier, aux_sym__block_terminator_token1, aux_sym_input_expression_token1, @@ -96587,19 +97701,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [59110] = 5, + [59593] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(1140), 2, + ACTIONS(1671), 1, + ts_builtin_sym_end, + STATE(1155), 2, sym_comment, sym_include, - ACTIONS(1831), 26, + ACTIONS(1673), 25, sym_identifier, - aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, aux_sym_variable_definition_token1, @@ -96624,57 +97739,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [59152] = 6, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - ACTIONS(1414), 1, - anon_sym_LPAREN, - ACTIONS(67), 2, - sym__or_operator, - sym__and_operator, - STATE(1141), 2, - sym_comment, - sym_include, - ACTIONS(63), 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, - [59196] = 5, + [59637] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(1142), 2, + ACTIONS(1667), 1, + ts_builtin_sym_end, + STATE(1156), 2, sym_comment, sym_include, - ACTIONS(1837), 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, @@ -96699,17 +97777,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [59238] = 5, + [59681] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(1143), 2, + STATE(1157), 2, sym_comment, sym_include, - ACTIONS(1839), 26, + ACTIONS(2091), 26, sym_identifier, aux_sym__block_terminator_token1, aux_sym_input_expression_token1, @@ -96736,56 +97814,67 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [59280] = 5, - ACTIONS(3), 1, + [59723] = 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(1144), 2, + ACTIONS(227), 1, + anon_sym_SLASH, + ACTIONS(229), 1, + anon_sym_STAR, + ACTIONS(2093), 1, + aux_sym_else_if_statement_token1, + STATE(401), 1, + sym__logical_operator, + STATE(447), 1, + sym__comparison_operator, + STATE(507), 1, + sym__additive_operator, + STATE(516), 1, + sym__multiplicative_operator, + ACTIONS(233), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(235), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(239), 2, + sym__or_operator, + sym__and_operator, + STATE(1158), 2, sym_comment, sym_include, - ACTIONS(2081), 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, - [59322] = 5, + ACTIONS(237), 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, + [59785] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(1145), 2, + ACTIONS(1609), 1, + ts_builtin_sym_end, + STATE(1159), 2, sym_comment, sym_include, - ACTIONS(2083), 26, + ACTIONS(1611), 25, sym_identifier, - aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, aux_sym_variable_definition_token1, @@ -96810,57 +97899,57 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [59364] = 6, + [59829] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(1971), 1, - ts_builtin_sym_end, - STATE(1146), 2, + ACTIONS(205), 2, + sym__or_operator, + sym__and_operator, + STATE(1160), 2, sym_comment, sym_include, - ACTIONS(1837), 25, + ACTIONS(203), 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, - [59408] = 6, + aux_sym_widget_field_token1, + [59873] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(1913), 1, + ACTIONS(1822), 1, ts_builtin_sym_end, - STATE(1147), 2, + STATE(1161), 2, sym_comment, sym_include, - ACTIONS(1915), 25, + ACTIONS(1824), 25, sym_identifier, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, @@ -96886,58 +97975,58 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [59452] = 6, + [59917] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(1905), 1, - ts_builtin_sym_end, - STATE(1148), 2, + ACTIONS(209), 2, + sym__or_operator, + sym__and_operator, + STATE(1162), 2, sym_comment, sym_include, - ACTIONS(1907), 25, + ACTIONS(207), 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, - [59496] = 6, + aux_sym_widget_field_token1, + [59961] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(139), 2, + ACTIONS(217), 2, sym__or_operator, sym__and_operator, - STATE(1149), 2, + STATE(1163), 2, sym_comment, sym_include, - ACTIONS(137), 24, + ACTIONS(215), 24, anon_sym_SLASH, sym_identifier, anon_sym_STAR, @@ -96962,57 +98051,114 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, aux_sym_do_block_token1, aux_sym_widget_field_token1, - [59540] = 6, - ACTIONS(3), 1, + [60005] = 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(1901), 1, - ts_builtin_sym_end, - STATE(1150), 2, + ACTIONS(227), 1, + anon_sym_SLASH, + ACTIONS(229), 1, + anon_sym_STAR, + ACTIONS(2095), 1, + sym__terminator, + STATE(401), 1, + sym__logical_operator, + STATE(447), 1, + sym__comparison_operator, + STATE(507), 1, + sym__additive_operator, + STATE(516), 1, + sym__multiplicative_operator, + ACTIONS(233), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(235), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(239), 2, + sym__or_operator, + sym__and_operator, + STATE(1164), 2, sym_comment, sym_include, - ACTIONS(1903), 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, - [59584] = 5, + ACTIONS(237), 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, + [60067] = 15, + ACTIONS(59), 1, + anon_sym_SLASH_SLASH, + ACTIONS(61), 1, + anon_sym_SLASH_STAR, + ACTIONS(65), 1, + anon_sym_LBRACE, + ACTIONS(227), 1, + anon_sym_SLASH, + ACTIONS(229), 1, + anon_sym_STAR, + ACTIONS(2097), 1, + anon_sym_RPAREN, + STATE(401), 1, + sym__logical_operator, + STATE(447), 1, + sym__comparison_operator, + STATE(507), 1, + sym__additive_operator, + STATE(516), 1, + sym__multiplicative_operator, + ACTIONS(233), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(235), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(239), 2, + sym__or_operator, + sym__and_operator, + STATE(1165), 2, + sym_comment, + sym_include, + ACTIONS(237), 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, + [60129] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(1151), 2, + ACTIONS(2099), 1, + ts_builtin_sym_end, + STATE(1166), 2, sym_comment, sym_include, - ACTIONS(1841), 26, + ACTIONS(2101), 25, sym_identifier, - aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, aux_sym_variable_definition_token1, @@ -97037,19 +98183,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [59626] = 6, + [60173] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(1967), 1, + ACTIONS(1844), 1, ts_builtin_sym_end, - STATE(1152), 2, + STATE(1167), 2, sym_comment, sym_include, - ACTIONS(1839), 25, + ACTIONS(1751), 25, sym_identifier, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, @@ -97075,19 +98221,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [59670] = 6, + [60217] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(2085), 1, + ACTIONS(1870), 1, ts_builtin_sym_end, - STATE(1153), 2, + STATE(1168), 2, sym_comment, sym_include, - ACTIONS(2087), 25, + ACTIONS(1745), 25, sym_identifier, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, @@ -97113,19 +98259,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [59714] = 6, + [60261] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(1959), 1, + ACTIONS(2028), 1, ts_builtin_sym_end, - STATE(1154), 2, + STATE(1169), 2, sym_comment, sym_include, - ACTIONS(1883), 25, + ACTIONS(1739), 25, sym_identifier, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, @@ -97151,19 +98297,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [59758] = 5, + [60305] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(1155), 2, + ACTIONS(2103), 1, + ts_builtin_sym_end, + STATE(1170), 2, sym_comment, sym_include, - ACTIONS(1847), 26, + ACTIONS(2105), 25, sym_identifier, - aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, aux_sym_variable_definition_token1, @@ -97188,17 +98335,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [59800] = 5, + [60349] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(1156), 2, + STATE(1171), 2, sym_comment, sym_include, - ACTIONS(1853), 26, + ACTIONS(1709), 26, sym_identifier, aux_sym__block_terminator_token1, aux_sym_input_expression_token1, @@ -97225,19 +98372,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [59842] = 5, + [60391] = 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(1517), 1, + ts_builtin_sym_end, + STATE(1172), 2, sym_comment, sym_include, - ACTIONS(1539), 26, + ACTIONS(1519), 25, sym_identifier, - aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, aux_sym_variable_definition_token1, @@ -97262,7 +98410,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [59884] = 6, + [60435] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, @@ -97272,7 +98420,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(147), 2, sym__or_operator, sym__and_operator, - STATE(1158), 2, + STATE(1173), 2, sym_comment, sym_include, ACTIONS(145), 24, @@ -97300,19 +98448,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, aux_sym_do_block_token1, aux_sym_widget_field_token1, - [59928] = 5, + [60479] = 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(1962), 1, + ts_builtin_sym_end, + STATE(1174), 2, sym_comment, sym_include, - ACTIONS(1541), 26, + ACTIONS(1589), 25, sym_identifier, - aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, aux_sym_variable_definition_token1, @@ -97337,19 +98486,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [59970] = 5, + [60523] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(1160), 2, + ACTIONS(1946), 1, + ts_builtin_sym_end, + STATE(1175), 2, sym_comment, sym_include, - ACTIONS(1574), 26, + ACTIONS(1737), 25, sym_identifier, - aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, aux_sym_variable_definition_token1, @@ -97374,19 +98524,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [60012] = 5, + [60567] = 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(1948), 1, + ts_builtin_sym_end, + STATE(1176), 2, sym_comment, sym_include, - ACTIONS(1551), 26, + ACTIONS(1587), 25, sym_identifier, - aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, aux_sym_variable_definition_token1, @@ -97411,56 +98562,124 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [60054] = 5, - ACTIONS(3), 1, + [60611] = 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(1162), 2, + ACTIONS(227), 1, + anon_sym_SLASH, + ACTIONS(229), 1, + anon_sym_STAR, + ACTIONS(2107), 1, + aux_sym_else_if_statement_token1, + STATE(401), 1, + sym__logical_operator, + STATE(447), 1, + sym__comparison_operator, + STATE(507), 1, + sym__additive_operator, + STATE(516), 1, + sym__multiplicative_operator, + ACTIONS(233), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(235), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(239), 2, + sym__or_operator, + sym__and_operator, + STATE(1177), 2, sym_comment, sym_include, - 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, - 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(237), 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, + [60673] = 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(2109), 1, + anon_sym_COMMA, + ACTIONS(2111), 1, + anon_sym_COLON, + ACTIONS(2113), 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, - [60096] = 6, + ACTIONS(2115), 1, + aux_sym_where_clause_token1, + ACTIONS(2117), 1, + aux_sym_sort_clause_token1, + ACTIONS(2119), 1, + aux_sym_sort_clause_token2, + STATE(336), 1, + aux_sym_qualified_name_repeat1, + STATE(1669), 1, + sym_of, + STATE(1705), 1, + sym__pre_tuning, + STATE(1813), 1, + aux_sym_for_phrase_repeat1, + STATE(1816), 1, + sym_where_clause, + STATE(1962), 1, + sym_query_tuning, + STATE(2114), 1, + aux_sym_for_phrase_repeat2, + STATE(2735), 1, + sym_on_error_phrase, + STATE(2897), 1, + sym_on_quit_phrase, + STATE(2934), 1, + sym_sort_clause, + STATE(3263), 1, + aux_sym_for_statement_repeat1, + STATE(3265), 1, + sym_on_stop_phrase, + STATE(1178), 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, + [60757] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(2089), 1, + ACTIONS(1521), 1, ts_builtin_sym_end, - STATE(1163), 2, + STATE(1179), 2, sym_comment, sym_include, - ACTIONS(2091), 25, + ACTIONS(1523), 25, sym_identifier, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, @@ -97486,20 +98705,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [60140] = 6, + [60801] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(1897), 1, - ts_builtin_sym_end, - STATE(1164), 2, + STATE(1180), 2, sym_comment, sym_include, - ACTIONS(1899), 25, + 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, @@ -97524,19 +98742,67 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [60184] = 5, + [60843] = 15, + ACTIONS(59), 1, + anon_sym_SLASH_SLASH, + ACTIONS(61), 1, + anon_sym_SLASH_STAR, + ACTIONS(65), 1, + anon_sym_LBRACE, + ACTIONS(227), 1, + anon_sym_SLASH, + ACTIONS(229), 1, + anon_sym_STAR, + ACTIONS(2121), 1, + anon_sym_LPAREN, + STATE(401), 1, + sym__logical_operator, + STATE(447), 1, + sym__comparison_operator, + STATE(507), 1, + sym__additive_operator, + STATE(516), 1, + sym__multiplicative_operator, + ACTIONS(233), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(235), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(239), 2, + sym__or_operator, + sym__and_operator, + STATE(1181), 2, + sym_comment, + sym_include, + ACTIONS(237), 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, + [60905] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(1165), 2, + ACTIONS(1525), 1, + ts_builtin_sym_end, + STATE(1182), 2, sym_comment, sym_include, - ACTIONS(1883), 26, + ACTIONS(1527), 25, sym_identifier, - aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, aux_sym_variable_definition_token1, @@ -97561,19 +98827,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [60226] = 5, + [60949] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(1166), 2, + ACTIONS(2065), 1, + ts_builtin_sym_end, + STATE(1183), 2, sym_comment, sym_include, - ACTIONS(1887), 26, + ACTIONS(1643), 25, sym_identifier, - aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, aux_sym_variable_definition_token1, @@ -97598,32 +98865,74 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [60268] = 9, + [60993] = 15, + ACTIONS(59), 1, + anon_sym_SLASH_SLASH, + ACTIONS(61), 1, + anon_sym_SLASH_STAR, + ACTIONS(65), 1, + anon_sym_LBRACE, + ACTIONS(227), 1, + anon_sym_SLASH, + ACTIONS(229), 1, + anon_sym_STAR, + ACTIONS(2123), 1, + anon_sym_RPAREN, + STATE(401), 1, + sym__logical_operator, + STATE(447), 1, + sym__comparison_operator, + STATE(507), 1, + sym__additive_operator, + STATE(516), 1, + sym__multiplicative_operator, + ACTIONS(233), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(235), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(239), 2, + sym__or_operator, + sym__and_operator, + STATE(1184), 2, + sym_comment, + sym_include, + ACTIONS(237), 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, + [61055] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(2089), 1, - ts_builtin_sym_end, - ACTIONS(2093), 1, - aux_sym_buffer_definition_token2, - ACTIONS(2095), 1, - aux_sym_repeat_statement_token1, - ACTIONS(2097), 1, - aux_sym_do_block_token1, - STATE(1167), 2, + STATE(1185), 2, sym_comment, sym_include, - ACTIONS(2091), 22, + ACTIONS(1691), 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, @@ -97631,6 +98940,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, @@ -97639,40 +98949,36 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [60318] = 15, + [61097] = 11, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(283), 1, - anon_sym_SLASH, - ACTIONS(285), 1, - anon_sym_STAR, - ACTIONS(2099), 1, + ACTIONS(71), 1, + sym__namedot, + ACTIONS(73), 1, + sym__namecolon, + ACTIONS(2125), 1, anon_sym_LPAREN, - STATE(347), 1, - sym__multiplicative_operator, - STATE(375), 1, - sym__comparison_operator, - STATE(408), 1, - sym__additive_operator, - STATE(411), 1, - sym__logical_operator, - ACTIONS(289), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(291), 2, + STATE(4), 1, + aux_sym_qualified_name_repeat1, + STATE(9), 1, + aux_sym_object_access_repeat1, + STATE(1186), 2, + sym_comment, + sym_include, + ACTIONS(63), 3, + anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(295), 2, + ACTIONS(67), 18, sym__or_operator, sym__and_operator, - STATE(1168), 2, - sym_comment, - sym_include, - ACTIONS(293), 13, + anon_sym_STAR, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_LT_EQ, anon_sym_LT_GT, anon_sym_EQ, @@ -97686,20 +98992,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - [60380] = 6, + [61151] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(1584), 1, - ts_builtin_sym_end, - STATE(1169), 2, + STATE(1187), 2, sym_comment, sym_include, - ACTIONS(1586), 25, + ACTIONS(1976), 26, sym_identifier, + aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, aux_sym_variable_definition_token1, @@ -97724,19 +99029,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [60424] = 6, + [61193] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(2101), 1, + ACTIONS(1529), 1, ts_builtin_sym_end, - STATE(1170), 2, + STATE(1188), 2, sym_comment, sym_include, - ACTIONS(2103), 25, + ACTIONS(1531), 25, sym_identifier, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, @@ -97762,155 +99067,82 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [60468] = 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(2105), 1, - anon_sym_COMMA, - ACTIONS(2107), 1, - anon_sym_COLON, - ACTIONS(2109), 1, - aux_sym_on_error_phrase_token1, - ACTIONS(2111), 1, - aux_sym_where_clause_token1, - ACTIONS(2113), 1, - aux_sym_sort_clause_token1, - ACTIONS(2115), 1, - aux_sym_sort_clause_token2, - STATE(329), 1, - aux_sym_qualified_name_repeat1, - STATE(1638), 1, - sym_of, - STATE(1696), 1, - sym__pre_tuning, - STATE(1794), 1, - sym_where_clause, - STATE(1802), 1, - aux_sym_for_phrase_repeat1, - STATE(1946), 1, - sym_query_tuning, - STATE(2043), 1, - aux_sym_for_phrase_repeat2, - STATE(2703), 1, - sym_on_error_phrase, - STATE(2783), 1, - sym_sort_clause, - STATE(2902), 1, - sym_on_quit_phrase, - STATE(3316), 1, - aux_sym_for_statement_repeat1, - STATE(3318), 1, - sym_on_stop_phrase, - STATE(1171), 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, - [60552] = 11, - ACTIONS(59), 1, + [61237] = 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(2117), 1, - anon_sym_LPAREN, - STATE(4), 1, - aux_sym_object_access_repeat1, - STATE(7), 1, - aux_sym_qualified_name_repeat1, - STATE(1172), 2, + ACTIONS(1753), 1, + ts_builtin_sym_end, + STATE(1189), 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, - [60606] = 15, - ACTIONS(59), 1, + ACTIONS(1755), 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, + [61281] = 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(283), 1, - anon_sym_SLASH, - ACTIONS(285), 1, - anon_sym_STAR, - ACTIONS(2119), 1, - anon_sym_LPAREN, - STATE(347), 1, - sym__multiplicative_operator, - STATE(375), 1, - sym__comparison_operator, - STATE(408), 1, - sym__additive_operator, - STATE(411), 1, - sym__logical_operator, - ACTIONS(289), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(291), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(295), 2, - sym__or_operator, - sym__and_operator, - STATE(1173), 2, + STATE(1190), 2, sym_comment, sym_include, - ACTIONS(293), 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, - [60668] = 26, + ACTIONS(1814), 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, + [61323] = 26, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, @@ -97923,43 +99155,43 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_query_tuning_token5, ACTIONS(1203), 1, aux_sym_of_token1, - ACTIONS(2105), 1, - anon_sym_COMMA, ACTIONS(2109), 1, + anon_sym_COMMA, + ACTIONS(2113), 1, aux_sym_on_error_phrase_token1, - ACTIONS(2111), 1, + ACTIONS(2115), 1, aux_sym_where_clause_token1, - ACTIONS(2113), 1, + ACTIONS(2117), 1, aux_sym_sort_clause_token1, - ACTIONS(2115), 1, + ACTIONS(2119), 1, aux_sym_sort_clause_token2, - ACTIONS(2121), 1, + ACTIONS(2127), 1, anon_sym_COLON, - STATE(329), 1, + STATE(336), 1, aux_sym_qualified_name_repeat1, - STATE(1637), 1, + STATE(1668), 1, sym_of, - STATE(1680), 1, + STATE(1704), 1, sym__pre_tuning, - STATE(1798), 1, - aux_sym_for_phrase_repeat1, - STATE(1800), 1, + STATE(1810), 1, sym_where_clause, - STATE(1946), 1, + STATE(1815), 1, + aux_sym_for_phrase_repeat1, + STATE(1962), 1, sym_query_tuning, - STATE(2124), 1, + STATE(2091), 1, aux_sym_for_phrase_repeat2, - STATE(2595), 1, + STATE(2629), 1, sym_on_error_phrase, - STATE(2783), 1, - sym_sort_clause, - STATE(2824), 1, + STATE(2841), 1, sym_on_quit_phrase, - STATE(3162), 1, - aux_sym_for_statement_repeat1, - STATE(3164), 1, + STATE(2934), 1, + sym_sort_clause, + STATE(3295), 1, sym_on_stop_phrase, - STATE(1174), 2, + STATE(3296), 1, + aux_sym_for_statement_repeat1, + STATE(1191), 2, sym_comment, sym_include, ACTIONS(1195), 5, @@ -97968,19 +99200,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_query_tuning_token2, aux_sym_query_tuning_token3, aux_sym_query_tuning_token4, - [60752] = 5, + [61407] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(1175), 2, + ACTIONS(1950), 1, + ts_builtin_sym_end, + STATE(1192), 2, sym_comment, sym_include, - ACTIONS(2123), 26, + ACTIONS(1902), 25, sym_identifier, - aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, aux_sym_variable_definition_token1, @@ -98005,19 +99238,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [60794] = 6, + [61451] = 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(1952), 1, ts_builtin_sym_end, - STATE(1176), 2, + STATE(1193), 2, sym_comment, sym_include, - ACTIONS(1668), 25, + ACTIONS(1900), 25, sym_identifier, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, @@ -98043,19 +99276,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [60838] = 6, + [61495] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(1973), 1, + ACTIONS(1956), 1, ts_builtin_sym_end, - STATE(1177), 2, + STATE(1194), 2, sym_comment, sym_include, - ACTIONS(1831), 25, + ACTIONS(1898), 25, sym_identifier, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, @@ -98081,66 +99314,111 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [60882] = 6, + [61539] = 15, + ACTIONS(59), 1, + anon_sym_SLASH_SLASH, + ACTIONS(61), 1, + anon_sym_SLASH_STAR, + ACTIONS(65), 1, + anon_sym_LBRACE, + ACTIONS(227), 1, + anon_sym_SLASH, + ACTIONS(229), 1, + anon_sym_STAR, + ACTIONS(2129), 1, + anon_sym_LPAREN, + STATE(401), 1, + sym__logical_operator, + STATE(447), 1, + sym__comparison_operator, + STATE(507), 1, + sym__additive_operator, + STATE(516), 1, + sym__multiplicative_operator, + ACTIONS(233), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(235), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(239), 2, + sym__or_operator, + sym__and_operator, + STATE(1195), 2, + sym_comment, + sym_include, + ACTIONS(237), 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, + [61601] = 6, 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(1178), 2, + ACTIONS(225), 2, + sym__or_operator, + sym__and_operator, + STATE(1196), 2, sym_comment, sym_include, - ACTIONS(1672), 25, + ACTIONS(223), 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, - [60926] = 8, + aux_sym_widget_field_token1, + [61645] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, - anon_sym_LBRACE, - ACTIONS(1501), 1, - sym__namedot, - STATE(1265), 1, - aux_sym_qualified_name_repeat1, - ACTIONS(89), 2, + ACTIONS(1435), 1, + anon_sym_LPAREN, + ACTIONS(77), 2, sym__or_operator, sym__and_operator, - STATE(1179), 2, + STATE(1197), 2, sym_comment, sym_include, - ACTIONS(87), 22, + ACTIONS(75), 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, @@ -98158,20 +99436,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_NO_DASHERROR, - [60974] = 6, + aux_sym_include_argument_token1, + [61689] = 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(1663), 1, ts_builtin_sym_end, - STATE(1180), 2, + STATE(1198), 2, sym_comment, sym_include, - ACTIONS(1531), 25, + ACTIONS(1665), 25, sym_identifier, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, @@ -98197,19 +99475,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [61018] = 6, + [61733] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(1656), 1, + ACTIONS(2067), 1, ts_builtin_sym_end, - STATE(1181), 2, + STATE(1199), 2, sym_comment, sym_include, - ACTIONS(1535), 25, + ACTIONS(1645), 25, sym_identifier, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, @@ -98235,19 +99513,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [61062] = 6, + [61777] = 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(2131), 1, ts_builtin_sym_end, - STATE(1182), 2, + STATE(1200), 2, sym_comment, sym_include, - ACTIONS(1545), 25, + ACTIONS(2133), 25, sym_identifier, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, @@ -98273,17 +99551,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [61106] = 5, + [61821] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(1183), 2, + STATE(1201), 2, sym_comment, sym_include, - ACTIONS(1909), 26, + ACTIONS(1810), 26, sym_identifier, aux_sym__block_terminator_token1, aux_sym_input_expression_token1, @@ -98310,20 +99588,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [61148] = 6, + [61863] = 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(1184), 2, + STATE(1202), 2, sym_comment, sym_include, - ACTIONS(1674), 25, + ACTIONS(1806), 26, sym_identifier, + aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, aux_sym_variable_definition_token1, @@ -98348,19 +99625,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [61192] = 5, + [61905] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(1185), 2, + ACTIONS(2018), 1, + ts_builtin_sym_end, + STATE(1203), 2, sym_comment, sym_include, - ACTIONS(1911), 26, + ACTIONS(1958), 25, sym_identifier, - aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, aux_sym_variable_definition_token1, @@ -98385,19 +99663,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [61234] = 5, + [61949] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(1186), 2, + ACTIONS(2135), 1, + ts_builtin_sym_end, + STATE(1204), 2, sym_comment, sym_include, - ACTIONS(1917), 26, + ACTIONS(2083), 25, sym_identifier, - aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, aux_sym_variable_definition_token1, @@ -98422,20 +99701,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [61276] = 6, + [61993] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(1975), 1, - ts_builtin_sym_end, - STATE(1187), 2, + STATE(1205), 2, sym_comment, sym_include, - ACTIONS(1829), 25, + ACTIONS(1802), 26, sym_identifier, + aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, aux_sym_variable_definition_token1, @@ -98460,19 +99738,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [61320] = 6, + [62035] = 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(1944), 1, ts_builtin_sym_end, - STATE(1188), 2, + STATE(1206), 2, sym_comment, sym_include, - ACTIONS(1676), 25, + ACTIONS(1581), 25, sym_identifier, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, @@ -98498,19 +99776,142 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [61364] = 6, + [62079] = 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(139), 2, + sym__or_operator, + sym__and_operator, + STATE(1207), 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, + [62123] = 6, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_LBRACE, + STATE(1208), 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, + [62167] = 15, + ACTIONS(59), 1, + anon_sym_SLASH_SLASH, + ACTIONS(61), 1, + anon_sym_SLASH_STAR, + ACTIONS(65), 1, + anon_sym_LBRACE, + ACTIONS(227), 1, + anon_sym_SLASH, + ACTIONS(229), 1, + anon_sym_STAR, + ACTIONS(2137), 1, + anon_sym_RPAREN, + STATE(401), 1, + sym__logical_operator, + STATE(447), 1, + sym__comparison_operator, + STATE(507), 1, + sym__additive_operator, + STATE(516), 1, + sym__multiplicative_operator, + ACTIONS(233), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(235), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(239), 2, + sym__or_operator, + sym__and_operator, + STATE(1209), 2, + sym_comment, + sym_include, + ACTIONS(237), 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, + [62229] = 6, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_LBRACE, + ACTIONS(2139), 1, ts_builtin_sym_end, - STATE(1189), 2, + STATE(1210), 2, sym_comment, sym_include, - ACTIONS(1744), 25, + ACTIONS(2141), 25, sym_identifier, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, @@ -98536,19 +99937,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [61408] = 6, + [62273] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(1977), 1, + ACTIONS(2040), 1, ts_builtin_sym_end, - STATE(1190), 2, + STATE(1211), 2, sym_comment, sym_include, - ACTIONS(1827), 25, + ACTIONS(1960), 25, sym_identifier, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, @@ -98574,20 +99975,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [61452] = 6, + [62317] = 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(1191), 2, + STATE(1212), 2, sym_comment, sym_include, - ACTIONS(1652), 25, + ACTIONS(1798), 26, sym_identifier, + aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, aux_sym_variable_definition_token1, @@ -98612,27 +100012,24 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [61496] = 7, + [62359] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(2125), 1, - sym__namedot, - ACTIONS(104), 2, + ACTIONS(85), 2, sym__or_operator, sym__and_operator, - STATE(1192), 3, + STATE(1213), 2, sym_comment, sym_include, - aux_sym_qualified_name_repeat1, - ACTIONS(102), 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, @@ -98650,20 +100047,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, - [61542] = 5, + anon_sym_COMMA, + aux_sym_do_block_token1, + aux_sym_widget_field_token1, + [62403] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(1193), 2, + ACTIONS(2143), 1, + ts_builtin_sym_end, + STATE(1214), 2, sym_comment, sym_include, - ACTIONS(1919), 26, + ACTIONS(2145), 25, sym_identifier, - aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, aux_sym_variable_definition_token1, @@ -98688,20 +100088,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [61584] = 6, + [62447] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(1921), 1, - ts_builtin_sym_end, - STATE(1194), 2, + STATE(1215), 2, sym_comment, sym_include, - ACTIONS(1923), 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, @@ -98726,20 +100125,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [61628] = 6, + [62489] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(2128), 1, - ts_builtin_sym_end, - STATE(1195), 2, + STATE(1216), 2, sym_comment, sym_include, - ACTIONS(2130), 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, @@ -98764,19 +100162,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [61672] = 5, + [62531] = 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(2147), 1, + ts_builtin_sym_end, + STATE(1217), 2, sym_comment, sym_include, - ACTIONS(1929), 26, + ACTIONS(2149), 25, sym_identifier, - aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, aux_sym_variable_definition_token1, @@ -98801,19 +100200,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [61714] = 6, + [62575] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(2132), 1, + ACTIONS(2151), 1, ts_builtin_sym_end, - STATE(1197), 2, + STATE(1218), 2, sym_comment, sym_include, - ACTIONS(2134), 25, + ACTIONS(2153), 25, sym_identifier, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, @@ -98839,19 +100238,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [61758] = 6, + [62619] = 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(1980), 1, ts_builtin_sym_end, - STATE(1198), 2, + STATE(1219), 2, sym_comment, sym_include, - ACTIONS(2138), 25, + ACTIONS(1731), 25, sym_identifier, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, @@ -98877,19 +100276,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [61802] = 6, + [62663] = 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(2155), 1, ts_builtin_sym_end, - STATE(1199), 2, + STATE(1220), 2, sym_comment, sym_include, - ACTIONS(1650), 25, + ACTIONS(2157), 25, sym_identifier, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, @@ -98915,19 +100314,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [61846] = 5, + [62707] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(1200), 2, + ACTIONS(1984), 1, + ts_builtin_sym_end, + STATE(1221), 2, sym_comment, sym_include, - ACTIONS(1931), 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, @@ -98952,19 +100352,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [61888] = 6, + [62751] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(2140), 1, + ACTIONS(1623), 1, ts_builtin_sym_end, - STATE(1201), 2, + STATE(1222), 2, sym_comment, sym_include, - ACTIONS(2142), 25, + ACTIONS(1625), 25, sym_identifier, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, @@ -98990,57 +100390,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [61932] = 6, + [62795] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(163), 2, - sym__or_operator, - sym__and_operator, - STATE(1202), 2, - sym_comment, - sym_include, - ACTIONS(161), 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, - [61976] = 5, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - ACTIONS(7), 1, - anon_sym_LBRACE, - STATE(1203), 2, + ACTIONS(2069), 1, + ts_builtin_sym_end, + STATE(1223), 2, sym_comment, sym_include, - ACTIONS(1933), 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, @@ -99065,19 +100428,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [62018] = 5, + [62839] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(1204), 2, + ACTIONS(2159), 1, + ts_builtin_sym_end, + STATE(1224), 2, sym_comment, sym_include, - ACTIONS(1937), 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, @@ -99102,19 +100466,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [62060] = 5, + [62883] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(1205), 2, + ACTIONS(2163), 1, + ts_builtin_sym_end, + STATE(1225), 2, sym_comment, sym_include, - ACTIONS(2144), 26, + ACTIONS(2165), 25, sym_identifier, - aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, aux_sym_variable_definition_token1, @@ -99139,77 +100504,67 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [62102] = 26, + [62927] = 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(1201), 1, - aux_sym_query_tuning_token5, - ACTIONS(1203), 1, - aux_sym_of_token1, - ACTIONS(2105), 1, - anon_sym_COMMA, - ACTIONS(2109), 1, - aux_sym_on_error_phrase_token1, - ACTIONS(2111), 1, - aux_sym_where_clause_token1, - ACTIONS(2113), 1, - aux_sym_sort_clause_token1, - ACTIONS(2115), 1, - aux_sym_sort_clause_token2, - ACTIONS(2146), 1, - anon_sym_COLON, - STATE(329), 1, - aux_sym_qualified_name_repeat1, - STATE(1646), 1, - sym_of, - STATE(1690), 1, - sym__pre_tuning, - STATE(1768), 1, - aux_sym_for_phrase_repeat1, - STATE(1769), 1, - sym_where_clause, - STATE(1946), 1, - sym_query_tuning, - STATE(2085), 1, - aux_sym_for_phrase_repeat2, - STATE(2600), 1, - sym_on_error_phrase, - STATE(2783), 1, - sym_sort_clause, - STATE(2912), 1, - sym_on_quit_phrase, - STATE(3297), 1, - aux_sym_for_statement_repeat1, - STATE(3301), 1, - sym_on_stop_phrase, - STATE(1206), 2, + ACTIONS(227), 1, + anon_sym_SLASH, + ACTIONS(229), 1, + anon_sym_STAR, + ACTIONS(2167), 1, + aux_sym_if_statement_token2, + STATE(401), 1, + sym__logical_operator, + STATE(447), 1, + sym__comparison_operator, + STATE(507), 1, + sym__additive_operator, + STATE(516), 1, + sym__multiplicative_operator, + ACTIONS(233), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(235), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(239), 2, + sym__or_operator, + sym__and_operator, + STATE(1226), 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, - [62186] = 5, + ACTIONS(237), 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, + [62989] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(1207), 2, + ACTIONS(2038), 1, + ts_builtin_sym_end, + STATE(1227), 2, sym_comment, sym_include, - ACTIONS(1927), 26, + ACTIONS(1970), 25, sym_identifier, - aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, aux_sym_variable_definition_token1, @@ -99234,57 +100589,57 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [62228] = 6, + [63033] = 6, 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(1208), 2, + ACTIONS(1435), 1, + anon_sym_LPAREN, + ACTIONS(67), 2, + sym__or_operator, + sym__and_operator, + STATE(1228), 2, sym_comment, sym_include, - ACTIONS(1648), 25, + ACTIONS(63), 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, - [62272] = 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, + [63077] = 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(2057), 1, ts_builtin_sym_end, - STATE(1209), 2, + STATE(1229), 2, sym_comment, sym_include, - ACTIONS(1678), 25, + ACTIONS(1641), 25, sym_identifier, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, @@ -99310,66 +100665,32 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [62316] = 6, + [63121] = 9, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(2039), 1, + ACTIONS(2147), 1, ts_builtin_sym_end, - STATE(1210), 2, - sym_comment, - sym_include, - ACTIONS(1646), 25, - sym_identifier, - aux_sym_input_expression_token1, - aux_sym_primitive_type_token19, - aux_sym_variable_definition_token1, - aux_sym_variable_definition_token2, + ACTIONS(2169), 1, aux_sym_buffer_definition_token2, - aux_sym_argument_mode_token1, - aux_sym_if_statement_token1, + ACTIONS(2171), 1, 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, + ACTIONS(2173), 1, 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, - [62360] = 6, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - ACTIONS(7), 1, - anon_sym_LBRACE, - ACTIONS(2148), 1, - ts_builtin_sym_end, - STATE(1211), 2, + STATE(1230), 2, sym_comment, sym_include, - ACTIONS(2150), 25, + ACTIONS(2149), 22, 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, @@ -99377,7 +100698,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, @@ -99386,19 +100706,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [62404] = 6, + [63171] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(2152), 1, + ACTIONS(1619), 1, ts_builtin_sym_end, - STATE(1212), 2, + STATE(1231), 2, sym_comment, sym_include, - ACTIONS(2154), 25, + ACTIONS(1621), 25, sym_identifier, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, @@ -99424,62 +100744,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [62448] = 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(2156), 1, - anon_sym_LPAREN, - STATE(4), 1, - aux_sym_object_access_repeat1, - STATE(7), 1, - aux_sym_qualified_name_repeat1, - STATE(1213), 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, - [62502] = 6, + [63215] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(2041), 1, + ACTIONS(1986), 1, ts_builtin_sym_end, - STATE(1214), 2, + STATE(1232), 2, sym_comment, sym_include, - ACTIONS(1644), 25, + ACTIONS(1729), 25, sym_identifier, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, @@ -99505,20 +100782,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [62546] = 6, + [63259] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(1889), 1, - ts_builtin_sym_end, - STATE(1215), 2, + STATE(1233), 2, sym_comment, sym_include, - ACTIONS(1891), 25, + ACTIONS(1886), 26, sym_identifier, + aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, aux_sym_variable_definition_token1, @@ -99543,17 +100819,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [62590] = 5, + [63301] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(1216), 2, + STATE(1234), 2, sym_comment, sym_include, - ACTIONS(2130), 26, + ACTIONS(1605), 26, sym_identifier, aux_sym__block_terminator_token1, aux_sym_input_expression_token1, @@ -99580,19 +100856,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [62632] = 6, + [63343] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(1925), 1, + ACTIONS(1992), 1, ts_builtin_sym_end, - STATE(1217), 2, + STATE(1235), 2, sym_comment, sym_include, - ACTIONS(1927), 25, + ACTIONS(1727), 25, sym_identifier, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, @@ -99618,20 +100894,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [62676] = 6, + [63387] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(2158), 1, - ts_builtin_sym_end, - STATE(1218), 2, + STATE(1236), 2, sym_comment, sym_include, - ACTIONS(2160), 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, @@ -99656,20 +100931,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [62720] = 6, + [63429] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(2162), 1, - ts_builtin_sym_end, - STATE(1219), 2, + STATE(1237), 2, sym_comment, sym_include, - ACTIONS(2144), 25, + ACTIONS(2175), 26, sym_identifier, + aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, aux_sym_variable_definition_token1, @@ -99694,19 +100968,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [62764] = 5, + [63471] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(1220), 2, + ACTIONS(1842), 1, + ts_builtin_sym_end, + STATE(1238), 2, sym_comment, sym_include, - ACTIONS(1923), 26, + ACTIONS(1757), 25, sym_identifier, - aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, aux_sym_variable_definition_token1, @@ -99731,19 +101006,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [62806] = 6, + [63515] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(2017), 1, + ACTIONS(1533), 1, ts_builtin_sym_end, - STATE(1221), 2, + STATE(1239), 2, sym_comment, sym_include, - ACTIONS(1692), 25, + ACTIONS(1535), 25, sym_identifier, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, @@ -99769,24 +101044,26 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [62850] = 6, + [63559] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, - anon_sym_LBRACE, - ACTIONS(223), 2, + ACTIONS(2177), 1, + sym__namedot, + ACTIONS(111), 2, sym__or_operator, sym__and_operator, - STATE(1222), 2, + STATE(1240), 2, sym_comment, sym_include, - ACTIONS(221), 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, @@ -99804,34 +101081,98 @@ 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, + [63603] = 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(2109), 1, anon_sym_COMMA, - aux_sym_do_block_token1, - aux_sym_widget_field_token1, - [62894] = 6, - ACTIONS(3), 1, + ACTIONS(2113), 1, + aux_sym_on_error_phrase_token1, + ACTIONS(2115), 1, + aux_sym_where_clause_token1, + ACTIONS(2117), 1, + aux_sym_sort_clause_token1, + ACTIONS(2119), 1, + aux_sym_sort_clause_token2, + ACTIONS(2179), 1, + anon_sym_COLON, + STATE(336), 1, + aux_sym_qualified_name_repeat1, + STATE(1671), 1, + sym_of, + STATE(1702), 1, + sym__pre_tuning, + STATE(1775), 1, + sym_where_clause, + STATE(1786), 1, + aux_sym_for_phrase_repeat1, + STATE(1962), 1, + sym_query_tuning, + STATE(2092), 1, + aux_sym_for_phrase_repeat2, + STATE(2646), 1, + sym_on_error_phrase, + STATE(2870), 1, + sym_on_quit_phrase, + STATE(2934), 1, + sym_sort_clause, + STATE(3415), 1, + aux_sym_for_statement_repeat1, + STATE(3418), 1, + sym_on_stop_phrase, + STATE(1241), 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, + [63687] = 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(171), 2, - sym__or_operator, - sym__and_operator, - STATE(1223), 2, + ACTIONS(71), 1, + sym__namedot, + ACTIONS(73), 1, + sym__namecolon, + ACTIONS(2181), 1, + anon_sym_LPAREN, + STATE(4), 1, + aux_sym_qualified_name_repeat1, + STATE(9), 1, + aux_sym_object_access_repeat1, + STATE(1242), 2, sym_comment, sym_include, - ACTIONS(169), 24, + ACTIONS(63), 3, anon_sym_SLASH, - sym_identifier, + anon_sym_LT, + anon_sym_GT, + ACTIONS(67), 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, @@ -99842,72 +101183,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, - [62938] = 6, - ACTIONS(3), 1, + [63741] = 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(167), 2, - sym__or_operator, - sym__and_operator, - STATE(1224), 2, - sym_comment, - sym_include, - ACTIONS(165), 24, + ACTIONS(227), 1, anon_sym_SLASH, - sym_identifier, + ACTIONS(229), 1, anon_sym_STAR, - aux_sym_input_expression_token2, + ACTIONS(2183), 1, + anon_sym_RPAREN, + STATE(401), 1, + sym__logical_operator, + STATE(447), 1, + sym__comparison_operator, + STATE(507), 1, + sym__additive_operator, + STATE(516), 1, + sym__multiplicative_operator, + ACTIONS(233), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(235), 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, - [62982] = 6, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - ACTIONS(7), 1, - anon_sym_LBRACE, - ACTIONS(155), 2, + ACTIONS(239), 2, sym__or_operator, sym__and_operator, - STATE(1225), 2, + STATE(1243), 2, sym_comment, sym_include, - 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, + ACTIONS(237), 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, @@ -99918,22 +101230,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, + [63803] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(2164), 1, + ACTIONS(2014), 1, ts_builtin_sym_end, - STATE(1226), 2, + STATE(1244), 2, sym_comment, sym_include, - ACTIONS(2081), 25, + ACTIONS(1725), 25, sym_identifier, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, @@ -99959,116 +101268,78 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [63070] = 6, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - ACTIONS(7), 1, - anon_sym_LBRACE, - ACTIONS(151), 2, - sym__or_operator, - sym__and_operator, - STATE(1227), 2, - sym_comment, - sym_include, - ACTIONS(149), 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, - [63114] = 6, + [63847] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(215), 2, - sym__or_operator, - sym__and_operator, - STATE(1228), 2, + ACTIONS(2016), 1, + ts_builtin_sym_end, + STATE(1245), 2, sym_comment, sym_include, - ACTIONS(213), 24, - anon_sym_SLASH, + ACTIONS(1723), 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, - [63158] = 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, + [63891] = 15, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(283), 1, + ACTIONS(227), 1, anon_sym_SLASH, - ACTIONS(285), 1, + ACTIONS(229), 1, anon_sym_STAR, - ACTIONS(2166), 1, - anon_sym_LPAREN, - STATE(347), 1, - sym__multiplicative_operator, - STATE(375), 1, + ACTIONS(2185), 1, + aux_sym_if_statement_token2, + STATE(401), 1, + sym__logical_operator, + STATE(447), 1, sym__comparison_operator, - STATE(408), 1, + STATE(507), 1, sym__additive_operator, - STATE(411), 1, - sym__logical_operator, - ACTIONS(289), 2, + STATE(516), 1, + sym__multiplicative_operator, + ACTIONS(233), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(291), 2, + ACTIONS(235), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(295), 2, + ACTIONS(239), 2, sym__or_operator, sym__and_operator, - STATE(1229), 2, + STATE(1246), 2, sym_comment, sym_include, - ACTIONS(293), 13, + ACTIONS(237), 13, anon_sym_LT_EQ, anon_sym_LT_GT, anon_sym_EQ, @@ -100082,20 +101353,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - [63220] = 6, + [63953] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(1957), 1, - ts_builtin_sym_end, - STATE(1230), 2, + STATE(1247), 2, sym_comment, sym_include, - ACTIONS(1887), 25, + ACTIONS(1848), 26, sym_identifier, + aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, aux_sym_variable_definition_token1, @@ -100120,59 +101390,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [63264] = 7, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - ACTIONS(7), 1, - anon_sym_LBRACE, - STATE(1629), 1, - sym_method_tuning, - STATE(1231), 3, - sym_comment, - sym_include, - aux_sym_method_definition_repeat1, - ACTIONS(2170), 4, - aux_sym_scope_tuning_token4, - aux_sym_property_type_token1, - aux_sym_property_type_token2, - aux_sym_method_tuning_token1, - ACTIONS(2168), 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, - [63310] = 6, + [63995] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(1979), 1, - ts_builtin_sym_end, - STATE(1232), 2, + STATE(1248), 2, sym_comment, sym_include, - ACTIONS(1825), 25, + ACTIONS(2187), 26, sym_identifier, + aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, aux_sym_variable_definition_token1, @@ -100197,20 +101427,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [63354] = 6, + [64037] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(1694), 1, - ts_builtin_sym_end, - STATE(1233), 2, + STATE(1249), 2, sym_comment, sym_include, - ACTIONS(1529), 25, + ACTIONS(1743), 26, sym_identifier, + aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, aux_sym_variable_definition_token1, @@ -100235,20 +101464,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [63398] = 6, + [64079] = 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(1234), 2, + STATE(1250), 2, sym_comment, sym_include, - ACTIONS(1815), 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, @@ -100273,19 +101501,66 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [63442] = 6, + [64121] = 15, + ACTIONS(59), 1, + anon_sym_SLASH_SLASH, + ACTIONS(61), 1, + anon_sym_SLASH_STAR, + ACTIONS(65), 1, + anon_sym_LBRACE, + ACTIONS(227), 1, + anon_sym_SLASH, + ACTIONS(229), 1, + anon_sym_STAR, + ACTIONS(2189), 1, + aux_sym_else_if_statement_token1, + STATE(401), 1, + sym__logical_operator, + STATE(447), 1, + sym__comparison_operator, + STATE(507), 1, + sym__additive_operator, + STATE(516), 1, + sym__multiplicative_operator, + ACTIONS(233), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(235), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(239), 2, + sym__or_operator, + sym__and_operator, + STATE(1251), 2, + sym_comment, + sym_include, + ACTIONS(237), 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, + [64183] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(1696), 1, + ACTIONS(2020), 1, ts_builtin_sym_end, - STATE(1235), 2, + STATE(1252), 2, sym_comment, sym_include, - ACTIONS(1527), 25, + ACTIONS(1721), 25, sym_identifier, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, @@ -100311,20 +101586,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [63486] = 6, + [64227] = 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(1236), 2, + STATE(1253), 2, sym_comment, sym_include, - ACTIONS(1521), 25, + ACTIONS(1852), 26, sym_identifier, + aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, aux_sym_variable_definition_token1, @@ -100349,19 +101623,104 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [63530] = 6, + [64269] = 6, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_LBRACE, + ACTIONS(125), 2, + sym__or_operator, + sym__and_operator, + STATE(1254), 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, + [64313] = 15, + ACTIONS(59), 1, + anon_sym_SLASH_SLASH, + ACTIONS(61), 1, + anon_sym_SLASH_STAR, + ACTIONS(65), 1, + anon_sym_LBRACE, + ACTIONS(227), 1, + anon_sym_SLASH, + ACTIONS(229), 1, + anon_sym_STAR, + ACTIONS(2191), 1, + aux_sym_else_if_statement_token1, + STATE(401), 1, + sym__logical_operator, + STATE(447), 1, + sym__comparison_operator, + STATE(507), 1, + sym__additive_operator, + STATE(516), 1, + sym__multiplicative_operator, + ACTIONS(233), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(235), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(239), 2, + sym__or_operator, + sym__and_operator, + STATE(1255), 2, + sym_comment, + sym_include, + ACTIONS(237), 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, + [64375] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(1700), 1, + ACTIONS(2022), 1, ts_builtin_sym_end, - STATE(1237), 2, + STATE(1256), 2, sym_comment, sym_include, - ACTIONS(1702), 25, + ACTIONS(1719), 25, sym_identifier, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, @@ -100387,56 +101746,57 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [63574] = 5, + [64419] = 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(77), 2, + sym__or_operator, + sym__and_operator, + STATE(1257), 2, sym_comment, sym_include, - ACTIONS(1915), 26, + 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_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, - [63616] = 6, + aux_sym_widget_field_token1, + [64463] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(1939), 1, + ACTIONS(1840), 1, ts_builtin_sym_end, - STATE(1239), 2, + STATE(1258), 2, sym_comment, sym_include, - ACTIONS(1795), 25, + ACTIONS(1759), 25, sym_identifier, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, @@ -100462,20 +101822,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [63660] = 6, + [64507] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(1708), 1, - ts_builtin_sym_end, - STATE(1240), 2, + STATE(1259), 2, sym_comment, sym_include, - ACTIONS(1710), 25, + ACTIONS(1856), 26, sym_identifier, + aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, aux_sym_variable_definition_token1, @@ -100500,19 +101859,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [63704] = 5, + [64549] = 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(1834), 1, + ts_builtin_sym_end, + STATE(1260), 2, sym_comment, sym_include, - ACTIONS(1907), 26, + ACTIONS(1761), 25, sym_identifier, - aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, aux_sym_variable_definition_token1, @@ -100537,19 +101897,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [63746] = 6, + [64593] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(2173), 1, + ACTIONS(1828), 1, ts_builtin_sym_end, - STATE(1242), 2, + STATE(1261), 2, sym_comment, sym_include, - ACTIONS(2175), 25, + ACTIONS(1763), 25, sym_identifier, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, @@ -100575,58 +101935,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [63790] = 6, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - ACTIONS(7), 1, - anon_sym_LBRACE, - ACTIONS(187), 2, - sym__or_operator, - sym__and_operator, - STATE(1243), 2, - sym_comment, - sym_include, - ACTIONS(185), 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, - [63834] = 6, + [64637] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(195), 2, + ACTIONS(165), 2, sym__or_operator, sym__and_operator, - STATE(1244), 2, + STATE(1262), 2, sym_comment, sym_include, - ACTIONS(193), 24, + ACTIONS(163), 24, anon_sym_SLASH, sym_identifier, anon_sym_STAR, @@ -100651,55 +101973,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, aux_sym_do_block_token1, aux_sym_widget_field_token1, - [63878] = 6, + [64681] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(199), 2, - sym__or_operator, - sym__and_operator, - STATE(1245), 2, + STATE(1263), 2, sym_comment, sym_include, - ACTIONS(197), 24, - anon_sym_SLASH, + ACTIONS(1778), 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, - [63922] = 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, + [64723] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(1246), 2, + STATE(1264), 2, sym_comment, sym_include, - ACTIONS(1903), 26, + ACTIONS(1784), 26, sym_identifier, aux_sym__block_terminator_token1, aux_sym_input_expression_token1, @@ -100726,20 +102047,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [63964] = 6, + [64765] = 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(1247), 2, + STATE(1265), 2, sym_comment, sym_include, - ACTIONS(1712), 25, + ACTIONS(1782), 26, sym_identifier, + aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, aux_sym_variable_definition_token1, @@ -100764,31 +102084,43 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [64008] = 6, - ACTIONS(3), 1, + [64807] = 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(207), 2, - sym__or_operator, - sym__and_operator, - STATE(1248), 2, - sym_comment, - sym_include, - ACTIONS(205), 24, + ACTIONS(227), 1, anon_sym_SLASH, - sym_identifier, + ACTIONS(229), 1, anon_sym_STAR, - aux_sym_input_expression_token2, + ACTIONS(2193), 1, + aux_sym_if_statement_token2, + STATE(401), 1, + sym__logical_operator, + STATE(447), 1, + sym__comparison_operator, + STATE(507), 1, + sym__additive_operator, + STATE(516), 1, + sym__multiplicative_operator, + ACTIONS(233), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(235), 2, anon_sym_LT, + anon_sym_GT, + ACTIONS(239), 2, + sym__or_operator, + sym__and_operator, + STATE(1266), 2, + sym_comment, + sym_include, + ACTIONS(237), 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, @@ -100799,22 +102131,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, - [64052] = 5, + [64869] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(1249), 2, + ACTIONS(2075), 1, + ts_builtin_sym_end, + STATE(1267), 2, sym_comment, sym_include, - ACTIONS(1817), 26, + ACTIONS(1647), 25, sym_identifier, - aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, aux_sym_variable_definition_token1, @@ -100839,20 +102169,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [64094] = 6, + [64913] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(1935), 1, - ts_builtin_sym_end, - STATE(1250), 2, + STATE(1268), 2, sym_comment, sym_include, - ACTIONS(1937), 25, + ACTIONS(1780), 26, sym_identifier, + aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, aux_sym_variable_definition_token1, @@ -100877,17 +102206,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [64138] = 5, + [64955] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(1251), 2, + STATE(1269), 2, sym_comment, sym_include, - ACTIONS(2087), 26, + ACTIONS(1771), 26, sym_identifier, aux_sym__block_terminator_token1, aux_sym_input_expression_token1, @@ -100914,97 +102243,94 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [64180] = 6, + [64997] = 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(1252), 2, + STATE(1270), 2, sym_comment, sym_include, - ACTIONS(127), 24, - anon_sym_SLASH, + ACTIONS(1769), 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, - [64224] = 8, + 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, + [65039] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(1501), 1, - sym__namedot, - STATE(1265), 1, - aux_sym_qualified_name_repeat1, - ACTIONS(85), 2, - sym__or_operator, - sym__and_operator, - STATE(1253), 2, + STATE(1271), 2, sym_comment, sym_include, - ACTIONS(83), 22, - anon_sym_SLASH, + ACTIONS(2195), 26, 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, - [64272] = 5, + 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, + [65081] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(1254), 2, + ACTIONS(1539), 1, + ts_builtin_sym_end, + STATE(1272), 2, sym_comment, sym_include, - ACTIONS(1815), 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, @@ -101029,17 +102355,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [64314] = 5, + [65125] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(1255), 2, + STATE(1273), 2, sym_comment, sym_include, - ACTIONS(1899), 26, + ACTIONS(1767), 26, sym_identifier, aux_sym__block_terminator_token1, aux_sym_input_expression_token1, @@ -101066,17 +102392,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [64356] = 5, + [65167] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(1256), 2, + STATE(1274), 2, sym_comment, sym_include, - ACTIONS(1795), 26, + ACTIONS(1862), 26, sym_identifier, aux_sym__block_terminator_token1, aux_sym_input_expression_token1, @@ -101103,17 +102429,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [64398] = 5, + [65209] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(1257), 2, + STATE(1275), 2, sym_comment, sym_include, - ACTIONS(1895), 26, + ACTIONS(1866), 26, sym_identifier, aux_sym__block_terminator_token1, aux_sym_input_expression_token1, @@ -101140,17 +102466,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [64440] = 5, + [65251] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(1258), 2, + STATE(1276), 2, sym_comment, sym_include, - ACTIONS(1590), 26, + ACTIONS(1876), 26, sym_identifier, aux_sym__block_terminator_token1, aux_sym_input_expression_token1, @@ -101177,19 +102503,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [64482] = 5, + [65293] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(1259), 2, + ACTIONS(1930), 1, + ts_builtin_sym_end, + STATE(1277), 2, sym_comment, sym_include, - ACTIONS(1559), 26, + ACTIONS(1908), 25, sym_identifier, - aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, aux_sym_variable_definition_token1, @@ -101214,17 +102541,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [64524] = 5, + [65337] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(1260), 2, + STATE(1278), 2, sym_comment, sym_include, - ACTIONS(1742), 26, + ACTIONS(2197), 26, sym_identifier, aux_sym__block_terminator_token1, aux_sym_input_expression_token1, @@ -101251,19 +102578,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [64566] = 6, + [65379] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(1981), 1, + ACTIONS(1928), 1, ts_builtin_sym_end, - STATE(1261), 2, + STATE(1279), 2, sym_comment, sym_include, - ACTIONS(1823), 25, + ACTIONS(1910), 25, sym_identifier, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, @@ -101289,40 +102616,40 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [64610] = 15, + [65423] = 15, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(283), 1, + ACTIONS(227), 1, anon_sym_SLASH, - ACTIONS(285), 1, + ACTIONS(229), 1, anon_sym_STAR, - ACTIONS(2177), 1, - aux_sym_if_statement_token2, - STATE(347), 1, - sym__multiplicative_operator, - STATE(375), 1, + ACTIONS(2199), 1, + sym__terminator, + STATE(401), 1, + sym__logical_operator, + STATE(447), 1, sym__comparison_operator, - STATE(408), 1, + STATE(507), 1, sym__additive_operator, - STATE(411), 1, - sym__logical_operator, - ACTIONS(289), 2, + STATE(516), 1, + sym__multiplicative_operator, + ACTIONS(233), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(291), 2, + ACTIONS(235), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(295), 2, + ACTIONS(239), 2, sym__or_operator, sym__and_operator, - STATE(1262), 2, + STATE(1280), 2, sym_comment, sym_include, - ACTIONS(293), 13, + ACTIONS(237), 13, anon_sym_LT_EQ, anon_sym_LT_GT, anon_sym_EQ, @@ -101336,140 +102663,57 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - [64672] = 11, - ACTIONS(59), 1, + [65485] = 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(2179), 1, - anon_sym_LPAREN, - STATE(4), 1, - aux_sym_object_access_repeat1, - STATE(7), 1, - aux_sym_qualified_name_repeat1, - STATE(1263), 2, + ACTIONS(1826), 1, + ts_builtin_sym_end, + STATE(1281), 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, - [64726] = 6, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - ACTIONS(2181), 1, - aux_sym_function_call_token1, - ACTIONS(133), 2, - sym__or_operator, - sym__and_operator, - STATE(1264), 2, - sym_comment, - sym_include, - ACTIONS(131), 24, - anon_sym_SLASH, - anon_sym_LBRACE, - anon_sym_RBRACE, + ACTIONS(1765), 25, 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, - [64770] = 8, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - ACTIONS(7), 1, - anon_sym_LBRACE, - ACTIONS(1501), 1, - sym__namedot, - STATE(1192), 1, - aux_sym_qualified_name_repeat1, - ACTIONS(93), 2, - sym__or_operator, - sym__and_operator, - STATE(1265), 2, - sym_comment, - sym_include, - ACTIONS(91), 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, - [64818] = 6, + 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, + [65529] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(1941), 1, + ACTIONS(1926), 1, ts_builtin_sym_end, - STATE(1266), 2, + STATE(1282), 2, sym_comment, sym_include, - ACTIONS(1933), 25, + ACTIONS(1916), 25, sym_identifier, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, @@ -101495,19 +102739,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [64862] = 6, + [65573] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(2183), 1, + ACTIONS(1924), 1, ts_builtin_sym_end, - STATE(1267), 2, + STATE(1283), 2, sym_comment, sym_include, - ACTIONS(2083), 25, + ACTIONS(1922), 25, sym_identifier, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, @@ -101533,102 +102777,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [64906] = 6, - ACTIONS(59), 1, - anon_sym_SLASH_SLASH, - ACTIONS(61), 1, - anon_sym_SLASH_STAR, - ACTIONS(65), 1, - anon_sym_LBRACE, - ACTIONS(2187), 1, - aux_sym_variable_definition_token4, - STATE(1268), 2, - sym_comment, - sym_include, - ACTIONS(2185), 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, - [64950] = 15, - ACTIONS(59), 1, - anon_sym_SLASH_SLASH, - ACTIONS(61), 1, - anon_sym_SLASH_STAR, - ACTIONS(65), 1, - anon_sym_LBRACE, - ACTIONS(283), 1, - anon_sym_SLASH, - ACTIONS(285), 1, - anon_sym_STAR, - ACTIONS(2189), 1, - aux_sym_if_statement_token2, - STATE(347), 1, - sym__multiplicative_operator, - STATE(375), 1, - sym__comparison_operator, - STATE(408), 1, - sym__additive_operator, - STATE(411), 1, - sym__logical_operator, - ACTIONS(289), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(291), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(295), 2, - sym__or_operator, - sym__and_operator, - STATE(1269), 2, - sym_comment, - sym_include, - ACTIONS(293), 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, - [65012] = 5, + [65617] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(1270), 2, + STATE(1284), 2, sym_comment, sym_include, - ACTIONS(1734), 26, + ACTIONS(1765), 26, sym_identifier, aux_sym__block_terminator_token1, aux_sym_input_expression_token1, @@ -101655,40 +102814,40 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [65054] = 15, + [65659] = 15, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(283), 1, + ACTIONS(227), 1, anon_sym_SLASH, - ACTIONS(285), 1, + ACTIONS(229), 1, anon_sym_STAR, - ACTIONS(2191), 1, - aux_sym_else_if_statement_token1, - STATE(347), 1, - sym__multiplicative_operator, - STATE(375), 1, + ACTIONS(2201), 1, + anon_sym_RPAREN, + STATE(401), 1, + sym__logical_operator, + STATE(447), 1, sym__comparison_operator, - STATE(408), 1, + STATE(507), 1, sym__additive_operator, - STATE(411), 1, - sym__logical_operator, - ACTIONS(289), 2, + STATE(516), 1, + sym__multiplicative_operator, + ACTIONS(233), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(291), 2, + ACTIONS(235), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(295), 2, + ACTIONS(239), 2, sym__or_operator, sym__and_operator, - STATE(1271), 2, + STATE(1285), 2, sym_comment, sym_include, - ACTIONS(293), 13, + ACTIONS(237), 13, anon_sym_LT_EQ, anon_sym_LT_GT, anon_sym_EQ, @@ -101702,20 +102861,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - [65116] = 6, + [65721] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(175), 2, + ACTIONS(89), 2, sym__or_operator, sym__and_operator, - STATE(1272), 2, + STATE(1286), 2, sym_comment, sym_include, - ACTIONS(173), 24, + ACTIONS(87), 24, anon_sym_SLASH, sym_identifier, anon_sym_STAR, @@ -101740,40 +102899,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, aux_sym_do_block_token1, aux_sym_widget_field_token1, - [65160] = 15, + [65765] = 15, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(283), 1, + ACTIONS(227), 1, anon_sym_SLASH, - ACTIONS(285), 1, + ACTIONS(229), 1, anon_sym_STAR, - ACTIONS(2193), 1, - sym__terminator, - STATE(347), 1, - sym__multiplicative_operator, - STATE(375), 1, + ACTIONS(2203), 1, + aux_sym_else_if_statement_token1, + STATE(401), 1, + sym__logical_operator, + STATE(447), 1, sym__comparison_operator, - STATE(408), 1, + STATE(507), 1, sym__additive_operator, - STATE(411), 1, - sym__logical_operator, - ACTIONS(289), 2, + STATE(516), 1, + sym__multiplicative_operator, + ACTIONS(233), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(291), 2, + ACTIONS(235), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(295), 2, + ACTIONS(239), 2, sym__or_operator, sym__and_operator, - STATE(1273), 2, + STATE(1287), 2, sym_comment, sym_include, - ACTIONS(293), 13, + ACTIONS(237), 13, anon_sym_LT_EQ, anon_sym_LT_GT, anon_sym_EQ, @@ -101787,19 +102946,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - [65222] = 6, + [65827] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(1943), 1, + ACTIONS(1918), 1, ts_builtin_sym_end, - STATE(1274), 2, + STATE(1288), 2, sym_comment, sym_include, - ACTIONS(1931), 25, + ACTIONS(1920), 25, sym_identifier, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, @@ -101825,163 +102984,56 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [65266] = 6, + [65871] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(85), 2, - sym__or_operator, - sym__and_operator, - STATE(1275), 2, + STATE(1289), 2, sym_comment, sym_include, - ACTIONS(83), 24, - anon_sym_SLASH, + ACTIONS(1880), 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_do_block_token1, - aux_sym_widget_field_token1, - [65310] = 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(2105), 1, - anon_sym_COMMA, - ACTIONS(2109), 1, + 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, - ACTIONS(2111), 1, - aux_sym_where_clause_token1, - ACTIONS(2113), 1, - aux_sym_sort_clause_token1, - ACTIONS(2115), 1, - aux_sym_sort_clause_token2, - ACTIONS(2195), 1, - anon_sym_COLON, - STATE(329), 1, - aux_sym_qualified_name_repeat1, - STATE(1669), 1, - sym_of, - STATE(1689), 1, - sym__pre_tuning, - STATE(1785), 1, - sym_where_clause, - STATE(1795), 1, - aux_sym_for_phrase_repeat1, - STATE(1946), 1, - sym_query_tuning, - STATE(2063), 1, - aux_sym_for_phrase_repeat2, - STATE(2569), 1, - sym_on_error_phrase, - STATE(2783), 1, - sym_sort_clause, - STATE(2837), 1, - sym_on_quit_phrase, - STATE(3218), 1, - aux_sym_for_statement_repeat1, - STATE(3221), 1, - sym_on_stop_phrase, - STATE(1276), 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, - [65394] = 15, - ACTIONS(59), 1, - anon_sym_SLASH_SLASH, - ACTIONS(61), 1, - anon_sym_SLASH_STAR, - ACTIONS(65), 1, - anon_sym_LBRACE, - ACTIONS(283), 1, - anon_sym_SLASH, - ACTIONS(285), 1, - anon_sym_STAR, - ACTIONS(2197), 1, - aux_sym_if_statement_token2, - STATE(347), 1, - sym__multiplicative_operator, - STATE(375), 1, - sym__comparison_operator, - STATE(408), 1, - sym__additive_operator, - STATE(411), 1, - sym__logical_operator, - ACTIONS(289), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(291), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(295), 2, - sym__or_operator, - sym__and_operator, - STATE(1277), 2, - sym_comment, - sym_include, - ACTIONS(293), 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, - [65456] = 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, + [65913] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(1642), 1, - ts_builtin_sym_end, - STATE(1278), 2, + STATE(1290), 2, sym_comment, sym_include, - ACTIONS(1549), 25, + ACTIONS(1884), 26, sym_identifier, + aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, aux_sym_variable_definition_token1, @@ -102006,19 +103058,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [65500] = 5, + [65955] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(1279), 2, + ACTIONS(1972), 1, + ts_builtin_sym_end, + STATE(1291), 2, sym_comment, sym_include, - ACTIONS(2199), 26, + ACTIONS(1888), 25, sym_identifier, - aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, aux_sym_variable_definition_token1, @@ -102043,17 +103096,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [65542] = 5, + [65999] = 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(1292), 2, sym_comment, sym_include, - ACTIONS(1879), 26, + ACTIONS(1896), 26, sym_identifier, aux_sym__block_terminator_token1, aux_sym_input_expression_token1, @@ -102080,19 +103133,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [65584] = 6, + [66041] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(1632), 1, + ACTIONS(1912), 1, ts_builtin_sym_end, - STATE(1281), 2, + STATE(1293), 2, sym_comment, sym_include, - ACTIONS(1553), 25, + ACTIONS(1914), 25, sym_identifier, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, @@ -102118,19 +103171,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [65628] = 6, + [66085] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(2011), 1, + ACTIONS(1974), 1, ts_builtin_sym_end, - STATE(1282), 2, + STATE(1294), 2, sym_comment, sym_include, - ACTIONS(1722), 25, + ACTIONS(1886), 25, sym_identifier, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, @@ -102156,19 +103209,77 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [65672] = 6, + [66129] = 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(2109), 1, + anon_sym_COMMA, + ACTIONS(2113), 1, + aux_sym_on_error_phrase_token1, + ACTIONS(2115), 1, + aux_sym_where_clause_token1, + ACTIONS(2117), 1, + aux_sym_sort_clause_token1, + ACTIONS(2119), 1, + aux_sym_sort_clause_token2, + ACTIONS(2205), 1, + anon_sym_COLON, + STATE(336), 1, + aux_sym_qualified_name_repeat1, + STATE(1677), 1, + sym_of, + STATE(1687), 1, + sym__pre_tuning, + STATE(1758), 1, + sym_where_clause, + STATE(1772), 1, + aux_sym_for_phrase_repeat1, + STATE(1962), 1, + sym_query_tuning, + STATE(2141), 1, + aux_sym_for_phrase_repeat2, + STATE(2778), 1, + sym_on_error_phrase, + STATE(2819), 1, + sym_on_quit_phrase, + STATE(2934), 1, + sym_sort_clause, + STATE(3279), 1, + aux_sym_for_statement_repeat1, + STATE(3281), 1, + sym_on_stop_phrase, + STATE(1295), 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, + [66213] = 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(2207), 1, ts_builtin_sym_end, - STATE(1283), 2, + STATE(1296), 2, sym_comment, sym_include, - ACTIONS(1728), 25, + ACTIONS(2187), 25, sym_identifier, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, @@ -102194,20 +103305,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [65716] = 6, + [66257] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(2201), 1, - ts_builtin_sym_end, - STATE(1284), 2, + STATE(1297), 2, sym_comment, sym_include, - ACTIONS(2203), 25, + 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, @@ -102232,20 +103342,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [65760] = 6, + [66299] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(1965), 1, - ts_builtin_sym_end, - STATE(1285), 2, + STATE(1298), 2, sym_comment, sym_include, - ACTIONS(1841), 25, + ACTIONS(1587), 26, sym_identifier, + aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, aux_sym_variable_definition_token1, @@ -102270,19 +103379,57 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [65804] = 6, + [66341] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(2007), 1, + ACTIONS(201), 2, + sym__or_operator, + sym__and_operator, + STATE(1299), 2, + sym_comment, + sym_include, + ACTIONS(199), 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, + [66385] = 6, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_LBRACE, + ACTIONS(1990), 1, ts_builtin_sym_end, - STATE(1286), 2, + STATE(1300), 2, sym_comment, sym_include, - ACTIONS(1734), 25, + ACTIONS(1976), 25, sym_identifier, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, @@ -102308,19 +103455,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [65848] = 6, + [66429] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(2043), 1, + ACTIONS(2209), 1, ts_builtin_sym_end, - STATE(1287), 2, + STATE(1301), 2, sym_comment, sym_include, - ACTIONS(1622), 25, + ACTIONS(2211), 25, sym_identifier, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, @@ -102346,19 +103493,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [65892] = 6, + [66473] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(2005), 1, + ACTIONS(1543), 1, ts_builtin_sym_end, - STATE(1288), 2, + STATE(1302), 2, sym_comment, sym_include, - ACTIONS(1736), 25, + ACTIONS(1545), 25, sym_identifier, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, @@ -102384,17 +103531,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [65936] = 5, + [66517] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(1289), 2, + STATE(1303), 2, sym_comment, sym_include, - ACTIONS(1867), 26, + ACTIONS(1585), 26, sym_identifier, aux_sym__block_terminator_token1, aux_sym_input_expression_token1, @@ -102421,64 +103568,75 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [65978] = 15, + [66559] = 26, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(283), 1, - anon_sym_SLASH, - ACTIONS(285), 1, - anon_sym_STAR, - ACTIONS(2205), 1, - aux_sym_else_if_statement_token1, - STATE(347), 1, - sym__multiplicative_operator, - STATE(375), 1, - sym__comparison_operator, - STATE(408), 1, - sym__additive_operator, - STATE(411), 1, - sym__logical_operator, - ACTIONS(289), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(291), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(295), 2, - sym__or_operator, - sym__and_operator, - STATE(1290), 2, + ACTIONS(679), 1, + sym__namedot, + ACTIONS(1201), 1, + aux_sym_query_tuning_token5, + ACTIONS(1203), 1, + aux_sym_of_token1, + ACTIONS(2109), 1, + anon_sym_COMMA, + ACTIONS(2113), 1, + aux_sym_on_error_phrase_token1, + ACTIONS(2115), 1, + aux_sym_where_clause_token1, + ACTIONS(2117), 1, + aux_sym_sort_clause_token1, + ACTIONS(2119), 1, + aux_sym_sort_clause_token2, + ACTIONS(2213), 1, + anon_sym_COLON, + STATE(336), 1, + aux_sym_qualified_name_repeat1, + STATE(1675), 1, + sym_of, + STATE(1699), 1, + sym__pre_tuning, + STATE(1781), 1, + aux_sym_for_phrase_repeat1, + STATE(1788), 1, + sym_where_clause, + STATE(1962), 1, + sym_query_tuning, + STATE(2066), 1, + aux_sym_for_phrase_repeat2, + STATE(2662), 1, + sym_on_error_phrase, + STATE(2934), 1, + sym_sort_clause, + STATE(2970), 1, + sym_on_quit_phrase, + STATE(3537), 1, + aux_sym_for_statement_repeat1, + STATE(3544), 1, + sym_on_stop_phrase, + STATE(1304), 2, sym_comment, sym_include, - ACTIONS(293), 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, - [66040] = 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, + [66643] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(1291), 2, + STATE(1305), 2, sym_comment, sym_include, - ACTIONS(1861), 26, + ACTIONS(1581), 26, sym_identifier, aux_sym__block_terminator_token1, aux_sym_input_expression_token1, @@ -102505,19 +103663,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [66082] = 6, + [66685] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(1945), 1, + ACTIONS(1934), 1, ts_builtin_sym_end, - STATE(1292), 2, + STATE(1306), 2, sym_comment, sym_include, - ACTIONS(1929), 25, + ACTIONS(1936), 25, sym_identifier, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, @@ -102543,19 +103701,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [66126] = 6, + [66729] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(2207), 1, + ACTIONS(2215), 1, ts_builtin_sym_end, - STATE(1293), 2, + STATE(1307), 2, sym_comment, sym_include, - ACTIONS(2209), 25, + ACTIONS(2217), 25, sym_identifier, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, @@ -102581,19 +103739,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [66170] = 6, + [66773] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(2003), 1, + ACTIONS(1816), 1, ts_builtin_sym_end, - STATE(1294), 2, + STATE(1308), 2, sym_comment, sym_include, - ACTIONS(1738), 25, + ACTIONS(1767), 25, sym_identifier, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, @@ -102619,19 +103777,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [66214] = 6, + [66817] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(2211), 1, + ACTIONS(2219), 1, ts_builtin_sym_end, - STATE(1295), 2, + STATE(1309), 2, sym_comment, sym_include, - ACTIONS(2213), 25, + ACTIONS(2221), 25, sym_identifier, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, @@ -102657,20 +103815,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [66258] = 6, + [66861] = 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(1296), 2, + STATE(1310), 2, sym_comment, sym_include, - ACTIONS(1885), 25, + ACTIONS(1537), 26, sym_identifier, + aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, aux_sym_variable_definition_token1, @@ -102695,20 +103852,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [66302] = 6, + [66903] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(1947), 1, - ts_builtin_sym_end, - STATE(1297), 2, + STATE(1311), 2, sym_comment, sym_include, - ACTIONS(1919), 25, + ACTIONS(1577), 26, sym_identifier, + aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, aux_sym_variable_definition_token1, @@ -102733,19 +103889,66 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [66346] = 6, + [66945] = 15, + ACTIONS(59), 1, + anon_sym_SLASH_SLASH, + ACTIONS(61), 1, + anon_sym_SLASH_STAR, + ACTIONS(65), 1, + anon_sym_LBRACE, + ACTIONS(227), 1, + anon_sym_SLASH, + ACTIONS(229), 1, + anon_sym_STAR, + ACTIONS(2223), 1, + aux_sym_if_statement_token2, + STATE(401), 1, + sym__logical_operator, + STATE(447), 1, + sym__comparison_operator, + STATE(507), 1, + sym__additive_operator, + STATE(516), 1, + sym__multiplicative_operator, + ACTIONS(233), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(235), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(239), 2, + sym__or_operator, + sym__and_operator, + STATE(1312), 2, + sym_comment, + sym_include, + ACTIONS(237), 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, + [67007] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(1624), 1, + ACTIONS(1904), 1, ts_builtin_sym_end, - STATE(1298), 2, + STATE(1313), 2, sym_comment, sym_include, - ACTIONS(1626), 25, + ACTIONS(1906), 25, sym_identifier, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, @@ -102771,19 +103974,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [66390] = 6, + [67051] = 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(2225), 1, ts_builtin_sym_end, - STATE(1299), 2, + STATE(1314), 2, sym_comment, sym_include, - ACTIONS(1620), 25, + ACTIONS(2227), 25, sym_identifier, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, @@ -102809,19 +104012,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [66434] = 6, + [67095] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(2215), 1, + ACTIONS(1890), 1, ts_builtin_sym_end, - STATE(1300), 2, + STATE(1315), 2, sym_comment, sym_include, - ACTIONS(2217), 25, + ACTIONS(1892), 25, sym_identifier, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, @@ -102847,19 +104050,56 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [66478] = 6, + [67139] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(2047), 1, + STATE(1316), 2, + sym_comment, + sym_include, + ACTIONS(1888), 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, + [67181] = 6, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_LBRACE, + ACTIONS(2229), 1, ts_builtin_sym_end, - STATE(1301), 2, + STATE(1317), 2, sym_comment, sym_include, - ACTIONS(1616), 25, + ACTIONS(2231), 25, sym_identifier, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, @@ -102885,17 +104125,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [66522] = 5, + [67225] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(1302), 2, + STATE(1318), 2, sym_comment, sym_include, - ACTIONS(1857), 26, + ACTIONS(1573), 26, sym_identifier, aux_sym__block_terminator_token1, aux_sym_input_expression_token1, @@ -102922,17 +104162,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [66564] = 5, + [67267] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(1303), 2, + STATE(1319), 2, sym_comment, sym_include, - ACTIONS(1851), 26, + ACTIONS(1569), 26, sym_identifier, aux_sym__block_terminator_token1, aux_sym_input_expression_token1, @@ -102959,43 +104199,106 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [66606] = 15, - ACTIONS(59), 1, + [67309] = 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, + STATE(1320), 2, + sym_comment, + sym_include, + 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, + 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, + [67351] = 6, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_LBRACE, + ACTIONS(2233), 1, + ts_builtin_sym_end, + STATE(1321), 2, + sym_comment, + sym_include, + ACTIONS(2195), 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, + [67395] = 6, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(283), 1, + ACTIONS(161), 2, + sym__or_operator, + sym__and_operator, + STATE(1322), 2, + sym_comment, + sym_include, + ACTIONS(159), 24, anon_sym_SLASH, - ACTIONS(285), 1, + sym_identifier, anon_sym_STAR, - ACTIONS(2219), 1, - sym__terminator, - STATE(347), 1, - sym__multiplicative_operator, - STATE(375), 1, - sym__comparison_operator, - STATE(408), 1, - sym__additive_operator, - STATE(411), 1, - sym__logical_operator, - ACTIONS(289), 2, + aux_sym_input_expression_token2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(291), 2, anon_sym_LT, - anon_sym_GT, - ACTIONS(295), 2, - sym__or_operator, - sym__and_operator, - STATE(1304), 2, - sym_comment, - sym_include, - ACTIONS(293), 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, @@ -103006,19 +104309,23 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - [66668] = 5, + anon_sym_COMMA, + aux_sym_do_block_token1, + aux_sym_widget_field_token1, + [67439] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(1305), 2, + ACTIONS(1836), 1, + ts_builtin_sym_end, + STATE(1323), 2, sym_comment, sym_include, - ACTIONS(1845), 26, + ACTIONS(1838), 25, sym_identifier, - aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, aux_sym_variable_definition_token1, @@ -103043,17 +104350,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [66710] = 5, + [67483] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(1306), 2, + STATE(1324), 2, sym_comment, sym_include, - ACTIONS(1835), 26, + ACTIONS(1561), 26, sym_identifier, aux_sym__block_terminator_token1, aux_sym_input_expression_token1, @@ -103080,17 +104387,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [66752] = 5, + [67525] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(1307), 2, + STATE(1325), 2, sym_comment, sym_include, - ACTIONS(1813), 26, + ACTIONS(1763), 26, sym_identifier, aux_sym__block_terminator_token1, aux_sym_input_expression_token1, @@ -103117,20 +104424,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [66794] = 6, + [67567] = 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(1308), 2, + STATE(1326), 2, sym_comment, sym_include, - ACTIONS(1614), 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, @@ -103155,20 +104461,77 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [66838] = 6, + [67609] = 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(2109), 1, + anon_sym_COMMA, + ACTIONS(2113), 1, + aux_sym_on_error_phrase_token1, + ACTIONS(2115), 1, + aux_sym_where_clause_token1, + ACTIONS(2117), 1, + aux_sym_sort_clause_token1, + ACTIONS(2119), 1, + aux_sym_sort_clause_token2, + ACTIONS(2235), 1, + anon_sym_COLON, + STATE(336), 1, + aux_sym_qualified_name_repeat1, + STATE(1679), 1, + sym_of, + STATE(1695), 1, + sym__pre_tuning, + STATE(1770), 1, + aux_sym_for_phrase_repeat1, + STATE(1785), 1, + sym_where_clause, + STATE(1962), 1, + sym_query_tuning, + STATE(2120), 1, + aux_sym_for_phrase_repeat2, + STATE(2714), 1, + sym_on_error_phrase, + STATE(2815), 1, + sym_on_quit_phrase, + STATE(2934), 1, + sym_sort_clause, + STATE(3436), 1, + aux_sym_for_statement_repeat1, + STATE(3437), 1, + sym_on_stop_phrase, + STATE(1327), 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, + [67693] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(2065), 1, - ts_builtin_sym_end, - STATE(1309), 2, + STATE(1328), 2, sym_comment, sym_include, - ACTIONS(1612), 25, + ACTIONS(1761), 26, sym_identifier, + aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, aux_sym_variable_definition_token1, @@ -103193,17 +104556,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [66882] = 5, + [67735] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(1310), 2, + STATE(1329), 2, sym_comment, sym_include, - ACTIONS(2221), 26, + ACTIONS(2237), 26, sym_identifier, aux_sym__block_terminator_token1, aux_sym_input_expression_token1, @@ -103230,20 +104593,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [66924] = 6, + [67777] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(1951), 1, - ts_builtin_sym_end, - STATE(1311), 2, + STATE(1330), 2, sym_comment, sym_include, - ACTIONS(1911), 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, @@ -103268,78 +104630,77 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [66968] = 6, + [67819] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(159), 2, - sym__or_operator, - sym__and_operator, - STATE(1312), 2, + STATE(1331), 2, sym_comment, sym_include, - ACTIONS(157), 24, - anon_sym_SLASH, + ACTIONS(1759), 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, - [67012] = 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, + [67861] = 15, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(283), 1, + ACTIONS(227), 1, anon_sym_SLASH, - ACTIONS(285), 1, + ACTIONS(229), 1, anon_sym_STAR, - ACTIONS(2223), 1, - aux_sym_else_if_statement_token1, - STATE(347), 1, - sym__multiplicative_operator, - STATE(375), 1, + ACTIONS(2239), 1, + aux_sym_if_statement_token2, + STATE(401), 1, + sym__logical_operator, + STATE(447), 1, sym__comparison_operator, - STATE(408), 1, + STATE(507), 1, sym__additive_operator, - STATE(411), 1, - sym__logical_operator, - ACTIONS(289), 2, + STATE(516), 1, + sym__multiplicative_operator, + ACTIONS(233), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(291), 2, + ACTIONS(235), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(295), 2, + ACTIONS(239), 2, sym__or_operator, sym__and_operator, - STATE(1313), 2, + STATE(1332), 2, sym_comment, sym_include, - ACTIONS(293), 13, + ACTIONS(237), 13, anon_sym_LT_EQ, anon_sym_LT_GT, anon_sym_EQ, @@ -103353,43 +104714,70 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - [67074] = 15, - ACTIONS(59), 1, + [67923] = 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(283), 1, + STATE(1333), 2, + sym_comment, + sym_include, + ACTIONS(1633), 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, + [67965] = 6, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(2241), 1, + aux_sym_function_call_token1, + ACTIONS(129), 2, + sym__or_operator, + sym__and_operator, + STATE(1334), 2, + sym_comment, + sym_include, + ACTIONS(127), 24, anon_sym_SLASH, - ACTIONS(285), 1, + anon_sym_LBRACE, + anon_sym_RBRACE, + sym_identifier, anon_sym_STAR, - ACTIONS(2225), 1, - anon_sym_RPAREN, - STATE(347), 1, - sym__multiplicative_operator, - STATE(375), 1, - sym__comparison_operator, - STATE(408), 1, - sym__additive_operator, - STATE(411), 1, - sym__logical_operator, - ACTIONS(289), 2, + anon_sym_DQUOTE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(291), 2, anon_sym_LT, - anon_sym_GT, - ACTIONS(295), 2, - sym__or_operator, - sym__and_operator, - STATE(1314), 2, - sym_comment, - sym_include, - ACTIONS(293), 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, @@ -103400,26 +104788,25 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - [67136] = 6, + aux_sym_include_argument_token1, + [68009] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(2227), 1, - anon_sym_NO_DASHERROR, - ACTIONS(631), 2, + ACTIONS(7), 1, + anon_sym_LBRACE, + ACTIONS(111), 2, sym__or_operator, sym__and_operator, - STATE(1315), 2, + STATE(1335), 2, sym_comment, sym_include, - ACTIONS(629), 24, + ACTIONS(109), 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, @@ -103437,18 +104824,20 @@ 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, - [67180] = 5, + anon_sym_COMMA, + aux_sym_do_block_token1, + aux_sym_widget_field_token1, + [68053] = 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(1336), 2, sym_comment, sym_include, - ACTIONS(1821), 26, + ACTIONS(1757), 26, sym_identifier, aux_sym__block_terminator_token1, aux_sym_input_expression_token1, @@ -103475,19 +104864,77 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [67222] = 6, + [68095] = 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(2109), 1, + anon_sym_COMMA, + ACTIONS(2113), 1, + aux_sym_on_error_phrase_token1, + ACTIONS(2115), 1, + aux_sym_where_clause_token1, + ACTIONS(2117), 1, + aux_sym_sort_clause_token1, + ACTIONS(2119), 1, + aux_sym_sort_clause_token2, + ACTIONS(2243), 1, + anon_sym_COLON, + STATE(336), 1, + aux_sym_qualified_name_repeat1, + STATE(1678), 1, + sym_of, + STATE(1690), 1, + sym__pre_tuning, + STATE(1768), 1, + sym_where_clause, + STATE(1774), 1, + aux_sym_for_phrase_repeat1, + STATE(1962), 1, + sym_query_tuning, + STATE(2044), 1, + aux_sym_for_phrase_repeat2, + STATE(2648), 1, + sym_on_error_phrase, + STATE(2906), 1, + sym_on_quit_phrase, + STATE(2934), 1, + sym_sort_clause, + STATE(3350), 1, + aux_sym_for_statement_repeat1, + STATE(3353), 1, + sym_on_stop_phrase, + STATE(1337), 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, + [68179] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(1893), 1, + ACTIONS(1547), 1, ts_builtin_sym_end, - STATE(1317), 2, + STATE(1338), 2, sym_comment, sym_include, - ACTIONS(1895), 25, + ACTIONS(1549), 25, sym_identifier, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, @@ -103513,55 +104960,55 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [67266] = 6, + [68223] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(183), 2, - sym__or_operator, - sym__and_operator, - STATE(1318), 2, + ACTIONS(1551), 1, + ts_builtin_sym_end, + STATE(1339), 2, sym_comment, sym_include, - ACTIONS(181), 24, - anon_sym_SLASH, + ACTIONS(1553), 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, - [67310] = 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, + [68267] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(1319), 2, + STATE(1340), 2, sym_comment, sym_include, - ACTIONS(1811), 26, + ACTIONS(1545), 26, sym_identifier, aux_sym__block_terminator_token1, aux_sym_input_expression_token1, @@ -103588,20 +105035,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [67352] = 6, + [68309] = 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(1320), 2, + STATE(1341), 2, sym_comment, sym_include, - ACTIONS(1590), 25, + ACTIONS(1755), 26, sym_identifier, + aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, aux_sym_variable_definition_token1, @@ -103626,20 +105072,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [67396] = 6, + [68351] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(1515), 1, - ts_builtin_sym_end, - STATE(1321), 2, + STATE(1342), 2, sym_comment, sym_include, - ACTIONS(1517), 25, + ACTIONS(1751), 26, sym_identifier, + aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, aux_sym_variable_definition_token1, @@ -103664,66 +105109,57 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [67440] = 15, - ACTIONS(59), 1, + [68393] = 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(283), 1, - anon_sym_SLASH, - ACTIONS(285), 1, - anon_sym_STAR, - ACTIONS(2229), 1, - aux_sym_if_statement_token2, - STATE(347), 1, - sym__multiplicative_operator, - STATE(375), 1, - sym__comparison_operator, - STATE(408), 1, - sym__additive_operator, - STATE(411), 1, - sym__logical_operator, - ACTIONS(289), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(291), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(295), 2, - sym__or_operator, - sym__and_operator, - STATE(1322), 2, + ACTIONS(1794), 1, + ts_builtin_sym_end, + STATE(1343), 2, sym_comment, sym_include, - ACTIONS(293), 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, - [67502] = 6, + ACTIONS(1769), 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, + [68437] = 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(2245), 1, ts_builtin_sym_end, - STATE(1323), 2, + STATE(1344), 2, sym_comment, sym_include, - ACTIONS(1813), 25, + ACTIONS(2237), 25, sym_identifier, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, @@ -103749,20 +105185,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [67546] = 6, + [68481] = 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(1324), 2, + STATE(1345), 2, sym_comment, sym_include, - ACTIONS(1758), 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, @@ -103787,20 +105222,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [67590] = 6, + [68523] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(1557), 1, - ts_builtin_sym_end, - STATE(1325), 2, + STATE(1346), 2, sym_comment, sym_include, - ACTIONS(1559), 25, + ACTIONS(1739), 26, sym_identifier, + aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, aux_sym_variable_definition_token1, @@ -103825,66 +105259,56 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [67634] = 15, - ACTIONS(59), 1, + [68565] = 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(283), 1, - anon_sym_SLASH, - ACTIONS(285), 1, - anon_sym_STAR, - ACTIONS(2231), 1, - aux_sym_if_statement_token2, - STATE(347), 1, - sym__multiplicative_operator, - STATE(375), 1, - sym__comparison_operator, - STATE(408), 1, - sym__additive_operator, - STATE(411), 1, - sym__logical_operator, - ACTIONS(289), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(291), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(295), 2, - sym__or_operator, - sym__and_operator, - STATE(1326), 2, + STATE(1347), 2, sym_comment, sym_include, - ACTIONS(293), 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, - [67696] = 6, + ACTIONS(1737), 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, + [68607] = 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(1818), 1, ts_builtin_sym_end, - STATE(1327), 2, + STATE(1348), 2, sym_comment, sym_include, - ACTIONS(1760), 25, + ACTIONS(1820), 25, sym_identifier, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, @@ -103910,19 +105334,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [67740] = 5, + [68651] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(1328), 2, + ACTIONS(2034), 1, + ts_builtin_sym_end, + STATE(1349), 2, sym_comment, sym_include, - ACTIONS(1807), 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, @@ -103947,19 +105372,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [67782] = 5, + [68695] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(1329), 2, + ACTIONS(2247), 1, + ts_builtin_sym_end, + STATE(1350), 2, sym_comment, sym_include, - ACTIONS(1803), 26, + ACTIONS(2249), 25, sym_identifier, - aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, aux_sym_variable_definition_token1, @@ -103984,19 +105410,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [67824] = 5, + [68739] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(1330), 2, + ACTIONS(1555), 1, + ts_builtin_sym_end, + STATE(1351), 2, sym_comment, sym_include, - ACTIONS(1634), 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, @@ -104021,19 +105448,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [67866] = 6, + [68783] = 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(1559), 1, ts_builtin_sym_end, - STATE(1331), 2, + STATE(1352), 2, sym_comment, sym_include, - ACTIONS(1764), 25, + ACTIONS(1561), 25, sym_identifier, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, @@ -104059,19 +105486,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [67910] = 6, + [68827] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(1740), 1, + ACTIONS(1563), 1, ts_builtin_sym_end, - STATE(1332), 2, + STATE(1353), 2, sym_comment, sym_include, - ACTIONS(1742), 25, + ACTIONS(1565), 25, sym_identifier, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, @@ -104097,95 +105524,96 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [67954] = 6, + [68871] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(2233), 1, - aux_sym_function_call_token1, - ACTIONS(215), 2, - sym__or_operator, - sym__and_operator, - STATE(1333), 2, + ACTIONS(7), 1, + anon_sym_LBRACE, + ACTIONS(1792), 1, + ts_builtin_sym_end, + STATE(1354), 2, sym_comment, sym_include, - ACTIONS(213), 24, - anon_sym_SLASH, - anon_sym_LBRACE, - anon_sym_RBRACE, + ACTIONS(1771), 25, 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, - [67998] = 6, + 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, + [68915] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(125), 2, - sym__or_operator, - sym__and_operator, - STATE(1334), 2, + ACTIONS(1790), 1, + ts_builtin_sym_end, + STATE(1355), 2, sym_comment, sym_include, - ACTIONS(123), 24, - anon_sym_SLASH, + ACTIONS(1780), 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, - [68042] = 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, + [68959] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(1335), 2, + ACTIONS(1567), 1, + ts_builtin_sym_end, + STATE(1356), 2, sym_comment, sym_include, - ACTIONS(1799), 26, + ACTIONS(1569), 25, sym_identifier, - aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, aux_sym_variable_definition_token1, @@ -104210,211 +105638,119 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [68084] = 15, - ACTIONS(59), 1, + [69003] = 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(283), 1, - anon_sym_SLASH, - ACTIONS(285), 1, - anon_sym_STAR, - ACTIONS(2235), 1, - aux_sym_else_if_statement_token1, - STATE(347), 1, - sym__multiplicative_operator, - STATE(375), 1, - sym__comparison_operator, - STATE(408), 1, - sym__additive_operator, - STATE(411), 1, - sym__logical_operator, - ACTIONS(289), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(291), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(295), 2, - sym__or_operator, - sym__and_operator, - STATE(1336), 2, + ACTIONS(1788), 1, + ts_builtin_sym_end, + STATE(1357), 2, sym_comment, sym_include, - ACTIONS(293), 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, - [68146] = 15, - ACTIONS(59), 1, + ACTIONS(1782), 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, + [69047] = 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(283), 1, - anon_sym_SLASH, - ACTIONS(285), 1, - anon_sym_STAR, - ACTIONS(2237), 1, - anon_sym_LPAREN, - STATE(347), 1, - sym__multiplicative_operator, - STATE(375), 1, - sym__comparison_operator, - STATE(408), 1, - sym__additive_operator, - STATE(411), 1, - sym__logical_operator, - ACTIONS(289), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(291), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(295), 2, - sym__or_operator, - sym__and_operator, - STATE(1337), 2, + ACTIONS(1786), 1, + ts_builtin_sym_end, + STATE(1358), 2, sym_comment, sym_include, - ACTIONS(293), 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, - [68208] = 11, + ACTIONS(1784), 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, + [69091] = 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(2239), 1, - anon_sym_LPAREN, - STATE(4), 1, - aux_sym_object_access_repeat1, - STATE(7), 1, - aux_sym_qualified_name_repeat1, - STATE(1338), 2, - sym_comment, - sym_include, - ACTIONS(75), 3, + ACTIONS(227), 1, anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(77), 18, - sym__or_operator, - sym__and_operator, + ACTIONS(229), 1, anon_sym_STAR, + ACTIONS(2251), 1, + aux_sym_if_statement_token2, + STATE(401), 1, + sym__logical_operator, + STATE(447), 1, + sym__comparison_operator, + STATE(507), 1, + sym__additive_operator, + STATE(516), 1, + sym__multiplicative_operator, + ACTIONS(233), 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_token6, - aux_sym__comparison_operator_token7, - aux_sym__comparison_operator_token8, - aux_sym__comparison_operator_token9, - [68262] = 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(2241), 1, - anon_sym_LPAREN, - STATE(4), 1, - aux_sym_object_access_repeat1, - STATE(7), 1, - aux_sym_qualified_name_repeat1, - STATE(1339), 2, - sym_comment, - sym_include, - ACTIONS(75), 3, - anon_sym_SLASH, + ACTIONS(235), 2, 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, - [68316] = 6, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - ACTIONS(7), 1, - anon_sym_LBRACE, - ACTIONS(211), 2, + ACTIONS(239), 2, sym__or_operator, sym__and_operator, - STATE(1340), 2, + STATE(1359), 2, sym_comment, sym_include, - ACTIONS(209), 24, - anon_sym_SLASH, - sym_identifier, - anon_sym_STAR, - aux_sym_input_expression_token2, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT, + ACTIONS(237), 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, @@ -104425,43 +105761,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, - [68360] = 15, + [69153] = 15, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(283), 1, + ACTIONS(227), 1, anon_sym_SLASH, - ACTIONS(285), 1, + ACTIONS(229), 1, anon_sym_STAR, - ACTIONS(2243), 1, - anon_sym_LPAREN, - STATE(347), 1, - sym__multiplicative_operator, - STATE(375), 1, + ACTIONS(2253), 1, + anon_sym_RPAREN, + STATE(401), 1, + sym__logical_operator, + STATE(447), 1, sym__comparison_operator, - STATE(408), 1, + STATE(507), 1, sym__additive_operator, - STATE(411), 1, - sym__logical_operator, - ACTIONS(289), 2, + STATE(516), 1, + sym__multiplicative_operator, + ACTIONS(233), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(291), 2, + ACTIONS(235), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(295), 2, + ACTIONS(239), 2, sym__or_operator, sym__and_operator, - STATE(1341), 2, + STATE(1360), 2, sym_comment, sym_include, - ACTIONS(293), 13, + ACTIONS(237), 13, anon_sym_LT_EQ, anon_sym_LT_GT, anon_sym_EQ, @@ -104475,19 +105808,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - [68422] = 6, + [69215] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(1636), 1, + ACTIONS(1571), 1, ts_builtin_sym_end, - STATE(1342), 2, + STATE(1361), 2, sym_comment, sym_include, - ACTIONS(1638), 25, + ACTIONS(1573), 25, sym_identifier, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, @@ -104513,57 +105846,56 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [68466] = 6, + [69259] = 5, 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(1343), 2, + STATE(1362), 2, sym_comment, sym_include, - ACTIONS(87), 24, - anon_sym_SLASH, + ACTIONS(2211), 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_do_block_token1, - aux_sym_widget_field_token1, - [68510] = 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_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, + [69301] = 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(1776), 1, ts_builtin_sym_end, - STATE(1344), 2, + STATE(1363), 2, sym_comment, sym_include, - ACTIONS(1660), 25, + ACTIONS(1778), 25, sym_identifier, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, @@ -104589,151 +105921,57 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [68554] = 6, + [69345] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(121), 2, - sym__or_operator, - sym__and_operator, - STATE(1345), 2, + ACTIONS(1747), 1, + ts_builtin_sym_end, + STATE(1364), 2, sym_comment, sym_include, - ACTIONS(119), 24, - anon_sym_SLASH, + ACTIONS(1749), 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, - [68598] = 15, - ACTIONS(59), 1, - anon_sym_SLASH_SLASH, - ACTIONS(61), 1, - anon_sym_SLASH_STAR, - ACTIONS(65), 1, - anon_sym_LBRACE, - ACTIONS(283), 1, - anon_sym_SLASH, - ACTIONS(285), 1, - anon_sym_STAR, - ACTIONS(2245), 1, - aux_sym_if_statement_token2, - STATE(347), 1, - sym__multiplicative_operator, - STATE(375), 1, - sym__comparison_operator, - STATE(408), 1, - sym__additive_operator, - STATE(411), 1, - sym__logical_operator, - ACTIONS(289), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(291), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(295), 2, - sym__or_operator, - sym__and_operator, - STATE(1346), 2, - sym_comment, - sym_include, - ACTIONS(293), 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, - [68660] = 15, - ACTIONS(59), 1, - anon_sym_SLASH_SLASH, - ACTIONS(61), 1, - anon_sym_SLASH_STAR, - ACTIONS(65), 1, - anon_sym_LBRACE, - ACTIONS(283), 1, - anon_sym_SLASH, - ACTIONS(285), 1, - anon_sym_STAR, - ACTIONS(2247), 1, - aux_sym_if_statement_token2, - STATE(347), 1, - sym__multiplicative_operator, - STATE(375), 1, - sym__comparison_operator, - STATE(408), 1, - sym__additive_operator, - STATE(411), 1, - sym__logical_operator, - ACTIONS(289), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(291), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(295), 2, - sym__or_operator, - sym__and_operator, - STATE(1347), 2, - sym_comment, - sym_include, - ACTIONS(293), 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, - [68722] = 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, + [69389] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(1949), 1, + ACTIONS(1741), 1, ts_builtin_sym_end, - STATE(1348), 2, + STATE(1365), 2, sym_comment, sym_include, - ACTIONS(1917), 25, + ACTIONS(1743), 25, sym_identifier, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, @@ -104759,172 +105997,93 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [68766] = 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(2105), 1, - anon_sym_COMMA, - ACTIONS(2109), 1, - aux_sym_on_error_phrase_token1, - ACTIONS(2111), 1, - aux_sym_where_clause_token1, - ACTIONS(2113), 1, - aux_sym_sort_clause_token1, - ACTIONS(2115), 1, - aux_sym_sort_clause_token2, - ACTIONS(2249), 1, - anon_sym_COLON, - STATE(329), 1, - aux_sym_qualified_name_repeat1, - STATE(1661), 1, - sym_of, - STATE(1686), 1, - sym__pre_tuning, - STATE(1780), 1, - sym_where_clause, - STATE(1787), 1, - aux_sym_for_phrase_repeat1, - STATE(1946), 1, - sym_query_tuning, - STATE(2031), 1, - aux_sym_for_phrase_repeat2, - STATE(2693), 1, - sym_on_error_phrase, - STATE(2783), 1, - sym_sort_clause, - STATE(2916), 1, - sym_on_quit_phrase, - STATE(3205), 1, - sym_on_stop_phrase, - STATE(3206), 1, - aux_sym_for_statement_repeat1, - STATE(1349), 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, - [68850] = 15, - ACTIONS(59), 1, + [69433] = 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(283), 1, - anon_sym_SLASH, - ACTIONS(285), 1, - anon_sym_STAR, - ACTIONS(2251), 1, - anon_sym_RPAREN, - STATE(347), 1, - sym__multiplicative_operator, - STATE(375), 1, - sym__comparison_operator, - STATE(408), 1, - sym__additive_operator, - STATE(411), 1, - sym__logical_operator, - ACTIONS(289), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(291), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(295), 2, - sym__or_operator, - sym__and_operator, - STATE(1350), 2, + STATE(1366), 2, sym_comment, sym_include, - ACTIONS(293), 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, - [68912] = 15, - ACTIONS(59), 1, + 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, + 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, + [69475] = 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(283), 1, - anon_sym_SLASH, - ACTIONS(285), 1, - anon_sym_STAR, - ACTIONS(2253), 1, - aux_sym_if_statement_token2, - STATE(347), 1, - sym__multiplicative_operator, - STATE(375), 1, - sym__comparison_operator, - STATE(408), 1, - sym__additive_operator, - STATE(411), 1, - sym__logical_operator, - ACTIONS(289), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(291), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(295), 2, - sym__or_operator, - sym__and_operator, - STATE(1351), 2, + STATE(1367), 2, sym_comment, sym_include, - ACTIONS(293), 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, - [68974] = 6, + 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, + 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, + [69517] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(1875), 1, - ts_builtin_sym_end, - STATE(1352), 2, + STATE(1368), 2, sym_comment, sym_include, - ACTIONS(1561), 25, + ACTIONS(2227), 26, sym_identifier, + aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, aux_sym_variable_definition_token1, @@ -104949,20 +106108,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [69018] = 6, + [69559] = 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(1353), 2, + STATE(1369), 2, sym_comment, sym_include, - ACTIONS(1768), 25, + ACTIONS(1914), 26, sym_identifier, + aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, aux_sym_variable_definition_token1, @@ -104987,57 +106145,58 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [69062] = 6, + [69601] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(219), 2, - sym__or_operator, - sym__and_operator, - STATE(1354), 2, + ACTIONS(2024), 1, + ts_builtin_sym_end, + STATE(1370), 2, sym_comment, sym_include, - ACTIONS(217), 24, - anon_sym_SLASH, + ACTIONS(1717), 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, - [69106] = 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, + [69645] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(1355), 2, + ACTIONS(1982), 1, + ts_builtin_sym_end, + STATE(1371), 2, sym_comment, sym_include, - ACTIONS(1756), 26, + ACTIONS(1872), 25, sym_identifier, - aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, aux_sym_variable_definition_token1, @@ -105062,19 +106221,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [69148] = 6, + [69689] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(1770), 1, + ACTIONS(1988), 1, ts_builtin_sym_end, - STATE(1356), 2, + STATE(1372), 2, sym_comment, sym_include, - ACTIONS(1772), 25, + ACTIONS(1868), 25, sym_identifier, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, @@ -105100,19 +106259,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [69192] = 6, + [69733] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(1610), 1, + ACTIONS(2026), 1, ts_builtin_sym_end, - STATE(1357), 2, + STATE(1373), 2, sym_comment, sym_include, - ACTIONS(1555), 25, + ACTIONS(1715), 25, sym_identifier, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, @@ -105138,20 +106297,62 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [69236] = 6, + [69777] = 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(2255), 1, + anon_sym_LPAREN, + STATE(4), 1, + aux_sym_qualified_name_repeat1, + STATE(9), 1, + aux_sym_object_access_repeat1, + STATE(1374), 2, + sym_comment, + sym_include, + ACTIONS(63), 3, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(67), 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, + [69831] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(1608), 1, - ts_builtin_sym_end, - STATE(1358), 2, + STATE(1375), 2, sym_comment, sym_include, - ACTIONS(1565), 25, + ACTIONS(2133), 26, sym_identifier, + aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, aux_sym_variable_definition_token1, @@ -105176,20 +106377,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [69280] = 6, + [69873] = 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(151), 2, sym__or_operator, sym__and_operator, - STATE(1359), 2, + STATE(1376), 2, sym_comment, sym_include, - ACTIONS(63), 24, + ACTIONS(149), 24, anon_sym_SLASH, sym_identifier, anon_sym_STAR, @@ -105214,77 +106415,66 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, aux_sym_do_block_token1, aux_sym_widget_field_token1, - [69324] = 26, + [69917] = 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(1201), 1, - aux_sym_query_tuning_token5, - ACTIONS(1203), 1, - aux_sym_of_token1, - ACTIONS(2105), 1, - anon_sym_COMMA, - ACTIONS(2109), 1, - aux_sym_on_error_phrase_token1, - ACTIONS(2111), 1, - aux_sym_where_clause_token1, - ACTIONS(2113), 1, - aux_sym_sort_clause_token1, - ACTIONS(2115), 1, - aux_sym_sort_clause_token2, - ACTIONS(2255), 1, - anon_sym_COLON, - STATE(329), 1, - aux_sym_qualified_name_repeat1, - STATE(1655), 1, - sym_of, - STATE(1683), 1, - sym__pre_tuning, - STATE(1790), 1, - aux_sym_for_phrase_repeat1, - STATE(1793), 1, - sym_where_clause, - STATE(1946), 1, - sym_query_tuning, - STATE(2033), 1, - aux_sym_for_phrase_repeat2, - STATE(2712), 1, - sym_on_error_phrase, - STATE(2726), 1, - sym_on_quit_phrase, - STATE(2783), 1, - sym_sort_clause, - STATE(3453), 1, - aux_sym_for_statement_repeat1, - STATE(3468), 1, - sym_on_stop_phrase, - STATE(1360), 2, + ACTIONS(227), 1, + anon_sym_SLASH, + ACTIONS(229), 1, + anon_sym_STAR, + ACTIONS(2257), 1, + aux_sym_if_statement_token2, + STATE(401), 1, + sym__logical_operator, + STATE(447), 1, + sym__comparison_operator, + STATE(507), 1, + sym__additive_operator, + STATE(516), 1, + sym__multiplicative_operator, + ACTIONS(233), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(235), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(239), 2, + sym__or_operator, + sym__and_operator, + STATE(1377), 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, - [69408] = 6, + ACTIONS(237), 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, + [69979] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(1774), 1, + ACTIONS(1595), 1, ts_builtin_sym_end, - STATE(1361), 2, + STATE(1378), 2, sym_comment, sym_include, - ACTIONS(1640), 25, + ACTIONS(1597), 25, sym_identifier, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, @@ -105310,20 +106500,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [69452] = 6, + [70023] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(2257), 1, - ts_builtin_sym_end, - STATE(1362), 2, + STATE(1379), 2, sym_comment, sym_include, - ACTIONS(2199), 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, @@ -105348,19 +106537,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [69496] = 5, + [70065] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(1363), 2, + ACTIONS(1575), 1, + ts_builtin_sym_end, + STATE(1380), 2, sym_comment, sym_include, - ACTIONS(1752), 26, + ACTIONS(1577), 25, sym_identifier, - aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, aux_sym_variable_definition_token1, @@ -105385,19 +106575,66 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [69538] = 6, + [70109] = 15, + ACTIONS(59), 1, + anon_sym_SLASH_SLASH, + ACTIONS(61), 1, + anon_sym_SLASH_STAR, + ACTIONS(65), 1, + anon_sym_LBRACE, + ACTIONS(227), 1, + anon_sym_SLASH, + ACTIONS(229), 1, + anon_sym_STAR, + ACTIONS(2259), 1, + sym__terminator, + STATE(401), 1, + sym__logical_operator, + STATE(447), 1, + sym__comparison_operator, + STATE(507), 1, + sym__additive_operator, + STATE(516), 1, + sym__multiplicative_operator, + ACTIONS(233), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(235), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(239), 2, + sym__or_operator, + sym__and_operator, + STATE(1381), 2, + sym_comment, + sym_include, + ACTIONS(237), 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, + [70171] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(2055), 1, + ACTIONS(2261), 1, ts_builtin_sym_end, - STATE(1364), 2, + STATE(1382), 2, sym_comment, sym_include, - ACTIONS(1606), 25, + ACTIONS(2263), 25, sym_identifier, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, @@ -105423,19 +106660,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [69582] = 6, + [70215] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(1877), 1, + ACTIONS(2265), 1, ts_builtin_sym_end, - STATE(1365), 2, + STATE(1383), 2, sym_comment, sym_include, - ACTIONS(1879), 25, + ACTIONS(2267), 25, sym_identifier, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, @@ -105461,19 +106698,57 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [69626] = 6, + [70259] = 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(1384), 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, + [70303] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(1963), 1, + ACTIONS(1627), 1, ts_builtin_sym_end, - STATE(1366), 2, + STATE(1385), 2, sym_comment, sym_include, - ACTIONS(1847), 25, + ACTIONS(1629), 25, sym_identifier, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, @@ -105499,17 +106774,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [69670] = 5, + [70347] = 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(1386), 2, sym_comment, sym_include, - ACTIONS(1748), 26, + ACTIONS(1920), 26, sym_identifier, aux_sym__block_terminator_token1, aux_sym_input_expression_token1, @@ -105536,19 +106811,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [69712] = 5, + [70389] = 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(2053), 1, + ts_builtin_sym_end, + STATE(1387), 2, sym_comment, sym_include, - ACTIONS(1732), 26, + ACTIONS(1639), 25, sym_identifier, - aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, aux_sym_variable_definition_token1, @@ -105573,20 +106849,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [69754] = 6, + [70433] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(2259), 1, - ts_builtin_sym_end, - STATE(1369), 2, + STATE(1388), 2, sym_comment, sym_include, - ACTIONS(2261), 25, + ACTIONS(1922), 26, sym_identifier, + aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, aux_sym_variable_definition_token1, @@ -105611,20 +106886,59 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [69798] = 6, + [70475] = 8, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(1865), 1, - ts_builtin_sym_end, - STATE(1370), 2, + ACTIONS(1476), 1, + sym__namedot, + STATE(1442), 1, + aux_sym_qualified_name_repeat1, + ACTIONS(81), 2, + sym__or_operator, + sym__and_operator, + STATE(1389), 2, + sym_comment, + sym_include, + ACTIONS(79), 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, + [70523] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_LBRACE, + STATE(1390), 2, sym_comment, sym_include, - ACTIONS(1867), 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, @@ -105649,19 +106963,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [69842] = 6, + [70565] = 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(1938), 1, ts_builtin_sym_end, - STATE(1371), 2, + STATE(1391), 2, sym_comment, sym_include, - ACTIONS(1604), 25, + ACTIONS(1940), 25, sym_identifier, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, @@ -105687,20 +107001,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [69886] = 6, + [70609] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(1776), 1, - ts_builtin_sym_end, - STATE(1372), 2, + STATE(1392), 2, sym_comment, sym_include, - ACTIONS(1680), 25, + ACTIONS(2217), 26, sym_identifier, + aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, aux_sym_variable_definition_token1, @@ -105725,31 +107038,80 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [69930] = 6, + [70651] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(143), 2, - sym__or_operator, - sym__and_operator, - STATE(1373), 2, + STATE(1393), 2, sym_comment, sym_include, - ACTIONS(141), 24, - anon_sym_SLASH, + 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, + 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, + [70693] = 15, + ACTIONS(59), 1, + anon_sym_SLASH_SLASH, + ACTIONS(61), 1, + anon_sym_SLASH_STAR, + ACTIONS(65), 1, + anon_sym_LBRACE, + ACTIONS(227), 1, + anon_sym_SLASH, + ACTIONS(229), 1, anon_sym_STAR, - aux_sym_input_expression_token2, + ACTIONS(2269), 1, + aux_sym_if_statement_token2, + STATE(401), 1, + sym__logical_operator, + STATE(447), 1, + sym__comparison_operator, + STATE(507), 1, + sym__additive_operator, + STATE(516), 1, + sym__multiplicative_operator, + ACTIONS(233), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(235), 2, anon_sym_LT, + anon_sym_GT, + ACTIONS(239), 2, + sym__or_operator, + sym__and_operator, + STATE(1394), 2, + sym_comment, + sym_include, + ACTIONS(237), 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, @@ -105760,23 +107122,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, - [69974] = 6, + [70755] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(1778), 1, - ts_builtin_sym_end, - STATE(1374), 2, + STATE(1395), 2, sym_comment, sym_include, - ACTIONS(1670), 25, + ACTIONS(2008), 26, sym_identifier, + aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, aux_sym_variable_definition_token1, @@ -105801,19 +107159,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [70018] = 6, + [70797] = 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(1583), 1, ts_builtin_sym_end, - STATE(1375), 2, + STATE(1396), 2, sym_comment, sym_include, - ACTIONS(1666), 25, + ACTIONS(1585), 25, sym_identifier, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, @@ -105839,20 +107197,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [70062] = 6, + [70841] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(1782), 1, - ts_builtin_sym_end, - STATE(1376), 2, + STATE(1397), 2, sym_comment, sym_include, - ACTIONS(1784), 25, + ACTIONS(1910), 26, sym_identifier, + aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, aux_sym_variable_definition_token1, @@ -105877,19 +107234,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [70106] = 6, + [70883] = 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(1615), 1, ts_builtin_sym_end, - STATE(1377), 2, + STATE(1398), 2, sym_comment, sym_include, - ACTIONS(1543), 25, + ACTIONS(1617), 25, sym_identifier, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, @@ -105915,20 +107272,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [70150] = 6, + [70927] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(1961), 1, - ts_builtin_sym_end, - STATE(1378), 2, + STATE(1399), 2, sym_comment, sym_include, - ACTIONS(1853), 25, + 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, @@ -105953,20 +107309,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [70194] = 6, + [70969] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(1859), 1, - ts_builtin_sym_end, - STATE(1379), 2, + STATE(1400), 2, sym_comment, sym_include, - ACTIONS(1861), 25, + ACTIONS(2004), 26, sym_identifier, + aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, aux_sym_variable_definition_token1, @@ -105991,19 +107346,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [70238] = 5, + [71011] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(1380), 2, + ACTIONS(2271), 1, + ts_builtin_sym_end, + STATE(1401), 2, sym_comment, sym_include, - ACTIONS(2263), 26, + ACTIONS(2197), 25, sym_identifier, - aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, aux_sym_variable_definition_token1, @@ -106028,17 +107384,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [70280] = 5, + [71055] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(1381), 2, + STATE(1402), 2, sym_comment, sym_include, - ACTIONS(1726), 26, + ACTIONS(1908), 26, sym_identifier, aux_sym__block_terminator_token1, aux_sym_input_expression_token1, @@ -106065,17 +107421,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [70322] = 5, + [71097] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(1382), 2, + STATE(1403), 2, sym_comment, sym_include, - ACTIONS(1720), 26, + ACTIONS(1729), 26, sym_identifier, aux_sym__block_terminator_token1, aux_sym_input_expression_token1, @@ -106102,93 +107458,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [70364] = 6, + [71139] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(1383), 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, - [70408] = 6, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - ACTIONS(7), 1, - anon_sym_LBRACE, - ACTIONS(203), 2, - sym__or_operator, - sym__and_operator, - STATE(1384), 2, - sym_comment, - sym_include, - ACTIONS(201), 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, - [70452] = 5, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - ACTIONS(7), 1, - anon_sym_LBRACE, - STATE(1385), 2, + STATE(1404), 2, sym_comment, sym_include, - ACTIONS(1716), 26, + ACTIONS(1541), 26, sym_identifier, aux_sym__block_terminator_token1, aux_sym_input_expression_token1, @@ -106215,93 +107495,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [70494] = 6, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - ACTIONS(7), 1, - anon_sym_LBRACE, - ACTIONS(111), 2, - sym__or_operator, - sym__and_operator, - STATE(1386), 2, - sym_comment, - sym_include, - ACTIONS(109), 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, - [70538] = 6, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - ACTIONS(7), 1, - anon_sym_LBRACE, - ACTIONS(191), 2, - sym__or_operator, - sym__and_operator, - STATE(1387), 2, - sym_comment, - sym_include, - ACTIONS(189), 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, - [70582] = 5, + [71181] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(1388), 2, + STATE(1405), 2, sym_comment, sym_include, - ACTIONS(1690), 26, + ACTIONS(1535), 26, sym_identifier, aux_sym__block_terminator_token1, aux_sym_input_expression_token1, @@ -106328,77 +107532,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [70624] = 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(2105), 1, - anon_sym_COMMA, - ACTIONS(2109), 1, - aux_sym_on_error_phrase_token1, - ACTIONS(2111), 1, - aux_sym_where_clause_token1, - ACTIONS(2113), 1, - aux_sym_sort_clause_token1, - ACTIONS(2115), 1, - aux_sym_sort_clause_token2, - ACTIONS(2265), 1, - anon_sym_COLON, - STATE(329), 1, - aux_sym_qualified_name_repeat1, - STATE(1663), 1, - sym_of, - STATE(1684), 1, - sym__pre_tuning, - STATE(1786), 1, - aux_sym_for_phrase_repeat1, - STATE(1789), 1, - sym_where_clause, - STATE(1946), 1, - sym_query_tuning, - STATE(2115), 1, - aux_sym_for_phrase_repeat2, - STATE(2557), 1, - sym_on_error_phrase, - STATE(2783), 1, - sym_sort_clause, - STATE(2795), 1, - sym_on_quit_phrase, - STATE(3148), 1, - aux_sym_for_statement_repeat1, - STATE(3150), 1, - sym_on_stop_phrase, - STATE(1389), 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, - [70708] = 5, + [71223] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(1390), 2, + ACTIONS(1591), 1, + ts_builtin_sym_end, + STATE(1406), 2, sym_comment, sym_include, - ACTIONS(1686), 26, + ACTIONS(1593), 25, sym_identifier, - aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, aux_sym_variable_definition_token1, @@ -106423,20 +107570,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [70750] = 6, + [71267] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(1855), 1, - ts_builtin_sym_end, - STATE(1391), 2, + STATE(1407), 2, sym_comment, sym_include, - ACTIONS(1857), 25, + ACTIONS(1727), 26, sym_identifier, + aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, aux_sym_variable_definition_token1, @@ -106461,20 +107607,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [70794] = 6, + [71309] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(1849), 1, - ts_builtin_sym_end, - STATE(1392), 2, + STATE(1408), 2, sym_comment, sym_include, - ACTIONS(1851), 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, @@ -106499,67 +107644,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [70838] = 15, - ACTIONS(59), 1, - anon_sym_SLASH_SLASH, - ACTIONS(61), 1, - anon_sym_SLASH_STAR, - ACTIONS(65), 1, - anon_sym_LBRACE, - ACTIONS(283), 1, - anon_sym_SLASH, - ACTIONS(285), 1, - anon_sym_STAR, - ACTIONS(2267), 1, - sym__terminator, - STATE(347), 1, - sym__multiplicative_operator, - STATE(375), 1, - sym__comparison_operator, - STATE(408), 1, - sym__additive_operator, - STATE(411), 1, - sym__logical_operator, - ACTIONS(289), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(291), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(295), 2, - sym__or_operator, - sym__and_operator, - STATE(1393), 2, - sym_comment, - sym_include, - ACTIONS(293), 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, - [70900] = 6, + [71351] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(2269), 1, - ts_builtin_sym_end, - STATE(1394), 2, + STATE(1409), 2, sym_comment, sym_include, - ACTIONS(2271), 25, + ACTIONS(1725), 26, sym_identifier, + aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, aux_sym_variable_definition_token1, @@ -106584,143 +107681,94 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [70944] = 6, + [71393] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(179), 2, - sym__or_operator, - sym__and_operator, - STATE(1395), 2, + STATE(1410), 2, sym_comment, sym_include, - ACTIONS(177), 24, - anon_sym_SLASH, + ACTIONS(1723), 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, - [70988] = 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, + [71435] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(77), 2, - sym__or_operator, - sym__and_operator, - STATE(1396), 2, + ACTIONS(2032), 1, + ts_builtin_sym_end, + STATE(1411), 2, sym_comment, sym_include, - ACTIONS(75), 24, - anon_sym_SLASH, + ACTIONS(1713), 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, - [71032] = 15, - ACTIONS(59), 1, - anon_sym_SLASH_SLASH, - ACTIONS(61), 1, - anon_sym_SLASH_STAR, - ACTIONS(65), 1, - anon_sym_LBRACE, - ACTIONS(283), 1, - anon_sym_SLASH, - ACTIONS(285), 1, - anon_sym_STAR, - ACTIONS(2273), 1, - aux_sym_else_if_statement_token1, - STATE(347), 1, - sym__multiplicative_operator, - STATE(375), 1, - sym__comparison_operator, - STATE(408), 1, - sym__additive_operator, - STATE(411), 1, - sym__logical_operator, - ACTIONS(289), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(291), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(295), 2, - sym__or_operator, - sym__and_operator, - STATE(1397), 2, - sym_comment, - sym_include, - ACTIONS(293), 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, - [71094] = 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, + [71479] = 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(1398), 2, + STATE(1412), 2, sym_comment, sym_include, - ACTIONS(1788), 25, + ACTIONS(1721), 26, sym_identifier, + aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, aux_sym_variable_definition_token1, @@ -106745,113 +107793,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [71138] = 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(1399), 2, - sym_comment, - sym_include, - ACTIONS(75), 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, - [71182] = 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(2105), 1, - anon_sym_COMMA, - ACTIONS(2109), 1, - aux_sym_on_error_phrase_token1, - ACTIONS(2111), 1, - aux_sym_where_clause_token1, - ACTIONS(2113), 1, - aux_sym_sort_clause_token1, - ACTIONS(2115), 1, - aux_sym_sort_clause_token2, - ACTIONS(2275), 1, - anon_sym_COLON, - STATE(329), 1, - aux_sym_qualified_name_repeat1, - STATE(1658), 1, - sym_of, - STATE(1677), 1, - sym__pre_tuning, - STATE(1756), 1, - sym_where_clause, - STATE(1761), 1, - aux_sym_for_phrase_repeat1, - STATE(1946), 1, - sym_query_tuning, - STATE(2089), 1, - aux_sym_for_phrase_repeat2, - STATE(2686), 1, - sym_on_error_phrase, - STATE(2783), 1, - sym_sort_clause, - STATE(2794), 1, - sym_on_quit_phrase, - STATE(3239), 1, - aux_sym_for_statement_repeat1, - STATE(3241), 1, - sym_on_stop_phrase, - STATE(1400), 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, - [71266] = 5, + [71521] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(1401), 2, + STATE(1413), 2, sym_comment, sym_include, - ACTIONS(1576), 26, + ACTIONS(1719), 26, sym_identifier, aux_sym__block_terminator_token1, aux_sym_input_expression_token1, @@ -106878,17 +107830,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [71308] = 5, + [71563] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(1402), 2, + STATE(1414), 2, sym_comment, sym_include, - ACTIONS(1578), 26, + ACTIONS(2157), 26, sym_identifier, aux_sym__block_terminator_token1, aux_sym_input_expression_token1, @@ -106915,17 +107867,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [71350] = 5, + [71605] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(1403), 2, + STATE(1415), 2, sym_comment, sym_include, - ACTIONS(1580), 26, + ACTIONS(2153), 26, sym_identifier, aux_sym__block_terminator_token1, aux_sym_input_expression_token1, @@ -106952,19 +107904,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [71392] = 5, + [71647] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(1404), 2, + ACTIONS(1697), 1, + ts_builtin_sym_end, + STATE(1416), 2, sym_comment, sym_include, - ACTIONS(1582), 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, @@ -106989,17 +107942,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [71434] = 5, + [71691] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(1405), 2, + STATE(1417), 2, sym_comment, sym_include, - ACTIONS(1592), 26, + ACTIONS(1531), 26, sym_identifier, aux_sym__block_terminator_token1, aux_sym_input_expression_token1, @@ -107026,19 +107979,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [71476] = 6, + [71733] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(1843), 1, + ACTIONS(1693), 1, ts_builtin_sym_end, - STATE(1406), 2, + STATE(1418), 2, sym_comment, sym_include, - ACTIONS(1845), 25, + ACTIONS(1695), 25, sym_identifier, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, @@ -107064,19 +108017,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [71520] = 6, + [71777] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(1833), 1, + ACTIONS(1942), 1, ts_builtin_sym_end, - STATE(1407), 2, + STATE(1419), 2, sym_comment, sym_include, - ACTIONS(1835), 25, + ACTIONS(1537), 25, sym_identifier, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, @@ -107102,17 +108055,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [71564] = 5, + [71821] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(1408), 2, + STATE(1420), 2, sym_comment, sym_include, - ACTIONS(1594), 26, + ACTIONS(1527), 26, sym_identifier, aux_sym__block_terminator_token1, aux_sym_input_expression_token1, @@ -107139,17 +108092,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [71606] = 5, + [71863] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(1409), 2, + STATE(1421), 2, sym_comment, sym_include, - ACTIONS(1596), 26, + ACTIONS(2000), 26, sym_identifier, aux_sym__block_terminator_token1, aux_sym_input_expression_token1, @@ -107176,64 +108129,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [71648] = 15, - ACTIONS(59), 1, - anon_sym_SLASH_SLASH, - ACTIONS(61), 1, - anon_sym_SLASH_STAR, - ACTIONS(65), 1, - anon_sym_LBRACE, - ACTIONS(283), 1, - anon_sym_SLASH, - ACTIONS(285), 1, - anon_sym_STAR, - ACTIONS(2277), 1, - aux_sym_if_statement_token2, - STATE(347), 1, - sym__multiplicative_operator, - STATE(375), 1, - sym__comparison_operator, - STATE(408), 1, - sym__additive_operator, - STATE(411), 1, - sym__logical_operator, - ACTIONS(289), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(291), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(295), 2, - sym__or_operator, - sym__and_operator, - STATE(1410), 2, - sym_comment, - sym_include, - ACTIONS(293), 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, - [71710] = 5, + [71905] = 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(1422), 2, sym_comment, sym_include, - ACTIONS(1598), 26, + ACTIONS(1998), 26, sym_identifier, aux_sym__block_terminator_token1, aux_sym_input_expression_token1, @@ -107260,17 +108166,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [71752] = 5, + [71947] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(1412), 2, + STATE(1423), 2, sym_comment, sym_include, - ACTIONS(1600), 26, + ACTIONS(1523), 26, sym_identifier, aux_sym__block_terminator_token1, aux_sym_input_expression_token1, @@ -107297,19 +108203,59 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [71794] = 5, + [71989] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(1413), 2, + STATE(1604), 1, + sym_method_tuning, + STATE(1424), 3, sym_comment, sym_include, - ACTIONS(1567), 26, + aux_sym_method_definition_repeat1, + ACTIONS(2275), 4, + aux_sym_scope_tuning_token4, + aux_sym_property_type_token1, + aux_sym_property_type_token2, + aux_sym_method_tuning_token1, + ACTIONS(2273), 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, + [72035] = 6, + 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(1425), 2, + sym_comment, + sym_include, + ACTIONS(1896), 25, sym_identifier, - aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, aux_sym_variable_definition_token1, @@ -107334,43 +108280,32 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [71836] = 15, - ACTIONS(59), 1, + [72079] = 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(283), 1, + STATE(1426), 2, + sym_comment, + sym_include, + ACTIONS(100), 3, + sym__namedot, + sym__or_operator, + sym__and_operator, + ACTIONS(98), 24, anon_sym_SLASH, - ACTIONS(285), 1, + anon_sym_LBRACE, + anon_sym_RBRACE, + sym_identifier, anon_sym_STAR, - ACTIONS(2279), 1, - aux_sym_if_statement_token2, - STATE(347), 1, - sym__multiplicative_operator, - STATE(375), 1, - sym__comparison_operator, - STATE(408), 1, - sym__additive_operator, - STATE(411), 1, - sym__logical_operator, - ACTIONS(289), 2, + anon_sym_DQUOTE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(291), 2, anon_sym_LT, - anon_sym_GT, - ACTIONS(295), 2, - sym__or_operator, - sym__and_operator, - STATE(1414), 2, - sym_comment, - sym_include, - ACTIONS(293), 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, @@ -107381,77 +108316,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - [71898] = 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(2105), 1, - anon_sym_COMMA, - ACTIONS(2109), 1, - aux_sym_on_error_phrase_token1, - ACTIONS(2111), 1, - aux_sym_where_clause_token1, - ACTIONS(2113), 1, - aux_sym_sort_clause_token1, - ACTIONS(2115), 1, - aux_sym_sort_clause_token2, - ACTIONS(2281), 1, - anon_sym_COLON, - STATE(329), 1, - aux_sym_qualified_name_repeat1, - STATE(1676), 1, - sym_of, - STATE(1678), 1, - sym__pre_tuning, - STATE(1742), 1, - sym_where_clause, - STATE(1758), 1, - aux_sym_for_phrase_repeat1, - STATE(1946), 1, - sym_query_tuning, - STATE(2055), 1, - aux_sym_for_phrase_repeat2, - STATE(2619), 1, - sym_on_error_phrase, - STATE(2783), 1, - sym_sort_clause, - STATE(2832), 1, - sym_on_quit_phrase, - STATE(3511), 1, - aux_sym_for_statement_repeat1, - STATE(3516), 1, - sym_on_stop_phrase, - STATE(1415), 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, - [71982] = 6, + aux_sym_include_argument_token1, + [72121] = 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(1882), 1, ts_builtin_sym_end, - STATE(1416), 2, + STATE(1427), 2, sym_comment, sym_include, - ACTIONS(2285), 25, + ACTIONS(1884), 25, sym_identifier, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, @@ -107477,19 +108355,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [72026] = 5, + [72165] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(1417), 2, + ACTIONS(1796), 1, + ts_builtin_sym_end, + STATE(1428), 2, sym_comment, sym_include, - ACTIONS(1604), 26, + ACTIONS(1798), 25, sym_identifier, - aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, aux_sym_variable_definition_token1, @@ -107514,17 +108393,64 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [72068] = 5, + [72209] = 15, + ACTIONS(59), 1, + anon_sym_SLASH_SLASH, + ACTIONS(61), 1, + anon_sym_SLASH_STAR, + ACTIONS(65), 1, + anon_sym_LBRACE, + ACTIONS(227), 1, + anon_sym_SLASH, + ACTIONS(229), 1, + anon_sym_STAR, + ACTIONS(2278), 1, + aux_sym_if_statement_token2, + STATE(401), 1, + sym__logical_operator, + STATE(447), 1, + sym__comparison_operator, + STATE(507), 1, + sym__additive_operator, + STATE(516), 1, + sym__multiplicative_operator, + ACTIONS(233), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(235), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(239), 2, + sym__or_operator, + sym__and_operator, + STATE(1429), 2, + sym_comment, + sym_include, + ACTIONS(237), 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, + [72271] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(1418), 2, + STATE(1430), 2, sym_comment, sym_include, - ACTIONS(2261), 26, + ACTIONS(2231), 26, sym_identifier, aux_sym__block_terminator_token1, aux_sym_input_expression_token1, @@ -107551,19 +108477,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [72110] = 5, + [72313] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(1419), 2, + ACTIONS(1994), 1, + ts_builtin_sym_end, + STATE(1431), 2, sym_comment, sym_include, - ACTIONS(1606), 26, + ACTIONS(1858), 25, sym_identifier, - aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, aux_sym_variable_definition_token1, @@ -107588,19 +108515,57 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [72152] = 6, + [72357] = 6, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(2280), 1, + anon_sym_NO_DASHERROR, + ACTIONS(197), 2, + sym__or_operator, + sym__and_operator, + STATE(1432), 2, + sym_comment, + sym_include, + ACTIONS(195), 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, + [72401] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(2049), 1, + ACTIONS(1878), 1, ts_builtin_sym_end, - STATE(1420), 2, + STATE(1433), 2, sym_comment, sym_include, - ACTIONS(1600), 25, + ACTIONS(1880), 25, sym_identifier, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, @@ -107626,19 +108591,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [72196] = 5, + [72445] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(1421), 2, + ACTIONS(1800), 1, + ts_builtin_sym_end, + STATE(1434), 2, sym_comment, sym_include, - ACTIONS(1565), 26, + ACTIONS(1802), 25, sym_identifier, - aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, aux_sym_variable_definition_token1, @@ -107663,19 +108629,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [72238] = 6, + [72489] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(1684), 1, + ACTIONS(2044), 1, ts_builtin_sym_end, - STATE(1422), 2, + STATE(1435), 2, sym_comment, sym_include, - ACTIONS(1686), 25, + ACTIONS(1996), 25, sym_identifier, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, @@ -107701,19 +108667,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [72282] = 5, + [72533] = 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(1874), 1, + ts_builtin_sym_end, + STATE(1436), 2, sym_comment, sym_include, - ACTIONS(1555), 26, + ACTIONS(1876), 25, sym_identifier, - aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, aux_sym_variable_definition_token1, @@ -107738,19 +108705,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [72324] = 6, + [72577] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(2075), 1, + ACTIONS(1804), 1, ts_builtin_sym_end, - STATE(1424), 2, + STATE(1437), 2, sym_comment, sym_include, - ACTIONS(1598), 25, + ACTIONS(1806), 25, sym_identifier, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, @@ -107776,19 +108743,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [72368] = 5, + [72621] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(1425), 2, + ACTIONS(1864), 1, + ts_builtin_sym_end, + STATE(1438), 2, sym_comment, sym_include, - ACTIONS(1612), 26, + ACTIONS(1866), 25, sym_identifier, - aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, aux_sym_variable_definition_token1, @@ -107813,19 +108781,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [72410] = 6, + [72665] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(1688), 1, + ACTIONS(2063), 1, ts_builtin_sym_end, - STATE(1426), 2, + STATE(1439), 2, sym_comment, sym_include, - ACTIONS(1690), 25, + ACTIONS(1998), 25, sym_identifier, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, @@ -107851,43 +108819,33 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [72454] = 15, - ACTIONS(59), 1, + [72709] = 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(283), 1, + ACTIONS(2282), 1, + anon_sym_NO_DASHERROR, + ACTIONS(529), 2, + sym__or_operator, + sym__and_operator, + STATE(1440), 2, + sym_comment, + sym_include, + ACTIONS(527), 24, anon_sym_SLASH, - ACTIONS(285), 1, + anon_sym_LBRACE, + anon_sym_RBRACE, + sym_identifier, anon_sym_STAR, - ACTIONS(2287), 1, - aux_sym_if_statement_token2, - STATE(347), 1, - sym__multiplicative_operator, - STATE(375), 1, - sym__comparison_operator, - STATE(408), 1, - sym__additive_operator, - STATE(411), 1, - sym__logical_operator, - ACTIONS(289), 2, + anon_sym_DQUOTE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(291), 2, anon_sym_LT, - anon_sym_GT, - ACTIONS(295), 2, - sym__or_operator, - sym__and_operator, - STATE(1427), 2, - sym_comment, - sym_include, - ACTIONS(293), 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, @@ -107898,19 +108856,21 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - [72516] = 5, + aux_sym_include_argument_token1, + [72753] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(1428), 2, + ACTIONS(1808), 1, + ts_builtin_sym_end, + STATE(1441), 2, sym_comment, sym_include, - ACTIONS(1614), 26, + ACTIONS(1810), 25, sym_identifier, - aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, aux_sym_variable_definition_token1, @@ -107935,17 +108895,56 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [72558] = 5, + [72797] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(1429), 2, + ACTIONS(2284), 1, + sym__namedot, + ACTIONS(100), 2, + sym__or_operator, + sym__and_operator, + STATE(1442), 3, + sym_comment, + sym_include, + aux_sym_qualified_name_repeat1, + 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, + [72843] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_LBRACE, + STATE(1443), 2, sym_comment, sym_include, - ACTIONS(1616), 26, + ACTIONS(2002), 26, sym_identifier, aux_sym__block_terminator_token1, aux_sym_input_expression_token1, @@ -107972,17 +108971,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [72600] = 5, + [72885] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(1430), 2, + STATE(1444), 2, sym_comment, sym_include, - ACTIONS(2217), 26, + ACTIONS(1717), 26, sym_identifier, aux_sym__block_terminator_token1, aux_sym_input_expression_token1, @@ -108009,17 +109008,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [72642] = 5, + [72927] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(1431), 2, + STATE(1445), 2, sym_comment, sym_include, - ACTIONS(1620), 26, + ACTIONS(1519), 26, sym_identifier, aux_sym__block_terminator_token1, aux_sym_input_expression_token1, @@ -108046,17 +109045,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [72684] = 5, + [72969] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(1432), 2, + STATE(1446), 2, sym_comment, sym_include, - ACTIONS(2213), 26, + ACTIONS(1715), 26, sym_identifier, aux_sym__block_terminator_token1, aux_sym_input_expression_token1, @@ -108083,20 +109082,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [72726] = 6, + [73011] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(1873), 1, - ts_builtin_sym_end, - STATE(1433), 2, + STATE(1447), 2, sym_comment, sym_include, - ACTIONS(1551), 25, + ACTIONS(1858), 26, sym_identifier, + aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, aux_sym_variable_definition_token1, @@ -108121,17 +109119,102 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [72770] = 5, + [73053] = 15, + ACTIONS(59), 1, + anon_sym_SLASH_SLASH, + ACTIONS(61), 1, + anon_sym_SLASH_STAR, + ACTIONS(65), 1, + anon_sym_LBRACE, + ACTIONS(227), 1, + anon_sym_SLASH, + ACTIONS(229), 1, + anon_sym_STAR, + ACTIONS(2287), 1, + aux_sym_else_if_statement_token1, + STATE(401), 1, + sym__logical_operator, + STATE(447), 1, + sym__comparison_operator, + STATE(507), 1, + sym__additive_operator, + STATE(516), 1, + sym__multiplicative_operator, + ACTIONS(233), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(235), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(239), 2, + sym__or_operator, + sym__and_operator, + STATE(1448), 2, + sym_comment, + sym_include, + ACTIONS(237), 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, + [73115] = 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(197), 2, + sym__or_operator, + sym__and_operator, + STATE(1449), 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, + [73159] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_LBRACE, + STATE(1450), 2, sym_comment, sym_include, - ACTIONS(2209), 26, + ACTIONS(2105), 26, sym_identifier, aux_sym__block_terminator_token1, aux_sym_input_expression_token1, @@ -108158,17 +109241,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [72812] = 5, + [73201] = 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(1451), 2, sym_comment, sym_include, - ACTIONS(1622), 26, + ACTIONS(1970), 26, sym_identifier, aux_sym__block_terminator_token1, aux_sym_input_expression_token1, @@ -108195,17 +109278,95 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [72854] = 5, + [73243] = 8, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(1436), 2, + ACTIONS(1476), 1, + sym__namedot, + STATE(1389), 1, + aux_sym_qualified_name_repeat1, + ACTIONS(89), 2, + sym__or_operator, + sym__and_operator, + STATE(1452), 2, sym_comment, sym_include, - ACTIONS(1553), 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, + [73291] = 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(1453), 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, + [73335] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_LBRACE, + STATE(1454), 2, + sym_comment, + sym_include, + ACTIONS(1940), 26, sym_identifier, aux_sym__block_terminator_token1, aux_sym_input_expression_token1, @@ -108232,17 +109393,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [72896] = 5, + [73377] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(1437), 2, + STATE(1455), 2, sym_comment, sym_include, - ACTIONS(1549), 26, + ACTIONS(2101), 26, sym_identifier, aux_sym__block_terminator_token1, aux_sym_input_expression_token1, @@ -108269,17 +109430,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [72938] = 5, + [73419] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(1438), 2, + STATE(1456), 2, sym_comment, sym_include, - ACTIONS(1644), 26, + ACTIONS(1713), 26, sym_identifier, aux_sym__block_terminator_token1, aux_sym_input_expression_token1, @@ -108306,17 +109467,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [72980] = 5, + [73461] = 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(1457), 2, sym_comment, sym_include, - ACTIONS(2154), 26, + ACTIONS(1711), 26, sym_identifier, aux_sym__block_terminator_token1, aux_sym_input_expression_token1, @@ -108343,64 +109504,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [73022] = 15, - ACTIONS(59), 1, - anon_sym_SLASH_SLASH, - ACTIONS(61), 1, - anon_sym_SLASH_STAR, - ACTIONS(65), 1, - anon_sym_LBRACE, - ACTIONS(283), 1, - anon_sym_SLASH, - ACTIONS(285), 1, - anon_sym_STAR, - ACTIONS(2289), 1, - aux_sym_if_statement_token2, - STATE(347), 1, - sym__multiplicative_operator, - STATE(375), 1, - sym__comparison_operator, - STATE(408), 1, - sym__additive_operator, - STATE(411), 1, - sym__logical_operator, - ACTIONS(289), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(291), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(295), 2, - sym__or_operator, - sym__and_operator, - STATE(1440), 2, - sym_comment, - sym_include, - ACTIONS(293), 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, - [73084] = 5, + [73503] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(1441), 2, + STATE(1458), 2, sym_comment, sym_include, - ACTIONS(2150), 26, + ACTIONS(1705), 26, sym_identifier, aux_sym__block_terminator_token1, aux_sym_input_expression_token1, @@ -108427,17 +109541,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [73126] = 5, + [73545] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(1442), 2, + STATE(1459), 2, sym_comment, sym_include, - ACTIONS(1646), 26, + ACTIONS(1629), 26, sym_identifier, aux_sym__block_terminator_token1, aux_sym_input_expression_token1, @@ -108464,75 +109578,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [73168] = 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(2105), 1, - anon_sym_COMMA, - ACTIONS(2109), 1, - aux_sym_on_error_phrase_token1, - ACTIONS(2111), 1, - aux_sym_where_clause_token1, - ACTIONS(2113), 1, - aux_sym_sort_clause_token1, - ACTIONS(2115), 1, - aux_sym_sort_clause_token2, - ACTIONS(2291), 1, - anon_sym_COLON, - STATE(329), 1, - aux_sym_qualified_name_repeat1, - STATE(1652), 1, - sym_of, - STATE(1694), 1, - sym__pre_tuning, - STATE(1737), 1, - aux_sym_for_phrase_repeat1, - STATE(1738), 1, - sym_where_clause, - STATE(1946), 1, - sym_query_tuning, - STATE(2111), 1, - aux_sym_for_phrase_repeat2, - STATE(2593), 1, - sym_on_error_phrase, - STATE(2778), 1, - sym_on_quit_phrase, - STATE(2783), 1, - sym_sort_clause, - STATE(3140), 1, - sym_on_stop_phrase, - STATE(3141), 1, - aux_sym_for_statement_repeat1, - STATE(1443), 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, - [73252] = 5, + [73587] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(1444), 2, + STATE(1460), 2, sym_comment, sym_include, - ACTIONS(1648), 26, + ACTIONS(1701), 26, sym_identifier, aux_sym__block_terminator_token1, aux_sym_input_expression_token1, @@ -108559,57 +109615,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [73294] = 6, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - ACTIONS(2293), 1, - anon_sym_NO_DASHERROR, - ACTIONS(207), 2, - sym__or_operator, - sym__and_operator, - STATE(1445), 2, - sym_comment, - sym_include, - ACTIONS(205), 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, - [73338] = 6, + [73629] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(1714), 1, + ACTIONS(1860), 1, ts_builtin_sym_end, - STATE(1446), 2, + STATE(1461), 2, sym_comment, sym_include, - ACTIONS(1716), 25, + ACTIONS(1862), 25, sym_identifier, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, @@ -108635,19 +109653,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [73382] = 6, + [73673] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(1953), 1, + ACTIONS(1854), 1, ts_builtin_sym_end, - STATE(1447), 2, + STATE(1462), 2, sym_comment, sym_include, - ACTIONS(1909), 25, + ACTIONS(1856), 25, sym_identifier, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, @@ -108673,19 +109691,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [73426] = 6, + [73717] = 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(1850), 1, ts_builtin_sym_end, - STATE(1448), 2, + STATE(1463), 2, sym_comment, sym_include, - ACTIONS(1790), 25, + ACTIONS(1852), 25, sym_identifier, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, @@ -108711,19 +109729,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [73470] = 5, + [73761] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(1449), 2, + ACTIONS(1812), 1, + ts_builtin_sym_end, + STATE(1464), 2, sym_comment, sym_include, - ACTIONS(2142), 26, + ACTIONS(1814), 25, sym_identifier, - aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, aux_sym_variable_definition_token1, @@ -108748,19 +109767,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [73512] = 5, + [73805] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(1450), 2, + ACTIONS(1846), 1, + ts_builtin_sym_end, + STATE(1465), 2, sym_comment, sym_include, - ACTIONS(1650), 26, + ACTIONS(1848), 25, sym_identifier, - aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, aux_sym_variable_definition_token1, @@ -108785,64 +109805,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [73554] = 15, - ACTIONS(59), 1, - anon_sym_SLASH_SLASH, - ACTIONS(61), 1, - anon_sym_SLASH_STAR, - ACTIONS(65), 1, - anon_sym_LBRACE, - ACTIONS(283), 1, - anon_sym_SLASH, - ACTIONS(285), 1, - anon_sym_STAR, - ACTIONS(2295), 1, - anon_sym_RPAREN, - STATE(347), 1, - sym__multiplicative_operator, - STATE(375), 1, - sym__comparison_operator, - STATE(408), 1, - sym__additive_operator, - STATE(411), 1, - sym__logical_operator, - ACTIONS(289), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(291), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(295), 2, - sym__or_operator, - sym__and_operator, - STATE(1451), 2, - sym_comment, - sym_include, - ACTIONS(293), 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, - [73616] = 5, + [73849] = 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(1466), 2, sym_comment, sym_include, - ACTIONS(1652), 26, + ACTIONS(2267), 26, sym_identifier, aux_sym__block_terminator_token1, aux_sym_input_expression_token1, @@ -108869,17 +109842,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [73658] = 5, + [73891] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(1453), 2, + STATE(1467), 2, sym_comment, sym_include, - ACTIONS(1545), 26, + ACTIONS(2221), 26, sym_identifier, aux_sym__block_terminator_token1, aux_sym_input_expression_token1, @@ -108906,56 +109879,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [73700] = 5, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - STATE(1454), 2, - sym_comment, - sym_include, - ACTIONS(104), 3, - sym__namedot, - sym__or_operator, - sym__and_operator, - ACTIONS(102), 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, - [73742] = 6, + [73933] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(1863), 1, + ACTIONS(2289), 1, ts_builtin_sym_end, - STATE(1455), 2, + STATE(1468), 2, sym_comment, sym_include, - ACTIONS(1539), 25, + ACTIONS(2175), 25, sym_identifier, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, @@ -108981,17 +109917,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [73786] = 5, + [73977] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(1456), 2, + STATE(1469), 2, sym_comment, sym_include, - ACTIONS(1535), 26, + ACTIONS(1597), 26, sym_identifier, aux_sym__block_terminator_token1, aux_sym_input_expression_token1, @@ -109018,43 +109954,31 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [73828] = 15, - ACTIONS(59), 1, + [74019] = 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(283), 1, + ACTIONS(193), 2, + sym__or_operator, + sym__and_operator, + STATE(1470), 2, + sym_comment, + sym_include, + ACTIONS(191), 24, anon_sym_SLASH, - ACTIONS(285), 1, + sym_identifier, anon_sym_STAR, - ACTIONS(2297), 1, - anon_sym_RPAREN, - STATE(347), 1, - sym__multiplicative_operator, - STATE(375), 1, - sym__comparison_operator, - STATE(408), 1, - sym__additive_operator, - STATE(411), 1, - sym__logical_operator, - ACTIONS(289), 2, + aux_sym_input_expression_token2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(291), 2, anon_sym_LT, - anon_sym_GT, - ACTIONS(295), 2, - sym__or_operator, - sym__and_operator, - STATE(1457), 2, - sym_comment, - sym_include, - ACTIONS(293), 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, @@ -109065,19 +109989,23 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - [73890] = 5, + anon_sym_COMMA, + aux_sym_do_block_token1, + aux_sym_widget_field_token1, + [74063] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(1458), 2, + ACTIONS(1599), 1, + ts_builtin_sym_end, + STATE(1471), 2, sym_comment, sym_include, - ACTIONS(1531), 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, @@ -109102,19 +110030,139 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [73932] = 5, + [74107] = 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(2291), 1, + anon_sym_LPAREN, + STATE(4), 1, + aux_sym_qualified_name_repeat1, + STATE(9), 1, + aux_sym_object_access_repeat1, + STATE(1472), 2, + sym_comment, + sym_include, + ACTIONS(63), 3, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(67), 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, + [74161] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(1459), 2, + ACTIONS(121), 2, + sym__or_operator, + sym__and_operator, + STATE(1473), 2, sym_comment, sym_include, - ACTIONS(1790), 26, + ACTIONS(119), 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, + [74205] = 6, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_LBRACE, + ACTIONS(143), 2, + sym__or_operator, + sym__and_operator, + STATE(1474), 2, + sym_comment, + sym_include, + ACTIONS(141), 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, + [74249] = 6, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_LBRACE, + ACTIONS(1689), 1, + ts_builtin_sym_end, + STATE(1475), 2, + sym_comment, + sym_include, + ACTIONS(1691), 25, sym_identifier, - aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, aux_sym_variable_definition_token1, @@ -109139,19 +110187,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [73974] = 5, + [74293] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(1460), 2, + ACTIONS(2061), 1, + ts_builtin_sym_end, + STATE(1476), 2, sym_comment, sym_include, - ACTIONS(1664), 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, @@ -109176,19 +110225,57 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [74016] = 6, + [74337] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(2073), 1, + ACTIONS(185), 2, + sym__or_operator, + sym__and_operator, + STATE(1477), 2, + sym_comment, + sym_include, + ACTIONS(183), 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, + [74381] = 6, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_LBRACE, + ACTIONS(1703), 1, ts_builtin_sym_end, - STATE(1461), 2, + STATE(1478), 2, sym_comment, sym_include, - ACTIONS(1596), 25, + ACTIONS(1705), 25, sym_identifier, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, @@ -109214,19 +110301,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [74060] = 5, + [74425] = 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(2059), 1, + ts_builtin_sym_end, + STATE(1479), 2, sym_comment, sym_include, - ACTIONS(2079), 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, @@ -109251,20 +110339,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [74102] = 6, + [74469] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(2299), 1, - ts_builtin_sym_end, - STATE(1463), 2, + STATE(1480), 2, sym_comment, sym_include, - ACTIONS(2221), 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, @@ -109289,20 +110376,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [74146] = 6, + [74511] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(2071), 1, - ts_builtin_sym_end, - STATE(1464), 2, + STATE(1481), 2, sym_comment, sym_include, - ACTIONS(1594), 25, + ACTIONS(2141), 26, sym_identifier, + aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, aux_sym_variable_definition_token1, @@ -109327,17 +110413,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [74190] = 5, + [74553] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(1465), 2, + STATE(1482), 2, sym_comment, sym_include, - ACTIONS(1788), 26, + ACTIONS(1868), 26, sym_identifier, aux_sym__block_terminator_token1, aux_sym_input_expression_token1, @@ -109364,55 +110450,75 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [74232] = 6, - ACTIONS(3), 1, + [74595] = 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, - ACTIONS(2301), 1, - ts_builtin_sym_end, - STATE(1466), 2, + ACTIONS(679), 1, + sym__namedot, + ACTIONS(1201), 1, + aux_sym_query_tuning_token5, + ACTIONS(1203), 1, + aux_sym_of_token1, + ACTIONS(2109), 1, + anon_sym_COMMA, + ACTIONS(2113), 1, + aux_sym_on_error_phrase_token1, + ACTIONS(2115), 1, + aux_sym_where_clause_token1, + ACTIONS(2117), 1, + aux_sym_sort_clause_token1, + ACTIONS(2119), 1, + aux_sym_sort_clause_token2, + ACTIONS(2293), 1, + anon_sym_COLON, + STATE(336), 1, + aux_sym_qualified_name_repeat1, + STATE(1660), 1, + sym_of, + STATE(1691), 1, + sym__pre_tuning, + STATE(1784), 1, + sym_where_clause, + STATE(1787), 1, + aux_sym_for_phrase_repeat1, + STATE(1962), 1, + sym_query_tuning, + STATE(2096), 1, + aux_sym_for_phrase_repeat2, + STATE(2697), 1, + sym_on_error_phrase, + STATE(2934), 1, + sym_sort_clause, + STATE(2942), 1, + sym_on_quit_phrase, + STATE(3252), 1, + sym_on_stop_phrase, + STATE(3255), 1, + aux_sym_for_statement_repeat1, + STATE(1483), 2, sym_comment, sym_include, - ACTIONS(2123), 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, - [74276] = 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, + [74679] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(1467), 2, + STATE(1484), 2, sym_comment, sym_include, - ACTIONS(2285), 26, + ACTIONS(1872), 26, sym_identifier, aux_sym__block_terminator_token1, aux_sym_input_expression_token1, @@ -109439,17 +110545,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [74318] = 5, + [74721] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(1468), 2, + STATE(1485), 2, sym_comment, sym_include, - ACTIONS(1668), 26, + ACTIONS(1902), 26, sym_identifier, aux_sym__block_terminator_token1, aux_sym_input_expression_token1, @@ -109476,56 +110582,67 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [74360] = 5, - ACTIONS(3), 1, + [74763] = 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(1469), 2, + ACTIONS(227), 1, + anon_sym_SLASH, + ACTIONS(229), 1, + anon_sym_STAR, + ACTIONS(2295), 1, + aux_sym_if_statement_token2, + STATE(401), 1, + sym__logical_operator, + STATE(447), 1, + sym__comparison_operator, + STATE(507), 1, + sym__additive_operator, + STATE(516), 1, + sym__multiplicative_operator, + ACTIONS(233), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(235), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(239), 2, + sym__or_operator, + sym__and_operator, + STATE(1486), 2, sym_comment, sym_include, - ACTIONS(1672), 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, - [74402] = 5, + ACTIONS(237), 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, + [74825] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(1470), 2, + ACTIONS(1707), 1, + ts_builtin_sym_end, + STATE(1487), 2, sym_comment, sym_include, - ACTIONS(1823), 26, + ACTIONS(1709), 25, sym_identifier, - aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, aux_sym_variable_definition_token1, @@ -109550,54 +110667,75 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [74444] = 5, - ACTIONS(3), 1, + [74869] = 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(1471), 2, + ACTIONS(679), 1, + sym__namedot, + ACTIONS(1201), 1, + aux_sym_query_tuning_token5, + ACTIONS(1203), 1, + aux_sym_of_token1, + ACTIONS(2109), 1, + anon_sym_COMMA, + ACTIONS(2113), 1, + aux_sym_on_error_phrase_token1, + ACTIONS(2115), 1, + aux_sym_where_clause_token1, + ACTIONS(2117), 1, + aux_sym_sort_clause_token1, + ACTIONS(2119), 1, + aux_sym_sort_clause_token2, + ACTIONS(2297), 1, + anon_sym_COLON, + STATE(336), 1, + aux_sym_qualified_name_repeat1, + STATE(1665), 1, + sym_of, + STATE(1701), 1, + sym__pre_tuning, + STATE(1792), 1, + sym_where_clause, + STATE(1795), 1, + aux_sym_for_phrase_repeat1, + STATE(1962), 1, + sym_query_tuning, + STATE(2058), 1, + aux_sym_for_phrase_repeat2, + STATE(2755), 1, + sym_on_error_phrase, + STATE(2852), 1, + sym_on_quit_phrase, + STATE(2934), 1, + sym_sort_clause, + STATE(3337), 1, + aux_sym_for_statement_repeat1, + STATE(3339), 1, + sym_on_stop_phrase, + STATE(1488), 2, sym_comment, sym_include, - ACTIONS(1674), 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, - [74486] = 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, + [74953] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(1472), 2, + STATE(1489), 2, sym_comment, sym_include, - ACTIONS(1676), 26, + ACTIONS(1900), 26, sym_identifier, aux_sym__block_terminator_token1, aux_sym_input_expression_token1, @@ -109624,19 +110762,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [74528] = 6, + [74995] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(1718), 1, + ACTIONS(1635), 1, ts_builtin_sym_end, - STATE(1473), 2, + STATE(1490), 2, sym_comment, sym_include, - ACTIONS(1720), 25, + ACTIONS(1637), 25, sym_identifier, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, @@ -109662,129 +110800,140 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [74572] = 5, - ACTIONS(3), 1, + [75039] = 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(1474), 2, + ACTIONS(227), 1, + anon_sym_SLASH, + ACTIONS(229), 1, + anon_sym_STAR, + ACTIONS(2299), 1, + anon_sym_LPAREN, + STATE(401), 1, + sym__logical_operator, + STATE(447), 1, + sym__comparison_operator, + STATE(507), 1, + sym__additive_operator, + STATE(516), 1, + sym__multiplicative_operator, + ACTIONS(233), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(235), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(239), 2, + sym__or_operator, + sym__and_operator, + STATE(1491), 2, sym_comment, sym_include, - ACTIONS(2134), 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, - [74614] = 6, + ACTIONS(237), 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, + [75101] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(1628), 1, - ts_builtin_sym_end, - STATE(1475), 2, + ACTIONS(155), 2, + sym__or_operator, + sym__and_operator, + STATE(1492), 2, sym_comment, sym_include, - ACTIONS(1630), 25, + ACTIONS(153), 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, - [74658] = 5, + aux_sym_widget_field_token1, + [75145] = 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(213), 2, + sym__or_operator, + sym__and_operator, + STATE(1493), 2, sym_comment, sym_include, - ACTIONS(1660), 26, + ACTIONS(211), 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, - [74700] = 5, + aux_sym_widget_field_token1, + [75189] = 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(1494), 2, sym_comment, sym_include, - ACTIONS(2138), 26, + ACTIONS(1898), 26, sym_identifier, aux_sym__block_terminator_token1, aux_sym_input_expression_token1, @@ -109811,17 +110960,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [74742] = 5, + [75231] = 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(1495), 2, sym_comment, sym_include, - ACTIONS(1678), 26, + ACTIONS(1958), 26, sym_identifier, aux_sym__block_terminator_token1, aux_sym_input_expression_token1, @@ -109848,17 +110997,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [74784] = 5, + [75273] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(1479), 2, + STATE(1496), 2, sym_comment, sym_include, - ACTIONS(1692), 26, + ACTIONS(1661), 26, sym_identifier, aux_sym__block_terminator_token1, aux_sym_input_expression_token1, @@ -109885,17 +111034,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [74826] = 5, + [75315] = 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(1497), 2, sym_comment, sym_include, - ACTIONS(1529), 26, + ACTIONS(1838), 26, sym_identifier, aux_sym__block_terminator_token1, aux_sym_input_expression_token1, @@ -109922,19 +111071,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [74868] = 6, + [75357] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(1819), 1, + ACTIONS(1681), 1, ts_builtin_sym_end, - STATE(1481), 2, + STATE(1498), 2, sym_comment, sym_include, - ACTIONS(1821), 25, + ACTIONS(1683), 25, sym_identifier, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, @@ -109960,17 +111109,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [74912] = 5, + [75401] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(1482), 2, + STATE(1499), 2, sym_comment, sym_include, - ACTIONS(1527), 26, + ACTIONS(1892), 26, sym_identifier, aux_sym__block_terminator_token1, aux_sym_input_expression_token1, @@ -109997,20 +111146,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [74954] = 6, + [75443] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(1809), 1, - ts_builtin_sym_end, - STATE(1483), 2, + STATE(1500), 2, sym_comment, sym_include, - ACTIONS(1811), 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, @@ -110035,17 +111183,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [74998] = 5, + [75485] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(1484), 2, + STATE(1501), 2, sym_comment, sym_include, - ACTIONS(1521), 26, + ACTIONS(1659), 26, sym_identifier, aux_sym__block_terminator_token1, aux_sym_input_expression_token1, @@ -110072,17 +111220,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [75040] = 5, + [75527] = 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(1502), 2, sym_comment, sym_include, - ACTIONS(1702), 26, + ACTIONS(1651), 26, sym_identifier, aux_sym__block_terminator_token1, aux_sym_input_expression_token1, @@ -110109,17 +111257,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [75082] = 5, + [75569] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(1486), 2, + STATE(1503), 2, sym_comment, sym_include, - ACTIONS(1638), 26, + ACTIONS(2145), 26, sym_identifier, aux_sym__block_terminator_token1, aux_sym_input_expression_token1, @@ -110146,40 +111294,40 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [75124] = 15, + [75611] = 15, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(283), 1, + ACTIONS(227), 1, anon_sym_SLASH, - ACTIONS(285), 1, + ACTIONS(229), 1, anon_sym_STAR, - ACTIONS(2303), 1, - aux_sym_else_if_statement_token1, - STATE(347), 1, - sym__multiplicative_operator, - STATE(375), 1, + ACTIONS(2301), 1, + sym__terminator, + STATE(401), 1, + sym__logical_operator, + STATE(447), 1, sym__comparison_operator, - STATE(408), 1, + STATE(507), 1, sym__additive_operator, - STATE(411), 1, - sym__logical_operator, - ACTIONS(289), 2, + STATE(516), 1, + sym__multiplicative_operator, + ACTIONS(233), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(291), 2, + ACTIONS(235), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(295), 2, + ACTIONS(239), 2, sym__or_operator, sym__and_operator, - STATE(1487), 2, + STATE(1504), 2, sym_comment, sym_include, - ACTIONS(293), 13, + ACTIONS(237), 13, anon_sym_LT_EQ, anon_sym_LT_GT, anon_sym_EQ, @@ -110193,19 +111341,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - [75186] = 5, + [75673] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(1488), 2, + ACTIONS(2079), 1, + ts_builtin_sym_end, + STATE(1505), 2, sym_comment, sym_include, - ACTIONS(1630), 26, + ACTIONS(1649), 25, sym_identifier, - aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, aux_sym_variable_definition_token1, @@ -110230,17 +111379,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [75228] = 5, + [75717] = 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(1506), 2, sym_comment, sym_include, - ACTIONS(1706), 26, + ACTIONS(1649), 26, sym_identifier, aux_sym__block_terminator_token1, aux_sym_input_expression_token1, @@ -110267,19 +111416,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [75270] = 6, + [75759] = 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(2055), 1, ts_builtin_sym_end, - STATE(1490), 2, + STATE(1507), 2, sym_comment, sym_include, - ACTIONS(1817), 25, + ACTIONS(2002), 25, sym_identifier, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, @@ -110305,19 +111454,78 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [75314] = 5, + [75803] = 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(2109), 1, + anon_sym_COMMA, + ACTIONS(2113), 1, + aux_sym_on_error_phrase_token1, + ACTIONS(2115), 1, + aux_sym_where_clause_token1, + ACTIONS(2117), 1, + aux_sym_sort_clause_token1, + ACTIONS(2119), 1, + aux_sym_sort_clause_token2, + ACTIONS(2303), 1, + anon_sym_COLON, + STATE(336), 1, + aux_sym_qualified_name_repeat1, + STATE(1663), 1, + sym_of, + STATE(1694), 1, + sym__pre_tuning, + STATE(1766), 1, + aux_sym_for_phrase_repeat1, + STATE(1778), 1, + sym_where_clause, + STATE(1962), 1, + sym_query_tuning, + STATE(2097), 1, + aux_sym_for_phrase_repeat2, + STATE(2706), 1, + sym_on_error_phrase, + STATE(2934), 1, + sym_sort_clause, + STATE(2935), 1, + sym_on_quit_phrase, + STATE(3507), 1, + aux_sym_for_statement_repeat1, + STATE(3508), 1, + sym_on_stop_phrase, + STATE(1508), 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, + [75887] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(1491), 2, + ACTIONS(2051), 1, + ts_builtin_sym_end, + STATE(1509), 2, sym_comment, sym_include, - ACTIONS(1626), 26, + ACTIONS(2004), 25, sym_identifier, - aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, aux_sym_variable_definition_token1, @@ -110342,19 +111550,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [75356] = 6, + [75931] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(2067), 1, + ACTIONS(1603), 1, ts_builtin_sym_end, - STATE(1492), 2, + STATE(1510), 2, sym_comment, sym_include, - ACTIONS(1592), 25, + ACTIONS(1605), 25, sym_identifier, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, @@ -110380,43 +111588,33 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [75400] = 15, - ACTIONS(59), 1, + [75975] = 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(283), 1, - anon_sym_SLASH, - ACTIONS(285), 1, - anon_sym_STAR, ACTIONS(2305), 1, - anon_sym_RPAREN, - STATE(347), 1, - sym__multiplicative_operator, - STATE(375), 1, - sym__comparison_operator, - STATE(408), 1, - sym__additive_operator, - STATE(411), 1, - sym__logical_operator, - ACTIONS(289), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(291), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(295), 2, + aux_sym_function_call_token1, + ACTIONS(155), 2, sym__or_operator, sym__and_operator, - STATE(1493), 2, + STATE(1511), 2, sym_comment, sym_include, - ACTIONS(293), 13, + 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, @@ -110427,19 +111625,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - [75462] = 6, + aux_sym_include_argument_token1, + [76019] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(2063), 1, + ACTIONS(2046), 1, ts_builtin_sym_end, - STATE(1494), 2, + STATE(1512), 2, sym_comment, sym_include, - ACTIONS(1582), 25, + ACTIONS(1701), 25, sym_identifier, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, @@ -110465,17 +111664,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [75506] = 5, + [76063] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(1495), 2, + STATE(1513), 2, sym_comment, sym_include, - ACTIONS(1710), 26, + ACTIONS(2165), 26, sym_identifier, aux_sym__block_terminator_token1, aux_sym_input_expression_token1, @@ -110502,19 +111701,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [75548] = 6, + [76105] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(1869), 1, + ACTIONS(1677), 1, ts_builtin_sym_end, - STATE(1496), 2, + STATE(1514), 2, sym_comment, sym_include, - ACTIONS(1541), 25, + ACTIONS(1679), 25, sym_identifier, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, @@ -110540,19 +111739,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [75592] = 5, + [76149] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(1497), 2, + ACTIONS(1685), 1, + ts_builtin_sym_end, + STATE(1515), 2, sym_comment, sym_include, - ACTIONS(2175), 26, + ACTIONS(1687), 25, sym_identifier, - aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, aux_sym_variable_definition_token1, @@ -110577,40 +111777,87 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [75634] = 15, + [76193] = 15, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(283), 1, + ACTIONS(227), 1, anon_sym_SLASH, - ACTIONS(285), 1, + ACTIONS(229), 1, anon_sym_STAR, ACTIONS(2307), 1, - aux_sym_if_statement_token2, - STATE(347), 1, - sym__multiplicative_operator, - STATE(375), 1, + aux_sym_else_if_statement_token1, + STATE(401), 1, + sym__logical_operator, + STATE(447), 1, sym__comparison_operator, - STATE(408), 1, + STATE(507), 1, sym__additive_operator, - STATE(411), 1, + STATE(516), 1, + sym__multiplicative_operator, + ACTIONS(233), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(235), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(239), 2, + sym__or_operator, + sym__and_operator, + STATE(1516), 2, + sym_comment, + sym_include, + ACTIONS(237), 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, + [76255] = 15, + ACTIONS(59), 1, + anon_sym_SLASH_SLASH, + ACTIONS(61), 1, + anon_sym_SLASH_STAR, + ACTIONS(65), 1, + anon_sym_LBRACE, + ACTIONS(227), 1, + anon_sym_SLASH, + ACTIONS(229), 1, + anon_sym_STAR, + ACTIONS(2309), 1, + aux_sym_if_statement_token2, + STATE(401), 1, sym__logical_operator, - ACTIONS(289), 2, + STATE(447), 1, + sym__comparison_operator, + STATE(507), 1, + sym__additive_operator, + STATE(516), 1, + sym__multiplicative_operator, + ACTIONS(233), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(291), 2, + ACTIONS(235), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(295), 2, + ACTIONS(239), 2, sym__or_operator, sym__and_operator, - STATE(1498), 2, + STATE(1517), 2, sym_comment, sym_include, - ACTIONS(293), 13, + ACTIONS(237), 13, anon_sym_LT_EQ, anon_sym_LT_GT, anon_sym_EQ, @@ -110624,17 +111871,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - [75696] = 5, + [76317] = 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(1518), 2, sym_comment, sym_include, - ACTIONS(1712), 26, + ACTIONS(1964), 26, sym_identifier, aux_sym__block_terminator_token1, aux_sym_input_expression_token1, @@ -110661,20 +111908,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [75738] = 6, + [76359] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(1805), 1, - ts_builtin_sym_end, - STATE(1500), 2, + STATE(1519), 2, sym_comment, sym_include, - ACTIONS(1807), 25, + ACTIONS(2263), 26, sym_identifier, + aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, aux_sym_variable_definition_token1, @@ -110699,17 +111945,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [75782] = 5, + [76401] = 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(1520), 2, sym_comment, sym_include, - ACTIONS(1722), 26, + ACTIONS(1687), 26, sym_identifier, aux_sym__block_terminator_token1, aux_sym_input_expression_token1, @@ -110736,17 +111982,55 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [75824] = 5, + [76443] = 6, + ACTIONS(59), 1, + anon_sym_SLASH_SLASH, + ACTIONS(61), 1, + anon_sym_SLASH_STAR, + ACTIONS(65), 1, + anon_sym_LBRACE, + ACTIONS(2313), 1, + aux_sym_variable_definition_token4, + STATE(1521), 2, + sym_comment, + sym_include, + ACTIONS(2311), 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, + [76487] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(1502), 2, + STATE(1522), 2, sym_comment, sym_include, - ACTIONS(1728), 26, + ACTIONS(1647), 26, sym_identifier, aux_sym__block_terminator_token1, aux_sym_input_expression_token1, @@ -110773,17 +112057,95 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [75866] = 5, + [76529] = 8, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(1503), 2, + ACTIONS(1476), 1, + sym__namedot, + STATE(1389), 1, + aux_sym_qualified_name_repeat1, + ACTIONS(85), 2, + sym__or_operator, + sym__and_operator, + STATE(1523), 2, + sym_comment, + sym_include, + ACTIONS(83), 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, + [76577] = 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(1524), 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, + [76621] = 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(2203), 26, + ACTIONS(1906), 26, sym_identifier, aux_sym__block_terminator_token1, aux_sym_input_expression_token1, @@ -110810,57 +112172,57 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [75908] = 6, + [76663] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(1724), 1, - ts_builtin_sym_end, - STATE(1504), 2, + ACTIONS(177), 2, + sym__or_operator, + sym__and_operator, + STATE(1526), 2, sym_comment, sym_include, - ACTIONS(1726), 25, + ACTIONS(175), 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, - [75952] = 6, + aux_sym_widget_field_token1, + [76707] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(2309), 1, + ACTIONS(2071), 1, ts_builtin_sym_end, - STATE(1505), 2, + STATE(1527), 2, sym_comment, sym_include, - ACTIONS(2263), 25, + ACTIONS(1661), 25, sym_identifier, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, @@ -110886,19 +112248,63 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [75996] = 5, + [76751] = 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(2315), 1, + anon_sym_LPAREN, + STATE(4), 1, + aux_sym_qualified_name_repeat1, + STATE(9), 1, + aux_sym_object_access_repeat1, + STATE(1528), 2, + sym_comment, + sym_include, + ACTIONS(63), 3, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(67), 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, + [76805] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(1506), 2, + ACTIONS(2042), 1, + ts_builtin_sym_end, + STATE(1529), 2, sym_comment, sym_include, - ACTIONS(1736), 26, + ACTIONS(2006), 25, sym_identifier, - aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, aux_sym_variable_definition_token1, @@ -110923,19 +112329,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [76038] = 5, + [76849] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(1507), 2, + ACTIONS(2036), 1, + ts_builtin_sym_end, + STATE(1530), 2, sym_comment, sym_include, - ACTIONS(1738), 26, + ACTIONS(2008), 25, sym_identifier, - aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, aux_sym_variable_definition_token1, @@ -110960,17 +112367,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [76080] = 5, + [76893] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(1508), 2, + STATE(1531), 2, sym_comment, sym_include, - ACTIONS(1885), 26, + ACTIONS(1645), 26, sym_identifier, aux_sym__block_terminator_token1, aux_sym_input_expression_token1, @@ -110997,17 +112404,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [76122] = 5, + [76935] = 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(1532), 2, sym_comment, sym_include, - ACTIONS(1744), 26, + ACTIONS(1643), 26, sym_identifier, aux_sym__block_terminator_token1, aux_sym_input_expression_token1, @@ -111034,17 +112441,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [76164] = 5, + [76977] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(1510), 2, + STATE(1533), 2, sym_comment, sym_include, - ACTIONS(1517), 26, + ACTIONS(1641), 26, sym_identifier, aux_sym__block_terminator_token1, aux_sym_input_expression_token1, @@ -111071,78 +112478,40 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [76206] = 6, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - ACTIONS(2311), 1, - sym__namedot, - ACTIONS(111), 2, - sym__or_operator, - sym__and_operator, - STATE(1511), 2, - sym_comment, - sym_include, - ACTIONS(109), 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, - [76250] = 15, + [77019] = 15, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(283), 1, + ACTIONS(227), 1, anon_sym_SLASH, - ACTIONS(285), 1, + ACTIONS(229), 1, anon_sym_STAR, - ACTIONS(2313), 1, + ACTIONS(2317), 1, sym__terminator, - STATE(347), 1, - sym__multiplicative_operator, - STATE(375), 1, + STATE(401), 1, + sym__logical_operator, + STATE(447), 1, sym__comparison_operator, - STATE(408), 1, + STATE(507), 1, sym__additive_operator, - STATE(411), 1, - sym__logical_operator, - ACTIONS(289), 2, + STATE(516), 1, + sym__multiplicative_operator, + ACTIONS(233), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(291), 2, + ACTIONS(235), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(295), 2, + ACTIONS(239), 2, sym__or_operator, sym__and_operator, - STATE(1512), 2, + STATE(1534), 2, sym_comment, sym_include, - ACTIONS(293), 13, + ACTIONS(237), 13, anon_sym_LT_EQ, anon_sym_LT_GT, anon_sym_EQ, @@ -111156,17 +112525,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - [76312] = 5, + [77081] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(1513), 2, + STATE(1535), 2, sym_comment, sym_include, - ACTIONS(2271), 26, + ACTIONS(1639), 26, sym_identifier, aux_sym__block_terminator_token1, aux_sym_input_expression_token1, @@ -111193,19 +112562,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [76354] = 6, + [77123] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(2061), 1, + ACTIONS(2077), 1, ts_builtin_sym_end, - STATE(1514), 2, + STATE(1536), 2, sym_comment, sym_include, - ACTIONS(1580), 25, + ACTIONS(1651), 25, sym_identifier, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, @@ -111231,19 +112600,57 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [76398] = 6, + [77167] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(2059), 1, + ACTIONS(173), 2, + sym__or_operator, + sym__and_operator, + STATE(1537), 2, + sym_comment, + sym_include, + ACTIONS(171), 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, + [77211] = 6, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_LBRACE, + ACTIONS(2073), 1, ts_builtin_sym_end, - STATE(1515), 2, + STATE(1538), 2, sym_comment, sym_include, - ACTIONS(1578), 25, + ACTIONS(1659), 25, sym_identifier, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, @@ -111269,66 +112676,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [76442] = 15, - ACTIONS(59), 1, - anon_sym_SLASH_SLASH, - ACTIONS(61), 1, - anon_sym_SLASH_STAR, - ACTIONS(65), 1, - anon_sym_LBRACE, - ACTIONS(283), 1, - anon_sym_SLASH, - ACTIONS(285), 1, - anon_sym_STAR, - ACTIONS(2315), 1, - sym__terminator, - STATE(347), 1, - sym__multiplicative_operator, - STATE(375), 1, - sym__comparison_operator, - STATE(408), 1, - sym__additive_operator, - STATE(411), 1, - sym__logical_operator, - ACTIONS(289), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(291), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(295), 2, - sym__or_operator, - sym__and_operator, - STATE(1516), 2, - sym_comment, - sym_include, - ACTIONS(293), 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, - [76504] = 6, + [77255] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(1801), 1, + ACTIONS(2319), 1, ts_builtin_sym_end, - STATE(1517), 2, + STATE(1539), 2, sym_comment, sym_include, - ACTIONS(1803), 25, + ACTIONS(2091), 25, sym_identifier, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, @@ -111354,19 +112714,58 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [76548] = 5, + [77299] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(1518), 2, + ACTIONS(169), 2, + sym__or_operator, + sym__and_operator, + STATE(1540), 2, sym_comment, sym_include, - ACTIONS(1758), 26, + 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, + [77343] = 6, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_LBRACE, + ACTIONS(2012), 1, + ts_builtin_sym_end, + STATE(1541), 2, + sym_comment, + sym_include, + ACTIONS(2010), 25, sym_identifier, - aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, aux_sym_variable_definition_token1, @@ -111391,19 +112790,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [76590] = 5, + [77387] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(1519), 2, + ACTIONS(2321), 1, + ts_builtin_sym_end, + STATE(1542), 2, sym_comment, sym_include, - ACTIONS(1760), 26, + ACTIONS(2089), 25, sym_identifier, - aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, aux_sym_variable_definition_token1, @@ -111428,43 +112828,31 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [76632] = 15, - ACTIONS(59), 1, + [77431] = 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(283), 1, + ACTIONS(135), 2, + sym__or_operator, + sym__and_operator, + STATE(1543), 2, + sym_comment, + sym_include, + ACTIONS(133), 24, anon_sym_SLASH, - ACTIONS(285), 1, + sym_identifier, anon_sym_STAR, - ACTIONS(2317), 1, - anon_sym_RPAREN, - STATE(347), 1, - sym__multiplicative_operator, - STATE(375), 1, - sym__comparison_operator, - STATE(408), 1, - sym__additive_operator, - STATE(411), 1, - sym__logical_operator, - ACTIONS(289), 2, + aux_sym_input_expression_token2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(291), 2, anon_sym_LT, - anon_sym_GT, - ACTIONS(295), 2, - sym__or_operator, - sym__and_operator, - STATE(1520), 2, - sym_comment, - sym_include, - ACTIONS(293), 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, @@ -111475,40 +112863,43 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - [76694] = 15, + anon_sym_COMMA, + aux_sym_do_block_token1, + aux_sym_widget_field_token1, + [77475] = 15, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(283), 1, + ACTIONS(227), 1, anon_sym_SLASH, - ACTIONS(285), 1, + ACTIONS(229), 1, anon_sym_STAR, - ACTIONS(2319), 1, - aux_sym_else_if_statement_token1, - STATE(347), 1, - sym__multiplicative_operator, - STATE(375), 1, + ACTIONS(2323), 1, + anon_sym_LPAREN, + STATE(401), 1, + sym__logical_operator, + STATE(447), 1, sym__comparison_operator, - STATE(408), 1, + STATE(507), 1, sym__additive_operator, - STATE(411), 1, - sym__logical_operator, - ACTIONS(289), 2, + STATE(516), 1, + sym__multiplicative_operator, + ACTIONS(233), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(291), 2, + ACTIONS(235), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(295), 2, + ACTIONS(239), 2, sym__or_operator, sym__and_operator, - STATE(1521), 2, + STATE(1544), 2, sym_comment, sym_include, - ACTIONS(293), 13, + ACTIONS(237), 13, anon_sym_LT_EQ, anon_sym_LT_GT, anon_sym_EQ, @@ -111522,20 +112913,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - [76756] = 6, + [77537] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(1969), 1, - ts_builtin_sym_end, - STATE(1522), 2, + STATE(1545), 2, sym_comment, sym_include, - ACTIONS(1634), 25, + ACTIONS(1996), 26, sym_identifier, + aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, aux_sym_variable_definition_token1, @@ -111560,19 +112950,67 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [76800] = 5, + [77579] = 15, + ACTIONS(59), 1, + anon_sym_SLASH_SLASH, + ACTIONS(61), 1, + anon_sym_SLASH_STAR, + ACTIONS(65), 1, + anon_sym_LBRACE, + ACTIONS(227), 1, + anon_sym_SLASH, + ACTIONS(229), 1, + anon_sym_STAR, + ACTIONS(2325), 1, + aux_sym_else_if_statement_token1, + STATE(401), 1, + sym__logical_operator, + STATE(447), 1, + sym__comparison_operator, + STATE(507), 1, + sym__additive_operator, + STATE(516), 1, + sym__multiplicative_operator, + ACTIONS(233), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(235), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(239), 2, + sym__or_operator, + sym__and_operator, + STATE(1546), 2, + sym_comment, + sym_include, + ACTIONS(237), 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, + [77641] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(1523), 2, + ACTIONS(1631), 1, + ts_builtin_sym_end, + STATE(1547), 2, sym_comment, sym_include, - ACTIONS(1764), 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, @@ -111597,17 +113035,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [76842] = 5, + [77685] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(1524), 2, + STATE(1548), 2, sym_comment, sym_include, - ACTIONS(1768), 26, + ACTIONS(1968), 26, sym_identifier, aux_sym__block_terminator_token1, aux_sym_input_expression_token1, @@ -111634,17 +113072,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [76884] = 5, + [77727] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(1525), 2, + STATE(1549), 2, sym_comment, sym_include, - ACTIONS(2160), 26, + ACTIONS(2161), 26, sym_identifier, aux_sym__block_terminator_token1, aux_sym_input_expression_token1, @@ -111671,20 +113109,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [76926] = 6, + [77769] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(2053), 1, - ts_builtin_sym_end, - STATE(1526), 2, + STATE(1550), 2, sym_comment, sym_include, - ACTIONS(1576), 25, + ACTIONS(2149), 26, sym_identifier, + aux_sym__block_terminator_token1, aux_sym_input_expression_token1, aux_sym_primitive_type_token19, aux_sym_variable_definition_token1, @@ -111709,28 +113146,31 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [76970] = 6, + [77811] = 8, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(1871), 1, - ts_builtin_sym_end, - STATE(1527), 2, + ACTIONS(2327), 1, + aux_sym_buffer_definition_token2, + ACTIONS(2329), 1, + aux_sym_repeat_statement_token1, + ACTIONS(2331), 1, + aux_sym_do_block_token1, + STATE(1551), 2, sym_comment, sym_include, - ACTIONS(1574), 25, + ACTIONS(2149), 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, @@ -111738,7 +113178,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, @@ -111747,17 +113186,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [77014] = 5, + [77859] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(1528), 2, + STATE(1552), 2, sym_comment, sym_include, - ACTIONS(1772), 26, + ACTIONS(1820), 26, sym_identifier, aux_sym__block_terminator_token1, aux_sym_input_expression_token1, @@ -111784,438 +113223,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [77056] = 15, - ACTIONS(59), 1, - anon_sym_SLASH_SLASH, - ACTIONS(61), 1, - anon_sym_SLASH_STAR, - ACTIONS(65), 1, - anon_sym_LBRACE, - ACTIONS(283), 1, - anon_sym_SLASH, - ACTIONS(285), 1, - anon_sym_STAR, - ACTIONS(2321), 1, - anon_sym_RPAREN, - STATE(347), 1, - sym__multiplicative_operator, - STATE(375), 1, - sym__comparison_operator, - STATE(408), 1, - sym__additive_operator, - STATE(411), 1, - sym__logical_operator, - ACTIONS(289), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(291), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(295), 2, - sym__or_operator, - sym__and_operator, - STATE(1529), 2, - sym_comment, - sym_include, - ACTIONS(293), 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, - [77118] = 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(1640), 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, - [77160] = 5, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - ACTIONS(7), 1, - anon_sym_LBRACE, - STATE(1531), 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, - [77202] = 5, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - ACTIONS(7), 1, - anon_sym_LBRACE, - STATE(1532), 2, - sym_comment, - sym_include, - ACTIONS(1670), 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, - [77244] = 5, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - ACTIONS(7), 1, - anon_sym_LBRACE, - STATE(1533), 2, - sym_comment, - sym_include, - ACTIONS(1666), 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, - [77286] = 5, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - ACTIONS(7), 1, - anon_sym_LBRACE, - STATE(1534), 2, - sym_comment, - sym_include, - ACTIONS(1784), 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, - [77328] = 5, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - ACTIONS(7), 1, - anon_sym_LBRACE, - STATE(1535), 2, - sym_comment, - sym_include, - ACTIONS(2091), 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, - [77370] = 8, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - ACTIONS(7), 1, - anon_sym_LBRACE, - ACTIONS(2323), 1, - aux_sym_buffer_definition_token2, - ACTIONS(2325), 1, - aux_sym_repeat_statement_token1, - ACTIONS(2327), 1, - aux_sym_do_block_token1, - STATE(1536), 2, - sym_comment, - sym_include, - ACTIONS(2091), 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, - [77418] = 5, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - ACTIONS(7), 1, - anon_sym_LBRACE, - STATE(1537), 2, - sym_comment, - sym_include, - ACTIONS(1586), 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, - [77460] = 5, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - ACTIONS(7), 1, - anon_sym_LBRACE, - STATE(1538), 2, - sym_comment, - sym_include, - ACTIONS(2103), 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, - [77502] = 6, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - ACTIONS(7), 1, - anon_sym_LBRACE, - ACTIONS(1797), 1, - ts_builtin_sym_end, - STATE(1539), 2, - sym_comment, - sym_include, - ACTIONS(1799), 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, - [77546] = 5, + [77901] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(1540), 2, + STATE(1553), 2, sym_comment, sym_include, - ACTIONS(1891), 26, + ACTIONS(2249), 26, sym_identifier, aux_sym__block_terminator_token1, aux_sym_input_expression_token1, @@ -112242,40 +113260,40 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [77588] = 15, + [77943] = 15, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(283), 1, + ACTIONS(227), 1, anon_sym_SLASH, - ACTIONS(285), 1, + ACTIONS(229), 1, anon_sym_STAR, - ACTIONS(2329), 1, - aux_sym_else_if_statement_token1, - STATE(347), 1, - sym__multiplicative_operator, - STATE(375), 1, + ACTIONS(2333), 1, + anon_sym_LPAREN, + STATE(401), 1, + sym__logical_operator, + STATE(447), 1, sym__comparison_operator, - STATE(408), 1, + STATE(507), 1, sym__additive_operator, - STATE(411), 1, - sym__logical_operator, - ACTIONS(289), 2, + STATE(516), 1, + sym__multiplicative_operator, + ACTIONS(233), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(291), 2, + ACTIONS(235), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(295), 2, + ACTIONS(239), 2, sym__or_operator, sym__and_operator, - STATE(1541), 2, + STATE(1554), 2, sym_comment, sym_include, - ACTIONS(293), 13, + ACTIONS(237), 13, anon_sym_LT_EQ, anon_sym_LT_GT, anon_sym_EQ, @@ -112289,93 +113307,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - [77650] = 6, - 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(1542), 2, - sym_comment, - sym_include, - ACTIONS(1732), 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, - [77694] = 6, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - ACTIONS(7), 1, - anon_sym_LBRACE, - ACTIONS(1754), 1, - ts_builtin_sym_end, - STATE(1543), 2, - sym_comment, - sym_include, - ACTIONS(1756), 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, - [77738] = 5, + [78005] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(1544), 2, + STATE(1555), 2, sym_comment, sym_include, - ACTIONS(1543), 26, + ACTIONS(1824), 26, sym_identifier, aux_sym__block_terminator_token1, aux_sym_input_expression_token1, @@ -112402,94 +113344,18 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_statement_token1, anon_sym_ROUTINE_DASHLEVEL, anon_sym_BLOCK_DASHLEVEL, - [77780] = 6, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - ACTIONS(7), 1, - anon_sym_LBRACE, - ACTIONS(1750), 1, - ts_builtin_sym_end, - STATE(1545), 2, - sym_comment, - sym_include, - ACTIONS(1752), 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, - [77824] = 6, - 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(1546), 2, - sym_comment, - sym_include, - ACTIONS(1748), 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, - [77868] = 5, + [78047] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(147), 2, + ACTIONS(169), 2, sym__or_operator, sym__and_operator, - STATE(1547), 2, + STATE(1556), 2, sym_comment, sym_include, - ACTIONS(145), 24, + ACTIONS(167), 24, anon_sym_SLASH, anon_sym_LBRACE, anon_sym_RBRACE, @@ -112514,24 +113380,26 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, aux_sym_include_argument_token1, - [77909] = 5, + [78088] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(67), 2, + ACTIONS(7), 1, + anon_sym_LBRACE, + ACTIONS(2335), 1, + aux_sym_function_call_token1, + ACTIONS(129), 2, sym__or_operator, sym__and_operator, - STATE(1548), 2, + STATE(1557), 2, sym_comment, sym_include, - ACTIONS(63), 24, + ACTIONS(127), 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, @@ -112549,19 +113417,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, - [77950] = 5, + anon_sym_NO_DASHERROR, + [78133] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(219), 2, + ACTIONS(205), 2, sym__or_operator, sym__and_operator, - STATE(1549), 2, + STATE(1558), 2, sym_comment, sym_include, - ACTIONS(217), 24, + ACTIONS(203), 24, anon_sym_SLASH, anon_sym_LBRACE, anon_sym_RBRACE, @@ -112586,26 +113454,24 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, aux_sym_include_argument_token1, - [77991] = 7, + [78174] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, - anon_sym_LBRACE, - ACTIONS(1499), 1, - anon_sym_LPAREN, - ACTIONS(67), 2, + ACTIONS(155), 2, sym__or_operator, sym__and_operator, - STATE(1550), 2, + STATE(1559), 2, sym_comment, sym_include, - ACTIONS(63), 22, + ACTIONS(153), 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, @@ -112623,19 +113489,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, - [78036] = 5, + aux_sym_include_argument_token1, + [78215] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(171), 2, + ACTIONS(139), 2, sym__or_operator, sym__and_operator, - STATE(1551), 2, + STATE(1560), 2, sym_comment, sym_include, - ACTIONS(169), 24, + ACTIONS(137), 24, anon_sym_SLASH, anon_sym_LBRACE, anon_sym_RBRACE, @@ -112660,18 +113526,18 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, aux_sym_include_argument_token1, - [78077] = 5, + [78256] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(223), 2, + ACTIONS(181), 2, sym__or_operator, sym__and_operator, - STATE(1552), 2, + STATE(1561), 2, sym_comment, sym_include, - ACTIONS(221), 24, + ACTIONS(179), 24, anon_sym_SLASH, anon_sym_LBRACE, anon_sym_RBRACE, @@ -112696,26 +113562,24 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, aux_sym_include_argument_token1, - [78118] = 7, + [78297] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, - anon_sym_LBRACE, - ACTIONS(1499), 1, - anon_sym_LPAREN, - ACTIONS(77), 2, + ACTIONS(147), 2, sym__or_operator, sym__and_operator, - STATE(1553), 2, + STATE(1562), 2, sym_comment, sym_include, - ACTIONS(75), 22, + ACTIONS(145), 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, @@ -112733,19 +113597,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, - [78163] = 5, + aux_sym_include_argument_token1, + [78338] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(179), 2, + ACTIONS(197), 2, sym__or_operator, sym__and_operator, - STATE(1554), 2, + STATE(1563), 2, sym_comment, sym_include, - ACTIONS(177), 24, + ACTIONS(195), 24, anon_sym_SLASH, anon_sym_LBRACE, anon_sym_RBRACE, @@ -112770,18 +113634,18 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, aux_sym_include_argument_token1, - [78204] = 5, + [78379] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(77), 2, + ACTIONS(189), 2, sym__or_operator, sym__and_operator, - STATE(1555), 2, + STATE(1564), 2, sym_comment, sym_include, - ACTIONS(75), 24, + ACTIONS(187), 24, anon_sym_SLASH, anon_sym_LBRACE, anon_sym_RBRACE, @@ -112806,18 +113670,73 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, aux_sym_include_argument_token1, - [78245] = 5, + [78420] = 24, + 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(2113), 1, + aux_sym_on_error_phrase_token1, + ACTIONS(2115), 1, + aux_sym_where_clause_token1, + ACTIONS(2117), 1, + aux_sym_sort_clause_token1, + ACTIONS(2119), 1, + aux_sym_sort_clause_token2, + STATE(336), 1, + aux_sym_qualified_name_repeat1, + STATE(1692), 1, + sym_of, + STATE(1732), 1, + sym__pre_tuning, + STATE(1822), 1, + aux_sym_for_phrase_repeat1, + STATE(1823), 1, + sym_where_clause, + STATE(1962), 1, + sym_query_tuning, + STATE(2162), 1, + aux_sym_for_phrase_repeat2, + STATE(2911), 1, + sym_on_error_phrase, + STATE(2934), 1, + sym_sort_clause, + STATE(3045), 1, + sym_on_quit_phrase, + STATE(4161), 1, + sym_on_stop_phrase, + ACTIONS(2337), 2, + anon_sym_COMMA, + anon_sym_COLON, + STATE(1565), 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, + [78499] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(207), 2, + ACTIONS(185), 2, sym__or_operator, sym__and_operator, - STATE(1556), 2, + STATE(1566), 2, sym_comment, sym_include, - ACTIONS(205), 24, + ACTIONS(183), 24, anon_sym_SLASH, anon_sym_LBRACE, anon_sym_RBRACE, @@ -112842,18 +113761,18 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, aux_sym_include_argument_token1, - [78286] = 5, + [78540] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(187), 2, + ACTIONS(135), 2, sym__or_operator, sym__and_operator, - STATE(1557), 2, + STATE(1567), 2, sym_comment, sym_include, - ACTIONS(185), 24, + ACTIONS(133), 24, anon_sym_SLASH, anon_sym_LBRACE, anon_sym_RBRACE, @@ -112878,22 +113797,21 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, aux_sym_include_argument_token1, - [78327] = 7, + [78581] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(2331), 1, + STATE(1568), 2, + sym_comment, + sym_include, + ACTIONS(100), 3, sym__namedot, - ACTIONS(111), 2, sym__or_operator, sym__and_operator, - STATE(1558), 2, - sym_comment, - sym_include, - ACTIONS(109), 22, + ACTIONS(98), 22, anon_sym_SLASH, sym_identifier, anon_sym_STAR, @@ -112916,18 +113834,18 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, anon_sym_NO_DASHERROR, - [78372] = 5, + [78624] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(195), 2, + ACTIONS(143), 2, sym__or_operator, sym__and_operator, - STATE(1559), 2, + STATE(1569), 2, sym_comment, sym_include, - ACTIONS(193), 24, + ACTIONS(141), 24, anon_sym_SLASH, anon_sym_LBRACE, anon_sym_RBRACE, @@ -112952,60 +113870,26 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, aux_sym_include_argument_token1, - [78413] = 5, + [78665] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(151), 2, - sym__or_operator, - sym__and_operator, - STATE(1560), 2, - sym_comment, - sym_include, - ACTIONS(149), 24, - anon_sym_SLASH, + ACTIONS(7), 1, 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, - [78454] = 5, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - ACTIONS(199), 2, + ACTIONS(2339), 1, + sym__namedot, + ACTIONS(111), 2, sym__or_operator, sym__and_operator, - STATE(1561), 2, + STATE(1570), 2, sym_comment, sym_include, - ACTIONS(197), 24, + ACTIONS(109), 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, @@ -113023,19 +113907,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, - [78495] = 5, + anon_sym_NO_DASHERROR, + [78710] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(125), 2, + ACTIONS(165), 2, sym__or_operator, sym__and_operator, - STATE(1562), 2, + STATE(1571), 2, sym_comment, sym_include, - ACTIONS(123), 24, + ACTIONS(163), 24, anon_sym_SLASH, anon_sym_LBRACE, anon_sym_RBRACE, @@ -113060,7 +113944,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, aux_sym_include_argument_token1, - [78536] = 8, + [78751] = 8, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, @@ -113069,14 +113953,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, ACTIONS(679), 1, sym__namedot, - ACTIONS(2335), 1, + ACTIONS(2343), 1, aux_sym_variable_definition_token2, - STATE(329), 1, + STATE(336), 1, aux_sym_qualified_name_repeat1, - STATE(1563), 2, + STATE(1572), 2, sym_comment, sym_include, - ACTIONS(2333), 22, + ACTIONS(2341), 22, sym__terminator, aux_sym__block_terminator_token1, anon_sym_LPAREN, @@ -113099,43 +113983,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_constructor_definition_token1, aux_sym_field_definition_token1, aux_sym_index_definition_token1, - [78583] = 5, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - ACTIONS(211), 2, - sym__or_operator, - sym__and_operator, - STATE(1564), 2, - sym_comment, - sym_include, - ACTIONS(209), 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, - [78624] = 5, + [78798] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, @@ -113143,7 +113991,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(89), 2, sym__or_operator, sym__and_operator, - STATE(1565), 2, + STATE(1573), 2, sym_comment, sym_include, ACTIONS(87), 24, @@ -113171,18 +114019,18 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, aux_sym_include_argument_token1, - [78665] = 5, + [78839] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(143), 2, + ACTIONS(217), 2, sym__or_operator, sym__and_operator, - STATE(1566), 2, + STATE(1574), 2, sym_comment, sym_include, - ACTIONS(141), 24, + ACTIONS(215), 24, anon_sym_SLASH, anon_sym_LBRACE, anon_sym_RBRACE, @@ -113207,21 +114055,22 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, aux_sym_include_argument_token1, - [78706] = 6, + [78880] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(1567), 2, - sym_comment, - sym_include, - ACTIONS(104), 3, - sym__namedot, + ACTIONS(1474), 1, + anon_sym_LPAREN, + ACTIONS(77), 2, sym__or_operator, sym__and_operator, - ACTIONS(102), 22, + STATE(1575), 2, + sym_comment, + sym_include, + ACTIONS(75), 22, anon_sym_SLASH, sym_identifier, anon_sym_STAR, @@ -113244,18 +114093,18 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, anon_sym_NO_DASHERROR, - [78749] = 5, + [78925] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(163), 2, + ACTIONS(213), 2, sym__or_operator, sym__and_operator, - STATE(1568), 2, + STATE(1576), 2, sym_comment, sym_include, - ACTIONS(161), 24, + ACTIONS(211), 24, anon_sym_SLASH, anon_sym_LBRACE, anon_sym_RBRACE, @@ -113280,18 +114129,18 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, aux_sym_include_argument_token1, - [78790] = 5, + [78966] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(139), 2, + ACTIONS(121), 2, sym__or_operator, sym__and_operator, - STATE(1569), 2, + STATE(1577), 2, sym_comment, sym_include, - ACTIONS(137), 24, + ACTIONS(119), 24, anon_sym_SLASH, anon_sym_LBRACE, anon_sym_RBRACE, @@ -113316,18 +114165,18 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, aux_sym_include_argument_token1, - [78831] = 5, + [79007] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(121), 2, + ACTIONS(193), 2, sym__or_operator, sym__and_operator, - STATE(1570), 2, + STATE(1578), 2, sym_comment, sym_include, - ACTIONS(119), 24, + ACTIONS(191), 24, anon_sym_SLASH, anon_sym_LBRACE, anon_sym_RBRACE, @@ -113352,18 +114201,18 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, aux_sym_include_argument_token1, - [78872] = 5, + [79048] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(175), 2, + ACTIONS(67), 2, sym__or_operator, sym__and_operator, - STATE(1571), 2, + STATE(1579), 2, sym_comment, sym_include, - ACTIONS(173), 24, + ACTIONS(63), 24, anon_sym_SLASH, anon_sym_LBRACE, anon_sym_RBRACE, @@ -113388,18 +114237,18 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, aux_sym_include_argument_token1, - [78913] = 5, + [79089] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(167), 2, + ACTIONS(151), 2, sym__or_operator, sym__and_operator, - STATE(1572), 2, + STATE(1580), 2, sym_comment, sym_include, - ACTIONS(165), 24, + ACTIONS(149), 24, anon_sym_SLASH, anon_sym_LBRACE, anon_sym_RBRACE, @@ -113424,18 +114273,18 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, aux_sym_include_argument_token1, - [78954] = 5, + [79130] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(85), 2, + ACTIONS(111), 2, sym__or_operator, sym__and_operator, - STATE(1573), 2, + STATE(1581), 2, sym_comment, sym_include, - ACTIONS(83), 24, + ACTIONS(109), 24, anon_sym_SLASH, anon_sym_LBRACE, anon_sym_RBRACE, @@ -113460,111 +114309,18 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, aux_sym_include_argument_token1, - [78995] = 7, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - ACTIONS(7), 1, - anon_sym_LBRACE, - ACTIONS(2337), 1, - aux_sym_function_call_token1, - ACTIONS(133), 2, - sym__or_operator, - sym__and_operator, - STATE(1574), 2, - sym_comment, - sym_include, - ACTIONS(131), 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, - [79040] = 24, - 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(2109), 1, - aux_sym_on_error_phrase_token1, - ACTIONS(2111), 1, - aux_sym_where_clause_token1, - ACTIONS(2113), 1, - aux_sym_sort_clause_token1, - ACTIONS(2115), 1, - aux_sym_sort_clause_token2, - STATE(329), 1, - aux_sym_qualified_name_repeat1, - STATE(1682), 1, - sym_of, - STATE(1707), 1, - sym__pre_tuning, - STATE(1805), 1, - sym_where_clause, - STATE(1813), 1, - aux_sym_for_phrase_repeat1, - STATE(1946), 1, - sym_query_tuning, - STATE(2209), 1, - aux_sym_for_phrase_repeat2, - STATE(2741), 1, - sym_on_error_phrase, - STATE(2783), 1, - sym_sort_clause, - STATE(3038), 1, - sym_on_quit_phrase, - STATE(4070), 1, - sym_on_stop_phrase, - ACTIONS(2339), 2, - anon_sym_COMMA, - anon_sym_COLON, - STATE(1575), 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, - [79119] = 5, + [79171] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(155), 2, + ACTIONS(161), 2, sym__or_operator, sym__and_operator, - STATE(1576), 2, + STATE(1582), 2, sym_comment, sym_include, - ACTIONS(153), 24, + ACTIONS(159), 24, anon_sym_SLASH, anon_sym_LBRACE, anon_sym_RBRACE, @@ -113589,18 +114345,18 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, aux_sym_include_argument_token1, - [79160] = 5, + [79212] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(111), 2, + ACTIONS(125), 2, sym__or_operator, sym__and_operator, - STATE(1577), 2, + STATE(1583), 2, sym_comment, sym_include, - ACTIONS(109), 24, + ACTIONS(123), 24, anon_sym_SLASH, anon_sym_LBRACE, anon_sym_RBRACE, @@ -113625,18 +114381,18 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, aux_sym_include_argument_token1, - [79201] = 5, + [79253] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(183), 2, + ACTIONS(77), 2, sym__or_operator, sym__and_operator, - STATE(1578), 2, + STATE(1584), 2, sym_comment, sym_include, - ACTIONS(181), 24, + ACTIONS(75), 24, anon_sym_SLASH, anon_sym_LBRACE, anon_sym_RBRACE, @@ -113661,18 +114417,18 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, aux_sym_include_argument_token1, - [79242] = 5, + [79294] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(129), 2, + ACTIONS(177), 2, sym__or_operator, sym__and_operator, - STATE(1579), 2, + STATE(1585), 2, sym_comment, sym_include, - ACTIONS(127), 24, + ACTIONS(175), 24, anon_sym_SLASH, anon_sym_LBRACE, anon_sym_RBRACE, @@ -113697,18 +114453,18 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, aux_sym_include_argument_token1, - [79283] = 5, + [79335] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(159), 2, + ACTIONS(85), 2, sym__or_operator, sym__and_operator, - STATE(1580), 2, + STATE(1586), 2, sym_comment, sym_include, - ACTIONS(157), 24, + ACTIONS(83), 24, anon_sym_SLASH, anon_sym_LBRACE, anon_sym_RBRACE, @@ -113733,26 +114489,24 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, aux_sym_include_argument_token1, - [79324] = 7, + [79376] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, - anon_sym_LBRACE, - ACTIONS(2341), 1, - aux_sym_function_call_token1, - ACTIONS(215), 2, + ACTIONS(201), 2, sym__or_operator, sym__and_operator, - STATE(1581), 2, + STATE(1587), 2, sym_comment, sym_include, - ACTIONS(213), 22, + ACTIONS(199), 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, @@ -113770,19 +114524,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, - [79369] = 5, + aux_sym_include_argument_token1, + [79417] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(203), 2, + ACTIONS(173), 2, sym__or_operator, sym__and_operator, - STATE(1582), 2, + STATE(1588), 2, sym_comment, sym_include, - ACTIONS(201), 24, + ACTIONS(171), 24, anon_sym_SLASH, anon_sym_LBRACE, anon_sym_RBRACE, @@ -113807,18 +114561,18 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, aux_sym_include_argument_token1, - [79410] = 5, + [79458] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(191), 2, + ACTIONS(225), 2, sym__or_operator, sym__and_operator, - STATE(1583), 2, + STATE(1589), 2, sym_comment, sym_include, - ACTIONS(189), 24, + ACTIONS(223), 24, anon_sym_SLASH, anon_sym_LBRACE, anon_sym_RBRACE, @@ -113843,18 +114597,18 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, aux_sym_include_argument_token1, - [79451] = 5, + [79499] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(215), 2, + ACTIONS(221), 2, sym__or_operator, sym__and_operator, - STATE(1584), 2, + STATE(1590), 2, sym_comment, sym_include, - ACTIONS(213), 24, + ACTIONS(219), 24, anon_sym_SLASH, anon_sym_LBRACE, anon_sym_RBRACE, @@ -113879,20 +114633,22 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, aux_sym_include_argument_token1, - [79492] = 6, + [79540] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(129), 2, + ACTIONS(2345), 1, + aux_sym_function_call_token1, + ACTIONS(155), 2, sym__or_operator, sym__and_operator, - STATE(1585), 2, + STATE(1591), 2, sym_comment, sym_include, - ACTIONS(127), 22, + ACTIONS(153), 22, anon_sym_SLASH, sym_identifier, anon_sym_STAR, @@ -113915,24 +114671,24 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, anon_sym_NO_DASHERROR, - [79534] = 6, + [79585] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, - anon_sym_LBRACE, - ACTIONS(207), 2, + ACTIONS(209), 2, sym__or_operator, sym__and_operator, - STATE(1586), 2, + STATE(1592), 2, sym_comment, sym_include, - ACTIONS(205), 22, + ACTIONS(207), 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, @@ -113950,70 +114706,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, - [79576] = 19, - ACTIONS(59), 1, - anon_sym_SLASH_SLASH, - ACTIONS(61), 1, - anon_sym_SLASH_STAR, - ACTIONS(65), 1, - anon_sym_LBRACE, - ACTIONS(2343), 1, - aux_sym_input_expression_token1, - ACTIONS(2345), 1, - aux_sym_variable_definition_token3, - ACTIONS(2347), 1, - aux_sym_variable_definition_token4, - ACTIONS(2349), 1, - aux_sym_buffer_definition_token1, - ACTIONS(2351), 1, - aux_sym_buffer_definition_token3, - ACTIONS(2353), 1, - aux_sym_query_definition_token1, - ACTIONS(2357), 1, - aux_sym_stream_definition_token1, - STATE(1860), 1, - aux_sym_variable_definition_repeat1, - STATE(1955), 1, - aux_sym_buffer_definition_repeat1, - STATE(1959), 1, - sym_serialization_tuning, - ACTIONS(1356), 2, - aux_sym_serialization_tuning_token1, - aux_sym_serialization_tuning_token2, - STATE(1587), 2, - sym_comment, - sym_include, - STATE(1933), 2, - sym_scope_tuning, - sym_access_tuning, - ACTIONS(1354), 3, - aux_sym_access_tuning_token1, - aux_sym_access_tuning_token2, - aux_sym_access_tuning_token3, - ACTIONS(2355), 3, - aux_sym_argument_mode_token1, - aux_sym_argument_mode_token2, - aux_sym_procedure_parameter_definition_token1, - ACTIONS(1352), 4, - aux_sym_scope_tuning_token1, - aux_sym_scope_tuning_token2, - aux_sym_scope_tuning_token3, - aux_sym_scope_tuning_token4, - [79644] = 6, + aux_sym_include_argument_token1, + [79626] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(219), 2, + ACTIONS(1474), 1, + anon_sym_LPAREN, + ACTIONS(67), 2, sym__or_operator, sym__and_operator, - STATE(1588), 2, + STATE(1593), 2, sym_comment, sym_include, - ACTIONS(217), 22, + ACTIONS(63), 22, anon_sym_SLASH, sym_identifier, anon_sym_STAR, @@ -114036,20 +114745,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, anon_sym_NO_DASHERROR, - [79686] = 6, + [79671] = 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(125), 2, sym__or_operator, sym__and_operator, - STATE(1589), 2, + STATE(1594), 2, sym_comment, sym_include, - ACTIONS(63), 22, + ACTIONS(123), 22, anon_sym_SLASH, sym_identifier, anon_sym_STAR, @@ -114072,20 +114781,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, anon_sym_NO_DASHERROR, - [79728] = 6, + [79713] = 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(205), 2, sym__or_operator, sym__and_operator, - STATE(1590), 2, + STATE(1595), 2, sym_comment, sym_include, - ACTIONS(119), 22, + ACTIONS(203), 22, anon_sym_SLASH, sym_identifier, anon_sym_STAR, @@ -114108,25 +114817,128 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, anon_sym_NO_DASHERROR, - [79770] = 5, - ACTIONS(3), 1, + [79755] = 19, + 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(1591), 2, - sym_comment, - sym_include, - ACTIONS(2187), 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, + ACTIONS(2347), 1, + aux_sym_input_expression_token1, + ACTIONS(2349), 1, + aux_sym_variable_definition_token3, + ACTIONS(2351), 1, + aux_sym_variable_definition_token4, + ACTIONS(2353), 1, + aux_sym_buffer_definition_token1, + ACTIONS(2355), 1, + aux_sym_buffer_definition_token3, + ACTIONS(2357), 1, + aux_sym_query_definition_token1, + ACTIONS(2361), 1, + aux_sym_stream_definition_token1, + STATE(1855), 1, + aux_sym_variable_definition_repeat1, + STATE(2005), 1, + sym_serialization_tuning, + STATE(2020), 1, + aux_sym_buffer_definition_repeat1, + ACTIONS(1362), 2, + aux_sym_serialization_tuning_token1, + aux_sym_serialization_tuning_token2, + STATE(1596), 2, + sym_comment, + sym_include, + STATE(1943), 2, + sym_scope_tuning, + sym_access_tuning, + ACTIONS(1360), 3, + aux_sym_access_tuning_token1, + aux_sym_access_tuning_token2, + aux_sym_access_tuning_token3, + ACTIONS(2359), 3, + aux_sym_argument_mode_token1, + aux_sym_argument_mode_token2, + aux_sym_procedure_parameter_definition_token1, + ACTIONS(1358), 4, + aux_sym_scope_tuning_token1, + aux_sym_scope_tuning_token2, + aux_sym_scope_tuning_token3, + aux_sym_scope_tuning_token4, + [79823] = 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(2109), 1, + anon_sym_COMMA, + ACTIONS(2113), 1, + aux_sym_on_error_phrase_token1, + ACTIONS(2115), 1, + aux_sym_where_clause_token1, + ACTIONS(2117), 1, + aux_sym_sort_clause_token1, + ACTIONS(2119), 1, + aux_sym_sort_clause_token2, + ACTIONS(2293), 1, + anon_sym_COLON, + STATE(1660), 1, + sym_of, + STATE(1691), 1, + sym__pre_tuning, + STATE(1784), 1, + sym_where_clause, + STATE(1787), 1, + aux_sym_for_phrase_repeat1, + STATE(1962), 1, + sym_query_tuning, + STATE(2096), 1, + aux_sym_for_phrase_repeat2, + STATE(2697), 1, + sym_on_error_phrase, + STATE(2934), 1, + sym_sort_clause, + STATE(2942), 1, + sym_on_quit_phrase, + STATE(3252), 1, + sym_on_stop_phrase, + STATE(3255), 1, + aux_sym_for_statement_repeat1, + STATE(1597), 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, + [79901] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_LBRACE, + STATE(1598), 2, + sym_comment, + sym_include, + ACTIONS(2313), 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, @@ -114143,20 +114955,123 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_property_type_token1, aux_sym_property_type_token2, aux_sym_method_tuning_token1, - [79810] = 6, + [79941] = 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(1862), 1, + aux_sym_variable_definition_repeat1, + STATE(2005), 1, + sym_serialization_tuning, + STATE(2009), 1, + aux_sym_buffer_definition_repeat1, + ACTIONS(1362), 2, + aux_sym_serialization_tuning_token1, + aux_sym_serialization_tuning_token2, + STATE(1599), 2, + sym_comment, + sym_include, + STATE(1943), 2, + sym_scope_tuning, + sym_access_tuning, + ACTIONS(1360), 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(1358), 4, + aux_sym_scope_tuning_token1, + aux_sym_scope_tuning_token2, + aux_sym_scope_tuning_token3, + aux_sym_scope_tuning_token4, + [80009] = 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(2109), 1, + anon_sym_COMMA, + ACTIONS(2113), 1, + aux_sym_on_error_phrase_token1, + ACTIONS(2115), 1, + aux_sym_where_clause_token1, + ACTIONS(2117), 1, + aux_sym_sort_clause_token1, + ACTIONS(2119), 1, + aux_sym_sort_clause_token2, + ACTIONS(2127), 1, + anon_sym_COLON, + STATE(1668), 1, + sym_of, + STATE(1704), 1, + sym__pre_tuning, + STATE(1810), 1, + sym_where_clause, + STATE(1815), 1, + aux_sym_for_phrase_repeat1, + STATE(1962), 1, + sym_query_tuning, + STATE(2091), 1, + aux_sym_for_phrase_repeat2, + STATE(2629), 1, + sym_on_error_phrase, + STATE(2841), 1, + sym_on_quit_phrase, + STATE(2934), 1, + sym_sort_clause, + STATE(3295), 1, + sym_on_stop_phrase, + STATE(3296), 1, + aux_sym_for_statement_repeat1, + STATE(1600), 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, + [80087] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(203), 2, + ACTIONS(77), 2, sym__or_operator, sym__and_operator, - STATE(1592), 2, + STATE(1601), 2, sym_comment, sym_include, - ACTIONS(201), 22, + ACTIONS(75), 22, anon_sym_SLASH, sym_identifier, anon_sym_STAR, @@ -114179,7 +115094,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, anon_sym_NO_DASHERROR, - [79852] = 24, + [80129] = 24, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, @@ -114190,41 +115105,41 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_query_tuning_token5, ACTIONS(1203), 1, aux_sym_of_token1, - ACTIONS(2105), 1, - anon_sym_COMMA, ACTIONS(2109), 1, - aux_sym_on_error_phrase_token1, + anon_sym_COMMA, ACTIONS(2111), 1, - aux_sym_where_clause_token1, + anon_sym_COLON, ACTIONS(2113), 1, - aux_sym_sort_clause_token1, + aux_sym_on_error_phrase_token1, ACTIONS(2115), 1, + aux_sym_where_clause_token1, + ACTIONS(2117), 1, + aux_sym_sort_clause_token1, + ACTIONS(2119), 1, aux_sym_sort_clause_token2, - ACTIONS(2281), 1, - anon_sym_COLON, - STATE(1676), 1, + STATE(1669), 1, sym_of, - STATE(1678), 1, + STATE(1705), 1, sym__pre_tuning, - STATE(1742), 1, - sym_where_clause, - STATE(1758), 1, + STATE(1813), 1, aux_sym_for_phrase_repeat1, - STATE(1946), 1, + STATE(1816), 1, + sym_where_clause, + STATE(1962), 1, sym_query_tuning, - STATE(2055), 1, + STATE(2114), 1, aux_sym_for_phrase_repeat2, - STATE(2619), 1, + STATE(2735), 1, sym_on_error_phrase, - STATE(2783), 1, - sym_sort_clause, - STATE(2832), 1, + STATE(2897), 1, sym_on_quit_phrase, - STATE(3511), 1, + STATE(2934), 1, + sym_sort_clause, + STATE(3263), 1, aux_sym_for_statement_repeat1, - STATE(3516), 1, + STATE(3265), 1, sym_on_stop_phrase, - STATE(1593), 2, + STATE(1602), 2, sym_comment, sym_include, ACTIONS(1195), 5, @@ -114233,43 +115148,77 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_query_tuning_token2, aux_sym_query_tuning_token3, aux_sym_query_tuning_token4, - [79930] = 6, + [80207] = 5, 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(1594), 2, + STATE(1603), 2, sym_comment, sym_include, - ACTIONS(145), 22, - anon_sym_SLASH, + ACTIONS(2379), 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, - [79972] = 24, + 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, + [80247] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_LBRACE, + STATE(1604), 2, + sym_comment, + sym_include, + ACTIONS(2381), 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, + [80287] = 24, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, @@ -114280,41 +115229,41 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_query_tuning_token5, ACTIONS(1203), 1, aux_sym_of_token1, - ACTIONS(2105), 1, - anon_sym_COMMA, ACTIONS(2109), 1, + anon_sym_COMMA, + ACTIONS(2113), 1, aux_sym_on_error_phrase_token1, - ACTIONS(2111), 1, + ACTIONS(2115), 1, aux_sym_where_clause_token1, - ACTIONS(2113), 1, + ACTIONS(2117), 1, aux_sym_sort_clause_token1, - ACTIONS(2115), 1, + ACTIONS(2119), 1, aux_sym_sort_clause_token2, - ACTIONS(2275), 1, + ACTIONS(2213), 1, anon_sym_COLON, - STATE(1658), 1, + STATE(1675), 1, sym_of, - STATE(1677), 1, + STATE(1699), 1, sym__pre_tuning, - STATE(1756), 1, - sym_where_clause, - STATE(1761), 1, + STATE(1781), 1, aux_sym_for_phrase_repeat1, - STATE(1946), 1, + STATE(1788), 1, + sym_where_clause, + STATE(1962), 1, sym_query_tuning, - STATE(2089), 1, + STATE(2066), 1, aux_sym_for_phrase_repeat2, - STATE(2686), 1, + STATE(2662), 1, sym_on_error_phrase, - STATE(2783), 1, + STATE(2934), 1, sym_sort_clause, - STATE(2794), 1, + STATE(2970), 1, sym_on_quit_phrase, - STATE(3239), 1, + STATE(3537), 1, aux_sym_for_statement_repeat1, - STATE(3241), 1, + STATE(3544), 1, sym_on_stop_phrase, - STATE(1595), 2, + STATE(1605), 2, sym_comment, sym_include, ACTIONS(1195), 5, @@ -114323,20 +115272,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_query_tuning_token2, aux_sym_query_tuning_token3, aux_sym_query_tuning_token4, - [80050] = 6, + [80365] = 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(85), 2, sym__or_operator, sym__and_operator, - STATE(1596), 2, + STATE(1606), 2, sym_comment, sym_include, - ACTIONS(109), 22, + ACTIONS(83), 22, anon_sym_SLASH, sym_identifier, anon_sym_STAR, @@ -114359,20 +115308,212 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, anon_sym_NO_DASHERROR, - [80092] = 6, + [80407] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(191), 2, + ACTIONS(225), 2, sym__or_operator, sym__and_operator, - STATE(1597), 2, + STATE(1607), 2, + sym_comment, + sym_include, + ACTIONS(223), 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, + [80449] = 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(2109), 1, + anon_sym_COMMA, + ACTIONS(2113), 1, + aux_sym_on_error_phrase_token1, + ACTIONS(2115), 1, + aux_sym_where_clause_token1, + ACTIONS(2117), 1, + aux_sym_sort_clause_token1, + ACTIONS(2119), 1, + aux_sym_sort_clause_token2, + ACTIONS(2303), 1, + anon_sym_COLON, + STATE(1663), 1, + sym_of, + STATE(1694), 1, + sym__pre_tuning, + STATE(1766), 1, + aux_sym_for_phrase_repeat1, + STATE(1778), 1, + sym_where_clause, + STATE(1962), 1, + sym_query_tuning, + STATE(2097), 1, + aux_sym_for_phrase_repeat2, + STATE(2706), 1, + sym_on_error_phrase, + STATE(2934), 1, + sym_sort_clause, + STATE(2935), 1, + sym_on_quit_phrase, + STATE(3507), 1, + aux_sym_for_statement_repeat1, + STATE(3508), 1, + sym_on_stop_phrase, + STATE(1608), 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, + [80527] = 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(2109), 1, + anon_sym_COMMA, + ACTIONS(2113), 1, + aux_sym_on_error_phrase_token1, + ACTIONS(2115), 1, + aux_sym_where_clause_token1, + ACTIONS(2117), 1, + aux_sym_sort_clause_token1, + ACTIONS(2119), 1, + aux_sym_sort_clause_token2, + ACTIONS(2205), 1, + anon_sym_COLON, + STATE(1677), 1, + sym_of, + STATE(1687), 1, + sym__pre_tuning, + STATE(1758), 1, + sym_where_clause, + STATE(1772), 1, + aux_sym_for_phrase_repeat1, + STATE(1962), 1, + sym_query_tuning, + STATE(2141), 1, + aux_sym_for_phrase_repeat2, + STATE(2778), 1, + sym_on_error_phrase, + STATE(2819), 1, + sym_on_quit_phrase, + STATE(2934), 1, + sym_sort_clause, + STATE(3279), 1, + aux_sym_for_statement_repeat1, + STATE(3281), 1, + sym_on_stop_phrase, + STATE(1609), 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, + [80605] = 18, + 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_variable_tuning_token6, + ACTIONS(1378), 1, + aux_sym_property_tuning_token1, + ACTIONS(1462), 1, + aux_sym_function_parameter_token1, + ACTIONS(1464), 1, + aux_sym_property_definition_token1, + ACTIONS(1466), 1, + aux_sym_event_definition_token1, + STATE(1885), 1, + sym_property_tuning, + STATE(2371), 1, + aux_sym_property_definition_repeat1, + STATE(2588), 1, + aux_sym_property_definition_repeat2, + STATE(2840), 1, + sym_property_type, + STATE(4313), 1, + sym_serialization_tuning, + ACTIONS(1354), 2, + aux_sym_variable_tuning_token1, + aux_sym_variable_tuning_token5, + ACTIONS(1376), 2, + aux_sym_property_type_token1, + aux_sym_property_type_token2, + ACTIONS(1453), 2, + aux_sym_serialization_tuning_token1, + aux_sym_serialization_tuning_token2, + STATE(1610), 2, + sym_comment, + sym_include, + ACTIONS(1456), 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, + [80671] = 6, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_LBRACE, + ACTIONS(221), 2, + sym__or_operator, + sym__and_operator, + STATE(1611), 2, sym_comment, sym_include, - ACTIONS(189), 22, + ACTIONS(219), 22, anon_sym_SLASH, sym_identifier, anon_sym_STAR, @@ -114395,22 +115536,22 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, anon_sym_NO_DASHERROR, - [80134] = 7, + [80713] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(2359), 1, + ACTIONS(2383), 1, anon_sym_NO_DASHERROR, - ACTIONS(631), 2, + ACTIONS(197), 2, sym__or_operator, sym__and_operator, - STATE(1598), 2, + STATE(1612), 2, sym_comment, sym_include, - ACTIONS(629), 21, + ACTIONS(195), 21, anon_sym_SLASH, sym_identifier, anon_sym_STAR, @@ -114432,7 +115573,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - [80178] = 24, + [80757] = 24, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, @@ -114443,41 +115584,41 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_query_tuning_token5, ACTIONS(1203), 1, aux_sym_of_token1, - ACTIONS(2105), 1, - anon_sym_COMMA, ACTIONS(2109), 1, + anon_sym_COMMA, + ACTIONS(2113), 1, aux_sym_on_error_phrase_token1, - ACTIONS(2111), 1, + ACTIONS(2115), 1, aux_sym_where_clause_token1, - ACTIONS(2113), 1, + ACTIONS(2117), 1, aux_sym_sort_clause_token1, - ACTIONS(2115), 1, + ACTIONS(2119), 1, aux_sym_sort_clause_token2, - ACTIONS(2265), 1, + ACTIONS(2297), 1, anon_sym_COLON, - STATE(1663), 1, + STATE(1665), 1, sym_of, - STATE(1684), 1, + STATE(1701), 1, sym__pre_tuning, - STATE(1786), 1, - aux_sym_for_phrase_repeat1, - STATE(1789), 1, + STATE(1792), 1, sym_where_clause, - STATE(1946), 1, + STATE(1795), 1, + aux_sym_for_phrase_repeat1, + STATE(1962), 1, sym_query_tuning, - STATE(2115), 1, + STATE(2058), 1, aux_sym_for_phrase_repeat2, - STATE(2557), 1, + STATE(2755), 1, sym_on_error_phrase, - STATE(2783), 1, - sym_sort_clause, - STATE(2795), 1, + STATE(2852), 1, sym_on_quit_phrase, - STATE(3148), 1, + STATE(2934), 1, + sym_sort_clause, + STATE(3337), 1, aux_sym_for_statement_repeat1, - STATE(3150), 1, + STATE(3339), 1, sym_on_stop_phrase, - STATE(1599), 2, + STATE(1613), 2, sym_comment, sym_include, ACTIONS(1195), 5, @@ -114486,22 +115627,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_query_tuning_token2, aux_sym_query_tuning_token3, aux_sym_query_tuning_token4, - [80256] = 7, + [80835] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(2361), 1, - anon_sym_NO_DASHERROR, - ACTIONS(207), 2, + ACTIONS(213), 2, sym__or_operator, sym__and_operator, - STATE(1600), 2, + STATE(1614), 2, sym_comment, sym_include, - ACTIONS(205), 21, + ACTIONS(211), 22, anon_sym_SLASH, sym_identifier, anon_sym_STAR, @@ -114523,20 +115662,23 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token7, aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, - [80300] = 6, + anon_sym_NO_DASHERROR, + [80877] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(179), 2, + ACTIONS(2385), 1, + anon_sym_NO_DASHERROR, + ACTIONS(529), 2, sym__or_operator, sym__and_operator, - STATE(1601), 2, + STATE(1615), 2, sym_comment, sym_include, - ACTIONS(177), 22, + ACTIONS(527), 21, anon_sym_SLASH, sym_identifier, anon_sym_STAR, @@ -114558,21 +115700,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_NO_DASHERROR, - [80342] = 6, + [80921] = 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(161), 2, sym__or_operator, sym__and_operator, - STATE(1602), 2, + STATE(1616), 2, sym_comment, sym_include, - ACTIONS(75), 22, + ACTIONS(159), 22, anon_sym_SLASH, sym_identifier, anon_sym_STAR, @@ -114595,20 +115736,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, anon_sym_NO_DASHERROR, - [80384] = 6, + [80963] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(215), 2, + ACTIONS(217), 2, sym__or_operator, sym__and_operator, - STATE(1603), 2, + STATE(1617), 2, sym_comment, sym_include, - ACTIONS(213), 22, + ACTIONS(215), 22, anon_sym_SLASH, sym_identifier, anon_sym_STAR, @@ -114631,61 +115772,43 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, anon_sym_NO_DASHERROR, - [80426] = 24, - ACTIONS(59), 1, + [81005] = 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(1201), 1, - aux_sym_query_tuning_token5, - ACTIONS(1203), 1, - aux_sym_of_token1, - ACTIONS(2105), 1, - anon_sym_COMMA, - ACTIONS(2109), 1, - aux_sym_on_error_phrase_token1, - ACTIONS(2111), 1, - aux_sym_where_clause_token1, - ACTIONS(2113), 1, - aux_sym_sort_clause_token1, - ACTIONS(2115), 1, - aux_sym_sort_clause_token2, - ACTIONS(2255), 1, - anon_sym_COLON, - STATE(1655), 1, - sym_of, - STATE(1683), 1, - sym__pre_tuning, - STATE(1790), 1, - aux_sym_for_phrase_repeat1, - STATE(1793), 1, - sym_where_clause, - STATE(1946), 1, - sym_query_tuning, - STATE(2033), 1, - aux_sym_for_phrase_repeat2, - STATE(2712), 1, - sym_on_error_phrase, - STATE(2726), 1, - sym_on_quit_phrase, - STATE(2783), 1, - sym_sort_clause, - STATE(3453), 1, - aux_sym_for_statement_repeat1, - STATE(3468), 1, - sym_on_stop_phrase, - STATE(1604), 2, + ACTIONS(147), 2, + sym__or_operator, + sym__and_operator, + 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, - [80504] = 24, + ACTIONS(145), 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, + [81047] = 24, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, @@ -114696,41 +115819,41 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_query_tuning_token5, ACTIONS(1203), 1, aux_sym_of_token1, - ACTIONS(2105), 1, - anon_sym_COMMA, - ACTIONS(2107), 1, - anon_sym_COLON, ACTIONS(2109), 1, + anon_sym_COMMA, + ACTIONS(2113), 1, aux_sym_on_error_phrase_token1, - ACTIONS(2111), 1, + ACTIONS(2115), 1, aux_sym_where_clause_token1, - ACTIONS(2113), 1, + ACTIONS(2117), 1, aux_sym_sort_clause_token1, - ACTIONS(2115), 1, + ACTIONS(2119), 1, aux_sym_sort_clause_token2, - STATE(1638), 1, + ACTIONS(2235), 1, + anon_sym_COLON, + STATE(1679), 1, sym_of, - STATE(1696), 1, + STATE(1695), 1, sym__pre_tuning, - STATE(1794), 1, - sym_where_clause, - STATE(1802), 1, + STATE(1770), 1, aux_sym_for_phrase_repeat1, - STATE(1946), 1, + STATE(1785), 1, + sym_where_clause, + STATE(1962), 1, sym_query_tuning, - STATE(2043), 1, + STATE(2120), 1, aux_sym_for_phrase_repeat2, - STATE(2703), 1, + STATE(2714), 1, sym_on_error_phrase, - STATE(2783), 1, - sym_sort_clause, - STATE(2902), 1, + STATE(2815), 1, sym_on_quit_phrase, - STATE(3316), 1, + STATE(2934), 1, + sym_sort_clause, + STATE(3436), 1, aux_sym_for_statement_repeat1, - STATE(3318), 1, + STATE(3437), 1, sym_on_stop_phrase, - STATE(1605), 2, + STATE(1619), 2, sym_comment, sym_include, ACTIONS(1195), 5, @@ -114739,20 +115862,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_query_tuning_token2, aux_sym_query_tuning_token3, aux_sym_query_tuning_token4, - [80582] = 6, + [81125] = 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(1606), 2, + STATE(1620), 2, sym_comment, sym_include, - ACTIONS(123), 22, + ACTIONS(207), 22, anon_sym_SLASH, sym_identifier, anon_sym_STAR, @@ -114775,20 +115898,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, anon_sym_NO_DASHERROR, - [80624] = 6, + [81167] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(223), 2, + ACTIONS(139), 2, sym__or_operator, sym__and_operator, - STATE(1607), 2, + STATE(1621), 2, sym_comment, sym_include, - ACTIONS(221), 22, + ACTIONS(137), 22, anon_sym_SLASH, sym_identifier, anon_sym_STAR, @@ -114811,7 +115934,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, anon_sym_NO_DASHERROR, - [80666] = 24, + [81209] = 24, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, @@ -114822,41 +115945,41 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_query_tuning_token5, ACTIONS(1203), 1, aux_sym_of_token1, - ACTIONS(2105), 1, - anon_sym_COMMA, ACTIONS(2109), 1, + anon_sym_COMMA, + ACTIONS(2113), 1, aux_sym_on_error_phrase_token1, - ACTIONS(2111), 1, + ACTIONS(2115), 1, aux_sym_where_clause_token1, - ACTIONS(2113), 1, + ACTIONS(2117), 1, aux_sym_sort_clause_token1, - ACTIONS(2115), 1, + ACTIONS(2119), 1, aux_sym_sort_clause_token2, - ACTIONS(2249), 1, + ACTIONS(2243), 1, anon_sym_COLON, - STATE(1661), 1, + STATE(1678), 1, sym_of, - STATE(1686), 1, + STATE(1690), 1, sym__pre_tuning, - STATE(1780), 1, + STATE(1768), 1, sym_where_clause, - STATE(1787), 1, + STATE(1774), 1, aux_sym_for_phrase_repeat1, - STATE(1946), 1, + STATE(1962), 1, sym_query_tuning, - STATE(2031), 1, + STATE(2044), 1, aux_sym_for_phrase_repeat2, - STATE(2693), 1, + STATE(2648), 1, sym_on_error_phrase, - STATE(2783), 1, - sym_sort_clause, - STATE(2916), 1, + STATE(2906), 1, sym_on_quit_phrase, - STATE(3205), 1, - sym_on_stop_phrase, - STATE(3206), 1, + STATE(2934), 1, + sym_sort_clause, + STATE(3350), 1, aux_sym_for_statement_repeat1, - STATE(1608), 2, + STATE(3353), 1, + sym_on_stop_phrase, + STATE(1622), 2, sym_comment, sym_include, ACTIONS(1195), 5, @@ -114865,20 +115988,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_query_tuning_token2, aux_sym_query_tuning_token3, aux_sym_query_tuning_token4, - [80744] = 6, + [81287] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(89), 2, + ACTIONS(181), 2, sym__or_operator, sym__and_operator, - STATE(1609), 2, + STATE(1623), 2, sym_comment, sym_include, - ACTIONS(87), 22, + ACTIONS(179), 22, anon_sym_SLASH, sym_identifier, anon_sym_STAR, @@ -114901,20 +116024,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, anon_sym_NO_DASHERROR, - [80786] = 6, + [81329] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(195), 2, + ACTIONS(197), 2, sym__or_operator, sym__and_operator, - STATE(1610), 2, + STATE(1624), 2, sym_comment, sym_include, - ACTIONS(193), 22, + ACTIONS(195), 22, anon_sym_SLASH, sym_identifier, anon_sym_STAR, @@ -114937,20 +116060,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, anon_sym_NO_DASHERROR, - [80828] = 6, + [81371] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(211), 2, + ACTIONS(189), 2, sym__or_operator, sym__and_operator, - STATE(1611), 2, + STATE(1625), 2, sym_comment, sym_include, - ACTIONS(209), 22, + ACTIONS(187), 22, anon_sym_SLASH, sym_identifier, anon_sym_STAR, @@ -114973,123 +116096,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, anon_sym_NO_DASHERROR, - [80870] = 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(1855), 1, - aux_sym_variable_definition_repeat1, - STATE(1959), 1, - sym_serialization_tuning, - STATE(1962), 1, - aux_sym_buffer_definition_repeat1, - ACTIONS(1356), 2, - aux_sym_serialization_tuning_token1, - aux_sym_serialization_tuning_token2, - STATE(1612), 2, - sym_comment, - sym_include, - STATE(1933), 2, - sym_scope_tuning, - sym_access_tuning, - ACTIONS(1354), 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(1352), 4, - aux_sym_scope_tuning_token1, - aux_sym_scope_tuning_token2, - aux_sym_scope_tuning_token3, - aux_sym_scope_tuning_token4, - [80938] = 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(2105), 1, - anon_sym_COMMA, - ACTIONS(2109), 1, - aux_sym_on_error_phrase_token1, - ACTIONS(2111), 1, - aux_sym_where_clause_token1, - ACTIONS(2113), 1, - aux_sym_sort_clause_token1, - ACTIONS(2115), 1, - aux_sym_sort_clause_token2, - ACTIONS(2121), 1, - anon_sym_COLON, - STATE(1637), 1, - sym_of, - STATE(1680), 1, - sym__pre_tuning, - STATE(1798), 1, - aux_sym_for_phrase_repeat1, - STATE(1800), 1, - sym_where_clause, - STATE(1946), 1, - sym_query_tuning, - STATE(2124), 1, - aux_sym_for_phrase_repeat2, - STATE(2595), 1, - sym_on_error_phrase, - STATE(2783), 1, - sym_sort_clause, - STATE(2824), 1, - sym_on_quit_phrase, - STATE(3162), 1, - aux_sym_for_statement_repeat1, - STATE(3164), 1, - sym_on_stop_phrase, - STATE(1613), 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, - [81016] = 6, + [81413] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(163), 2, + ACTIONS(143), 2, sym__or_operator, sym__and_operator, - STATE(1614), 2, + STATE(1626), 2, sym_comment, sym_include, - ACTIONS(161), 22, + ACTIONS(141), 22, anon_sym_SLASH, sym_identifier, anon_sym_STAR, @@ -115112,20 +116132,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, anon_sym_NO_DASHERROR, - [81058] = 6, + [81455] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(151), 2, + ACTIONS(89), 2, sym__or_operator, sym__and_operator, - STATE(1615), 2, + STATE(1627), 2, sym_comment, sym_include, - ACTIONS(149), 22, + ACTIONS(87), 22, anon_sym_SLASH, sym_identifier, anon_sym_STAR, @@ -115148,122 +116168,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, anon_sym_NO_DASHERROR, - [81100] = 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(2105), 1, - anon_sym_COMMA, - ACTIONS(2109), 1, - aux_sym_on_error_phrase_token1, - ACTIONS(2111), 1, - aux_sym_where_clause_token1, - ACTIONS(2113), 1, - aux_sym_sort_clause_token1, - ACTIONS(2115), 1, - aux_sym_sort_clause_token2, - ACTIONS(2146), 1, - anon_sym_COLON, - STATE(1646), 1, - sym_of, - STATE(1690), 1, - sym__pre_tuning, - STATE(1768), 1, - aux_sym_for_phrase_repeat1, - STATE(1769), 1, - sym_where_clause, - STATE(1946), 1, - sym_query_tuning, - STATE(2085), 1, - aux_sym_for_phrase_repeat2, - STATE(2600), 1, - sym_on_error_phrase, - STATE(2783), 1, - sym_sort_clause, - STATE(2912), 1, - sym_on_quit_phrase, - STATE(3297), 1, - aux_sym_for_statement_repeat1, - STATE(3301), 1, - sym_on_stop_phrase, - STATE(1616), 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, - [81178] = 18, - 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_tuning_token6, - ACTIONS(1372), 1, - aux_sym_property_tuning_token1, - ACTIONS(1452), 1, - aux_sym_function_parameter_token1, - ACTIONS(1454), 1, - aux_sym_property_definition_token1, - ACTIONS(1456), 1, - aux_sym_event_definition_token1, - STATE(1893), 1, - sym_property_tuning, - STATE(2351), 1, - aux_sym_property_definition_repeat1, - STATE(2471), 1, - aux_sym_property_definition_repeat2, - STATE(2828), 1, - sym_property_type, - STATE(4206), 1, - sym_serialization_tuning, - ACTIONS(1348), 2, - aux_sym_variable_tuning_token1, - aux_sym_variable_tuning_token5, - ACTIONS(1370), 2, - aux_sym_property_type_token1, - aux_sym_property_type_token2, - ACTIONS(1443), 2, - aux_sym_serialization_tuning_token1, - aux_sym_serialization_tuning_token2, - STATE(1617), 2, - sym_comment, - sym_include, - ACTIONS(1446), 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, - [81244] = 6, + [81497] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(183), 2, + ACTIONS(201), 2, sym__or_operator, sym__and_operator, - STATE(1618), 2, + STATE(1628), 2, sym_comment, sym_include, - ACTIONS(181), 22, + ACTIONS(199), 22, anon_sym_SLASH, sym_identifier, anon_sym_STAR, @@ -115286,20 +116204,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, anon_sym_NO_DASHERROR, - [81286] = 6, + [81539] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(171), 2, + ACTIONS(67), 2, sym__or_operator, sym__and_operator, - STATE(1619), 2, + STATE(1629), 2, sym_comment, sym_include, - ACTIONS(169), 22, + ACTIONS(63), 22, anon_sym_SLASH, sym_identifier, anon_sym_STAR, @@ -115322,20 +116240,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, anon_sym_NO_DASHERROR, - [81328] = 6, + [81581] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(159), 2, + ACTIONS(111), 2, sym__or_operator, sym__and_operator, - STATE(1620), 2, + STATE(1630), 2, sym_comment, sym_include, - ACTIONS(157), 22, + ACTIONS(109), 22, anon_sym_SLASH, sym_identifier, anon_sym_STAR, @@ -115358,20 +116276,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, anon_sym_NO_DASHERROR, - [81370] = 6, + [81623] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(143), 2, + ACTIONS(177), 2, sym__or_operator, sym__and_operator, - STATE(1621), 2, + STATE(1631), 2, sym_comment, sym_include, - ACTIONS(141), 22, + ACTIONS(175), 22, anon_sym_SLASH, sym_identifier, anon_sym_STAR, @@ -115394,20 +116312,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, anon_sym_NO_DASHERROR, - [81412] = 6, + [81665] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(167), 2, + ACTIONS(155), 2, sym__or_operator, sym__and_operator, - STATE(1622), 2, + STATE(1632), 2, sym_comment, sym_include, - ACTIONS(165), 22, + ACTIONS(153), 22, anon_sym_SLASH, sym_identifier, anon_sym_STAR, @@ -115430,20 +116348,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, anon_sym_NO_DASHERROR, - [81454] = 6, + [81707] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(187), 2, + ACTIONS(173), 2, sym__or_operator, sym__and_operator, - STATE(1623), 2, + STATE(1633), 2, sym_comment, sym_include, - ACTIONS(185), 22, + ACTIONS(171), 22, anon_sym_SLASH, sym_identifier, anon_sym_STAR, @@ -115466,20 +116384,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, anon_sym_NO_DASHERROR, - [81496] = 6, + [81749] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(85), 2, + ACTIONS(169), 2, sym__or_operator, sym__and_operator, - STATE(1624), 2, + STATE(1634), 2, sym_comment, sym_include, - ACTIONS(83), 22, + ACTIONS(167), 22, anon_sym_SLASH, sym_identifier, anon_sym_STAR, @@ -115502,20 +116420,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, anon_sym_NO_DASHERROR, - [81538] = 6, + [81791] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(155), 2, + ACTIONS(135), 2, sym__or_operator, sym__and_operator, - STATE(1625), 2, + STATE(1635), 2, sym_comment, sym_include, - ACTIONS(153), 22, + ACTIONS(133), 22, anon_sym_SLASH, sym_identifier, anon_sym_STAR, @@ -115538,20 +116456,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, anon_sym_NO_DASHERROR, - [81580] = 6, + [81833] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(139), 2, + ACTIONS(193), 2, sym__or_operator, sym__and_operator, - STATE(1626), 2, + STATE(1636), 2, sym_comment, sym_include, - ACTIONS(137), 22, + ACTIONS(191), 22, anon_sym_SLASH, sym_identifier, anon_sym_STAR, @@ -115574,20 +116492,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, anon_sym_NO_DASHERROR, - [81622] = 6, + [81875] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(175), 2, + ACTIONS(121), 2, sym__or_operator, sym__and_operator, - STATE(1627), 2, + STATE(1637), 2, sym_comment, sym_include, - ACTIONS(173), 22, + ACTIONS(119), 22, anon_sym_SLASH, sym_identifier, anon_sym_STAR, @@ -115610,77 +116528,79 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, anon_sym_NO_DASHERROR, - [81664] = 5, + [81917] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(1628), 2, + ACTIONS(185), 2, + sym__or_operator, + sym__and_operator, + STATE(1638), 2, sym_comment, sym_include, - ACTIONS(2379), 24, + ACTIONS(183), 22, + anon_sym_SLASH, 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, - [81704] = 5, + 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, + [81959] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(1629), 2, + ACTIONS(151), 2, + sym__or_operator, + sym__and_operator, + STATE(1639), 2, sym_comment, sym_include, - ACTIONS(2381), 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, - [81744] = 24, + ACTIONS(149), 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, + [82001] = 24, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, @@ -115691,41 +116611,41 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_query_tuning_token5, ACTIONS(1203), 1, aux_sym_of_token1, - ACTIONS(2105), 1, - anon_sym_COMMA, ACTIONS(2109), 1, + anon_sym_COMMA, + ACTIONS(2113), 1, aux_sym_on_error_phrase_token1, - ACTIONS(2111), 1, + ACTIONS(2115), 1, aux_sym_where_clause_token1, - ACTIONS(2113), 1, + ACTIONS(2117), 1, aux_sym_sort_clause_token1, - ACTIONS(2115), 1, + ACTIONS(2119), 1, aux_sym_sort_clause_token2, - ACTIONS(2195), 1, + ACTIONS(2179), 1, anon_sym_COLON, - STATE(1669), 1, + STATE(1671), 1, sym_of, - STATE(1689), 1, + STATE(1702), 1, sym__pre_tuning, - STATE(1785), 1, + STATE(1775), 1, sym_where_clause, - STATE(1795), 1, + STATE(1786), 1, aux_sym_for_phrase_repeat1, - STATE(1946), 1, + STATE(1962), 1, sym_query_tuning, - STATE(2063), 1, + STATE(2092), 1, aux_sym_for_phrase_repeat2, - STATE(2569), 1, + STATE(2646), 1, sym_on_error_phrase, - STATE(2783), 1, - sym_sort_clause, - STATE(2837), 1, + STATE(2870), 1, sym_on_quit_phrase, - STATE(3218), 1, + STATE(2934), 1, + sym_sort_clause, + STATE(3415), 1, aux_sym_for_statement_repeat1, - STATE(3221), 1, + STATE(3418), 1, sym_on_stop_phrase, - STATE(1630), 2, + STATE(1640), 2, sym_comment, sym_include, ACTIONS(1195), 5, @@ -115734,20 +116654,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_query_tuning_token2, aux_sym_query_tuning_token3, aux_sym_query_tuning_token4, - [81822] = 6, + [82079] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(199), 2, + ACTIONS(165), 2, sym__or_operator, sym__and_operator, - STATE(1631), 2, + STATE(1641), 2, sym_comment, sym_include, - ACTIONS(197), 22, + ACTIONS(163), 22, anon_sym_SLASH, sym_identifier, anon_sym_STAR, @@ -115770,124 +116690,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__comparison_operator_token8, aux_sym__comparison_operator_token9, anon_sym_NO_DASHERROR, - [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(2105), 1, - anon_sym_COMMA, - ACTIONS(2109), 1, - aux_sym_on_error_phrase_token1, - ACTIONS(2111), 1, - aux_sym_where_clause_token1, - ACTIONS(2113), 1, - aux_sym_sort_clause_token1, - ACTIONS(2115), 1, - aux_sym_sort_clause_token2, - ACTIONS(2291), 1, - anon_sym_COLON, - STATE(1652), 1, - sym_of, - STATE(1694), 1, - sym__pre_tuning, - STATE(1737), 1, - aux_sym_for_phrase_repeat1, - STATE(1738), 1, - sym_where_clause, - STATE(1946), 1, - sym_query_tuning, - STATE(2111), 1, - aux_sym_for_phrase_repeat2, - STATE(2593), 1, - sym_on_error_phrase, - STATE(2778), 1, - sym_on_quit_phrase, - STATE(2783), 1, - sym_sort_clause, - STATE(3140), 1, - sym_on_stop_phrase, - STATE(3141), 1, - aux_sym_for_statement_repeat1, - STATE(1632), 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, - [81942] = 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(1203), 1, - aux_sym_of_token1, - ACTIONS(2109), 1, - aux_sym_on_error_phrase_token1, - ACTIONS(2111), 1, - aux_sym_where_clause_token1, - ACTIONS(2113), 1, - aux_sym_sort_clause_token1, - ACTIONS(2115), 1, - aux_sym_sort_clause_token2, - STATE(1682), 1, - sym_of, - STATE(1707), 1, - sym__pre_tuning, - STATE(1805), 1, - sym_where_clause, - STATE(1813), 1, - aux_sym_for_phrase_repeat1, - STATE(1946), 1, - sym_query_tuning, - STATE(2209), 1, - aux_sym_for_phrase_repeat2, - STATE(2741), 1, - sym_on_error_phrase, - STATE(2783), 1, - sym_sort_clause, - STATE(3038), 1, - sym_on_quit_phrase, - STATE(4070), 1, - sym_on_stop_phrase, - ACTIONS(2339), 2, - anon_sym_COMMA, - anon_sym_COLON, - STATE(1633), 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, - [82015] = 6, + [82121] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2335), 1, + ACTIONS(2389), 1, aux_sym_variable_definition_token2, - STATE(1634), 2, + STATE(1642), 2, sym_comment, sym_include, - ACTIONS(2333), 22, + ACTIONS(2387), 22, sym__terminator, aux_sym__block_terminator_token1, anon_sym_LPAREN, @@ -115910,19 +116725,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_constructor_definition_token1, aux_sym_field_definition_token1, aux_sym_index_definition_token1, - [82056] = 6, + [82162] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2385), 1, + ACTIONS(2343), 1, aux_sym_variable_definition_token2, - STATE(1635), 2, + STATE(1643), 2, sym_comment, sym_include, - ACTIONS(2383), 22, + ACTIONS(2341), 22, sym__terminator, aux_sym__block_terminator_token1, anon_sym_LPAREN, @@ -115945,44 +116760,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_constructor_definition_token1, aux_sym_field_definition_token1, aux_sym_index_definition_token1, - [82097] = 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(1721), 1, - sym_primitive_type, - STATE(1636), 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, - [82143] = 22, + [82203] = 22, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, @@ -115991,89 +116769,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, ACTIONS(1201), 1, aux_sym_query_tuning_token5, - ACTIONS(2105), 1, - anon_sym_COMMA, - ACTIONS(2109), 1, + ACTIONS(1203), 1, + aux_sym_of_token1, + ACTIONS(2113), 1, aux_sym_on_error_phrase_token1, - ACTIONS(2111), 1, + ACTIONS(2115), 1, aux_sym_where_clause_token1, - ACTIONS(2113), 1, + ACTIONS(2117), 1, aux_sym_sort_clause_token1, - ACTIONS(2115), 1, + ACTIONS(2119), 1, aux_sym_sort_clause_token2, - ACTIONS(2393), 1, - anon_sym_COLON, - STATE(1693), 1, + STATE(1692), 1, + sym_of, + STATE(1732), 1, sym__pre_tuning, - STATE(1784), 1, + STATE(1822), 1, aux_sym_for_phrase_repeat1, - STATE(1803), 1, + STATE(1823), 1, sym_where_clause, - STATE(1946), 1, + STATE(1962), 1, sym_query_tuning, - STATE(2118), 1, + STATE(2162), 1, aux_sym_for_phrase_repeat2, - STATE(2572), 1, + STATE(2911), 1, sym_on_error_phrase, - STATE(2783), 1, + STATE(2934), 1, sym_sort_clause, - STATE(2805), 1, + STATE(3045), 1, sym_on_quit_phrase, - STATE(3153), 1, - aux_sym_for_statement_repeat1, - STATE(3154), 1, + STATE(4161), 1, sym_on_stop_phrase, - STATE(1637), 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, - [82215] = 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(2105), 1, + ACTIONS(2337), 2, anon_sym_COMMA, - ACTIONS(2109), 1, - aux_sym_on_error_phrase_token1, - ACTIONS(2111), 1, - aux_sym_where_clause_token1, - ACTIONS(2113), 1, - aux_sym_sort_clause_token1, - ACTIONS(2115), 1, - aux_sym_sort_clause_token2, - ACTIONS(2395), 1, anon_sym_COLON, - STATE(1688), 1, - sym__pre_tuning, - STATE(1788), 1, - sym_where_clause, - STATE(1797), 1, - aux_sym_for_phrase_repeat1, - STATE(1946), 1, - sym_query_tuning, - STATE(2060), 1, - aux_sym_for_phrase_repeat2, - STATE(2641), 1, - sym_on_error_phrase, - STATE(2783), 1, - sym_sort_clause, - STATE(2878), 1, - sym_on_quit_phrase, - STATE(3307), 1, - aux_sym_for_statement_repeat1, - STATE(3308), 1, - sym_on_stop_phrase, - STATE(1638), 2, + STATE(1644), 2, sym_comment, sym_include, ACTIONS(1195), 5, @@ -116082,25 +116811,25 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_query_tuning_token2, aux_sym_query_tuning_token3, aux_sym_query_tuning_token4, - [82287] = 9, + [82276] = 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, + sym_identifier, + ACTIONS(2395), 1, aux_sym_primitive_type_token19, - STATE(1635), 1, + STATE(1642), 1, sym_qualified_name, - STATE(2334), 1, + STATE(2311), 1, sym_primitive_type, - STATE(1639), 2, + STATE(1645), 2, sym_comment, sym_include, - ACTIONS(2389), 18, + ACTIONS(2393), 18, aux_sym_primitive_type_token1, aux_sym_primitive_type_token2, aux_sym_primitive_type_token3, @@ -116119,72 +116848,25 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_primitive_type_token16, aux_sym_primitive_type_token17, aux_sym_primitive_type_token18, - [82333] = 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(1350), 1, - aux_sym_variable_tuning_token6, - ACTIONS(1372), 1, - aux_sym_property_tuning_token1, - ACTIONS(2401), 1, - aux_sym_variable_definition_token2, - ACTIONS(2403), 1, - aux_sym_getter_token1, - ACTIONS(2405), 1, - aux_sym_setter_token1, - STATE(329), 1, - aux_sym_qualified_name_repeat1, - STATE(1717), 1, - aux_sym_property_definition_repeat2, - STATE(1893), 1, - sym_property_tuning, - STATE(1908), 1, - aux_sym_property_definition_repeat3, - STATE(3917), 1, - sym_access_tuning, - ACTIONS(2399), 2, - aux_sym_variable_tuning_token1, - aux_sym_variable_tuning_token5, - STATE(1640), 2, - sym_comment, - sym_include, - STATE(2189), 2, - sym_getter, - sym_setter, - ACTIONS(1354), 3, - aux_sym_access_tuning_token1, - aux_sym_access_tuning_token2, - aux_sym_access_tuning_token3, - ACTIONS(2397), 4, - aux_sym__block_terminator_token1, - aux_sym_variable_definition_token1, - aux_sym_method_definition_token1, - aux_sym_constructor_definition_token1, - [82399] = 9, + [82322] = 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, + sym_identifier, + ACTIONS(2395), 1, aux_sym_primitive_type_token19, - STATE(1635), 1, + STATE(1642), 1, sym_qualified_name, - STATE(1712), 1, + STATE(2316), 1, sym_primitive_type, - STATE(1641), 2, + STATE(1646), 2, sym_comment, sym_include, - ACTIONS(2389), 18, + ACTIONS(2393), 18, aux_sym_primitive_type_token1, aux_sym_primitive_type_token2, aux_sym_primitive_type_token3, @@ -116203,104 +116885,62 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_primitive_type_token16, aux_sym_primitive_type_token17, aux_sym_primitive_type_token18, - [82445] = 4, + [82368] = 9, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(1642), 2, - sym_comment, - sym_include, - ACTIONS(2407), 23, + ACTIONS(7), 1, anon_sym_LBRACE, + ACTIONS(2391), 1, 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, - 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, - [82481] = 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(1350), 1, - aux_sym_variable_tuning_token6, - ACTIONS(1372), 1, - aux_sym_property_tuning_token1, - ACTIONS(2403), 1, - aux_sym_getter_token1, - ACTIONS(2405), 1, - aux_sym_setter_token1, - ACTIONS(2411), 1, - aux_sym_variable_definition_token2, - STATE(329), 1, - aux_sym_qualified_name_repeat1, - STATE(1713), 1, - aux_sym_property_definition_repeat2, - STATE(1893), 1, - sym_property_tuning, - STATE(1909), 1, - aux_sym_property_definition_repeat3, - STATE(3917), 1, - sym_access_tuning, - ACTIONS(2399), 2, - aux_sym_variable_tuning_token1, - aux_sym_variable_tuning_token5, - STATE(1643), 2, + ACTIONS(2395), 1, + aux_sym_primitive_type_token19, + STATE(1642), 1, + sym_qualified_name, + STATE(1731), 1, + sym_primitive_type, + STATE(1647), 2, sym_comment, sym_include, - STATE(2189), 2, - sym_getter, - sym_setter, - ACTIONS(1354), 3, - aux_sym_access_tuning_token1, - aux_sym_access_tuning_token2, - aux_sym_access_tuning_token3, - ACTIONS(2409), 4, - aux_sym__block_terminator_token1, - aux_sym_variable_definition_token1, - aux_sym_method_definition_token1, - aux_sym_constructor_definition_token1, - [82547] = 9, + ACTIONS(2393), 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, + [82414] = 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, + sym_identifier, + ACTIONS(2395), 1, aux_sym_primitive_type_token19, - STATE(1635), 1, + STATE(1642), 1, sym_qualified_name, - STATE(2341), 1, + STATE(4476), 1, sym_primitive_type, - STATE(1644), 2, + STATE(1648), 2, sym_comment, sym_include, - ACTIONS(2389), 18, + ACTIONS(2393), 18, aux_sym_primitive_type_token1, aux_sym_primitive_type_token2, aux_sym_primitive_type_token3, @@ -116319,15 +116959,15 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_primitive_type_token16, aux_sym_primitive_type_token17, aux_sym_primitive_type_token18, - [82593] = 4, + [82460] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(1645), 2, + STATE(1649), 2, sym_comment, sym_include, - ACTIONS(2413), 23, + ACTIONS(2397), 23, anon_sym_LBRACE, sym_identifier, sym_null_expression, @@ -116351,65 +116991,15 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_expression_token1, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - [82629] = 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(2105), 1, - anon_sym_COMMA, - ACTIONS(2109), 1, - aux_sym_on_error_phrase_token1, - ACTIONS(2111), 1, - aux_sym_where_clause_token1, - ACTIONS(2113), 1, - aux_sym_sort_clause_token1, - ACTIONS(2115), 1, - aux_sym_sort_clause_token2, - ACTIONS(2415), 1, - anon_sym_COLON, - STATE(1695), 1, - sym__pre_tuning, - STATE(1746), 1, - sym_where_clause, - STATE(1751), 1, - aux_sym_for_phrase_repeat1, - STATE(1946), 1, - sym_query_tuning, - STATE(2100), 1, - aux_sym_for_phrase_repeat2, - STATE(2689), 1, - sym_on_error_phrase, - STATE(2783), 1, - sym_sort_clause, - STATE(2913), 1, - sym_on_quit_phrase, - STATE(3293), 1, - aux_sym_for_statement_repeat1, - STATE(3294), 1, - sym_on_stop_phrase, - STATE(1646), 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, - [82701] = 4, + [82496] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(1647), 2, + STATE(1650), 2, sym_comment, sym_include, - ACTIONS(2417), 23, + ACTIONS(2399), 23, anon_sym_LBRACE, sym_identifier, sym_null_expression, @@ -116433,15 +117023,15 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_expression_token1, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - [82737] = 4, + [82532] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - STATE(1648), 2, + STATE(1651), 2, sym_comment, sym_include, - ACTIONS(2419), 23, + ACTIONS(2401), 23, anon_sym_LBRACE, sym_identifier, sym_null_expression, @@ -116465,25 +117055,25 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_expression_token1, aux_sym_available_expression_token1, aux_sym_available_expression_token2, - [82773] = 9, + [82568] = 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, + sym_identifier, + ACTIONS(2395), 1, aux_sym_primitive_type_token19, - STATE(1635), 1, + STATE(1642), 1, sym_qualified_name, - STATE(1726), 1, + STATE(4747), 1, sym_primitive_type, - STATE(1649), 2, + STATE(1652), 2, sym_comment, sym_include, - ACTIONS(2389), 18, + ACTIONS(2393), 18, aux_sym_primitive_type_token1, aux_sym_primitive_type_token2, aux_sym_primitive_type_token3, @@ -116502,25 +117092,25 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_primitive_type_token16, aux_sym_primitive_type_token17, aux_sym_primitive_type_token18, - [82819] = 9, + [82614] = 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, + sym_identifier, + ACTIONS(2395), 1, aux_sym_primitive_type_token19, - STATE(1635), 1, + STATE(1642), 1, sym_qualified_name, - STATE(4666), 1, + STATE(2364), 1, sym_primitive_type, - STATE(1650), 2, + STATE(1653), 2, sym_comment, sym_include, - ACTIONS(2389), 18, + ACTIONS(2393), 18, aux_sym_primitive_type_token1, aux_sym_primitive_type_token2, aux_sym_primitive_type_token3, @@ -116539,25 +117129,57 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_primitive_type_token16, aux_sym_primitive_type_token17, aux_sym_primitive_type_token18, - [82865] = 9, + [82660] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, + STATE(1654), 2, + sym_comment, + sym_include, + ACTIONS(2403), 23, anon_sym_LBRACE, - ACTIONS(2387), 1, 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, + 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, + [82696] = 9, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_LBRACE, ACTIONS(2391), 1, + sym_identifier, + ACTIONS(2395), 1, aux_sym_primitive_type_token19, - STATE(1635), 1, + STATE(1642), 1, sym_qualified_name, - STATE(3952), 1, + STATE(2294), 1, sym_primitive_type, - STATE(1651), 2, + STATE(1655), 2, sym_comment, sym_include, - ACTIONS(2389), 18, + ACTIONS(2393), 18, aux_sym_primitive_type_token1, aux_sym_primitive_type_token2, aux_sym_primitive_type_token3, @@ -116576,75 +117198,72 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_primitive_type_token16, aux_sym_primitive_type_token17, aux_sym_primitive_type_token18, - [82911] = 22, + [82742] = 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, - ACTIONS(2105), 1, - anon_sym_COMMA, - ACTIONS(2109), 1, - aux_sym_on_error_phrase_token1, - ACTIONS(2111), 1, - aux_sym_where_clause_token1, - ACTIONS(2113), 1, - aux_sym_sort_clause_token1, - ACTIONS(2115), 1, - aux_sym_sort_clause_token2, - ACTIONS(2421), 1, - anon_sym_COLON, - STATE(1685), 1, - sym__pre_tuning, - STATE(1755), 1, - aux_sym_for_phrase_repeat1, - STATE(1757), 1, - sym_where_clause, - STATE(1946), 1, - sym_query_tuning, - STATE(2084), 1, - aux_sym_for_phrase_repeat2, - STATE(2657), 1, - sym_on_error_phrase, - STATE(2783), 1, - sym_sort_clause, - STATE(2849), 1, - sym_on_quit_phrase, - STATE(3171), 1, - sym_on_stop_phrase, - STATE(3173), 1, - aux_sym_for_statement_repeat1, - STATE(1652), 2, + ACTIONS(679), 1, + sym__namedot, + ACTIONS(1356), 1, + aux_sym_variable_tuning_token6, + ACTIONS(1378), 1, + aux_sym_property_tuning_token1, + ACTIONS(2409), 1, + aux_sym_variable_definition_token2, + ACTIONS(2411), 1, + aux_sym_getter_token1, + ACTIONS(2413), 1, + aux_sym_setter_token1, + STATE(336), 1, + aux_sym_qualified_name_repeat1, + STATE(1715), 1, + aux_sym_property_definition_repeat2, + STATE(1885), 1, + sym_property_tuning, + STATE(1925), 1, + aux_sym_property_definition_repeat3, + STATE(4072), 1, + sym_access_tuning, + ACTIONS(2407), 2, + aux_sym_variable_tuning_token1, + aux_sym_variable_tuning_token5, + STATE(1656), 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, - [82983] = 9, + STATE(2200), 2, + sym_getter, + sym_setter, + ACTIONS(1360), 3, + aux_sym_access_tuning_token1, + aux_sym_access_tuning_token2, + aux_sym_access_tuning_token3, + ACTIONS(2405), 4, + aux_sym__block_terminator_token1, + aux_sym_variable_definition_token1, + aux_sym_method_definition_token1, + aux_sym_constructor_definition_token1, + [82808] = 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, + sym_identifier, + ACTIONS(2395), 1, aux_sym_primitive_type_token19, - STATE(1635), 1, + STATE(1642), 1, sym_qualified_name, - STATE(2283), 1, + STATE(4029), 1, sym_primitive_type, - STATE(1653), 2, + STATE(1657), 2, sym_comment, sym_include, - ACTIONS(2389), 18, + ACTIONS(2393), 18, aux_sym_primitive_type_token1, aux_sym_primitive_type_token2, aux_sym_primitive_type_token3, @@ -116663,25 +117282,25 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_primitive_type_token16, aux_sym_primitive_type_token17, aux_sym_primitive_type_token18, - [83029] = 9, + [82854] = 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, + sym_identifier, + ACTIONS(2395), 1, aux_sym_primitive_type_token19, - STATE(1635), 1, + STATE(1642), 1, sym_qualified_name, - STATE(4387), 1, + STATE(1712), 1, sym_primitive_type, - STATE(1654), 2, + STATE(1658), 2, sym_comment, sym_include, - ACTIONS(2389), 18, + ACTIONS(2393), 18, aux_sym_primitive_type_token1, aux_sym_primitive_type_token2, aux_sym_primitive_type_token3, @@ -116700,7 +117319,39 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_primitive_type_token16, aux_sym_primitive_type_token17, aux_sym_primitive_type_token18, - [83075] = 22, + [82900] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + STATE(1659), 2, + sym_comment, + sym_include, + ACTIONS(2415), 23, + 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, + 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, + [82936] = 22, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, @@ -116709,39 +117360,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, ACTIONS(1201), 1, aux_sym_query_tuning_token5, - ACTIONS(2105), 1, - anon_sym_COMMA, ACTIONS(2109), 1, + anon_sym_COMMA, + ACTIONS(2113), 1, aux_sym_on_error_phrase_token1, - ACTIONS(2111), 1, + ACTIONS(2115), 1, aux_sym_where_clause_token1, - ACTIONS(2113), 1, + ACTIONS(2117), 1, aux_sym_sort_clause_token1, - ACTIONS(2115), 1, + ACTIONS(2119), 1, aux_sym_sort_clause_token2, - ACTIONS(2423), 1, + ACTIONS(2417), 1, anon_sym_COLON, - STATE(1697), 1, + STATE(1686), 1, sym__pre_tuning, - STATE(1764), 1, + STATE(1753), 1, sym_where_clause, - STATE(1765), 1, + STATE(1812), 1, aux_sym_for_phrase_repeat1, - STATE(1946), 1, + STATE(1962), 1, sym_query_tuning, - STATE(2064), 1, + STATE(2125), 1, aux_sym_for_phrase_repeat2, - STATE(2666), 1, + STATE(2738), 1, sym_on_error_phrase, - STATE(2743), 1, + STATE(2876), 1, sym_on_quit_phrase, - STATE(2783), 1, + STATE(2934), 1, sym_sort_clause, - STATE(3421), 1, - aux_sym_for_statement_repeat1, - STATE(3426), 1, + STATE(3284), 1, sym_on_stop_phrase, - STATE(1655), 2, + STATE(3285), 1, + aux_sym_for_statement_repeat1, + STATE(1660), 2, sym_comment, sym_include, ACTIONS(1195), 5, @@ -116750,25 +117401,25 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_query_tuning_token2, aux_sym_query_tuning_token3, aux_sym_query_tuning_token4, - [83147] = 9, + [83008] = 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, + sym_identifier, + ACTIONS(2395), 1, aux_sym_primitive_type_token19, - STATE(1635), 1, + STATE(1642), 1, sym_qualified_name, - STATE(2329), 1, + STATE(4107), 1, sym_primitive_type, - STATE(1656), 2, + STATE(1661), 2, sym_comment, sym_include, - ACTIONS(2389), 18, + ACTIONS(2393), 18, aux_sym_primitive_type_token1, aux_sym_primitive_type_token2, aux_sym_primitive_type_token3, @@ -116787,25 +117438,122 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_primitive_type_token16, aux_sym_primitive_type_token17, aux_sym_primitive_type_token18, - [83193] = 9, + [83054] = 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(1356), 1, + aux_sym_variable_tuning_token6, + ACTIONS(1378), 1, + aux_sym_property_tuning_token1, + ACTIONS(2411), 1, + aux_sym_getter_token1, + ACTIONS(2413), 1, + aux_sym_setter_token1, + ACTIONS(2421), 1, + aux_sym_variable_definition_token2, + STATE(336), 1, + aux_sym_qualified_name_repeat1, + STATE(1737), 1, + aux_sym_property_definition_repeat2, + STATE(1885), 1, + sym_property_tuning, + STATE(1935), 1, + aux_sym_property_definition_repeat3, + STATE(4072), 1, + sym_access_tuning, + ACTIONS(2407), 2, + aux_sym_variable_tuning_token1, + aux_sym_variable_tuning_token5, + STATE(1662), 2, + sym_comment, + sym_include, + STATE(2200), 2, + sym_getter, + sym_setter, + ACTIONS(1360), 3, + aux_sym_access_tuning_token1, + aux_sym_access_tuning_token2, + aux_sym_access_tuning_token3, + ACTIONS(2419), 4, + aux_sym__block_terminator_token1, + aux_sym_variable_definition_token1, + aux_sym_method_definition_token1, + aux_sym_constructor_definition_token1, + [83120] = 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(2109), 1, + anon_sym_COMMA, + ACTIONS(2113), 1, + aux_sym_on_error_phrase_token1, + ACTIONS(2115), 1, + aux_sym_where_clause_token1, + ACTIONS(2117), 1, + aux_sym_sort_clause_token1, + ACTIONS(2119), 1, + aux_sym_sort_clause_token2, + ACTIONS(2423), 1, + anon_sym_COLON, + STATE(1688), 1, + sym__pre_tuning, + STATE(1748), 1, + sym_where_clause, + STATE(1760), 1, + aux_sym_for_phrase_repeat1, + STATE(1962), 1, + sym_query_tuning, + STATE(2116), 1, + aux_sym_for_phrase_repeat2, + STATE(2728), 1, + sym_on_error_phrase, + STATE(2909), 1, + sym_on_quit_phrase, + STATE(2934), 1, + sym_sort_clause, + STATE(3498), 1, + aux_sym_for_statement_repeat1, + STATE(3501), 1, + sym_on_stop_phrase, + STATE(1663), 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, + [83192] = 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, + sym_identifier, + ACTIONS(2395), 1, aux_sym_primitive_type_token19, - STATE(1635), 1, + STATE(1642), 1, sym_qualified_name, - STATE(2249), 1, + STATE(2050), 1, sym_primitive_type, - STATE(1657), 2, + STATE(1664), 2, sym_comment, sym_include, - ACTIONS(2389), 18, + ACTIONS(2393), 18, aux_sym_primitive_type_token1, aux_sym_primitive_type_token2, aux_sym_primitive_type_token3, @@ -116824,7 +117572,7 @@ 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, + [83238] = 22, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, @@ -116833,39 +117581,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, ACTIONS(1201), 1, aux_sym_query_tuning_token5, - ACTIONS(2105), 1, - anon_sym_COMMA, ACTIONS(2109), 1, + anon_sym_COMMA, + ACTIONS(2113), 1, aux_sym_on_error_phrase_token1, - ACTIONS(2111), 1, + ACTIONS(2115), 1, aux_sym_where_clause_token1, - ACTIONS(2113), 1, + ACTIONS(2117), 1, aux_sym_sort_clause_token1, - ACTIONS(2115), 1, + ACTIONS(2119), 1, aux_sym_sort_clause_token2, ACTIONS(2425), 1, anon_sym_COLON, - STATE(1681), 1, + STATE(1706), 1, sym__pre_tuning, - STATE(1770), 1, + STATE(1799), 1, aux_sym_for_phrase_repeat1, - STATE(1778), 1, + STATE(1800), 1, sym_where_clause, - STATE(1946), 1, + STATE(1962), 1, sym_query_tuning, - STATE(2079), 1, + STATE(2062), 1, aux_sym_for_phrase_repeat2, - STATE(2655), 1, + STATE(2664), 1, sym_on_error_phrase, - STATE(2783), 1, - sym_sort_clause, - STATE(2812), 1, + STATE(2795), 1, sym_on_quit_phrase, - STATE(3229), 1, + STATE(2934), 1, + sym_sort_clause, + STATE(3329), 1, aux_sym_for_statement_repeat1, - STATE(3232), 1, + STATE(3330), 1, sym_on_stop_phrase, - STATE(1658), 2, + STATE(1665), 2, sym_comment, sym_include, ACTIONS(1195), 5, @@ -116874,25 +117622,72 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_query_tuning_token2, aux_sym_query_tuning_token3, aux_sym_query_tuning_token4, - [83311] = 9, + [83310] = 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(1356), 1, + aux_sym_variable_tuning_token6, + ACTIONS(1378), 1, + aux_sym_property_tuning_token1, + ACTIONS(2411), 1, + aux_sym_getter_token1, + ACTIONS(2413), 1, + aux_sym_setter_token1, + ACTIONS(2429), 1, + aux_sym_variable_definition_token2, + STATE(336), 1, + aux_sym_qualified_name_repeat1, + STATE(1741), 1, + aux_sym_property_definition_repeat2, + STATE(1885), 1, + sym_property_tuning, + STATE(1926), 1, + aux_sym_property_definition_repeat3, + STATE(4072), 1, + sym_access_tuning, + ACTIONS(2407), 2, + aux_sym_variable_tuning_token1, + aux_sym_variable_tuning_token5, + STATE(1666), 2, + sym_comment, + sym_include, + STATE(2200), 2, + sym_getter, + sym_setter, + ACTIONS(1360), 3, + aux_sym_access_tuning_token1, + aux_sym_access_tuning_token2, + aux_sym_access_tuning_token3, + ACTIONS(2427), 4, + aux_sym__block_terminator_token1, + aux_sym_variable_definition_token1, + aux_sym_method_definition_token1, + aux_sym_constructor_definition_token1, + [83376] = 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, + sym_identifier, + ACTIONS(2395), 1, aux_sym_primitive_type_token19, - STATE(1635), 1, + STATE(1642), 1, sym_qualified_name, - STATE(2347), 1, + STATE(1728), 1, sym_primitive_type, - STATE(1659), 2, + STATE(1667), 2, sym_comment, sym_include, - ACTIONS(2389), 18, + ACTIONS(2393), 18, aux_sym_primitive_type_token1, aux_sym_primitive_type_token2, aux_sym_primitive_type_token3, @@ -116911,39 +117706,57 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_primitive_type_token16, aux_sym_primitive_type_token17, aux_sym_primitive_type_token18, - [83357] = 4, - ACTIONS(3), 1, + [83422] = 22, + ACTIONS(59), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(61), 1, anon_sym_SLASH_STAR, - STATE(1660), 2, + ACTIONS(65), 1, + anon_sym_LBRACE, + ACTIONS(1201), 1, + aux_sym_query_tuning_token5, + ACTIONS(2109), 1, + anon_sym_COMMA, + ACTIONS(2113), 1, + aux_sym_on_error_phrase_token1, + ACTIONS(2115), 1, + aux_sym_where_clause_token1, + ACTIONS(2117), 1, + aux_sym_sort_clause_token1, + ACTIONS(2119), 1, + aux_sym_sort_clause_token2, + ACTIONS(2431), 1, + anon_sym_COLON, + STATE(1700), 1, + sym__pre_tuning, + STATE(1789), 1, + sym_where_clause, + STATE(1790), 1, + aux_sym_for_phrase_repeat1, + STATE(1962), 1, + sym_query_tuning, + STATE(2055), 1, + aux_sym_for_phrase_repeat2, + STATE(2750), 1, + sym_on_error_phrase, + STATE(2862), 1, + sym_on_quit_phrase, + STATE(2934), 1, + sym_sort_clause, + STATE(3340), 1, + sym_on_stop_phrase, + STATE(3342), 1, + aux_sym_for_statement_repeat1, + STATE(1668), 2, sym_comment, sym_include, - ACTIONS(2427), 23, - 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, - 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, - [83393] = 22, + ACTIONS(1195), 5, + aux_sym_function_call_token1, + aux_sym_query_tuning_token1, + aux_sym_query_tuning_token2, + aux_sym_query_tuning_token3, + aux_sym_query_tuning_token4, + [83494] = 22, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, @@ -116952,39 +117765,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, ACTIONS(1201), 1, aux_sym_query_tuning_token5, - ACTIONS(2105), 1, - anon_sym_COMMA, ACTIONS(2109), 1, + anon_sym_COMMA, + ACTIONS(2113), 1, aux_sym_on_error_phrase_token1, - ACTIONS(2111), 1, + ACTIONS(2115), 1, aux_sym_where_clause_token1, - ACTIONS(2113), 1, + ACTIONS(2117), 1, aux_sym_sort_clause_token1, - ACTIONS(2115), 1, + ACTIONS(2119), 1, aux_sym_sort_clause_token2, - ACTIONS(2429), 1, + ACTIONS(2433), 1, anon_sym_COLON, - STATE(1679), 1, + STATE(1693), 1, sym__pre_tuning, - STATE(1749), 1, + STATE(1791), 1, sym_where_clause, - STATE(1750), 1, + STATE(1801), 1, aux_sym_for_phrase_repeat1, - STATE(1946), 1, + STATE(1962), 1, sym_query_tuning, - STATE(2099), 1, + STATE(2098), 1, aux_sym_for_phrase_repeat2, - STATE(2705), 1, + STATE(2715), 1, sym_on_error_phrase, - STATE(2783), 1, - sym_sort_clause, - STATE(2789), 1, + STATE(2928), 1, sym_on_quit_phrase, - STATE(3244), 1, - sym_on_stop_phrase, - STATE(3245), 1, + STATE(2934), 1, + sym_sort_clause, + STATE(3257), 1, aux_sym_for_statement_repeat1, - STATE(1661), 2, + STATE(3258), 1, + sym_on_stop_phrase, + STATE(1669), 2, sym_comment, sym_include, ACTIONS(1195), 5, @@ -116993,25 +117806,25 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_query_tuning_token2, aux_sym_query_tuning_token3, aux_sym_query_tuning_token4, - [83465] = 9, + [83566] = 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, + sym_identifier, + ACTIONS(2395), 1, aux_sym_primitive_type_token19, - STATE(1635), 1, + STATE(1642), 1, sym_qualified_name, - STATE(3789), 1, + STATE(2280), 1, sym_primitive_type, - STATE(1662), 2, + STATE(1670), 2, sym_comment, sym_include, - ACTIONS(2389), 18, + ACTIONS(2393), 18, aux_sym_primitive_type_token1, aux_sym_primitive_type_token2, aux_sym_primitive_type_token3, @@ -117030,7 +117843,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_primitive_type_token16, aux_sym_primitive_type_token17, aux_sym_primitive_type_token18, - [83511] = 22, + [83612] = 22, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, @@ -117039,39 +117852,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, ACTIONS(1201), 1, aux_sym_query_tuning_token5, - ACTIONS(2105), 1, - anon_sym_COMMA, ACTIONS(2109), 1, + anon_sym_COMMA, + ACTIONS(2113), 1, aux_sym_on_error_phrase_token1, - ACTIONS(2111), 1, + ACTIONS(2115), 1, aux_sym_where_clause_token1, - ACTIONS(2113), 1, + ACTIONS(2117), 1, aux_sym_sort_clause_token1, - ACTIONS(2115), 1, + ACTIONS(2119), 1, aux_sym_sort_clause_token2, - ACTIONS(2431), 1, + ACTIONS(2435), 1, anon_sym_COLON, - STATE(1692), 1, + STATE(1689), 1, sym__pre_tuning, - STATE(1739), 1, - aux_sym_for_phrase_repeat1, - STATE(1741), 1, + STATE(1802), 1, sym_where_clause, - STATE(1946), 1, + STATE(1817), 1, + aux_sym_for_phrase_repeat1, + STATE(1962), 1, sym_query_tuning, - STATE(2098), 1, + STATE(2078), 1, aux_sym_for_phrase_repeat2, - STATE(2579), 1, + STATE(2601), 1, sym_on_error_phrase, - STATE(2783), 1, - sym_sort_clause, - STATE(2785), 1, + STATE(2798), 1, sym_on_quit_phrase, - STATE(3142), 1, + STATE(2934), 1, + sym_sort_clause, + STATE(3408), 1, aux_sym_for_statement_repeat1, - STATE(3143), 1, + STATE(3409), 1, sym_on_stop_phrase, - STATE(1663), 2, + STATE(1671), 2, sym_comment, sym_include, ACTIONS(1195), 5, @@ -117080,25 +117893,25 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_query_tuning_token2, aux_sym_query_tuning_token3, aux_sym_query_tuning_token4, - [83583] = 9, + [83684] = 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, + sym_identifier, + ACTIONS(2395), 1, aux_sym_primitive_type_token19, - STATE(1635), 1, + STATE(1642), 1, sym_qualified_name, - STATE(3867), 1, + STATE(2268), 1, sym_primitive_type, - STATE(1664), 2, + STATE(1672), 2, sym_comment, sym_include, - ACTIONS(2389), 18, + ACTIONS(2393), 18, aux_sym_primitive_type_token1, aux_sym_primitive_type_token2, aux_sym_primitive_type_token3, @@ -117117,25 +117930,25 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_primitive_type_token16, aux_sym_primitive_type_token17, aux_sym_primitive_type_token18, - [83629] = 9, + [83730] = 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, + sym_identifier, + ACTIONS(2395), 1, aux_sym_primitive_type_token19, - STATE(1635), 1, + STATE(1642), 1, sym_qualified_name, - STATE(2296), 1, + STATE(2333), 1, sym_primitive_type, - STATE(1665), 2, + STATE(1673), 2, sym_comment, sym_include, - ACTIONS(2389), 18, + ACTIONS(2393), 18, aux_sym_primitive_type_token1, aux_sym_primitive_type_token2, aux_sym_primitive_type_token3, @@ -117154,72 +117967,25 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_primitive_type_token16, aux_sym_primitive_type_token17, aux_sym_primitive_type_token18, - [83675] = 19, - ACTIONS(59), 1, + [83776] = 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(679), 1, - sym__namedot, - ACTIONS(1350), 1, - aux_sym_variable_tuning_token6, - ACTIONS(1372), 1, - aux_sym_property_tuning_token1, - ACTIONS(2403), 1, - aux_sym_getter_token1, - ACTIONS(2405), 1, - aux_sym_setter_token1, - ACTIONS(2435), 1, - aux_sym_variable_definition_token2, - STATE(329), 1, - aux_sym_qualified_name_repeat1, - STATE(1706), 1, - aux_sym_property_definition_repeat2, - STATE(1893), 1, - sym_property_tuning, - STATE(1913), 1, - aux_sym_property_definition_repeat3, - STATE(3917), 1, - sym_access_tuning, - ACTIONS(2399), 2, - aux_sym_variable_tuning_token1, - aux_sym_variable_tuning_token5, - STATE(1666), 2, - sym_comment, - sym_include, - STATE(2189), 2, - sym_getter, - sym_setter, - ACTIONS(1354), 3, - aux_sym_access_tuning_token1, - aux_sym_access_tuning_token2, - aux_sym_access_tuning_token3, - ACTIONS(2433), 4, - aux_sym__block_terminator_token1, - aux_sym_variable_definition_token1, - aux_sym_method_definition_token1, - aux_sym_constructor_definition_token1, - [83741] = 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, + sym_identifier, + ACTIONS(2395), 1, aux_sym_primitive_type_token19, - STATE(1635), 1, + STATE(1642), 1, sym_qualified_name, - STATE(2240), 1, + STATE(3964), 1, sym_primitive_type, - STATE(1667), 2, + STATE(1674), 2, sym_comment, sym_include, - ACTIONS(2389), 18, + ACTIONS(2393), 18, aux_sym_primitive_type_token1, aux_sym_primitive_type_token2, aux_sym_primitive_type_token3, @@ -117238,25 +118004,75 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_primitive_type_token16, aux_sym_primitive_type_token17, aux_sym_primitive_type_token18, - [83787] = 9, + [83822] = 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(2109), 1, + anon_sym_COMMA, + ACTIONS(2113), 1, + aux_sym_on_error_phrase_token1, + ACTIONS(2115), 1, + aux_sym_where_clause_token1, + ACTIONS(2117), 1, + aux_sym_sort_clause_token1, + ACTIONS(2119), 1, + aux_sym_sort_clause_token2, + ACTIONS(2437), 1, + anon_sym_COLON, + STATE(1697), 1, + sym__pre_tuning, + STATE(1764), 1, + aux_sym_for_phrase_repeat1, + STATE(1780), 1, + sym_where_clause, + STATE(1962), 1, + sym_query_tuning, + STATE(2087), 1, + aux_sym_for_phrase_repeat2, + STATE(2689), 1, + sym_on_error_phrase, + STATE(2934), 1, + sym_sort_clause, + STATE(2951), 1, + sym_on_quit_phrase, + STATE(3518), 1, + aux_sym_for_statement_repeat1, + STATE(3519), 1, + sym_on_stop_phrase, + STATE(1675), 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, + [83894] = 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, + sym_identifier, + ACTIONS(2395), 1, aux_sym_primitive_type_token19, - STATE(1635), 1, + STATE(1642), 1, sym_qualified_name, - STATE(2120), 1, + STATE(2276), 1, sym_primitive_type, - STATE(1668), 2, + STATE(1676), 2, sym_comment, sym_include, - ACTIONS(2389), 18, + ACTIONS(2393), 18, aux_sym_primitive_type_token1, aux_sym_primitive_type_token2, aux_sym_primitive_type_token3, @@ -117275,7 +118091,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_primitive_type_token16, aux_sym_primitive_type_token17, aux_sym_primitive_type_token18, - [83833] = 22, + [83940] = 22, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, @@ -117284,39 +118100,89 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, ACTIONS(1201), 1, aux_sym_query_tuning_token5, - ACTIONS(2105), 1, - anon_sym_COMMA, ACTIONS(2109), 1, + anon_sym_COMMA, + ACTIONS(2113), 1, aux_sym_on_error_phrase_token1, - ACTIONS(2111), 1, + ACTIONS(2115), 1, aux_sym_where_clause_token1, - ACTIONS(2113), 1, + ACTIONS(2117), 1, aux_sym_sort_clause_token1, - ACTIONS(2115), 1, + ACTIONS(2119), 1, aux_sym_sort_clause_token2, - ACTIONS(2437), 1, + ACTIONS(2439), 1, anon_sym_COLON, - STATE(1691), 1, + STATE(1703), 1, sym__pre_tuning, - STATE(1771), 1, + STATE(1794), 1, + aux_sym_for_phrase_repeat1, + STATE(1796), 1, sym_where_clause, - STATE(1772), 1, + STATE(1962), 1, + sym_query_tuning, + STATE(2132), 1, + aux_sym_for_phrase_repeat2, + STATE(2746), 1, + sym_on_error_phrase, + STATE(2869), 1, + sym_on_quit_phrase, + STATE(2934), 1, + sym_sort_clause, + STATE(3273), 1, + aux_sym_for_statement_repeat1, + STATE(3274), 1, + sym_on_stop_phrase, + STATE(1677), 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, + [84012] = 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(2109), 1, + anon_sym_COMMA, + ACTIONS(2113), 1, + aux_sym_on_error_phrase_token1, + ACTIONS(2115), 1, + aux_sym_where_clause_token1, + ACTIONS(2117), 1, + aux_sym_sort_clause_token1, + ACTIONS(2119), 1, + aux_sym_sort_clause_token2, + ACTIONS(2441), 1, + anon_sym_COLON, + STATE(1698), 1, + sym__pre_tuning, + STATE(1782), 1, aux_sym_for_phrase_repeat1, - STATE(1946), 1, + STATE(1783), 1, + sym_where_clause, + STATE(1962), 1, sym_query_tuning, STATE(2052), 1, aux_sym_for_phrase_repeat2, - STATE(2554), 1, + STATE(2727), 1, sym_on_error_phrase, - STATE(2783), 1, - sym_sort_clause, - STATE(2864), 1, + STATE(2917), 1, sym_on_quit_phrase, - STATE(3212), 1, + STATE(2934), 1, + sym_sort_clause, + STATE(3343), 1, aux_sym_for_statement_repeat1, - STATE(3214), 1, + STATE(3344), 1, sym_on_stop_phrase, - STATE(1669), 2, + STATE(1678), 2, sym_comment, sym_include, ACTIONS(1195), 5, @@ -117325,62 +118191,75 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_query_tuning_token2, aux_sym_query_tuning_token3, aux_sym_query_tuning_token4, - [83905] = 9, - ACTIONS(3), 1, + [84084] = 22, + 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(2387), 1, - sym_identifier, - ACTIONS(2391), 1, - aux_sym_primitive_type_token19, - STATE(1635), 1, - sym_qualified_name, - STATE(2290), 1, - sym_primitive_type, - STATE(1670), 2, + ACTIONS(1201), 1, + aux_sym_query_tuning_token5, + ACTIONS(2109), 1, + anon_sym_COMMA, + ACTIONS(2113), 1, + aux_sym_on_error_phrase_token1, + ACTIONS(2115), 1, + aux_sym_where_clause_token1, + ACTIONS(2117), 1, + aux_sym_sort_clause_token1, + ACTIONS(2119), 1, + aux_sym_sort_clause_token2, + ACTIONS(2443), 1, + anon_sym_COLON, + STATE(1696), 1, + sym__pre_tuning, + STATE(1754), 1, + sym_where_clause, + STATE(1757), 1, + aux_sym_for_phrase_repeat1, + STATE(1962), 1, + sym_query_tuning, + STATE(2101), 1, + aux_sym_for_phrase_repeat2, + STATE(2666), 1, + sym_on_error_phrase, + STATE(2807), 1, + sym_on_quit_phrase, + STATE(2934), 1, + sym_sort_clause, + STATE(3423), 1, + aux_sym_for_statement_repeat1, + STATE(3426), 1, + sym_on_stop_phrase, + STATE(1679), 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, - [83951] = 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, + [84156] = 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, + sym_identifier, + ACTIONS(2395), 1, aux_sym_primitive_type_token19, - STATE(1635), 1, + STATE(1642), 1, sym_qualified_name, - STATE(2348), 1, + STATE(2299), 1, sym_primitive_type, - STATE(1671), 2, + STATE(1680), 2, sym_comment, sym_include, - ACTIONS(2389), 18, + ACTIONS(2393), 18, aux_sym_primitive_type_token1, aux_sym_primitive_type_token2, aux_sym_primitive_type_token3, @@ -117399,25 +118278,25 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_primitive_type_token16, aux_sym_primitive_type_token17, aux_sym_primitive_type_token18, - [83997] = 9, + [84202] = 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, + sym_identifier, + ACTIONS(2395), 1, aux_sym_primitive_type_token19, - STATE(1635), 1, + STATE(1642), 1, sym_qualified_name, - STATE(1732), 1, + STATE(1725), 1, sym_primitive_type, - STATE(1672), 2, + STATE(1681), 2, sym_comment, sym_include, - ACTIONS(2389), 18, + ACTIONS(2393), 18, aux_sym_primitive_type_token1, aux_sym_primitive_type_token2, aux_sym_primitive_type_token3, @@ -117436,25 +118315,25 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_primitive_type_token16, aux_sym_primitive_type_token17, aux_sym_primitive_type_token18, - [84043] = 9, + [84248] = 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, + sym_identifier, + ACTIONS(2395), 1, aux_sym_primitive_type_token19, - STATE(1635), 1, + STATE(1642), 1, sym_qualified_name, - STATE(2253), 1, + STATE(2326), 1, sym_primitive_type, - STATE(1673), 2, + STATE(1682), 2, sym_comment, sym_include, - ACTIONS(2389), 18, + ACTIONS(2393), 18, aux_sym_primitive_type_token1, aux_sym_primitive_type_token2, aux_sym_primitive_type_token3, @@ -117473,7 +118352,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_primitive_type_token16, aux_sym_primitive_type_token17, aux_sym_primitive_type_token18, - [84089] = 19, + [84294] = 19, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, @@ -117482,63 +118361,100 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, ACTIONS(679), 1, sym__namedot, - ACTIONS(1350), 1, + ACTIONS(1356), 1, aux_sym_variable_tuning_token6, - ACTIONS(1372), 1, + ACTIONS(1378), 1, aux_sym_property_tuning_token1, - ACTIONS(2403), 1, + ACTIONS(2411), 1, aux_sym_getter_token1, - ACTIONS(2405), 1, + ACTIONS(2413), 1, aux_sym_setter_token1, - ACTIONS(2441), 1, + ACTIONS(2447), 1, aux_sym_variable_definition_token2, - STATE(329), 1, + STATE(336), 1, aux_sym_qualified_name_repeat1, - STATE(1731), 1, + STATE(1719), 1, aux_sym_property_definition_repeat2, - STATE(1893), 1, + STATE(1885), 1, sym_property_tuning, - STATE(1937), 1, + STATE(1956), 1, aux_sym_property_definition_repeat3, - STATE(3917), 1, + STATE(4072), 1, sym_access_tuning, - ACTIONS(2399), 2, + ACTIONS(2407), 2, aux_sym_variable_tuning_token1, aux_sym_variable_tuning_token5, - STATE(1674), 2, + STATE(1683), 2, sym_comment, sym_include, - STATE(2189), 2, + STATE(2200), 2, sym_getter, sym_setter, - ACTIONS(1354), 3, + ACTIONS(1360), 3, aux_sym_access_tuning_token1, aux_sym_access_tuning_token2, aux_sym_access_tuning_token3, - ACTIONS(2439), 4, + ACTIONS(2445), 4, aux_sym__block_terminator_token1, aux_sym_variable_definition_token1, aux_sym_method_definition_token1, aux_sym_constructor_definition_token1, - [84155] = 9, + [84360] = 9, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(2387), 1, + ACTIONS(2391), 1, sym_identifier, + ACTIONS(2395), 1, + aux_sym_primitive_type_token19, + STATE(1642), 1, + sym_qualified_name, + STATE(2278), 1, + sym_primitive_type, + STATE(1684), 2, + sym_comment, + sym_include, + ACTIONS(2393), 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, + [84406] = 9, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_LBRACE, ACTIONS(2391), 1, + sym_identifier, + ACTIONS(2395), 1, aux_sym_primitive_type_token19, - STATE(1635), 1, + STATE(1642), 1, sym_qualified_name, - STATE(2220), 1, + STATE(2287), 1, sym_primitive_type, - STATE(1675), 2, + STATE(1685), 2, sym_comment, sym_include, - ACTIONS(2389), 18, + ACTIONS(2393), 18, aux_sym_primitive_type_token1, aux_sym_primitive_type_token2, aux_sym_primitive_type_token3, @@ -117557,7 +118473,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_primitive_type_token16, aux_sym_primitive_type_token17, aux_sym_primitive_type_token18, - [84201] = 22, + [84452] = 21, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, @@ -117566,39 +118482,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, ACTIONS(1201), 1, aux_sym_query_tuning_token5, - ACTIONS(2105), 1, - anon_sym_COMMA, ACTIONS(2109), 1, + anon_sym_COMMA, + ACTIONS(2113), 1, aux_sym_on_error_phrase_token1, - ACTIONS(2111), 1, + ACTIONS(2115), 1, aux_sym_where_clause_token1, - ACTIONS(2113), 1, + ACTIONS(2117), 1, aux_sym_sort_clause_token1, - ACTIONS(2115), 1, + ACTIONS(2119), 1, aux_sym_sort_clause_token2, - ACTIONS(2443), 1, + ACTIONS(2449), 1, anon_sym_COLON, - STATE(1687), 1, - sym__pre_tuning, - STATE(1799), 1, - aux_sym_for_phrase_repeat1, - STATE(1801), 1, + STATE(1803), 1, sym_where_clause, - STATE(1946), 1, + STATE(1804), 1, + aux_sym_for_phrase_repeat1, + STATE(2019), 1, sym_query_tuning, - STATE(2042), 1, + STATE(2063), 1, aux_sym_for_phrase_repeat2, - STATE(2635), 1, + STATE(2737), 1, sym_on_error_phrase, - STATE(2760), 1, + STATE(2894), 1, sym_on_quit_phrase, - STATE(2783), 1, + STATE(2934), 1, sym_sort_clause, - STATE(3483), 1, + STATE(3324), 1, aux_sym_for_statement_repeat1, - STATE(3492), 1, + STATE(3327), 1, sym_on_stop_phrase, - STATE(1676), 2, + STATE(1686), 2, sym_comment, sym_include, ACTIONS(1195), 5, @@ -117607,7 +118521,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_query_tuning_token2, aux_sym_query_tuning_token3, aux_sym_query_tuning_token4, - [84273] = 21, + [84521] = 21, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, @@ -117616,37 +118530,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, ACTIONS(1201), 1, aux_sym_query_tuning_token5, - ACTIONS(2105), 1, - anon_sym_COMMA, ACTIONS(2109), 1, + anon_sym_COMMA, + ACTIONS(2113), 1, aux_sym_on_error_phrase_token1, - ACTIONS(2111), 1, + ACTIONS(2115), 1, aux_sym_where_clause_token1, - ACTIONS(2113), 1, + ACTIONS(2117), 1, aux_sym_sort_clause_token1, - ACTIONS(2115), 1, + ACTIONS(2119), 1, aux_sym_sort_clause_token2, - ACTIONS(2425), 1, + ACTIONS(2439), 1, anon_sym_COLON, - STATE(1770), 1, + STATE(1794), 1, aux_sym_for_phrase_repeat1, - STATE(1778), 1, + STATE(1796), 1, sym_where_clause, - STATE(1953), 1, + STATE(2019), 1, sym_query_tuning, - STATE(2079), 1, + STATE(2132), 1, aux_sym_for_phrase_repeat2, - STATE(2655), 1, + STATE(2746), 1, sym_on_error_phrase, - STATE(2783), 1, - sym_sort_clause, - STATE(2812), 1, + STATE(2869), 1, sym_on_quit_phrase, - STATE(3229), 1, + STATE(2934), 1, + sym_sort_clause, + STATE(3273), 1, aux_sym_for_statement_repeat1, - STATE(3232), 1, + STATE(3274), 1, sym_on_stop_phrase, - STATE(1677), 2, + STATE(1687), 2, sym_comment, sym_include, ACTIONS(1195), 5, @@ -117655,7 +118569,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_query_tuning_token2, aux_sym_query_tuning_token3, aux_sym_query_tuning_token4, - [84342] = 21, + [84590] = 21, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, @@ -117664,37 +118578,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, ACTIONS(1201), 1, aux_sym_query_tuning_token5, - ACTIONS(2105), 1, - anon_sym_COMMA, ACTIONS(2109), 1, + anon_sym_COMMA, + ACTIONS(2113), 1, aux_sym_on_error_phrase_token1, - ACTIONS(2111), 1, + ACTIONS(2115), 1, aux_sym_where_clause_token1, - ACTIONS(2113), 1, + ACTIONS(2117), 1, aux_sym_sort_clause_token1, - ACTIONS(2115), 1, + ACTIONS(2119), 1, aux_sym_sort_clause_token2, - ACTIONS(2443), 1, + ACTIONS(2451), 1, anon_sym_COLON, - STATE(1799), 1, + STATE(1750), 1, aux_sym_for_phrase_repeat1, - STATE(1801), 1, + STATE(1751), 1, sym_where_clause, - STATE(1953), 1, + STATE(2019), 1, sym_query_tuning, - STATE(2042), 1, + STATE(2130), 1, aux_sym_for_phrase_repeat2, - STATE(2635), 1, + STATE(2743), 1, sym_on_error_phrase, - STATE(2760), 1, + STATE(2877), 1, sym_on_quit_phrase, - STATE(2783), 1, + STATE(2934), 1, sym_sort_clause, - STATE(3483), 1, - aux_sym_for_statement_repeat1, - STATE(3492), 1, + STATE(3488), 1, sym_on_stop_phrase, - STATE(1678), 2, + STATE(3489), 1, + aux_sym_for_statement_repeat1, + STATE(1688), 2, sym_comment, sym_include, ACTIONS(1195), 5, @@ -117703,7 +118617,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_query_tuning_token2, aux_sym_query_tuning_token3, aux_sym_query_tuning_token4, - [84411] = 21, + [84659] = 21, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, @@ -117712,37 +118626,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, ACTIONS(1201), 1, aux_sym_query_tuning_token5, - ACTIONS(2105), 1, - anon_sym_COMMA, ACTIONS(2109), 1, + anon_sym_COMMA, + ACTIONS(2113), 1, aux_sym_on_error_phrase_token1, - ACTIONS(2111), 1, + ACTIONS(2115), 1, aux_sym_where_clause_token1, - ACTIONS(2113), 1, + ACTIONS(2117), 1, aux_sym_sort_clause_token1, - ACTIONS(2115), 1, + ACTIONS(2119), 1, aux_sym_sort_clause_token2, - ACTIONS(2445), 1, + ACTIONS(2453), 1, anon_sym_COLON, STATE(1744), 1, aux_sym_for_phrase_repeat1, STATE(1745), 1, sym_where_clause, - STATE(1953), 1, + STATE(2019), 1, sym_query_tuning, - STATE(2112), 1, + STATE(2061), 1, aux_sym_for_phrase_repeat2, - STATE(2592), 1, + STATE(2622), 1, sym_on_error_phrase, - STATE(2765), 1, + STATE(2924), 1, sym_on_quit_phrase, - STATE(2783), 1, + STATE(2934), 1, sym_sort_clause, - STATE(3286), 1, - aux_sym_for_statement_repeat1, - STATE(3287), 1, + STATE(3400), 1, sym_on_stop_phrase, - STATE(1679), 2, + STATE(3401), 1, + aux_sym_for_statement_repeat1, + STATE(1689), 2, sym_comment, sym_include, ACTIONS(1195), 5, @@ -117751,7 +118665,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_query_tuning_token2, aux_sym_query_tuning_token3, aux_sym_query_tuning_token4, - [84480] = 21, + [84728] = 21, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, @@ -117760,37 +118674,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, ACTIONS(1201), 1, aux_sym_query_tuning_token5, - ACTIONS(2105), 1, - anon_sym_COMMA, ACTIONS(2109), 1, + anon_sym_COMMA, + ACTIONS(2113), 1, aux_sym_on_error_phrase_token1, - ACTIONS(2111), 1, + ACTIONS(2115), 1, aux_sym_where_clause_token1, - ACTIONS(2113), 1, + ACTIONS(2117), 1, aux_sym_sort_clause_token1, - ACTIONS(2115), 1, + ACTIONS(2119), 1, aux_sym_sort_clause_token2, - ACTIONS(2393), 1, + ACTIONS(2441), 1, anon_sym_COLON, - STATE(1784), 1, + STATE(1782), 1, aux_sym_for_phrase_repeat1, - STATE(1803), 1, + STATE(1783), 1, sym_where_clause, - STATE(1953), 1, + STATE(2019), 1, sym_query_tuning, - STATE(2118), 1, + STATE(2052), 1, aux_sym_for_phrase_repeat2, - STATE(2572), 1, + STATE(2727), 1, sym_on_error_phrase, - STATE(2783), 1, - sym_sort_clause, - STATE(2805), 1, + STATE(2917), 1, sym_on_quit_phrase, - STATE(3153), 1, + STATE(2934), 1, + sym_sort_clause, + STATE(3343), 1, aux_sym_for_statement_repeat1, - STATE(3154), 1, + STATE(3344), 1, sym_on_stop_phrase, - STATE(1680), 2, + STATE(1690), 2, sym_comment, sym_include, ACTIONS(1195), 5, @@ -117799,7 +118713,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_query_tuning_token2, aux_sym_query_tuning_token3, aux_sym_query_tuning_token4, - [84549] = 21, + [84797] = 21, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, @@ -117808,37 +118722,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, ACTIONS(1201), 1, aux_sym_query_tuning_token5, - ACTIONS(2105), 1, - anon_sym_COMMA, ACTIONS(2109), 1, + anon_sym_COMMA, + ACTIONS(2113), 1, aux_sym_on_error_phrase_token1, - ACTIONS(2111), 1, + ACTIONS(2115), 1, aux_sym_where_clause_token1, - ACTIONS(2113), 1, + ACTIONS(2117), 1, aux_sym_sort_clause_token1, - ACTIONS(2115), 1, + ACTIONS(2119), 1, aux_sym_sort_clause_token2, - ACTIONS(2447), 1, + ACTIONS(2417), 1, anon_sym_COLON, - STATE(1740), 1, + STATE(1753), 1, sym_where_clause, - STATE(1796), 1, + STATE(1812), 1, aux_sym_for_phrase_repeat1, - STATE(1953), 1, + STATE(2019), 1, sym_query_tuning, - STATE(2057), 1, + STATE(2125), 1, aux_sym_for_phrase_repeat2, - STATE(2621), 1, + STATE(2738), 1, sym_on_error_phrase, - STATE(2783), 1, - sym_sort_clause, - STATE(2858), 1, + STATE(2876), 1, sym_on_quit_phrase, - STATE(3215), 1, + STATE(2934), 1, + sym_sort_clause, + STATE(3284), 1, sym_on_stop_phrase, - STATE(3216), 1, + STATE(3285), 1, aux_sym_for_statement_repeat1, - STATE(1681), 2, + STATE(1691), 2, sym_comment, sym_include, ACTIONS(1195), 5, @@ -117847,7 +118761,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_query_tuning_token2, aux_sym_query_tuning_token3, aux_sym_query_tuning_token4, - [84618] = 20, + [84866] = 20, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, @@ -117856,36 +118770,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, ACTIONS(1201), 1, aux_sym_query_tuning_token5, - ACTIONS(2109), 1, + ACTIONS(2113), 1, aux_sym_on_error_phrase_token1, - ACTIONS(2111), 1, + ACTIONS(2115), 1, aux_sym_where_clause_token1, - ACTIONS(2113), 1, + ACTIONS(2117), 1, aux_sym_sort_clause_token1, - ACTIONS(2115), 1, + ACTIONS(2119), 1, aux_sym_sort_clause_token2, - STATE(1710), 1, + STATE(1735), 1, sym__pre_tuning, - STATE(1806), 1, + STATE(1819), 1, sym_where_clause, - STATE(1807), 1, + STATE(1820), 1, aux_sym_for_phrase_repeat1, - STATE(1946), 1, + STATE(1962), 1, sym_query_tuning, - STATE(2199), 1, + STATE(2163), 1, aux_sym_for_phrase_repeat2, - STATE(2783), 1, + STATE(2934), 1, sym_sort_clause, - STATE(2857), 1, + STATE(2979), 1, sym_on_error_phrase, - STATE(2970), 1, + STATE(3017), 1, sym_on_quit_phrase, - STATE(3969), 1, + STATE(4120), 1, sym_on_stop_phrase, - ACTIONS(2449), 2, + ACTIONS(2455), 2, anon_sym_COMMA, anon_sym_COLON, - STATE(1682), 2, + STATE(1692), 2, sym_comment, sym_include, ACTIONS(1195), 5, @@ -117894,7 +118808,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_query_tuning_token2, aux_sym_query_tuning_token3, aux_sym_query_tuning_token4, - [84685] = 21, + [84933] = 21, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, @@ -117903,37 +118817,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, ACTIONS(1201), 1, aux_sym_query_tuning_token5, - ACTIONS(2105), 1, - anon_sym_COMMA, ACTIONS(2109), 1, + anon_sym_COMMA, + ACTIONS(2113), 1, aux_sym_on_error_phrase_token1, - ACTIONS(2111), 1, + ACTIONS(2115), 1, aux_sym_where_clause_token1, - ACTIONS(2113), 1, + ACTIONS(2117), 1, aux_sym_sort_clause_token1, - ACTIONS(2115), 1, + ACTIONS(2119), 1, aux_sym_sort_clause_token2, - ACTIONS(2423), 1, + ACTIONS(2457), 1, anon_sym_COLON, - STATE(1764), 1, + STATE(1771), 1, sym_where_clause, - STATE(1765), 1, + STATE(1776), 1, aux_sym_for_phrase_repeat1, - STATE(1953), 1, + STATE(2019), 1, sym_query_tuning, - STATE(2064), 1, + STATE(2067), 1, aux_sym_for_phrase_repeat2, - STATE(2666), 1, + STATE(2678), 1, sym_on_error_phrase, - STATE(2743), 1, - sym_on_quit_phrase, - STATE(2783), 1, + STATE(2934), 1, sym_sort_clause, - STATE(3421), 1, - aux_sym_for_statement_repeat1, - STATE(3426), 1, + STATE(2960), 1, + sym_on_quit_phrase, + STATE(3249), 1, sym_on_stop_phrase, - STATE(1683), 2, + STATE(3251), 1, + aux_sym_for_statement_repeat1, + STATE(1693), 2, sym_comment, sym_include, ACTIONS(1195), 5, @@ -117942,7 +118856,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_query_tuning_token2, aux_sym_query_tuning_token3, aux_sym_query_tuning_token4, - [84754] = 21, + [85002] = 21, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, @@ -117951,37 +118865,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, ACTIONS(1201), 1, aux_sym_query_tuning_token5, - ACTIONS(2105), 1, - anon_sym_COMMA, ACTIONS(2109), 1, + anon_sym_COMMA, + ACTIONS(2113), 1, aux_sym_on_error_phrase_token1, - ACTIONS(2111), 1, + ACTIONS(2115), 1, aux_sym_where_clause_token1, - ACTIONS(2113), 1, + ACTIONS(2117), 1, aux_sym_sort_clause_token1, - ACTIONS(2115), 1, + ACTIONS(2119), 1, aux_sym_sort_clause_token2, - ACTIONS(2431), 1, + ACTIONS(2423), 1, anon_sym_COLON, - STATE(1739), 1, - aux_sym_for_phrase_repeat1, - STATE(1741), 1, + STATE(1748), 1, sym_where_clause, - STATE(1953), 1, + STATE(1760), 1, + aux_sym_for_phrase_repeat1, + STATE(2019), 1, sym_query_tuning, - STATE(2098), 1, + STATE(2116), 1, aux_sym_for_phrase_repeat2, - STATE(2579), 1, + STATE(2728), 1, sym_on_error_phrase, - STATE(2783), 1, - sym_sort_clause, - STATE(2785), 1, + STATE(2909), 1, sym_on_quit_phrase, - STATE(3142), 1, + STATE(2934), 1, + sym_sort_clause, + STATE(3498), 1, aux_sym_for_statement_repeat1, - STATE(3143), 1, + STATE(3501), 1, sym_on_stop_phrase, - STATE(1684), 2, + STATE(1694), 2, sym_comment, sym_include, ACTIONS(1195), 5, @@ -117990,7 +118904,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_query_tuning_token2, aux_sym_query_tuning_token3, aux_sym_query_tuning_token4, - [84823] = 21, + [85071] = 21, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, @@ -117999,37 +118913,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, ACTIONS(1201), 1, aux_sym_query_tuning_token5, - ACTIONS(2105), 1, - anon_sym_COMMA, ACTIONS(2109), 1, + anon_sym_COMMA, + ACTIONS(2113), 1, aux_sym_on_error_phrase_token1, - ACTIONS(2111), 1, + ACTIONS(2115), 1, aux_sym_where_clause_token1, - ACTIONS(2113), 1, + ACTIONS(2117), 1, aux_sym_sort_clause_token1, - ACTIONS(2115), 1, + ACTIONS(2119), 1, aux_sym_sort_clause_token2, - ACTIONS(2451), 1, + ACTIONS(2443), 1, anon_sym_COLON, - STATE(1763), 1, + STATE(1754), 1, sym_where_clause, - STATE(1766), 1, + STATE(1757), 1, aux_sym_for_phrase_repeat1, - STATE(1953), 1, + STATE(2019), 1, sym_query_tuning, - STATE(2082), 1, + STATE(2101), 1, aux_sym_for_phrase_repeat2, - STATE(2634), 1, + STATE(2666), 1, sym_on_error_phrase, - STATE(2783), 1, - sym_sort_clause, - STATE(2817), 1, + STATE(2807), 1, sym_on_quit_phrase, - STATE(3226), 1, + STATE(2934), 1, + sym_sort_clause, + STATE(3423), 1, aux_sym_for_statement_repeat1, - STATE(3227), 1, + STATE(3426), 1, sym_on_stop_phrase, - STATE(1685), 2, + STATE(1695), 2, sym_comment, sym_include, ACTIONS(1195), 5, @@ -118038,7 +118952,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_query_tuning_token2, aux_sym_query_tuning_token3, aux_sym_query_tuning_token4, - [84892] = 21, + [85140] = 21, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, @@ -118047,37 +118961,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, ACTIONS(1201), 1, aux_sym_query_tuning_token5, - ACTIONS(2105), 1, - anon_sym_COMMA, ACTIONS(2109), 1, + anon_sym_COMMA, + ACTIONS(2113), 1, aux_sym_on_error_phrase_token1, - ACTIONS(2111), 1, + ACTIONS(2115), 1, aux_sym_where_clause_token1, - ACTIONS(2113), 1, + ACTIONS(2117), 1, aux_sym_sort_clause_token1, - ACTIONS(2115), 1, + ACTIONS(2119), 1, aux_sym_sort_clause_token2, - ACTIONS(2429), 1, + ACTIONS(2459), 1, anon_sym_COLON, - STATE(1749), 1, - sym_where_clause, - STATE(1750), 1, + STATE(1743), 1, aux_sym_for_phrase_repeat1, - STATE(1953), 1, + STATE(1814), 1, + sym_where_clause, + STATE(2019), 1, sym_query_tuning, - STATE(2099), 1, + STATE(2084), 1, aux_sym_for_phrase_repeat2, - STATE(2705), 1, + STATE(2625), 1, sym_on_error_phrase, - STATE(2783), 1, - sym_sort_clause, - STATE(2789), 1, + STATE(2843), 1, sym_on_quit_phrase, - STATE(3244), 1, + STATE(2934), 1, + sym_sort_clause, + STATE(3412), 1, sym_on_stop_phrase, - STATE(3245), 1, + STATE(3413), 1, aux_sym_for_statement_repeat1, - STATE(1686), 2, + STATE(1696), 2, sym_comment, sym_include, ACTIONS(1195), 5, @@ -118086,7 +119000,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_query_tuning_token2, aux_sym_query_tuning_token3, aux_sym_query_tuning_token4, - [84961] = 21, + [85209] = 21, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, @@ -118095,37 +119009,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, ACTIONS(1201), 1, aux_sym_query_tuning_token5, - ACTIONS(2105), 1, - anon_sym_COMMA, ACTIONS(2109), 1, + anon_sym_COMMA, + ACTIONS(2113), 1, aux_sym_on_error_phrase_token1, - ACTIONS(2111), 1, + ACTIONS(2115), 1, aux_sym_where_clause_token1, - ACTIONS(2113), 1, + ACTIONS(2117), 1, aux_sym_sort_clause_token1, - ACTIONS(2115), 1, + ACTIONS(2119), 1, aux_sym_sort_clause_token2, - ACTIONS(2453), 1, + ACTIONS(2461), 1, anon_sym_COLON, - STATE(1734), 1, - aux_sym_for_phrase_repeat1, - STATE(1774), 1, + STATE(1755), 1, sym_where_clause, - STATE(1953), 1, + STATE(1763), 1, + aux_sym_for_phrase_repeat1, + STATE(2019), 1, sym_query_tuning, - STATE(2025), 1, + STATE(2105), 1, aux_sym_for_phrase_repeat2, - STATE(2656), 1, + STATE(2713), 1, sym_on_error_phrase, - STATE(2738), 1, + STATE(2920), 1, sym_on_quit_phrase, - STATE(2783), 1, + STATE(2934), 1, sym_sort_clause, - STATE(3436), 1, + STATE(3505), 1, sym_on_stop_phrase, - STATE(3442), 1, + STATE(3506), 1, aux_sym_for_statement_repeat1, - STATE(1687), 2, + STATE(1697), 2, sym_comment, sym_include, ACTIONS(1195), 5, @@ -118134,7 +119048,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_query_tuning_token2, aux_sym_query_tuning_token3, aux_sym_query_tuning_token4, - [85030] = 21, + [85278] = 21, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, @@ -118143,37 +119057,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, ACTIONS(1201), 1, aux_sym_query_tuning_token5, - ACTIONS(2105), 1, - anon_sym_COMMA, ACTIONS(2109), 1, + anon_sym_COMMA, + ACTIONS(2113), 1, aux_sym_on_error_phrase_token1, - ACTIONS(2111), 1, + ACTIONS(2115), 1, aux_sym_where_clause_token1, - ACTIONS(2113), 1, + ACTIONS(2117), 1, aux_sym_sort_clause_token1, - ACTIONS(2115), 1, + ACTIONS(2119), 1, aux_sym_sort_clause_token2, - ACTIONS(2455), 1, + ACTIONS(2463), 1, anon_sym_COLON, - STATE(1733), 1, - sym_where_clause, - STATE(1760), 1, + STATE(1797), 1, aux_sym_for_phrase_repeat1, - STATE(1953), 1, + STATE(1798), 1, + sym_where_clause, + STATE(2019), 1, sym_query_tuning, - STATE(2091), 1, + STATE(2059), 1, aux_sym_for_phrase_repeat2, - STATE(2674), 1, + STATE(2772), 1, sym_on_error_phrase, - STATE(2783), 1, - sym_sort_clause, - STATE(2799), 1, + STATE(2833), 1, sym_on_quit_phrase, - STATE(3295), 1, + STATE(2934), 1, + sym_sort_clause, + STATE(3334), 1, sym_on_stop_phrase, - STATE(3296), 1, + STATE(3335), 1, aux_sym_for_statement_repeat1, - STATE(1688), 2, + STATE(1698), 2, sym_comment, sym_include, ACTIONS(1195), 5, @@ -118182,7 +119096,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_query_tuning_token2, aux_sym_query_tuning_token3, aux_sym_query_tuning_token4, - [85099] = 21, + [85347] = 21, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, @@ -118191,37 +119105,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, ACTIONS(1201), 1, aux_sym_query_tuning_token5, - ACTIONS(2105), 1, - anon_sym_COMMA, ACTIONS(2109), 1, + anon_sym_COMMA, + ACTIONS(2113), 1, aux_sym_on_error_phrase_token1, - ACTIONS(2111), 1, + ACTIONS(2115), 1, aux_sym_where_clause_token1, - ACTIONS(2113), 1, + ACTIONS(2117), 1, aux_sym_sort_clause_token1, - ACTIONS(2115), 1, + ACTIONS(2119), 1, aux_sym_sort_clause_token2, ACTIONS(2437), 1, anon_sym_COLON, - STATE(1771), 1, - sym_where_clause, - STATE(1772), 1, + STATE(1764), 1, aux_sym_for_phrase_repeat1, - STATE(1953), 1, + STATE(1780), 1, + sym_where_clause, + STATE(2019), 1, sym_query_tuning, - STATE(2052), 1, + STATE(2087), 1, aux_sym_for_phrase_repeat2, - STATE(2554), 1, + STATE(2689), 1, sym_on_error_phrase, - STATE(2783), 1, + STATE(2934), 1, sym_sort_clause, - STATE(2864), 1, + STATE(2951), 1, sym_on_quit_phrase, - STATE(3212), 1, + STATE(3518), 1, aux_sym_for_statement_repeat1, - STATE(3214), 1, + STATE(3519), 1, sym_on_stop_phrase, - STATE(1689), 2, + STATE(1699), 2, sym_comment, sym_include, ACTIONS(1195), 5, @@ -118230,7 +119144,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_query_tuning_token2, aux_sym_query_tuning_token3, aux_sym_query_tuning_token4, - [85168] = 21, + [85416] = 21, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, @@ -118239,37 +119153,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, ACTIONS(1201), 1, aux_sym_query_tuning_token5, - ACTIONS(2105), 1, - anon_sym_COMMA, ACTIONS(2109), 1, + anon_sym_COMMA, + ACTIONS(2113), 1, aux_sym_on_error_phrase_token1, - ACTIONS(2111), 1, + ACTIONS(2115), 1, aux_sym_where_clause_token1, - ACTIONS(2113), 1, + ACTIONS(2117), 1, aux_sym_sort_clause_token1, - ACTIONS(2115), 1, + ACTIONS(2119), 1, aux_sym_sort_clause_token2, - ACTIONS(2415), 1, + ACTIONS(2465), 1, anon_sym_COLON, - STATE(1746), 1, + STATE(1761), 1, sym_where_clause, - STATE(1751), 1, + STATE(1762), 1, aux_sym_for_phrase_repeat1, - STATE(1953), 1, + STATE(2019), 1, sym_query_tuning, - STATE(2100), 1, + STATE(2034), 1, aux_sym_for_phrase_repeat2, - STATE(2689), 1, + STATE(2609), 1, sym_on_error_phrase, - STATE(2783), 1, - sym_sort_clause, - STATE(2913), 1, + STATE(2811), 1, sym_on_quit_phrase, - STATE(3293), 1, + STATE(2934), 1, + sym_sort_clause, + STATE(3360), 1, aux_sym_for_statement_repeat1, - STATE(3294), 1, + STATE(3361), 1, sym_on_stop_phrase, - STATE(1690), 2, + STATE(1700), 2, sym_comment, sym_include, ACTIONS(1195), 5, @@ -118278,7 +119192,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_query_tuning_token2, aux_sym_query_tuning_token3, aux_sym_query_tuning_token4, - [85237] = 21, + [85485] = 21, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, @@ -118287,37 +119201,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, ACTIONS(1201), 1, aux_sym_query_tuning_token5, - ACTIONS(2105), 1, - anon_sym_COMMA, ACTIONS(2109), 1, + anon_sym_COMMA, + ACTIONS(2113), 1, aux_sym_on_error_phrase_token1, - ACTIONS(2111), 1, + ACTIONS(2115), 1, aux_sym_where_clause_token1, - ACTIONS(2113), 1, + ACTIONS(2117), 1, aux_sym_sort_clause_token1, - ACTIONS(2115), 1, + ACTIONS(2119), 1, aux_sym_sort_clause_token2, - ACTIONS(2457), 1, + ACTIONS(2425), 1, anon_sym_COLON, - STATE(1775), 1, - sym_where_clause, - STATE(1777), 1, + STATE(1799), 1, aux_sym_for_phrase_repeat1, - STATE(1953), 1, + STATE(1800), 1, + sym_where_clause, + STATE(2019), 1, sym_query_tuning, - STATE(2027), 1, + STATE(2062), 1, aux_sym_for_phrase_repeat2, - STATE(2697), 1, + STATE(2664), 1, sym_on_error_phrase, - STATE(2783), 1, - sym_sort_clause, - STATE(2910), 1, + STATE(2795), 1, sym_on_quit_phrase, - STATE(3207), 1, - sym_on_stop_phrase, - STATE(3208), 1, + STATE(2934), 1, + sym_sort_clause, + STATE(3329), 1, aux_sym_for_statement_repeat1, - STATE(1691), 2, + STATE(3330), 1, + sym_on_stop_phrase, + STATE(1701), 2, sym_comment, sym_include, ACTIONS(1195), 5, @@ -118326,7 +119240,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_query_tuning_token2, aux_sym_query_tuning_token3, aux_sym_query_tuning_token4, - [85306] = 21, + [85554] = 21, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, @@ -118335,37 +119249,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, ACTIONS(1201), 1, aux_sym_query_tuning_token5, - ACTIONS(2105), 1, - anon_sym_COMMA, ACTIONS(2109), 1, + anon_sym_COMMA, + ACTIONS(2113), 1, aux_sym_on_error_phrase_token1, - ACTIONS(2111), 1, + ACTIONS(2115), 1, aux_sym_where_clause_token1, - ACTIONS(2113), 1, + ACTIONS(2117), 1, aux_sym_sort_clause_token1, - ACTIONS(2115), 1, + ACTIONS(2119), 1, aux_sym_sort_clause_token2, - ACTIONS(2459), 1, + ACTIONS(2435), 1, anon_sym_COLON, - STATE(1752), 1, - aux_sym_for_phrase_repeat1, - STATE(1753), 1, + STATE(1802), 1, sym_where_clause, - STATE(1953), 1, + STATE(1817), 1, + aux_sym_for_phrase_repeat1, + STATE(2019), 1, sym_query_tuning, - STATE(2087), 1, + STATE(2078), 1, aux_sym_for_phrase_repeat2, - STATE(2620), 1, + STATE(2601), 1, sym_on_error_phrase, - STATE(2761), 1, + STATE(2798), 1, sym_on_quit_phrase, - STATE(2783), 1, + STATE(2934), 1, sym_sort_clause, - STATE(3134), 1, - sym_on_stop_phrase, - STATE(3135), 1, + STATE(3408), 1, aux_sym_for_statement_repeat1, - STATE(1692), 2, + STATE(3409), 1, + sym_on_stop_phrase, + STATE(1702), 2, sym_comment, sym_include, ACTIONS(1195), 5, @@ -118374,7 +119288,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_query_tuning_token2, aux_sym_query_tuning_token3, aux_sym_query_tuning_token4, - [85375] = 21, + [85623] = 21, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, @@ -118383,37 +119297,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, ACTIONS(1201), 1, aux_sym_query_tuning_token5, - ACTIONS(2105), 1, - anon_sym_COMMA, ACTIONS(2109), 1, + anon_sym_COMMA, + ACTIONS(2113), 1, aux_sym_on_error_phrase_token1, - ACTIONS(2111), 1, + ACTIONS(2115), 1, aux_sym_where_clause_token1, - ACTIONS(2113), 1, + ACTIONS(2117), 1, aux_sym_sort_clause_token1, - ACTIONS(2115), 1, + ACTIONS(2119), 1, aux_sym_sort_clause_token2, - ACTIONS(2461), 1, + ACTIONS(2467), 1, anon_sym_COLON, - STATE(1773), 1, - aux_sym_for_phrase_repeat1, - STATE(1776), 1, + STATE(1806), 1, sym_where_clause, - STATE(1953), 1, + STATE(1807), 1, + aux_sym_for_phrase_repeat1, + STATE(2019), 1, sym_query_tuning, - STATE(2113), 1, + STATE(2138), 1, aux_sym_for_phrase_repeat2, - STATE(2567), 1, + STATE(2726), 1, sym_on_error_phrase, - STATE(2783), 1, - sym_sort_clause, - STATE(2790), 1, + STATE(2916), 1, sym_on_quit_phrase, - STATE(3145), 1, + STATE(2934), 1, + sym_sort_clause, + STATE(3261), 1, sym_on_stop_phrase, - STATE(3146), 1, + STATE(3262), 1, aux_sym_for_statement_repeat1, - STATE(1693), 2, + STATE(1703), 2, sym_comment, sym_include, ACTIONS(1195), 5, @@ -118422,7 +119336,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_query_tuning_token2, aux_sym_query_tuning_token3, aux_sym_query_tuning_token4, - [85444] = 21, + [85692] = 21, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, @@ -118431,37 +119345,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, ACTIONS(1201), 1, aux_sym_query_tuning_token5, - ACTIONS(2105), 1, - anon_sym_COMMA, ACTIONS(2109), 1, + anon_sym_COMMA, + ACTIONS(2113), 1, aux_sym_on_error_phrase_token1, - ACTIONS(2111), 1, + ACTIONS(2115), 1, aux_sym_where_clause_token1, - ACTIONS(2113), 1, + ACTIONS(2117), 1, aux_sym_sort_clause_token1, - ACTIONS(2115), 1, + ACTIONS(2119), 1, aux_sym_sort_clause_token2, - ACTIONS(2421), 1, + ACTIONS(2431), 1, anon_sym_COLON, - STATE(1755), 1, - aux_sym_for_phrase_repeat1, - STATE(1757), 1, + STATE(1789), 1, sym_where_clause, - STATE(1953), 1, + STATE(1790), 1, + aux_sym_for_phrase_repeat1, + STATE(2019), 1, sym_query_tuning, - STATE(2084), 1, + STATE(2055), 1, aux_sym_for_phrase_repeat2, - STATE(2657), 1, + STATE(2750), 1, sym_on_error_phrase, - STATE(2783), 1, - sym_sort_clause, - STATE(2849), 1, + STATE(2862), 1, sym_on_quit_phrase, - STATE(3171), 1, + STATE(2934), 1, + sym_sort_clause, + STATE(3340), 1, sym_on_stop_phrase, - STATE(3173), 1, + STATE(3342), 1, aux_sym_for_statement_repeat1, - STATE(1694), 2, + STATE(1704), 2, sym_comment, sym_include, ACTIONS(1195), 5, @@ -118470,7 +119384,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_query_tuning_token2, aux_sym_query_tuning_token3, aux_sym_query_tuning_token4, - [85513] = 21, + [85761] = 21, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, @@ -118479,37 +119393,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, ACTIONS(1201), 1, aux_sym_query_tuning_token5, - ACTIONS(2105), 1, - anon_sym_COMMA, ACTIONS(2109), 1, + anon_sym_COMMA, + ACTIONS(2113), 1, aux_sym_on_error_phrase_token1, - ACTIONS(2111), 1, + ACTIONS(2115), 1, aux_sym_where_clause_token1, - ACTIONS(2113), 1, + ACTIONS(2117), 1, aux_sym_sort_clause_token1, - ACTIONS(2115), 1, + ACTIONS(2119), 1, aux_sym_sort_clause_token2, - ACTIONS(2463), 1, + ACTIONS(2433), 1, anon_sym_COLON, - STATE(1779), 1, - aux_sym_for_phrase_repeat1, - STATE(1782), 1, + STATE(1791), 1, sym_where_clause, - STATE(1953), 1, + STATE(1801), 1, + aux_sym_for_phrase_repeat1, + STATE(2019), 1, sym_query_tuning, - STATE(2121), 1, + STATE(2098), 1, aux_sym_for_phrase_repeat2, - STATE(2676), 1, + STATE(2715), 1, sym_on_error_phrase, - STATE(2762), 1, + STATE(2928), 1, sym_on_quit_phrase, - STATE(2783), 1, + STATE(2934), 1, sym_sort_clause, - STATE(3284), 1, - sym_on_stop_phrase, - STATE(3285), 1, + STATE(3257), 1, aux_sym_for_statement_repeat1, - STATE(1695), 2, + STATE(3258), 1, + sym_on_stop_phrase, + STATE(1705), 2, sym_comment, sym_include, ACTIONS(1195), 5, @@ -118518,7 +119432,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_query_tuning_token2, aux_sym_query_tuning_token3, aux_sym_query_tuning_token4, - [85582] = 21, + [85830] = 21, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, @@ -118527,37 +119441,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, ACTIONS(1201), 1, aux_sym_query_tuning_token5, - ACTIONS(2105), 1, - anon_sym_COMMA, ACTIONS(2109), 1, + anon_sym_COMMA, + ACTIONS(2113), 1, aux_sym_on_error_phrase_token1, - ACTIONS(2111), 1, + ACTIONS(2115), 1, aux_sym_where_clause_token1, - ACTIONS(2113), 1, + ACTIONS(2117), 1, aux_sym_sort_clause_token1, - ACTIONS(2115), 1, + ACTIONS(2119), 1, aux_sym_sort_clause_token2, - ACTIONS(2395), 1, + ACTIONS(2469), 1, anon_sym_COLON, - STATE(1788), 1, - sym_where_clause, - STATE(1797), 1, + STATE(1808), 1, aux_sym_for_phrase_repeat1, - STATE(1953), 1, + STATE(1809), 1, + sym_where_clause, + STATE(2019), 1, sym_query_tuning, - STATE(2060), 1, + STATE(2077), 1, aux_sym_for_phrase_repeat2, - STATE(2641), 1, + STATE(2665), 1, sym_on_error_phrase, - STATE(2783), 1, - sym_sort_clause, - STATE(2878), 1, + STATE(2913), 1, sym_on_quit_phrase, - STATE(3307), 1, - aux_sym_for_statement_repeat1, - STATE(3308), 1, + STATE(2934), 1, + sym_sort_clause, + STATE(3321), 1, sym_on_stop_phrase, - STATE(1696), 2, + STATE(3322), 1, + aux_sym_for_statement_repeat1, + STATE(1706), 2, sym_comment, sym_include, ACTIONS(1195), 5, @@ -118566,55 +119480,50 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_query_tuning_token2, aux_sym_query_tuning_token3, aux_sym_query_tuning_token4, - [85651] = 21, + [85899] = 17, 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(2105), 1, - anon_sym_COMMA, - ACTIONS(2109), 1, - aux_sym_on_error_phrase_token1, - ACTIONS(2111), 1, - aux_sym_where_clause_token1, - ACTIONS(2113), 1, - aux_sym_sort_clause_token1, - ACTIONS(2115), 1, - aux_sym_sort_clause_token2, - ACTIONS(2465), 1, - anon_sym_COLON, - STATE(1743), 1, - sym_where_clause, - STATE(1748), 1, - aux_sym_for_phrase_repeat1, - STATE(1953), 1, - sym_query_tuning, - STATE(2094), 1, - aux_sym_for_phrase_repeat2, - STATE(2623), 1, - sym_on_error_phrase, - STATE(2759), 1, - sym_on_quit_phrase, - STATE(2783), 1, - sym_sort_clause, - STATE(3389), 1, - sym_on_stop_phrase, - STATE(3391), 1, - aux_sym_for_statement_repeat1, - STATE(1697), 2, + ACTIONS(2471), 1, + aux_sym_variable_definition_token3, + ACTIONS(2473), 1, + aux_sym_variable_definition_token4, + ACTIONS(2475), 1, + aux_sym_buffer_definition_token1, + ACTIONS(2477), 1, + aux_sym_buffer_definition_token3, + ACTIONS(2479), 1, + aux_sym_query_definition_token1, + ACTIONS(2481), 1, + aux_sym_stream_definition_token1, + STATE(1870), 1, + aux_sym_variable_definition_repeat1, + STATE(2005), 1, + sym_serialization_tuning, + STATE(2014), 1, + aux_sym_buffer_definition_repeat1, + ACTIONS(1362), 2, + aux_sym_serialization_tuning_token1, + aux_sym_serialization_tuning_token2, + STATE(1707), 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, + STATE(1943), 2, + sym_scope_tuning, + sym_access_tuning, + ACTIONS(1360), 3, + aux_sym_access_tuning_token1, + aux_sym_access_tuning_token2, + aux_sym_access_tuning_token3, + ACTIONS(1358), 4, + aux_sym_scope_tuning_token1, + aux_sym_scope_tuning_token2, + aux_sym_scope_tuning_token3, + aux_sym_scope_tuning_token4, + [85959] = 10, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, @@ -118623,13 +119532,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, ACTIONS(1155), 1, aux_sym_input_stream_tuning_token9, - ACTIONS(2467), 1, + ACTIONS(2483), 1, sym__terminator, - STATE(1725), 1, + STATE(1722), 1, aux_sym_output_stream_statement_repeat1, - STATE(1814), 1, + STATE(1824), 1, sym_output_stream_tuning, - STATE(1698), 2, + STATE(1708), 2, sym_comment, sym_include, ACTIONS(1151), 4, @@ -118650,179 +119559,162 @@ 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, - [85766] = 17, + [86005] = 10, 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_tuning_token6, - ACTIONS(1372), 1, - aux_sym_property_tuning_token1, - ACTIONS(2403), 1, - aux_sym_getter_token1, - ACTIONS(2405), 1, - aux_sym_setter_token1, - ACTIONS(2441), 1, - aux_sym_variable_definition_token2, - STATE(1731), 1, - aux_sym_property_definition_repeat2, - STATE(1893), 1, - sym_property_tuning, - STATE(1937), 1, - aux_sym_property_definition_repeat3, - STATE(3917), 1, - sym_access_tuning, - ACTIONS(2399), 2, - aux_sym_variable_tuning_token1, - aux_sym_variable_tuning_token5, - STATE(1699), 2, + ACTIONS(1155), 1, + aux_sym_input_stream_tuning_token9, + ACTIONS(2485), 1, + sym__terminator, + STATE(1722), 1, + aux_sym_output_stream_statement_repeat1, + STATE(1824), 1, + sym_output_stream_tuning, + STATE(1709), 2, sym_comment, sym_include, - STATE(2189), 2, - sym_getter, - sym_setter, - ACTIONS(1354), 3, - aux_sym_access_tuning_token1, - aux_sym_access_tuning_token2, - aux_sym_access_tuning_token3, - ACTIONS(2439), 4, - aux_sym__block_terminator_token1, - aux_sym_variable_definition_token1, - aux_sym_method_definition_token1, - aux_sym_constructor_definition_token1, - [85826] = 17, + 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, + [86051] = 17, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2469), 1, - aux_sym_variable_definition_token3, - ACTIONS(2471), 1, - aux_sym_variable_definition_token4, - ACTIONS(2473), 1, - aux_sym_buffer_definition_token1, - ACTIONS(2475), 1, - aux_sym_buffer_definition_token3, - ACTIONS(2477), 1, - aux_sym_query_definition_token1, - ACTIONS(2479), 1, - aux_sym_stream_definition_token1, - STATE(1858), 1, - aux_sym_variable_definition_repeat1, - STATE(1959), 1, - sym_serialization_tuning, - STATE(2009), 1, - aux_sym_buffer_definition_repeat1, - ACTIONS(1356), 2, - aux_sym_serialization_tuning_token1, - aux_sym_serialization_tuning_token2, - STATE(1700), 2, + ACTIONS(1356), 1, + aux_sym_variable_tuning_token6, + ACTIONS(1378), 1, + aux_sym_property_tuning_token1, + ACTIONS(2411), 1, + aux_sym_getter_token1, + ACTIONS(2413), 1, + aux_sym_setter_token1, + ACTIONS(2429), 1, + aux_sym_variable_definition_token2, + STATE(1741), 1, + aux_sym_property_definition_repeat2, + STATE(1885), 1, + sym_property_tuning, + STATE(1926), 1, + aux_sym_property_definition_repeat3, + STATE(4072), 1, + sym_access_tuning, + ACTIONS(2407), 2, + aux_sym_variable_tuning_token1, + aux_sym_variable_tuning_token5, + STATE(1710), 2, sym_comment, sym_include, - STATE(1933), 2, - sym_scope_tuning, - sym_access_tuning, - ACTIONS(1354), 3, + STATE(2200), 2, + sym_getter, + sym_setter, + ACTIONS(1360), 3, aux_sym_access_tuning_token1, aux_sym_access_tuning_token2, aux_sym_access_tuning_token3, - ACTIONS(1352), 4, - aux_sym_scope_tuning_token1, - aux_sym_scope_tuning_token2, - aux_sym_scope_tuning_token3, - aux_sym_scope_tuning_token4, - [85886] = 17, + ACTIONS(2427), 4, + aux_sym__block_terminator_token1, + aux_sym_variable_definition_token1, + aux_sym_method_definition_token1, + aux_sym_constructor_definition_token1, + [86111] = 7, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - 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(1855), 1, - aux_sym_variable_definition_repeat1, - STATE(1959), 1, - sym_serialization_tuning, - STATE(1962), 1, - aux_sym_buffer_definition_repeat1, - ACTIONS(1356), 2, - aux_sym_serialization_tuning_token1, - aux_sym_serialization_tuning_token2, - STATE(1701), 2, + ACTIONS(2489), 1, + aux_sym_input_stream_tuning_token10, + ACTIONS(2491), 1, + aux_sym_input_stream_tuning_token11, + STATE(1711), 2, sym_comment, sym_include, - STATE(1933), 2, - sym_scope_tuning, - sym_access_tuning, - ACTIONS(1354), 3, - aux_sym_access_tuning_token1, - aux_sym_access_tuning_token2, - aux_sym_access_tuning_token3, - ACTIONS(1352), 4, - aux_sym_scope_tuning_token1, - aux_sym_scope_tuning_token2, - aux_sym_scope_tuning_token3, - aux_sym_scope_tuning_token4, - [85946] = 17, + ACTIONS(2487), 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, + [86151] = 17, 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_variable_definition_token3, - ACTIONS(2347), 1, - aux_sym_variable_definition_token4, - ACTIONS(2349), 1, - aux_sym_buffer_definition_token1, - ACTIONS(2351), 1, - aux_sym_buffer_definition_token3, - ACTIONS(2353), 1, - aux_sym_query_definition_token1, - ACTIONS(2357), 1, - aux_sym_stream_definition_token1, - STATE(1860), 1, - aux_sym_variable_definition_repeat1, - STATE(1955), 1, - aux_sym_buffer_definition_repeat1, - STATE(1959), 1, - sym_serialization_tuning, - ACTIONS(1356), 2, - aux_sym_serialization_tuning_token1, - aux_sym_serialization_tuning_token2, - STATE(1702), 2, + ACTIONS(1356), 1, + aux_sym_variable_tuning_token6, + ACTIONS(1378), 1, + aux_sym_property_tuning_token1, + ACTIONS(2411), 1, + aux_sym_getter_token1, + ACTIONS(2413), 1, + aux_sym_setter_token1, + ACTIONS(2495), 1, + aux_sym_variable_definition_token2, + STATE(1736), 1, + aux_sym_property_definition_repeat2, + STATE(1885), 1, + sym_property_tuning, + STATE(1947), 1, + aux_sym_property_definition_repeat3, + STATE(4072), 1, + sym_access_tuning, + ACTIONS(2407), 2, + aux_sym_variable_tuning_token1, + aux_sym_variable_tuning_token5, + STATE(1712), 2, sym_comment, sym_include, - STATE(1933), 2, - sym_scope_tuning, - sym_access_tuning, - ACTIONS(1354), 3, + STATE(2200), 2, + sym_getter, + sym_setter, + ACTIONS(1360), 3, aux_sym_access_tuning_token1, aux_sym_access_tuning_token2, aux_sym_access_tuning_token3, - ACTIONS(1352), 4, - aux_sym_scope_tuning_token1, - aux_sym_scope_tuning_token2, - aux_sym_scope_tuning_token3, - aux_sym_scope_tuning_token4, - [86006] = 10, + ACTIONS(2493), 4, + aux_sym__block_terminator_token1, + aux_sym_variable_definition_token1, + aux_sym_method_definition_token1, + aux_sym_constructor_definition_token1, + [86211] = 10, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, @@ -118831,13 +119723,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, ACTIONS(1155), 1, aux_sym_input_stream_tuning_token9, - ACTIONS(2481), 1, + ACTIONS(2497), 1, sym__terminator, - STATE(1725), 1, + STATE(1722), 1, aux_sym_output_stream_statement_repeat1, - STATE(1814), 1, + STATE(1824), 1, sym_output_stream_tuning, - STATE(1703), 2, + STATE(1713), 2, sym_comment, sym_include, ACTIONS(1151), 4, @@ -118858,217 +119750,265 @@ 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, - [86052] = 10, + [86257] = 17, 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(2483), 1, - sym__terminator, - STATE(1725), 1, - aux_sym_output_stream_statement_repeat1, - STATE(1814), 1, - sym_output_stream_tuning, - STATE(1704), 2, + ACTIONS(1356), 1, + aux_sym_variable_tuning_token6, + ACTIONS(1378), 1, + aux_sym_property_tuning_token1, + ACTIONS(2411), 1, + aux_sym_getter_token1, + ACTIONS(2413), 1, + aux_sym_setter_token1, + ACTIONS(2501), 1, + aux_sym_variable_definition_token2, + STATE(1849), 1, + aux_sym_property_definition_repeat2, + STATE(1885), 1, + sym_property_tuning, + STATE(1927), 1, + aux_sym_property_definition_repeat3, + STATE(4072), 1, + sym_access_tuning, + ACTIONS(2407), 2, + aux_sym_variable_tuning_token1, + aux_sym_variable_tuning_token5, + 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, - [86098] = 17, + STATE(2200), 2, + sym_getter, + sym_setter, + ACTIONS(1360), 3, + aux_sym_access_tuning_token1, + aux_sym_access_tuning_token2, + aux_sym_access_tuning_token3, + ACTIONS(2499), 4, + aux_sym__block_terminator_token1, + aux_sym_variable_definition_token1, + aux_sym_method_definition_token1, + aux_sym_constructor_definition_token1, + [86317] = 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(1356), 1, aux_sym_variable_tuning_token6, - ACTIONS(1372), 1, + ACTIONS(1378), 1, aux_sym_property_tuning_token1, - ACTIONS(2403), 1, + ACTIONS(2411), 1, aux_sym_getter_token1, - ACTIONS(2405), 1, + ACTIONS(2413), 1, aux_sym_setter_token1, - ACTIONS(2487), 1, + ACTIONS(2505), 1, aux_sym_variable_definition_token2, - STATE(1848), 1, + STATE(1849), 1, aux_sym_property_definition_repeat2, - STATE(1893), 1, + STATE(1885), 1, sym_property_tuning, - STATE(1939), 1, + STATE(1923), 1, aux_sym_property_definition_repeat3, - STATE(3917), 1, + STATE(4072), 1, sym_access_tuning, - ACTIONS(2399), 2, + ACTIONS(2407), 2, aux_sym_variable_tuning_token1, aux_sym_variable_tuning_token5, - STATE(1705), 2, + STATE(1715), 2, sym_comment, sym_include, - STATE(2189), 2, + STATE(2200), 2, sym_getter, sym_setter, - ACTIONS(1354), 3, + ACTIONS(1360), 3, aux_sym_access_tuning_token1, aux_sym_access_tuning_token2, aux_sym_access_tuning_token3, - ACTIONS(2485), 4, + ACTIONS(2503), 4, aux_sym__block_terminator_token1, aux_sym_variable_definition_token1, aux_sym_method_definition_token1, aux_sym_constructor_definition_token1, - [86158] = 17, + [86377] = 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(1356), 1, aux_sym_variable_tuning_token6, - ACTIONS(1372), 1, + ACTIONS(1378), 1, aux_sym_property_tuning_token1, - ACTIONS(2403), 1, + ACTIONS(2411), 1, aux_sym_getter_token1, - ACTIONS(2405), 1, + ACTIONS(2413), 1, aux_sym_setter_token1, - ACTIONS(2491), 1, + ACTIONS(2447), 1, aux_sym_variable_definition_token2, - STATE(1848), 1, + STATE(1719), 1, aux_sym_property_definition_repeat2, - STATE(1893), 1, + STATE(1885), 1, sym_property_tuning, - STATE(1938), 1, + STATE(1956), 1, aux_sym_property_definition_repeat3, - STATE(3917), 1, + STATE(4072), 1, sym_access_tuning, - ACTIONS(2399), 2, + ACTIONS(2407), 2, aux_sym_variable_tuning_token1, aux_sym_variable_tuning_token5, - STATE(1706), 2, + STATE(1716), 2, sym_comment, sym_include, - STATE(2189), 2, + STATE(2200), 2, sym_getter, sym_setter, - ACTIONS(1354), 3, + ACTIONS(1360), 3, aux_sym_access_tuning_token1, aux_sym_access_tuning_token2, aux_sym_access_tuning_token3, - ACTIONS(2489), 4, + ACTIONS(2445), 4, aux_sym__block_terminator_token1, aux_sym_variable_definition_token1, aux_sym_method_definition_token1, aux_sym_constructor_definition_token1, - [86218] = 19, + [86437] = 17, 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(2109), 1, - aux_sym_on_error_phrase_token1, - ACTIONS(2111), 1, - aux_sym_where_clause_token1, - ACTIONS(2113), 1, - aux_sym_sort_clause_token1, - ACTIONS(2115), 1, - aux_sym_sort_clause_token2, - STATE(1806), 1, - sym_where_clause, - STATE(1807), 1, - aux_sym_for_phrase_repeat1, - STATE(1953), 1, - sym_query_tuning, - STATE(2199), 1, - aux_sym_for_phrase_repeat2, - STATE(2783), 1, - sym_sort_clause, - STATE(2857), 1, - sym_on_error_phrase, - STATE(2970), 1, - sym_on_quit_phrase, - STATE(3969), 1, - sym_on_stop_phrase, - ACTIONS(2449), 2, - anon_sym_COMMA, - anon_sym_COLON, - STATE(1707), 2, + ACTIONS(1356), 1, + aux_sym_variable_tuning_token6, + ACTIONS(1378), 1, + aux_sym_property_tuning_token1, + ACTIONS(2411), 1, + aux_sym_getter_token1, + ACTIONS(2413), 1, + aux_sym_setter_token1, + ACTIONS(2495), 1, + aux_sym_variable_definition_token2, + STATE(1849), 1, + aux_sym_property_definition_repeat2, + STATE(1885), 1, + sym_property_tuning, + STATE(1947), 1, + aux_sym_property_definition_repeat3, + STATE(4072), 1, + sym_access_tuning, + ACTIONS(2407), 2, + aux_sym_variable_tuning_token1, + aux_sym_variable_tuning_token5, + STATE(1717), 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, - [86282] = 17, + STATE(2200), 2, + sym_getter, + sym_setter, + ACTIONS(1360), 3, + aux_sym_access_tuning_token1, + aux_sym_access_tuning_token2, + aux_sym_access_tuning_token3, + ACTIONS(2493), 4, + aux_sym__block_terminator_token1, + aux_sym_variable_definition_token1, + aux_sym_method_definition_token1, + aux_sym_constructor_definition_token1, + [86497] = 17, 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_tuning_token6, + ACTIONS(1364), 1, + aux_sym_variable_definition_token3, + ACTIONS(1366), 1, + aux_sym_variable_definition_token4, + ACTIONS(1368), 1, + aux_sym_buffer_definition_token1, + ACTIONS(1370), 1, + aux_sym_buffer_definition_token3, ACTIONS(1372), 1, + aux_sym_query_definition_token1, + ACTIONS(2507), 1, + aux_sym_stream_definition_token1, + STATE(1851), 1, + aux_sym_variable_definition_repeat1, + STATE(2005), 1, + sym_serialization_tuning, + STATE(2008), 1, + aux_sym_buffer_definition_repeat1, + ACTIONS(1362), 2, + aux_sym_serialization_tuning_token1, + aux_sym_serialization_tuning_token2, + STATE(1718), 2, + sym_comment, + sym_include, + STATE(1943), 2, + sym_scope_tuning, + sym_access_tuning, + ACTIONS(1360), 3, + aux_sym_access_tuning_token1, + aux_sym_access_tuning_token2, + aux_sym_access_tuning_token3, + ACTIONS(1358), 4, + aux_sym_scope_tuning_token1, + aux_sym_scope_tuning_token2, + aux_sym_scope_tuning_token3, + aux_sym_scope_tuning_token4, + [86557] = 17, + 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_variable_tuning_token6, + ACTIONS(1378), 1, aux_sym_property_tuning_token1, - ACTIONS(2403), 1, + ACTIONS(2411), 1, aux_sym_getter_token1, - ACTIONS(2405), 1, + ACTIONS(2413), 1, aux_sym_setter_token1, - ACTIONS(2435), 1, + ACTIONS(2511), 1, aux_sym_variable_definition_token2, - STATE(1706), 1, + STATE(1849), 1, aux_sym_property_definition_repeat2, - STATE(1893), 1, + STATE(1885), 1, sym_property_tuning, - STATE(1913), 1, + STATE(1931), 1, aux_sym_property_definition_repeat3, - STATE(3917), 1, + STATE(4072), 1, sym_access_tuning, - ACTIONS(2399), 2, + ACTIONS(2407), 2, aux_sym_variable_tuning_token1, aux_sym_variable_tuning_token5, - STATE(1708), 2, + STATE(1719), 2, sym_comment, sym_include, - STATE(2189), 2, + STATE(2200), 2, sym_getter, sym_setter, - ACTIONS(1354), 3, + ACTIONS(1360), 3, aux_sym_access_tuning_token1, aux_sym_access_tuning_token2, aux_sym_access_tuning_token3, - ACTIONS(2433), 4, + ACTIONS(2509), 4, aux_sym__block_terminator_token1, aux_sym_variable_definition_token1, aux_sym_method_definition_token1, aux_sym_constructor_definition_token1, - [86342] = 10, + [86617] = 10, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, @@ -119077,13 +120017,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, ACTIONS(1155), 1, aux_sym_input_stream_tuning_token9, - ACTIONS(2493), 1, + ACTIONS(2513), 1, sym__terminator, - STATE(1725), 1, + STATE(1722), 1, aux_sym_output_stream_statement_repeat1, - STATE(1814), 1, + STATE(1824), 1, sym_output_stream_tuning, - STATE(1709), 2, + STATE(1720), 2, sym_comment, sym_include, ACTIONS(1151), 4, @@ -119104,224 +120044,250 @@ 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, - [86388] = 19, + [86663] = 17, 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(2109), 1, - aux_sym_on_error_phrase_token1, - ACTIONS(2111), 1, - aux_sym_where_clause_token1, - ACTIONS(2113), 1, - aux_sym_sort_clause_token1, - ACTIONS(2115), 1, - aux_sym_sort_clause_token2, - STATE(1817), 1, - aux_sym_for_phrase_repeat1, - STATE(1818), 1, - sym_where_clause, - STATE(1953), 1, - sym_query_tuning, - STATE(2168), 1, - aux_sym_for_phrase_repeat2, - STATE(2783), 1, - sym_sort_clause, - STATE(2838), 1, - sym_on_error_phrase, - STATE(2979), 1, - sym_on_quit_phrase, - STATE(3876), 1, - sym_on_stop_phrase, - ACTIONS(2495), 2, - anon_sym_COMMA, - anon_sym_COLON, - STATE(1710), 2, + 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(1862), 1, + aux_sym_variable_definition_repeat1, + STATE(2005), 1, + sym_serialization_tuning, + STATE(2009), 1, + aux_sym_buffer_definition_repeat1, + ACTIONS(1362), 2, + aux_sym_serialization_tuning_token1, + aux_sym_serialization_tuning_token2, + STATE(1721), 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, - [86452] = 17, + STATE(1943), 2, + sym_scope_tuning, + sym_access_tuning, + ACTIONS(1360), 3, + aux_sym_access_tuning_token1, + aux_sym_access_tuning_token2, + aux_sym_access_tuning_token3, + ACTIONS(1358), 4, + aux_sym_scope_tuning_token1, + aux_sym_scope_tuning_token2, + aux_sym_scope_tuning_token3, + aux_sym_scope_tuning_token4, + [86723] = 9, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2497), 1, + ACTIONS(2515), 1, + sym__terminator, + ACTIONS(2523), 1, + aux_sym_input_stream_tuning_token9, + STATE(1824), 1, + sym_output_stream_tuning, + STATE(1722), 3, + sym_comment, + sym_include, + aux_sym_output_stream_statement_repeat1, + ACTIONS(2517), 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(2520), 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, + [86767] = 17, + ACTIONS(59), 1, + anon_sym_SLASH_SLASH, + ACTIONS(61), 1, + anon_sym_SLASH_STAR, + ACTIONS(65), 1, + anon_sym_LBRACE, + ACTIONS(2526), 1, aux_sym_variable_definition_token3, - ACTIONS(2499), 1, + ACTIONS(2528), 1, aux_sym_variable_definition_token4, - ACTIONS(2501), 1, + ACTIONS(2530), 1, aux_sym_buffer_definition_token1, - ACTIONS(2503), 1, + ACTIONS(2532), 1, aux_sym_buffer_definition_token3, - ACTIONS(2505), 1, + ACTIONS(2534), 1, aux_sym_query_definition_token1, - ACTIONS(2507), 1, + ACTIONS(2536), 1, aux_sym_stream_definition_token1, - STATE(1864), 1, + STATE(1873), 1, aux_sym_variable_definition_repeat1, - STATE(1959), 1, - sym_serialization_tuning, - STATE(1968), 1, + STATE(1989), 1, aux_sym_buffer_definition_repeat1, - ACTIONS(1356), 2, + STATE(2005), 1, + sym_serialization_tuning, + ACTIONS(1362), 2, aux_sym_serialization_tuning_token1, aux_sym_serialization_tuning_token2, - STATE(1711), 2, + STATE(1723), 2, sym_comment, sym_include, - STATE(1933), 2, + STATE(1943), 2, sym_scope_tuning, sym_access_tuning, - ACTIONS(1354), 3, + ACTIONS(1360), 3, aux_sym_access_tuning_token1, aux_sym_access_tuning_token2, aux_sym_access_tuning_token3, - ACTIONS(1352), 4, + ACTIONS(1358), 4, aux_sym_scope_tuning_token1, aux_sym_scope_tuning_token2, aux_sym_scope_tuning_token3, aux_sym_scope_tuning_token4, - [86512] = 17, + [86827] = 10, 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_tuning_token6, - ACTIONS(1372), 1, - aux_sym_property_tuning_token1, - ACTIONS(2403), 1, - aux_sym_getter_token1, - ACTIONS(2405), 1, - aux_sym_setter_token1, - ACTIONS(2511), 1, - aux_sym_variable_definition_token2, - STATE(1705), 1, - aux_sym_property_definition_repeat2, - STATE(1893), 1, - sym_property_tuning, - STATE(1921), 1, - aux_sym_property_definition_repeat3, - STATE(3917), 1, - sym_access_tuning, - ACTIONS(2399), 2, - aux_sym_variable_tuning_token1, - aux_sym_variable_tuning_token5, - STATE(1712), 2, + ACTIONS(1155), 1, + aux_sym_input_stream_tuning_token9, + ACTIONS(2538), 1, + sym__terminator, + STATE(1722), 1, + aux_sym_output_stream_statement_repeat1, + STATE(1824), 1, + sym_output_stream_tuning, + STATE(1724), 2, sym_comment, sym_include, - STATE(2189), 2, - sym_getter, - sym_setter, - ACTIONS(1354), 3, - aux_sym_access_tuning_token1, - aux_sym_access_tuning_token2, - aux_sym_access_tuning_token3, - ACTIONS(2509), 4, - aux_sym__block_terminator_token1, - aux_sym_variable_definition_token1, - aux_sym_method_definition_token1, - aux_sym_constructor_definition_token1, - [86572] = 17, + 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, + [86873] = 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(1356), 1, aux_sym_variable_tuning_token6, - ACTIONS(1372), 1, + ACTIONS(1378), 1, aux_sym_property_tuning_token1, - ACTIONS(2403), 1, + ACTIONS(2411), 1, aux_sym_getter_token1, - ACTIONS(2405), 1, + ACTIONS(2413), 1, aux_sym_setter_token1, - ACTIONS(2515), 1, + ACTIONS(2501), 1, aux_sym_variable_definition_token2, - STATE(1848), 1, + STATE(1734), 1, aux_sym_property_definition_repeat2, - STATE(1893), 1, + STATE(1885), 1, sym_property_tuning, - STATE(1919), 1, + STATE(1927), 1, aux_sym_property_definition_repeat3, - STATE(3917), 1, + STATE(4072), 1, sym_access_tuning, - ACTIONS(2399), 2, + ACTIONS(2407), 2, aux_sym_variable_tuning_token1, aux_sym_variable_tuning_token5, - STATE(1713), 2, + STATE(1725), 2, sym_comment, sym_include, - STATE(2189), 2, + STATE(2200), 2, sym_getter, sym_setter, - ACTIONS(1354), 3, + ACTIONS(1360), 3, aux_sym_access_tuning_token1, aux_sym_access_tuning_token2, aux_sym_access_tuning_token3, - ACTIONS(2513), 4, + ACTIONS(2499), 4, aux_sym__block_terminator_token1, aux_sym_variable_definition_token1, aux_sym_method_definition_token1, aux_sym_constructor_definition_token1, - [86632] = 17, + [86933] = 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(1356), 1, aux_sym_variable_tuning_token6, - ACTIONS(1372), 1, + ACTIONS(1378), 1, aux_sym_property_tuning_token1, - ACTIONS(2403), 1, + ACTIONS(2411), 1, aux_sym_getter_token1, - ACTIONS(2405), 1, + ACTIONS(2413), 1, aux_sym_setter_token1, - ACTIONS(2511), 1, + ACTIONS(2421), 1, aux_sym_variable_definition_token2, - STATE(1848), 1, + STATE(1737), 1, aux_sym_property_definition_repeat2, - STATE(1893), 1, + STATE(1885), 1, sym_property_tuning, - STATE(1921), 1, + STATE(1935), 1, aux_sym_property_definition_repeat3, - STATE(3917), 1, + STATE(4072), 1, sym_access_tuning, - ACTIONS(2399), 2, + ACTIONS(2407), 2, aux_sym_variable_tuning_token1, aux_sym_variable_tuning_token5, - STATE(1714), 2, + STATE(1726), 2, sym_comment, sym_include, - STATE(2189), 2, + STATE(2200), 2, sym_getter, sym_setter, - ACTIONS(1354), 3, + ACTIONS(1360), 3, aux_sym_access_tuning_token1, aux_sym_access_tuning_token2, aux_sym_access_tuning_token3, - ACTIONS(2509), 4, + ACTIONS(2419), 4, aux_sym__block_terminator_token1, aux_sym_variable_definition_token1, aux_sym_method_definition_token1, aux_sym_constructor_definition_token1, - [86692] = 10, + [86993] = 10, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, @@ -119330,13 +120296,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, ACTIONS(1155), 1, aux_sym_input_stream_tuning_token9, - ACTIONS(2517), 1, + ACTIONS(2540), 1, sym__terminator, - STATE(1725), 1, + STATE(1722), 1, aux_sym_output_stream_statement_repeat1, - STATE(1814), 1, + STATE(1824), 1, sym_output_stream_tuning, - STATE(1715), 2, + STATE(1727), 2, sym_comment, sym_include, ACTIONS(1151), 4, @@ -119357,172 +120323,93 @@ 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, - [86738] = 17, + [87039] = 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(1356), 1, aux_sym_variable_tuning_token6, - ACTIONS(1372), 1, + ACTIONS(1378), 1, aux_sym_property_tuning_token1, - ACTIONS(2403), 1, + ACTIONS(2411), 1, aux_sym_getter_token1, - ACTIONS(2405), 1, + ACTIONS(2413), 1, aux_sym_setter_token1, - ACTIONS(2521), 1, + ACTIONS(2544), 1, aux_sym_variable_definition_token2, - STATE(1848), 1, + STATE(1714), 1, aux_sym_property_definition_repeat2, - STATE(1893), 1, + STATE(1885), 1, sym_property_tuning, - STATE(1927), 1, + STATE(1944), 1, aux_sym_property_definition_repeat3, - STATE(3917), 1, + STATE(4072), 1, sym_access_tuning, - ACTIONS(2399), 2, + ACTIONS(2407), 2, aux_sym_variable_tuning_token1, aux_sym_variable_tuning_token5, - STATE(1716), 2, + STATE(1728), 2, sym_comment, sym_include, - STATE(2189), 2, + STATE(2200), 2, sym_getter, sym_setter, - ACTIONS(1354), 3, + ACTIONS(1360), 3, aux_sym_access_tuning_token1, aux_sym_access_tuning_token2, aux_sym_access_tuning_token3, - ACTIONS(2519), 4, + ACTIONS(2542), 4, aux_sym__block_terminator_token1, aux_sym_variable_definition_token1, aux_sym_method_definition_token1, aux_sym_constructor_definition_token1, - [86798] = 17, + [87099] = 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(1356), 1, aux_sym_variable_tuning_token6, - ACTIONS(1372), 1, + ACTIONS(1378), 1, aux_sym_property_tuning_token1, - ACTIONS(2403), 1, + ACTIONS(2409), 1, + aux_sym_variable_definition_token2, + ACTIONS(2411), 1, aux_sym_getter_token1, - ACTIONS(2405), 1, + ACTIONS(2413), 1, aux_sym_setter_token1, - ACTIONS(2525), 1, - aux_sym_variable_definition_token2, - STATE(1848), 1, + STATE(1715), 1, aux_sym_property_definition_repeat2, - STATE(1893), 1, + STATE(1885), 1, sym_property_tuning, STATE(1925), 1, aux_sym_property_definition_repeat3, - STATE(3917), 1, + STATE(4072), 1, sym_access_tuning, - ACTIONS(2399), 2, + ACTIONS(2407), 2, aux_sym_variable_tuning_token1, aux_sym_variable_tuning_token5, - STATE(1717), 2, + STATE(1729), 2, sym_comment, sym_include, - STATE(2189), 2, + STATE(2200), 2, sym_getter, sym_setter, - ACTIONS(1354), 3, + ACTIONS(1360), 3, aux_sym_access_tuning_token1, aux_sym_access_tuning_token2, aux_sym_access_tuning_token3, - ACTIONS(2523), 4, + ACTIONS(2405), 4, aux_sym__block_terminator_token1, aux_sym_variable_definition_token1, aux_sym_method_definition_token1, aux_sym_constructor_definition_token1, - [86858] = 17, - ACTIONS(59), 1, - anon_sym_SLASH_SLASH, - ACTIONS(61), 1, - anon_sym_SLASH_STAR, - ACTIONS(65), 1, - anon_sym_LBRACE, - ACTIONS(1358), 1, - aux_sym_variable_definition_token3, - ACTIONS(1360), 1, - aux_sym_variable_definition_token4, - ACTIONS(1362), 1, - aux_sym_buffer_definition_token1, - ACTIONS(1364), 1, - aux_sym_buffer_definition_token3, - ACTIONS(1366), 1, - aux_sym_query_definition_token1, - ACTIONS(2527), 1, - aux_sym_stream_definition_token1, - STATE(1852), 1, - aux_sym_variable_definition_repeat1, - STATE(1954), 1, - aux_sym_buffer_definition_repeat1, - STATE(1959), 1, - sym_serialization_tuning, - ACTIONS(1356), 2, - aux_sym_serialization_tuning_token1, - aux_sym_serialization_tuning_token2, - STATE(1718), 2, - sym_comment, - sym_include, - STATE(1933), 2, - sym_scope_tuning, - sym_access_tuning, - ACTIONS(1354), 3, - aux_sym_access_tuning_token1, - aux_sym_access_tuning_token2, - aux_sym_access_tuning_token3, - ACTIONS(1352), 4, - aux_sym_scope_tuning_token1, - aux_sym_scope_tuning_token2, - aux_sym_scope_tuning_token3, - aux_sym_scope_tuning_token4, - [86918] = 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(2529), 1, - sym__terminator, - STATE(1725), 1, - aux_sym_output_stream_statement_repeat1, - STATE(1814), 1, - sym_output_stream_tuning, - STATE(1719), 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, - [86964] = 10, + [87159] = 10, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, @@ -119531,13 +120418,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, ACTIONS(1155), 1, aux_sym_input_stream_tuning_token9, - ACTIONS(2531), 1, + ACTIONS(2546), 1, sym__terminator, - STATE(1725), 1, + STATE(1722), 1, aux_sym_output_stream_statement_repeat1, - STATE(1814), 1, + STATE(1824), 1, sym_output_stream_tuning, - STATE(1720), 2, + STATE(1730), 2, sym_comment, sym_include, ACTIONS(1151), 4, @@ -119558,86 +120445,95 @@ 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, - [87010] = 17, + [87205] = 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(1356), 1, aux_sym_variable_tuning_token6, - ACTIONS(1372), 1, + ACTIONS(1378), 1, aux_sym_property_tuning_token1, - ACTIONS(2403), 1, + ACTIONS(2411), 1, aux_sym_getter_token1, - ACTIONS(2405), 1, + ACTIONS(2413), 1, aux_sym_setter_token1, - ACTIONS(2521), 1, + ACTIONS(2550), 1, aux_sym_variable_definition_token2, - STATE(1730), 1, + STATE(1717), 1, aux_sym_property_definition_repeat2, - STATE(1893), 1, + STATE(1885), 1, sym_property_tuning, - STATE(1927), 1, + STATE(1924), 1, aux_sym_property_definition_repeat3, - STATE(3917), 1, + STATE(4072), 1, sym_access_tuning, - ACTIONS(2399), 2, + ACTIONS(2407), 2, aux_sym_variable_tuning_token1, aux_sym_variable_tuning_token5, - STATE(1721), 2, + STATE(1731), 2, sym_comment, sym_include, - STATE(2189), 2, + STATE(2200), 2, sym_getter, sym_setter, - ACTIONS(1354), 3, + ACTIONS(1360), 3, aux_sym_access_tuning_token1, aux_sym_access_tuning_token2, aux_sym_access_tuning_token3, - ACTIONS(2519), 4, + ACTIONS(2548), 4, aux_sym__block_terminator_token1, aux_sym_variable_definition_token1, aux_sym_method_definition_token1, aux_sym_constructor_definition_token1, - [87070] = 10, + [87265] = 19, 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(2533), 1, - sym__terminator, - STATE(1725), 1, - aux_sym_output_stream_statement_repeat1, - STATE(1814), 1, - sym_output_stream_tuning, - STATE(1722), 2, + ACTIONS(1201), 1, + aux_sym_query_tuning_token5, + ACTIONS(2113), 1, + aux_sym_on_error_phrase_token1, + ACTIONS(2115), 1, + aux_sym_where_clause_token1, + ACTIONS(2117), 1, + aux_sym_sort_clause_token1, + ACTIONS(2119), 1, + aux_sym_sort_clause_token2, + STATE(1819), 1, + sym_where_clause, + STATE(1820), 1, + aux_sym_for_phrase_repeat1, + STATE(2019), 1, + sym_query_tuning, + STATE(2163), 1, + aux_sym_for_phrase_repeat2, + STATE(2934), 1, + sym_sort_clause, + STATE(2979), 1, + sym_on_error_phrase, + STATE(3017), 1, + sym_on_quit_phrase, + STATE(4120), 1, + sym_on_stop_phrase, + ACTIONS(2455), 2, + anon_sym_COMMA, + anon_sym_COLON, + STATE(1732), 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, - [87116] = 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, + [87329] = 10, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, @@ -119646,13 +120542,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, ACTIONS(1155), 1, aux_sym_input_stream_tuning_token9, - ACTIONS(2535), 1, + ACTIONS(2552), 1, sym__terminator, - STATE(1725), 1, + STATE(1722), 1, aux_sym_output_stream_statement_repeat1, - STATE(1814), 1, + STATE(1824), 1, sym_output_stream_tuning, - STATE(1723), 2, + STATE(1733), 2, sym_comment, sym_include, ACTIONS(1151), 4, @@ -119673,109 +120569,41 @@ 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, - [87162] = 7, - ACTIONS(59), 1, - anon_sym_SLASH_SLASH, - ACTIONS(61), 1, - anon_sym_SLASH_STAR, - ACTIONS(65), 1, - anon_sym_LBRACE, - ACTIONS(2539), 1, - aux_sym_input_stream_tuning_token10, - ACTIONS(2541), 1, - aux_sym_input_stream_tuning_token11, - STATE(1724), 2, - sym_comment, - sym_include, - ACTIONS(2537), 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, - [87202] = 9, - ACTIONS(59), 1, - anon_sym_SLASH_SLASH, - ACTIONS(61), 1, - anon_sym_SLASH_STAR, - ACTIONS(65), 1, - anon_sym_LBRACE, - ACTIONS(2543), 1, - sym__terminator, - ACTIONS(2551), 1, - aux_sym_input_stream_tuning_token9, - STATE(1814), 1, - sym_output_stream_tuning, - STATE(1725), 3, - sym_comment, - sym_include, - aux_sym_output_stream_statement_repeat1, - ACTIONS(2545), 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(2548), 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, - [87246] = 17, + [87375] = 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(1356), 1, aux_sym_variable_tuning_token6, - ACTIONS(1372), 1, + ACTIONS(1378), 1, aux_sym_property_tuning_token1, - ACTIONS(2403), 1, + ACTIONS(2411), 1, aux_sym_getter_token1, - ACTIONS(2405), 1, + ACTIONS(2413), 1, aux_sym_setter_token1, ACTIONS(2556), 1, aux_sym_variable_definition_token2, - STATE(1716), 1, + STATE(1849), 1, aux_sym_property_definition_repeat2, - STATE(1893), 1, + STATE(1885), 1, sym_property_tuning, - STATE(1914), 1, + STATE(1930), 1, aux_sym_property_definition_repeat3, - STATE(3917), 1, + STATE(4072), 1, sym_access_tuning, - ACTIONS(2399), 2, + ACTIONS(2407), 2, aux_sym_variable_tuning_token1, aux_sym_variable_tuning_token5, - STATE(1726), 2, + STATE(1734), 2, sym_comment, sym_include, - STATE(2189), 2, + STATE(2200), 2, sym_getter, sym_setter, - ACTIONS(1354), 3, + ACTIONS(1360), 3, aux_sym_access_tuning_token1, aux_sym_access_tuning_token2, aux_sym_access_tuning_token3, @@ -119784,93 +120612,138 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_variable_definition_token1, aux_sym_method_definition_token1, aux_sym_constructor_definition_token1, - [87306] = 17, + [87435] = 19, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(1350), 1, + ACTIONS(1201), 1, + aux_sym_query_tuning_token5, + ACTIONS(2113), 1, + aux_sym_on_error_phrase_token1, + ACTIONS(2115), 1, + aux_sym_where_clause_token1, + ACTIONS(2117), 1, + aux_sym_sort_clause_token1, + ACTIONS(2119), 1, + aux_sym_sort_clause_token2, + STATE(1821), 1, + sym_where_clause, + STATE(1826), 1, + aux_sym_for_phrase_repeat1, + STATE(2019), 1, + sym_query_tuning, + STATE(2219), 1, + aux_sym_for_phrase_repeat2, + STATE(2881), 1, + sym_on_error_phrase, + STATE(2934), 1, + sym_sort_clause, + STATE(3082), 1, + sym_on_quit_phrase, + STATE(4040), 1, + sym_on_stop_phrase, + ACTIONS(2558), 2, + anon_sym_COMMA, + anon_sym_COLON, + STATE(1735), 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, + [87499] = 17, + 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_variable_tuning_token6, - ACTIONS(1372), 1, + ACTIONS(1378), 1, aux_sym_property_tuning_token1, - ACTIONS(2401), 1, - aux_sym_variable_definition_token2, - ACTIONS(2403), 1, + ACTIONS(2411), 1, aux_sym_getter_token1, - ACTIONS(2405), 1, + ACTIONS(2413), 1, aux_sym_setter_token1, - STATE(1717), 1, + ACTIONS(2544), 1, + aux_sym_variable_definition_token2, + STATE(1849), 1, aux_sym_property_definition_repeat2, - STATE(1893), 1, + STATE(1885), 1, sym_property_tuning, - STATE(1908), 1, + STATE(1944), 1, aux_sym_property_definition_repeat3, - STATE(3917), 1, + STATE(4072), 1, sym_access_tuning, - ACTIONS(2399), 2, + ACTIONS(2407), 2, aux_sym_variable_tuning_token1, aux_sym_variable_tuning_token5, - STATE(1727), 2, + STATE(1736), 2, sym_comment, sym_include, - STATE(2189), 2, + STATE(2200), 2, sym_getter, sym_setter, - ACTIONS(1354), 3, + ACTIONS(1360), 3, aux_sym_access_tuning_token1, aux_sym_access_tuning_token2, aux_sym_access_tuning_token3, - ACTIONS(2397), 4, + ACTIONS(2542), 4, aux_sym__block_terminator_token1, aux_sym_variable_definition_token1, aux_sym_method_definition_token1, aux_sym_constructor_definition_token1, - [87366] = 17, + [87559] = 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(1356), 1, aux_sym_variable_tuning_token6, - ACTIONS(1372), 1, + ACTIONS(1378), 1, aux_sym_property_tuning_token1, - ACTIONS(2403), 1, + ACTIONS(2411), 1, aux_sym_getter_token1, - ACTIONS(2405), 1, + ACTIONS(2413), 1, aux_sym_setter_token1, - ACTIONS(2411), 1, + ACTIONS(2562), 1, aux_sym_variable_definition_token2, - STATE(1713), 1, + STATE(1849), 1, aux_sym_property_definition_repeat2, - STATE(1893), 1, + STATE(1885), 1, sym_property_tuning, - STATE(1909), 1, + STATE(1954), 1, aux_sym_property_definition_repeat3, - STATE(3917), 1, + STATE(4072), 1, sym_access_tuning, - ACTIONS(2399), 2, + ACTIONS(2407), 2, aux_sym_variable_tuning_token1, aux_sym_variable_tuning_token5, - STATE(1728), 2, + STATE(1737), 2, sym_comment, sym_include, - STATE(2189), 2, + STATE(2200), 2, sym_getter, sym_setter, - ACTIONS(1354), 3, + ACTIONS(1360), 3, aux_sym_access_tuning_token1, aux_sym_access_tuning_token2, aux_sym_access_tuning_token3, - ACTIONS(2409), 4, + ACTIONS(2560), 4, aux_sym__block_terminator_token1, aux_sym_variable_definition_token1, aux_sym_method_definition_token1, aux_sym_constructor_definition_token1, - [87426] = 10, + [87619] = 10, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, @@ -119879,13 +120752,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, ACTIONS(1155), 1, aux_sym_input_stream_tuning_token9, - ACTIONS(2558), 1, + ACTIONS(2564), 1, sym__terminator, - STATE(1725), 1, + STATE(1722), 1, aux_sym_output_stream_statement_repeat1, - STATE(1814), 1, + STATE(1824), 1, sym_output_stream_tuning, - STATE(1729), 2, + STATE(1738), 2, sym_comment, sym_include, ACTIONS(1151), 4, @@ -119906,136 +120779,129 @@ 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, - [87472] = 17, + [87665] = 17, 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_tuning_token6, - ACTIONS(1372), 1, - aux_sym_property_tuning_token1, - ACTIONS(2403), 1, - aux_sym_getter_token1, - ACTIONS(2405), 1, - aux_sym_setter_token1, - ACTIONS(2562), 1, - aux_sym_variable_definition_token2, - STATE(1848), 1, - aux_sym_property_definition_repeat2, - STATE(1893), 1, - sym_property_tuning, - STATE(1904), 1, - aux_sym_property_definition_repeat3, - STATE(3917), 1, - sym_access_tuning, - ACTIONS(2399), 2, - aux_sym_variable_tuning_token1, - aux_sym_variable_tuning_token5, - STATE(1730), 2, + ACTIONS(2349), 1, + aux_sym_variable_definition_token3, + ACTIONS(2351), 1, + aux_sym_variable_definition_token4, + ACTIONS(2353), 1, + aux_sym_buffer_definition_token1, + ACTIONS(2355), 1, + aux_sym_buffer_definition_token3, + ACTIONS(2357), 1, + aux_sym_query_definition_token1, + ACTIONS(2361), 1, + aux_sym_stream_definition_token1, + STATE(1855), 1, + aux_sym_variable_definition_repeat1, + STATE(2005), 1, + sym_serialization_tuning, + STATE(2020), 1, + aux_sym_buffer_definition_repeat1, + ACTIONS(1362), 2, + aux_sym_serialization_tuning_token1, + aux_sym_serialization_tuning_token2, + STATE(1739), 2, sym_comment, sym_include, - STATE(2189), 2, - sym_getter, - sym_setter, - ACTIONS(1354), 3, + STATE(1943), 2, + sym_scope_tuning, + sym_access_tuning, + ACTIONS(1360), 3, aux_sym_access_tuning_token1, aux_sym_access_tuning_token2, aux_sym_access_tuning_token3, - ACTIONS(2560), 4, - aux_sym__block_terminator_token1, - aux_sym_variable_definition_token1, - aux_sym_method_definition_token1, - aux_sym_constructor_definition_token1, - [87532] = 17, + ACTIONS(1358), 4, + aux_sym_scope_tuning_token1, + aux_sym_scope_tuning_token2, + aux_sym_scope_tuning_token3, + aux_sym_scope_tuning_token4, + [87725] = 10, 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_tuning_token6, - ACTIONS(1372), 1, - aux_sym_property_tuning_token1, - ACTIONS(2403), 1, - aux_sym_getter_token1, - ACTIONS(2405), 1, - aux_sym_setter_token1, + ACTIONS(1155), 1, + aux_sym_input_stream_tuning_token9, ACTIONS(2566), 1, - aux_sym_variable_definition_token2, - STATE(1848), 1, - aux_sym_property_definition_repeat2, - STATE(1893), 1, - sym_property_tuning, - STATE(1905), 1, - aux_sym_property_definition_repeat3, - STATE(3917), 1, - sym_access_tuning, - ACTIONS(2399), 2, - aux_sym_variable_tuning_token1, - aux_sym_variable_tuning_token5, - STATE(1731), 2, + sym__terminator, + STATE(1722), 1, + aux_sym_output_stream_statement_repeat1, + STATE(1824), 1, + sym_output_stream_tuning, + STATE(1740), 2, sym_comment, sym_include, - STATE(2189), 2, - sym_getter, - sym_setter, - ACTIONS(1354), 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, - [87592] = 17, + 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, + [87771] = 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(1356), 1, aux_sym_variable_tuning_token6, - ACTIONS(1372), 1, + ACTIONS(1378), 1, aux_sym_property_tuning_token1, - ACTIONS(2403), 1, + ACTIONS(2411), 1, aux_sym_getter_token1, - ACTIONS(2405), 1, + ACTIONS(2413), 1, aux_sym_setter_token1, - ACTIONS(2562), 1, + ACTIONS(2570), 1, aux_sym_variable_definition_token2, - STATE(1714), 1, + STATE(1849), 1, aux_sym_property_definition_repeat2, - STATE(1893), 1, + STATE(1885), 1, sym_property_tuning, - STATE(1904), 1, + STATE(1922), 1, aux_sym_property_definition_repeat3, - STATE(3917), 1, + STATE(4072), 1, sym_access_tuning, - ACTIONS(2399), 2, + ACTIONS(2407), 2, aux_sym_variable_tuning_token1, aux_sym_variable_tuning_token5, - STATE(1732), 2, + STATE(1741), 2, sym_comment, sym_include, - STATE(2189), 2, + STATE(2200), 2, sym_getter, sym_setter, - ACTIONS(1354), 3, + ACTIONS(1360), 3, aux_sym_access_tuning_token1, aux_sym_access_tuning_token2, aux_sym_access_tuning_token3, - ACTIONS(2560), 4, + ACTIONS(2568), 4, aux_sym__block_terminator_token1, aux_sym_variable_definition_token1, aux_sym_method_definition_token1, aux_sym_constructor_definition_token1, - [87652] = 19, + [87831] = 19, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, @@ -120044,33 +120910,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, ACTIONS(1201), 1, aux_sym_query_tuning_token5, - ACTIONS(2105), 1, - anon_sym_COMMA, ACTIONS(2109), 1, - aux_sym_on_error_phrase_token1, + anon_sym_COMMA, ACTIONS(2113), 1, + aux_sym_on_error_phrase_token1, + ACTIONS(2117), 1, aux_sym_sort_clause_token1, - ACTIONS(2115), 1, + ACTIONS(2119), 1, aux_sym_sort_clause_token2, - ACTIONS(2568), 1, + ACTIONS(2572), 1, anon_sym_COLON, - STATE(1735), 1, + STATE(1948), 1, aux_sym_for_phrase_repeat1, - STATE(1953), 1, + STATE(2019), 1, sym_query_tuning, - STATE(2117), 1, + STATE(2081), 1, aux_sym_for_phrase_repeat2, - STATE(2624), 1, + STATE(2595), 1, sym_on_error_phrase, - STATE(2764), 1, - sym_on_quit_phrase, - STATE(2783), 1, + STATE(2934), 1, sym_sort_clause, - STATE(3288), 1, + STATE(2976), 1, + sym_on_quit_phrase, + STATE(3317), 1, sym_on_stop_phrase, - STATE(3289), 1, + STATE(3318), 1, aux_sym_for_statement_repeat1, - STATE(1733), 2, + STATE(1742), 2, sym_comment, sym_include, ACTIONS(1195), 5, @@ -120079,7 +120945,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_query_tuning_token2, aux_sym_query_tuning_token3, aux_sym_query_tuning_token4, - [87715] = 19, + [87894] = 19, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, @@ -120088,33 +120954,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, ACTIONS(1201), 1, aux_sym_query_tuning_token5, - ACTIONS(2105), 1, - anon_sym_COMMA, ACTIONS(2109), 1, - aux_sym_on_error_phrase_token1, + anon_sym_COMMA, ACTIONS(2113), 1, + aux_sym_on_error_phrase_token1, + ACTIONS(2117), 1, aux_sym_sort_clause_token1, - ACTIONS(2115), 1, + ACTIONS(2119), 1, aux_sym_sort_clause_token2, - ACTIONS(2570), 1, + ACTIONS(2574), 1, anon_sym_COLON, - STATE(1935), 1, + STATE(1948), 1, aux_sym_for_phrase_repeat1, - STATE(1953), 1, + STATE(2019), 1, sym_query_tuning, - STATE(2081), 1, + STATE(2074), 1, aux_sym_for_phrase_repeat2, - STATE(2547), 1, + STATE(2654), 1, sym_on_error_phrase, - STATE(2755), 1, + STATE(2865), 1, sym_on_quit_phrase, - STATE(2783), 1, + STATE(2934), 1, sym_sort_clause, - STATE(3403), 1, + STATE(3402), 1, sym_on_stop_phrase, - STATE(3410), 1, + STATE(3403), 1, aux_sym_for_statement_repeat1, - STATE(1734), 2, + STATE(1743), 2, sym_comment, sym_include, ACTIONS(1195), 5, @@ -120123,7 +120989,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_query_tuning_token2, aux_sym_query_tuning_token3, aux_sym_query_tuning_token4, - [87778] = 19, + [87957] = 19, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, @@ -120132,33 +120998,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, ACTIONS(1201), 1, aux_sym_query_tuning_token5, - ACTIONS(2105), 1, - anon_sym_COMMA, ACTIONS(2109), 1, - aux_sym_on_error_phrase_token1, + anon_sym_COMMA, ACTIONS(2113), 1, + aux_sym_on_error_phrase_token1, + ACTIONS(2117), 1, aux_sym_sort_clause_token1, - ACTIONS(2115), 1, + ACTIONS(2119), 1, aux_sym_sort_clause_token2, - ACTIONS(2572), 1, + ACTIONS(2576), 1, anon_sym_COLON, - STATE(1935), 1, + STATE(1948), 1, aux_sym_for_phrase_repeat1, - STATE(1953), 1, + STATE(2019), 1, sym_query_tuning, - STATE(2133), 1, + STATE(2053), 1, aux_sym_for_phrase_repeat2, - STATE(2571), 1, + STATE(2760), 1, sym_on_error_phrase, - STATE(2740), 1, + STATE(2838), 1, sym_on_quit_phrase, - STATE(2783), 1, + STATE(2934), 1, sym_sort_clause, - STATE(3281), 1, + STATE(3393), 1, sym_on_stop_phrase, - STATE(3282), 1, + STATE(3394), 1, aux_sym_for_statement_repeat1, - STATE(1735), 2, + STATE(1744), 2, sym_comment, sym_include, ACTIONS(1195), 5, @@ -120167,7 +121033,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_query_tuning_token2, aux_sym_query_tuning_token3, aux_sym_query_tuning_token4, - [87841] = 19, + [88020] = 19, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, @@ -120176,33 +121042,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, ACTIONS(1201), 1, aux_sym_query_tuning_token5, - ACTIONS(2105), 1, - anon_sym_COMMA, ACTIONS(2109), 1, - aux_sym_on_error_phrase_token1, + anon_sym_COMMA, ACTIONS(2113), 1, + aux_sym_on_error_phrase_token1, + ACTIONS(2117), 1, aux_sym_sort_clause_token1, - ACTIONS(2115), 1, + ACTIONS(2119), 1, aux_sym_sort_clause_token2, - ACTIONS(2574), 1, + ACTIONS(2576), 1, anon_sym_COLON, - STATE(1935), 1, + STATE(1747), 1, aux_sym_for_phrase_repeat1, - STATE(1953), 1, + STATE(2019), 1, sym_query_tuning, - STATE(2135), 1, + STATE(2053), 1, aux_sym_for_phrase_repeat2, - STATE(2560), 1, + STATE(2760), 1, sym_on_error_phrase, - STATE(2783), 1, - sym_sort_clause, - STATE(2793), 1, + STATE(2838), 1, sym_on_quit_phrase, - STATE(3357), 1, + STATE(2934), 1, + sym_sort_clause, + STATE(3393), 1, sym_on_stop_phrase, - STATE(3358), 1, + STATE(3394), 1, aux_sym_for_statement_repeat1, - STATE(1736), 2, + STATE(1745), 2, sym_comment, sym_include, ACTIONS(1195), 5, @@ -120211,7 +121077,37 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_query_tuning_token2, aux_sym_query_tuning_token3, aux_sym_query_tuning_token4, - [87904] = 19, + [88083] = 5, + ACTIONS(59), 1, + anon_sym_SLASH_SLASH, + ACTIONS(61), 1, + anon_sym_SLASH_STAR, + ACTIONS(65), 1, + anon_sym_LBRACE, + STATE(1746), 2, + sym_comment, + sym_include, + ACTIONS(205), 19, + 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_repeat_tuning_token1, + 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, + [88118] = 19, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, @@ -120220,33 +121116,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, ACTIONS(1201), 1, aux_sym_query_tuning_token5, - ACTIONS(2105), 1, - anon_sym_COMMA, ACTIONS(2109), 1, - aux_sym_on_error_phrase_token1, + anon_sym_COMMA, ACTIONS(2113), 1, + aux_sym_on_error_phrase_token1, + ACTIONS(2117), 1, aux_sym_sort_clause_token1, - ACTIONS(2115), 1, + ACTIONS(2119), 1, aux_sym_sort_clause_token2, - ACTIONS(2421), 1, + ACTIONS(2578), 1, anon_sym_COLON, - STATE(1935), 1, + STATE(1948), 1, aux_sym_for_phrase_repeat1, - STATE(1953), 1, + STATE(2019), 1, sym_query_tuning, - STATE(2084), 1, + STATE(2046), 1, aux_sym_for_phrase_repeat2, - STATE(2657), 1, + STATE(2686), 1, sym_on_error_phrase, - STATE(2783), 1, + STATE(2934), 1, sym_sort_clause, - STATE(2849), 1, + STATE(2936), 1, sym_on_quit_phrase, - STATE(3171), 1, + STATE(3388), 1, sym_on_stop_phrase, - STATE(3173), 1, + STATE(3389), 1, aux_sym_for_statement_repeat1, - STATE(1737), 2, + STATE(1747), 2, sym_comment, sym_include, ACTIONS(1195), 5, @@ -120255,7 +121151,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_query_tuning_token2, aux_sym_query_tuning_token3, aux_sym_query_tuning_token4, - [87967] = 19, + [88181] = 19, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, @@ -120264,33 +121160,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, ACTIONS(1201), 1, aux_sym_query_tuning_token5, - ACTIONS(2105), 1, - anon_sym_COMMA, ACTIONS(2109), 1, - aux_sym_on_error_phrase_token1, + anon_sym_COMMA, ACTIONS(2113), 1, + aux_sym_on_error_phrase_token1, + ACTIONS(2117), 1, aux_sym_sort_clause_token1, - ACTIONS(2115), 1, + ACTIONS(2119), 1, aux_sym_sort_clause_token2, - ACTIONS(2421), 1, + ACTIONS(2451), 1, anon_sym_COLON, - STATE(1755), 1, + STATE(1750), 1, aux_sym_for_phrase_repeat1, - STATE(1953), 1, + STATE(2019), 1, sym_query_tuning, - STATE(2084), 1, + STATE(2130), 1, aux_sym_for_phrase_repeat2, - STATE(2657), 1, + STATE(2743), 1, sym_on_error_phrase, - STATE(2783), 1, - sym_sort_clause, - STATE(2849), 1, + STATE(2877), 1, sym_on_quit_phrase, - STATE(3171), 1, + STATE(2934), 1, + sym_sort_clause, + STATE(3488), 1, sym_on_stop_phrase, - STATE(3173), 1, + STATE(3489), 1, aux_sym_for_statement_repeat1, - STATE(1738), 2, + STATE(1748), 2, sym_comment, sym_include, ACTIONS(1195), 5, @@ -120299,7 +121195,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_query_tuning_token2, aux_sym_query_tuning_token3, aux_sym_query_tuning_token4, - [88030] = 19, + [88244] = 19, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, @@ -120308,33 +121204,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, ACTIONS(1201), 1, aux_sym_query_tuning_token5, - ACTIONS(2105), 1, - anon_sym_COMMA, ACTIONS(2109), 1, - aux_sym_on_error_phrase_token1, + anon_sym_COMMA, ACTIONS(2113), 1, + aux_sym_on_error_phrase_token1, + ACTIONS(2117), 1, aux_sym_sort_clause_token1, - ACTIONS(2115), 1, + ACTIONS(2119), 1, aux_sym_sort_clause_token2, - ACTIONS(2459), 1, + ACTIONS(2580), 1, anon_sym_COLON, - STATE(1935), 1, + STATE(1948), 1, aux_sym_for_phrase_repeat1, - STATE(1953), 1, + STATE(2019), 1, sym_query_tuning, - STATE(2087), 1, + STATE(2137), 1, aux_sym_for_phrase_repeat2, - STATE(2620), 1, + STATE(2751), 1, sym_on_error_phrase, - STATE(2761), 1, + STATE(2863), 1, sym_on_quit_phrase, - STATE(2783), 1, + STATE(2934), 1, sym_sort_clause, - STATE(3134), 1, + STATE(3486), 1, sym_on_stop_phrase, - STATE(3135), 1, + STATE(3487), 1, aux_sym_for_statement_repeat1, - STATE(1739), 2, + STATE(1749), 2, sym_comment, sym_include, ACTIONS(1195), 5, @@ -120343,7 +121239,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_query_tuning_token2, aux_sym_query_tuning_token3, aux_sym_query_tuning_token4, - [88093] = 19, + [88307] = 19, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, @@ -120352,33 +121248,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, ACTIONS(1201), 1, aux_sym_query_tuning_token5, - ACTIONS(2105), 1, - anon_sym_COMMA, ACTIONS(2109), 1, - aux_sym_on_error_phrase_token1, + anon_sym_COMMA, ACTIONS(2113), 1, + aux_sym_on_error_phrase_token1, + ACTIONS(2117), 1, aux_sym_sort_clause_token1, - ACTIONS(2115), 1, + ACTIONS(2119), 1, aux_sym_sort_clause_token2, - ACTIONS(2576), 1, + ACTIONS(2582), 1, anon_sym_COLON, - STATE(1792), 1, + STATE(1948), 1, aux_sym_for_phrase_repeat1, - STATE(1953), 1, + STATE(2019), 1, sym_query_tuning, - STATE(2046), 1, + STATE(2142), 1, aux_sym_for_phrase_repeat2, - STATE(2707), 1, + STATE(2756), 1, sym_on_error_phrase, - STATE(2783), 1, + STATE(2934), 1, sym_sort_clause, - STATE(2873), 1, + STATE(2971), 1, sym_on_quit_phrase, - STATE(3209), 1, + STATE(3484), 1, sym_on_stop_phrase, - STATE(3210), 1, + STATE(3485), 1, aux_sym_for_statement_repeat1, - STATE(1740), 2, + STATE(1750), 2, sym_comment, sym_include, ACTIONS(1195), 5, @@ -120387,7 +121283,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_query_tuning_token2, aux_sym_query_tuning_token3, aux_sym_query_tuning_token4, - [88156] = 19, + [88370] = 19, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, @@ -120396,33 +121292,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, ACTIONS(1201), 1, aux_sym_query_tuning_token5, - ACTIONS(2105), 1, - anon_sym_COMMA, ACTIONS(2109), 1, - aux_sym_on_error_phrase_token1, + anon_sym_COMMA, ACTIONS(2113), 1, + aux_sym_on_error_phrase_token1, + ACTIONS(2117), 1, aux_sym_sort_clause_token1, - ACTIONS(2115), 1, + ACTIONS(2119), 1, aux_sym_sort_clause_token2, - ACTIONS(2459), 1, + ACTIONS(2582), 1, anon_sym_COLON, - STATE(1752), 1, + STATE(1773), 1, aux_sym_for_phrase_repeat1, - STATE(1953), 1, + STATE(2019), 1, sym_query_tuning, - STATE(2087), 1, + STATE(2142), 1, aux_sym_for_phrase_repeat2, - STATE(2620), 1, + STATE(2756), 1, sym_on_error_phrase, - STATE(2761), 1, - sym_on_quit_phrase, - STATE(2783), 1, + STATE(2934), 1, sym_sort_clause, - STATE(3134), 1, + STATE(2971), 1, + sym_on_quit_phrase, + STATE(3484), 1, sym_on_stop_phrase, - STATE(3135), 1, + STATE(3485), 1, aux_sym_for_statement_repeat1, - STATE(1741), 2, + STATE(1751), 2, sym_comment, sym_include, ACTIONS(1195), 5, @@ -120431,7 +121327,37 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_query_tuning_token2, aux_sym_query_tuning_token3, aux_sym_query_tuning_token4, - [88219] = 19, + [88433] = 5, + ACTIONS(59), 1, + anon_sym_SLASH_SLASH, + ACTIONS(61), 1, + anon_sym_SLASH_STAR, + ACTIONS(65), 1, + anon_sym_LBRACE, + STATE(1752), 2, + sym_comment, + sym_include, + ACTIONS(139), 19, + 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_repeat_tuning_token1, + 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, + [88468] = 19, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, @@ -120440,33 +121366,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, ACTIONS(1201), 1, aux_sym_query_tuning_token5, - ACTIONS(2105), 1, - anon_sym_COMMA, ACTIONS(2109), 1, - aux_sym_on_error_phrase_token1, + anon_sym_COMMA, ACTIONS(2113), 1, + aux_sym_on_error_phrase_token1, + ACTIONS(2117), 1, aux_sym_sort_clause_token1, - ACTIONS(2115), 1, + ACTIONS(2119), 1, aux_sym_sort_clause_token2, - ACTIONS(2443), 1, + ACTIONS(2449), 1, anon_sym_COLON, - STATE(1799), 1, + STATE(1804), 1, aux_sym_for_phrase_repeat1, - STATE(1953), 1, + STATE(2019), 1, sym_query_tuning, - STATE(2042), 1, + STATE(2063), 1, aux_sym_for_phrase_repeat2, - STATE(2635), 1, + STATE(2737), 1, sym_on_error_phrase, - STATE(2760), 1, + STATE(2894), 1, sym_on_quit_phrase, - STATE(2783), 1, + STATE(2934), 1, sym_sort_clause, - STATE(3483), 1, + STATE(3324), 1, aux_sym_for_statement_repeat1, - STATE(3492), 1, + STATE(3327), 1, sym_on_stop_phrase, - STATE(1742), 2, + STATE(1753), 2, sym_comment, sym_include, ACTIONS(1195), 5, @@ -120475,7 +121401,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_query_tuning_token2, aux_sym_query_tuning_token3, aux_sym_query_tuning_token4, - [88282] = 19, + [88531] = 19, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, @@ -120484,33 +121410,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, ACTIONS(1201), 1, aux_sym_query_tuning_token5, - ACTIONS(2105), 1, - anon_sym_COMMA, ACTIONS(2109), 1, - aux_sym_on_error_phrase_token1, + anon_sym_COMMA, ACTIONS(2113), 1, + aux_sym_on_error_phrase_token1, + ACTIONS(2117), 1, aux_sym_sort_clause_token1, - ACTIONS(2115), 1, + ACTIONS(2119), 1, aux_sym_sort_clause_token2, - ACTIONS(2578), 1, + ACTIONS(2459), 1, anon_sym_COLON, - STATE(1736), 1, + STATE(1743), 1, aux_sym_for_phrase_repeat1, - STATE(1953), 1, + STATE(2019), 1, sym_query_tuning, - STATE(2108), 1, + STATE(2084), 1, aux_sym_for_phrase_repeat2, - STATE(2586), 1, + STATE(2625), 1, sym_on_error_phrase, - STATE(2781), 1, + STATE(2843), 1, sym_on_quit_phrase, - STATE(2783), 1, + STATE(2934), 1, sym_sort_clause, - STATE(3372), 1, + STATE(3412), 1, sym_on_stop_phrase, - STATE(3377), 1, + STATE(3413), 1, aux_sym_for_statement_repeat1, - STATE(1743), 2, + STATE(1754), 2, sym_comment, sym_include, ACTIONS(1195), 5, @@ -120519,7 +121445,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_query_tuning_token2, aux_sym_query_tuning_token3, aux_sym_query_tuning_token4, - [88345] = 19, + [88594] = 19, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, @@ -120528,33 +121454,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, ACTIONS(1201), 1, aux_sym_query_tuning_token5, - ACTIONS(2105), 1, - anon_sym_COMMA, ACTIONS(2109), 1, - aux_sym_on_error_phrase_token1, + anon_sym_COMMA, ACTIONS(2113), 1, + aux_sym_on_error_phrase_token1, + ACTIONS(2117), 1, aux_sym_sort_clause_token1, - ACTIONS(2115), 1, + ACTIONS(2119), 1, aux_sym_sort_clause_token2, - ACTIONS(2580), 1, + ACTIONS(2584), 1, anon_sym_COLON, - STATE(1935), 1, + STATE(1749), 1, aux_sym_for_phrase_repeat1, - STATE(1953), 1, + STATE(2019), 1, sym_query_tuning, - STATE(2036), 1, + STATE(2124), 1, aux_sym_for_phrase_repeat2, - STATE(2682), 1, + STATE(2740), 1, sym_on_error_phrase, - STATE(2783), 1, - sym_sort_clause, - STATE(2911), 1, + STATE(2891), 1, sym_on_quit_phrase, - STATE(3317), 1, - aux_sym_for_statement_repeat1, - STATE(3319), 1, + STATE(2934), 1, + sym_sort_clause, + STATE(3493), 1, sym_on_stop_phrase, - STATE(1744), 2, + STATE(3494), 1, + aux_sym_for_statement_repeat1, + STATE(1755), 2, sym_comment, sym_include, ACTIONS(1195), 5, @@ -120563,7 +121489,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_query_tuning_token2, aux_sym_query_tuning_token3, aux_sym_query_tuning_token4, - [88408] = 19, + [88657] = 19, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, @@ -120572,33 +121498,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, ACTIONS(1201), 1, aux_sym_query_tuning_token5, - ACTIONS(2105), 1, - anon_sym_COMMA, ACTIONS(2109), 1, - aux_sym_on_error_phrase_token1, + anon_sym_COMMA, ACTIONS(2113), 1, + aux_sym_on_error_phrase_token1, + ACTIONS(2117), 1, aux_sym_sort_clause_token1, - ACTIONS(2115), 1, + ACTIONS(2119), 1, aux_sym_sort_clause_token2, - ACTIONS(2580), 1, + ACTIONS(2586), 1, anon_sym_COLON, - STATE(1791), 1, + STATE(1948), 1, aux_sym_for_phrase_repeat1, - STATE(1953), 1, + STATE(2019), 1, sym_query_tuning, - STATE(2036), 1, + STATE(2135), 1, aux_sym_for_phrase_repeat2, - STATE(2682), 1, + STATE(2628), 1, sym_on_error_phrase, - STATE(2783), 1, - sym_sort_clause, - STATE(2911), 1, + STATE(2842), 1, sym_on_quit_phrase, - STATE(3317), 1, - aux_sym_for_statement_repeat1, - STATE(3319), 1, + STATE(2934), 1, + sym_sort_clause, + STATE(3238), 1, sym_on_stop_phrase, - STATE(1745), 2, + STATE(3239), 1, + aux_sym_for_statement_repeat1, + STATE(1756), 2, sym_comment, sym_include, ACTIONS(1195), 5, @@ -120607,7 +121533,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_query_tuning_token2, aux_sym_query_tuning_token3, aux_sym_query_tuning_token4, - [88471] = 19, + [88720] = 19, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, @@ -120616,33 +121542,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, ACTIONS(1201), 1, aux_sym_query_tuning_token5, - ACTIONS(2105), 1, - anon_sym_COMMA, ACTIONS(2109), 1, - aux_sym_on_error_phrase_token1, + anon_sym_COMMA, ACTIONS(2113), 1, + aux_sym_on_error_phrase_token1, + ACTIONS(2117), 1, aux_sym_sort_clause_token1, - ACTIONS(2115), 1, + ACTIONS(2119), 1, aux_sym_sort_clause_token2, - ACTIONS(2463), 1, + ACTIONS(2459), 1, anon_sym_COLON, - STATE(1779), 1, + STATE(1948), 1, aux_sym_for_phrase_repeat1, - STATE(1953), 1, + STATE(2019), 1, sym_query_tuning, - STATE(2121), 1, + STATE(2084), 1, aux_sym_for_phrase_repeat2, - STATE(2676), 1, + STATE(2625), 1, sym_on_error_phrase, - STATE(2762), 1, + STATE(2843), 1, sym_on_quit_phrase, - STATE(2783), 1, + STATE(2934), 1, sym_sort_clause, - STATE(3284), 1, + STATE(3412), 1, sym_on_stop_phrase, - STATE(3285), 1, + STATE(3413), 1, aux_sym_for_statement_repeat1, - STATE(1746), 2, + STATE(1757), 2, sym_comment, sym_include, ACTIONS(1195), 5, @@ -120651,7 +121577,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_query_tuning_token2, aux_sym_query_tuning_token3, aux_sym_query_tuning_token4, - [88534] = 19, + [88783] = 19, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, @@ -120660,33 +121586,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, ACTIONS(1201), 1, aux_sym_query_tuning_token5, - ACTIONS(2105), 1, - anon_sym_COMMA, ACTIONS(2109), 1, - aux_sym_on_error_phrase_token1, + anon_sym_COMMA, ACTIONS(2113), 1, + aux_sym_on_error_phrase_token1, + ACTIONS(2117), 1, aux_sym_sort_clause_token1, - ACTIONS(2115), 1, + ACTIONS(2119), 1, aux_sym_sort_clause_token2, - ACTIONS(2582), 1, + ACTIONS(2439), 1, anon_sym_COLON, - STATE(1935), 1, + STATE(1794), 1, aux_sym_for_phrase_repeat1, - STATE(1953), 1, + STATE(2019), 1, sym_query_tuning, - STATE(2026), 1, + STATE(2132), 1, aux_sym_for_phrase_repeat2, - STATE(2650), 1, + STATE(2746), 1, sym_on_error_phrase, - STATE(2751), 1, + STATE(2869), 1, sym_on_quit_phrase, - STATE(2783), 1, + STATE(2934), 1, sym_sort_clause, - STATE(3131), 1, - sym_on_stop_phrase, - STATE(3132), 1, + STATE(3273), 1, aux_sym_for_statement_repeat1, - STATE(1747), 2, + STATE(3274), 1, + sym_on_stop_phrase, + STATE(1758), 2, sym_comment, sym_include, ACTIONS(1195), 5, @@ -120695,7 +121621,48 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_query_tuning_token2, aux_sym_query_tuning_token3, aux_sym_query_tuning_token4, - [88597] = 19, + [88846] = 16, + ACTIONS(59), 1, + anon_sym_SLASH_SLASH, + ACTIONS(61), 1, + anon_sym_SLASH_STAR, + ACTIONS(65), 1, + anon_sym_LBRACE, + ACTIONS(1364), 1, + aux_sym_variable_definition_token3, + ACTIONS(1366), 1, + aux_sym_variable_definition_token4, + ACTIONS(1368), 1, + aux_sym_buffer_definition_token1, + ACTIONS(1370), 1, + aux_sym_buffer_definition_token3, + ACTIONS(1372), 1, + aux_sym_query_definition_token1, + STATE(1851), 1, + aux_sym_variable_definition_repeat1, + STATE(2005), 1, + sym_serialization_tuning, + STATE(2008), 1, + aux_sym_buffer_definition_repeat1, + ACTIONS(1362), 2, + aux_sym_serialization_tuning_token1, + aux_sym_serialization_tuning_token2, + STATE(1759), 2, + sym_comment, + sym_include, + STATE(1943), 2, + sym_scope_tuning, + sym_access_tuning, + ACTIONS(1360), 3, + aux_sym_access_tuning_token1, + aux_sym_access_tuning_token2, + aux_sym_access_tuning_token3, + ACTIONS(1358), 4, + aux_sym_scope_tuning_token1, + aux_sym_scope_tuning_token2, + aux_sym_scope_tuning_token3, + aux_sym_scope_tuning_token4, + [88903] = 19, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, @@ -120704,33 +121671,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, ACTIONS(1201), 1, aux_sym_query_tuning_token5, - ACTIONS(2105), 1, - anon_sym_COMMA, ACTIONS(2109), 1, - aux_sym_on_error_phrase_token1, + anon_sym_COMMA, ACTIONS(2113), 1, + aux_sym_on_error_phrase_token1, + ACTIONS(2117), 1, aux_sym_sort_clause_token1, - ACTIONS(2115), 1, + ACTIONS(2119), 1, aux_sym_sort_clause_token2, - ACTIONS(2578), 1, + ACTIONS(2451), 1, anon_sym_COLON, - STATE(1935), 1, + STATE(1948), 1, aux_sym_for_phrase_repeat1, - STATE(1953), 1, + STATE(2019), 1, sym_query_tuning, - STATE(2108), 1, + STATE(2130), 1, aux_sym_for_phrase_repeat2, - STATE(2586), 1, + STATE(2743), 1, sym_on_error_phrase, - STATE(2781), 1, + STATE(2877), 1, sym_on_quit_phrase, - STATE(2783), 1, + STATE(2934), 1, sym_sort_clause, - STATE(3372), 1, + STATE(3488), 1, sym_on_stop_phrase, - STATE(3377), 1, + STATE(3489), 1, aux_sym_for_statement_repeat1, - STATE(1748), 2, + STATE(1760), 2, sym_comment, sym_include, ACTIONS(1195), 5, @@ -120739,7 +121706,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_query_tuning_token2, aux_sym_query_tuning_token3, aux_sym_query_tuning_token4, - [88660] = 19, + [88966] = 19, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, @@ -120748,33 +121715,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, ACTIONS(1201), 1, aux_sym_query_tuning_token5, - ACTIONS(2105), 1, - anon_sym_COMMA, ACTIONS(2109), 1, - aux_sym_on_error_phrase_token1, + anon_sym_COMMA, ACTIONS(2113), 1, + aux_sym_on_error_phrase_token1, + ACTIONS(2117), 1, aux_sym_sort_clause_token1, - ACTIONS(2115), 1, + ACTIONS(2119), 1, aux_sym_sort_clause_token2, - ACTIONS(2445), 1, + ACTIONS(2588), 1, anon_sym_COLON, - STATE(1744), 1, + STATE(1779), 1, aux_sym_for_phrase_repeat1, - STATE(1953), 1, + STATE(2019), 1, sym_query_tuning, - STATE(2112), 1, + STATE(2071), 1, aux_sym_for_phrase_repeat2, - STATE(2592), 1, + STATE(2684), 1, sym_on_error_phrase, - STATE(2765), 1, - sym_on_quit_phrase, - STATE(2783), 1, + STATE(2934), 1, sym_sort_clause, - STATE(3286), 1, + STATE(2945), 1, + sym_on_quit_phrase, + STATE(3398), 1, aux_sym_for_statement_repeat1, - STATE(3287), 1, + STATE(3399), 1, sym_on_stop_phrase, - STATE(1749), 2, + STATE(1761), 2, sym_comment, sym_include, ACTIONS(1195), 5, @@ -120783,7 +121750,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_query_tuning_token2, aux_sym_query_tuning_token3, aux_sym_query_tuning_token4, - [88723] = 19, + [89029] = 19, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, @@ -120792,33 +121759,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, ACTIONS(1201), 1, aux_sym_query_tuning_token5, - ACTIONS(2105), 1, - anon_sym_COMMA, ACTIONS(2109), 1, - aux_sym_on_error_phrase_token1, + anon_sym_COMMA, ACTIONS(2113), 1, + aux_sym_on_error_phrase_token1, + ACTIONS(2117), 1, aux_sym_sort_clause_token1, - ACTIONS(2115), 1, + ACTIONS(2119), 1, aux_sym_sort_clause_token2, - ACTIONS(2445), 1, + ACTIONS(2588), 1, anon_sym_COLON, - STATE(1935), 1, + STATE(1948), 1, aux_sym_for_phrase_repeat1, - STATE(1953), 1, + STATE(2019), 1, sym_query_tuning, - STATE(2112), 1, + STATE(2071), 1, aux_sym_for_phrase_repeat2, - STATE(2592), 1, + STATE(2684), 1, sym_on_error_phrase, - STATE(2765), 1, - sym_on_quit_phrase, - STATE(2783), 1, + STATE(2934), 1, sym_sort_clause, - STATE(3286), 1, + STATE(2945), 1, + sym_on_quit_phrase, + STATE(3398), 1, aux_sym_for_statement_repeat1, - STATE(3287), 1, + STATE(3399), 1, sym_on_stop_phrase, - STATE(1750), 2, + STATE(1762), 2, sym_comment, sym_include, ACTIONS(1195), 5, @@ -120827,7 +121794,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_query_tuning_token2, aux_sym_query_tuning_token3, aux_sym_query_tuning_token4, - [88786] = 19, + [89092] = 19, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, @@ -120836,33 +121803,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, ACTIONS(1201), 1, aux_sym_query_tuning_token5, - ACTIONS(2105), 1, - anon_sym_COMMA, ACTIONS(2109), 1, - aux_sym_on_error_phrase_token1, + anon_sym_COMMA, ACTIONS(2113), 1, + aux_sym_on_error_phrase_token1, + ACTIONS(2117), 1, aux_sym_sort_clause_token1, - ACTIONS(2115), 1, + ACTIONS(2119), 1, aux_sym_sort_clause_token2, - ACTIONS(2463), 1, + ACTIONS(2584), 1, anon_sym_COLON, - STATE(1935), 1, + STATE(1948), 1, aux_sym_for_phrase_repeat1, - STATE(1953), 1, + STATE(2019), 1, sym_query_tuning, - STATE(2121), 1, + STATE(2124), 1, aux_sym_for_phrase_repeat2, - STATE(2676), 1, + STATE(2740), 1, sym_on_error_phrase, - STATE(2762), 1, + STATE(2891), 1, sym_on_quit_phrase, - STATE(2783), 1, + STATE(2934), 1, sym_sort_clause, - STATE(3284), 1, + STATE(3493), 1, sym_on_stop_phrase, - STATE(3285), 1, + STATE(3494), 1, aux_sym_for_statement_repeat1, - STATE(1751), 2, + STATE(1763), 2, sym_comment, sym_include, ACTIONS(1195), 5, @@ -120871,7 +121838,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_query_tuning_token2, aux_sym_query_tuning_token3, aux_sym_query_tuning_token4, - [88849] = 19, + [89155] = 19, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, @@ -120880,33 +121847,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, ACTIONS(1201), 1, aux_sym_query_tuning_token5, - ACTIONS(2105), 1, - anon_sym_COMMA, ACTIONS(2109), 1, - aux_sym_on_error_phrase_token1, + anon_sym_COMMA, ACTIONS(2113), 1, + aux_sym_on_error_phrase_token1, + ACTIONS(2117), 1, aux_sym_sort_clause_token1, - ACTIONS(2115), 1, + ACTIONS(2119), 1, aux_sym_sort_clause_token2, - ACTIONS(2584), 1, + ACTIONS(2461), 1, anon_sym_COLON, - STATE(1935), 1, + STATE(1948), 1, aux_sym_for_phrase_repeat1, - STATE(1953), 1, + STATE(2019), 1, sym_query_tuning, - STATE(2028), 1, + STATE(2105), 1, aux_sym_for_phrase_repeat2, - STATE(2662), 1, + STATE(2713), 1, sym_on_error_phrase, - STATE(2739), 1, + STATE(2920), 1, sym_on_quit_phrase, - STATE(2783), 1, + STATE(2934), 1, sym_sort_clause, - STATE(3129), 1, + STATE(3505), 1, sym_on_stop_phrase, - STATE(3130), 1, + STATE(3506), 1, aux_sym_for_statement_repeat1, - STATE(1752), 2, + STATE(1764), 2, sym_comment, sym_include, ACTIONS(1195), 5, @@ -120915,51 +121882,37 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_query_tuning_token2, aux_sym_query_tuning_token3, aux_sym_query_tuning_token4, - [88912] = 19, + [89218] = 5, 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(2105), 1, - anon_sym_COMMA, - ACTIONS(2109), 1, - aux_sym_on_error_phrase_token1, - ACTIONS(2113), 1, - aux_sym_sort_clause_token1, - ACTIONS(2115), 1, - aux_sym_sort_clause_token2, - ACTIONS(2584), 1, - anon_sym_COLON, - STATE(1781), 1, - aux_sym_for_phrase_repeat1, - STATE(1953), 1, - sym_query_tuning, - STATE(2028), 1, - aux_sym_for_phrase_repeat2, - STATE(2662), 1, - sym_on_error_phrase, - STATE(2739), 1, - sym_on_quit_phrase, - STATE(2783), 1, - sym_sort_clause, - STATE(3129), 1, - sym_on_stop_phrase, - STATE(3130), 1, - aux_sym_for_statement_repeat1, - STATE(1753), 2, + STATE(1765), 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, - [88975] = 19, + ACTIONS(135), 19, + 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_repeat_tuning_token1, + 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, + [89253] = 19, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, @@ -120968,33 +121921,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, ACTIONS(1201), 1, aux_sym_query_tuning_token5, - ACTIONS(2105), 1, - anon_sym_COMMA, ACTIONS(2109), 1, - aux_sym_on_error_phrase_token1, + anon_sym_COMMA, ACTIONS(2113), 1, + aux_sym_on_error_phrase_token1, + ACTIONS(2117), 1, aux_sym_sort_clause_token1, - ACTIONS(2115), 1, + ACTIONS(2119), 1, aux_sym_sort_clause_token2, - ACTIONS(2586), 1, + ACTIONS(2423), 1, anon_sym_COLON, - STATE(1935), 1, + STATE(1948), 1, aux_sym_for_phrase_repeat1, - STATE(1953), 1, + STATE(2019), 1, sym_query_tuning, - STATE(2106), 1, + STATE(2116), 1, aux_sym_for_phrase_repeat2, - STATE(2604), 1, + STATE(2728), 1, sym_on_error_phrase, - STATE(2763), 1, + STATE(2909), 1, sym_on_quit_phrase, - STATE(2783), 1, + STATE(2934), 1, sym_sort_clause, - STATE(3385), 1, - sym_on_stop_phrase, - STATE(3387), 1, + STATE(3498), 1, aux_sym_for_statement_repeat1, - STATE(1754), 2, + STATE(3501), 1, + sym_on_stop_phrase, + STATE(1766), 2, sym_comment, sym_include, ACTIONS(1195), 5, @@ -121003,7 +121956,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_query_tuning_token2, aux_sym_query_tuning_token3, aux_sym_query_tuning_token4, - [89038] = 19, + [89316] = 19, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, @@ -121012,33 +121965,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, ACTIONS(1201), 1, aux_sym_query_tuning_token5, - ACTIONS(2105), 1, - anon_sym_COMMA, ACTIONS(2109), 1, - aux_sym_on_error_phrase_token1, + anon_sym_COMMA, ACTIONS(2113), 1, + aux_sym_on_error_phrase_token1, + ACTIONS(2117), 1, aux_sym_sort_clause_token1, - ACTIONS(2115), 1, + ACTIONS(2119), 1, aux_sym_sort_clause_token2, - ACTIONS(2451), 1, + ACTIONS(2590), 1, anon_sym_COLON, - STATE(1935), 1, + STATE(1948), 1, aux_sym_for_phrase_repeat1, - STATE(1953), 1, + STATE(2019), 1, sym_query_tuning, - STATE(2082), 1, + STATE(2047), 1, aux_sym_for_phrase_repeat2, - STATE(2634), 1, + STATE(2687), 1, sym_on_error_phrase, - STATE(2783), 1, + STATE(2934), 1, sym_sort_clause, - STATE(2817), 1, + STATE(2956), 1, sym_on_quit_phrase, - STATE(3226), 1, + STATE(3382), 1, aux_sym_for_statement_repeat1, - STATE(3227), 1, + STATE(3385), 1, sym_on_stop_phrase, - STATE(1755), 2, + STATE(1767), 2, sym_comment, sym_include, ACTIONS(1195), 5, @@ -121047,7 +122000,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_query_tuning_token2, aux_sym_query_tuning_token3, aux_sym_query_tuning_token4, - [89101] = 19, + [89379] = 19, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, @@ -121056,33 +122009,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, ACTIONS(1201), 1, aux_sym_query_tuning_token5, - ACTIONS(2105), 1, - anon_sym_COMMA, ACTIONS(2109), 1, - aux_sym_on_error_phrase_token1, + anon_sym_COMMA, ACTIONS(2113), 1, + aux_sym_on_error_phrase_token1, + ACTIONS(2117), 1, aux_sym_sort_clause_token1, - ACTIONS(2115), 1, + ACTIONS(2119), 1, aux_sym_sort_clause_token2, - ACTIONS(2425), 1, + ACTIONS(2441), 1, anon_sym_COLON, - STATE(1770), 1, + STATE(1782), 1, aux_sym_for_phrase_repeat1, - STATE(1953), 1, + STATE(2019), 1, sym_query_tuning, - STATE(2079), 1, + STATE(2052), 1, aux_sym_for_phrase_repeat2, - STATE(2655), 1, + STATE(2727), 1, sym_on_error_phrase, - STATE(2783), 1, - sym_sort_clause, - STATE(2812), 1, + STATE(2917), 1, sym_on_quit_phrase, - STATE(3229), 1, + STATE(2934), 1, + sym_sort_clause, + STATE(3343), 1, aux_sym_for_statement_repeat1, - STATE(3232), 1, + STATE(3344), 1, sym_on_stop_phrase, - STATE(1756), 2, + STATE(1768), 2, sym_comment, sym_include, ACTIONS(1195), 5, @@ -121091,7 +122044,37 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_query_tuning_token2, aux_sym_query_tuning_token3, aux_sym_query_tuning_token4, - [89164] = 19, + [89442] = 5, + ACTIONS(59), 1, + anon_sym_SLASH_SLASH, + ACTIONS(61), 1, + anon_sym_SLASH_STAR, + ACTIONS(65), 1, + anon_sym_LBRACE, + STATE(1769), 2, + sym_comment, + sym_include, + ACTIONS(143), 19, + 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_repeat_tuning_token1, + 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, + [89477] = 19, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, @@ -121100,33 +122083,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, ACTIONS(1201), 1, aux_sym_query_tuning_token5, - ACTIONS(2105), 1, - anon_sym_COMMA, ACTIONS(2109), 1, - aux_sym_on_error_phrase_token1, + anon_sym_COMMA, ACTIONS(2113), 1, + aux_sym_on_error_phrase_token1, + ACTIONS(2117), 1, aux_sym_sort_clause_token1, - ACTIONS(2115), 1, + ACTIONS(2119), 1, aux_sym_sort_clause_token2, - ACTIONS(2451), 1, + ACTIONS(2443), 1, anon_sym_COLON, - STATE(1766), 1, + STATE(1948), 1, aux_sym_for_phrase_repeat1, - STATE(1953), 1, + STATE(2019), 1, sym_query_tuning, - STATE(2082), 1, + STATE(2101), 1, aux_sym_for_phrase_repeat2, - STATE(2634), 1, + STATE(2666), 1, sym_on_error_phrase, - STATE(2783), 1, - sym_sort_clause, - STATE(2817), 1, + STATE(2807), 1, sym_on_quit_phrase, - STATE(3226), 1, + STATE(2934), 1, + sym_sort_clause, + STATE(3423), 1, aux_sym_for_statement_repeat1, - STATE(3227), 1, + STATE(3426), 1, sym_on_stop_phrase, - STATE(1757), 2, + STATE(1770), 2, sym_comment, sym_include, ACTIONS(1195), 5, @@ -121135,7 +122118,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_query_tuning_token2, aux_sym_query_tuning_token3, aux_sym_query_tuning_token4, - [89227] = 19, + [89540] = 19, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, @@ -121144,33 +122127,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, ACTIONS(1201), 1, aux_sym_query_tuning_token5, - ACTIONS(2105), 1, - anon_sym_COMMA, ACTIONS(2109), 1, - aux_sym_on_error_phrase_token1, + anon_sym_COMMA, ACTIONS(2113), 1, + aux_sym_on_error_phrase_token1, + ACTIONS(2117), 1, aux_sym_sort_clause_token1, - ACTIONS(2115), 1, + ACTIONS(2119), 1, aux_sym_sort_clause_token2, - ACTIONS(2443), 1, + ACTIONS(2592), 1, anon_sym_COLON, - STATE(1935), 1, + STATE(1756), 1, aux_sym_for_phrase_repeat1, - STATE(1953), 1, + STATE(2019), 1, sym_query_tuning, - STATE(2042), 1, + STATE(2119), 1, aux_sym_for_phrase_repeat2, - STATE(2635), 1, + STATE(2659), 1, sym_on_error_phrase, - STATE(2760), 1, + STATE(2899), 1, sym_on_quit_phrase, - STATE(2783), 1, + STATE(2934), 1, sym_sort_clause, - STATE(3483), 1, - aux_sym_for_statement_repeat1, - STATE(3492), 1, + STATE(3243), 1, sym_on_stop_phrase, - STATE(1758), 2, + STATE(3244), 1, + aux_sym_for_statement_repeat1, + STATE(1771), 2, sym_comment, sym_include, ACTIONS(1195), 5, @@ -121179,7 +122162,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_query_tuning_token2, aux_sym_query_tuning_token3, aux_sym_query_tuning_token4, - [89290] = 19, + [89603] = 19, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, @@ -121188,33 +122171,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, ACTIONS(1201), 1, aux_sym_query_tuning_token5, - ACTIONS(2105), 1, - anon_sym_COMMA, ACTIONS(2109), 1, - aux_sym_on_error_phrase_token1, + anon_sym_COMMA, ACTIONS(2113), 1, + aux_sym_on_error_phrase_token1, + ACTIONS(2117), 1, aux_sym_sort_clause_token1, - ACTIONS(2115), 1, + ACTIONS(2119), 1, aux_sym_sort_clause_token2, - ACTIONS(2588), 1, + ACTIONS(2439), 1, anon_sym_COLON, - STATE(1935), 1, + STATE(1948), 1, aux_sym_for_phrase_repeat1, - STATE(1953), 1, + STATE(2019), 1, sym_query_tuning, - STATE(2053), 1, + STATE(2132), 1, aux_sym_for_phrase_repeat2, - STATE(2713), 1, + STATE(2746), 1, sym_on_error_phrase, - STATE(2783), 1, - sym_sort_clause, - STATE(2866), 1, + STATE(2869), 1, sym_on_quit_phrase, - STATE(3305), 1, + STATE(2934), 1, + sym_sort_clause, + STATE(3273), 1, aux_sym_for_statement_repeat1, - STATE(3306), 1, + STATE(3274), 1, sym_on_stop_phrase, - STATE(1759), 2, + STATE(1772), 2, sym_comment, sym_include, ACTIONS(1195), 5, @@ -121223,7 +122206,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_query_tuning_token2, aux_sym_query_tuning_token3, aux_sym_query_tuning_token4, - [89353] = 19, + [89666] = 19, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, @@ -121232,33 +122215,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, ACTIONS(1201), 1, aux_sym_query_tuning_token5, - ACTIONS(2105), 1, - anon_sym_COMMA, ACTIONS(2109), 1, - aux_sym_on_error_phrase_token1, + anon_sym_COMMA, ACTIONS(2113), 1, + aux_sym_on_error_phrase_token1, + ACTIONS(2117), 1, aux_sym_sort_clause_token1, - ACTIONS(2115), 1, + ACTIONS(2119), 1, aux_sym_sort_clause_token2, - ACTIONS(2568), 1, + ACTIONS(2594), 1, anon_sym_COLON, - STATE(1935), 1, + STATE(1948), 1, aux_sym_for_phrase_repeat1, - STATE(1953), 1, + STATE(2019), 1, sym_query_tuning, - STATE(2117), 1, + STATE(2143), 1, aux_sym_for_phrase_repeat2, - STATE(2624), 1, + STATE(2770), 1, sym_on_error_phrase, - STATE(2764), 1, + STATE(2821), 1, sym_on_quit_phrase, - STATE(2783), 1, + STATE(2934), 1, sym_sort_clause, - STATE(3288), 1, + STATE(3477), 1, sym_on_stop_phrase, - STATE(3289), 1, + STATE(3478), 1, aux_sym_for_statement_repeat1, - STATE(1760), 2, + STATE(1773), 2, sym_comment, sym_include, ACTIONS(1195), 5, @@ -121267,7 +122250,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_query_tuning_token2, aux_sym_query_tuning_token3, aux_sym_query_tuning_token4, - [89416] = 19, + [89729] = 19, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, @@ -121276,33 +122259,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, ACTIONS(1201), 1, aux_sym_query_tuning_token5, - ACTIONS(2105), 1, - anon_sym_COMMA, ACTIONS(2109), 1, - aux_sym_on_error_phrase_token1, + anon_sym_COMMA, ACTIONS(2113), 1, + aux_sym_on_error_phrase_token1, + ACTIONS(2117), 1, aux_sym_sort_clause_token1, - ACTIONS(2115), 1, + ACTIONS(2119), 1, aux_sym_sort_clause_token2, - ACTIONS(2425), 1, + ACTIONS(2441), 1, anon_sym_COLON, - STATE(1935), 1, + STATE(1948), 1, aux_sym_for_phrase_repeat1, - STATE(1953), 1, + STATE(2019), 1, sym_query_tuning, - STATE(2079), 1, + STATE(2052), 1, aux_sym_for_phrase_repeat2, - STATE(2655), 1, + STATE(2727), 1, sym_on_error_phrase, - STATE(2783), 1, - sym_sort_clause, - STATE(2812), 1, + STATE(2917), 1, sym_on_quit_phrase, - STATE(3229), 1, + STATE(2934), 1, + sym_sort_clause, + STATE(3343), 1, aux_sym_for_statement_repeat1, - STATE(3232), 1, + STATE(3344), 1, sym_on_stop_phrase, - STATE(1761), 2, + STATE(1774), 2, sym_comment, sym_include, ACTIONS(1195), 5, @@ -121311,7 +122294,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_query_tuning_token2, aux_sym_query_tuning_token3, aux_sym_query_tuning_token4, - [89479] = 19, + [89792] = 19, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, @@ -121320,33 +122303,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, ACTIONS(1201), 1, aux_sym_query_tuning_token5, - ACTIONS(2105), 1, - anon_sym_COMMA, ACTIONS(2109), 1, - aux_sym_on_error_phrase_token1, + anon_sym_COMMA, ACTIONS(2113), 1, + aux_sym_on_error_phrase_token1, + ACTIONS(2117), 1, aux_sym_sort_clause_token1, - ACTIONS(2115), 1, + ACTIONS(2119), 1, aux_sym_sort_clause_token2, - ACTIONS(2590), 1, + ACTIONS(2435), 1, anon_sym_COLON, - STATE(1935), 1, + STATE(1817), 1, aux_sym_for_phrase_repeat1, - STATE(1953), 1, + STATE(2019), 1, sym_query_tuning, - STATE(2131), 1, + STATE(2078), 1, aux_sym_for_phrase_repeat2, - STATE(2632), 1, + STATE(2601), 1, sym_on_error_phrase, - STATE(2729), 1, + STATE(2798), 1, sym_on_quit_phrase, - STATE(2783), 1, + STATE(2934), 1, sym_sort_clause, - STATE(3273), 1, - sym_on_stop_phrase, - STATE(3274), 1, + STATE(3408), 1, aux_sym_for_statement_repeat1, - STATE(1762), 2, + STATE(3409), 1, + sym_on_stop_phrase, + STATE(1775), 2, sym_comment, sym_include, ACTIONS(1195), 5, @@ -121355,7 +122338,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_query_tuning_token2, aux_sym_query_tuning_token3, aux_sym_query_tuning_token4, - [89542] = 19, + [89855] = 19, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, @@ -121364,33 +122347,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, ACTIONS(1201), 1, aux_sym_query_tuning_token5, - ACTIONS(2105), 1, - anon_sym_COMMA, ACTIONS(2109), 1, - aux_sym_on_error_phrase_token1, + anon_sym_COMMA, ACTIONS(2113), 1, + aux_sym_on_error_phrase_token1, + ACTIONS(2117), 1, aux_sym_sort_clause_token1, - ACTIONS(2115), 1, + ACTIONS(2119), 1, aux_sym_sort_clause_token2, ACTIONS(2592), 1, anon_sym_COLON, - STATE(1759), 1, + STATE(1948), 1, aux_sym_for_phrase_repeat1, - STATE(1953), 1, + STATE(2019), 1, sym_query_tuning, - STATE(2032), 1, + STATE(2119), 1, aux_sym_for_phrase_repeat2, - STATE(2564), 1, + STATE(2659), 1, sym_on_error_phrase, - STATE(2733), 1, + STATE(2899), 1, sym_on_quit_phrase, - STATE(2783), 1, + STATE(2934), 1, sym_sort_clause, - STATE(3255), 1, - aux_sym_for_statement_repeat1, - STATE(3256), 1, + STATE(3243), 1, sym_on_stop_phrase, - STATE(1763), 2, + STATE(3244), 1, + aux_sym_for_statement_repeat1, + STATE(1776), 2, sym_comment, sym_include, ACTIONS(1195), 5, @@ -121399,7 +122382,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_query_tuning_token2, aux_sym_query_tuning_token3, aux_sym_query_tuning_token4, - [89605] = 19, + [89918] = 19, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, @@ -121408,33 +122391,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, ACTIONS(1201), 1, aux_sym_query_tuning_token5, - ACTIONS(2105), 1, - anon_sym_COMMA, ACTIONS(2109), 1, - aux_sym_on_error_phrase_token1, + anon_sym_COMMA, ACTIONS(2113), 1, + aux_sym_on_error_phrase_token1, + ACTIONS(2117), 1, aux_sym_sort_clause_token1, - ACTIONS(2115), 1, + ACTIONS(2119), 1, aux_sym_sort_clause_token2, - ACTIONS(2465), 1, + ACTIONS(2596), 1, anon_sym_COLON, - STATE(1748), 1, + STATE(1948), 1, aux_sym_for_phrase_repeat1, - STATE(1953), 1, + STATE(2019), 1, sym_query_tuning, - STATE(2094), 1, + STATE(2039), 1, aux_sym_for_phrase_repeat2, - STATE(2623), 1, + STATE(2667), 1, sym_on_error_phrase, - STATE(2759), 1, - sym_on_quit_phrase, - STATE(2783), 1, + STATE(2934), 1, sym_sort_clause, - STATE(3389), 1, + STATE(2967), 1, + sym_on_quit_phrase, + STATE(3246), 1, sym_on_stop_phrase, - STATE(3391), 1, + STATE(3247), 1, aux_sym_for_statement_repeat1, - STATE(1764), 2, + STATE(1777), 2, sym_comment, sym_include, ACTIONS(1195), 5, @@ -121443,7 +122426,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_query_tuning_token2, aux_sym_query_tuning_token3, aux_sym_query_tuning_token4, - [89668] = 19, + [89981] = 19, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, @@ -121452,33 +122435,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, ACTIONS(1201), 1, aux_sym_query_tuning_token5, - ACTIONS(2105), 1, - anon_sym_COMMA, ACTIONS(2109), 1, - aux_sym_on_error_phrase_token1, + anon_sym_COMMA, ACTIONS(2113), 1, + aux_sym_on_error_phrase_token1, + ACTIONS(2117), 1, aux_sym_sort_clause_token1, - ACTIONS(2115), 1, + ACTIONS(2119), 1, aux_sym_sort_clause_token2, - ACTIONS(2465), 1, + ACTIONS(2423), 1, anon_sym_COLON, - STATE(1935), 1, + STATE(1760), 1, aux_sym_for_phrase_repeat1, - STATE(1953), 1, + STATE(2019), 1, sym_query_tuning, - STATE(2094), 1, + STATE(2116), 1, aux_sym_for_phrase_repeat2, - STATE(2623), 1, + STATE(2728), 1, sym_on_error_phrase, - STATE(2759), 1, + STATE(2909), 1, sym_on_quit_phrase, - STATE(2783), 1, + STATE(2934), 1, sym_sort_clause, - STATE(3389), 1, - sym_on_stop_phrase, - STATE(3391), 1, + STATE(3498), 1, aux_sym_for_statement_repeat1, - STATE(1765), 2, + STATE(3501), 1, + sym_on_stop_phrase, + STATE(1778), 2, sym_comment, sym_include, ACTIONS(1195), 5, @@ -121487,7 +122470,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_query_tuning_token2, aux_sym_query_tuning_token3, aux_sym_query_tuning_token4, - [89731] = 19, + [90044] = 19, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, @@ -121496,33 +122479,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, ACTIONS(1201), 1, aux_sym_query_tuning_token5, - ACTIONS(2105), 1, - anon_sym_COMMA, ACTIONS(2109), 1, - aux_sym_on_error_phrase_token1, + anon_sym_COMMA, ACTIONS(2113), 1, + aux_sym_on_error_phrase_token1, + ACTIONS(2117), 1, aux_sym_sort_clause_token1, - ACTIONS(2115), 1, + ACTIONS(2119), 1, aux_sym_sort_clause_token2, - ACTIONS(2592), 1, + ACTIONS(2598), 1, anon_sym_COLON, - STATE(1935), 1, + STATE(1948), 1, aux_sym_for_phrase_repeat1, - STATE(1953), 1, + STATE(2019), 1, sym_query_tuning, - STATE(2032), 1, + STATE(2104), 1, aux_sym_for_phrase_repeat2, - STATE(2564), 1, + STATE(2670), 1, sym_on_error_phrase, - STATE(2733), 1, - sym_on_quit_phrase, - STATE(2783), 1, + STATE(2934), 1, sym_sort_clause, - STATE(3255), 1, + STATE(2980), 1, + sym_on_quit_phrase, + STATE(3424), 1, aux_sym_for_statement_repeat1, - STATE(3256), 1, + STATE(3428), 1, sym_on_stop_phrase, - STATE(1766), 2, + STATE(1779), 2, sym_comment, sym_include, ACTIONS(1195), 5, @@ -121531,48 +122514,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_query_tuning_token2, aux_sym_query_tuning_token3, aux_sym_query_tuning_token4, - [89794] = 16, - ACTIONS(59), 1, - anon_sym_SLASH_SLASH, - ACTIONS(61), 1, - anon_sym_SLASH_STAR, - ACTIONS(65), 1, - anon_sym_LBRACE, - ACTIONS(1358), 1, - aux_sym_variable_definition_token3, - ACTIONS(1360), 1, - aux_sym_variable_definition_token4, - ACTIONS(1362), 1, - aux_sym_buffer_definition_token1, - ACTIONS(1364), 1, - aux_sym_buffer_definition_token3, - ACTIONS(1366), 1, - aux_sym_query_definition_token1, - STATE(1852), 1, - aux_sym_variable_definition_repeat1, - STATE(1954), 1, - aux_sym_buffer_definition_repeat1, - STATE(1959), 1, - sym_serialization_tuning, - ACTIONS(1356), 2, - aux_sym_serialization_tuning_token1, - aux_sym_serialization_tuning_token2, - STATE(1767), 2, - sym_comment, - sym_include, - STATE(1933), 2, - sym_scope_tuning, - sym_access_tuning, - ACTIONS(1354), 3, - aux_sym_access_tuning_token1, - aux_sym_access_tuning_token2, - aux_sym_access_tuning_token3, - ACTIONS(1352), 4, - aux_sym_scope_tuning_token1, - aux_sym_scope_tuning_token2, - aux_sym_scope_tuning_token3, - aux_sym_scope_tuning_token4, - [89851] = 19, + [90107] = 19, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, @@ -121581,33 +122523,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, ACTIONS(1201), 1, aux_sym_query_tuning_token5, - ACTIONS(2105), 1, - anon_sym_COMMA, ACTIONS(2109), 1, - aux_sym_on_error_phrase_token1, + anon_sym_COMMA, ACTIONS(2113), 1, + aux_sym_on_error_phrase_token1, + ACTIONS(2117), 1, aux_sym_sort_clause_token1, - ACTIONS(2115), 1, + ACTIONS(2119), 1, aux_sym_sort_clause_token2, - ACTIONS(2415), 1, + ACTIONS(2461), 1, anon_sym_COLON, - STATE(1935), 1, + STATE(1763), 1, aux_sym_for_phrase_repeat1, - STATE(1953), 1, + STATE(2019), 1, sym_query_tuning, - STATE(2100), 1, + STATE(2105), 1, aux_sym_for_phrase_repeat2, - STATE(2689), 1, + STATE(2713), 1, sym_on_error_phrase, - STATE(2783), 1, - sym_sort_clause, - STATE(2913), 1, + STATE(2920), 1, sym_on_quit_phrase, - STATE(3293), 1, - aux_sym_for_statement_repeat1, - STATE(3294), 1, + STATE(2934), 1, + sym_sort_clause, + STATE(3505), 1, sym_on_stop_phrase, - STATE(1768), 2, + STATE(3506), 1, + aux_sym_for_statement_repeat1, + STATE(1780), 2, sym_comment, sym_include, ACTIONS(1195), 5, @@ -121616,7 +122558,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_query_tuning_token2, aux_sym_query_tuning_token3, aux_sym_query_tuning_token4, - [89914] = 19, + [90170] = 19, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, @@ -121625,33 +122567,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, ACTIONS(1201), 1, aux_sym_query_tuning_token5, - ACTIONS(2105), 1, - anon_sym_COMMA, ACTIONS(2109), 1, - aux_sym_on_error_phrase_token1, + anon_sym_COMMA, ACTIONS(2113), 1, + aux_sym_on_error_phrase_token1, + ACTIONS(2117), 1, aux_sym_sort_clause_token1, - ACTIONS(2115), 1, + ACTIONS(2119), 1, aux_sym_sort_clause_token2, - ACTIONS(2415), 1, + ACTIONS(2437), 1, anon_sym_COLON, - STATE(1751), 1, + STATE(1948), 1, aux_sym_for_phrase_repeat1, - STATE(1953), 1, + STATE(2019), 1, sym_query_tuning, - STATE(2100), 1, + STATE(2087), 1, aux_sym_for_phrase_repeat2, STATE(2689), 1, sym_on_error_phrase, - STATE(2783), 1, + STATE(2934), 1, sym_sort_clause, - STATE(2913), 1, + STATE(2951), 1, sym_on_quit_phrase, - STATE(3293), 1, + STATE(3518), 1, aux_sym_for_statement_repeat1, - STATE(3294), 1, + STATE(3519), 1, sym_on_stop_phrase, - STATE(1769), 2, + STATE(1781), 2, sym_comment, sym_include, ACTIONS(1195), 5, @@ -121660,7 +122602,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_query_tuning_token2, aux_sym_query_tuning_token3, aux_sym_query_tuning_token4, - [89977] = 19, + [90233] = 19, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, @@ -121669,33 +122611,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, ACTIONS(1201), 1, aux_sym_query_tuning_token5, - ACTIONS(2105), 1, - anon_sym_COMMA, ACTIONS(2109), 1, - aux_sym_on_error_phrase_token1, + anon_sym_COMMA, ACTIONS(2113), 1, + aux_sym_on_error_phrase_token1, + ACTIONS(2117), 1, aux_sym_sort_clause_token1, - ACTIONS(2115), 1, + ACTIONS(2119), 1, aux_sym_sort_clause_token2, - ACTIONS(2447), 1, + ACTIONS(2463), 1, anon_sym_COLON, - STATE(1935), 1, + STATE(1948), 1, aux_sym_for_phrase_repeat1, - STATE(1953), 1, + STATE(2019), 1, sym_query_tuning, - STATE(2057), 1, + STATE(2059), 1, aux_sym_for_phrase_repeat2, - STATE(2621), 1, + STATE(2772), 1, sym_on_error_phrase, - STATE(2783), 1, - sym_sort_clause, - STATE(2858), 1, + STATE(2833), 1, sym_on_quit_phrase, - STATE(3215), 1, + STATE(2934), 1, + sym_sort_clause, + STATE(3334), 1, sym_on_stop_phrase, - STATE(3216), 1, + STATE(3335), 1, aux_sym_for_statement_repeat1, - STATE(1770), 2, + STATE(1782), 2, sym_comment, sym_include, ACTIONS(1195), 5, @@ -121704,7 +122646,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_query_tuning_token2, aux_sym_query_tuning_token3, aux_sym_query_tuning_token4, - [90040] = 19, + [90296] = 19, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, @@ -121713,33 +122655,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, ACTIONS(1201), 1, aux_sym_query_tuning_token5, - ACTIONS(2105), 1, - anon_sym_COMMA, ACTIONS(2109), 1, - aux_sym_on_error_phrase_token1, + anon_sym_COMMA, ACTIONS(2113), 1, - aux_sym_sort_clause_token1, - ACTIONS(2115), 1, + aux_sym_on_error_phrase_token1, + ACTIONS(2117), 1, + aux_sym_sort_clause_token1, + ACTIONS(2119), 1, aux_sym_sort_clause_token2, - ACTIONS(2457), 1, + ACTIONS(2463), 1, anon_sym_COLON, - STATE(1777), 1, + STATE(1797), 1, aux_sym_for_phrase_repeat1, - STATE(1953), 1, + STATE(2019), 1, sym_query_tuning, - STATE(2027), 1, + STATE(2059), 1, aux_sym_for_phrase_repeat2, - STATE(2697), 1, + STATE(2772), 1, sym_on_error_phrase, - STATE(2783), 1, - sym_sort_clause, - STATE(2910), 1, + STATE(2833), 1, sym_on_quit_phrase, - STATE(3207), 1, + STATE(2934), 1, + sym_sort_clause, + STATE(3334), 1, sym_on_stop_phrase, - STATE(3208), 1, + STATE(3335), 1, aux_sym_for_statement_repeat1, - STATE(1771), 2, + STATE(1783), 2, sym_comment, sym_include, ACTIONS(1195), 5, @@ -121748,7 +122690,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_query_tuning_token2, aux_sym_query_tuning_token3, aux_sym_query_tuning_token4, - [90103] = 19, + [90359] = 19, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, @@ -121757,33 +122699,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, ACTIONS(1201), 1, aux_sym_query_tuning_token5, - ACTIONS(2105), 1, - anon_sym_COMMA, ACTIONS(2109), 1, - aux_sym_on_error_phrase_token1, + anon_sym_COMMA, ACTIONS(2113), 1, + aux_sym_on_error_phrase_token1, + ACTIONS(2117), 1, aux_sym_sort_clause_token1, - ACTIONS(2115), 1, + ACTIONS(2119), 1, aux_sym_sort_clause_token2, - ACTIONS(2457), 1, + ACTIONS(2417), 1, anon_sym_COLON, - STATE(1935), 1, + STATE(1812), 1, aux_sym_for_phrase_repeat1, - STATE(1953), 1, + STATE(2019), 1, sym_query_tuning, - STATE(2027), 1, + STATE(2125), 1, aux_sym_for_phrase_repeat2, - STATE(2697), 1, + STATE(2738), 1, sym_on_error_phrase, - STATE(2783), 1, - sym_sort_clause, - STATE(2910), 1, + STATE(2876), 1, sym_on_quit_phrase, - STATE(3207), 1, + STATE(2934), 1, + sym_sort_clause, + STATE(3284), 1, sym_on_stop_phrase, - STATE(3208), 1, + STATE(3285), 1, aux_sym_for_statement_repeat1, - STATE(1772), 2, + STATE(1784), 2, sym_comment, sym_include, ACTIONS(1195), 5, @@ -121792,7 +122734,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_query_tuning_token2, aux_sym_query_tuning_token3, aux_sym_query_tuning_token4, - [90166] = 19, + [90422] = 19, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, @@ -121801,33 +122743,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, ACTIONS(1201), 1, aux_sym_query_tuning_token5, - ACTIONS(2105), 1, - anon_sym_COMMA, ACTIONS(2109), 1, - aux_sym_on_error_phrase_token1, + anon_sym_COMMA, ACTIONS(2113), 1, + aux_sym_on_error_phrase_token1, + ACTIONS(2117), 1, aux_sym_sort_clause_token1, - ACTIONS(2115), 1, + ACTIONS(2119), 1, aux_sym_sort_clause_token2, - ACTIONS(2594), 1, + ACTIONS(2443), 1, anon_sym_COLON, - STATE(1935), 1, + STATE(1757), 1, aux_sym_for_phrase_repeat1, - STATE(1953), 1, + STATE(2019), 1, sym_query_tuning, - STATE(2095), 1, + STATE(2101), 1, aux_sym_for_phrase_repeat2, - STATE(2614), 1, + STATE(2666), 1, sym_on_error_phrase, - STATE(2769), 1, + STATE(2807), 1, sym_on_quit_phrase, - STATE(2783), 1, + STATE(2934), 1, sym_sort_clause, - STATE(3137), 1, - sym_on_stop_phrase, - STATE(3138), 1, + STATE(3423), 1, aux_sym_for_statement_repeat1, - STATE(1773), 2, + STATE(3426), 1, + sym_on_stop_phrase, + STATE(1785), 2, sym_comment, sym_include, ACTIONS(1195), 5, @@ -121836,7 +122778,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_query_tuning_token2, aux_sym_query_tuning_token3, aux_sym_query_tuning_token4, - [90229] = 19, + [90485] = 19, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, @@ -121845,33 +122787,77 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, ACTIONS(1201), 1, aux_sym_query_tuning_token5, - ACTIONS(2105), 1, - anon_sym_COMMA, ACTIONS(2109), 1, + anon_sym_COMMA, + ACTIONS(2113), 1, aux_sym_on_error_phrase_token1, + ACTIONS(2117), 1, + aux_sym_sort_clause_token1, + ACTIONS(2119), 1, + aux_sym_sort_clause_token2, + ACTIONS(2435), 1, + anon_sym_COLON, + STATE(1948), 1, + aux_sym_for_phrase_repeat1, + STATE(2019), 1, + sym_query_tuning, + STATE(2078), 1, + aux_sym_for_phrase_repeat2, + STATE(2601), 1, + sym_on_error_phrase, + STATE(2798), 1, + sym_on_quit_phrase, + STATE(2934), 1, + sym_sort_clause, + STATE(3408), 1, + aux_sym_for_statement_repeat1, + STATE(3409), 1, + sym_on_stop_phrase, + STATE(1786), 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, + [90548] = 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, + ACTIONS(2109), 1, + anon_sym_COMMA, ACTIONS(2113), 1, + aux_sym_on_error_phrase_token1, + ACTIONS(2117), 1, aux_sym_sort_clause_token1, - ACTIONS(2115), 1, + ACTIONS(2119), 1, aux_sym_sort_clause_token2, - ACTIONS(2570), 1, + ACTIONS(2417), 1, anon_sym_COLON, - STATE(1754), 1, + STATE(1948), 1, aux_sym_for_phrase_repeat1, - STATE(1953), 1, + STATE(2019), 1, sym_query_tuning, - STATE(2081), 1, + STATE(2125), 1, aux_sym_for_phrase_repeat2, - STATE(2547), 1, + STATE(2738), 1, sym_on_error_phrase, - STATE(2755), 1, + STATE(2876), 1, sym_on_quit_phrase, - STATE(2783), 1, + STATE(2934), 1, sym_sort_clause, - STATE(3403), 1, + STATE(3284), 1, sym_on_stop_phrase, - STATE(3410), 1, + STATE(3285), 1, aux_sym_for_statement_repeat1, - STATE(1774), 2, + STATE(1787), 2, sym_comment, sym_include, ACTIONS(1195), 5, @@ -121880,7 +122866,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_query_tuning_token2, aux_sym_query_tuning_token3, aux_sym_query_tuning_token4, - [90292] = 19, + [90611] = 19, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, @@ -121889,33 +122875,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, ACTIONS(1201), 1, aux_sym_query_tuning_token5, - ACTIONS(2105), 1, - anon_sym_COMMA, ACTIONS(2109), 1, - aux_sym_on_error_phrase_token1, + anon_sym_COMMA, ACTIONS(2113), 1, + aux_sym_on_error_phrase_token1, + ACTIONS(2117), 1, aux_sym_sort_clause_token1, - ACTIONS(2115), 1, + ACTIONS(2119), 1, aux_sym_sort_clause_token2, - ACTIONS(2596), 1, + ACTIONS(2437), 1, anon_sym_COLON, - STATE(1783), 1, + STATE(1764), 1, aux_sym_for_phrase_repeat1, - STATE(1953), 1, + STATE(2019), 1, sym_query_tuning, - STATE(2062), 1, + STATE(2087), 1, aux_sym_for_phrase_repeat2, - STATE(2673), 1, + STATE(2689), 1, sym_on_error_phrase, - STATE(2783), 1, + STATE(2934), 1, sym_sort_clause, - STATE(2886), 1, + STATE(2951), 1, sym_on_quit_phrase, - STATE(3200), 1, - sym_on_stop_phrase, - STATE(3201), 1, + STATE(3518), 1, aux_sym_for_statement_repeat1, - STATE(1775), 2, + STATE(3519), 1, + sym_on_stop_phrase, + STATE(1788), 2, sym_comment, sym_include, ACTIONS(1195), 5, @@ -121924,7 +122910,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_query_tuning_token2, aux_sym_query_tuning_token3, aux_sym_query_tuning_token4, - [90355] = 19, + [90674] = 19, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, @@ -121933,33 +122919,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, ACTIONS(1201), 1, aux_sym_query_tuning_token5, - ACTIONS(2105), 1, - anon_sym_COMMA, ACTIONS(2109), 1, - aux_sym_on_error_phrase_token1, + anon_sym_COMMA, ACTIONS(2113), 1, + aux_sym_on_error_phrase_token1, + ACTIONS(2117), 1, aux_sym_sort_clause_token1, - ACTIONS(2115), 1, + ACTIONS(2119), 1, aux_sym_sort_clause_token2, - ACTIONS(2594), 1, + ACTIONS(2465), 1, anon_sym_COLON, - STATE(1747), 1, + STATE(1762), 1, aux_sym_for_phrase_repeat1, - STATE(1953), 1, + STATE(2019), 1, sym_query_tuning, - STATE(2095), 1, + STATE(2034), 1, aux_sym_for_phrase_repeat2, - STATE(2614), 1, + STATE(2609), 1, sym_on_error_phrase, - STATE(2769), 1, + STATE(2811), 1, sym_on_quit_phrase, - STATE(2783), 1, + STATE(2934), 1, sym_sort_clause, - STATE(3137), 1, - sym_on_stop_phrase, - STATE(3138), 1, + STATE(3360), 1, aux_sym_for_statement_repeat1, - STATE(1776), 2, + STATE(3361), 1, + sym_on_stop_phrase, + STATE(1789), 2, sym_comment, sym_include, ACTIONS(1195), 5, @@ -121968,7 +122954,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_query_tuning_token2, aux_sym_query_tuning_token3, aux_sym_query_tuning_token4, - [90418] = 19, + [90737] = 19, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, @@ -121977,33 +122963,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, ACTIONS(1201), 1, aux_sym_query_tuning_token5, - ACTIONS(2105), 1, - anon_sym_COMMA, ACTIONS(2109), 1, - aux_sym_on_error_phrase_token1, + anon_sym_COMMA, ACTIONS(2113), 1, + aux_sym_on_error_phrase_token1, + ACTIONS(2117), 1, aux_sym_sort_clause_token1, - ACTIONS(2115), 1, + ACTIONS(2119), 1, aux_sym_sort_clause_token2, - ACTIONS(2596), 1, + ACTIONS(2465), 1, anon_sym_COLON, - STATE(1935), 1, + STATE(1948), 1, aux_sym_for_phrase_repeat1, - STATE(1953), 1, + STATE(2019), 1, sym_query_tuning, - STATE(2062), 1, + STATE(2034), 1, aux_sym_for_phrase_repeat2, - STATE(2673), 1, + STATE(2609), 1, sym_on_error_phrase, - STATE(2783), 1, - sym_sort_clause, - STATE(2886), 1, + STATE(2811), 1, sym_on_quit_phrase, - STATE(3200), 1, - sym_on_stop_phrase, - STATE(3201), 1, + STATE(2934), 1, + sym_sort_clause, + STATE(3360), 1, aux_sym_for_statement_repeat1, - STATE(1777), 2, + STATE(3361), 1, + sym_on_stop_phrase, + STATE(1790), 2, sym_comment, sym_include, ACTIONS(1195), 5, @@ -122012,7 +122998,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_query_tuning_token2, aux_sym_query_tuning_token3, aux_sym_query_tuning_token4, - [90481] = 19, + [90800] = 19, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, @@ -122021,33 +123007,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, ACTIONS(1201), 1, aux_sym_query_tuning_token5, - ACTIONS(2105), 1, - anon_sym_COMMA, ACTIONS(2109), 1, - aux_sym_on_error_phrase_token1, + anon_sym_COMMA, ACTIONS(2113), 1, + aux_sym_on_error_phrase_token1, + ACTIONS(2117), 1, aux_sym_sort_clause_token1, - ACTIONS(2115), 1, + ACTIONS(2119), 1, aux_sym_sort_clause_token2, - ACTIONS(2447), 1, + ACTIONS(2457), 1, anon_sym_COLON, - STATE(1796), 1, + STATE(1776), 1, aux_sym_for_phrase_repeat1, - STATE(1953), 1, + STATE(2019), 1, sym_query_tuning, - STATE(2057), 1, + STATE(2067), 1, aux_sym_for_phrase_repeat2, - STATE(2621), 1, + STATE(2678), 1, sym_on_error_phrase, - STATE(2783), 1, + STATE(2934), 1, sym_sort_clause, - STATE(2858), 1, + STATE(2960), 1, sym_on_quit_phrase, - STATE(3215), 1, + STATE(3249), 1, sym_on_stop_phrase, - STATE(3216), 1, + STATE(3251), 1, aux_sym_for_statement_repeat1, - STATE(1778), 2, + STATE(1791), 2, sym_comment, sym_include, ACTIONS(1195), 5, @@ -122056,7 +123042,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_query_tuning_token2, aux_sym_query_tuning_token3, aux_sym_query_tuning_token4, - [90544] = 19, + [90863] = 19, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, @@ -122065,33 +123051,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, ACTIONS(1201), 1, aux_sym_query_tuning_token5, - ACTIONS(2105), 1, - anon_sym_COMMA, ACTIONS(2109), 1, - aux_sym_on_error_phrase_token1, + anon_sym_COMMA, ACTIONS(2113), 1, + aux_sym_on_error_phrase_token1, + ACTIONS(2117), 1, aux_sym_sort_clause_token1, - ACTIONS(2115), 1, + ACTIONS(2119), 1, aux_sym_sort_clause_token2, - ACTIONS(2598), 1, + ACTIONS(2425), 1, anon_sym_COLON, - STATE(1935), 1, + STATE(1799), 1, aux_sym_for_phrase_repeat1, - STATE(1953), 1, + STATE(2019), 1, sym_query_tuning, - STATE(2132), 1, + STATE(2062), 1, aux_sym_for_phrase_repeat2, - STATE(2690), 1, + STATE(2664), 1, sym_on_error_phrase, - STATE(2783), 1, - sym_sort_clause, - STATE(2818), 1, + STATE(2795), 1, sym_on_quit_phrase, - STATE(3279), 1, - sym_on_stop_phrase, - STATE(3280), 1, + STATE(2934), 1, + sym_sort_clause, + STATE(3329), 1, aux_sym_for_statement_repeat1, - STATE(1779), 2, + STATE(3330), 1, + sym_on_stop_phrase, + STATE(1792), 2, sym_comment, sym_include, ACTIONS(1195), 5, @@ -122100,7 +123086,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_query_tuning_token2, aux_sym_query_tuning_token3, aux_sym_query_tuning_token4, - [90607] = 19, + [90926] = 19, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, @@ -122109,33 +123095,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, ACTIONS(1201), 1, aux_sym_query_tuning_token5, - ACTIONS(2105), 1, - anon_sym_COMMA, ACTIONS(2109), 1, - aux_sym_on_error_phrase_token1, + anon_sym_COMMA, ACTIONS(2113), 1, + aux_sym_on_error_phrase_token1, + ACTIONS(2117), 1, aux_sym_sort_clause_token1, - ACTIONS(2115), 1, + ACTIONS(2119), 1, aux_sym_sort_clause_token2, - ACTIONS(2429), 1, + ACTIONS(2600), 1, anon_sym_COLON, - STATE(1750), 1, + STATE(1948), 1, aux_sym_for_phrase_repeat1, - STATE(1953), 1, + STATE(2019), 1, sym_query_tuning, - STATE(2099), 1, + STATE(2057), 1, aux_sym_for_phrase_repeat2, - STATE(2705), 1, + STATE(2762), 1, sym_on_error_phrase, - STATE(2783), 1, - sym_sort_clause, - STATE(2789), 1, + STATE(2835), 1, sym_on_quit_phrase, - STATE(3244), 1, + STATE(2934), 1, + sym_sort_clause, + STATE(3396), 1, sym_on_stop_phrase, - STATE(3245), 1, + STATE(3397), 1, aux_sym_for_statement_repeat1, - STATE(1780), 2, + STATE(1793), 2, sym_comment, sym_include, ACTIONS(1195), 5, @@ -122144,7 +123130,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_query_tuning_token2, aux_sym_query_tuning_token3, aux_sym_query_tuning_token4, - [90670] = 19, + [90989] = 19, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, @@ -122153,33 +123139,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, ACTIONS(1201), 1, aux_sym_query_tuning_token5, - ACTIONS(2105), 1, - anon_sym_COMMA, ACTIONS(2109), 1, - aux_sym_on_error_phrase_token1, + anon_sym_COMMA, ACTIONS(2113), 1, + aux_sym_on_error_phrase_token1, + ACTIONS(2117), 1, aux_sym_sort_clause_token1, - ACTIONS(2115), 1, + ACTIONS(2119), 1, aux_sym_sort_clause_token2, - ACTIONS(2600), 1, + ACTIONS(2467), 1, anon_sym_COLON, - STATE(1935), 1, + STATE(1948), 1, aux_sym_for_phrase_repeat1, - STATE(1953), 1, + STATE(2019), 1, sym_query_tuning, - STATE(2034), 1, + STATE(2138), 1, aux_sym_for_phrase_repeat2, - STATE(2680), 1, + STATE(2726), 1, sym_on_error_phrase, - STATE(2777), 1, + STATE(2916), 1, sym_on_quit_phrase, - STATE(2783), 1, + STATE(2934), 1, sym_sort_clause, - STATE(3124), 1, + STATE(3261), 1, sym_on_stop_phrase, - STATE(3125), 1, + STATE(3262), 1, aux_sym_for_statement_repeat1, - STATE(1781), 2, + STATE(1794), 2, sym_comment, sym_include, ACTIONS(1195), 5, @@ -122188,7 +123174,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_query_tuning_token2, aux_sym_query_tuning_token3, aux_sym_query_tuning_token4, - [90733] = 19, + [91052] = 19, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, @@ -122197,33 +123183,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, ACTIONS(1201), 1, aux_sym_query_tuning_token5, - ACTIONS(2105), 1, - anon_sym_COMMA, ACTIONS(2109), 1, - aux_sym_on_error_phrase_token1, + anon_sym_COMMA, ACTIONS(2113), 1, + aux_sym_on_error_phrase_token1, + ACTIONS(2117), 1, aux_sym_sort_clause_token1, - ACTIONS(2115), 1, + ACTIONS(2119), 1, aux_sym_sort_clause_token2, - ACTIONS(2598), 1, + ACTIONS(2425), 1, anon_sym_COLON, - STATE(1762), 1, + STATE(1948), 1, aux_sym_for_phrase_repeat1, - STATE(1953), 1, + STATE(2019), 1, sym_query_tuning, - STATE(2132), 1, + STATE(2062), 1, aux_sym_for_phrase_repeat2, - STATE(2690), 1, + STATE(2664), 1, sym_on_error_phrase, - STATE(2783), 1, - sym_sort_clause, - STATE(2818), 1, + STATE(2795), 1, sym_on_quit_phrase, - STATE(3279), 1, - sym_on_stop_phrase, - STATE(3280), 1, + STATE(2934), 1, + sym_sort_clause, + STATE(3329), 1, aux_sym_for_statement_repeat1, - STATE(1782), 2, + STATE(3330), 1, + sym_on_stop_phrase, + STATE(1795), 2, sym_comment, sym_include, ACTIONS(1195), 5, @@ -122232,7 +123218,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_query_tuning_token2, aux_sym_query_tuning_token3, aux_sym_query_tuning_token4, - [90796] = 19, + [91115] = 19, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, @@ -122241,33 +123227,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, ACTIONS(1201), 1, aux_sym_query_tuning_token5, - ACTIONS(2105), 1, - anon_sym_COMMA, ACTIONS(2109), 1, - aux_sym_on_error_phrase_token1, + anon_sym_COMMA, ACTIONS(2113), 1, + aux_sym_on_error_phrase_token1, + ACTIONS(2117), 1, aux_sym_sort_clause_token1, - ACTIONS(2115), 1, + ACTIONS(2119), 1, aux_sym_sort_clause_token2, - ACTIONS(2602), 1, + ACTIONS(2467), 1, anon_sym_COLON, - STATE(1935), 1, + STATE(1807), 1, aux_sym_for_phrase_repeat1, - STATE(1953), 1, + STATE(2019), 1, sym_query_tuning, - STATE(2071), 1, + STATE(2138), 1, aux_sym_for_phrase_repeat2, - STATE(2670), 1, + STATE(2726), 1, sym_on_error_phrase, - STATE(2783), 1, - sym_sort_clause, - STATE(2881), 1, + STATE(2916), 1, sym_on_quit_phrase, - STATE(3195), 1, + STATE(2934), 1, + sym_sort_clause, + STATE(3261), 1, sym_on_stop_phrase, - STATE(3196), 1, + STATE(3262), 1, aux_sym_for_statement_repeat1, - STATE(1783), 2, + STATE(1796), 2, sym_comment, sym_include, ACTIONS(1195), 5, @@ -122276,7 +123262,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_query_tuning_token2, aux_sym_query_tuning_token3, aux_sym_query_tuning_token4, - [90859] = 19, + [91178] = 19, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, @@ -122285,33 +123271,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, ACTIONS(1201), 1, aux_sym_query_tuning_token5, - ACTIONS(2105), 1, - anon_sym_COMMA, ACTIONS(2109), 1, - aux_sym_on_error_phrase_token1, + anon_sym_COMMA, ACTIONS(2113), 1, + aux_sym_on_error_phrase_token1, + ACTIONS(2117), 1, aux_sym_sort_clause_token1, - ACTIONS(2115), 1, + ACTIONS(2119), 1, aux_sym_sort_clause_token2, - ACTIONS(2461), 1, + ACTIONS(2602), 1, anon_sym_COLON, - STATE(1935), 1, + STATE(1948), 1, aux_sym_for_phrase_repeat1, - STATE(1953), 1, + STATE(2019), 1, sym_query_tuning, - STATE(2113), 1, + STATE(2070), 1, aux_sym_for_phrase_repeat2, - STATE(2567), 1, + STATE(2693), 1, sym_on_error_phrase, - STATE(2783), 1, - sym_sort_clause, - STATE(2790), 1, + STATE(2922), 1, sym_on_quit_phrase, - STATE(3145), 1, + STATE(2934), 1, + sym_sort_clause, + STATE(3325), 1, sym_on_stop_phrase, - STATE(3146), 1, + STATE(3326), 1, aux_sym_for_statement_repeat1, - STATE(1784), 2, + STATE(1797), 2, sym_comment, sym_include, ACTIONS(1195), 5, @@ -122320,7 +123306,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_query_tuning_token2, aux_sym_query_tuning_token3, aux_sym_query_tuning_token4, - [90922] = 19, + [91241] = 19, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, @@ -122329,33 +123315,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, ACTIONS(1201), 1, aux_sym_query_tuning_token5, - ACTIONS(2105), 1, - anon_sym_COMMA, ACTIONS(2109), 1, - aux_sym_on_error_phrase_token1, + anon_sym_COMMA, ACTIONS(2113), 1, + aux_sym_on_error_phrase_token1, + ACTIONS(2117), 1, aux_sym_sort_clause_token1, - ACTIONS(2115), 1, + ACTIONS(2119), 1, aux_sym_sort_clause_token2, - ACTIONS(2437), 1, + ACTIONS(2602), 1, anon_sym_COLON, - STATE(1772), 1, + STATE(1742), 1, aux_sym_for_phrase_repeat1, - STATE(1953), 1, + STATE(2019), 1, sym_query_tuning, - STATE(2052), 1, + STATE(2070), 1, aux_sym_for_phrase_repeat2, - STATE(2554), 1, + STATE(2693), 1, sym_on_error_phrase, - STATE(2783), 1, - sym_sort_clause, - STATE(2864), 1, + STATE(2922), 1, sym_on_quit_phrase, - STATE(3212), 1, - aux_sym_for_statement_repeat1, - STATE(3214), 1, + STATE(2934), 1, + sym_sort_clause, + STATE(3325), 1, sym_on_stop_phrase, - STATE(1785), 2, + STATE(3326), 1, + aux_sym_for_statement_repeat1, + STATE(1798), 2, sym_comment, sym_include, ACTIONS(1195), 5, @@ -122364,7 +123350,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_query_tuning_token2, aux_sym_query_tuning_token3, aux_sym_query_tuning_token4, - [90985] = 19, + [91304] = 19, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, @@ -122373,33 +123359,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, ACTIONS(1201), 1, aux_sym_query_tuning_token5, - ACTIONS(2105), 1, - anon_sym_COMMA, ACTIONS(2109), 1, - aux_sym_on_error_phrase_token1, + anon_sym_COMMA, ACTIONS(2113), 1, + aux_sym_on_error_phrase_token1, + ACTIONS(2117), 1, aux_sym_sort_clause_token1, - ACTIONS(2115), 1, + ACTIONS(2119), 1, aux_sym_sort_clause_token2, - ACTIONS(2431), 1, + ACTIONS(2469), 1, anon_sym_COLON, - STATE(1935), 1, + STATE(1948), 1, aux_sym_for_phrase_repeat1, - STATE(1953), 1, + STATE(2019), 1, sym_query_tuning, - STATE(2098), 1, + STATE(2077), 1, aux_sym_for_phrase_repeat2, - STATE(2579), 1, + STATE(2665), 1, sym_on_error_phrase, - STATE(2783), 1, - sym_sort_clause, - STATE(2785), 1, + STATE(2913), 1, sym_on_quit_phrase, - STATE(3142), 1, - aux_sym_for_statement_repeat1, - STATE(3143), 1, + STATE(2934), 1, + sym_sort_clause, + STATE(3321), 1, sym_on_stop_phrase, - STATE(1786), 2, + STATE(3322), 1, + aux_sym_for_statement_repeat1, + STATE(1799), 2, sym_comment, sym_include, ACTIONS(1195), 5, @@ -122408,7 +123394,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_query_tuning_token2, aux_sym_query_tuning_token3, aux_sym_query_tuning_token4, - [91048] = 19, + [91367] = 19, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, @@ -122417,33 +123403,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, ACTIONS(1201), 1, aux_sym_query_tuning_token5, - ACTIONS(2105), 1, - anon_sym_COMMA, ACTIONS(2109), 1, - aux_sym_on_error_phrase_token1, + anon_sym_COMMA, ACTIONS(2113), 1, + aux_sym_on_error_phrase_token1, + ACTIONS(2117), 1, aux_sym_sort_clause_token1, - ACTIONS(2115), 1, + ACTIONS(2119), 1, aux_sym_sort_clause_token2, - ACTIONS(2429), 1, + ACTIONS(2469), 1, anon_sym_COLON, - STATE(1935), 1, + STATE(1808), 1, aux_sym_for_phrase_repeat1, - STATE(1953), 1, + STATE(2019), 1, sym_query_tuning, - STATE(2099), 1, + STATE(2077), 1, aux_sym_for_phrase_repeat2, - STATE(2705), 1, + STATE(2665), 1, sym_on_error_phrase, - STATE(2783), 1, - sym_sort_clause, - STATE(2789), 1, + STATE(2913), 1, sym_on_quit_phrase, - STATE(3244), 1, + STATE(2934), 1, + sym_sort_clause, + STATE(3321), 1, sym_on_stop_phrase, - STATE(3245), 1, + STATE(3322), 1, aux_sym_for_statement_repeat1, - STATE(1787), 2, + STATE(1800), 2, sym_comment, sym_include, ACTIONS(1195), 5, @@ -122452,7 +123438,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_query_tuning_token2, aux_sym_query_tuning_token3, aux_sym_query_tuning_token4, - [91111] = 19, + [91430] = 19, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, @@ -122461,33 +123447,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, ACTIONS(1201), 1, aux_sym_query_tuning_token5, - ACTIONS(2105), 1, - anon_sym_COMMA, ACTIONS(2109), 1, - aux_sym_on_error_phrase_token1, + anon_sym_COMMA, ACTIONS(2113), 1, + aux_sym_on_error_phrase_token1, + ACTIONS(2117), 1, aux_sym_sort_clause_token1, - ACTIONS(2115), 1, + ACTIONS(2119), 1, aux_sym_sort_clause_token2, - ACTIONS(2455), 1, + ACTIONS(2457), 1, anon_sym_COLON, - STATE(1760), 1, + STATE(1948), 1, aux_sym_for_phrase_repeat1, - STATE(1953), 1, + STATE(2019), 1, sym_query_tuning, - STATE(2091), 1, + STATE(2067), 1, aux_sym_for_phrase_repeat2, - STATE(2674), 1, + STATE(2678), 1, sym_on_error_phrase, - STATE(2783), 1, + STATE(2934), 1, sym_sort_clause, - STATE(2799), 1, + STATE(2960), 1, sym_on_quit_phrase, - STATE(3295), 1, + STATE(3249), 1, sym_on_stop_phrase, - STATE(3296), 1, + STATE(3251), 1, aux_sym_for_statement_repeat1, - STATE(1788), 2, + STATE(1801), 2, sym_comment, sym_include, ACTIONS(1195), 5, @@ -122496,7 +123482,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_query_tuning_token2, aux_sym_query_tuning_token3, aux_sym_query_tuning_token4, - [91174] = 19, + [91493] = 19, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, @@ -122505,33 +123491,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, ACTIONS(1201), 1, aux_sym_query_tuning_token5, - ACTIONS(2105), 1, - anon_sym_COMMA, ACTIONS(2109), 1, - aux_sym_on_error_phrase_token1, + anon_sym_COMMA, ACTIONS(2113), 1, + aux_sym_on_error_phrase_token1, + ACTIONS(2117), 1, aux_sym_sort_clause_token1, - ACTIONS(2115), 1, + ACTIONS(2119), 1, aux_sym_sort_clause_token2, - ACTIONS(2431), 1, + ACTIONS(2453), 1, anon_sym_COLON, - STATE(1739), 1, + STATE(1744), 1, aux_sym_for_phrase_repeat1, - STATE(1953), 1, + STATE(2019), 1, sym_query_tuning, - STATE(2098), 1, + STATE(2061), 1, aux_sym_for_phrase_repeat2, - STATE(2579), 1, + STATE(2622), 1, sym_on_error_phrase, - STATE(2783), 1, - sym_sort_clause, - STATE(2785), 1, + STATE(2924), 1, sym_on_quit_phrase, - STATE(3142), 1, - aux_sym_for_statement_repeat1, - STATE(3143), 1, + STATE(2934), 1, + sym_sort_clause, + STATE(3400), 1, sym_on_stop_phrase, - STATE(1789), 2, + STATE(3401), 1, + aux_sym_for_statement_repeat1, + STATE(1802), 2, sym_comment, sym_include, ACTIONS(1195), 5, @@ -122540,7 +123526,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_query_tuning_token2, aux_sym_query_tuning_token3, aux_sym_query_tuning_token4, - [91237] = 19, + [91556] = 19, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, @@ -122549,33 +123535,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, ACTIONS(1201), 1, aux_sym_query_tuning_token5, - ACTIONS(2105), 1, - anon_sym_COMMA, ACTIONS(2109), 1, - aux_sym_on_error_phrase_token1, + anon_sym_COMMA, ACTIONS(2113), 1, + aux_sym_on_error_phrase_token1, + ACTIONS(2117), 1, aux_sym_sort_clause_token1, - ACTIONS(2115), 1, + ACTIONS(2119), 1, aux_sym_sort_clause_token2, - ACTIONS(2423), 1, + ACTIONS(2604), 1, anon_sym_COLON, - STATE(1935), 1, + STATE(1767), 1, aux_sym_for_phrase_repeat1, - STATE(1953), 1, + STATE(2019), 1, sym_query_tuning, - STATE(2064), 1, + STATE(2043), 1, aux_sym_for_phrase_repeat2, - STATE(2666), 1, + STATE(2660), 1, sym_on_error_phrase, - STATE(2743), 1, + STATE(2905), 1, sym_on_quit_phrase, - STATE(2783), 1, + STATE(2934), 1, sym_sort_clause, - STATE(3421), 1, + STATE(3351), 1, aux_sym_for_statement_repeat1, - STATE(3426), 1, + STATE(3352), 1, sym_on_stop_phrase, - STATE(1790), 2, + STATE(1803), 2, sym_comment, sym_include, ACTIONS(1195), 5, @@ -122584,7 +123570,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_query_tuning_token2, aux_sym_query_tuning_token3, aux_sym_query_tuning_token4, - [91300] = 19, + [91619] = 19, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, @@ -122593,33 +123579,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, ACTIONS(1201), 1, aux_sym_query_tuning_token5, - ACTIONS(2105), 1, - anon_sym_COMMA, ACTIONS(2109), 1, - aux_sym_on_error_phrase_token1, + anon_sym_COMMA, ACTIONS(2113), 1, + aux_sym_on_error_phrase_token1, + ACTIONS(2117), 1, aux_sym_sort_clause_token1, - ACTIONS(2115), 1, + ACTIONS(2119), 1, aux_sym_sort_clause_token2, ACTIONS(2604), 1, anon_sym_COLON, - STATE(1935), 1, + STATE(1948), 1, aux_sym_for_phrase_repeat1, - STATE(1953), 1, + STATE(2019), 1, sym_query_tuning, - STATE(2044), 1, + STATE(2043), 1, aux_sym_for_phrase_repeat2, - STATE(2566), 1, + STATE(2660), 1, sym_on_error_phrase, - STATE(2783), 1, - sym_sort_clause, - STATE(2809), 1, + STATE(2905), 1, sym_on_quit_phrase, + STATE(2934), 1, + sym_sort_clause, STATE(3351), 1, - sym_on_stop_phrase, - STATE(3415), 1, aux_sym_for_statement_repeat1, - STATE(1791), 2, + STATE(3352), 1, + sym_on_stop_phrase, + STATE(1804), 2, sym_comment, sym_include, ACTIONS(1195), 5, @@ -122628,7 +123614,37 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_query_tuning_token2, aux_sym_query_tuning_token3, aux_sym_query_tuning_token4, - [91363] = 19, + [91682] = 5, + ACTIONS(59), 1, + anon_sym_SLASH_SLASH, + ACTIONS(61), 1, + anon_sym_SLASH_STAR, + ACTIONS(65), 1, + anon_sym_LBRACE, + STATE(1805), 2, + sym_comment, + sym_include, + ACTIONS(213), 19, + 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_repeat_tuning_token1, + 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, + [91717] = 19, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, @@ -122637,33 +123653,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, ACTIONS(1201), 1, aux_sym_query_tuning_token5, - ACTIONS(2105), 1, - anon_sym_COMMA, ACTIONS(2109), 1, - aux_sym_on_error_phrase_token1, + anon_sym_COMMA, ACTIONS(2113), 1, + aux_sym_on_error_phrase_token1, + ACTIONS(2117), 1, aux_sym_sort_clause_token1, - ACTIONS(2115), 1, + ACTIONS(2119), 1, aux_sym_sort_clause_token2, ACTIONS(2606), 1, anon_sym_COLON, - STATE(1935), 1, + STATE(1777), 1, aux_sym_for_phrase_repeat1, - STATE(1953), 1, + STATE(2019), 1, sym_query_tuning, - STATE(2058), 1, + STATE(2079), 1, aux_sym_for_phrase_repeat2, - STATE(2683), 1, + STATE(2692), 1, sym_on_error_phrase, - STATE(2783), 1, + STATE(2934), 1, sym_sort_clause, - STATE(2901), 1, + STATE(2944), 1, sym_on_quit_phrase, - STATE(3202), 1, + STATE(3253), 1, sym_on_stop_phrase, - STATE(3203), 1, + STATE(3254), 1, aux_sym_for_statement_repeat1, - STATE(1792), 2, + STATE(1806), 2, sym_comment, sym_include, ACTIONS(1195), 5, @@ -122672,7 +123688,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_query_tuning_token2, aux_sym_query_tuning_token3, aux_sym_query_tuning_token4, - [91426] = 19, + [91780] = 19, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, @@ -122681,33 +123697,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, ACTIONS(1201), 1, aux_sym_query_tuning_token5, - ACTIONS(2105), 1, - anon_sym_COMMA, ACTIONS(2109), 1, - aux_sym_on_error_phrase_token1, + anon_sym_COMMA, ACTIONS(2113), 1, + aux_sym_on_error_phrase_token1, + ACTIONS(2117), 1, aux_sym_sort_clause_token1, - ACTIONS(2115), 1, + ACTIONS(2119), 1, aux_sym_sort_clause_token2, - ACTIONS(2423), 1, + ACTIONS(2606), 1, anon_sym_COLON, - STATE(1765), 1, + STATE(1948), 1, aux_sym_for_phrase_repeat1, - STATE(1953), 1, + STATE(2019), 1, sym_query_tuning, - STATE(2064), 1, + STATE(2079), 1, aux_sym_for_phrase_repeat2, - STATE(2666), 1, + STATE(2692), 1, sym_on_error_phrase, - STATE(2743), 1, - sym_on_quit_phrase, - STATE(2783), 1, + STATE(2934), 1, sym_sort_clause, - STATE(3421), 1, - aux_sym_for_statement_repeat1, - STATE(3426), 1, + STATE(2944), 1, + sym_on_quit_phrase, + STATE(3253), 1, sym_on_stop_phrase, - STATE(1793), 2, + STATE(3254), 1, + aux_sym_for_statement_repeat1, + STATE(1807), 2, sym_comment, sym_include, ACTIONS(1195), 5, @@ -122716,7 +123732,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_query_tuning_token2, aux_sym_query_tuning_token3, aux_sym_query_tuning_token4, - [91489] = 19, + [91843] = 19, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, @@ -122725,33 +123741,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, ACTIONS(1201), 1, aux_sym_query_tuning_token5, - ACTIONS(2105), 1, - anon_sym_COMMA, ACTIONS(2109), 1, - aux_sym_on_error_phrase_token1, + anon_sym_COMMA, ACTIONS(2113), 1, + aux_sym_on_error_phrase_token1, + ACTIONS(2117), 1, aux_sym_sort_clause_token1, - ACTIONS(2115), 1, + ACTIONS(2119), 1, aux_sym_sort_clause_token2, - ACTIONS(2395), 1, + ACTIONS(2608), 1, anon_sym_COLON, - STATE(1797), 1, + STATE(1948), 1, aux_sym_for_phrase_repeat1, - STATE(1953), 1, + STATE(2019), 1, sym_query_tuning, - STATE(2060), 1, + STATE(2082), 1, aux_sym_for_phrase_repeat2, - STATE(2641), 1, + STATE(2600), 1, sym_on_error_phrase, - STATE(2783), 1, - sym_sort_clause, - STATE(2878), 1, + STATE(2794), 1, sym_on_quit_phrase, - STATE(3307), 1, - aux_sym_for_statement_repeat1, - STATE(3308), 1, + STATE(2934), 1, + sym_sort_clause, + STATE(3314), 1, sym_on_stop_phrase, - STATE(1794), 2, + STATE(3315), 1, + aux_sym_for_statement_repeat1, + STATE(1808), 2, sym_comment, sym_include, ACTIONS(1195), 5, @@ -122760,7 +123776,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_query_tuning_token2, aux_sym_query_tuning_token3, aux_sym_query_tuning_token4, - [91552] = 19, + [91906] = 19, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, @@ -122769,33 +123785,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, ACTIONS(1201), 1, aux_sym_query_tuning_token5, - ACTIONS(2105), 1, - anon_sym_COMMA, ACTIONS(2109), 1, - aux_sym_on_error_phrase_token1, + anon_sym_COMMA, ACTIONS(2113), 1, + aux_sym_on_error_phrase_token1, + ACTIONS(2117), 1, aux_sym_sort_clause_token1, - ACTIONS(2115), 1, + ACTIONS(2119), 1, aux_sym_sort_clause_token2, - ACTIONS(2437), 1, + ACTIONS(2608), 1, anon_sym_COLON, - STATE(1935), 1, + STATE(1811), 1, aux_sym_for_phrase_repeat1, - STATE(1953), 1, + STATE(2019), 1, sym_query_tuning, - STATE(2052), 1, + STATE(2082), 1, aux_sym_for_phrase_repeat2, - STATE(2554), 1, + STATE(2600), 1, sym_on_error_phrase, - STATE(2783), 1, - sym_sort_clause, - STATE(2864), 1, + STATE(2794), 1, sym_on_quit_phrase, - STATE(3212), 1, - aux_sym_for_statement_repeat1, - STATE(3214), 1, + STATE(2934), 1, + sym_sort_clause, + STATE(3314), 1, sym_on_stop_phrase, - STATE(1795), 2, + STATE(3315), 1, + aux_sym_for_statement_repeat1, + STATE(1809), 2, sym_comment, sym_include, ACTIONS(1195), 5, @@ -122804,7 +123820,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_query_tuning_token2, aux_sym_query_tuning_token3, aux_sym_query_tuning_token4, - [91615] = 19, + [91969] = 19, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, @@ -122813,33 +123829,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, ACTIONS(1201), 1, aux_sym_query_tuning_token5, - ACTIONS(2105), 1, - anon_sym_COMMA, ACTIONS(2109), 1, - aux_sym_on_error_phrase_token1, + anon_sym_COMMA, ACTIONS(2113), 1, + aux_sym_on_error_phrase_token1, + ACTIONS(2117), 1, aux_sym_sort_clause_token1, - ACTIONS(2115), 1, + ACTIONS(2119), 1, aux_sym_sort_clause_token2, - ACTIONS(2576), 1, + ACTIONS(2431), 1, anon_sym_COLON, - STATE(1935), 1, + STATE(1790), 1, aux_sym_for_phrase_repeat1, - STATE(1953), 1, + STATE(2019), 1, sym_query_tuning, - STATE(2046), 1, + STATE(2055), 1, aux_sym_for_phrase_repeat2, - STATE(2707), 1, + STATE(2750), 1, sym_on_error_phrase, - STATE(2783), 1, - sym_sort_clause, - STATE(2873), 1, + STATE(2862), 1, sym_on_quit_phrase, - STATE(3209), 1, + STATE(2934), 1, + sym_sort_clause, + STATE(3340), 1, sym_on_stop_phrase, - STATE(3210), 1, + STATE(3342), 1, aux_sym_for_statement_repeat1, - STATE(1796), 2, + STATE(1810), 2, sym_comment, sym_include, ACTIONS(1195), 5, @@ -122848,7 +123864,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_query_tuning_token2, aux_sym_query_tuning_token3, aux_sym_query_tuning_token4, - [91678] = 19, + [92032] = 19, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, @@ -122857,33 +123873,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, ACTIONS(1201), 1, aux_sym_query_tuning_token5, - ACTIONS(2105), 1, - anon_sym_COMMA, ACTIONS(2109), 1, - aux_sym_on_error_phrase_token1, + anon_sym_COMMA, ACTIONS(2113), 1, + aux_sym_on_error_phrase_token1, + ACTIONS(2117), 1, aux_sym_sort_clause_token1, - ACTIONS(2115), 1, + ACTIONS(2119), 1, aux_sym_sort_clause_token2, - ACTIONS(2455), 1, + ACTIONS(2610), 1, anon_sym_COLON, - STATE(1935), 1, + STATE(1948), 1, aux_sym_for_phrase_repeat1, - STATE(1953), 1, + STATE(2019), 1, sym_query_tuning, - STATE(2091), 1, + STATE(2083), 1, aux_sym_for_phrase_repeat2, - STATE(2674), 1, + STATE(2608), 1, sym_on_error_phrase, - STATE(2783), 1, - sym_sort_clause, - STATE(2799), 1, + STATE(2810), 1, sym_on_quit_phrase, - STATE(3295), 1, + STATE(2934), 1, + sym_sort_clause, + STATE(3310), 1, sym_on_stop_phrase, - STATE(3296), 1, + STATE(3311), 1, aux_sym_for_statement_repeat1, - STATE(1797), 2, + STATE(1811), 2, sym_comment, sym_include, ACTIONS(1195), 5, @@ -122892,7 +123908,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_query_tuning_token2, aux_sym_query_tuning_token3, aux_sym_query_tuning_token4, - [91741] = 19, + [92095] = 19, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, @@ -122901,33 +123917,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, ACTIONS(1201), 1, aux_sym_query_tuning_token5, - ACTIONS(2105), 1, - anon_sym_COMMA, ACTIONS(2109), 1, - aux_sym_on_error_phrase_token1, + anon_sym_COMMA, ACTIONS(2113), 1, + aux_sym_on_error_phrase_token1, + ACTIONS(2117), 1, aux_sym_sort_clause_token1, - ACTIONS(2115), 1, + ACTIONS(2119), 1, aux_sym_sort_clause_token2, - ACTIONS(2393), 1, + ACTIONS(2449), 1, anon_sym_COLON, - STATE(1935), 1, + STATE(1948), 1, aux_sym_for_phrase_repeat1, - STATE(1953), 1, + STATE(2019), 1, sym_query_tuning, - STATE(2118), 1, + STATE(2063), 1, aux_sym_for_phrase_repeat2, - STATE(2572), 1, + STATE(2737), 1, sym_on_error_phrase, - STATE(2783), 1, - sym_sort_clause, - STATE(2805), 1, + STATE(2894), 1, sym_on_quit_phrase, - STATE(3153), 1, + STATE(2934), 1, + sym_sort_clause, + STATE(3324), 1, aux_sym_for_statement_repeat1, - STATE(3154), 1, + STATE(3327), 1, sym_on_stop_phrase, - STATE(1798), 2, + STATE(1812), 2, sym_comment, sym_include, ACTIONS(1195), 5, @@ -122936,7 +123952,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_query_tuning_token2, aux_sym_query_tuning_token3, aux_sym_query_tuning_token4, - [91804] = 19, + [92158] = 19, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, @@ -122945,33 +123961,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, ACTIONS(1201), 1, aux_sym_query_tuning_token5, - ACTIONS(2105), 1, - anon_sym_COMMA, ACTIONS(2109), 1, - aux_sym_on_error_phrase_token1, + anon_sym_COMMA, ACTIONS(2113), 1, + aux_sym_on_error_phrase_token1, + ACTIONS(2117), 1, aux_sym_sort_clause_token1, - ACTIONS(2115), 1, + ACTIONS(2119), 1, aux_sym_sort_clause_token2, - ACTIONS(2453), 1, + ACTIONS(2433), 1, anon_sym_COLON, - STATE(1935), 1, + STATE(1948), 1, aux_sym_for_phrase_repeat1, - STATE(1953), 1, + STATE(2019), 1, sym_query_tuning, - STATE(2025), 1, + STATE(2098), 1, aux_sym_for_phrase_repeat2, - STATE(2656), 1, + STATE(2715), 1, sym_on_error_phrase, - STATE(2738), 1, + STATE(2928), 1, sym_on_quit_phrase, - STATE(2783), 1, + STATE(2934), 1, sym_sort_clause, - STATE(3436), 1, - sym_on_stop_phrase, - STATE(3442), 1, + STATE(3257), 1, aux_sym_for_statement_repeat1, - STATE(1799), 2, + STATE(3258), 1, + sym_on_stop_phrase, + STATE(1813), 2, sym_comment, sym_include, ACTIONS(1195), 5, @@ -122980,7 +123996,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_query_tuning_token2, aux_sym_query_tuning_token3, aux_sym_query_tuning_token4, - [91867] = 19, + [92221] = 19, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, @@ -122989,33 +124005,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, ACTIONS(1201), 1, aux_sym_query_tuning_token5, - ACTIONS(2105), 1, - anon_sym_COMMA, ACTIONS(2109), 1, - aux_sym_on_error_phrase_token1, + anon_sym_COMMA, ACTIONS(2113), 1, + aux_sym_on_error_phrase_token1, + ACTIONS(2117), 1, aux_sym_sort_clause_token1, - ACTIONS(2115), 1, + ACTIONS(2119), 1, aux_sym_sort_clause_token2, - ACTIONS(2393), 1, + ACTIONS(2574), 1, anon_sym_COLON, - STATE(1784), 1, + STATE(1793), 1, aux_sym_for_phrase_repeat1, - STATE(1953), 1, + STATE(2019), 1, sym_query_tuning, - STATE(2118), 1, + STATE(2074), 1, aux_sym_for_phrase_repeat2, - STATE(2572), 1, + STATE(2654), 1, sym_on_error_phrase, - STATE(2783), 1, - sym_sort_clause, - STATE(2805), 1, + STATE(2865), 1, sym_on_quit_phrase, - STATE(3153), 1, - aux_sym_for_statement_repeat1, - STATE(3154), 1, + STATE(2934), 1, + sym_sort_clause, + STATE(3402), 1, sym_on_stop_phrase, - STATE(1800), 2, + STATE(3403), 1, + aux_sym_for_statement_repeat1, + STATE(1814), 2, sym_comment, sym_include, ACTIONS(1195), 5, @@ -123024,7 +124040,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_query_tuning_token2, aux_sym_query_tuning_token3, aux_sym_query_tuning_token4, - [91930] = 19, + [92284] = 19, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, @@ -123033,33 +124049,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, ACTIONS(1201), 1, aux_sym_query_tuning_token5, - ACTIONS(2105), 1, - anon_sym_COMMA, ACTIONS(2109), 1, - aux_sym_on_error_phrase_token1, + anon_sym_COMMA, ACTIONS(2113), 1, + aux_sym_on_error_phrase_token1, + ACTIONS(2117), 1, aux_sym_sort_clause_token1, - ACTIONS(2115), 1, + ACTIONS(2119), 1, aux_sym_sort_clause_token2, - ACTIONS(2453), 1, + ACTIONS(2431), 1, anon_sym_COLON, - STATE(1734), 1, + STATE(1948), 1, aux_sym_for_phrase_repeat1, - STATE(1953), 1, + STATE(2019), 1, sym_query_tuning, - STATE(2025), 1, + STATE(2055), 1, aux_sym_for_phrase_repeat2, - STATE(2656), 1, + STATE(2750), 1, sym_on_error_phrase, - STATE(2738), 1, + STATE(2862), 1, sym_on_quit_phrase, - STATE(2783), 1, + STATE(2934), 1, sym_sort_clause, - STATE(3436), 1, + STATE(3340), 1, sym_on_stop_phrase, - STATE(3442), 1, + STATE(3342), 1, aux_sym_for_statement_repeat1, - STATE(1801), 2, + STATE(1815), 2, sym_comment, sym_include, ACTIONS(1195), 5, @@ -123068,7 +124084,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_query_tuning_token2, aux_sym_query_tuning_token3, aux_sym_query_tuning_token4, - [91993] = 19, + [92347] = 19, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, @@ -123077,33 +124093,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, ACTIONS(1201), 1, aux_sym_query_tuning_token5, - ACTIONS(2105), 1, - anon_sym_COMMA, ACTIONS(2109), 1, - aux_sym_on_error_phrase_token1, + anon_sym_COMMA, ACTIONS(2113), 1, + aux_sym_on_error_phrase_token1, + ACTIONS(2117), 1, aux_sym_sort_clause_token1, - ACTIONS(2115), 1, + ACTIONS(2119), 1, aux_sym_sort_clause_token2, - ACTIONS(2395), 1, + ACTIONS(2433), 1, anon_sym_COLON, - STATE(1935), 1, + STATE(1801), 1, aux_sym_for_phrase_repeat1, - STATE(1953), 1, + STATE(2019), 1, sym_query_tuning, - STATE(2060), 1, + STATE(2098), 1, aux_sym_for_phrase_repeat2, - STATE(2641), 1, + STATE(2715), 1, sym_on_error_phrase, - STATE(2783), 1, - sym_sort_clause, - STATE(2878), 1, + STATE(2928), 1, sym_on_quit_phrase, - STATE(3307), 1, + STATE(2934), 1, + sym_sort_clause, + STATE(3257), 1, aux_sym_for_statement_repeat1, - STATE(3308), 1, + STATE(3258), 1, sym_on_stop_phrase, - STATE(1802), 2, + STATE(1816), 2, sym_comment, sym_include, ACTIONS(1195), 5, @@ -123112,7 +124128,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_query_tuning_token2, aux_sym_query_tuning_token3, aux_sym_query_tuning_token4, - [92056] = 19, + [92410] = 19, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, @@ -123121,33 +124137,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, ACTIONS(1201), 1, aux_sym_query_tuning_token5, - ACTIONS(2105), 1, - anon_sym_COMMA, ACTIONS(2109), 1, - aux_sym_on_error_phrase_token1, + anon_sym_COMMA, ACTIONS(2113), 1, + aux_sym_on_error_phrase_token1, + ACTIONS(2117), 1, aux_sym_sort_clause_token1, - ACTIONS(2115), 1, + ACTIONS(2119), 1, aux_sym_sort_clause_token2, - ACTIONS(2461), 1, + ACTIONS(2453), 1, anon_sym_COLON, - STATE(1773), 1, + STATE(1948), 1, aux_sym_for_phrase_repeat1, - STATE(1953), 1, + STATE(2019), 1, sym_query_tuning, - STATE(2113), 1, + STATE(2061), 1, aux_sym_for_phrase_repeat2, - STATE(2567), 1, + STATE(2622), 1, sym_on_error_phrase, - STATE(2783), 1, - sym_sort_clause, - STATE(2790), 1, + STATE(2924), 1, sym_on_quit_phrase, - STATE(3145), 1, + STATE(2934), 1, + sym_sort_clause, + STATE(3400), 1, sym_on_stop_phrase, - STATE(3146), 1, + STATE(3401), 1, aux_sym_for_statement_repeat1, - STATE(1803), 2, + STATE(1817), 2, sym_comment, sym_include, ACTIONS(1195), 5, @@ -123156,36 +124172,38 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_query_tuning_token2, aux_sym_query_tuning_token3, aux_sym_query_tuning_token4, - [92119] = 5, + [92473] = 7, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - STATE(1804), 2, + ACTIONS(679), 1, + sym__namedot, + STATE(336), 1, + aux_sym_qualified_name_repeat1, + STATE(1818), 2, sym_comment, sym_include, - ACTIONS(223), 18, + ACTIONS(2612), 16, 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_RPAREN, anon_sym_COMMA, + aux_sym_function_call_token1, 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_using_statement_token1, aux_sym_on_error_phrase_token1, - aux_sym_field_definition_token1, - aux_sym_index_definition_token1, - [92153] = 17, + 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, + [92511] = 17, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, @@ -123194,30 +124212,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, ACTIONS(1201), 1, aux_sym_query_tuning_token5, - ACTIONS(2109), 1, - aux_sym_on_error_phrase_token1, ACTIONS(2113), 1, + aux_sym_on_error_phrase_token1, + ACTIONS(2117), 1, aux_sym_sort_clause_token1, - ACTIONS(2115), 1, + ACTIONS(2119), 1, aux_sym_sort_clause_token2, - STATE(1807), 1, + STATE(1826), 1, aux_sym_for_phrase_repeat1, - STATE(1953), 1, + STATE(2019), 1, sym_query_tuning, - STATE(2199), 1, + STATE(2219), 1, aux_sym_for_phrase_repeat2, - STATE(2783), 1, - sym_sort_clause, - STATE(2857), 1, + STATE(2881), 1, sym_on_error_phrase, - STATE(2970), 1, + STATE(2934), 1, + sym_sort_clause, + STATE(3082), 1, sym_on_quit_phrase, - STATE(3969), 1, + STATE(4040), 1, sym_on_stop_phrase, - ACTIONS(2449), 2, + ACTIONS(2558), 2, anon_sym_COMMA, anon_sym_COLON, - STATE(1805), 2, + STATE(1819), 2, sym_comment, sym_include, ACTIONS(1195), 5, @@ -123226,7 +124244,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_query_tuning_token2, aux_sym_query_tuning_token3, aux_sym_query_tuning_token4, - [92211] = 17, + [92569] = 17, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, @@ -123235,30 +124253,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, ACTIONS(1201), 1, aux_sym_query_tuning_token5, - ACTIONS(2109), 1, - aux_sym_on_error_phrase_token1, ACTIONS(2113), 1, + aux_sym_on_error_phrase_token1, + ACTIONS(2117), 1, aux_sym_sort_clause_token1, - ACTIONS(2115), 1, + ACTIONS(2119), 1, aux_sym_sort_clause_token2, - STATE(1817), 1, + STATE(1948), 1, aux_sym_for_phrase_repeat1, - STATE(1953), 1, + STATE(2019), 1, sym_query_tuning, - STATE(2168), 1, + STATE(2219), 1, aux_sym_for_phrase_repeat2, - STATE(2783), 1, - sym_sort_clause, - STATE(2838), 1, + STATE(2881), 1, sym_on_error_phrase, - STATE(2979), 1, + STATE(2934), 1, + sym_sort_clause, + STATE(3082), 1, sym_on_quit_phrase, - STATE(3876), 1, + STATE(4040), 1, sym_on_stop_phrase, - ACTIONS(2495), 2, + ACTIONS(2558), 2, anon_sym_COMMA, anon_sym_COLON, - STATE(1806), 2, + STATE(1820), 2, sym_comment, sym_include, ACTIONS(1195), 5, @@ -123267,7 +124285,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_query_tuning_token2, aux_sym_query_tuning_token3, aux_sym_query_tuning_token4, - [92269] = 17, + [92627] = 17, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, @@ -123276,30 +124294,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, ACTIONS(1201), 1, aux_sym_query_tuning_token5, - ACTIONS(2109), 1, - aux_sym_on_error_phrase_token1, ACTIONS(2113), 1, + aux_sym_on_error_phrase_token1, + ACTIONS(2117), 1, aux_sym_sort_clause_token1, - ACTIONS(2115), 1, + ACTIONS(2119), 1, aux_sym_sort_clause_token2, - STATE(1935), 1, + STATE(1827), 1, aux_sym_for_phrase_repeat1, - STATE(1953), 1, + STATE(2019), 1, sym_query_tuning, - STATE(2168), 1, + STATE(2204), 1, aux_sym_for_phrase_repeat2, - STATE(2783), 1, - sym_sort_clause, - STATE(2838), 1, + STATE(2896), 1, sym_on_error_phrase, - STATE(2979), 1, + STATE(2934), 1, + sym_sort_clause, + STATE(3054), 1, sym_on_quit_phrase, - STATE(3876), 1, + STATE(3971), 1, sym_on_stop_phrase, - ACTIONS(2495), 2, + ACTIONS(2614), 2, anon_sym_COMMA, anon_sym_COLON, - STATE(1807), 2, + STATE(1821), 2, sym_comment, sym_include, ACTIONS(1195), 5, @@ -123308,205 +124326,99 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_query_tuning_token2, aux_sym_query_tuning_token3, aux_sym_query_tuning_token4, - [92327] = 5, + [92685] = 17, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - STATE(1808), 2, + ACTIONS(1201), 1, + aux_sym_query_tuning_token5, + ACTIONS(2113), 1, + aux_sym_on_error_phrase_token1, + ACTIONS(2117), 1, + aux_sym_sort_clause_token1, + ACTIONS(2119), 1, + aux_sym_sort_clause_token2, + STATE(1948), 1, + aux_sym_for_phrase_repeat1, + STATE(2019), 1, + sym_query_tuning, + STATE(2163), 1, + aux_sym_for_phrase_repeat2, + STATE(2934), 1, + sym_sort_clause, + STATE(2979), 1, + sym_on_error_phrase, + STATE(3017), 1, + sym_on_quit_phrase, + STATE(4120), 1, + sym_on_stop_phrase, + ACTIONS(2455), 2, + anon_sym_COMMA, + anon_sym_COLON, + STATE(1822), 2, sym_comment, sym_include, - ACTIONS(121), 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(1195), 5, + aux_sym_function_call_token1, + aux_sym_query_tuning_token1, + aux_sym_query_tuning_token2, + aux_sym_query_tuning_token3, + aux_sym_query_tuning_token4, + [92743] = 17, + 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(2113), 1, + aux_sym_on_error_phrase_token1, + ACTIONS(2117), 1, + aux_sym_sort_clause_token1, + ACTIONS(2119), 1, + aux_sym_sort_clause_token2, + STATE(1820), 1, + aux_sym_for_phrase_repeat1, + STATE(2019), 1, + sym_query_tuning, + STATE(2163), 1, + aux_sym_for_phrase_repeat2, + STATE(2934), 1, + sym_sort_clause, + STATE(2979), 1, + sym_on_error_phrase, + STATE(3017), 1, + sym_on_quit_phrase, + STATE(4120), 1, + sym_on_stop_phrase, + ACTIONS(2455), 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, - [92361] = 5, + STATE(1823), 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, + [92801] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - STATE(1809), 2, + STATE(1824), 2, sym_comment, sym_include, - ACTIONS(139), 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, - [92395] = 5, - ACTIONS(59), 1, - anon_sym_SLASH_SLASH, - ACTIONS(61), 1, - anon_sym_SLASH_STAR, - ACTIONS(65), 1, - anon_sym_LBRACE, - STATE(1810), 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, - [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(329), 1, - aux_sym_qualified_name_repeat1, - STATE(1811), 2, - sym_comment, - sym_include, - ACTIONS(2608), 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, - [92467] = 5, - ACTIONS(59), 1, - anon_sym_SLASH_SLASH, - ACTIONS(61), 1, - anon_sym_SLASH_STAR, - ACTIONS(65), 1, - anon_sym_LBRACE, - STATE(1812), 2, - sym_comment, - sym_include, - ACTIONS(147), 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, - [92501] = 17, - 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(2109), 1, - aux_sym_on_error_phrase_token1, - ACTIONS(2113), 1, - aux_sym_sort_clause_token1, - ACTIONS(2115), 1, - aux_sym_sort_clause_token2, - STATE(1935), 1, - aux_sym_for_phrase_repeat1, - STATE(1953), 1, - sym_query_tuning, - STATE(2199), 1, - aux_sym_for_phrase_repeat2, - STATE(2783), 1, - sym_sort_clause, - STATE(2857), 1, - sym_on_error_phrase, - STATE(2970), 1, - sym_on_quit_phrase, - STATE(3969), 1, - sym_on_stop_phrase, - ACTIONS(2449), 2, - anon_sym_COMMA, - anon_sym_COLON, - 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(1814), 2, - sym_comment, - sym_include, - ACTIONS(2610), 18, + ACTIONS(2616), 18, sym__terminator, aux_sym_input_stream_tuning_token1, aux_sym_input_stream_tuning_token2, @@ -123525,58 +124437,17 @@ 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, - [92593] = 17, - 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(2109), 1, - aux_sym_on_error_phrase_token1, - ACTIONS(2113), 1, - aux_sym_sort_clause_token1, - ACTIONS(2115), 1, - aux_sym_sort_clause_token2, - STATE(1935), 1, - aux_sym_for_phrase_repeat1, - STATE(1953), 1, - sym_query_tuning, - STATE(2161), 1, - aux_sym_for_phrase_repeat2, - STATE(2736), 1, - sym_on_error_phrase, - STATE(2783), 1, - sym_sort_clause, - STATE(3011), 1, - sym_on_quit_phrase, - STATE(3737), 1, - sym_on_stop_phrase, - ACTIONS(2612), 2, - anon_sym_COMMA, - anon_sym_COLON, - STATE(1815), 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, - [92651] = 5, + [92835] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - STATE(1816), 2, + STATE(1825), 2, sym_comment, sym_include, - ACTIONS(2537), 18, + ACTIONS(2487), 18, sym__terminator, aux_sym_input_stream_tuning_token1, aux_sym_input_stream_tuning_token2, @@ -123595,7 +124466,7 @@ 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, - [92685] = 17, + [92869] = 17, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, @@ -123604,30 +124475,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, ACTIONS(1201), 1, aux_sym_query_tuning_token5, - ACTIONS(2109), 1, - aux_sym_on_error_phrase_token1, ACTIONS(2113), 1, + aux_sym_on_error_phrase_token1, + ACTIONS(2117), 1, aux_sym_sort_clause_token1, - ACTIONS(2115), 1, + ACTIONS(2119), 1, aux_sym_sort_clause_token2, - STATE(1935), 1, + STATE(1948), 1, aux_sym_for_phrase_repeat1, - STATE(1953), 1, + STATE(2019), 1, sym_query_tuning, - STATE(2145), 1, + STATE(2204), 1, aux_sym_for_phrase_repeat2, - STATE(2744), 1, + STATE(2896), 1, sym_on_error_phrase, - STATE(2783), 1, + STATE(2934), 1, sym_sort_clause, - STATE(3034), 1, + STATE(3054), 1, sym_on_quit_phrase, - STATE(3726), 1, + STATE(3971), 1, sym_on_stop_phrase, ACTIONS(2614), 2, anon_sym_COMMA, anon_sym_COLON, - STATE(1817), 2, + STATE(1826), 2, sym_comment, sym_include, ACTIONS(1195), 5, @@ -123636,7 +124507,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_query_tuning_token2, aux_sym_query_tuning_token3, aux_sym_query_tuning_token4, - [92743] = 17, + [92927] = 17, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, @@ -123645,30 +124516,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, ACTIONS(1201), 1, aux_sym_query_tuning_token5, - ACTIONS(2109), 1, - aux_sym_on_error_phrase_token1, ACTIONS(2113), 1, + aux_sym_on_error_phrase_token1, + ACTIONS(2117), 1, aux_sym_sort_clause_token1, - ACTIONS(2115), 1, + ACTIONS(2119), 1, aux_sym_sort_clause_token2, - STATE(1815), 1, + STATE(1948), 1, aux_sym_for_phrase_repeat1, - STATE(1953), 1, + STATE(2019), 1, sym_query_tuning, - STATE(2145), 1, + STATE(2161), 1, aux_sym_for_phrase_repeat2, - STATE(2744), 1, + STATE(2793), 1, sym_on_error_phrase, - STATE(2783), 1, + STATE(2934), 1, sym_sort_clause, - STATE(3034), 1, + STATE(3003), 1, sym_on_quit_phrase, - STATE(3726), 1, + STATE(3919), 1, sym_on_stop_phrase, - ACTIONS(2614), 2, + ACTIONS(2618), 2, anon_sym_COMMA, anon_sym_COLON, - STATE(1818), 2, + STATE(1827), 2, sym_comment, sym_include, ACTIONS(1195), 5, @@ -123677,72 +124548,66 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_query_tuning_token2, aux_sym_query_tuning_token3, aux_sym_query_tuning_token4, - [92801] = 18, - ACTIONS(3), 1, + [92985] = 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(2616), 1, - sym_identifier, - ACTIONS(2618), 1, - anon_sym_COLON, ACTIONS(2620), 1, - aux_sym_while_phrase_token1, + aux_sym__block_terminator_token1, ACTIONS(2622), 1, - aux_sym_on_error_phrase_token1, + aux_sym_variable_definition_token1, ACTIONS(2624), 1, - aux_sym_stop_after_phrase_token1, + aux_sym_variable_definition_token2, ACTIONS(2626), 1, - aux_sym_do_tuning_token1, - STATE(1950), 1, - sym_to_phrase, - STATE(2188), 1, - aux_sym_do_block_repeat1, - STATE(2190), 1, - sym_while_phrase, - STATE(2917), 1, - sym_stop_after_phrase, - STATE(2944), 1, - sym_do_tuning, - STATE(4680), 1, - sym_assignment, - STATE(1819), 2, + aux_sym_method_definition_token1, + ACTIONS(2628), 1, + aux_sym_constructor_definition_token1, + STATE(1864), 1, + aux_sym_class_body_repeat1, + STATE(4519), 1, + sym_class_body, + STATE(1828), 2, sym_comment, sym_include, - STATE(4733), 2, - sym_qualified_name, - sym_object_access, - STATE(4247), 3, - sym_on_error_phrase, - sym_on_stop_phrase, - sym_on_quit_phrase, - [92860] = 12, + STATE(2901), 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, + [93032] = 12, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2628), 1, - aux_sym__block_terminator_token1, - ACTIONS(2630), 1, + ACTIONS(2622), 1, aux_sym_variable_definition_token1, - ACTIONS(2632), 1, + ACTIONS(2624), 1, aux_sym_variable_definition_token2, - ACTIONS(2634), 1, + ACTIONS(2626), 1, aux_sym_method_definition_token1, - ACTIONS(2636), 1, + ACTIONS(2628), 1, aux_sym_constructor_definition_token1, - STATE(1844), 1, + ACTIONS(2630), 1, + aux_sym__block_terminator_token1, + STATE(1864), 1, aux_sym_class_body_repeat1, - STATE(4328), 1, + STATE(4510), 1, sym_class_body, - STATE(1820), 2, + STATE(1829), 2, sym_comment, sym_include, - STATE(2747), 10, + STATE(2901), 10, sym_variable_definition, sym_buffer_definition, sym_query_definition, @@ -123753,72 +124618,107 @@ static const uint16_t ts_small_parse_table[] = { sym_constructor_definition, sym_temp_table_definition, sym_data_source_definition, - [92907] = 18, + [93079] = 18, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(2616), 1, + ACTIONS(2632), 1, sym_identifier, - ACTIONS(2620), 1, + ACTIONS(2634), 1, + anon_sym_COLON, + ACTIONS(2636), 1, aux_sym_while_phrase_token1, - ACTIONS(2622), 1, + ACTIONS(2638), 1, aux_sym_on_error_phrase_token1, - ACTIONS(2624), 1, + ACTIONS(2640), 1, aux_sym_stop_after_phrase_token1, - ACTIONS(2626), 1, + ACTIONS(2642), 1, aux_sym_do_tuning_token1, - ACTIONS(2638), 1, - anon_sym_COLON, - STATE(2000), 1, + STATE(1998), 1, sym_to_phrase, - STATE(2176), 1, - sym_while_phrase, - STATE(2178), 1, + STATE(2212), 1, aux_sym_do_block_repeat1, - STATE(2860), 1, + STATE(2217), 1, + sym_while_phrase, + STATE(2803), 1, sym_stop_after_phrase, - STATE(2944), 1, + STATE(3074), 1, sym_do_tuning, - STATE(4680), 1, + STATE(4760), 1, sym_assignment, - STATE(1821), 2, + STATE(1830), 2, sym_comment, sym_include, - STATE(4733), 2, + STATE(4814), 2, sym_qualified_name, sym_object_access, - STATE(4532), 3, + STATE(4577), 3, sym_on_error_phrase, sym_on_stop_phrase, sym_on_quit_phrase, - [92966] = 12, + [93138] = 12, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2630), 1, + ACTIONS(1458), 1, + aux_sym_variable_definition_token4, + ACTIONS(1462), 1, + aux_sym_function_parameter_token1, + ACTIONS(1468), 1, + aux_sym_data_source_definition_token1, + STATE(4322), 1, + sym_access_tuning, + ACTIONS(1460), 2, + aux_sym_buffer_definition_token1, + aux_sym_query_definition_token1, + STATE(1831), 2, + sym_comment, + sym_include, + ACTIONS(2644), 3, + aux_sym_access_tuning_token1, + aux_sym_access_tuning_token2, + aux_sym_access_tuning_token3, + ACTIONS(1450), 4, + aux_sym_scope_tuning_token1, + aux_sym_scope_tuning_token2, + aux_sym_scope_tuning_token3, + aux_sym_scope_tuning_token4, + ACTIONS(1456), 4, + aux_sym_serialization_tuning_token1, + aux_sym_serialization_tuning_token2, + aux_sym_variable_definition_token3, + aux_sym_buffer_definition_token3, + [93185] = 12, + 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_variable_definition_token1, - ACTIONS(2632), 1, + ACTIONS(2624), 1, aux_sym_variable_definition_token2, - ACTIONS(2634), 1, + ACTIONS(2626), 1, aux_sym_method_definition_token1, - ACTIONS(2636), 1, + ACTIONS(2628), 1, aux_sym_constructor_definition_token1, - ACTIONS(2640), 1, + ACTIONS(2648), 1, aux_sym__block_terminator_token1, - STATE(1844), 1, + STATE(1864), 1, aux_sym_class_body_repeat1, - STATE(4240), 1, + STATE(4337), 1, sym_class_body, - STATE(1822), 2, + STATE(1832), 2, sym_comment, sym_include, - STATE(2747), 10, + STATE(2901), 10, sym_variable_definition, sym_buffer_definition, sym_query_definition, @@ -123829,31 +124729,72 @@ static const uint16_t ts_small_parse_table[] = { sym_constructor_definition, sym_temp_table_definition, sym_data_source_definition, - [93013] = 12, + [93232] = 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(2650), 1, + anon_sym_COLON, + STATE(2000), 1, + sym_to_phrase, + STATE(2177), 1, + sym_while_phrase, + STATE(2182), 1, + aux_sym_do_block_repeat1, + STATE(2836), 1, + sym_stop_after_phrase, + STATE(3074), 1, + sym_do_tuning, + STATE(4760), 1, + sym_assignment, + STATE(1833), 2, + sym_comment, + sym_include, + STATE(4814), 2, + sym_qualified_name, + sym_object_access, + STATE(4435), 3, + sym_on_error_phrase, + sym_on_stop_phrase, + sym_on_quit_phrase, + [93291] = 12, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2630), 1, + ACTIONS(2622), 1, aux_sym_variable_definition_token1, - ACTIONS(2632), 1, + ACTIONS(2624), 1, aux_sym_variable_definition_token2, - ACTIONS(2634), 1, + ACTIONS(2626), 1, aux_sym_method_definition_token1, - ACTIONS(2636), 1, + ACTIONS(2628), 1, aux_sym_constructor_definition_token1, - ACTIONS(2642), 1, + ACTIONS(2652), 1, aux_sym__block_terminator_token1, - STATE(1844), 1, + STATE(1864), 1, aux_sym_class_body_repeat1, - STATE(4510), 1, + STATE(4394), 1, sym_class_body, - STATE(1823), 2, + STATE(1834), 2, sym_comment, sym_include, - STATE(2747), 10, + STATE(2901), 10, sym_variable_definition, sym_buffer_definition, sym_query_definition, @@ -123864,189 +124805,195 @@ static const uint16_t ts_small_parse_table[] = { sym_constructor_definition, sym_temp_table_definition, sym_data_source_definition, - [93060] = 18, + [93338] = 18, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(2616), 1, + ACTIONS(2632), 1, sym_identifier, - ACTIONS(2620), 1, + ACTIONS(2636), 1, aux_sym_while_phrase_token1, - ACTIONS(2622), 1, + ACTIONS(2638), 1, aux_sym_on_error_phrase_token1, - ACTIONS(2624), 1, + ACTIONS(2640), 1, aux_sym_stop_after_phrase_token1, - ACTIONS(2626), 1, + ACTIONS(2642), 1, aux_sym_do_tuning_token1, - ACTIONS(2644), 1, + ACTIONS(2654), 1, anon_sym_COLON, - STATE(1964), 1, + STATE(2017), 1, sym_to_phrase, - STATE(2193), 1, - sym_while_phrase, - STATE(2197), 1, + STATE(2205), 1, aux_sym_do_block_repeat1, - STATE(2758), 1, + STATE(2223), 1, + sym_while_phrase, + STATE(2787), 1, sym_stop_after_phrase, - STATE(2944), 1, + STATE(3074), 1, sym_do_tuning, - STATE(4680), 1, + STATE(4760), 1, sym_assignment, - STATE(1824), 2, + STATE(1835), 2, sym_comment, sym_include, - STATE(4733), 2, + STATE(4814), 2, sym_qualified_name, sym_object_access, - STATE(4095), 3, + STATE(4704), 3, sym_on_error_phrase, sym_on_stop_phrase, sym_on_quit_phrase, - [93119] = 18, + [93397] = 18, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(2616), 1, + ACTIONS(2632), 1, sym_identifier, - ACTIONS(2620), 1, + ACTIONS(2636), 1, aux_sym_while_phrase_token1, - ACTIONS(2622), 1, + ACTIONS(2638), 1, aux_sym_on_error_phrase_token1, - ACTIONS(2624), 1, + ACTIONS(2640), 1, aux_sym_stop_after_phrase_token1, - ACTIONS(2626), 1, + ACTIONS(2642), 1, aux_sym_do_tuning_token1, - ACTIONS(2646), 1, + ACTIONS(2656), 1, anon_sym_COLON, - STATE(1990), 1, + STATE(1988), 1, sym_to_phrase, - STATE(2182), 1, + STATE(2221), 1, aux_sym_do_block_repeat1, - STATE(2185), 1, + STATE(2232), 1, sym_while_phrase, - STATE(2880), 1, + STATE(2965), 1, sym_stop_after_phrase, - STATE(2944), 1, + STATE(3074), 1, sym_do_tuning, - STATE(4680), 1, + STATE(4760), 1, sym_assignment, - STATE(1825), 2, + STATE(1836), 2, sym_comment, sym_include, - STATE(4733), 2, + STATE(4814), 2, sym_qualified_name, sym_object_access, - STATE(4559), 3, + STATE(4360), 3, sym_on_error_phrase, sym_on_stop_phrase, sym_on_quit_phrase, - [93178] = 12, - ACTIONS(59), 1, + [93456] = 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(2630), 1, - aux_sym_variable_definition_token1, ACTIONS(2632), 1, - aux_sym_variable_definition_token2, - ACTIONS(2634), 1, - aux_sym_method_definition_token1, + sym_identifier, ACTIONS(2636), 1, - aux_sym_constructor_definition_token1, - ACTIONS(2648), 1, - aux_sym__block_terminator_token1, - STATE(1844), 1, - aux_sym_class_body_repeat1, - STATE(4215), 1, - sym_class_body, - STATE(1826), 2, + 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(2001), 1, + sym_to_phrase, + STATE(2176), 1, + sym_while_phrase, + STATE(2183), 1, + aux_sym_do_block_repeat1, + STATE(2858), 1, + sym_stop_after_phrase, + STATE(3074), 1, + sym_do_tuning, + STATE(4760), 1, + sym_assignment, + STATE(1837), 2, sym_comment, sym_include, - STATE(2747), 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, - [93225] = 18, + STATE(4814), 2, + sym_qualified_name, + sym_object_access, + STATE(4391), 3, + sym_on_error_phrase, + sym_on_stop_phrase, + sym_on_quit_phrase, + [93515] = 18, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(2616), 1, + ACTIONS(2632), 1, sym_identifier, - ACTIONS(2620), 1, + ACTIONS(2636), 1, aux_sym_while_phrase_token1, - ACTIONS(2622), 1, + ACTIONS(2638), 1, aux_sym_on_error_phrase_token1, - ACTIONS(2624), 1, + ACTIONS(2640), 1, aux_sym_stop_after_phrase_token1, - ACTIONS(2626), 1, + ACTIONS(2642), 1, aux_sym_do_tuning_token1, - ACTIONS(2650), 1, + ACTIONS(2660), 1, anon_sym_COLON, - STATE(1982), 1, + STATE(2031), 1, sym_to_phrase, - STATE(2171), 1, + STATE(2167), 1, aux_sym_do_block_repeat1, - STATE(2173), 1, + STATE(2171), 1, sym_while_phrase, - STATE(2846), 1, + STATE(2930), 1, sym_stop_after_phrase, - STATE(2944), 1, + STATE(3074), 1, sym_do_tuning, - STATE(4680), 1, + STATE(4760), 1, sym_assignment, - STATE(1827), 2, + STATE(1838), 2, sym_comment, sym_include, - STATE(4733), 2, + STATE(4814), 2, sym_qualified_name, sym_object_access, - STATE(4289), 3, + STATE(4678), 3, sym_on_error_phrase, sym_on_stop_phrase, sym_on_quit_phrase, - [93284] = 12, + [93574] = 12, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2630), 1, + ACTIONS(2622), 1, aux_sym_variable_definition_token1, - ACTIONS(2632), 1, + ACTIONS(2624), 1, aux_sym_variable_definition_token2, - ACTIONS(2634), 1, + ACTIONS(2626), 1, aux_sym_method_definition_token1, - ACTIONS(2636), 1, + ACTIONS(2628), 1, aux_sym_constructor_definition_token1, - ACTIONS(2652), 1, + ACTIONS(2662), 1, aux_sym__block_terminator_token1, - STATE(1844), 1, + STATE(1864), 1, aux_sym_class_body_repeat1, - STATE(4361), 1, + STATE(4224), 1, sym_class_body, - STATE(1828), 2, + STATE(1839), 2, sym_comment, sym_include, - STATE(2747), 10, + STATE(2901), 10, sym_variable_definition, sym_buffer_definition, sym_query_definition, @@ -124057,72 +125004,31 @@ static const uint16_t ts_small_parse_table[] = { sym_constructor_definition, sym_temp_table_definition, sym_data_source_definition, - [93331] = 18, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - ACTIONS(7), 1, - anon_sym_LBRACE, - ACTIONS(2616), 1, - sym_identifier, - ACTIONS(2620), 1, - aux_sym_while_phrase_token1, - ACTIONS(2622), 1, - aux_sym_on_error_phrase_token1, - ACTIONS(2624), 1, - aux_sym_stop_after_phrase_token1, - ACTIONS(2626), 1, - aux_sym_do_tuning_token1, - ACTIONS(2654), 1, - anon_sym_COLON, - STATE(2021), 1, - sym_to_phrase, - STATE(2148), 1, - sym_while_phrase, - STATE(2149), 1, - aux_sym_do_block_repeat1, - STATE(2784), 1, - sym_stop_after_phrase, - STATE(2944), 1, - sym_do_tuning, - STATE(4680), 1, - sym_assignment, - STATE(1829), 2, - sym_comment, - sym_include, - STATE(4733), 2, - sym_qualified_name, - sym_object_access, - STATE(4414), 3, - sym_on_error_phrase, - sym_on_stop_phrase, - sym_on_quit_phrase, - [93390] = 12, + [93621] = 12, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2630), 1, + ACTIONS(2622), 1, aux_sym_variable_definition_token1, - ACTIONS(2632), 1, + ACTIONS(2624), 1, aux_sym_variable_definition_token2, - ACTIONS(2634), 1, + ACTIONS(2626), 1, aux_sym_method_definition_token1, - ACTIONS(2636), 1, + ACTIONS(2628), 1, aux_sym_constructor_definition_token1, - ACTIONS(2656), 1, + ACTIONS(2664), 1, aux_sym__block_terminator_token1, - STATE(1844), 1, + STATE(1864), 1, aux_sym_class_body_repeat1, - STATE(4316), 1, + STATE(4412), 1, sym_class_body, - STATE(1830), 2, + STATE(1840), 2, sym_comment, sym_include, - STATE(2747), 10, + STATE(2901), 10, sym_variable_definition, sym_buffer_definition, sym_query_definition, @@ -124133,113 +125039,113 @@ static const uint16_t ts_small_parse_table[] = { sym_constructor_definition, sym_temp_table_definition, sym_data_source_definition, - [93437] = 18, + [93668] = 18, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(2616), 1, + ACTIONS(2632), 1, sym_identifier, - ACTIONS(2620), 1, + ACTIONS(2636), 1, aux_sym_while_phrase_token1, - ACTIONS(2622), 1, + ACTIONS(2638), 1, aux_sym_on_error_phrase_token1, - ACTIONS(2624), 1, + ACTIONS(2640), 1, aux_sym_stop_after_phrase_token1, - ACTIONS(2626), 1, + ACTIONS(2642), 1, aux_sym_do_tuning_token1, - ACTIONS(2658), 1, + ACTIONS(2666), 1, anon_sym_COLON, - STATE(1971), 1, + STATE(1969), 1, sym_to_phrase, - STATE(2191), 1, + STATE(2155), 1, aux_sym_do_block_repeat1, - STATE(2195), 1, + STATE(2157), 1, sym_while_phrase, - STATE(2884), 1, + STATE(2853), 1, sym_stop_after_phrase, - STATE(2944), 1, + STATE(3074), 1, sym_do_tuning, - STATE(4680), 1, + STATE(4760), 1, sym_assignment, - STATE(1831), 2, + STATE(1841), 2, sym_comment, sym_include, - STATE(4733), 2, + STATE(4814), 2, sym_qualified_name, sym_object_access, - STATE(4672), 3, + STATE(4197), 3, sym_on_error_phrase, sym_on_stop_phrase, sym_on_quit_phrase, - [93496] = 18, + [93727] = 18, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(2616), 1, + ACTIONS(2632), 1, sym_identifier, - ACTIONS(2620), 1, + ACTIONS(2636), 1, aux_sym_while_phrase_token1, - ACTIONS(2622), 1, + ACTIONS(2638), 1, aux_sym_on_error_phrase_token1, - ACTIONS(2624), 1, + ACTIONS(2640), 1, aux_sym_stop_after_phrase_token1, - ACTIONS(2626), 1, + ACTIONS(2642), 1, aux_sym_do_tuning_token1, - ACTIONS(2660), 1, + ACTIONS(2668), 1, anon_sym_COLON, - STATE(1997), 1, + STATE(1971), 1, sym_to_phrase, - STATE(2179), 1, - sym_while_phrase, - STATE(2181), 1, + STATE(2148), 1, aux_sym_do_block_repeat1, - STATE(2867), 1, + STATE(2196), 1, + sym_while_phrase, + STATE(2796), 1, sym_stop_after_phrase, - STATE(2944), 1, + STATE(3074), 1, sym_do_tuning, - STATE(4680), 1, + STATE(4760), 1, sym_assignment, - STATE(1832), 2, + STATE(1842), 2, sym_comment, sym_include, - STATE(4733), 2, + STATE(4814), 2, sym_qualified_name, sym_object_access, - STATE(4273), 3, + STATE(4212), 3, sym_on_error_phrase, sym_on_stop_phrase, sym_on_quit_phrase, - [93555] = 12, + [93786] = 12, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2630), 1, + ACTIONS(2622), 1, aux_sym_variable_definition_token1, - ACTIONS(2632), 1, + ACTIONS(2624), 1, aux_sym_variable_definition_token2, - ACTIONS(2634), 1, + ACTIONS(2626), 1, aux_sym_method_definition_token1, - ACTIONS(2636), 1, + ACTIONS(2628), 1, aux_sym_constructor_definition_token1, - ACTIONS(2662), 1, + ACTIONS(2670), 1, aux_sym__block_terminator_token1, - STATE(1844), 1, + STATE(1864), 1, aux_sym_class_body_repeat1, - STATE(4158), 1, + STATE(4400), 1, sym_class_body, - STATE(1833), 2, + STATE(1843), 2, sym_comment, sym_include, - STATE(2747), 10, + STATE(2901), 10, sym_variable_definition, sym_buffer_definition, sym_query_definition, @@ -124250,31 +125156,31 @@ static const uint16_t ts_small_parse_table[] = { sym_constructor_definition, sym_temp_table_definition, sym_data_source_definition, - [93602] = 12, + [93833] = 12, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2630), 1, + ACTIONS(2622), 1, aux_sym_variable_definition_token1, - ACTIONS(2632), 1, + ACTIONS(2624), 1, aux_sym_variable_definition_token2, - ACTIONS(2634), 1, + ACTIONS(2626), 1, aux_sym_method_definition_token1, - ACTIONS(2636), 1, + ACTIONS(2628), 1, aux_sym_constructor_definition_token1, - ACTIONS(2664), 1, + ACTIONS(2672), 1, aux_sym__block_terminator_token1, - STATE(1844), 1, + STATE(1864), 1, aux_sym_class_body_repeat1, - STATE(4439), 1, + STATE(4434), 1, sym_class_body, - STATE(1834), 2, + STATE(1844), 2, sym_comment, sym_include, - STATE(2747), 10, + STATE(2901), 10, sym_variable_definition, sym_buffer_definition, sym_query_definition, @@ -124285,107 +125191,66 @@ static const uint16_t ts_small_parse_table[] = { sym_constructor_definition, sym_temp_table_definition, sym_data_source_definition, - [93649] = 18, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - ACTIONS(7), 1, - anon_sym_LBRACE, - ACTIONS(2616), 1, - sym_identifier, - ACTIONS(2620), 1, - aux_sym_while_phrase_token1, - ACTIONS(2622), 1, - aux_sym_on_error_phrase_token1, - ACTIONS(2624), 1, - aux_sym_stop_after_phrase_token1, - ACTIONS(2626), 1, - aux_sym_do_tuning_token1, - ACTIONS(2666), 1, - anon_sym_COLON, - STATE(1975), 1, - sym_to_phrase, - STATE(2207), 1, - sym_while_phrase, - STATE(2215), 1, - aux_sym_do_block_repeat1, - STATE(2775), 1, - sym_stop_after_phrase, - STATE(2944), 1, - sym_do_tuning, - STATE(4680), 1, - sym_assignment, - STATE(1835), 2, - sym_comment, - sym_include, - STATE(4733), 2, - sym_qualified_name, - sym_object_access, - STATE(4116), 3, - sym_on_error_phrase, - sym_on_stop_phrase, - sym_on_quit_phrase, - [93708] = 12, + [93880] = 12, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(1448), 1, - aux_sym_variable_definition_token4, - ACTIONS(1452), 1, - aux_sym_function_parameter_token1, - ACTIONS(1458), 1, - aux_sym_data_source_definition_token1, - STATE(4211), 1, - sym_access_tuning, - ACTIONS(1450), 2, - aux_sym_buffer_definition_token1, - aux_sym_query_definition_token1, - STATE(1836), 2, + ACTIONS(2622), 1, + aux_sym_variable_definition_token1, + ACTIONS(2624), 1, + aux_sym_variable_definition_token2, + ACTIONS(2626), 1, + aux_sym_method_definition_token1, + ACTIONS(2628), 1, + aux_sym_constructor_definition_token1, + ACTIONS(2674), 1, + aux_sym__block_terminator_token1, + STATE(1864), 1, + aux_sym_class_body_repeat1, + STATE(4666), 1, + sym_class_body, + STATE(1845), 2, sym_comment, sym_include, - ACTIONS(2668), 3, - aux_sym_access_tuning_token1, - aux_sym_access_tuning_token2, - aux_sym_access_tuning_token3, - ACTIONS(1440), 4, - aux_sym_scope_tuning_token1, - aux_sym_scope_tuning_token2, - aux_sym_scope_tuning_token3, - aux_sym_scope_tuning_token4, - ACTIONS(1446), 4, - aux_sym_serialization_tuning_token1, - aux_sym_serialization_tuning_token2, - aux_sym_variable_definition_token3, - aux_sym_buffer_definition_token3, - [93755] = 12, + STATE(2901), 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, + [93927] = 12, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2630), 1, + ACTIONS(2622), 1, aux_sym_variable_definition_token1, - ACTIONS(2632), 1, + ACTIONS(2624), 1, aux_sym_variable_definition_token2, - ACTIONS(2634), 1, + ACTIONS(2626), 1, aux_sym_method_definition_token1, - ACTIONS(2636), 1, + ACTIONS(2628), 1, aux_sym_constructor_definition_token1, - ACTIONS(2672), 1, + ACTIONS(2676), 1, aux_sym__block_terminator_token1, - STATE(1844), 1, + STATE(1864), 1, aux_sym_class_body_repeat1, - STATE(4473), 1, + STATE(4600), 1, sym_class_body, - STATE(1837), 2, + STATE(1846), 2, sym_comment, sym_include, - STATE(2747), 10, + STATE(2901), 10, sym_variable_definition, sym_buffer_definition, sym_query_definition, @@ -124396,83 +125261,229 @@ static const uint16_t ts_small_parse_table[] = { sym_constructor_definition, sym_temp_table_definition, sym_data_source_definition, - [93802] = 18, + [93974] = 18, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(2616), 1, + ACTIONS(2632), 1, sym_identifier, - ACTIONS(2620), 1, + ACTIONS(2636), 1, aux_sym_while_phrase_token1, - ACTIONS(2622), 1, + ACTIONS(2638), 1, aux_sym_on_error_phrase_token1, - ACTIONS(2624), 1, + ACTIONS(2640), 1, aux_sym_stop_after_phrase_token1, - ACTIONS(2626), 1, + ACTIONS(2642), 1, aux_sym_do_tuning_token1, - ACTIONS(2674), 1, + ACTIONS(2678), 1, anon_sym_COLON, - STATE(1969), 1, + STATE(2012), 1, sym_to_phrase, - STATE(2169), 1, - sym_while_phrase, STATE(2170), 1, + sym_while_phrase, + STATE(2180), 1, aux_sym_do_block_repeat1, - STATE(2829), 1, + STATE(2871), 1, sym_stop_after_phrase, - STATE(2944), 1, + STATE(3074), 1, sym_do_tuning, - STATE(4680), 1, + STATE(4760), 1, sym_assignment, - STATE(1838), 2, + STATE(1847), 2, sym_comment, sym_include, - STATE(4733), 2, + STATE(4814), 2, + sym_qualified_name, + sym_object_access, + STATE(4715), 3, + sym_on_error_phrase, + sym_on_stop_phrase, + sym_on_quit_phrase, + [94033] = 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(2680), 1, + anon_sym_COLON, + STATE(1995), 1, + sym_to_phrase, + STATE(2203), 1, + aux_sym_do_block_repeat1, + STATE(2207), 1, + sym_while_phrase, + STATE(2890), 1, + sym_stop_after_phrase, + STATE(3074), 1, + sym_do_tuning, + STATE(4760), 1, + sym_assignment, + STATE(1848), 2, + sym_comment, + sym_include, + STATE(4814), 2, sym_qualified_name, sym_object_access, - STATE(4319), 3, + STATE(4402), 3, sym_on_error_phrase, sym_on_stop_phrase, sym_on_quit_phrase, - [93861] = 12, + [94092] = 10, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2630), 1, - aux_sym_variable_definition_token1, - ACTIONS(2632), 1, + ACTIONS(2687), 1, + aux_sym_variable_tuning_token6, + ACTIONS(2690), 1, aux_sym_variable_definition_token2, - ACTIONS(2634), 1, + ACTIONS(2692), 1, + aux_sym_property_tuning_token1, + STATE(1885), 1, + sym_property_tuning, + ACTIONS(2684), 2, + aux_sym_variable_tuning_token1, + aux_sym_variable_tuning_token5, + STATE(1849), 3, + sym_comment, + sym_include, + aux_sym_property_definition_repeat2, + ACTIONS(2682), 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, - ACTIONS(2636), 1, aux_sym_constructor_definition_token1, - ACTIONS(2676), 1, - aux_sym__block_terminator_token1, - STATE(1844), 1, - aux_sym_class_body_repeat1, - STATE(4125), 1, - sym_class_body, - STATE(1839), 2, + [94134] = 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(2695), 1, + aux_sym_serialization_tuning_token1, + ACTIONS(2697), 1, + anon_sym_COLON, + ACTIONS(2699), 1, + aux_sym_property_type_token1, + ACTIONS(2701), 1, + aux_sym_method_tuning_token1, + ACTIONS(2703), 1, + aux_sym_inherits_token1, + ACTIONS(2705), 1, + aux_sym_implements_token1, + ACTIONS(2707), 1, + aux_sym_use_widget_pool_token1, + STATE(336), 1, + aux_sym_qualified_name_repeat1, + STATE(1921), 1, + aux_sym_class_statement_repeat1, + STATE(1850), 2, sym_comment, sym_include, - STATE(2747), 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, - [93908] = 16, + STATE(2440), 6, + sym_inherits, + sym_implements, + sym_use_widget_pool, + sym_abstract, + sym_final, + sym_serializable, + [94186] = 12, + ACTIONS(59), 1, + anon_sym_SLASH_SLASH, + ACTIONS(61), 1, + anon_sym_SLASH_STAR, + ACTIONS(65), 1, + anon_sym_LBRACE, + ACTIONS(2709), 1, + aux_sym_variable_definition_token3, + ACTIONS(2711), 1, + aux_sym_variable_definition_token4, + ACTIONS(2713), 1, + aux_sym_buffer_definition_token3, + STATE(1877), 1, + aux_sym_variable_definition_repeat1, + ACTIONS(1362), 2, + aux_sym_serialization_tuning_token1, + aux_sym_serialization_tuning_token2, + STATE(1851), 2, + sym_comment, + sym_include, + ACTIONS(1360), 3, + aux_sym_access_tuning_token1, + aux_sym_access_tuning_token2, + aux_sym_access_tuning_token3, + STATE(2005), 3, + sym_scope_tuning, + sym_access_tuning, + sym_serialization_tuning, + ACTIONS(1358), 4, + aux_sym_scope_tuning_token1, + aux_sym_scope_tuning_token2, + aux_sym_scope_tuning_token3, + aux_sym_scope_tuning_token4, + [94232] = 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(2695), 1, + aux_sym_serialization_tuning_token1, + ACTIONS(2699), 1, + aux_sym_property_type_token1, + ACTIONS(2701), 1, + aux_sym_method_tuning_token1, + ACTIONS(2703), 1, + aux_sym_inherits_token1, + ACTIONS(2705), 1, + aux_sym_implements_token1, + ACTIONS(2707), 1, + aux_sym_use_widget_pool_token1, + ACTIONS(2715), 1, + anon_sym_COLON, + STATE(336), 1, + aux_sym_qualified_name_repeat1, + STATE(1936), 1, + aux_sym_class_statement_repeat1, + STATE(1852), 2, + sym_comment, + sym_include, + STATE(2440), 6, + sym_inherits, + sym_implements, + sym_use_widget_pool, + sym_abstract, + sym_final, + sym_serializable, + [94284] = 16, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, @@ -124487,21 +125498,21 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_query_tuning_token5, ACTIONS(1203), 1, aux_sym_of_token1, - ACTIONS(2678), 1, + ACTIONS(2717), 1, sym__terminator, - STATE(329), 1, + STATE(336), 1, aux_sym_qualified_name_repeat1, - STATE(1946), 1, + STATE(1962), 1, sym_query_tuning, - STATE(1972), 1, + STATE(1990), 1, sym_of, - STATE(2101), 1, + STATE(2108), 1, sym__pre_tuning, - STATE(2247), 1, + STATE(2240), 1, aux_sym_for_phrase_repeat1, - STATE(2280), 1, + STATE(2243), 1, sym_where_clause, - STATE(1840), 2, + STATE(1853), 2, sym_comment, sym_include, ACTIONS(1195), 5, @@ -124510,39 +125521,75 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_query_tuning_token2, aux_sym_query_tuning_token3, aux_sym_query_tuning_token4, - [93962] = 10, + [94338] = 12, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_LBRACE, + ACTIONS(681), 1, + sym__namecolon, + ACTIONS(2721), 1, + anon_sym_LPAREN, + ACTIONS(2725), 1, + sym__namedot, + STATE(1975), 1, + aux_sym_qualified_name_repeat1, + STATE(2708), 1, + sym_sort_order, + STATE(3145), 1, + aux_sym_object_access_repeat1, + STATE(1854), 2, + sym_comment, + sym_include, + ACTIONS(2723), 4, + aux_sym_sort_order_token1, + aux_sym_sort_order_token2, + aux_sym_sort_order_token3, + aux_sym_sort_order_token4, + ACTIONS(2719), 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, + [94384] = 12, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2691), 1, + ACTIONS(2727), 1, + aux_sym_variable_definition_token3, + ACTIONS(2729), 1, aux_sym_variable_definition_token4, - ACTIONS(2686), 2, + ACTIONS(2731), 1, + aux_sym_buffer_definition_token3, + STATE(1877), 1, + aux_sym_variable_definition_repeat1, + ACTIONS(1362), 2, aux_sym_serialization_tuning_token1, aux_sym_serialization_tuning_token2, - ACTIONS(2689), 2, - aux_sym_variable_definition_token3, - aux_sym_buffer_definition_token3, - ACTIONS(2683), 3, + STATE(1855), 2, + sym_comment, + sym_include, + ACTIONS(1360), 3, aux_sym_access_tuning_token1, aux_sym_access_tuning_token2, aux_sym_access_tuning_token3, - STATE(1841), 3, - sym_comment, - sym_include, - aux_sym_variable_definition_repeat1, - STATE(1959), 3, + STATE(2005), 3, sym_scope_tuning, sym_access_tuning, sym_serialization_tuning, - ACTIONS(2680), 4, + ACTIONS(1358), 4, aux_sym_scope_tuning_token1, aux_sym_scope_tuning_token2, aux_sym_scope_tuning_token3, aux_sym_scope_tuning_token4, - [94004] = 16, + [94430] = 16, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, @@ -124557,21 +125604,21 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_query_tuning_token5, ACTIONS(1203), 1, aux_sym_of_token1, - ACTIONS(2693), 1, + ACTIONS(2733), 1, sym__terminator, - STATE(329), 1, + STATE(336), 1, aux_sym_qualified_name_repeat1, - STATE(1946), 1, + STATE(1962), 1, sym_query_tuning, - STATE(1995), 1, + STATE(1974), 1, sym_of, - STATE(2072), 1, + STATE(2064), 1, sym__pre_tuning, - STATE(2267), 1, - aux_sym_for_phrase_repeat1, - STATE(2269), 1, + STATE(2298), 1, sym_where_clause, - STATE(1842), 2, + STATE(2347), 1, + aux_sym_for_phrase_repeat1, + STATE(1856), 2, sym_comment, sym_include, ACTIONS(1195), 5, @@ -124580,72 +125627,71 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_query_tuning_token2, aux_sym_query_tuning_token3, aux_sym_query_tuning_token4, - [94058] = 10, + [94484] = 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(2695), 1, - aux_sym__block_terminator_token1, - ACTIONS(2697), 1, - aux_sym_variable_definition_token1, - ACTIONS(2700), 1, - aux_sym_variable_definition_token2, + aux_sym_serialization_tuning_token1, + ACTIONS(2699), 1, + aux_sym_property_type_token1, + ACTIONS(2701), 1, + aux_sym_method_tuning_token1, ACTIONS(2703), 1, - aux_sym_method_definition_token1, - ACTIONS(2706), 1, - aux_sym_constructor_definition_token1, - STATE(1843), 3, + aux_sym_inherits_token1, + ACTIONS(2705), 1, + aux_sym_implements_token1, + ACTIONS(2707), 1, + aux_sym_use_widget_pool_token1, + ACTIONS(2735), 1, + anon_sym_COLON, + STATE(336), 1, + aux_sym_qualified_name_repeat1, + STATE(1951), 1, + aux_sym_class_statement_repeat1, + STATE(1857), 2, sym_comment, sym_include, - aux_sym_class_body_repeat1, - STATE(2747), 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, - [94100] = 11, + STATE(2440), 6, + sym_inherits, + sym_implements, + sym_use_widget_pool, + sym_abstract, + sym_final, + sym_serializable, + [94536] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2630), 1, - aux_sym_variable_definition_token1, - ACTIONS(2632), 1, - aux_sym_variable_definition_token2, - ACTIONS(2634), 1, - aux_sym_method_definition_token1, - ACTIONS(2636), 1, - aux_sym_constructor_definition_token1, - ACTIONS(2709), 1, - aux_sym__block_terminator_token1, - STATE(1843), 1, - aux_sym_class_body_repeat1, - STATE(1844), 2, + STATE(1858), 2, sym_comment, sym_include, - STATE(2747), 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, - [94144] = 16, + ACTIONS(2737), 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, + [94568] = 16, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, @@ -124660,21 +125706,21 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_query_tuning_token5, ACTIONS(1203), 1, aux_sym_of_token1, - ACTIONS(2711), 1, + ACTIONS(2739), 1, sym__terminator, - STATE(329), 1, + STATE(336), 1, aux_sym_qualified_name_repeat1, - STATE(1946), 1, + STATE(1962), 1, sym_query_tuning, - STATE(2020), 1, + STATE(2016), 1, sym_of, - STATE(2023), 1, + STATE(2128), 1, sym__pre_tuning, - STATE(2251), 1, - aux_sym_for_phrase_repeat1, - STATE(2264), 1, + STATE(2295), 1, sym_where_clause, - STATE(1845), 2, + STATE(2301), 1, + aux_sym_for_phrase_repeat1, + STATE(1859), 2, sym_comment, sym_include, ACTIONS(1195), 5, @@ -124683,7 +125729,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_query_tuning_token2, aux_sym_query_tuning_token3, aux_sym_query_tuning_token4, - [94198] = 15, + [94622] = 15, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, @@ -124692,35 +125738,97 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, ACTIONS(679), 1, sym__namedot, - ACTIONS(2713), 1, + ACTIONS(2695), 1, aux_sym_serialization_tuning_token1, - ACTIONS(2715), 1, - anon_sym_COLON, - ACTIONS(2717), 1, + ACTIONS(2699), 1, aux_sym_property_type_token1, - ACTIONS(2719), 1, + ACTIONS(2701), 1, aux_sym_method_tuning_token1, - ACTIONS(2721), 1, + ACTIONS(2703), 1, aux_sym_inherits_token1, - ACTIONS(2723), 1, + ACTIONS(2705), 1, aux_sym_implements_token1, - ACTIONS(2725), 1, + ACTIONS(2707), 1, aux_sym_use_widget_pool_token1, - STATE(329), 1, + ACTIONS(2741), 1, + anon_sym_COLON, + STATE(336), 1, aux_sym_qualified_name_repeat1, - STATE(1929), 1, + STATE(1934), 1, aux_sym_class_statement_repeat1, - STATE(1846), 2, + STATE(1860), 2, sym_comment, sym_include, - STATE(2448), 6, + STATE(2440), 6, sym_inherits, sym_implements, sym_use_widget_pool, sym_abstract, sym_final, sym_serializable, - [94250] = 16, + [94674] = 6, + ACTIONS(59), 1, + anon_sym_SLASH_SLASH, + ACTIONS(61), 1, + anon_sym_SLASH_STAR, + ACTIONS(65), 1, + anon_sym_LBRACE, + ACTIONS(2745), 1, + aux_sym_variable_definition_token4, + STATE(1861), 2, + sym_comment, + sym_include, + ACTIONS(2743), 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, + [94708] = 12, + ACTIONS(59), 1, + anon_sym_SLASH_SLASH, + ACTIONS(61), 1, + anon_sym_SLASH_STAR, + ACTIONS(65), 1, + anon_sym_LBRACE, + ACTIONS(2747), 1, + aux_sym_variable_definition_token3, + ACTIONS(2749), 1, + aux_sym_variable_definition_token4, + ACTIONS(2751), 1, + aux_sym_buffer_definition_token3, + STATE(1877), 1, + aux_sym_variable_definition_repeat1, + ACTIONS(1362), 2, + aux_sym_serialization_tuning_token1, + aux_sym_serialization_tuning_token2, + STATE(1862), 2, + sym_comment, + sym_include, + ACTIONS(1360), 3, + aux_sym_access_tuning_token1, + aux_sym_access_tuning_token2, + aux_sym_access_tuning_token3, + STATE(2005), 3, + sym_scope_tuning, + sym_access_tuning, + sym_serialization_tuning, + ACTIONS(1358), 4, + aux_sym_scope_tuning_token1, + aux_sym_scope_tuning_token2, + aux_sym_scope_tuning_token3, + aux_sym_scope_tuning_token4, + [94754] = 16, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, @@ -124735,21 +125843,21 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_query_tuning_token5, ACTIONS(1203), 1, aux_sym_of_token1, - ACTIONS(2727), 1, + ACTIONS(2753), 1, sym__terminator, - STATE(329), 1, + STATE(336), 1, aux_sym_qualified_name_repeat1, - STATE(1946), 1, + STATE(1962), 1, sym_query_tuning, - STATE(2011), 1, + STATE(1997), 1, sym_of, - STATE(2047), 1, + STATE(2127), 1, sym__pre_tuning, - STATE(2293), 1, - sym_where_clause, - STATE(2333), 1, + STATE(2291), 1, aux_sym_for_phrase_repeat1, - STATE(1847), 2, + STATE(2300), 1, + sym_where_clause, + STATE(1863), 2, sym_comment, sym_include, ACTIONS(1195), 5, @@ -124758,73 +125866,77 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_query_tuning_token2, aux_sym_query_tuning_token3, aux_sym_query_tuning_token4, - [94304] = 10, + [94808] = 11, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2734), 1, - aux_sym_variable_tuning_token6, - ACTIONS(2737), 1, - aux_sym_variable_definition_token2, - ACTIONS(2739), 1, - aux_sym_property_tuning_token1, - STATE(1893), 1, - sym_property_tuning, - ACTIONS(2731), 2, - aux_sym_variable_tuning_token1, - aux_sym_variable_tuning_token5, - STATE(1848), 3, - sym_comment, - sym_include, - aux_sym_property_definition_repeat2, - ACTIONS(2729), 9, - aux_sym__block_terminator_token1, - aux_sym_access_tuning_token1, - aux_sym_access_tuning_token2, - aux_sym_access_tuning_token3, + ACTIONS(2622), 1, aux_sym_variable_definition_token1, - aux_sym_getter_token1, - aux_sym_setter_token1, + ACTIONS(2624), 1, + aux_sym_variable_definition_token2, + ACTIONS(2626), 1, aux_sym_method_definition_token1, + ACTIONS(2628), 1, aux_sym_constructor_definition_token1, - [94346] = 12, - ACTIONS(3), 1, + ACTIONS(2755), 1, + aux_sym__block_terminator_token1, + STATE(1869), 1, + aux_sym_class_body_repeat1, + STATE(1864), 2, + sym_comment, + sym_include, + STATE(2901), 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, + [94852] = 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(681), 1, - sym__namecolon, - ACTIONS(2744), 1, - anon_sym_LPAREN, - ACTIONS(2748), 1, + ACTIONS(679), 1, sym__namedot, - STATE(2015), 1, + ACTIONS(2695), 1, + aux_sym_serialization_tuning_token1, + ACTIONS(2699), 1, + aux_sym_property_type_token1, + ACTIONS(2701), 1, + aux_sym_method_tuning_token1, + ACTIONS(2703), 1, + aux_sym_inherits_token1, + ACTIONS(2705), 1, + aux_sym_implements_token1, + ACTIONS(2707), 1, + aux_sym_use_widget_pool_token1, + ACTIONS(2757), 1, + anon_sym_COLON, + STATE(336), 1, aux_sym_qualified_name_repeat1, - STATE(2597), 1, - sym_sort_order, - STATE(3004), 1, - aux_sym_object_access_repeat1, - STATE(1849), 2, + STATE(1942), 1, + aux_sym_class_statement_repeat1, + STATE(1865), 2, sym_comment, sym_include, - ACTIONS(2746), 4, - aux_sym_sort_order_token1, - aux_sym_sort_order_token2, - aux_sym_sort_order_token3, - aux_sym_sort_order_token4, - ACTIONS(2742), 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, - [94392] = 16, + STATE(2440), 6, + sym_inherits, + sym_implements, + sym_use_widget_pool, + sym_abstract, + sym_final, + sym_serializable, + [94904] = 16, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, @@ -124839,21 +125951,21 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_query_tuning_token5, ACTIONS(1203), 1, aux_sym_of_token1, - ACTIONS(2750), 1, + ACTIONS(2759), 1, sym__terminator, - STATE(329), 1, + STATE(336), 1, aux_sym_qualified_name_repeat1, - STATE(1946), 1, + STATE(1962), 1, sym_query_tuning, - STATE(1996), 1, + STATE(2024), 1, sym_of, - STATE(2070), 1, + STATE(2088), 1, sym__pre_tuning, - STATE(2232), 1, + STATE(2274), 1, sym_where_clause, - STATE(2305), 1, + STATE(2275), 1, aux_sym_for_phrase_repeat1, - STATE(1850), 2, + STATE(1866), 2, sym_comment, sym_include, ACTIONS(1195), 5, @@ -124862,17 +125974,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_query_tuning_token2, aux_sym_query_tuning_token3, aux_sym_query_tuning_token4, - [94446] = 5, + [94958] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - STATE(1851), 2, + STATE(1867), 2, sym_comment, sym_include, - ACTIONS(2752), 16, + ACTIONS(2612), 16, sym__terminator, anon_sym_RPAREN, anon_sym_COMMA, @@ -124889,41 +126001,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_sort_clause_token1, aux_sym_sort_clause_token2, aux_sym_of_token1, - [94478] = 12, - ACTIONS(59), 1, - anon_sym_SLASH_SLASH, - ACTIONS(61), 1, - anon_sym_SLASH_STAR, - ACTIONS(65), 1, - anon_sym_LBRACE, - ACTIONS(2754), 1, - aux_sym_variable_definition_token3, - ACTIONS(2756), 1, - aux_sym_variable_definition_token4, - ACTIONS(2758), 1, - aux_sym_buffer_definition_token3, - STATE(1841), 1, - aux_sym_variable_definition_repeat1, - ACTIONS(1356), 2, - aux_sym_serialization_tuning_token1, - aux_sym_serialization_tuning_token2, - STATE(1852), 2, - sym_comment, - sym_include, - ACTIONS(1354), 3, - aux_sym_access_tuning_token1, - aux_sym_access_tuning_token2, - aux_sym_access_tuning_token3, - STATE(1959), 3, - sym_scope_tuning, - sym_access_tuning, - sym_serialization_tuning, - ACTIONS(1352), 4, - aux_sym_scope_tuning_token1, - aux_sym_scope_tuning_token2, - aux_sym_scope_tuning_token3, - aux_sym_scope_tuning_token4, - [94524] = 16, + [94990] = 16, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, @@ -124938,21 +126016,21 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_query_tuning_token5, ACTIONS(1203), 1, aux_sym_of_token1, - ACTIONS(2760), 1, + ACTIONS(2761), 1, sym__terminator, - STATE(329), 1, + STATE(336), 1, aux_sym_qualified_name_repeat1, - STATE(1946), 1, + STATE(1962), 1, sym_query_tuning, - STATE(1957), 1, + STATE(2013), 1, sym_of, - STATE(2130), 1, + STATE(2144), 1, sym__pre_tuning, - STATE(2315), 1, - sym_where_clause, - STATE(2319), 1, + STATE(2349), 1, aux_sym_for_phrase_repeat1, - STATE(1853), 2, + STATE(2356), 1, + sym_where_clause, + STATE(1868), 2, sym_comment, sym_include, ACTIONS(1195), 5, @@ -124961,106 +126039,73 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_query_tuning_token2, aux_sym_query_tuning_token3, aux_sym_query_tuning_token4, - [94578] = 15, + [95044] = 10, 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(2713), 1, - aux_sym_serialization_tuning_token1, - ACTIONS(2717), 1, - aux_sym_property_type_token1, - ACTIONS(2719), 1, - aux_sym_method_tuning_token1, - ACTIONS(2721), 1, - aux_sym_inherits_token1, - ACTIONS(2723), 1, - aux_sym_implements_token1, - ACTIONS(2725), 1, - aux_sym_use_widget_pool_token1, - ACTIONS(2762), 1, - anon_sym_COLON, - STATE(329), 1, - aux_sym_qualified_name_repeat1, - STATE(1931), 1, - aux_sym_class_statement_repeat1, - STATE(1854), 2, + ACTIONS(2763), 1, + aux_sym__block_terminator_token1, + ACTIONS(2765), 1, + aux_sym_variable_definition_token1, + ACTIONS(2768), 1, + aux_sym_variable_definition_token2, + ACTIONS(2771), 1, + aux_sym_method_definition_token1, + ACTIONS(2774), 1, + aux_sym_constructor_definition_token1, + STATE(1869), 3, sym_comment, sym_include, - STATE(2448), 6, - sym_inherits, - sym_implements, - sym_use_widget_pool, - sym_abstract, - sym_final, - sym_serializable, - [94630] = 12, + aux_sym_class_body_repeat1, + STATE(2901), 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, + [95086] = 12, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2764), 1, + ACTIONS(2777), 1, aux_sym_variable_definition_token3, - ACTIONS(2766), 1, + ACTIONS(2779), 1, aux_sym_variable_definition_token4, - ACTIONS(2768), 1, + ACTIONS(2781), 1, aux_sym_buffer_definition_token3, - STATE(1841), 1, + STATE(1877), 1, aux_sym_variable_definition_repeat1, - ACTIONS(1356), 2, + ACTIONS(1362), 2, aux_sym_serialization_tuning_token1, aux_sym_serialization_tuning_token2, - STATE(1855), 2, + STATE(1870), 2, sym_comment, sym_include, - ACTIONS(1354), 3, + ACTIONS(1360), 3, aux_sym_access_tuning_token1, aux_sym_access_tuning_token2, aux_sym_access_tuning_token3, - STATE(1959), 3, + STATE(2005), 3, sym_scope_tuning, sym_access_tuning, sym_serialization_tuning, - ACTIONS(1352), 4, - aux_sym_scope_tuning_token1, - aux_sym_scope_tuning_token2, - aux_sym_scope_tuning_token3, - aux_sym_scope_tuning_token4, - [94676] = 6, - ACTIONS(59), 1, - anon_sym_SLASH_SLASH, - ACTIONS(61), 1, - anon_sym_SLASH_STAR, - ACTIONS(65), 1, - anon_sym_LBRACE, - ACTIONS(2772), 1, - aux_sym_variable_definition_token4, - STATE(1856), 2, - sym_comment, - sym_include, - ACTIONS(2770), 15, + ACTIONS(1358), 4, 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, - [94710] = 16, + [95132] = 16, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, @@ -125075,21 +126120,21 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_query_tuning_token5, ACTIONS(1203), 1, aux_sym_of_token1, - ACTIONS(2774), 1, + ACTIONS(2783), 1, sym__terminator, - STATE(329), 1, + STATE(336), 1, aux_sym_qualified_name_repeat1, - STATE(1946), 1, + STATE(1962), 1, sym_query_tuning, - STATE(1951), 1, + STATE(2022), 1, sym_of, - STATE(2030), 1, + STATE(2107), 1, sym__pre_tuning, - STATE(2243), 1, - aux_sym_for_phrase_repeat1, - STATE(2245), 1, + STATE(2244), 1, sym_where_clause, - STATE(1857), 2, + STATE(2250), 1, + aux_sym_for_phrase_repeat1, + STATE(1871), 2, sym_comment, sym_include, ACTIONS(1195), 5, @@ -125098,41 +126143,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_query_tuning_token2, aux_sym_query_tuning_token3, aux_sym_query_tuning_token4, - [94764] = 12, - ACTIONS(59), 1, - anon_sym_SLASH_SLASH, - ACTIONS(61), 1, - anon_sym_SLASH_STAR, - ACTIONS(65), 1, - anon_sym_LBRACE, - ACTIONS(2776), 1, - aux_sym_variable_definition_token3, - ACTIONS(2778), 1, - aux_sym_variable_definition_token4, - ACTIONS(2780), 1, - aux_sym_buffer_definition_token3, - STATE(1841), 1, - aux_sym_variable_definition_repeat1, - ACTIONS(1356), 2, - aux_sym_serialization_tuning_token1, - aux_sym_serialization_tuning_token2, - STATE(1858), 2, - sym_comment, - sym_include, - ACTIONS(1354), 3, - aux_sym_access_tuning_token1, - aux_sym_access_tuning_token2, - aux_sym_access_tuning_token3, - STATE(1959), 3, - sym_scope_tuning, - sym_access_tuning, - sym_serialization_tuning, - ACTIONS(1352), 4, - aux_sym_scope_tuning_token1, - aux_sym_scope_tuning_token2, - aux_sym_scope_tuning_token3, - aux_sym_scope_tuning_token4, - [94810] = 16, + [95186] = 16, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, @@ -125147,21 +126158,21 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_query_tuning_token5, ACTIONS(1203), 1, aux_sym_of_token1, - ACTIONS(2782), 1, + ACTIONS(2785), 1, sym__terminator, - STATE(329), 1, + STATE(336), 1, aux_sym_qualified_name_repeat1, - STATE(1946), 1, + STATE(1962), 1, sym_query_tuning, - STATE(1970), 1, + STATE(1984), 1, sym_of, - STATE(2105), 1, + STATE(2099), 1, sym__pre_tuning, - STATE(2325), 1, - sym_where_clause, - STATE(2336), 1, + STATE(2252), 1, aux_sym_for_phrase_repeat1, - STATE(1859), 2, + STATE(2254), 1, + sym_where_clause, + STATE(1872), 2, sym_comment, sym_include, ACTIONS(1195), 5, @@ -125170,88 +126181,51 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_query_tuning_token2, aux_sym_query_tuning_token3, aux_sym_query_tuning_token4, - [94864] = 12, + [95240] = 12, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2784), 1, + ACTIONS(2787), 1, aux_sym_variable_definition_token3, - ACTIONS(2786), 1, + ACTIONS(2789), 1, aux_sym_variable_definition_token4, - ACTIONS(2788), 1, + ACTIONS(2791), 1, aux_sym_buffer_definition_token3, - STATE(1841), 1, + STATE(1877), 1, aux_sym_variable_definition_repeat1, - ACTIONS(1356), 2, + ACTIONS(1362), 2, aux_sym_serialization_tuning_token1, aux_sym_serialization_tuning_token2, - STATE(1860), 2, + STATE(1873), 2, sym_comment, sym_include, - ACTIONS(1354), 3, + ACTIONS(1360), 3, aux_sym_access_tuning_token1, aux_sym_access_tuning_token2, aux_sym_access_tuning_token3, - STATE(1959), 3, + STATE(2005), 3, sym_scope_tuning, sym_access_tuning, sym_serialization_tuning, - ACTIONS(1352), 4, + ACTIONS(1358), 4, aux_sym_scope_tuning_token1, aux_sym_scope_tuning_token2, aux_sym_scope_tuning_token3, aux_sym_scope_tuning_token4, - [94910] = 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(2713), 1, - aux_sym_serialization_tuning_token1, - ACTIONS(2717), 1, - aux_sym_property_type_token1, - ACTIONS(2719), 1, - aux_sym_method_tuning_token1, - ACTIONS(2721), 1, - aux_sym_inherits_token1, - ACTIONS(2723), 1, - aux_sym_implements_token1, - ACTIONS(2725), 1, - aux_sym_use_widget_pool_token1, - ACTIONS(2790), 1, - anon_sym_COLON, - STATE(329), 1, - aux_sym_qualified_name_repeat1, - STATE(1907), 1, - aux_sym_class_statement_repeat1, - STATE(1861), 2, - sym_comment, - sym_include, - STATE(2448), 6, - sym_inherits, - sym_implements, - sym_use_widget_pool, - sym_abstract, - sym_final, - sym_serializable, - [94962] = 5, + [95286] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - STATE(1862), 2, + STATE(1874), 2, sym_comment, sym_include, - ACTIONS(2608), 16, + ACTIONS(2793), 16, sym__terminator, anon_sym_RPAREN, anon_sym_COMMA, @@ -125268,7 +126242,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_sort_clause_token1, aux_sym_sort_clause_token2, aux_sym_of_token1, - [94994] = 15, + [95318] = 16, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, @@ -125277,69 +126251,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, ACTIONS(679), 1, sym__namedot, - ACTIONS(2713), 1, - aux_sym_serialization_tuning_token1, - ACTIONS(2717), 1, - aux_sym_property_type_token1, - ACTIONS(2719), 1, - aux_sym_method_tuning_token1, - ACTIONS(2721), 1, - aux_sym_inherits_token1, - ACTIONS(2723), 1, - aux_sym_implements_token1, - ACTIONS(2725), 1, - aux_sym_use_widget_pool_token1, - ACTIONS(2792), 1, - anon_sym_COLON, - STATE(329), 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(2795), 1, + sym__terminator, + STATE(336), 1, aux_sym_qualified_name_repeat1, - STATE(1934), 1, - aux_sym_class_statement_repeat1, - STATE(1863), 2, - sym_comment, - sym_include, - STATE(2448), 6, - sym_inherits, - sym_implements, - sym_use_widget_pool, - sym_abstract, - sym_final, - sym_serializable, - [95046] = 12, - ACTIONS(59), 1, - anon_sym_SLASH_SLASH, - ACTIONS(61), 1, - anon_sym_SLASH_STAR, - ACTIONS(65), 1, - anon_sym_LBRACE, - ACTIONS(2794), 1, - aux_sym_variable_definition_token3, - ACTIONS(2796), 1, - aux_sym_variable_definition_token4, - ACTIONS(2798), 1, - aux_sym_buffer_definition_token3, - STATE(1841), 1, - aux_sym_variable_definition_repeat1, - ACTIONS(1356), 2, - aux_sym_serialization_tuning_token1, - aux_sym_serialization_tuning_token2, - STATE(1864), 2, + STATE(1962), 1, + sym_query_tuning, + STATE(1994), 1, + sym_of, + STATE(2112), 1, + sym__pre_tuning, + STATE(2241), 1, + sym_where_clause, + STATE(2270), 1, + aux_sym_for_phrase_repeat1, + STATE(1875), 2, sym_comment, sym_include, - ACTIONS(1354), 3, - aux_sym_access_tuning_token1, - aux_sym_access_tuning_token2, - aux_sym_access_tuning_token3, - STATE(1959), 3, - sym_scope_tuning, - sym_access_tuning, - sym_serialization_tuning, - ACTIONS(1352), 4, - aux_sym_scope_tuning_token1, - aux_sym_scope_tuning_token2, - aux_sym_scope_tuning_token3, - aux_sym_scope_tuning_token4, - [95092] = 16, + ACTIONS(1195), 5, + aux_sym_function_call_token1, + aux_sym_query_tuning_token1, + aux_sym_query_tuning_token2, + aux_sym_query_tuning_token3, + aux_sym_query_tuning_token4, + [95372] = 16, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, @@ -125354,21 +126295,21 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_query_tuning_token5, ACTIONS(1203), 1, aux_sym_of_token1, - ACTIONS(2800), 1, + ACTIONS(2797), 1, sym__terminator, - STATE(329), 1, + STATE(336), 1, aux_sym_qualified_name_repeat1, - STATE(1946), 1, + STATE(1962), 1, sym_query_tuning, - STATE(1987), 1, + STATE(1993), 1, sym_of, - STATE(2083), 1, + STATE(2118), 1, sym__pre_tuning, - STATE(2345), 1, + STATE(2262), 1, sym_where_clause, - STATE(2346), 1, + STATE(2272), 1, aux_sym_for_phrase_repeat1, - STATE(1865), 2, + STATE(1876), 2, sym_comment, sym_include, ACTIONS(1195), 5, @@ -125377,109 +126318,100 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_query_tuning_token2, aux_sym_query_tuning_token3, aux_sym_query_tuning_token4, - [95146] = 5, + [95426] = 10, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - STATE(1866), 2, + ACTIONS(2810), 1, + aux_sym_variable_definition_token4, + ACTIONS(2805), 2, + aux_sym_serialization_tuning_token1, + aux_sym_serialization_tuning_token2, + ACTIONS(2808), 2, + aux_sym_variable_definition_token3, + aux_sym_buffer_definition_token3, + ACTIONS(2802), 3, + aux_sym_access_tuning_token1, + aux_sym_access_tuning_token2, + aux_sym_access_tuning_token3, + STATE(1877), 3, sym_comment, sym_include, - ACTIONS(2802), 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, - [95178] = 15, + aux_sym_variable_definition_repeat1, + STATE(2005), 3, + sym_scope_tuning, + sym_access_tuning, + sym_serialization_tuning, + ACTIONS(2799), 4, + aux_sym_scope_tuning_token1, + aux_sym_scope_tuning_token2, + aux_sym_scope_tuning_token3, + aux_sym_scope_tuning_token4, + [95468] = 6, 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(2713), 1, - aux_sym_serialization_tuning_token1, - ACTIONS(2717), 1, - aux_sym_property_type_token1, - ACTIONS(2719), 1, - aux_sym_method_tuning_token1, - ACTIONS(2721), 1, - aux_sym_inherits_token1, - ACTIONS(2723), 1, - aux_sym_implements_token1, - ACTIONS(2725), 1, - aux_sym_use_widget_pool_token1, - ACTIONS(2804), 1, - anon_sym_COLON, - STATE(329), 1, - aux_sym_qualified_name_repeat1, - STATE(1911), 1, - aux_sym_class_statement_repeat1, - STATE(1867), 2, + ACTIONS(1239), 1, + aux_sym_variable_definition_token2, + STATE(1878), 2, sym_comment, sym_include, - STATE(2448), 6, - sym_inherits, - sym_implements, - sym_use_widget_pool, - sym_abstract, - sym_final, - sym_serializable, - [95230] = 16, + ACTIONS(1237), 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, + [95501] = 13, 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(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(2806), 1, - sym__terminator, - STATE(329), 1, - aux_sym_qualified_name_repeat1, - STATE(1946), 1, - sym_query_tuning, - STATE(2007), 1, - sym_of, - STATE(2048), 1, - sym__pre_tuning, - STATE(2326), 1, - sym_where_clause, - STATE(2338), 1, - aux_sym_for_phrase_repeat1, - STATE(1868), 2, + ACTIONS(2812), 1, + anon_sym_RPAREN, + STATE(1904), 1, + aux_sym_can_find_expression_repeat2, + STATE(1960), 1, + sym__using_first, + STATE(1879), 2, sym_comment, sym_include, + STATE(2222), 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, - [95284] = 13, + [95548] = 13, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, @@ -125494,16 +126426,16 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_query_tuning_token5, ACTIONS(1203), 1, aux_sym_of_token1, - ACTIONS(2808), 1, + ACTIONS(2814), 1, anon_sym_RPAREN, - STATE(1888), 1, + STATE(1904), 1, aux_sym_can_find_expression_repeat2, - STATE(1944), 1, + STATE(1960), 1, sym__using_first, - STATE(1869), 2, + STATE(1880), 2, sym_comment, sym_include, - STATE(2166), 3, + STATE(2222), 3, sym_where_clause, sym_query_tuning, sym_of, @@ -125513,7 +126445,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_query_tuning_token2, aux_sym_query_tuning_token3, aux_sym_query_tuning_token4, - [95331] = 13, + [95595] = 13, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, @@ -125528,16 +126460,16 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_query_tuning_token5, ACTIONS(1203), 1, aux_sym_of_token1, - ACTIONS(2810), 1, + ACTIONS(2816), 1, anon_sym_RPAREN, - STATE(1888), 1, + STATE(1904), 1, aux_sym_can_find_expression_repeat2, - STATE(1944), 1, + STATE(1960), 1, sym__using_first, - STATE(1870), 2, + STATE(1881), 2, sym_comment, sym_include, - STATE(2166), 3, + STATE(2222), 3, sym_where_clause, sym_query_tuning, sym_of, @@ -125547,7 +126479,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_query_tuning_token2, aux_sym_query_tuning_token3, aux_sym_query_tuning_token4, - [95378] = 13, + [95642] = 13, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, @@ -125562,16 +126494,16 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_query_tuning_token5, ACTIONS(1203), 1, aux_sym_of_token1, - ACTIONS(2812), 1, + ACTIONS(2818), 1, anon_sym_RPAREN, - STATE(1888), 1, + STATE(1904), 1, aux_sym_can_find_expression_repeat2, - STATE(1944), 1, + STATE(1960), 1, sym__using_first, - STATE(1871), 2, + STATE(1882), 2, sym_comment, sym_include, - STATE(2166), 3, + STATE(2222), 3, sym_where_clause, sym_query_tuning, sym_of, @@ -125581,7 +126513,112 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_query_tuning_token2, aux_sym_query_tuning_token3, aux_sym_query_tuning_token4, - [95425] = 13, + [95689] = 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(2820), 1, + anon_sym_COLON, + ACTIONS(2822), 1, + aux_sym_repeat_tuning_token1, + ACTIONS(2824), 1, + aux_sym_on_error_phrase_token1, + STATE(2216), 1, + sym_to_phrase, + STATE(2407), 1, + sym_while_phrase, + STATE(2475), 1, + sym_on_error_phrase, + STATE(2701), 1, + sym_on_quit_phrase, + STATE(2982), 1, + sym_on_stop_phrase, + STATE(2995), 1, + aux_sym_repeat_statement_repeat1, + STATE(3672), 1, + sym_repeat_tuning, + STATE(4760), 1, + sym_assignment, + STATE(1883), 2, + sym_comment, + sym_include, + STATE(4814), 2, + sym_qualified_name, + sym_object_access, + [95746] = 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(2822), 1, + aux_sym_repeat_tuning_token1, + ACTIONS(2824), 1, + aux_sym_on_error_phrase_token1, + ACTIONS(2826), 1, + anon_sym_COLON, + STATE(2175), 1, + sym_to_phrase, + STATE(2388), 1, + sym_while_phrase, + STATE(2549), 1, + sym_on_error_phrase, + STATE(2716), 1, + sym_on_quit_phrase, + STATE(2997), 1, + sym_on_stop_phrase, + STATE(3034), 1, + aux_sym_repeat_statement_repeat1, + STATE(3672), 1, + sym_repeat_tuning, + STATE(4760), 1, + sym_assignment, + STATE(1884), 2, + sym_comment, + sym_include, + STATE(4814), 2, + sym_qualified_name, + sym_object_access, + [95803] = 6, + ACTIONS(59), 1, + anon_sym_SLASH_SLASH, + ACTIONS(61), 1, + anon_sym_SLASH_STAR, + ACTIONS(65), 1, + anon_sym_LBRACE, + ACTIONS(2830), 1, + aux_sym_variable_definition_token2, + STATE(1885), 2, + sym_comment, + sym_include, + ACTIONS(2828), 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, + [95836] = 13, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, @@ -125596,16 +126633,16 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_query_tuning_token5, ACTIONS(1203), 1, aux_sym_of_token1, - ACTIONS(2814), 1, + ACTIONS(2832), 1, anon_sym_RPAREN, - STATE(1888), 1, + STATE(1904), 1, aux_sym_can_find_expression_repeat2, - STATE(1944), 1, + STATE(1960), 1, sym__using_first, - STATE(1872), 2, + STATE(1886), 2, sym_comment, sym_include, - STATE(2166), 3, + STATE(2222), 3, sym_where_clause, sym_query_tuning, sym_of, @@ -125615,7 +126652,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_query_tuning_token2, aux_sym_query_tuning_token3, aux_sym_query_tuning_token4, - [95472] = 13, + [95883] = 13, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, @@ -125630,16 +126667,16 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_query_tuning_token5, ACTIONS(1203), 1, aux_sym_of_token1, - ACTIONS(2816), 1, + ACTIONS(2834), 1, anon_sym_RPAREN, - STATE(1888), 1, + STATE(1904), 1, aux_sym_can_find_expression_repeat2, - STATE(1944), 1, + STATE(1960), 1, sym__using_first, - STATE(1873), 2, + STATE(1887), 2, sym_comment, sym_include, - STATE(2166), 3, + STATE(2222), 3, sym_where_clause, sym_query_tuning, sym_of, @@ -125649,7 +126686,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_query_tuning_token2, aux_sym_query_tuning_token3, aux_sym_query_tuning_token4, - [95519] = 13, + [95930] = 13, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, @@ -125664,16 +126701,16 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_query_tuning_token5, ACTIONS(1203), 1, aux_sym_of_token1, - ACTIONS(2818), 1, + ACTIONS(2836), 1, anon_sym_RPAREN, - STATE(1888), 1, + STATE(1904), 1, aux_sym_can_find_expression_repeat2, - STATE(1944), 1, + STATE(1960), 1, sym__using_first, - STATE(1874), 2, + STATE(1888), 2, sym_comment, sym_include, - STATE(2166), 3, + STATE(2222), 3, sym_where_clause, sym_query_tuning, sym_of, @@ -125683,7 +126720,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_query_tuning_token2, aux_sym_query_tuning_token3, aux_sym_query_tuning_token4, - [95566] = 13, + [95977] = 13, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, @@ -125698,16 +126735,16 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_query_tuning_token5, ACTIONS(1203), 1, aux_sym_of_token1, - ACTIONS(2820), 1, + ACTIONS(2838), 1, anon_sym_RPAREN, - STATE(1888), 1, + STATE(1904), 1, aux_sym_can_find_expression_repeat2, - STATE(1944), 1, + STATE(1960), 1, sym__using_first, - STATE(1875), 2, + STATE(1889), 2, sym_comment, sym_include, - STATE(2166), 3, + STATE(2222), 3, sym_where_clause, sym_query_tuning, sym_of, @@ -125717,19 +126754,58 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_query_tuning_token2, aux_sym_query_tuning_token3, aux_sym_query_tuning_token4, - [95613] = 6, + [96024] = 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(2822), 1, + aux_sym_repeat_tuning_token1, + ACTIONS(2824), 1, + aux_sym_on_error_phrase_token1, + ACTIONS(2840), 1, + anon_sym_COLON, + STATE(2208), 1, + sym_to_phrase, + STATE(2379), 1, + sym_while_phrase, + STATE(2589), 1, + sym_on_error_phrase, + STATE(2597), 1, + sym_on_quit_phrase, + STATE(3165), 1, + aux_sym_repeat_statement_repeat1, + STATE(3172), 1, + sym_on_stop_phrase, + STATE(3672), 1, + sym_repeat_tuning, + STATE(4760), 1, + sym_assignment, + STATE(1890), 2, + sym_comment, + sym_include, + STATE(4814), 2, + sym_qualified_name, + sym_object_access, + [96081] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(1239), 1, + ACTIONS(2844), 1, aux_sym_variable_definition_token2, - STATE(1876), 2, + STATE(1891), 2, sym_comment, sym_include, - ACTIONS(1237), 14, + ACTIONS(2842), 14, aux_sym__block_terminator_token1, aux_sym_variable_tuning_token1, aux_sym_variable_tuning_token5, @@ -125744,7 +126820,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_event_definition_token1, aux_sym_method_definition_token1, aux_sym_constructor_definition_token1, - [95646] = 13, + [96114] = 13, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, @@ -125759,16 +126835,16 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_query_tuning_token5, ACTIONS(1203), 1, aux_sym_of_token1, - ACTIONS(2822), 1, + ACTIONS(2846), 1, anon_sym_RPAREN, - STATE(1888), 1, + STATE(1904), 1, aux_sym_can_find_expression_repeat2, - STATE(1944), 1, + STATE(1960), 1, sym__using_first, - STATE(1877), 2, + STATE(1892), 2, sym_comment, sym_include, - STATE(2166), 3, + STATE(2222), 3, sym_where_clause, sym_query_tuning, sym_of, @@ -125778,7 +126854,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_query_tuning_token2, aux_sym_query_tuning_token3, aux_sym_query_tuning_token4, - [95693] = 13, + [96161] = 13, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, @@ -125793,16 +126869,16 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_query_tuning_token5, ACTIONS(1203), 1, aux_sym_of_token1, - ACTIONS(2824), 1, + ACTIONS(2848), 1, anon_sym_RPAREN, - STATE(1888), 1, + STATE(1904), 1, aux_sym_can_find_expression_repeat2, - STATE(1944), 1, + STATE(1960), 1, sym__using_first, - STATE(1878), 2, + STATE(1893), 2, sym_comment, sym_include, - STATE(2166), 3, + STATE(2222), 3, sym_where_clause, sym_query_tuning, sym_of, @@ -125812,7 +126888,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_query_tuning_token2, aux_sym_query_tuning_token3, aux_sym_query_tuning_token4, - [95740] = 13, + [96208] = 13, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, @@ -125827,16 +126903,16 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_query_tuning_token5, ACTIONS(1203), 1, aux_sym_of_token1, - ACTIONS(2826), 1, + ACTIONS(2850), 1, anon_sym_RPAREN, - STATE(1888), 1, + STATE(1904), 1, aux_sym_can_find_expression_repeat2, - STATE(1944), 1, + STATE(1960), 1, sym__using_first, - STATE(1879), 2, + STATE(1894), 2, sym_comment, sym_include, - STATE(2166), 3, + STATE(2222), 3, sym_where_clause, sym_query_tuning, sym_of, @@ -125846,7 +126922,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_query_tuning_token2, aux_sym_query_tuning_token3, aux_sym_query_tuning_token4, - [95787] = 13, + [96255] = 13, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, @@ -125861,16 +126937,16 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_query_tuning_token5, ACTIONS(1203), 1, aux_sym_of_token1, - ACTIONS(2828), 1, + ACTIONS(2852), 1, anon_sym_RPAREN, - STATE(1888), 1, + STATE(1904), 1, aux_sym_can_find_expression_repeat2, - STATE(1944), 1, + STATE(1960), 1, sym__using_first, - STATE(1880), 2, + STATE(1895), 2, sym_comment, sym_include, - STATE(2166), 3, + STATE(2222), 3, sym_where_clause, sym_query_tuning, sym_of, @@ -125880,7 +126956,85 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_query_tuning_token2, aux_sym_query_tuning_token3, aux_sym_query_tuning_token4, - [95834] = 13, + [96302] = 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(2822), 1, + aux_sym_repeat_tuning_token1, + ACTIONS(2824), 1, + aux_sym_on_error_phrase_token1, + ACTIONS(2854), 1, + anon_sym_COLON, + STATE(2147), 1, + sym_to_phrase, + STATE(2375), 1, + sym_while_phrase, + STATE(2576), 1, + sym_on_error_phrase, + STATE(2594), 1, + sym_on_quit_phrase, + STATE(3164), 1, + aux_sym_repeat_statement_repeat1, + STATE(3168), 1, + sym_on_stop_phrase, + STATE(3672), 1, + sym_repeat_tuning, + STATE(4760), 1, + sym_assignment, + STATE(1896), 2, + sym_comment, + sym_include, + STATE(4814), 2, + sym_qualified_name, + sym_object_access, + [96359] = 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(2822), 1, + aux_sym_repeat_tuning_token1, + ACTIONS(2824), 1, + aux_sym_on_error_phrase_token1, + ACTIONS(2856), 1, + anon_sym_COLON, + STATE(2224), 1, + sym_to_phrase, + STATE(2401), 1, + sym_while_phrase, + STATE(2497), 1, + sym_on_error_phrase, + STATE(2717), 1, + sym_on_quit_phrase, + STATE(3039), 1, + sym_on_stop_phrase, + STATE(3049), 1, + aux_sym_repeat_statement_repeat1, + STATE(3672), 1, + sym_repeat_tuning, + STATE(4760), 1, + sym_assignment, + STATE(1897), 2, + sym_comment, + sym_include, + STATE(4814), 2, + sym_qualified_name, + sym_object_access, + [96416] = 13, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, @@ -125895,16 +127049,16 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_query_tuning_token5, ACTIONS(1203), 1, aux_sym_of_token1, - ACTIONS(2830), 1, + ACTIONS(2858), 1, anon_sym_RPAREN, - STATE(1888), 1, + STATE(1904), 1, aux_sym_can_find_expression_repeat2, - STATE(1944), 1, + STATE(1960), 1, sym__using_first, - STATE(1881), 2, + STATE(1898), 2, sym_comment, sym_include, - STATE(2166), 3, + STATE(2222), 3, sym_where_clause, sym_query_tuning, sym_of, @@ -125914,34 +127068,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_query_tuning_token2, aux_sym_query_tuning_token3, aux_sym_query_tuning_token4, - [95881] = 6, - ACTIONS(59), 1, - anon_sym_SLASH_SLASH, - ACTIONS(61), 1, - anon_sym_SLASH_STAR, - ACTIONS(65), 1, - anon_sym_LBRACE, - ACTIONS(2834), 1, - aux_sym_variable_definition_token2, - STATE(1882), 2, - sym_comment, - sym_include, - ACTIONS(2832), 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, - [95914] = 13, + [96463] = 13, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, @@ -125956,16 +127083,16 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_query_tuning_token5, ACTIONS(1203), 1, aux_sym_of_token1, - ACTIONS(2836), 1, + ACTIONS(2860), 1, anon_sym_RPAREN, - STATE(1888), 1, + STATE(1904), 1, aux_sym_can_find_expression_repeat2, - STATE(1944), 1, + STATE(1960), 1, sym__using_first, - STATE(1883), 2, + STATE(1899), 2, sym_comment, sym_include, - STATE(2166), 3, + STATE(2222), 3, sym_where_clause, sym_query_tuning, sym_of, @@ -125975,7 +127102,85 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_query_tuning_token2, aux_sym_query_tuning_token3, aux_sym_query_tuning_token4, - [95961] = 13, + [96510] = 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(2822), 1, + aux_sym_repeat_tuning_token1, + ACTIONS(2824), 1, + aux_sym_on_error_phrase_token1, + ACTIONS(2862), 1, + anon_sym_COLON, + STATE(2227), 1, + sym_to_phrase, + STATE(2381), 1, + sym_while_phrase, + STATE(2566), 1, + sym_on_error_phrase, + STATE(2661), 1, + sym_on_quit_phrase, + STATE(3050), 1, + aux_sym_repeat_statement_repeat1, + STATE(3061), 1, + sym_on_stop_phrase, + STATE(3672), 1, + sym_repeat_tuning, + STATE(4760), 1, + sym_assignment, + STATE(1900), 2, + sym_comment, + sym_include, + STATE(4814), 2, + sym_qualified_name, + sym_object_access, + [96567] = 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(2822), 1, + aux_sym_repeat_tuning_token1, + ACTIONS(2824), 1, + aux_sym_on_error_phrase_token1, + ACTIONS(2864), 1, + anon_sym_COLON, + STATE(2159), 1, + sym_to_phrase, + STATE(2412), 1, + sym_while_phrase, + STATE(2500), 1, + sym_on_error_phrase, + STATE(2611), 1, + sym_on_quit_phrase, + STATE(3125), 1, + aux_sym_repeat_statement_repeat1, + STATE(3132), 1, + sym_on_stop_phrase, + STATE(3672), 1, + sym_repeat_tuning, + STATE(4760), 1, + sym_assignment, + STATE(1901), 2, + sym_comment, + sym_include, + STATE(4814), 2, + sym_qualified_name, + sym_object_access, + [96624] = 13, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, @@ -125990,16 +127195,16 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_query_tuning_token5, ACTIONS(1203), 1, aux_sym_of_token1, - ACTIONS(2838), 1, + ACTIONS(2866), 1, anon_sym_RPAREN, - STATE(1888), 1, + STATE(1904), 1, aux_sym_can_find_expression_repeat2, - STATE(1944), 1, + STATE(1960), 1, sym__using_first, - STATE(1884), 2, + STATE(1902), 2, sym_comment, sym_include, - STATE(2166), 3, + STATE(2222), 3, sym_where_clause, sym_query_tuning, sym_of, @@ -126009,41 +127214,79 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_query_tuning_token2, aux_sym_query_tuning_token3, aux_sym_query_tuning_token4, - [96008] = 13, + [96671] = 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(2822), 1, + aux_sym_repeat_tuning_token1, + ACTIONS(2824), 1, + aux_sym_on_error_phrase_token1, + ACTIONS(2868), 1, + anon_sym_COLON, + STATE(2210), 1, + sym_to_phrase, + STATE(2390), 1, + sym_while_phrase, + STATE(2538), 1, + sym_on_error_phrase, + STATE(2745), 1, + sym_on_quit_phrase, + STATE(3083), 1, + aux_sym_repeat_statement_repeat1, + STATE(3085), 1, + sym_on_stop_phrase, + STATE(3672), 1, + sym_repeat_tuning, + STATE(4760), 1, + sym_assignment, + STATE(1903), 2, + sym_comment, + sym_include, + STATE(4814), 2, + sym_qualified_name, + sym_object_access, + [96728] = 12, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(1197), 1, + ACTIONS(2870), 1, + anon_sym_RPAREN, + ACTIONS(2875), 1, aux_sym_using_statement_token1, - ACTIONS(1199), 1, + ACTIONS(2878), 1, aux_sym_where_clause_token1, - ACTIONS(1201), 1, + ACTIONS(2881), 1, aux_sym_query_tuning_token5, - ACTIONS(1203), 1, + ACTIONS(2884), 1, aux_sym_of_token1, - ACTIONS(2840), 1, - anon_sym_RPAREN, - STATE(1888), 1, - aux_sym_can_find_expression_repeat2, - STATE(1944), 1, + STATE(1960), 1, sym__using_first, - STATE(1885), 2, + STATE(1904), 3, sym_comment, sym_include, - STATE(2166), 3, + aux_sym_can_find_expression_repeat2, + STATE(2222), 3, sym_where_clause, sym_query_tuning, sym_of, - ACTIONS(1195), 5, + ACTIONS(2872), 5, aux_sym_function_call_token1, aux_sym_query_tuning_token1, aux_sym_query_tuning_token2, aux_sym_query_tuning_token3, aux_sym_query_tuning_token4, - [96055] = 13, + [96773] = 13, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, @@ -126058,16 +127301,16 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_query_tuning_token5, ACTIONS(1203), 1, aux_sym_of_token1, - ACTIONS(2842), 1, + ACTIONS(2887), 1, anon_sym_RPAREN, - STATE(1888), 1, + STATE(1904), 1, aux_sym_can_find_expression_repeat2, - STATE(1944), 1, + STATE(1960), 1, sym__using_first, - STATE(1886), 2, + STATE(1905), 2, sym_comment, sym_include, - STATE(2166), 3, + STATE(2222), 3, sym_where_clause, sym_query_tuning, sym_of, @@ -126077,7 +127320,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_query_tuning_token2, aux_sym_query_tuning_token3, aux_sym_query_tuning_token4, - [96102] = 13, + [96820] = 13, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, @@ -126092,16 +127335,16 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_query_tuning_token5, ACTIONS(1203), 1, aux_sym_of_token1, - ACTIONS(2844), 1, + ACTIONS(2889), 1, anon_sym_RPAREN, - STATE(1888), 1, + STATE(1904), 1, aux_sym_can_find_expression_repeat2, - STATE(1944), 1, + STATE(1960), 1, sym__using_first, - STATE(1887), 2, + STATE(1906), 2, sym_comment, sym_include, - STATE(2166), 3, + STATE(2222), 3, sym_where_clause, sym_query_tuning, sym_of, @@ -126111,40 +127354,41 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_query_tuning_token2, aux_sym_query_tuning_token3, aux_sym_query_tuning_token4, - [96149] = 12, + [96867] = 13, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2846), 1, - anon_sym_RPAREN, - ACTIONS(2851), 1, + ACTIONS(1197), 1, aux_sym_using_statement_token1, - ACTIONS(2854), 1, + ACTIONS(1199), 1, aux_sym_where_clause_token1, - ACTIONS(2857), 1, + ACTIONS(1201), 1, aux_sym_query_tuning_token5, - ACTIONS(2860), 1, + ACTIONS(1203), 1, aux_sym_of_token1, - STATE(1944), 1, + ACTIONS(2891), 1, + anon_sym_RPAREN, + STATE(1904), 1, + aux_sym_can_find_expression_repeat2, + STATE(1960), 1, sym__using_first, - STATE(1888), 3, + STATE(1907), 2, sym_comment, sym_include, - aux_sym_can_find_expression_repeat2, - STATE(2166), 3, + STATE(2222), 3, sym_where_clause, sym_query_tuning, sym_of, - ACTIONS(2848), 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, - [96194] = 13, + [96914] = 13, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, @@ -126159,16 +127403,16 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_query_tuning_token5, ACTIONS(1203), 1, aux_sym_of_token1, - ACTIONS(2863), 1, + ACTIONS(2893), 1, anon_sym_RPAREN, - STATE(1888), 1, + STATE(1904), 1, aux_sym_can_find_expression_repeat2, - STATE(1944), 1, + STATE(1960), 1, sym__using_first, - STATE(1889), 2, + STATE(1908), 2, sym_comment, sym_include, - STATE(2166), 3, + STATE(2222), 3, sym_where_clause, sym_query_tuning, sym_of, @@ -126178,7 +127422,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_query_tuning_token2, aux_sym_query_tuning_token3, aux_sym_query_tuning_token4, - [96241] = 13, + [96961] = 13, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, @@ -126193,16 +127437,16 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_query_tuning_token5, ACTIONS(1203), 1, aux_sym_of_token1, - ACTIONS(2865), 1, + ACTIONS(2895), 1, anon_sym_RPAREN, - STATE(1888), 1, + STATE(1904), 1, aux_sym_can_find_expression_repeat2, - STATE(1944), 1, + STATE(1960), 1, sym__using_first, - STATE(1890), 2, + STATE(1909), 2, sym_comment, sym_include, - STATE(2166), 3, + STATE(2222), 3, sym_where_clause, sym_query_tuning, sym_of, @@ -126212,7 +127456,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_query_tuning_token2, aux_sym_query_tuning_token3, aux_sym_query_tuning_token4, - [96288] = 13, + [97008] = 13, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, @@ -126227,50 +127471,16 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_query_tuning_token5, ACTIONS(1203), 1, aux_sym_of_token1, - ACTIONS(2867), 1, + ACTIONS(2897), 1, anon_sym_RPAREN, - STATE(1888), 1, + STATE(1904), 1, aux_sym_can_find_expression_repeat2, - STATE(1944), 1, + STATE(1960), 1, sym__using_first, - STATE(1891), 2, - sym_comment, - sym_include, - STATE(2166), 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, - [96335] = 13, - ACTIONS(59), 1, - anon_sym_SLASH_SLASH, - ACTIONS(61), 1, - anon_sym_SLASH_STAR, - ACTIONS(65), 1, - anon_sym_LBRACE, - 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(2869), 1, - anon_sym_RPAREN, - STATE(1888), 1, - aux_sym_can_find_expression_repeat2, - STATE(1944), 1, - sym__using_first, - STATE(1892), 2, + STATE(1910), 2, sym_comment, sym_include, - STATE(2166), 3, + STATE(2222), 3, sym_where_clause, sym_query_tuning, sym_of, @@ -126280,34 +127490,46 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_query_tuning_token2, aux_sym_query_tuning_token3, aux_sym_query_tuning_token4, - [96382] = 6, - ACTIONS(59), 1, + [97055] = 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(2873), 1, - aux_sym_variable_definition_token2, - STATE(1893), 2, + ACTIONS(2632), 1, + sym_identifier, + ACTIONS(2636), 1, + aux_sym_while_phrase_token1, + ACTIONS(2822), 1, + aux_sym_repeat_tuning_token1, + ACTIONS(2824), 1, + aux_sym_on_error_phrase_token1, + ACTIONS(2899), 1, + anon_sym_COLON, + STATE(2173), 1, + sym_to_phrase, + STATE(2416), 1, + sym_while_phrase, + STATE(2489), 1, + sym_on_error_phrase, + STATE(2653), 1, + sym_on_quit_phrase, + STATE(3062), 1, + aux_sym_repeat_statement_repeat1, + STATE(3077), 1, + sym_on_stop_phrase, + STATE(3672), 1, + sym_repeat_tuning, + STATE(4760), 1, + sym_assignment, + STATE(1911), 2, sym_comment, sym_include, - ACTIONS(2871), 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, - [96415] = 13, + STATE(4814), 2, + sym_qualified_name, + sym_object_access, + [97112] = 13, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, @@ -126322,16 +127544,16 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_query_tuning_token5, ACTIONS(1203), 1, aux_sym_of_token1, - ACTIONS(2875), 1, + ACTIONS(2901), 1, anon_sym_RPAREN, - STATE(1888), 1, + STATE(1904), 1, aux_sym_can_find_expression_repeat2, - STATE(1944), 1, + STATE(1960), 1, sym__using_first, - STATE(1894), 2, + STATE(1912), 2, sym_comment, sym_include, - STATE(2166), 3, + STATE(2222), 3, sym_where_clause, sym_query_tuning, sym_of, @@ -126341,7 +127563,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_query_tuning_token2, aux_sym_query_tuning_token3, aux_sym_query_tuning_token4, - [96462] = 13, + [97159] = 13, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, @@ -126356,16 +127578,16 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_query_tuning_token5, ACTIONS(1203), 1, aux_sym_of_token1, - ACTIONS(2877), 1, + ACTIONS(2903), 1, anon_sym_RPAREN, - STATE(1888), 1, + STATE(1904), 1, aux_sym_can_find_expression_repeat2, - STATE(1944), 1, + STATE(1960), 1, sym__using_first, - STATE(1895), 2, + STATE(1913), 2, sym_comment, sym_include, - STATE(2166), 3, + STATE(2222), 3, sym_where_clause, sym_query_tuning, sym_of, @@ -126375,7 +127597,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_query_tuning_token2, aux_sym_query_tuning_token3, aux_sym_query_tuning_token4, - [96509] = 13, + [97206] = 13, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, @@ -126390,16 +127612,16 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_query_tuning_token5, ACTIONS(1203), 1, aux_sym_of_token1, - ACTIONS(2879), 1, + ACTIONS(2905), 1, anon_sym_RPAREN, - STATE(1888), 1, + STATE(1904), 1, aux_sym_can_find_expression_repeat2, - STATE(1944), 1, + STATE(1960), 1, sym__using_first, - STATE(1896), 2, + STATE(1914), 2, sym_comment, sym_include, - STATE(2166), 3, + STATE(2222), 3, sym_where_clause, sym_query_tuning, sym_of, @@ -126409,7 +127631,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_query_tuning_token2, aux_sym_query_tuning_token3, aux_sym_query_tuning_token4, - [96556] = 13, + [97253] = 13, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, @@ -126424,16 +127646,16 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_query_tuning_token5, ACTIONS(1203), 1, aux_sym_of_token1, - ACTIONS(2881), 1, + ACTIONS(2907), 1, anon_sym_RPAREN, - STATE(1888), 1, + STATE(1904), 1, aux_sym_can_find_expression_repeat2, - STATE(1944), 1, + STATE(1960), 1, sym__using_first, - STATE(1897), 2, + STATE(1915), 2, sym_comment, sym_include, - STATE(2166), 3, + STATE(2222), 3, sym_where_clause, sym_query_tuning, sym_of, @@ -126443,7 +127665,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_query_tuning_token2, aux_sym_query_tuning_token3, aux_sym_query_tuning_token4, - [96603] = 13, + [97300] = 13, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, @@ -126458,16 +127680,16 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_query_tuning_token5, ACTIONS(1203), 1, aux_sym_of_token1, - ACTIONS(2883), 1, + ACTIONS(2909), 1, anon_sym_RPAREN, - STATE(1888), 1, + STATE(1904), 1, aux_sym_can_find_expression_repeat2, - STATE(1944), 1, + STATE(1960), 1, sym__using_first, - STATE(1898), 2, + STATE(1916), 2, sym_comment, sym_include, - STATE(2166), 3, + STATE(2222), 3, sym_where_clause, sym_query_tuning, sym_of, @@ -126477,7 +127699,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_query_tuning_token2, aux_sym_query_tuning_token3, aux_sym_query_tuning_token4, - [96650] = 13, + [97347] = 13, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, @@ -126492,16 +127714,16 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_query_tuning_token5, ACTIONS(1203), 1, aux_sym_of_token1, - ACTIONS(2885), 1, + ACTIONS(2911), 1, anon_sym_RPAREN, - STATE(1888), 1, + STATE(1904), 1, aux_sym_can_find_expression_repeat2, - STATE(1944), 1, + STATE(1960), 1, sym__using_first, - STATE(1899), 2, + STATE(1917), 2, sym_comment, sym_include, - STATE(2166), 3, + STATE(2222), 3, sym_where_clause, sym_query_tuning, sym_of, @@ -126511,7 +127733,46 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_query_tuning_token2, aux_sym_query_tuning_token3, aux_sym_query_tuning_token4, - [96697] = 13, + [97394] = 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(2822), 1, + aux_sym_repeat_tuning_token1, + ACTIONS(2824), 1, + aux_sym_on_error_phrase_token1, + ACTIONS(2913), 1, + anon_sym_COLON, + STATE(2172), 1, + sym_to_phrase, + STATE(2394), 1, + sym_while_phrase, + STATE(2532), 1, + sym_on_error_phrase, + STATE(2590), 1, + sym_on_quit_phrase, + STATE(3129), 1, + aux_sym_repeat_statement_repeat1, + STATE(3146), 1, + sym_on_stop_phrase, + STATE(3672), 1, + sym_repeat_tuning, + STATE(4760), 1, + sym_assignment, + STATE(1918), 2, + sym_comment, + sym_include, + STATE(4814), 2, + sym_qualified_name, + sym_object_access, + [97451] = 13, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, @@ -126526,16 +127787,16 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_query_tuning_token5, ACTIONS(1203), 1, aux_sym_of_token1, - ACTIONS(2887), 1, + ACTIONS(2915), 1, anon_sym_RPAREN, - STATE(1888), 1, + STATE(1904), 1, aux_sym_can_find_expression_repeat2, - STATE(1944), 1, + STATE(1960), 1, sym__using_first, - STATE(1900), 2, + STATE(1919), 2, sym_comment, sym_include, - STATE(2166), 3, + STATE(2222), 3, sym_where_clause, sym_query_tuning, sym_of, @@ -126545,464 +127806,394 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_query_tuning_token2, aux_sym_query_tuning_token3, aux_sym_query_tuning_token4, - [96744] = 14, - 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(1203), 1, - aux_sym_of_token1, - ACTIONS(2782), 1, - sym__terminator, - STATE(1946), 1, - sym_query_tuning, - STATE(1970), 1, - sym_of, - STATE(2105), 1, - sym__pre_tuning, - STATE(2325), 1, - sym_where_clause, - STATE(2336), 1, - aux_sym_for_phrase_repeat1, - STATE(1901), 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, - [96792] = 11, + [97498] = 13, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2894), 1, - aux_sym_variable_definition_token2, - ACTIONS(2896), 1, - aux_sym_getter_token1, - ACTIONS(2899), 1, - aux_sym_setter_token1, - STATE(3917), 1, - sym_access_tuning, - STATE(2189), 2, - sym_getter, - sym_setter, - ACTIONS(2891), 3, - aux_sym_access_tuning_token1, - aux_sym_access_tuning_token2, - aux_sym_access_tuning_token3, - STATE(1902), 3, + ACTIONS(2695), 1, + aux_sym_serialization_tuning_token1, + ACTIONS(2699), 1, + aux_sym_property_type_token1, + ACTIONS(2701), 1, + aux_sym_method_tuning_token1, + ACTIONS(2703), 1, + aux_sym_inherits_token1, + ACTIONS(2705), 1, + aux_sym_implements_token1, + ACTIONS(2707), 1, + aux_sym_use_widget_pool_token1, + ACTIONS(2735), 1, + anon_sym_COLON, + STATE(1951), 1, + aux_sym_class_statement_repeat1, + STATE(1920), 2, sym_comment, sym_include, - aux_sym_property_definition_repeat3, - ACTIONS(2889), 4, - aux_sym__block_terminator_token1, - aux_sym_variable_definition_token1, - aux_sym_method_definition_token1, - aux_sym_constructor_definition_token1, - [96834] = 12, + STATE(2440), 6, + sym_inherits, + sym_implements, + sym_use_widget_pool, + sym_abstract, + sym_final, + sym_serializable, + [97544] = 13, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2902), 1, + ACTIONS(2695), 1, aux_sym_serialization_tuning_token1, - ACTIONS(2905), 1, - anon_sym_COLON, - ACTIONS(2907), 1, + ACTIONS(2699), 1, aux_sym_property_type_token1, - ACTIONS(2910), 1, + ACTIONS(2701), 1, aux_sym_method_tuning_token1, - ACTIONS(2913), 1, + ACTIONS(2703), 1, aux_sym_inherits_token1, - ACTIONS(2916), 1, + ACTIONS(2705), 1, aux_sym_implements_token1, - ACTIONS(2919), 1, + ACTIONS(2707), 1, aux_sym_use_widget_pool_token1, - STATE(1903), 3, + ACTIONS(2917), 1, + anon_sym_COLON, + STATE(1933), 1, + aux_sym_class_statement_repeat1, + STATE(1921), 2, sym_comment, sym_include, - aux_sym_class_statement_repeat1, - STATE(2448), 6, + STATE(2440), 6, sym_inherits, sym_implements, sym_use_widget_pool, sym_abstract, sym_final, sym_serializable, - [96878] = 12, + [97590] = 12, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2403), 1, + ACTIONS(2411), 1, aux_sym_getter_token1, - ACTIONS(2405), 1, + ACTIONS(2413), 1, aux_sym_setter_token1, - ACTIONS(2511), 1, + ACTIONS(2921), 1, aux_sym_variable_definition_token2, - STATE(1902), 1, + STATE(1937), 1, aux_sym_property_definition_repeat3, - STATE(3917), 1, + STATE(4072), 1, sym_access_tuning, - STATE(1904), 2, + STATE(1922), 2, sym_comment, sym_include, - STATE(2189), 2, + STATE(2200), 2, sym_getter, sym_setter, - ACTIONS(1354), 3, + ACTIONS(1360), 3, aux_sym_access_tuning_token1, aux_sym_access_tuning_token2, aux_sym_access_tuning_token3, - ACTIONS(2509), 4, + ACTIONS(2919), 4, aux_sym__block_terminator_token1, aux_sym_variable_definition_token1, aux_sym_method_definition_token1, aux_sym_constructor_definition_token1, - [96922] = 12, + [97634] = 12, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2403), 1, + ACTIONS(2411), 1, aux_sym_getter_token1, - ACTIONS(2405), 1, + ACTIONS(2413), 1, aux_sym_setter_token1, - ACTIONS(2924), 1, + ACTIONS(2925), 1, aux_sym_variable_definition_token2, - STATE(1902), 1, + STATE(1937), 1, aux_sym_property_definition_repeat3, - STATE(3917), 1, + STATE(4072), 1, sym_access_tuning, - STATE(1905), 2, + STATE(1923), 2, sym_comment, sym_include, - STATE(2189), 2, + STATE(2200), 2, sym_getter, sym_setter, - ACTIONS(1354), 3, + ACTIONS(1360), 3, aux_sym_access_tuning_token1, aux_sym_access_tuning_token2, aux_sym_access_tuning_token3, - ACTIONS(2922), 4, + ACTIONS(2923), 4, aux_sym__block_terminator_token1, aux_sym_variable_definition_token1, aux_sym_method_definition_token1, aux_sym_constructor_definition_token1, - [96966] = 14, + [97678] = 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(1203), 1, - aux_sym_of_token1, - ACTIONS(2711), 1, - sym__terminator, - STATE(1946), 1, - sym_query_tuning, - STATE(2020), 1, - sym_of, - STATE(2023), 1, - sym__pre_tuning, - STATE(2251), 1, - aux_sym_for_phrase_repeat1, - STATE(2264), 1, - sym_where_clause, - STATE(1906), 2, + ACTIONS(2411), 1, + aux_sym_getter_token1, + ACTIONS(2413), 1, + aux_sym_setter_token1, + ACTIONS(2495), 1, + aux_sym_variable_definition_token2, + STATE(1937), 1, + aux_sym_property_definition_repeat3, + STATE(4072), 1, + sym_access_tuning, + STATE(1924), 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, - [97014] = 13, + STATE(2200), 2, + sym_getter, + sym_setter, + ACTIONS(1360), 3, + aux_sym_access_tuning_token1, + aux_sym_access_tuning_token2, + aux_sym_access_tuning_token3, + ACTIONS(2493), 4, + aux_sym__block_terminator_token1, + aux_sym_variable_definition_token1, + aux_sym_method_definition_token1, + aux_sym_constructor_definition_token1, + [97722] = 12, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2713), 1, - aux_sym_serialization_tuning_token1, - ACTIONS(2717), 1, - aux_sym_property_type_token1, - ACTIONS(2719), 1, - aux_sym_method_tuning_token1, - ACTIONS(2721), 1, - aux_sym_inherits_token1, - ACTIONS(2723), 1, - aux_sym_implements_token1, - ACTIONS(2725), 1, - aux_sym_use_widget_pool_token1, - ACTIONS(2926), 1, - anon_sym_COLON, - STATE(1903), 1, - aux_sym_class_statement_repeat1, - STATE(1907), 2, + ACTIONS(2411), 1, + aux_sym_getter_token1, + ACTIONS(2413), 1, + aux_sym_setter_token1, + ACTIONS(2505), 1, + aux_sym_variable_definition_token2, + STATE(1937), 1, + aux_sym_property_definition_repeat3, + STATE(4072), 1, + sym_access_tuning, + STATE(1925), 2, sym_comment, sym_include, - STATE(2448), 6, - sym_inherits, - sym_implements, - sym_use_widget_pool, - sym_abstract, - sym_final, - sym_serializable, - [97060] = 12, + STATE(2200), 2, + sym_getter, + sym_setter, + ACTIONS(1360), 3, + aux_sym_access_tuning_token1, + aux_sym_access_tuning_token2, + aux_sym_access_tuning_token3, + ACTIONS(2503), 4, + aux_sym__block_terminator_token1, + aux_sym_variable_definition_token1, + aux_sym_method_definition_token1, + aux_sym_constructor_definition_token1, + [97766] = 12, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2403), 1, + ACTIONS(2411), 1, aux_sym_getter_token1, - ACTIONS(2405), 1, + ACTIONS(2413), 1, aux_sym_setter_token1, - ACTIONS(2525), 1, + ACTIONS(2570), 1, aux_sym_variable_definition_token2, - STATE(1902), 1, + STATE(1937), 1, aux_sym_property_definition_repeat3, - STATE(3917), 1, + STATE(4072), 1, sym_access_tuning, - STATE(1908), 2, + STATE(1926), 2, sym_comment, sym_include, - STATE(2189), 2, + STATE(2200), 2, sym_getter, sym_setter, - ACTIONS(1354), 3, + ACTIONS(1360), 3, aux_sym_access_tuning_token1, aux_sym_access_tuning_token2, aux_sym_access_tuning_token3, - ACTIONS(2523), 4, + ACTIONS(2568), 4, aux_sym__block_terminator_token1, aux_sym_variable_definition_token1, aux_sym_method_definition_token1, aux_sym_constructor_definition_token1, - [97104] = 12, + [97810] = 12, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2403), 1, + ACTIONS(2411), 1, aux_sym_getter_token1, - ACTIONS(2405), 1, + ACTIONS(2413), 1, aux_sym_setter_token1, - ACTIONS(2515), 1, + ACTIONS(2556), 1, aux_sym_variable_definition_token2, - STATE(1902), 1, + STATE(1937), 1, aux_sym_property_definition_repeat3, - STATE(3917), 1, + STATE(4072), 1, sym_access_tuning, - STATE(1909), 2, + STATE(1927), 2, sym_comment, sym_include, - STATE(2189), 2, + STATE(2200), 2, sym_getter, sym_setter, - ACTIONS(1354), 3, + ACTIONS(1360), 3, aux_sym_access_tuning_token1, aux_sym_access_tuning_token2, aux_sym_access_tuning_token3, - ACTIONS(2513), 4, + ACTIONS(2554), 4, aux_sym__block_terminator_token1, aux_sym_variable_definition_token1, aux_sym_method_definition_token1, aux_sym_constructor_definition_token1, - [97148] = 14, - ACTIONS(59), 1, + [97854] = 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(1199), 1, - aux_sym_where_clause_token1, - ACTIONS(1201), 1, - aux_sym_query_tuning_token5, - ACTIONS(1203), 1, - aux_sym_of_token1, - ACTIONS(2806), 1, - sym__terminator, - STATE(1946), 1, - sym_query_tuning, - STATE(2007), 1, - sym_of, - STATE(2048), 1, - sym__pre_tuning, - STATE(2326), 1, - sym_where_clause, - STATE(2338), 1, - aux_sym_for_phrase_repeat1, - STATE(1910), 2, + ACTIONS(681), 1, + sym__namecolon, + ACTIONS(2927), 1, + anon_sym_LPAREN, + ACTIONS(2931), 1, + sym__namedot, + STATE(2206), 1, + aux_sym_qualified_name_repeat1, + STATE(3069), 1, + sym_sort_order, + STATE(3145), 1, + aux_sym_object_access_repeat1, + STATE(1928), 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, - [97196] = 13, + ACTIONS(2719), 4, + sym_identifier, + sym__terminator, + aux_sym_field_definition_token1, + aux_sym_index_definition_token1, + ACTIONS(2929), 4, + aux_sym_sort_order_token1, + aux_sym_sort_order_token2, + aux_sym_sort_order_token3, + aux_sym_sort_order_token4, + [97898] = 13, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2713), 1, + ACTIONS(2695), 1, aux_sym_serialization_tuning_token1, - ACTIONS(2717), 1, + ACTIONS(2699), 1, aux_sym_property_type_token1, - ACTIONS(2719), 1, + ACTIONS(2701), 1, aux_sym_method_tuning_token1, - ACTIONS(2721), 1, + ACTIONS(2703), 1, aux_sym_inherits_token1, - ACTIONS(2723), 1, + ACTIONS(2705), 1, aux_sym_implements_token1, - ACTIONS(2725), 1, + ACTIONS(2707), 1, aux_sym_use_widget_pool_token1, - ACTIONS(2928), 1, + ACTIONS(2715), 1, anon_sym_COLON, - STATE(1903), 1, + STATE(1936), 1, aux_sym_class_statement_repeat1, - STATE(1911), 2, + STATE(1929), 2, sym_comment, sym_include, - STATE(2448), 6, + STATE(2440), 6, sym_inherits, sym_implements, sym_use_widget_pool, sym_abstract, sym_final, sym_serializable, - [97242] = 14, - 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(1203), 1, - aux_sym_of_token1, - ACTIONS(2693), 1, - sym__terminator, - STATE(1946), 1, - sym_query_tuning, - STATE(1995), 1, - sym_of, - STATE(2072), 1, - sym__pre_tuning, - STATE(2267), 1, - aux_sym_for_phrase_repeat1, - STATE(2269), 1, - sym_where_clause, - STATE(1912), 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, - [97290] = 12, + [97944] = 12, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2403), 1, + ACTIONS(2411), 1, aux_sym_getter_token1, - ACTIONS(2405), 1, + ACTIONS(2413), 1, aux_sym_setter_token1, - ACTIONS(2491), 1, + ACTIONS(2935), 1, aux_sym_variable_definition_token2, - STATE(1902), 1, + STATE(1937), 1, aux_sym_property_definition_repeat3, - STATE(3917), 1, + STATE(4072), 1, sym_access_tuning, - STATE(1913), 2, + STATE(1930), 2, sym_comment, sym_include, - STATE(2189), 2, + STATE(2200), 2, sym_getter, sym_setter, - ACTIONS(1354), 3, + ACTIONS(1360), 3, aux_sym_access_tuning_token1, aux_sym_access_tuning_token2, aux_sym_access_tuning_token3, - ACTIONS(2489), 4, + ACTIONS(2933), 4, aux_sym__block_terminator_token1, aux_sym_variable_definition_token1, aux_sym_method_definition_token1, aux_sym_constructor_definition_token1, - [97334] = 12, + [97988] = 12, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2403), 1, + ACTIONS(2411), 1, aux_sym_getter_token1, - ACTIONS(2405), 1, + ACTIONS(2413), 1, aux_sym_setter_token1, - ACTIONS(2521), 1, + ACTIONS(2939), 1, aux_sym_variable_definition_token2, - STATE(1902), 1, + STATE(1937), 1, aux_sym_property_definition_repeat3, - STATE(3917), 1, + STATE(4072), 1, sym_access_tuning, - STATE(1914), 2, + STATE(1931), 2, sym_comment, sym_include, - STATE(2189), 2, + STATE(2200), 2, sym_getter, sym_setter, - ACTIONS(1354), 3, + ACTIONS(1360), 3, aux_sym_access_tuning_token1, aux_sym_access_tuning_token2, aux_sym_access_tuning_token3, - ACTIONS(2519), 4, + ACTIONS(2937), 4, aux_sym__block_terminator_token1, aux_sym_variable_definition_token1, aux_sym_method_definition_token1, aux_sym_constructor_definition_token1, - [97378] = 14, + [98032] = 14, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, @@ -127015,19 +128206,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_query_tuning_token5, ACTIONS(1203), 1, aux_sym_of_token1, - ACTIONS(2678), 1, + ACTIONS(2759), 1, sym__terminator, - STATE(1946), 1, + STATE(1962), 1, sym_query_tuning, - STATE(1972), 1, + STATE(2024), 1, sym_of, - STATE(2101), 1, + STATE(2088), 1, sym__pre_tuning, - STATE(2247), 1, - aux_sym_for_phrase_repeat1, - STATE(2280), 1, + STATE(2274), 1, sym_where_clause, - STATE(1915), 2, + STATE(2275), 1, + aux_sym_for_phrase_repeat1, + STATE(1932), 2, sym_comment, sym_include, ACTIONS(1195), 5, @@ -127036,205 +128227,198 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_query_tuning_token2, aux_sym_query_tuning_token3, aux_sym_query_tuning_token4, - [97426] = 13, + [98080] = 12, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2713), 1, + ACTIONS(2941), 1, aux_sym_serialization_tuning_token1, - ACTIONS(2717), 1, + ACTIONS(2944), 1, + anon_sym_COLON, + ACTIONS(2946), 1, aux_sym_property_type_token1, - ACTIONS(2719), 1, + ACTIONS(2949), 1, aux_sym_method_tuning_token1, - ACTIONS(2721), 1, + ACTIONS(2952), 1, aux_sym_inherits_token1, - ACTIONS(2723), 1, + ACTIONS(2955), 1, aux_sym_implements_token1, - ACTIONS(2725), 1, + ACTIONS(2958), 1, aux_sym_use_widget_pool_token1, - ACTIONS(2804), 1, - anon_sym_COLON, - STATE(1911), 1, - aux_sym_class_statement_repeat1, - STATE(1916), 2, + STATE(1933), 3, sym_comment, sym_include, - STATE(2448), 6, + aux_sym_class_statement_repeat1, + STATE(2440), 6, sym_inherits, sym_implements, sym_use_widget_pool, sym_abstract, sym_final, sym_serializable, - [97472] = 14, - 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(1203), 1, - aux_sym_of_token1, - ACTIONS(2760), 1, - sym__terminator, - STATE(1946), 1, - sym_query_tuning, - STATE(1957), 1, - sym_of, - STATE(2130), 1, - sym__pre_tuning, - STATE(2315), 1, - sym_where_clause, - STATE(2319), 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, - [97520] = 14, + [98124] = 13, 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(1203), 1, - aux_sym_of_token1, - ACTIONS(2800), 1, - sym__terminator, - STATE(1946), 1, - sym_query_tuning, - STATE(1987), 1, - sym_of, - STATE(2083), 1, - sym__pre_tuning, - STATE(2345), 1, - sym_where_clause, - STATE(2346), 1, - aux_sym_for_phrase_repeat1, - STATE(1918), 2, + ACTIONS(2695), 1, + aux_sym_serialization_tuning_token1, + ACTIONS(2699), 1, + aux_sym_property_type_token1, + ACTIONS(2701), 1, + aux_sym_method_tuning_token1, + ACTIONS(2703), 1, + aux_sym_inherits_token1, + ACTIONS(2705), 1, + aux_sym_implements_token1, + ACTIONS(2707), 1, + aux_sym_use_widget_pool_token1, + ACTIONS(2961), 1, + anon_sym_COLON, + STATE(1933), 1, + aux_sym_class_statement_repeat1, + STATE(1934), 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, - [97568] = 12, + STATE(2440), 6, + sym_inherits, + sym_implements, + sym_use_widget_pool, + sym_abstract, + sym_final, + sym_serializable, + [98170] = 12, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2403), 1, + ACTIONS(2411), 1, aux_sym_getter_token1, - ACTIONS(2405), 1, + ACTIONS(2413), 1, aux_sym_setter_token1, - ACTIONS(2932), 1, + ACTIONS(2562), 1, aux_sym_variable_definition_token2, - STATE(1902), 1, + STATE(1937), 1, aux_sym_property_definition_repeat3, - STATE(3917), 1, + STATE(4072), 1, sym_access_tuning, - STATE(1919), 2, + STATE(1935), 2, sym_comment, sym_include, - STATE(2189), 2, + STATE(2200), 2, sym_getter, sym_setter, - ACTIONS(1354), 3, + ACTIONS(1360), 3, aux_sym_access_tuning_token1, aux_sym_access_tuning_token2, aux_sym_access_tuning_token3, - ACTIONS(2930), 4, + ACTIONS(2560), 4, aux_sym__block_terminator_token1, aux_sym_variable_definition_token1, aux_sym_method_definition_token1, aux_sym_constructor_definition_token1, - [97612] = 13, + [98214] = 13, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2713), 1, + ACTIONS(2695), 1, aux_sym_serialization_tuning_token1, - ACTIONS(2715), 1, - anon_sym_COLON, - ACTIONS(2717), 1, + ACTIONS(2699), 1, aux_sym_property_type_token1, - ACTIONS(2719), 1, + ACTIONS(2701), 1, aux_sym_method_tuning_token1, - ACTIONS(2721), 1, + ACTIONS(2703), 1, aux_sym_inherits_token1, - ACTIONS(2723), 1, + ACTIONS(2705), 1, aux_sym_implements_token1, - ACTIONS(2725), 1, + ACTIONS(2707), 1, aux_sym_use_widget_pool_token1, - STATE(1929), 1, + ACTIONS(2963), 1, + anon_sym_COLON, + STATE(1933), 1, aux_sym_class_statement_repeat1, - STATE(1920), 2, + STATE(1936), 2, sym_comment, sym_include, - STATE(2448), 6, + STATE(2440), 6, sym_inherits, sym_implements, sym_use_widget_pool, sym_abstract, sym_final, sym_serializable, - [97658] = 12, + [98260] = 11, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2403), 1, + ACTIONS(2970), 1, + aux_sym_variable_definition_token2, + ACTIONS(2972), 1, aux_sym_getter_token1, - ACTIONS(2405), 1, + ACTIONS(2975), 1, aux_sym_setter_token1, - ACTIONS(2487), 1, - aux_sym_variable_definition_token2, - STATE(1902), 1, - aux_sym_property_definition_repeat3, - STATE(3917), 1, + STATE(4072), 1, sym_access_tuning, - STATE(1921), 2, - sym_comment, - sym_include, - STATE(2189), 2, + STATE(2200), 2, sym_getter, sym_setter, - ACTIONS(1354), 3, + ACTIONS(2967), 3, aux_sym_access_tuning_token1, aux_sym_access_tuning_token2, aux_sym_access_tuning_token3, - ACTIONS(2485), 4, + STATE(1937), 3, + sym_comment, + sym_include, + aux_sym_property_definition_repeat3, + ACTIONS(2965), 4, aux_sym__block_terminator_token1, aux_sym_variable_definition_token1, aux_sym_method_definition_token1, aux_sym_constructor_definition_token1, - [97702] = 14, + [98302] = 10, + ACTIONS(59), 1, + anon_sym_SLASH_SLASH, + ACTIONS(61), 1, + anon_sym_SLASH_STAR, + ACTIONS(65), 1, + anon_sym_LBRACE, + ACTIONS(2713), 1, + aux_sym_buffer_definition_token3, + STATE(1877), 1, + aux_sym_variable_definition_repeat1, + ACTIONS(1362), 2, + aux_sym_serialization_tuning_token1, + aux_sym_serialization_tuning_token2, + STATE(1938), 2, + sym_comment, + sym_include, + ACTIONS(1360), 3, + aux_sym_access_tuning_token1, + aux_sym_access_tuning_token2, + aux_sym_access_tuning_token3, + STATE(2005), 3, + sym_scope_tuning, + sym_access_tuning, + sym_serialization_tuning, + ACTIONS(1358), 4, + aux_sym_scope_tuning_token1, + aux_sym_scope_tuning_token2, + aux_sym_scope_tuning_token3, + aux_sym_scope_tuning_token4, + [98342] = 14, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, @@ -127247,19 +128431,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_query_tuning_token5, ACTIONS(1203), 1, aux_sym_of_token1, - ACTIONS(2727), 1, + ACTIONS(2783), 1, sym__terminator, - STATE(1946), 1, + STATE(1962), 1, sym_query_tuning, - STATE(2011), 1, + STATE(2022), 1, sym_of, - STATE(2047), 1, + STATE(2107), 1, sym__pre_tuning, - STATE(2293), 1, + STATE(2244), 1, sym_where_clause, - STATE(2333), 1, + STATE(2250), 1, aux_sym_for_phrase_repeat1, - STATE(1922), 2, + STATE(1939), 2, sym_comment, sym_include, ACTIONS(1195), 5, @@ -127268,104 +128452,163 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_query_tuning_token2, aux_sym_query_tuning_token3, aux_sym_query_tuning_token4, - [97750] = 12, - ACTIONS(3), 1, + [98390] = 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(681), 1, - sym__namecolon, - ACTIONS(2934), 1, - anon_sym_LPAREN, - ACTIONS(2938), 1, - sym__namedot, - STATE(2154), 1, - aux_sym_qualified_name_repeat1, - STATE(3004), 1, - aux_sym_object_access_repeat1, - STATE(3056), 1, - sym_sort_order, - STATE(1923), 2, + ACTIONS(1370), 1, + aux_sym_buffer_definition_token3, + STATE(1938), 1, + aux_sym_variable_definition_repeat1, + ACTIONS(1362), 2, + aux_sym_serialization_tuning_token1, + aux_sym_serialization_tuning_token2, + STATE(1940), 2, sym_comment, sym_include, - ACTIONS(2742), 4, - sym_identifier, - sym__terminator, - aux_sym_field_definition_token1, - aux_sym_index_definition_token1, - ACTIONS(2936), 4, - aux_sym_sort_order_token1, - aux_sym_sort_order_token2, - aux_sym_sort_order_token3, - aux_sym_sort_order_token4, - [97794] = 13, + ACTIONS(1360), 3, + aux_sym_access_tuning_token1, + aux_sym_access_tuning_token2, + aux_sym_access_tuning_token3, + STATE(2005), 3, + sym_scope_tuning, + sym_access_tuning, + sym_serialization_tuning, + ACTIONS(1358), 4, + aux_sym_scope_tuning_token1, + aux_sym_scope_tuning_token2, + aux_sym_scope_tuning_token3, + aux_sym_scope_tuning_token4, + [98430] = 13, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2713), 1, + ACTIONS(2695), 1, aux_sym_serialization_tuning_token1, - ACTIONS(2717), 1, + ACTIONS(2697), 1, + anon_sym_COLON, + ACTIONS(2699), 1, aux_sym_property_type_token1, - ACTIONS(2719), 1, + ACTIONS(2701), 1, aux_sym_method_tuning_token1, - ACTIONS(2721), 1, + ACTIONS(2703), 1, aux_sym_inherits_token1, - ACTIONS(2723), 1, + ACTIONS(2705), 1, aux_sym_implements_token1, - ACTIONS(2725), 1, + ACTIONS(2707), 1, + aux_sym_use_widget_pool_token1, + STATE(1921), 1, + aux_sym_class_statement_repeat1, + STATE(1941), 2, + sym_comment, + sym_include, + STATE(2440), 6, + sym_inherits, + sym_implements, + sym_use_widget_pool, + sym_abstract, + sym_final, + sym_serializable, + [98476] = 13, + ACTIONS(59), 1, + anon_sym_SLASH_SLASH, + ACTIONS(61), 1, + anon_sym_SLASH_STAR, + ACTIONS(65), 1, + anon_sym_LBRACE, + ACTIONS(2695), 1, + aux_sym_serialization_tuning_token1, + ACTIONS(2699), 1, + aux_sym_property_type_token1, + ACTIONS(2701), 1, + aux_sym_method_tuning_token1, + ACTIONS(2703), 1, + aux_sym_inherits_token1, + ACTIONS(2705), 1, + aux_sym_implements_token1, + ACTIONS(2707), 1, aux_sym_use_widget_pool_token1, - ACTIONS(2792), 1, + ACTIONS(2978), 1, anon_sym_COLON, - STATE(1934), 1, + STATE(1933), 1, aux_sym_class_statement_repeat1, - STATE(1924), 2, + STATE(1942), 2, sym_comment, sym_include, - STATE(2448), 6, + STATE(2440), 6, sym_inherits, sym_implements, sym_use_widget_pool, sym_abstract, sym_final, sym_serializable, - [97840] = 12, + [98522] = 8, + ACTIONS(59), 1, + anon_sym_SLASH_SLASH, + ACTIONS(61), 1, + anon_sym_SLASH_STAR, + ACTIONS(65), 1, + anon_sym_LBRACE, + ACTIONS(1458), 1, + aux_sym_variable_definition_token4, + ACTIONS(1460), 2, + aux_sym_buffer_definition_token1, + aux_sym_query_definition_token1, + STATE(1943), 2, + sym_comment, + sym_include, + ACTIONS(1456), 4, + aux_sym_serialization_tuning_token1, + aux_sym_serialization_tuning_token2, + aux_sym_variable_definition_token3, + aux_sym_buffer_definition_token3, + ACTIONS(1450), 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, + [98558] = 12, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2403), 1, + ACTIONS(2411), 1, aux_sym_getter_token1, - ACTIONS(2405), 1, + ACTIONS(2413), 1, aux_sym_setter_token1, - ACTIONS(2942), 1, + ACTIONS(2501), 1, aux_sym_variable_definition_token2, - STATE(1902), 1, + STATE(1937), 1, aux_sym_property_definition_repeat3, - STATE(3917), 1, + STATE(4072), 1, sym_access_tuning, - STATE(1925), 2, + STATE(1944), 2, sym_comment, sym_include, - STATE(2189), 2, + STATE(2200), 2, sym_getter, sym_setter, - ACTIONS(1354), 3, + ACTIONS(1360), 3, aux_sym_access_tuning_token1, aux_sym_access_tuning_token2, aux_sym_access_tuning_token3, - ACTIONS(2940), 4, + ACTIONS(2499), 4, aux_sym__block_terminator_token1, aux_sym_variable_definition_token1, aux_sym_method_definition_token1, aux_sym_constructor_definition_token1, - [97884] = 14, + [98602] = 14, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, @@ -127378,19 +128621,53 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_query_tuning_token5, ACTIONS(1203), 1, aux_sym_of_token1, - ACTIONS(2750), 1, + ACTIONS(2717), 1, sym__terminator, - STATE(1946), 1, + STATE(1962), 1, sym_query_tuning, - STATE(1996), 1, + STATE(1990), 1, sym_of, - STATE(2070), 1, + STATE(2108), 1, sym__pre_tuning, - STATE(2232), 1, + STATE(2240), 1, + aux_sym_for_phrase_repeat1, + STATE(2243), 1, sym_where_clause, - STATE(2305), 1, + STATE(1945), 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, + [98650] = 14, + 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(1203), 1, + aux_sym_of_token1, + ACTIONS(2761), 1, + sym__terminator, + STATE(1962), 1, + sym_query_tuning, + STATE(2013), 1, + sym_of, + STATE(2144), 1, + sym__pre_tuning, + STATE(2349), 1, aux_sym_for_phrase_repeat1, - STATE(1926), 2, + STATE(2356), 1, + sym_where_clause, + STATE(1946), 2, sym_comment, sym_include, ACTIONS(1195), 5, @@ -127399,168 +128676,167 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_query_tuning_token2, aux_sym_query_tuning_token3, aux_sym_query_tuning_token4, - [97932] = 12, + [98698] = 12, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2403), 1, + ACTIONS(2411), 1, aux_sym_getter_token1, - ACTIONS(2405), 1, + ACTIONS(2413), 1, aux_sym_setter_token1, - ACTIONS(2562), 1, + ACTIONS(2544), 1, aux_sym_variable_definition_token2, - STATE(1902), 1, + STATE(1937), 1, aux_sym_property_definition_repeat3, - STATE(3917), 1, + STATE(4072), 1, sym_access_tuning, - STATE(1927), 2, + STATE(1947), 2, sym_comment, sym_include, - STATE(2189), 2, + STATE(2200), 2, sym_getter, sym_setter, - ACTIONS(1354), 3, + ACTIONS(1360), 3, aux_sym_access_tuning_token1, aux_sym_access_tuning_token2, aux_sym_access_tuning_token3, - ACTIONS(2560), 4, + ACTIONS(2542), 4, aux_sym__block_terminator_token1, aux_sym_variable_definition_token1, aux_sym_method_definition_token1, aux_sym_constructor_definition_token1, - [97976] = 13, + [98742] = 8, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2713), 1, - aux_sym_serialization_tuning_token1, - ACTIONS(2717), 1, - aux_sym_property_type_token1, - ACTIONS(2719), 1, - aux_sym_method_tuning_token1, - ACTIONS(2721), 1, - aux_sym_inherits_token1, - ACTIONS(2723), 1, - aux_sym_implements_token1, - ACTIONS(2725), 1, - aux_sym_use_widget_pool_token1, - ACTIONS(2762), 1, + ACTIONS(2985), 1, + aux_sym_query_tuning_token5, + STATE(2019), 1, + sym_query_tuning, + STATE(1948), 3, + sym_comment, + sym_include, + aux_sym_for_phrase_repeat1, + ACTIONS(2982), 5, + aux_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(2980), 6, + sym__terminator, + anon_sym_COMMA, anon_sym_COLON, - STATE(1931), 1, - aux_sym_class_statement_repeat1, - STATE(1928), 2, + aux_sym_on_error_phrase_token1, + aux_sym_sort_clause_token1, + aux_sym_sort_clause_token2, + [98778] = 14, + 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(1203), 1, + aux_sym_of_token1, + ACTIONS(2739), 1, + sym__terminator, + STATE(1962), 1, + sym_query_tuning, + STATE(2016), 1, + sym_of, + STATE(2128), 1, + sym__pre_tuning, + STATE(2295), 1, + sym_where_clause, + STATE(2301), 1, + aux_sym_for_phrase_repeat1, + STATE(1949), 2, sym_comment, sym_include, - STATE(2448), 6, - sym_inherits, - sym_implements, - sym_use_widget_pool, - sym_abstract, - sym_final, - sym_serializable, - [98022] = 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, + [98826] = 13, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2713), 1, + ACTIONS(2695), 1, aux_sym_serialization_tuning_token1, - ACTIONS(2717), 1, + ACTIONS(2699), 1, aux_sym_property_type_token1, - ACTIONS(2719), 1, + ACTIONS(2701), 1, aux_sym_method_tuning_token1, - ACTIONS(2721), 1, + ACTIONS(2703), 1, aux_sym_inherits_token1, - ACTIONS(2723), 1, + ACTIONS(2705), 1, aux_sym_implements_token1, - ACTIONS(2725), 1, + ACTIONS(2707), 1, aux_sym_use_widget_pool_token1, - ACTIONS(2944), 1, + ACTIONS(2741), 1, anon_sym_COLON, - STATE(1903), 1, + STATE(1934), 1, aux_sym_class_statement_repeat1, - STATE(1929), 2, + STATE(1950), 2, sym_comment, sym_include, - STATE(2448), 6, + STATE(2440), 6, sym_inherits, sym_implements, sym_use_widget_pool, sym_abstract, sym_final, sym_serializable, - [98068] = 10, - ACTIONS(59), 1, - anon_sym_SLASH_SLASH, - ACTIONS(61), 1, - anon_sym_SLASH_STAR, - ACTIONS(65), 1, - anon_sym_LBRACE, - ACTIONS(2758), 1, - aux_sym_buffer_definition_token3, - STATE(1841), 1, - aux_sym_variable_definition_repeat1, - ACTIONS(1356), 2, - aux_sym_serialization_tuning_token1, - aux_sym_serialization_tuning_token2, - STATE(1930), 2, - sym_comment, - sym_include, - ACTIONS(1354), 3, - aux_sym_access_tuning_token1, - aux_sym_access_tuning_token2, - aux_sym_access_tuning_token3, - STATE(1959), 3, - sym_scope_tuning, - sym_access_tuning, - sym_serialization_tuning, - ACTIONS(1352), 4, - aux_sym_scope_tuning_token1, - aux_sym_scope_tuning_token2, - aux_sym_scope_tuning_token3, - aux_sym_scope_tuning_token4, - [98108] = 13, + [98872] = 13, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2713), 1, + ACTIONS(2695), 1, aux_sym_serialization_tuning_token1, - ACTIONS(2717), 1, + ACTIONS(2699), 1, aux_sym_property_type_token1, - ACTIONS(2719), 1, + ACTIONS(2701), 1, aux_sym_method_tuning_token1, - ACTIONS(2721), 1, + ACTIONS(2703), 1, aux_sym_inherits_token1, - ACTIONS(2723), 1, + ACTIONS(2705), 1, aux_sym_implements_token1, - ACTIONS(2725), 1, + ACTIONS(2707), 1, aux_sym_use_widget_pool_token1, - ACTIONS(2946), 1, + ACTIONS(2988), 1, anon_sym_COLON, - STATE(1903), 1, + STATE(1933), 1, aux_sym_class_statement_repeat1, - STATE(1931), 2, + STATE(1951), 2, sym_comment, sym_include, - STATE(2448), 6, + STATE(2440), 6, sym_inherits, sym_implements, sym_use_widget_pool, sym_abstract, sym_final, sym_serializable, - [98154] = 14, + [98918] = 14, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, @@ -127573,19 +128849,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_query_tuning_token5, ACTIONS(1203), 1, aux_sym_of_token1, - ACTIONS(2774), 1, + ACTIONS(2795), 1, sym__terminator, - STATE(1946), 1, + STATE(1962), 1, sym_query_tuning, - STATE(1951), 1, + STATE(1994), 1, sym_of, - STATE(2030), 1, + STATE(2112), 1, sym__pre_tuning, - STATE(2243), 1, - aux_sym_for_phrase_repeat1, - STATE(2245), 1, + STATE(2241), 1, sym_where_clause, - STATE(1932), 2, + STATE(2270), 1, + aux_sym_for_phrase_repeat1, + STATE(1952), 2, sym_comment, sym_include, ACTIONS(1195), 5, @@ -127594,354 +128870,256 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_query_tuning_token2, aux_sym_query_tuning_token3, aux_sym_query_tuning_token4, - [98202] = 8, - ACTIONS(59), 1, - anon_sym_SLASH_SLASH, - ACTIONS(61), 1, - anon_sym_SLASH_STAR, - ACTIONS(65), 1, - anon_sym_LBRACE, - ACTIONS(1448), 1, - aux_sym_variable_definition_token4, - ACTIONS(1450), 2, - aux_sym_buffer_definition_token1, - aux_sym_query_definition_token1, - STATE(1933), 2, - sym_comment, - sym_include, - ACTIONS(1446), 4, - aux_sym_serialization_tuning_token1, - aux_sym_serialization_tuning_token2, - aux_sym_variable_definition_token3, - aux_sym_buffer_definition_token3, - ACTIONS(1440), 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, - [98238] = 13, - ACTIONS(59), 1, - anon_sym_SLASH_SLASH, - ACTIONS(61), 1, - anon_sym_SLASH_STAR, - ACTIONS(65), 1, - anon_sym_LBRACE, - ACTIONS(2713), 1, - aux_sym_serialization_tuning_token1, - ACTIONS(2717), 1, - aux_sym_property_type_token1, - ACTIONS(2719), 1, - aux_sym_method_tuning_token1, - ACTIONS(2721), 1, - aux_sym_inherits_token1, - ACTIONS(2723), 1, - aux_sym_implements_token1, - ACTIONS(2725), 1, - aux_sym_use_widget_pool_token1, - ACTIONS(2948), 1, - anon_sym_COLON, - STATE(1903), 1, - aux_sym_class_statement_repeat1, - STATE(1934), 2, - sym_comment, - sym_include, - STATE(2448), 6, - sym_inherits, - sym_implements, - sym_use_widget_pool, - sym_abstract, - sym_final, - sym_serializable, - [98284] = 8, + [98966] = 14, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2955), 1, + ACTIONS(1199), 1, + aux_sym_where_clause_token1, + ACTIONS(1201), 1, aux_sym_query_tuning_token5, - STATE(1953), 1, + ACTIONS(1203), 1, + aux_sym_of_token1, + ACTIONS(2785), 1, + sym__terminator, + STATE(1962), 1, sym_query_tuning, - STATE(1935), 3, + STATE(1984), 1, + sym_of, + STATE(2099), 1, + sym__pre_tuning, + STATE(2252), 1, + aux_sym_for_phrase_repeat1, + STATE(2254), 1, + sym_where_clause, + STATE(1953), 2, sym_comment, sym_include, - aux_sym_for_phrase_repeat1, - ACTIONS(2952), 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, - ACTIONS(2950), 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, - [98320] = 10, - ACTIONS(59), 1, - anon_sym_SLASH_SLASH, - ACTIONS(61), 1, - anon_sym_SLASH_STAR, - ACTIONS(65), 1, - anon_sym_LBRACE, - ACTIONS(1364), 1, - aux_sym_buffer_definition_token3, - STATE(1930), 1, - aux_sym_variable_definition_repeat1, - ACTIONS(1356), 2, - aux_sym_serialization_tuning_token1, - aux_sym_serialization_tuning_token2, - STATE(1936), 2, - sym_comment, - sym_include, - ACTIONS(1354), 3, - aux_sym_access_tuning_token1, - aux_sym_access_tuning_token2, - aux_sym_access_tuning_token3, - STATE(1959), 3, - sym_scope_tuning, - sym_access_tuning, - sym_serialization_tuning, - ACTIONS(1352), 4, - aux_sym_scope_tuning_token1, - aux_sym_scope_tuning_token2, - aux_sym_scope_tuning_token3, - aux_sym_scope_tuning_token4, - [98360] = 12, + [99014] = 12, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2403), 1, + ACTIONS(2411), 1, aux_sym_getter_token1, - ACTIONS(2405), 1, + ACTIONS(2413), 1, aux_sym_setter_token1, - ACTIONS(2566), 1, + ACTIONS(2992), 1, aux_sym_variable_definition_token2, - STATE(1902), 1, + STATE(1937), 1, aux_sym_property_definition_repeat3, - STATE(3917), 1, + STATE(4072), 1, sym_access_tuning, - STATE(1937), 2, + STATE(1954), 2, sym_comment, sym_include, - STATE(2189), 2, + STATE(2200), 2, sym_getter, sym_setter, - ACTIONS(1354), 3, + ACTIONS(1360), 3, aux_sym_access_tuning_token1, aux_sym_access_tuning_token2, aux_sym_access_tuning_token3, - ACTIONS(2564), 4, + ACTIONS(2990), 4, aux_sym__block_terminator_token1, aux_sym_variable_definition_token1, aux_sym_method_definition_token1, aux_sym_constructor_definition_token1, - [98404] = 12, + [99058] = 13, + ACTIONS(59), 1, + anon_sym_SLASH_SLASH, + ACTIONS(61), 1, + anon_sym_SLASH_STAR, + ACTIONS(65), 1, + anon_sym_LBRACE, + ACTIONS(2695), 1, + aux_sym_serialization_tuning_token1, + ACTIONS(2699), 1, + aux_sym_property_type_token1, + ACTIONS(2701), 1, + aux_sym_method_tuning_token1, + ACTIONS(2703), 1, + aux_sym_inherits_token1, + ACTIONS(2705), 1, + aux_sym_implements_token1, + ACTIONS(2707), 1, + aux_sym_use_widget_pool_token1, + ACTIONS(2757), 1, + anon_sym_COLON, + STATE(1942), 1, + aux_sym_class_statement_repeat1, + STATE(1955), 2, + sym_comment, + sym_include, + STATE(2440), 6, + sym_inherits, + sym_implements, + sym_use_widget_pool, + sym_abstract, + sym_final, + sym_serializable, + [99104] = 12, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2403), 1, + ACTIONS(2411), 1, aux_sym_getter_token1, - ACTIONS(2405), 1, + ACTIONS(2413), 1, aux_sym_setter_token1, - ACTIONS(2960), 1, + ACTIONS(2511), 1, aux_sym_variable_definition_token2, - STATE(1902), 1, + STATE(1937), 1, aux_sym_property_definition_repeat3, - STATE(3917), 1, + STATE(4072), 1, sym_access_tuning, - STATE(1938), 2, + STATE(1956), 2, sym_comment, sym_include, - STATE(2189), 2, + STATE(2200), 2, sym_getter, sym_setter, - ACTIONS(1354), 3, + ACTIONS(1360), 3, aux_sym_access_tuning_token1, aux_sym_access_tuning_token2, aux_sym_access_tuning_token3, - ACTIONS(2958), 4, + ACTIONS(2509), 4, aux_sym__block_terminator_token1, aux_sym_variable_definition_token1, aux_sym_method_definition_token1, aux_sym_constructor_definition_token1, - [98448] = 12, + [99148] = 14, 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(2964), 1, - aux_sym_variable_definition_token2, - STATE(1902), 1, - aux_sym_property_definition_repeat3, - STATE(3917), 1, - sym_access_tuning, - STATE(1939), 2, - sym_comment, - sym_include, - STATE(2189), 2, - sym_getter, - sym_setter, - ACTIONS(1354), 3, - aux_sym_access_tuning_token1, - aux_sym_access_tuning_token2, - aux_sym_access_tuning_token3, - ACTIONS(2962), 4, - aux_sym__block_terminator_token1, - aux_sym_variable_definition_token1, - aux_sym_method_definition_token1, - aux_sym_constructor_definition_token1, - [98492] = 13, - ACTIONS(59), 1, - anon_sym_SLASH_SLASH, - ACTIONS(61), 1, - anon_sym_SLASH_STAR, - ACTIONS(65), 1, - anon_sym_LBRACE, - ACTIONS(2713), 1, - aux_sym_serialization_tuning_token1, - ACTIONS(2717), 1, - aux_sym_property_type_token1, - ACTIONS(2719), 1, - aux_sym_method_tuning_token1, - ACTIONS(2721), 1, - aux_sym_inherits_token1, - ACTIONS(2723), 1, - aux_sym_implements_token1, - ACTIONS(2725), 1, - aux_sym_use_widget_pool_token1, - ACTIONS(2790), 1, - anon_sym_COLON, - STATE(1907), 1, - aux_sym_class_statement_repeat1, - STATE(1940), 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(2797), 1, + sym__terminator, + STATE(1962), 1, + sym_query_tuning, + STATE(1993), 1, + sym_of, + STATE(2118), 1, + sym__pre_tuning, + STATE(2262), 1, + sym_where_clause, + STATE(2272), 1, + aux_sym_for_phrase_repeat1, + STATE(1957), 2, sym_comment, sym_include, - STATE(2448), 6, - sym_inherits, - sym_implements, - sym_use_widget_pool, - sym_abstract, - sym_final, - sym_serializable, - [98538] = 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, + [99196] = 14, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2968), 1, - aux_sym_variable_definition_token4, - STATE(1941), 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(2733), 1, + sym__terminator, + STATE(1962), 1, + sym_query_tuning, + STATE(1974), 1, + sym_of, + STATE(2064), 1, + sym__pre_tuning, + STATE(2298), 1, + sym_where_clause, + STATE(2347), 1, + aux_sym_for_phrase_repeat1, + STATE(1958), 2, sym_comment, sym_include, - ACTIONS(2966), 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, - [98569] = 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, + [99244] = 14, 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(2972), 1, - aux_sym_variable_tuning_token1, - STATE(329), 1, - aux_sym_qualified_name_repeat1, - STATE(2074), 1, - aux_sym_field_definition_repeat1, - STATE(2266), 1, - sym_field_option, - ACTIONS(2976), 2, - aux_sym_variable_tuning_token5, - aux_sym_property_tuning_token1, - STATE(1942), 2, - sym_comment, - sym_include, - ACTIONS(2970), 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(2753), 1, sym__terminator, - aux_sym_field_definition_token1, - aux_sym_index_definition_token1, - ACTIONS(2974), 3, - aux_sym_variable_tuning_token2, - aux_sym_variable_tuning_token3, - aux_sym_variable_tuning_token4, - [98612] = 8, - ACTIONS(59), 1, - anon_sym_SLASH_SLASH, - ACTIONS(61), 1, - anon_sym_SLASH_STAR, - ACTIONS(65), 1, - anon_sym_LBRACE, - ACTIONS(2980), 1, - aux_sym__using_and_token1, - STATE(1949), 1, - aux_sym_can_find_expression_repeat1, - STATE(2038), 1, - sym__using_and, - STATE(1943), 2, + STATE(1962), 1, + sym_query_tuning, + STATE(1997), 1, + sym_of, + STATE(2127), 1, + sym__pre_tuning, + STATE(2291), 1, + aux_sym_for_phrase_repeat1, + STATE(2300), 1, + sym_where_clause, + STATE(1959), 2, sym_comment, sym_include, - ACTIONS(2978), 10, - anon_sym_RPAREN, + ACTIONS(1195), 5, 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, - [98647] = 8, + [99292] = 8, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2980), 1, + ACTIONS(2996), 1, aux_sym__using_and_token1, - STATE(1943), 1, + STATE(1965), 1, aux_sym_can_find_expression_repeat1, - STATE(2038), 1, + STATE(2085), 1, sym__using_and, - STATE(1944), 2, + STATE(1960), 2, sym_comment, sym_include, - ACTIONS(2982), 10, + ACTIONS(2994), 10, anon_sym_RPAREN, aux_sym_function_call_token1, aux_sym_using_statement_token1, @@ -127952,49 +129130,43 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_query_tuning_token4, aux_sym_query_tuning_token5, aux_sym_of_token1, - [98682] = 13, - ACTIONS(3), 1, + [99327] = 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(2984), 1, - sym_identifier, - STATE(2327), 1, - aux_sym_sort_clause_repeat1, - STATE(2370), 1, - aux_sym_index_definition_repeat1, - STATE(2580), 1, - sym_index_tuning, - STATE(3037), 1, - sym_sort_column, - STATE(4460), 1, - sym_object_access, - ACTIONS(2988), 2, - aux_sym_variable_definition_token5, - aux_sym_index_tuning_token1, - STATE(1945), 2, + ACTIONS(1458), 1, + aux_sym_variable_definition_token4, + ACTIONS(1464), 1, + aux_sym_property_definition_token1, + STATE(1961), 2, sym_comment, sym_include, - STATE(2260), 2, - sym_qualified_name, - sym_function_call, - ACTIONS(2986), 3, - sym__terminator, - aux_sym_field_definition_token1, - aux_sym_index_definition_token1, - [98727] = 5, + ACTIONS(1456), 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, + [99360] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - STATE(1946), 2, + STATE(1962), 2, sym_comment, sym_include, - ACTIONS(2990), 13, + ACTIONS(2998), 13, sym__terminator, anon_sym_COMMA, aux_sym_function_call_token1, @@ -128008,80 +129180,54 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_query_tuning_token5, aux_sym_sort_clause_token1, aux_sym_sort_clause_token2, - [98756] = 7, - ACTIONS(59), 1, - anon_sym_SLASH_SLASH, - ACTIONS(61), 1, - anon_sym_SLASH_STAR, - ACTIONS(65), 1, - anon_sym_LBRACE, - ACTIONS(1448), 1, - aux_sym_variable_definition_token4, - ACTIONS(1454), 1, - aux_sym_property_definition_token1, - STATE(1947), 2, - sym_comment, - sym_include, - ACTIONS(1446), 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, - [98789] = 13, + [99389] = 13, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(2984), 1, + ACTIONS(3000), 1, sym_identifier, - STATE(1945), 1, + STATE(1966), 1, aux_sym_index_definition_repeat1, - STATE(2313), 1, + STATE(2293), 1, aux_sym_sort_clause_repeat1, - STATE(2580), 1, + STATE(2634), 1, sym_index_tuning, - STATE(3037), 1, + STATE(3052), 1, sym_sort_column, - STATE(4460), 1, + STATE(4589), 1, sym_object_access, - ACTIONS(2988), 2, + ACTIONS(3004), 2, aux_sym_variable_definition_token5, aux_sym_index_tuning_token1, - STATE(1948), 2, + STATE(1963), 2, sym_comment, sym_include, - STATE(2260), 2, + STATE(2345), 2, sym_qualified_name, sym_function_call, - ACTIONS(2992), 3, + ACTIONS(3002), 3, sym__terminator, aux_sym_field_definition_token1, aux_sym_index_definition_token1, - [98834] = 7, + [99434] = 7, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2996), 1, + ACTIONS(3008), 1, aux_sym__using_and_token1, - STATE(2038), 1, + STATE(2085), 1, sym__using_and, - STATE(1949), 3, + STATE(1964), 3, sym_comment, sym_include, aux_sym_can_find_expression_repeat1, - ACTIONS(2994), 10, + ACTIONS(3006), 10, anon_sym_RPAREN, aux_sym_function_call_token1, aux_sym_using_statement_token1, @@ -128092,402 +129238,340 @@ static const uint16_t ts_small_parse_table[] = { 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(2999), 1, - anon_sym_COLON, - ACTIONS(3001), 1, - aux_sym_while_phrase_token1, - ACTIONS(3003), 1, - aux_sym_on_error_phrase_token1, - ACTIONS(3005), 1, - aux_sym_stop_after_phrase_token1, - ACTIONS(3007), 1, - aux_sym_do_tuning_token1, - STATE(2192), 1, - aux_sym_do_block_repeat1, - STATE(2194), 1, - sym_while_phrase, - STATE(2892), 1, - sym_stop_after_phrase, - STATE(2944), 1, - sym_do_tuning, - STATE(1950), 2, - sym_comment, - sym_include, - STATE(4218), 3, - sym_on_error_phrase, - sym_on_stop_phrase, - sym_on_quit_phrase, - [98913] = 12, + [99467] = 8, 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(3009), 1, - sym__terminator, - STATE(1946), 1, - sym_query_tuning, - STATE(2040), 1, - sym__pre_tuning, - STATE(2222), 1, - sym_where_clause, - STATE(2224), 1, - aux_sym_for_phrase_repeat1, - STATE(1951), 2, + ACTIONS(2996), 1, + aux_sym__using_and_token1, + STATE(1964), 1, + aux_sym_can_find_expression_repeat1, + STATE(2085), 1, + sym__using_and, + STATE(1965), 2, sym_comment, sym_include, - ACTIONS(1195), 5, + ACTIONS(3011), 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, - [98955] = 15, + aux_sym_query_tuning_token5, + aux_sym_of_token1, + [99502] = 13, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(2616), 1, + ACTIONS(3000), 1, sym_identifier, - ACTIONS(2620), 1, - aux_sym_while_phrase_token1, - ACTIONS(3011), 1, - anon_sym_COLON, - ACTIONS(3013), 1, - aux_sym_on_error_phrase_token1, - STATE(2485), 1, - sym_to_phrase, - STATE(2861), 1, - sym_while_phrase, - STATE(2963), 1, - sym_on_error_phrase, - STATE(3073), 1, - sym_on_quit_phrase, - STATE(4679), 1, - sym_on_stop_phrase, - STATE(4680), 1, - sym_assignment, - STATE(1952), 2, + STATE(2338), 1, + aux_sym_sort_clause_repeat1, + STATE(2409), 1, + aux_sym_index_definition_repeat1, + STATE(2634), 1, + sym_index_tuning, + STATE(3052), 1, + sym_sort_column, + STATE(4589), 1, + sym_object_access, + ACTIONS(3004), 2, + aux_sym_variable_definition_token5, + aux_sym_index_tuning_token1, + STATE(1966), 2, sym_comment, sym_include, - STATE(4733), 2, + STATE(2345), 2, sym_qualified_name, - sym_object_access, - [99003] = 5, + sym_function_call, + ACTIONS(3013), 3, + sym__terminator, + aux_sym_field_definition_token1, + aux_sym_index_definition_token1, + [99547] = 12, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - STATE(1953), 2, + ACTIONS(679), 1, + sym__namedot, + ACTIONS(3017), 1, + aux_sym_variable_tuning_token1, + STATE(336), 1, + aux_sym_qualified_name_repeat1, + STATE(2038), 1, + aux_sym_field_definition_repeat1, + STATE(2362), 1, + sym_field_option, + ACTIONS(3021), 2, + aux_sym_variable_tuning_token5, + aux_sym_property_tuning_token1, + STATE(1967), 2, sym_comment, sym_include, - ACTIONS(3015), 12, + ACTIONS(3015), 3, sym__terminator, - 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, - [99031] = 10, + aux_sym_field_definition_token1, + aux_sym_index_definition_token1, + ACTIONS(3019), 3, + aux_sym_variable_tuning_token2, + aux_sym_variable_tuning_token3, + aux_sym_variable_tuning_token4, + [99590] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(3017), 1, - aux_sym_buffer_definition_token1, - ACTIONS(3019), 1, - aux_sym_query_definition_token1, - STATE(2004), 1, - aux_sym_buffer_definition_repeat1, - STATE(1954), 2, + ACTIONS(3025), 1, + aux_sym_variable_definition_token4, + STATE(1968), 2, sym_comment, sym_include, - STATE(2340), 2, - sym_scope_tuning, - sym_access_tuning, - ACTIONS(1354), 3, - aux_sym_access_tuning_token1, - aux_sym_access_tuning_token2, - aux_sym_access_tuning_token3, - ACTIONS(1352), 4, + ACTIONS(3023), 12, aux_sym_scope_tuning_token1, aux_sym_scope_tuning_token2, aux_sym_scope_tuning_token3, aux_sym_scope_tuning_token4, - [99069] = 10, - ACTIONS(59), 1, - anon_sym_SLASH_SLASH, - ACTIONS(61), 1, - anon_sym_SLASH_STAR, - ACTIONS(65), 1, - anon_sym_LBRACE, - ACTIONS(3021), 1, - aux_sym_buffer_definition_token1, - ACTIONS(3023), 1, - aux_sym_query_definition_token1, - STATE(2004), 1, - aux_sym_buffer_definition_repeat1, - STATE(1955), 2, - sym_comment, - sym_include, - STATE(2340), 2, - sym_scope_tuning, - sym_access_tuning, - ACTIONS(1354), 3, aux_sym_access_tuning_token1, aux_sym_access_tuning_token2, aux_sym_access_tuning_token3, - ACTIONS(1352), 4, - aux_sym_scope_tuning_token1, - aux_sym_scope_tuning_token2, - aux_sym_scope_tuning_token3, - aux_sym_scope_tuning_token4, - [99107] = 15, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - ACTIONS(7), 1, - anon_sym_LBRACE, - ACTIONS(2616), 1, - sym_identifier, - ACTIONS(2620), 1, - aux_sym_while_phrase_token1, - ACTIONS(3013), 1, - aux_sym_on_error_phrase_token1, - ACTIONS(3025), 1, - anon_sym_COLON, - STATE(2412), 1, - sym_to_phrase, - STATE(2745), 1, - sym_while_phrase, - STATE(3033), 1, - sym_on_error_phrase, - STATE(3250), 1, - sym_on_quit_phrase, - STATE(4091), 1, - sym_on_stop_phrase, - STATE(4680), 1, - sym_assignment, - STATE(1956), 2, - sym_comment, - sym_include, - STATE(4733), 2, - sym_qualified_name, - sym_object_access, - [99155] = 12, + 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, + [99621] = 14, 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(3027), 1, - sym__terminator, - STATE(1946), 1, - sym_query_tuning, - STATE(2059), 1, - sym__pre_tuning, - STATE(2252), 1, - aux_sym_for_phrase_repeat1, - STATE(2256), 1, - sym_where_clause, - STATE(1957), 2, + anon_sym_COLON, + ACTIONS(3029), 1, + aux_sym_while_phrase_token1, + ACTIONS(3031), 1, + aux_sym_on_error_phrase_token1, + ACTIONS(3033), 1, + aux_sym_stop_after_phrase_token1, + ACTIONS(3035), 1, + aux_sym_do_tuning_token1, + STATE(2149), 1, + aux_sym_do_block_repeat1, + STATE(2178), 1, + sym_while_phrase, + STATE(2925), 1, + sym_stop_after_phrase, + STATE(3074), 1, + sym_do_tuning, + STATE(1969), 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, - [99197] = 10, + STATE(4216), 3, + sym_on_error_phrase, + sym_on_stop_phrase, + sym_on_quit_phrase, + [99667] = 10, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(1256), 1, + ACTIONS(1250), 1, aux_sym_input_stream_tuning_token9, - ACTIONS(3029), 1, + ACTIONS(3037), 1, sym__terminator, - STATE(2001), 1, + STATE(2011), 1, aux_sym_input_stream_statement_repeat1, - STATE(2144), 1, + STATE(2156), 1, sym_input_stream_tuning, - ACTIONS(1252), 2, + ACTIONS(1246), 2, aux_sym_input_stream_tuning_token1, aux_sym_input_stream_tuning_token5, - STATE(1958), 2, + STATE(1970), 2, sym_comment, sym_include, - ACTIONS(1254), 6, + ACTIONS(1248), 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, - [99235] = 6, + [99705] = 14, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(1448), 1, - aux_sym_variable_definition_token4, - STATE(1959), 2, + ACTIONS(3029), 1, + aux_sym_while_phrase_token1, + ACTIONS(3031), 1, + aux_sym_on_error_phrase_token1, + ACTIONS(3033), 1, + aux_sym_stop_after_phrase_token1, + ACTIONS(3035), 1, + aux_sym_do_tuning_token1, + ACTIONS(3039), 1, + anon_sym_COLON, + STATE(2155), 1, + aux_sym_do_block_repeat1, + STATE(2157), 1, + sym_while_phrase, + STATE(2853), 1, + sym_stop_after_phrase, + STATE(3074), 1, + sym_do_tuning, + STATE(1971), 2, + sym_comment, + sym_include, + STATE(4197), 3, + sym_on_error_phrase, + sym_on_stop_phrase, + sym_on_quit_phrase, + [99751] = 8, + ACTIONS(59), 1, + anon_sym_SLASH_SLASH, + ACTIONS(61), 1, + anon_sym_SLASH_STAR, + ACTIONS(65), 1, + anon_sym_LBRACE, + ACTIONS(3047), 2, + aux_sym_buffer_definition_token1, + aux_sym_query_definition_token1, + STATE(2363), 2, + sym_scope_tuning, + sym_access_tuning, + ACTIONS(3044), 3, + aux_sym_access_tuning_token1, + aux_sym_access_tuning_token2, + aux_sym_access_tuning_token3, + STATE(1972), 3, sym_comment, sym_include, - ACTIONS(1446), 11, + aux_sym_buffer_definition_repeat1, + ACTIONS(3041), 4, 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, - [99265] = 14, + [99785] = 14, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(3031), 1, + ACTIONS(3049), 1, sym__terminator, - ACTIONS(3035), 1, + ACTIONS(3053), 1, aux_sym_variable_definition_token6, - ACTIONS(3037), 1, + ACTIONS(3055), 1, anon_sym_LIKE, - ACTIONS(3039), 1, + ACTIONS(3057), 1, aux_sym_field_definition_token1, - ACTIONS(3041), 1, + ACTIONS(3059), 1, aux_sym_index_definition_token1, - STATE(2343), 1, + STATE(2028), 1, aux_sym_temp_table_definition_repeat1, - STATE(2482), 1, + STATE(2464), 1, sym_temp_table_tuning, - STATE(2688), 1, + STATE(2725), 1, aux_sym_temp_table_definition_repeat2, - ACTIONS(3033), 2, + ACTIONS(3051), 2, aux_sym_variable_tuning_token6, aux_sym_temp_table_tuning_token1, - STATE(1960), 2, + STATE(1973), 2, sym_comment, sym_include, - STATE(3136), 2, + STATE(3248), 2, sym_field_definition, sym_index_definition, - [99311] = 15, - ACTIONS(3), 1, + [99831] = 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(2616), 1, - sym_identifier, - ACTIONS(2620), 1, - aux_sym_while_phrase_token1, - ACTIONS(3013), 1, - aux_sym_on_error_phrase_token1, - ACTIONS(3043), 1, - anon_sym_COLON, - STATE(2456), 1, - sym_to_phrase, - STATE(2843), 1, - sym_while_phrase, - STATE(2976), 1, - sym_on_error_phrase, - STATE(3331), 1, - sym_on_quit_phrase, - STATE(4292), 1, - sym_on_stop_phrase, - STATE(4680), 1, - sym_assignment, - STATE(1961), 2, + ACTIONS(1199), 1, + aux_sym_where_clause_token1, + ACTIONS(1201), 1, + aux_sym_query_tuning_token5, + ACTIONS(3061), 1, + sym__terminator, + STATE(1962), 1, + sym_query_tuning, + STATE(2110), 1, + sym__pre_tuning, + STATE(2249), 1, + sym_where_clause, + STATE(2255), 1, + aux_sym_for_phrase_repeat1, + STATE(1974), 2, sym_comment, sym_include, - STATE(4733), 2, - sym_qualified_name, - sym_object_access, - [99359] = 10, - 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, + [99873] = 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(3045), 1, - aux_sym_buffer_definition_token1, - ACTIONS(3047), 1, - aux_sym_query_definition_token1, - STATE(2004), 1, - aux_sym_buffer_definition_repeat1, - STATE(1962), 2, + ACTIONS(2725), 1, + sym__namedot, + STATE(1976), 1, + aux_sym_qualified_name_repeat1, + STATE(1975), 2, sym_comment, sym_include, - STATE(2340), 2, - sym_scope_tuning, - sym_access_tuning, - ACTIONS(1354), 3, - aux_sym_access_tuning_token1, - aux_sym_access_tuning_token2, - aux_sym_access_tuning_token3, - ACTIONS(1352), 4, - aux_sym_scope_tuning_token1, - aux_sym_scope_tuning_token2, - aux_sym_scope_tuning_token3, - aux_sym_scope_tuning_token4, - [99397] = 6, + 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, + [99905] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(3049), 1, + ACTIONS(3063), 1, sym__namedot, - STATE(1963), 3, + STATE(1976), 3, sym_comment, sym_include, aux_sym_qualified_name_repeat1, - ACTIONS(102), 10, + ACTIONS(98), 10, sym_identifier, anon_sym_COMMA, anon_sym_COLON, @@ -128498,258 +129582,219 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_sort_order_token4, aux_sym_sort_clause_token1, aux_sym_sort_clause_token2, - [99427] = 14, + [99935] = 10, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(3001), 1, - aux_sym_while_phrase_token1, - ACTIONS(3003), 1, - aux_sym_on_error_phrase_token1, - ACTIONS(3005), 1, - aux_sym_stop_after_phrase_token1, - ACTIONS(3007), 1, - aux_sym_do_tuning_token1, - ACTIONS(3052), 1, - anon_sym_COLON, - STATE(2207), 1, - sym_while_phrase, - STATE(2215), 1, - aux_sym_do_block_repeat1, - STATE(2775), 1, - sym_stop_after_phrase, - STATE(2944), 1, - sym_do_tuning, - STATE(1964), 2, - sym_comment, - sym_include, - STATE(4116), 3, - sym_on_error_phrase, - sym_on_stop_phrase, - sym_on_quit_phrase, - [99473] = 15, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - ACTIONS(7), 1, - anon_sym_LBRACE, - ACTIONS(2616), 1, - sym_identifier, - ACTIONS(2620), 1, - aux_sym_while_phrase_token1, - ACTIONS(3013), 1, - aux_sym_on_error_phrase_token1, - ACTIONS(3054), 1, - anon_sym_COLON, - STATE(2403), 1, - sym_to_phrase, - STATE(2767), 1, - sym_while_phrase, - STATE(3025), 1, - sym_on_error_phrase, - STATE(3247), 1, - sym_on_quit_phrase, - STATE(4109), 1, - sym_on_stop_phrase, - STATE(4680), 1, - sym_assignment, - STATE(1965), 2, + ACTIONS(1250), 1, + aux_sym_input_stream_tuning_token9, + ACTIONS(3066), 1, + sym__terminator, + STATE(2011), 1, + aux_sym_input_stream_statement_repeat1, + STATE(2156), 1, + sym_input_stream_tuning, + ACTIONS(1246), 2, + aux_sym_input_stream_tuning_token1, + aux_sym_input_stream_tuning_token5, + STATE(1977), 2, sym_comment, sym_include, - STATE(4733), 2, - sym_qualified_name, - sym_object_access, - [99521] = 14, + ACTIONS(1248), 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, + [99973] = 14, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(3037), 1, + ACTIONS(3055), 1, anon_sym_LIKE, - ACTIONS(3039), 1, + ACTIONS(3057), 1, aux_sym_field_definition_token1, - ACTIONS(3041), 1, + ACTIONS(3059), 1, aux_sym_index_definition_token1, - ACTIONS(3056), 1, + ACTIONS(3068), 1, sym__terminator, - ACTIONS(3058), 1, + ACTIONS(3070), 1, aux_sym_variable_definition_token6, - STATE(2343), 1, + STATE(2340), 1, aux_sym_temp_table_definition_repeat1, - STATE(2482), 1, + STATE(2464), 1, sym_temp_table_tuning, - STATE(2643), 1, + STATE(2623), 1, aux_sym_temp_table_definition_repeat2, - ACTIONS(3033), 2, + ACTIONS(3051), 2, aux_sym_variable_tuning_token6, aux_sym_temp_table_tuning_token1, - STATE(1966), 2, + STATE(1978), 2, sym_comment, sym_include, - STATE(3136), 2, + STATE(3248), 2, sym_field_definition, sym_index_definition, - [99567] = 14, + [100019] = 14, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(3037), 1, + ACTIONS(3055), 1, anon_sym_LIKE, - ACTIONS(3039), 1, + ACTIONS(3057), 1, aux_sym_field_definition_token1, - ACTIONS(3041), 1, + ACTIONS(3059), 1, aux_sym_index_definition_token1, - ACTIONS(3060), 1, + ACTIONS(3072), 1, sym__terminator, - ACTIONS(3062), 1, + ACTIONS(3074), 1, aux_sym_variable_definition_token6, - STATE(1985), 1, + STATE(1978), 1, aux_sym_temp_table_definition_repeat1, - STATE(2482), 1, + STATE(2464), 1, sym_temp_table_tuning, - STATE(2685), 1, + STATE(2599), 1, aux_sym_temp_table_definition_repeat2, - ACTIONS(3033), 2, + ACTIONS(3051), 2, aux_sym_variable_tuning_token6, aux_sym_temp_table_tuning_token1, - STATE(1967), 2, + STATE(1979), 2, sym_comment, sym_include, - STATE(3136), 2, + STATE(3248), 2, sym_field_definition, sym_index_definition, - [99613] = 10, + [100065] = 14, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(3064), 1, - aux_sym_buffer_definition_token1, - ACTIONS(3066), 1, - aux_sym_query_definition_token1, + ACTIONS(3055), 1, + anon_sym_LIKE, + ACTIONS(3057), 1, + aux_sym_field_definition_token1, + ACTIONS(3059), 1, + aux_sym_index_definition_token1, + ACTIONS(3068), 1, + sym__terminator, + ACTIONS(3070), 1, + aux_sym_variable_definition_token6, STATE(2004), 1, - aux_sym_buffer_definition_repeat1, - STATE(1968), 2, + aux_sym_temp_table_definition_repeat1, + STATE(2464), 1, + sym_temp_table_tuning, + STATE(2623), 1, + aux_sym_temp_table_definition_repeat2, + ACTIONS(3051), 2, + aux_sym_variable_tuning_token6, + aux_sym_temp_table_tuning_token1, + STATE(1980), 2, sym_comment, sym_include, - STATE(2340), 2, - sym_scope_tuning, - sym_access_tuning, - ACTIONS(1354), 3, - aux_sym_access_tuning_token1, - aux_sym_access_tuning_token2, - aux_sym_access_tuning_token3, - ACTIONS(1352), 4, - aux_sym_scope_tuning_token1, - aux_sym_scope_tuning_token2, - aux_sym_scope_tuning_token3, - aux_sym_scope_tuning_token4, - [99651] = 14, + STATE(3248), 2, + sym_field_definition, + sym_index_definition, + [100111] = 10, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(3001), 1, - aux_sym_while_phrase_token1, - ACTIONS(3003), 1, - aux_sym_on_error_phrase_token1, - ACTIONS(3005), 1, - aux_sym_stop_after_phrase_token1, - ACTIONS(3007), 1, - aux_sym_do_tuning_token1, - ACTIONS(3068), 1, - anon_sym_COLON, - STATE(2158), 1, - sym_while_phrase, - STATE(2164), 1, - aux_sym_do_block_repeat1, - STATE(2814), 1, - sym_stop_after_phrase, - STATE(2944), 1, - sym_do_tuning, - STATE(1969), 2, + ACTIONS(1250), 1, + aux_sym_input_stream_tuning_token9, + ACTIONS(3076), 1, + sym__terminator, + STATE(2011), 1, + aux_sym_input_stream_statement_repeat1, + STATE(2156), 1, + sym_input_stream_tuning, + ACTIONS(1246), 2, + aux_sym_input_stream_tuning_token1, + aux_sym_input_stream_tuning_token5, + STATE(1981), 2, sym_comment, sym_include, - STATE(4353), 3, - sym_on_error_phrase, - sym_on_stop_phrase, - sym_on_quit_phrase, - [99697] = 12, + ACTIONS(1248), 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, + [100149] = 14, 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(3070), 1, + ACTIONS(3055), 1, + anon_sym_LIKE, + ACTIONS(3057), 1, + aux_sym_field_definition_token1, + ACTIONS(3059), 1, + aux_sym_index_definition_token1, + ACTIONS(3078), 1, sym__terminator, - STATE(1946), 1, - sym_query_tuning, - STATE(2123), 1, - sym__pre_tuning, - STATE(2292), 1, - sym_where_clause, - STATE(2295), 1, - aux_sym_for_phrase_repeat1, - STATE(1970), 2, + ACTIONS(3080), 1, + aux_sym_variable_definition_token6, + STATE(1986), 1, + aux_sym_temp_table_definition_repeat1, + STATE(2464), 1, + sym_temp_table_tuning, + STATE(2674), 1, + aux_sym_temp_table_definition_repeat2, + ACTIONS(3051), 2, + aux_sym_variable_tuning_token6, + aux_sym_temp_table_tuning_token1, + STATE(1982), 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, - [99739] = 14, + STATE(3248), 2, + sym_field_definition, + sym_index_definition, + [100195] = 10, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(3001), 1, - aux_sym_while_phrase_token1, - ACTIONS(3003), 1, - aux_sym_on_error_phrase_token1, - ACTIONS(3005), 1, - aux_sym_stop_after_phrase_token1, - ACTIONS(3007), 1, - aux_sym_do_tuning_token1, - ACTIONS(3072), 1, - anon_sym_COLON, - STATE(2148), 1, - sym_while_phrase, - STATE(2149), 1, - aux_sym_do_block_repeat1, - STATE(2784), 1, - sym_stop_after_phrase, - STATE(2944), 1, - sym_do_tuning, - STATE(1971), 2, + ACTIONS(1250), 1, + aux_sym_input_stream_tuning_token9, + ACTIONS(3082), 1, + sym__terminator, + STATE(2011), 1, + aux_sym_input_stream_statement_repeat1, + STATE(2156), 1, + sym_input_stream_tuning, + ACTIONS(1246), 2, + aux_sym_input_stream_tuning_token1, + aux_sym_input_stream_tuning_token5, + STATE(1983), 2, sym_comment, sym_include, - STATE(4414), 3, - sym_on_error_phrase, - sym_on_stop_phrase, - sym_on_quit_phrase, - [99785] = 12, + ACTIONS(1248), 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, + [100233] = 12, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, @@ -128760,17 +129805,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_where_clause_token1, ACTIONS(1201), 1, aux_sym_query_tuning_token5, - ACTIONS(3074), 1, + ACTIONS(3084), 1, sym__terminator, - STATE(1946), 1, + STATE(1962), 1, sym_query_tuning, - STATE(2078), 1, + STATE(2117), 1, sym__pre_tuning, - STATE(2231), 1, - sym_where_clause, - STATE(2261), 1, + STATE(2239), 1, aux_sym_for_phrase_repeat1, - STATE(1972), 2, + STATE(2302), 1, + sym_where_clause, + STATE(1984), 2, sym_comment, sym_include, ACTIONS(1195), 5, @@ -128779,450 +129824,371 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_query_tuning_token2, aux_sym_query_tuning_token3, aux_sym_query_tuning_token4, - [99827] = 14, + [100275] = 10, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(3037), 1, + ACTIONS(1250), 1, + aux_sym_input_stream_tuning_token9, + ACTIONS(3086), 1, + sym__terminator, + STATE(2011), 1, + aux_sym_input_stream_statement_repeat1, + STATE(2156), 1, + sym_input_stream_tuning, + ACTIONS(1246), 2, + aux_sym_input_stream_tuning_token1, + aux_sym_input_stream_tuning_token5, + STATE(1985), 2, + sym_comment, + sym_include, + ACTIONS(1248), 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, + [100313] = 14, + ACTIONS(59), 1, + anon_sym_SLASH_SLASH, + ACTIONS(61), 1, + anon_sym_SLASH_STAR, + ACTIONS(65), 1, + anon_sym_LBRACE, + ACTIONS(3055), 1, anon_sym_LIKE, - ACTIONS(3039), 1, + ACTIONS(3057), 1, aux_sym_field_definition_token1, - ACTIONS(3041), 1, + ACTIONS(3059), 1, aux_sym_index_definition_token1, - ACTIONS(3076), 1, + ACTIONS(3088), 1, sym__terminator, - ACTIONS(3078), 1, + ACTIONS(3090), 1, aux_sym_variable_definition_token6, - STATE(1966), 1, + STATE(2340), 1, aux_sym_temp_table_definition_repeat1, - STATE(2482), 1, + STATE(2464), 1, sym_temp_table_tuning, - STATE(2640), 1, + STATE(2720), 1, aux_sym_temp_table_definition_repeat2, - ACTIONS(3033), 2, + ACTIONS(3051), 2, aux_sym_variable_tuning_token6, aux_sym_temp_table_tuning_token1, - STATE(1973), 2, + STATE(1986), 2, sym_comment, sym_include, - STATE(3136), 2, + STATE(3248), 2, sym_field_definition, sym_index_definition, - [99873] = 14, + [100359] = 14, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(3037), 1, + ACTIONS(3055), 1, anon_sym_LIKE, - ACTIONS(3039), 1, + ACTIONS(3057), 1, aux_sym_field_definition_token1, - ACTIONS(3041), 1, + ACTIONS(3059), 1, aux_sym_index_definition_token1, - ACTIONS(3080), 1, + ACTIONS(3088), 1, sym__terminator, - ACTIONS(3082), 1, + ACTIONS(3090), 1, aux_sym_variable_definition_token6, - STATE(1979), 1, + STATE(1996), 1, aux_sym_temp_table_definition_repeat1, - STATE(2482), 1, + STATE(2464), 1, sym_temp_table_tuning, - STATE(2625), 1, + STATE(2720), 1, aux_sym_temp_table_definition_repeat2, - ACTIONS(3033), 2, + ACTIONS(3051), 2, aux_sym_variable_tuning_token6, aux_sym_temp_table_tuning_token1, - STATE(1974), 2, + STATE(1987), 2, sym_comment, sym_include, - STATE(3136), 2, + STATE(3248), 2, sym_field_definition, sym_index_definition, - [99919] = 14, + [100405] = 14, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(3001), 1, + ACTIONS(3029), 1, aux_sym_while_phrase_token1, - ACTIONS(3003), 1, + ACTIONS(3031), 1, aux_sym_on_error_phrase_token1, - ACTIONS(3005), 1, + ACTIONS(3033), 1, aux_sym_stop_after_phrase_token1, - ACTIONS(3007), 1, + ACTIONS(3035), 1, aux_sym_do_tuning_token1, - ACTIONS(3084), 1, + ACTIONS(3092), 1, anon_sym_COLON, - STATE(2137), 1, - aux_sym_do_block_repeat1, - STATE(2216), 1, + STATE(2176), 1, sym_while_phrase, - STATE(2800), 1, + STATE(2183), 1, + aux_sym_do_block_repeat1, + STATE(2858), 1, sym_stop_after_phrase, - STATE(2944), 1, + STATE(3074), 1, sym_do_tuning, - STATE(1975), 2, + STATE(1988), 2, sym_comment, sym_include, - STATE(4150), 3, + STATE(4391), 3, sym_on_error_phrase, sym_on_stop_phrase, sym_on_quit_phrase, - [99965] = 14, + [100451] = 10, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(3037), 1, - anon_sym_LIKE, - ACTIONS(3039), 1, - aux_sym_field_definition_token1, - ACTIONS(3041), 1, - aux_sym_index_definition_token1, - ACTIONS(3076), 1, - sym__terminator, - ACTIONS(3078), 1, - aux_sym_variable_definition_token6, - STATE(2343), 1, - aux_sym_temp_table_definition_repeat1, - STATE(2482), 1, - sym_temp_table_tuning, - STATE(2640), 1, - aux_sym_temp_table_definition_repeat2, - ACTIONS(3033), 2, - aux_sym_variable_tuning_token6, - aux_sym_temp_table_tuning_token1, - STATE(1976), 2, + ACTIONS(3094), 1, + aux_sym_buffer_definition_token1, + ACTIONS(3096), 1, + aux_sym_query_definition_token1, + STATE(1972), 1, + aux_sym_buffer_definition_repeat1, + STATE(1989), 2, sym_comment, sym_include, - STATE(3136), 2, - sym_field_definition, - sym_index_definition, - [100011] = 14, + STATE(2363), 2, + sym_scope_tuning, + sym_access_tuning, + ACTIONS(1360), 3, + aux_sym_access_tuning_token1, + aux_sym_access_tuning_token2, + aux_sym_access_tuning_token3, + ACTIONS(1358), 4, + aux_sym_scope_tuning_token1, + aux_sym_scope_tuning_token2, + aux_sym_scope_tuning_token3, + aux_sym_scope_tuning_token4, + [100489] = 12, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(3037), 1, - anon_sym_LIKE, - ACTIONS(3039), 1, - aux_sym_field_definition_token1, - ACTIONS(3041), 1, - aux_sym_index_definition_token1, - ACTIONS(3080), 1, + ACTIONS(1199), 1, + aux_sym_where_clause_token1, + ACTIONS(1201), 1, + aux_sym_query_tuning_token5, + ACTIONS(3098), 1, sym__terminator, - ACTIONS(3082), 1, - aux_sym_variable_definition_token6, - STATE(2343), 1, - aux_sym_temp_table_definition_repeat1, - STATE(2482), 1, - sym_temp_table_tuning, - STATE(2625), 1, - aux_sym_temp_table_definition_repeat2, - ACTIONS(3033), 2, - aux_sym_variable_tuning_token6, - aux_sym_temp_table_tuning_token1, - STATE(1977), 2, + STATE(1962), 1, + sym_query_tuning, + STATE(2036), 1, + sym__pre_tuning, + STATE(2336), 1, + aux_sym_for_phrase_repeat1, + STATE(2368), 1, + sym_where_clause, + STATE(1990), 2, sym_comment, sym_include, - STATE(3136), 2, - sym_field_definition, - sym_index_definition, - [100057] = 14, + ACTIONS(1195), 5, + aux_sym_function_call_token1, + aux_sym_query_tuning_token1, + aux_sym_query_tuning_token2, + aux_sym_query_tuning_token3, + aux_sym_query_tuning_token4, + [100531] = 8, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(3037), 1, - anon_sym_LIKE, - ACTIONS(3039), 1, - aux_sym_field_definition_token1, - ACTIONS(3041), 1, - aux_sym_index_definition_token1, - ACTIONS(3086), 1, - sym__terminator, - ACTIONS(3088), 1, - aux_sym_variable_definition_token6, - STATE(1960), 1, - aux_sym_temp_table_definition_repeat1, - STATE(2482), 1, - sym_temp_table_tuning, - STATE(2648), 1, - aux_sym_temp_table_definition_repeat2, - ACTIONS(3033), 2, - aux_sym_variable_tuning_token6, - aux_sym_temp_table_tuning_token1, - STATE(1978), 2, + ACTIONS(1462), 1, + aux_sym_function_parameter_token1, + STATE(4322), 1, + sym_access_tuning, + STATE(1991), 2, sym_comment, sym_include, - STATE(3136), 2, - sym_field_definition, - sym_index_definition, - [100103] = 14, + ACTIONS(3100), 3, + aux_sym_access_tuning_token1, + aux_sym_access_tuning_token2, + aux_sym_access_tuning_token3, + ACTIONS(1456), 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, + [100565] = 14, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(3037), 1, + ACTIONS(3055), 1, anon_sym_LIKE, - ACTIONS(3039), 1, + ACTIONS(3057), 1, aux_sym_field_definition_token1, - ACTIONS(3041), 1, + ACTIONS(3059), 1, aux_sym_index_definition_token1, - ACTIONS(3090), 1, + ACTIONS(3103), 1, sym__terminator, - ACTIONS(3092), 1, + ACTIONS(3105), 1, aux_sym_variable_definition_token6, - STATE(2343), 1, + STATE(2340), 1, aux_sym_temp_table_definition_repeat1, - STATE(2482), 1, + STATE(2464), 1, sym_temp_table_tuning, - STATE(2556), 1, + STATE(2642), 1, aux_sym_temp_table_definition_repeat2, - ACTIONS(3033), 2, + ACTIONS(3051), 2, aux_sym_variable_tuning_token6, aux_sym_temp_table_tuning_token1, - STATE(1979), 2, + STATE(1992), 2, sym_comment, sym_include, - STATE(3136), 2, + STATE(3248), 2, sym_field_definition, sym_index_definition, - [100149] = 15, - ACTIONS(3), 1, + [100611] = 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(2616), 1, - sym_identifier, - ACTIONS(2620), 1, - aux_sym_while_phrase_token1, - ACTIONS(3013), 1, - aux_sym_on_error_phrase_token1, - ACTIONS(3094), 1, - anon_sym_COLON, - STATE(2416), 1, - sym_to_phrase, - STATE(2816), 1, - sym_while_phrase, - STATE(3000), 1, - sym_on_error_phrase, - STATE(3096), 1, - sym_on_quit_phrase, - STATE(4499), 1, - sym_on_stop_phrase, - STATE(4680), 1, - sym_assignment, - STATE(1980), 2, + ACTIONS(1199), 1, + aux_sym_where_clause_token1, + ACTIONS(1201), 1, + aux_sym_query_tuning_token5, + ACTIONS(3107), 1, + sym__terminator, + STATE(1962), 1, + sym_query_tuning, + STATE(2131), 1, + sym__pre_tuning, + STATE(2314), 1, + aux_sym_for_phrase_repeat1, + STATE(2315), 1, + sym_where_clause, + STATE(1993), 2, sym_comment, sym_include, - STATE(4733), 2, - sym_qualified_name, - sym_object_access, - [100197] = 15, - 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, + [100653] = 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(2616), 1, - sym_identifier, - ACTIONS(2620), 1, - aux_sym_while_phrase_token1, - ACTIONS(3013), 1, - aux_sym_on_error_phrase_token1, - ACTIONS(3096), 1, - anon_sym_COLON, - STATE(2502), 1, - sym_to_phrase, - STATE(2836), 1, - sym_while_phrase, - STATE(2980), 1, - sym_on_error_phrase, - STATE(3168), 1, - sym_on_quit_phrase, - STATE(4311), 1, - sym_on_stop_phrase, - STATE(4680), 1, - sym_assignment, - STATE(1981), 2, + ACTIONS(1199), 1, + aux_sym_where_clause_token1, + ACTIONS(1201), 1, + aux_sym_query_tuning_token5, + ACTIONS(3109), 1, + sym__terminator, + STATE(1962), 1, + sym_query_tuning, + STATE(2122), 1, + sym__pre_tuning, + STATE(2263), 1, + aux_sym_for_phrase_repeat1, + STATE(2264), 1, + sym_where_clause, + STATE(1994), 2, sym_comment, sym_include, - STATE(4733), 2, - sym_qualified_name, - sym_object_access, - [100245] = 14, + ACTIONS(1195), 5, + aux_sym_function_call_token1, + aux_sym_query_tuning_token1, + aux_sym_query_tuning_token2, + aux_sym_query_tuning_token3, + aux_sym_query_tuning_token4, + [100695] = 14, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(3001), 1, + ACTIONS(3029), 1, aux_sym_while_phrase_token1, - ACTIONS(3003), 1, + ACTIONS(3031), 1, aux_sym_on_error_phrase_token1, - ACTIONS(3005), 1, + ACTIONS(3033), 1, aux_sym_stop_after_phrase_token1, - ACTIONS(3007), 1, + ACTIONS(3035), 1, aux_sym_do_tuning_token1, - ACTIONS(3098), 1, + ACTIONS(3111), 1, anon_sym_COLON, - STATE(2169), 1, + STATE(2146), 1, sym_while_phrase, - STATE(2170), 1, + STATE(2231), 1, aux_sym_do_block_repeat1, - STATE(2829), 1, + STATE(2961), 1, sym_stop_after_phrase, - STATE(2944), 1, + STATE(3074), 1, sym_do_tuning, - STATE(1982), 2, + STATE(1995), 2, sym_comment, sym_include, - STATE(4319), 3, + STATE(4345), 3, sym_on_error_phrase, sym_on_stop_phrase, sym_on_quit_phrase, - [100291] = 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(3100), 1, - sym__terminator, - STATE(2001), 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(1983), 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, - [100329] = 10, + [100741] = 14, 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(3102), 1, - sym__terminator, - STATE(2001), 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(1984), 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, - [100367] = 14, - ACTIONS(59), 1, - anon_sym_SLASH_SLASH, - ACTIONS(61), 1, - anon_sym_SLASH_STAR, - ACTIONS(65), 1, - anon_sym_LBRACE, - ACTIONS(3037), 1, + ACTIONS(3055), 1, anon_sym_LIKE, - ACTIONS(3039), 1, + ACTIONS(3057), 1, aux_sym_field_definition_token1, - ACTIONS(3041), 1, + ACTIONS(3059), 1, aux_sym_index_definition_token1, - ACTIONS(3104), 1, + ACTIONS(3113), 1, sym__terminator, - ACTIONS(3106), 1, + ACTIONS(3115), 1, aux_sym_variable_definition_token6, - STATE(2343), 1, + STATE(2340), 1, aux_sym_temp_table_definition_repeat1, - STATE(2482), 1, + STATE(2464), 1, sym_temp_table_tuning, - STATE(2628), 1, + STATE(2764), 1, aux_sym_temp_table_definition_repeat2, - ACTIONS(3033), 2, + ACTIONS(3051), 2, aux_sym_variable_tuning_token6, aux_sym_temp_table_tuning_token1, - STATE(1985), 2, + STATE(1996), 2, sym_comment, sym_include, - STATE(3136), 2, + STATE(3248), 2, sym_field_definition, sym_index_definition, - [100413] = 15, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - ACTIONS(7), 1, - anon_sym_LBRACE, - ACTIONS(2616), 1, - sym_identifier, - ACTIONS(2620), 1, - aux_sym_while_phrase_token1, - ACTIONS(3013), 1, - aux_sym_on_error_phrase_token1, - ACTIONS(3108), 1, - anon_sym_COLON, - STATE(2425), 1, - sym_to_phrase, - STATE(2900), 1, - sym_while_phrase, - STATE(3005), 1, - sym_on_error_phrase, - STATE(3538), 1, - sym_on_quit_phrase, - STATE(4573), 1, - sym_on_stop_phrase, - STATE(4680), 1, - sym_assignment, - STATE(1986), 2, - sym_comment, - sym_include, - STATE(4733), 2, - sym_qualified_name, - sym_object_access, - [100461] = 12, + [100787] = 12, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, @@ -129233,17 +130199,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_where_clause_token1, ACTIONS(1201), 1, aux_sym_query_tuning_token5, - ACTIONS(3110), 1, + ACTIONS(3117), 1, sym__terminator, - STATE(1946), 1, + STATE(1962), 1, sym_query_tuning, STATE(2103), 1, sym__pre_tuning, - STATE(2300), 1, + STATE(2246), 1, aux_sym_for_phrase_repeat1, - STATE(2306), 1, + STATE(2247), 1, sym_where_clause, - STATE(1987), 2, + STATE(1997), 2, sym_comment, sym_include, ACTIONS(1195), 5, @@ -129252,589 +130218,541 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_query_tuning_token2, aux_sym_query_tuning_token3, aux_sym_query_tuning_token4, - [100503] = 14, + [100829] = 14, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(3037), 1, - anon_sym_LIKE, - ACTIONS(3039), 1, - aux_sym_field_definition_token1, - ACTIONS(3041), 1, - aux_sym_index_definition_token1, - ACTIONS(3104), 1, - sym__terminator, - ACTIONS(3106), 1, - aux_sym_variable_definition_token6, - STATE(2002), 1, - aux_sym_temp_table_definition_repeat1, - STATE(2482), 1, - sym_temp_table_tuning, - STATE(2628), 1, - aux_sym_temp_table_definition_repeat2, - ACTIONS(3033), 2, - aux_sym_variable_tuning_token6, - aux_sym_temp_table_tuning_token1, - STATE(1988), 2, - sym_comment, - sym_include, - STATE(3136), 2, - sym_field_definition, - sym_index_definition, - [100549] = 14, - ACTIONS(59), 1, - anon_sym_SLASH_SLASH, - ACTIONS(61), 1, - anon_sym_SLASH_STAR, - ACTIONS(65), 1, - anon_sym_LBRACE, - ACTIONS(3037), 1, - anon_sym_LIKE, - ACTIONS(3039), 1, - aux_sym_field_definition_token1, - ACTIONS(3041), 1, - aux_sym_index_definition_token1, - ACTIONS(3112), 1, - sym__terminator, - ACTIONS(3114), 1, - aux_sym_variable_definition_token6, - STATE(1976), 1, - aux_sym_temp_table_definition_repeat1, - STATE(2482), 1, - sym_temp_table_tuning, - STATE(2695), 1, - aux_sym_temp_table_definition_repeat2, - ACTIONS(3033), 2, - aux_sym_variable_tuning_token6, - aux_sym_temp_table_tuning_token1, - STATE(1989), 2, - sym_comment, - sym_include, - STATE(3136), 2, - sym_field_definition, - sym_index_definition, - [100595] = 14, - ACTIONS(59), 1, - anon_sym_SLASH_SLASH, - ACTIONS(61), 1, - anon_sym_SLASH_STAR, - ACTIONS(65), 1, - anon_sym_LBRACE, - ACTIONS(3001), 1, + ACTIONS(3029), 1, aux_sym_while_phrase_token1, - ACTIONS(3003), 1, + ACTIONS(3031), 1, aux_sym_on_error_phrase_token1, - ACTIONS(3005), 1, + ACTIONS(3033), 1, aux_sym_stop_after_phrase_token1, - ACTIONS(3007), 1, + ACTIONS(3035), 1, aux_sym_do_tuning_token1, - ACTIONS(3116), 1, + ACTIONS(3119), 1, anon_sym_COLON, - STATE(2176), 1, + STATE(2191), 1, sym_while_phrase, - STATE(2178), 1, + STATE(2220), 1, aux_sym_do_block_repeat1, - STATE(2860), 1, + STATE(2892), 1, sym_stop_after_phrase, - STATE(2944), 1, + STATE(3074), 1, sym_do_tuning, - STATE(1990), 2, + STATE(1998), 2, sym_comment, sym_include, - STATE(4532), 3, + STATE(4456), 3, sym_on_error_phrase, sym_on_stop_phrase, sym_on_quit_phrase, - [100641] = 10, + [100875] = 10, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(1256), 1, + ACTIONS(1250), 1, aux_sym_input_stream_tuning_token9, - ACTIONS(3118), 1, + ACTIONS(3121), 1, sym__terminator, - STATE(2001), 1, + STATE(2011), 1, aux_sym_input_stream_statement_repeat1, - STATE(2144), 1, + STATE(2156), 1, sym_input_stream_tuning, - ACTIONS(1252), 2, + ACTIONS(1246), 2, aux_sym_input_stream_tuning_token1, aux_sym_input_stream_tuning_token5, - STATE(1991), 2, + STATE(1999), 2, sym_comment, sym_include, - ACTIONS(1254), 6, + ACTIONS(1248), 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, - [100679] = 15, - ACTIONS(3), 1, + [100913] = 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(2616), 1, - sym_identifier, - ACTIONS(2620), 1, + ACTIONS(3029), 1, aux_sym_while_phrase_token1, - ACTIONS(3013), 1, + ACTIONS(3031), 1, aux_sym_on_error_phrase_token1, - ACTIONS(3120), 1, + ACTIONS(3033), 1, + aux_sym_stop_after_phrase_token1, + ACTIONS(3035), 1, + aux_sym_do_tuning_token1, + ACTIONS(3123), 1, anon_sym_COLON, - STATE(2458), 1, - sym_to_phrase, - STATE(2891), 1, + STATE(2203), 1, + aux_sym_do_block_repeat1, + STATE(2207), 1, sym_while_phrase, - STATE(2952), 1, - sym_on_error_phrase, - STATE(3528), 1, - sym_on_quit_phrase, - STATE(4541), 1, - sym_on_stop_phrase, - STATE(4680), 1, - sym_assignment, - STATE(1992), 2, + STATE(2890), 1, + sym_stop_after_phrase, + STATE(3074), 1, + sym_do_tuning, + STATE(2000), 2, sym_comment, sym_include, - STATE(4733), 2, - sym_qualified_name, - sym_object_access, - [100727] = 15, - ACTIONS(3), 1, + STATE(4402), 3, + sym_on_error_phrase, + sym_on_stop_phrase, + sym_on_quit_phrase, + [100959] = 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(2616), 1, - sym_identifier, - ACTIONS(2620), 1, + ACTIONS(3029), 1, aux_sym_while_phrase_token1, - ACTIONS(3013), 1, + ACTIONS(3031), 1, aux_sym_on_error_phrase_token1, - ACTIONS(3122), 1, + ACTIONS(3033), 1, + aux_sym_stop_after_phrase_token1, + ACTIONS(3035), 1, + aux_sym_do_tuning_token1, + ACTIONS(3125), 1, anon_sym_COLON, - STATE(2451), 1, - sym_to_phrase, - STATE(2855), 1, + STATE(2184), 1, + aux_sym_do_block_repeat1, + STATE(2186), 1, sym_while_phrase, - STATE(2974), 1, - sym_on_error_phrase, - STATE(3176), 1, - sym_on_quit_phrase, - STATE(4284), 1, - sym_on_stop_phrase, - STATE(4680), 1, - sym_assignment, - STATE(1993), 2, + STATE(2860), 1, + sym_stop_after_phrase, + STATE(3074), 1, + sym_do_tuning, + STATE(2001), 2, sym_comment, sym_include, - STATE(4733), 2, - sym_qualified_name, - sym_object_access, - [100775] = 8, + STATE(4426), 3, + sym_on_error_phrase, + sym_on_stop_phrase, + sym_on_quit_phrase, + [101005] = 14, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(1452), 1, - aux_sym_function_parameter_token1, - STATE(4211), 1, - sym_access_tuning, - STATE(1994), 2, + ACTIONS(3055), 1, + anon_sym_LIKE, + ACTIONS(3057), 1, + aux_sym_field_definition_token1, + ACTIONS(3059), 1, + aux_sym_index_definition_token1, + ACTIONS(3127), 1, + sym__terminator, + ACTIONS(3129), 1, + aux_sym_variable_definition_token6, + STATE(1992), 1, + aux_sym_temp_table_definition_repeat1, + STATE(2464), 1, + sym_temp_table_tuning, + STATE(2702), 1, + aux_sym_temp_table_definition_repeat2, + ACTIONS(3051), 2, + aux_sym_variable_tuning_token6, + aux_sym_temp_table_tuning_token1, + STATE(2002), 2, sym_comment, sym_include, - ACTIONS(3124), 3, - aux_sym_access_tuning_token1, - aux_sym_access_tuning_token2, - aux_sym_access_tuning_token3, - ACTIONS(1446), 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, - [100809] = 12, + STATE(3248), 2, + sym_field_definition, + sym_index_definition, + [101051] = 14, 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(3127), 1, + ACTIONS(3055), 1, + anon_sym_LIKE, + ACTIONS(3057), 1, + aux_sym_field_definition_token1, + ACTIONS(3059), 1, + aux_sym_index_definition_token1, + ACTIONS(3131), 1, sym__terminator, - STATE(1946), 1, - sym_query_tuning, - STATE(2029), 1, - sym__pre_tuning, - STATE(2246), 1, - sym_where_clause, - STATE(2250), 1, - aux_sym_for_phrase_repeat1, - STATE(1995), 2, + ACTIONS(3133), 1, + aux_sym_variable_definition_token6, + STATE(2340), 1, + aux_sym_temp_table_definition_repeat1, + STATE(2464), 1, + sym_temp_table_tuning, + STATE(2632), 1, + aux_sym_temp_table_definition_repeat2, + ACTIONS(3051), 2, + aux_sym_variable_tuning_token6, + aux_sym_temp_table_tuning_token1, + STATE(2003), 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, - [100851] = 12, + STATE(3248), 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(1199), 1, - aux_sym_where_clause_token1, - ACTIONS(1201), 1, - aux_sym_query_tuning_token5, - ACTIONS(3129), 1, + ACTIONS(3055), 1, + anon_sym_LIKE, + ACTIONS(3057), 1, + aux_sym_field_definition_token1, + ACTIONS(3059), 1, + aux_sym_index_definition_token1, + ACTIONS(3135), 1, sym__terminator, - STATE(1946), 1, - sym_query_tuning, - STATE(2050), 1, - sym__pre_tuning, - STATE(2314), 1, - sym_where_clause, - STATE(2318), 1, - aux_sym_for_phrase_repeat1, - STATE(1996), 2, + ACTIONS(3137), 1, + aux_sym_variable_definition_token6, + STATE(2340), 1, + aux_sym_temp_table_definition_repeat1, + STATE(2464), 1, + sym_temp_table_tuning, + STATE(2668), 1, + aux_sym_temp_table_definition_repeat2, + ACTIONS(3051), 2, + aux_sym_variable_tuning_token6, + aux_sym_temp_table_tuning_token1, + STATE(2004), 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, - [100893] = 14, + STATE(3248), 2, + sym_field_definition, + sym_index_definition, + [101143] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(3001), 1, - aux_sym_while_phrase_token1, - ACTIONS(3003), 1, - aux_sym_on_error_phrase_token1, - ACTIONS(3005), 1, - aux_sym_stop_after_phrase_token1, - ACTIONS(3007), 1, - aux_sym_do_tuning_token1, - ACTIONS(3131), 1, - anon_sym_COLON, - STATE(2188), 1, - aux_sym_do_block_repeat1, - STATE(2190), 1, - sym_while_phrase, - STATE(2917), 1, - sym_stop_after_phrase, - STATE(2944), 1, - sym_do_tuning, - STATE(1997), 2, + ACTIONS(1458), 1, + aux_sym_variable_definition_token4, + STATE(2005), 2, sym_comment, sym_include, - STATE(4247), 3, - sym_on_error_phrase, - sym_on_stop_phrase, - sym_on_quit_phrase, - [100939] = 14, + ACTIONS(1456), 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, + [101173] = 14, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(3037), 1, + ACTIONS(3055), 1, anon_sym_LIKE, - ACTIONS(3039), 1, + ACTIONS(3057), 1, aux_sym_field_definition_token1, - ACTIONS(3041), 1, + ACTIONS(3059), 1, aux_sym_index_definition_token1, - ACTIONS(3133), 1, + ACTIONS(3127), 1, sym__terminator, - ACTIONS(3135), 1, + ACTIONS(3129), 1, aux_sym_variable_definition_token6, - STATE(1977), 1, + STATE(2340), 1, aux_sym_temp_table_definition_repeat1, - STATE(2482), 1, + STATE(2464), 1, sym_temp_table_tuning, - STATE(2610), 1, + STATE(2702), 1, aux_sym_temp_table_definition_repeat2, - ACTIONS(3033), 2, + ACTIONS(3051), 2, aux_sym_variable_tuning_token6, aux_sym_temp_table_tuning_token1, - STATE(1998), 2, + STATE(2006), 2, sym_comment, sym_include, - STATE(3136), 2, + STATE(3248), 2, sym_field_definition, sym_index_definition, - [100985] = 15, - ACTIONS(3), 1, + [101219] = 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(2616), 1, - sym_identifier, - ACTIONS(2620), 1, - aux_sym_while_phrase_token1, - ACTIONS(3013), 1, - aux_sym_on_error_phrase_token1, - ACTIONS(3137), 1, - anon_sym_COLON, - STATE(2411), 1, - sym_to_phrase, - STATE(2899), 1, - sym_while_phrase, - STATE(2938), 1, - sym_on_error_phrase, - STATE(3059), 1, - sym_on_quit_phrase, - STATE(4257), 1, - sym_on_stop_phrase, - STATE(4680), 1, - sym_assignment, - STATE(1999), 2, + ACTIONS(1250), 1, + aux_sym_input_stream_tuning_token9, + ACTIONS(3139), 1, + sym__terminator, + STATE(2011), 1, + aux_sym_input_stream_statement_repeat1, + STATE(2156), 1, + sym_input_stream_tuning, + ACTIONS(1246), 2, + aux_sym_input_stream_tuning_token1, + aux_sym_input_stream_tuning_token5, + STATE(2007), 2, sym_comment, sym_include, - STATE(4733), 2, - sym_qualified_name, - sym_object_access, - [101033] = 14, + ACTIONS(1248), 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, + [101257] = 10, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(3001), 1, - aux_sym_while_phrase_token1, - ACTIONS(3003), 1, - aux_sym_on_error_phrase_token1, - ACTIONS(3005), 1, - aux_sym_stop_after_phrase_token1, - ACTIONS(3007), 1, - aux_sym_do_tuning_token1, - ACTIONS(3139), 1, - anon_sym_COLON, - STATE(2152), 1, - sym_while_phrase, - STATE(2163), 1, - aux_sym_do_block_repeat1, - STATE(2810), 1, - sym_stop_after_phrase, - STATE(2944), 1, - sym_do_tuning, - STATE(2000), 2, + ACTIONS(3141), 1, + aux_sym_buffer_definition_token1, + ACTIONS(3143), 1, + aux_sym_query_definition_token1, + STATE(1972), 1, + aux_sym_buffer_definition_repeat1, + STATE(2008), 2, sym_comment, sym_include, - STATE(4481), 3, - sym_on_error_phrase, - sym_on_stop_phrase, - sym_on_quit_phrase, - [101079] = 9, + STATE(2363), 2, + sym_scope_tuning, + sym_access_tuning, + ACTIONS(1360), 3, + aux_sym_access_tuning_token1, + aux_sym_access_tuning_token2, + aux_sym_access_tuning_token3, + ACTIONS(1358), 4, + aux_sym_scope_tuning_token1, + aux_sym_scope_tuning_token2, + aux_sym_scope_tuning_token3, + aux_sym_scope_tuning_token4, + [101295] = 10, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(3141), 1, + ACTIONS(3145), 1, + aux_sym_buffer_definition_token1, + ACTIONS(3147), 1, + aux_sym_query_definition_token1, + STATE(1972), 1, + aux_sym_buffer_definition_repeat1, + STATE(2009), 2, + sym_comment, + sym_include, + STATE(2363), 2, + sym_scope_tuning, + sym_access_tuning, + ACTIONS(1360), 3, + aux_sym_access_tuning_token1, + aux_sym_access_tuning_token2, + aux_sym_access_tuning_token3, + ACTIONS(1358), 4, + aux_sym_scope_tuning_token1, + aux_sym_scope_tuning_token2, + aux_sym_scope_tuning_token3, + aux_sym_scope_tuning_token4, + [101333] = 7, + ACTIONS(59), 1, + anon_sym_SLASH_SLASH, + ACTIONS(61), 1, + anon_sym_SLASH_STAR, + ACTIONS(65), 1, + anon_sym_LBRACE, + ACTIONS(3151), 1, + aux_sym_input_stream_tuning_token10, + ACTIONS(3153), 1, + aux_sym_input_stream_tuning_token11, + STATE(2010), 2, + sym_comment, + sym_include, + ACTIONS(3149), 10, sym__terminator, - ACTIONS(3149), 1, + 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, - STATE(2144), 1, + [101365] = 9, + ACTIONS(59), 1, + anon_sym_SLASH_SLASH, + ACTIONS(61), 1, + anon_sym_SLASH_STAR, + ACTIONS(65), 1, + anon_sym_LBRACE, + ACTIONS(3155), 1, + sym__terminator, + ACTIONS(3163), 1, + aux_sym_input_stream_tuning_token9, + STATE(2156), 1, sym_input_stream_tuning, - ACTIONS(3143), 2, + ACTIONS(3157), 2, aux_sym_input_stream_tuning_token1, aux_sym_input_stream_tuning_token5, - STATE(2001), 3, + STATE(2011), 3, sym_comment, sym_include, aux_sym_input_stream_statement_repeat1, - ACTIONS(3146), 6, + ACTIONS(3160), 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, - [101115] = 14, + [101401] = 14, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(3037), 1, - anon_sym_LIKE, - ACTIONS(3039), 1, - aux_sym_field_definition_token1, - ACTIONS(3041), 1, - aux_sym_index_definition_token1, - ACTIONS(3152), 1, - sym__terminator, - ACTIONS(3154), 1, - aux_sym_variable_definition_token6, - STATE(2343), 1, - aux_sym_temp_table_definition_repeat1, - STATE(2482), 1, - sym_temp_table_tuning, - STATE(2562), 1, - aux_sym_temp_table_definition_repeat2, - ACTIONS(3033), 2, - aux_sym_variable_tuning_token6, - aux_sym_temp_table_tuning_token1, - STATE(2002), 2, + ACTIONS(3029), 1, + aux_sym_while_phrase_token1, + ACTIONS(3031), 1, + aux_sym_on_error_phrase_token1, + ACTIONS(3033), 1, + aux_sym_stop_after_phrase_token1, + ACTIONS(3035), 1, + aux_sym_do_tuning_token1, + ACTIONS(3166), 1, + anon_sym_COLON, + STATE(2167), 1, + aux_sym_do_block_repeat1, + STATE(2171), 1, + sym_while_phrase, + STATE(2930), 1, + sym_stop_after_phrase, + STATE(3074), 1, + sym_do_tuning, + STATE(2012), 2, sym_comment, sym_include, - STATE(3136), 2, - sym_field_definition, - sym_index_definition, - [101161] = 14, + STATE(4678), 3, + sym_on_error_phrase, + sym_on_stop_phrase, + sym_on_quit_phrase, + [101447] = 12, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(3037), 1, - anon_sym_LIKE, - ACTIONS(3039), 1, - aux_sym_field_definition_token1, - ACTIONS(3041), 1, - aux_sym_index_definition_token1, - ACTIONS(3156), 1, + ACTIONS(1199), 1, + aux_sym_where_clause_token1, + ACTIONS(1201), 1, + aux_sym_query_tuning_token5, + ACTIONS(3168), 1, sym__terminator, - ACTIONS(3158), 1, - aux_sym_variable_definition_token6, - STATE(2343), 1, - aux_sym_temp_table_definition_repeat1, - STATE(2482), 1, - sym_temp_table_tuning, - STATE(2553), 1, - aux_sym_temp_table_definition_repeat2, - ACTIONS(3033), 2, - aux_sym_variable_tuning_token6, - aux_sym_temp_table_tuning_token1, - STATE(2003), 2, + STATE(1962), 1, + sym_query_tuning, + STATE(2129), 1, + sym__pre_tuning, + STATE(2323), 1, + sym_where_clause, + STATE(2324), 1, + aux_sym_for_phrase_repeat1, + STATE(2013), 2, sym_comment, sym_include, - STATE(3136), 2, - sym_field_definition, - sym_index_definition, - [101207] = 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, + [101489] = 10, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(3166), 2, + ACTIONS(3170), 1, aux_sym_buffer_definition_token1, + ACTIONS(3172), 1, aux_sym_query_definition_token1, - STATE(2340), 2, + STATE(1972), 1, + aux_sym_buffer_definition_repeat1, + STATE(2014), 2, + sym_comment, + sym_include, + STATE(2363), 2, sym_scope_tuning, sym_access_tuning, - ACTIONS(3163), 3, + ACTIONS(1360), 3, aux_sym_access_tuning_token1, aux_sym_access_tuning_token2, aux_sym_access_tuning_token3, - STATE(2004), 3, - sym_comment, - sym_include, - aux_sym_buffer_definition_repeat1, - ACTIONS(3160), 4, + ACTIONS(1358), 4, aux_sym_scope_tuning_token1, aux_sym_scope_tuning_token2, aux_sym_scope_tuning_token3, aux_sym_scope_tuning_token4, - [101241] = 14, + [101527] = 14, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(3037), 1, + ACTIONS(3055), 1, anon_sym_LIKE, - ACTIONS(3039), 1, + ACTIONS(3057), 1, aux_sym_field_definition_token1, - ACTIONS(3041), 1, + ACTIONS(3059), 1, aux_sym_index_definition_token1, - ACTIONS(3168), 1, + ACTIONS(3174), 1, sym__terminator, - ACTIONS(3170), 1, + ACTIONS(3176), 1, aux_sym_variable_definition_token6, - STATE(2014), 1, + STATE(2006), 1, aux_sym_temp_table_definition_repeat1, - STATE(2482), 1, + STATE(2464), 1, sym_temp_table_tuning, - STATE(2696), 1, + STATE(2773), 1, aux_sym_temp_table_definition_repeat2, - ACTIONS(3033), 2, + ACTIONS(3051), 2, aux_sym_variable_tuning_token6, aux_sym_temp_table_tuning_token1, - STATE(2005), 2, + STATE(2015), 2, sym_comment, sym_include, - STATE(3136), 2, + STATE(3248), 2, sym_field_definition, sym_index_definition, - [101287] = 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(3172), 1, - sym__terminator, - STATE(2001), 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(2006), 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, - [101325] = 12, + [101573] = 12, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, @@ -129845,17 +130763,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_where_clause_token1, ACTIONS(1201), 1, aux_sym_query_tuning_token5, - ACTIONS(3174), 1, + ACTIONS(3178), 1, sym__terminator, - STATE(1946), 1, + STATE(1962), 1, sym_query_tuning, - STATE(2068), 1, + STATE(2095), 1, sym__pre_tuning, - STATE(2309), 1, - sym_where_clause, - STATE(2316), 1, + STATE(2260), 1, aux_sym_for_phrase_repeat1, - STATE(2007), 2, + STATE(2261), 1, + sym_where_clause, + STATE(2016), 2, sym_comment, sym_include, ACTIONS(1195), 5, @@ -129864,91 +130782,208 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_query_tuning_token2, aux_sym_query_tuning_token3, aux_sym_query_tuning_token4, - [101367] = 10, + [101615] = 14, + ACTIONS(59), 1, + anon_sym_SLASH_SLASH, + ACTIONS(61), 1, + anon_sym_SLASH_STAR, + ACTIONS(65), 1, + anon_sym_LBRACE, + ACTIONS(3029), 1, + aux_sym_while_phrase_token1, + ACTIONS(3031), 1, + aux_sym_on_error_phrase_token1, + ACTIONS(3033), 1, + aux_sym_stop_after_phrase_token1, + ACTIONS(3035), 1, + aux_sym_do_tuning_token1, + ACTIONS(3180), 1, + anon_sym_COLON, + STATE(2212), 1, + aux_sym_do_block_repeat1, + STATE(2217), 1, + sym_while_phrase, + STATE(2803), 1, + sym_stop_after_phrase, + STATE(3074), 1, + sym_do_tuning, + STATE(2017), 2, + sym_comment, + sym_include, + STATE(4577), 3, + sym_on_error_phrase, + sym_on_stop_phrase, + sym_on_quit_phrase, + [101661] = 10, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(1256), 1, + ACTIONS(1250), 1, aux_sym_input_stream_tuning_token9, - ACTIONS(3176), 1, + ACTIONS(3182), 1, sym__terminator, - STATE(2001), 1, + STATE(2011), 1, aux_sym_input_stream_statement_repeat1, - STATE(2144), 1, + STATE(2156), 1, sym_input_stream_tuning, - ACTIONS(1252), 2, + ACTIONS(1246), 2, aux_sym_input_stream_tuning_token1, aux_sym_input_stream_tuning_token5, - STATE(2008), 2, + STATE(2018), 2, sym_comment, sym_include, - ACTIONS(1254), 6, + ACTIONS(1248), 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, - [101405] = 10, + [101699] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(3178), 1, + STATE(2019), 2, + sym_comment, + sym_include, + ACTIONS(3184), 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, + 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, + [101727] = 10, + ACTIONS(59), 1, + anon_sym_SLASH_SLASH, + ACTIONS(61), 1, + anon_sym_SLASH_STAR, + ACTIONS(65), 1, + anon_sym_LBRACE, + ACTIONS(3186), 1, aux_sym_buffer_definition_token1, - ACTIONS(3180), 1, + ACTIONS(3188), 1, aux_sym_query_definition_token1, - STATE(2004), 1, + STATE(1972), 1, aux_sym_buffer_definition_repeat1, - STATE(2009), 2, + STATE(2020), 2, sym_comment, sym_include, - STATE(2340), 2, + STATE(2363), 2, sym_scope_tuning, sym_access_tuning, - ACTIONS(1354), 3, + ACTIONS(1360), 3, aux_sym_access_tuning_token1, aux_sym_access_tuning_token2, aux_sym_access_tuning_token3, - ACTIONS(1352), 4, + ACTIONS(1358), 4, aux_sym_scope_tuning_token1, aux_sym_scope_tuning_token2, aux_sym_scope_tuning_token3, aux_sym_scope_tuning_token4, - [101443] = 10, + [101765] = 14, + ACTIONS(59), 1, + anon_sym_SLASH_SLASH, + ACTIONS(61), 1, + anon_sym_SLASH_STAR, + ACTIONS(65), 1, + anon_sym_LBRACE, + ACTIONS(3055), 1, + anon_sym_LIKE, + ACTIONS(3057), 1, + aux_sym_field_definition_token1, + ACTIONS(3059), 1, + aux_sym_index_definition_token1, + ACTIONS(3190), 1, + sym__terminator, + ACTIONS(3192), 1, + aux_sym_variable_definition_token6, + STATE(2025), 1, + aux_sym_temp_table_definition_repeat1, + STATE(2464), 1, + sym_temp_table_tuning, + STATE(2712), 1, + aux_sym_temp_table_definition_repeat2, + ACTIONS(3051), 2, + aux_sym_variable_tuning_token6, + aux_sym_temp_table_tuning_token1, + STATE(2021), 2, + sym_comment, + sym_include, + STATE(3248), 2, + sym_field_definition, + sym_index_definition, + [101811] = 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(3194), 1, + sym__terminator, + STATE(1962), 1, + sym_query_tuning, + STATE(2090), 1, + sym__pre_tuning, + STATE(2271), 1, + aux_sym_for_phrase_repeat1, + STATE(2273), 1, + sym_where_clause, + STATE(2022), 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, + [101853] = 10, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(1256), 1, + ACTIONS(1250), 1, aux_sym_input_stream_tuning_token9, - ACTIONS(3182), 1, + ACTIONS(3196), 1, sym__terminator, - STATE(2001), 1, + STATE(2011), 1, aux_sym_input_stream_statement_repeat1, - STATE(2144), 1, + STATE(2156), 1, sym_input_stream_tuning, - ACTIONS(1252), 2, + ACTIONS(1246), 2, aux_sym_input_stream_tuning_token1, aux_sym_input_stream_tuning_token5, - STATE(2010), 2, + STATE(2023), 2, sym_comment, sym_include, - ACTIONS(1254), 6, + ACTIONS(1248), 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, - [101481] = 12, + [101891] = 12, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, @@ -129959,17 +130994,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_where_clause_token1, ACTIONS(1201), 1, aux_sym_query_tuning_token5, - ACTIONS(3184), 1, + ACTIONS(3198), 1, sym__terminator, - STATE(1946), 1, + STATE(1962), 1, sym_query_tuning, - STATE(2041), 1, + STATE(2068), 1, sym__pre_tuning, - STATE(2284), 1, + STATE(2305), 1, aux_sym_for_phrase_repeat1, - STATE(2286), 1, + STATE(2306), 1, sym_where_clause, - STATE(2011), 2, + STATE(2024), 2, sym_comment, sym_include, ACTIONS(1195), 5, @@ -129978,538 +131013,332 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_query_tuning_token2, aux_sym_query_tuning_token3, aux_sym_query_tuning_token4, - [101523] = 14, + [101933] = 14, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(3037), 1, + ACTIONS(3055), 1, anon_sym_LIKE, - ACTIONS(3039), 1, + ACTIONS(3057), 1, aux_sym_field_definition_token1, - ACTIONS(3041), 1, + ACTIONS(3059), 1, aux_sym_index_definition_token1, - ACTIONS(3186), 1, + ACTIONS(3200), 1, sym__terminator, - ACTIONS(3188), 1, + ACTIONS(3202), 1, aux_sym_variable_definition_token6, - STATE(2343), 1, + STATE(2340), 1, aux_sym_temp_table_definition_repeat1, - STATE(2482), 1, + STATE(2464), 1, sym_temp_table_tuning, - STATE(2663), 1, + STATE(2690), 1, aux_sym_temp_table_definition_repeat2, - ACTIONS(3033), 2, + ACTIONS(3051), 2, aux_sym_variable_tuning_token6, aux_sym_temp_table_tuning_token1, - STATE(2012), 2, + STATE(2025), 2, sym_comment, sym_include, - STATE(3136), 2, + STATE(3248), 2, sym_field_definition, sym_index_definition, - [101569] = 14, + [101979] = 10, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(3031), 1, + ACTIONS(1250), 1, + aux_sym_input_stream_tuning_token9, + ACTIONS(3204), 1, sym__terminator, - ACTIONS(3035), 1, - aux_sym_variable_definition_token6, - ACTIONS(3037), 1, + STATE(2011), 1, + aux_sym_input_stream_statement_repeat1, + STATE(2156), 1, + sym_input_stream_tuning, + ACTIONS(1246), 2, + aux_sym_input_stream_tuning_token1, + aux_sym_input_stream_tuning_token5, + STATE(2026), 2, + sym_comment, + sym_include, + ACTIONS(1248), 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, + [102017] = 14, + ACTIONS(59), 1, + anon_sym_SLASH_SLASH, + ACTIONS(61), 1, + anon_sym_SLASH_STAR, + ACTIONS(65), 1, + anon_sym_LBRACE, + ACTIONS(3055), 1, anon_sym_LIKE, - ACTIONS(3039), 1, + ACTIONS(3057), 1, aux_sym_field_definition_token1, - ACTIONS(3041), 1, + ACTIONS(3059), 1, aux_sym_index_definition_token1, - STATE(2012), 1, + ACTIONS(3200), 1, + sym__terminator, + ACTIONS(3202), 1, + aux_sym_variable_definition_token6, + STATE(2029), 1, aux_sym_temp_table_definition_repeat1, - STATE(2482), 1, + STATE(2464), 1, sym_temp_table_tuning, - STATE(2688), 1, + STATE(2690), 1, aux_sym_temp_table_definition_repeat2, - ACTIONS(3033), 2, + ACTIONS(3051), 2, aux_sym_variable_tuning_token6, aux_sym_temp_table_tuning_token1, - STATE(2013), 2, + STATE(2027), 2, sym_comment, sym_include, - STATE(3136), 2, + STATE(3248), 2, sym_field_definition, sym_index_definition, - [101615] = 14, + [102063] = 14, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(3037), 1, + ACTIONS(3055), 1, anon_sym_LIKE, - ACTIONS(3039), 1, + ACTIONS(3057), 1, aux_sym_field_definition_token1, - ACTIONS(3041), 1, + ACTIONS(3059), 1, aux_sym_index_definition_token1, - ACTIONS(3190), 1, + ACTIONS(3206), 1, sym__terminator, - ACTIONS(3192), 1, + ACTIONS(3208), 1, aux_sym_variable_definition_token6, - STATE(2343), 1, + STATE(2340), 1, aux_sym_temp_table_definition_repeat1, - STATE(2482), 1, + STATE(2464), 1, sym_temp_table_tuning, - STATE(2611), 1, + STATE(2784), 1, aux_sym_temp_table_definition_repeat2, - ACTIONS(3033), 2, + ACTIONS(3051), 2, aux_sym_variable_tuning_token6, aux_sym_temp_table_tuning_token1, - STATE(2014), 2, + STATE(2028), 2, sym_comment, sym_include, - STATE(3136), 2, + STATE(3248), 2, sym_field_definition, sym_index_definition, - [101661] = 7, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - ACTIONS(7), 1, - anon_sym_LBRACE, - ACTIONS(2748), 1, - sym__namedot, - STATE(1963), 1, - aux_sym_qualified_name_repeat1, - STATE(2015), 2, - sym_comment, - sym_include, - ACTIONS(91), 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, - [101693] = 14, + [102109] = 14, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(3037), 1, + ACTIONS(3055), 1, anon_sym_LIKE, - ACTIONS(3039), 1, + ACTIONS(3057), 1, aux_sym_field_definition_token1, - ACTIONS(3041), 1, + ACTIONS(3059), 1, aux_sym_index_definition_token1, - ACTIONS(3190), 1, + ACTIONS(3210), 1, sym__terminator, - ACTIONS(3192), 1, + ACTIONS(3212), 1, aux_sym_variable_definition_token6, - STATE(2003), 1, + STATE(2340), 1, aux_sym_temp_table_definition_repeat1, - STATE(2482), 1, + STATE(2464), 1, sym_temp_table_tuning, - STATE(2611), 1, + STATE(2673), 1, aux_sym_temp_table_definition_repeat2, - ACTIONS(3033), 2, + ACTIONS(3051), 2, aux_sym_variable_tuning_token6, aux_sym_temp_table_tuning_token1, - STATE(2016), 2, + STATE(2029), 2, sym_comment, sym_include, - STATE(3136), 2, + STATE(3248), 2, sym_field_definition, sym_index_definition, - [101739] = 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(3194), 1, - sym__terminator, - STATE(2001), 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(2017), 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, - [101777] = 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(3196), 1, - sym__terminator, - STATE(2001), 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(2018), 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, - [101815] = 7, - ACTIONS(59), 1, - anon_sym_SLASH_SLASH, - ACTIONS(61), 1, - anon_sym_SLASH_STAR, - ACTIONS(65), 1, - anon_sym_LBRACE, - ACTIONS(3200), 1, - aux_sym_input_stream_tuning_token10, - ACTIONS(3202), 1, - aux_sym_input_stream_tuning_token11, - STATE(2019), 2, - sym_comment, - sym_include, - ACTIONS(3198), 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, - [101847] = 12, + [102155] = 14, 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(3204), 1, + ACTIONS(3055), 1, + anon_sym_LIKE, + ACTIONS(3057), 1, + aux_sym_field_definition_token1, + ACTIONS(3059), 1, + aux_sym_index_definition_token1, + ACTIONS(3206), 1, sym__terminator, - STATE(1946), 1, - sym_query_tuning, - STATE(2134), 1, - sym__pre_tuning, - STATE(2310), 1, - aux_sym_for_phrase_repeat1, - STATE(2312), 1, - sym_where_clause, - STATE(2020), 2, + ACTIONS(3208), 1, + aux_sym_variable_definition_token6, + STATE(2003), 1, + aux_sym_temp_table_definition_repeat1, + STATE(2464), 1, + sym_temp_table_tuning, + STATE(2784), 1, + aux_sym_temp_table_definition_repeat2, + ACTIONS(3051), 2, + aux_sym_variable_tuning_token6, + aux_sym_temp_table_tuning_token1, + STATE(2030), 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, - [101889] = 14, + STATE(3248), 2, + sym_field_definition, + sym_index_definition, + [102201] = 14, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(3001), 1, + ACTIONS(3029), 1, aux_sym_while_phrase_token1, - ACTIONS(3003), 1, + ACTIONS(3031), 1, aux_sym_on_error_phrase_token1, - ACTIONS(3005), 1, + ACTIONS(3033), 1, aux_sym_stop_after_phrase_token1, - ACTIONS(3007), 1, + ACTIONS(3035), 1, aux_sym_do_tuning_token1, - ACTIONS(3206), 1, + ACTIONS(3214), 1, anon_sym_COLON, - STATE(2162), 1, + STATE(2199), 1, aux_sym_do_block_repeat1, - STATE(2165), 1, + STATE(2202), 1, sym_while_phrase, - STATE(2806), 1, + STATE(2957), 1, sym_stop_after_phrase, - STATE(2944), 1, + STATE(3074), 1, sym_do_tuning, - STATE(2021), 2, + STATE(2031), 2, sym_comment, sym_include, - STATE(4335), 3, + STATE(4611), 3, sym_on_error_phrase, sym_on_stop_phrase, sym_on_quit_phrase, - [101935] = 10, + [102247] = 11, 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(3208), 1, - sym__terminator, - STATE(2001), 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(2022), 2, + ACTIONS(2626), 1, + aux_sym_method_definition_token1, + ACTIONS(3216), 1, + aux_sym__block_terminator_token1, + ACTIONS(3218), 1, + aux_sym_variable_definition_token1, + ACTIONS(3220), 1, + aux_sym_variable_definition_token2, + STATE(2228), 1, + aux_sym_interface_body_repeat1, + STATE(4561), 1, + sym_interface_body, + STATE(2032), 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, - [101973] = 11, + STATE(3046), 5, + sym_property_definition, + sym_event_definition, + sym_method_definition, + sym_dataset_definition, + sym_temp_table_definition, + [102286] = 6, 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(3204), 1, - sym__terminator, - STATE(1953), 1, - sym_query_tuning, - STATE(2310), 1, - aux_sym_for_phrase_repeat1, - STATE(2312), 1, - sym_where_clause, - STATE(2023), 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, - [102012] = 6, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - ACTIONS(7), 1, - anon_sym_LBRACE, - ACTIONS(3210), 1, - aux_sym_function_call_token1, - STATE(2024), 2, + STATE(444), 1, + sym_accumulate_aggregate, + STATE(2033), 2, sym_comment, sym_include, - ACTIONS(213), 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, - [102041] = 15, + ACTIONS(3222), 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, + [102315] = 15, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2105), 1, - anon_sym_COMMA, ACTIONS(2109), 1, - aux_sym_on_error_phrase_token1, - ACTIONS(2113), 1, - aux_sym_sort_clause_token1, - ACTIONS(2115), 1, - aux_sym_sort_clause_token2, - ACTIONS(2570), 1, - anon_sym_COLON, - STATE(2454), 1, - aux_sym_for_phrase_repeat2, - STATE(2547), 1, - sym_on_error_phrase, - STATE(2755), 1, - sym_on_quit_phrase, - STATE(2783), 1, - sym_sort_clause, - STATE(3403), 1, - sym_on_stop_phrase, - STATE(3410), 1, - aux_sym_for_statement_repeat1, - STATE(2025), 2, - sym_comment, - sym_include, - [102088] = 15, - ACTIONS(59), 1, - anon_sym_SLASH_SLASH, - ACTIONS(61), 1, - anon_sym_SLASH_STAR, - ACTIONS(65), 1, - anon_sym_LBRACE, - ACTIONS(2105), 1, anon_sym_COMMA, - ACTIONS(2109), 1, - aux_sym_on_error_phrase_token1, ACTIONS(2113), 1, - aux_sym_sort_clause_token1, - ACTIONS(2115), 1, - aux_sym_sort_clause_token2, - ACTIONS(3212), 1, - anon_sym_COLON, - STATE(2454), 1, - aux_sym_for_phrase_repeat2, - STATE(2668), 1, - sym_on_error_phrase, - STATE(2737), 1, - sym_on_quit_phrase, - STATE(2783), 1, - sym_sort_clause, - STATE(3127), 1, - sym_on_stop_phrase, - STATE(3128), 1, - aux_sym_for_statement_repeat1, - STATE(2026), 2, - sym_comment, - sym_include, - [102135] = 15, - ACTIONS(59), 1, - anon_sym_SLASH_SLASH, - ACTIONS(61), 1, - anon_sym_SLASH_STAR, - ACTIONS(65), 1, - anon_sym_LBRACE, - ACTIONS(2105), 1, - anon_sym_COMMA, - ACTIONS(2109), 1, aux_sym_on_error_phrase_token1, - ACTIONS(2113), 1, + ACTIONS(2117), 1, aux_sym_sort_clause_token1, - ACTIONS(2115), 1, + ACTIONS(2119), 1, aux_sym_sort_clause_token2, - ACTIONS(2596), 1, + ACTIONS(2588), 1, anon_sym_COLON, - STATE(2454), 1, + STATE(2544), 1, aux_sym_for_phrase_repeat2, - STATE(2673), 1, + STATE(2684), 1, sym_on_error_phrase, - STATE(2783), 1, + STATE(2934), 1, sym_sort_clause, - STATE(2886), 1, + STATE(2945), 1, sym_on_quit_phrase, - STATE(3200), 1, - sym_on_stop_phrase, - STATE(3201), 1, + STATE(3398), 1, aux_sym_for_statement_repeat1, - STATE(2027), 2, - sym_comment, - sym_include, - [102182] = 15, - ACTIONS(59), 1, - anon_sym_SLASH_SLASH, - ACTIONS(61), 1, - anon_sym_SLASH_STAR, - ACTIONS(65), 1, - anon_sym_LBRACE, - ACTIONS(2105), 1, - anon_sym_COMMA, - ACTIONS(2109), 1, - aux_sym_on_error_phrase_token1, - ACTIONS(2113), 1, - aux_sym_sort_clause_token1, - ACTIONS(2115), 1, - aux_sym_sort_clause_token2, - ACTIONS(2600), 1, - anon_sym_COLON, - STATE(2454), 1, - aux_sym_for_phrase_repeat2, - STATE(2680), 1, - sym_on_error_phrase, - STATE(2777), 1, - sym_on_quit_phrase, - STATE(2783), 1, - sym_sort_clause, - STATE(3124), 1, + STATE(3399), 1, sym_on_stop_phrase, - STATE(3125), 1, - aux_sym_for_statement_repeat1, - STATE(2028), 2, + STATE(2034), 2, sym_comment, sym_include, - [102229] = 11, + [102362] = 5, 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(3214), 1, - sym__terminator, - STATE(1953), 1, - sym_query_tuning, - STATE(2225), 1, - sym_where_clause, - STATE(2228), 1, - aux_sym_for_phrase_repeat1, - STATE(2029), 2, + STATE(2035), 2, sym_comment, sym_include, - ACTIONS(1195), 5, + ACTIONS(3224), 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, - [102268] = 11, + aux_sym_query_tuning_token5, + aux_sym_of_token1, + aux_sym__using_and_token1, + [102389] = 11, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, @@ -130520,15 +131349,15 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_where_clause_token1, ACTIONS(1201), 1, aux_sym_query_tuning_token5, - ACTIONS(3009), 1, + ACTIONS(3226), 1, sym__terminator, - STATE(1953), 1, + STATE(2019), 1, sym_query_tuning, - STATE(2222), 1, + STATE(2283), 1, sym_where_clause, - STATE(2224), 1, + STATE(2284), 1, aux_sym_for_phrase_repeat1, - STATE(2030), 2, + STATE(2036), 2, sym_comment, sym_include, ACTIONS(1195), 5, @@ -130537,245 +131366,133 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_query_tuning_token2, aux_sym_query_tuning_token3, aux_sym_query_tuning_token4, - [102307] = 15, + [102428] = 10, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2105), 1, - anon_sym_COMMA, - ACTIONS(2109), 1, - aux_sym_on_error_phrase_token1, - ACTIONS(2113), 1, - aux_sym_sort_clause_token1, - ACTIONS(2115), 1, - aux_sym_sort_clause_token2, - ACTIONS(2429), 1, - anon_sym_COLON, - STATE(2454), 1, - aux_sym_for_phrase_repeat2, - STATE(2705), 1, - sym_on_error_phrase, - STATE(2783), 1, - sym_sort_clause, - STATE(2789), 1, - sym_on_quit_phrase, - STATE(3244), 1, - sym_on_stop_phrase, - STATE(3245), 1, - aux_sym_for_statement_repeat1, - STATE(2031), 2, + ACTIONS(3017), 1, + aux_sym_variable_tuning_token1, + STATE(2093), 1, + aux_sym_field_definition_repeat1, + STATE(2362), 1, + sym_field_option, + ACTIONS(3021), 2, + aux_sym_variable_tuning_token5, + aux_sym_property_tuning_token1, + STATE(2037), 2, sym_comment, sym_include, - [102354] = 15, + ACTIONS(3019), 3, + aux_sym_variable_tuning_token2, + aux_sym_variable_tuning_token3, + aux_sym_variable_tuning_token4, + ACTIONS(3228), 3, + sym__terminator, + aux_sym_field_definition_token1, + aux_sym_index_definition_token1, + [102465] = 10, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2105), 1, - anon_sym_COMMA, - ACTIONS(2109), 1, - aux_sym_on_error_phrase_token1, - ACTIONS(2113), 1, - aux_sym_sort_clause_token1, - ACTIONS(2115), 1, - aux_sym_sort_clause_token2, - ACTIONS(2588), 1, - anon_sym_COLON, - STATE(2454), 1, - aux_sym_for_phrase_repeat2, - STATE(2713), 1, - sym_on_error_phrase, - STATE(2783), 1, - sym_sort_clause, - STATE(2866), 1, - sym_on_quit_phrase, - STATE(3305), 1, - aux_sym_for_statement_repeat1, - STATE(3306), 1, - sym_on_stop_phrase, - STATE(2032), 2, + ACTIONS(3017), 1, + aux_sym_variable_tuning_token1, + STATE(2093), 1, + aux_sym_field_definition_repeat1, + STATE(2362), 1, + sym_field_option, + ACTIONS(3021), 2, + aux_sym_variable_tuning_token5, + aux_sym_property_tuning_token1, + STATE(2038), 2, sym_comment, sym_include, - [102401] = 15, + ACTIONS(3019), 3, + aux_sym_variable_tuning_token2, + aux_sym_variable_tuning_token3, + aux_sym_variable_tuning_token4, + ACTIONS(3230), 3, + sym__terminator, + aux_sym_field_definition_token1, + aux_sym_index_definition_token1, + [102502] = 15, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2105), 1, - anon_sym_COMMA, ACTIONS(2109), 1, - aux_sym_on_error_phrase_token1, - ACTIONS(2113), 1, - aux_sym_sort_clause_token1, - ACTIONS(2115), 1, - aux_sym_sort_clause_token2, - ACTIONS(2423), 1, - anon_sym_COLON, - STATE(2454), 1, - aux_sym_for_phrase_repeat2, - STATE(2666), 1, - sym_on_error_phrase, - STATE(2743), 1, - sym_on_quit_phrase, - STATE(2783), 1, - sym_sort_clause, - STATE(3421), 1, - aux_sym_for_statement_repeat1, - STATE(3426), 1, - sym_on_stop_phrase, - STATE(2033), 2, - sym_comment, - sym_include, - [102448] = 15, - ACTIONS(59), 1, - anon_sym_SLASH_SLASH, - ACTIONS(61), 1, - anon_sym_SLASH_STAR, - ACTIONS(65), 1, - anon_sym_LBRACE, - ACTIONS(2105), 1, anon_sym_COMMA, - ACTIONS(2109), 1, - aux_sym_on_error_phrase_token1, ACTIONS(2113), 1, - aux_sym_sort_clause_token1, - ACTIONS(2115), 1, - aux_sym_sort_clause_token2, - ACTIONS(3216), 1, - anon_sym_COLON, - STATE(2454), 1, - aux_sym_for_phrase_repeat2, - STATE(2694), 1, - sym_on_error_phrase, - STATE(2721), 1, - sym_on_quit_phrase, - STATE(2783), 1, - sym_sort_clause, - STATE(3119), 1, - sym_on_stop_phrase, - STATE(3120), 1, - aux_sym_for_statement_repeat1, - STATE(2034), 2, - sym_comment, - sym_include, - [102495] = 5, - ACTIONS(59), 1, - anon_sym_SLASH_SLASH, - ACTIONS(61), 1, - anon_sym_SLASH_STAR, - ACTIONS(65), 1, - anon_sym_LBRACE, - STATE(2035), 2, - sym_comment, - sym_include, - ACTIONS(3218), 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, - [102522] = 15, - ACTIONS(59), 1, - anon_sym_SLASH_SLASH, - ACTIONS(61), 1, - anon_sym_SLASH_STAR, - ACTIONS(65), 1, - anon_sym_LBRACE, - ACTIONS(2105), 1, - anon_sym_COMMA, - ACTIONS(2109), 1, aux_sym_on_error_phrase_token1, - ACTIONS(2113), 1, + ACTIONS(2117), 1, aux_sym_sort_clause_token1, - ACTIONS(2115), 1, + ACTIONS(2119), 1, aux_sym_sort_clause_token2, - ACTIONS(2604), 1, + ACTIONS(3232), 1, anon_sym_COLON, - STATE(2454), 1, + STATE(2544), 1, aux_sym_for_phrase_repeat2, - STATE(2566), 1, + STATE(2633), 1, sym_on_error_phrase, - STATE(2783), 1, - sym_sort_clause, - STATE(2809), 1, + STATE(2847), 1, sym_on_quit_phrase, - STATE(3351), 1, + STATE(2934), 1, + sym_sort_clause, + STATE(3241), 1, sym_on_stop_phrase, - STATE(3415), 1, + STATE(3242), 1, aux_sym_for_statement_repeat1, - STATE(2036), 2, - sym_comment, - sym_include, - [102569] = 5, - ACTIONS(59), 1, - anon_sym_SLASH_SLASH, - ACTIONS(61), 1, - anon_sym_SLASH_STAR, - ACTIONS(65), 1, - anon_sym_LBRACE, - STATE(2037), 2, + STATE(2039), 2, sym_comment, sym_include, - ACTIONS(3220), 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, - [102596] = 5, + [102549] = 11, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - STATE(2038), 2, + ACTIONS(2626), 1, + aux_sym_method_definition_token1, + ACTIONS(3218), 1, + aux_sym_variable_definition_token1, + ACTIONS(3220), 1, + aux_sym_variable_definition_token2, + ACTIONS(3234), 1, + aux_sym__block_terminator_token1, + STATE(2228), 1, + aux_sym_interface_body_repeat1, + STATE(4211), 1, + sym_interface_body, + STATE(2040), 2, sym_comment, sym_include, - ACTIONS(3222), 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, - [102623] = 6, + STATE(3046), 5, + sym_property_definition, + sym_event_definition, + sym_method_definition, + sym_dataset_definition, + sym_temp_table_definition, + [102588] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - STATE(3160), 1, + STATE(453), 1, sym_accumulate_aggregate, - STATE(2039), 2, + STATE(2041), 2, sym_comment, sym_include, - ACTIONS(3224), 10, + ACTIONS(3222), 10, aux_sym_accumulate_aggregate_token1, aux_sym_accumulate_aggregate_token2, aux_sym_accumulate_aggregate_token3, @@ -130786,495 +131503,419 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_aggregate_token8, aux_sym_accumulate_aggregate_token9, aux_sym_accumulate_aggregate_token10, - [102652] = 11, - ACTIONS(59), 1, + [102617] = 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(1199), 1, - aux_sym_where_clause_token1, - ACTIONS(1201), 1, - aux_sym_query_tuning_token5, - ACTIONS(3226), 1, - sym__terminator, - STATE(1953), 1, - sym_query_tuning, - STATE(2272), 1, - aux_sym_for_phrase_repeat1, - STATE(2273), 1, - sym_where_clause, - STATE(2040), 2, - sym_comment, - sym_include, - ACTIONS(1195), 5, + ACTIONS(3236), 1, aux_sym_function_call_token1, - aux_sym_query_tuning_token1, - aux_sym_query_tuning_token2, - aux_sym_query_tuning_token3, - aux_sym_query_tuning_token4, - [102691] = 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(3228), 1, - sym__terminator, - STATE(1953), 1, - sym_query_tuning, - STATE(2317), 1, - sym_where_clause, - STATE(2323), 1, - aux_sym_for_phrase_repeat1, - STATE(2041), 2, + STATE(2042), 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, - [102730] = 15, - ACTIONS(59), 1, - anon_sym_SLASH_SLASH, - ACTIONS(61), 1, - anon_sym_SLASH_STAR, - ACTIONS(65), 1, - anon_sym_LBRACE, - ACTIONS(2105), 1, + ACTIONS(127), 10, + sym_identifier, anon_sym_COMMA, - ACTIONS(2109), 1, + anon_sym_COLON, aux_sym_on_error_phrase_token1, - ACTIONS(2113), 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(2115), 1, aux_sym_sort_clause_token2, - ACTIONS(2453), 1, - anon_sym_COLON, - STATE(2454), 1, - aux_sym_for_phrase_repeat2, - STATE(2656), 1, - sym_on_error_phrase, - STATE(2738), 1, - sym_on_quit_phrase, - STATE(2783), 1, - sym_sort_clause, - STATE(3436), 1, - sym_on_stop_phrase, - STATE(3442), 1, - aux_sym_for_statement_repeat1, - STATE(2042), 2, - sym_comment, - sym_include, - [102777] = 15, + [102646] = 15, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2105), 1, - anon_sym_COMMA, ACTIONS(2109), 1, - aux_sym_on_error_phrase_token1, + anon_sym_COMMA, ACTIONS(2113), 1, + aux_sym_on_error_phrase_token1, + ACTIONS(2117), 1, aux_sym_sort_clause_token1, - ACTIONS(2115), 1, + ACTIONS(2119), 1, aux_sym_sort_clause_token2, - ACTIONS(2395), 1, + ACTIONS(2590), 1, anon_sym_COLON, - STATE(2454), 1, + STATE(2544), 1, aux_sym_for_phrase_repeat2, - STATE(2641), 1, + STATE(2687), 1, sym_on_error_phrase, - STATE(2783), 1, + STATE(2934), 1, sym_sort_clause, - STATE(2878), 1, + STATE(2956), 1, sym_on_quit_phrase, - STATE(3307), 1, + STATE(3382), 1, aux_sym_for_statement_repeat1, - STATE(3308), 1, + STATE(3385), 1, sym_on_stop_phrase, STATE(2043), 2, sym_comment, sym_include, - [102824] = 15, + [102693] = 15, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2105), 1, - anon_sym_COMMA, ACTIONS(2109), 1, - aux_sym_on_error_phrase_token1, + anon_sym_COMMA, ACTIONS(2113), 1, + aux_sym_on_error_phrase_token1, + ACTIONS(2117), 1, aux_sym_sort_clause_token1, - ACTIONS(2115), 1, + ACTIONS(2119), 1, aux_sym_sort_clause_token2, - ACTIONS(3230), 1, + ACTIONS(2441), 1, anon_sym_COLON, - STATE(2454), 1, + STATE(2544), 1, aux_sym_for_phrase_repeat2, - STATE(2678), 1, + STATE(2727), 1, sym_on_error_phrase, - STATE(2720), 1, + STATE(2917), 1, sym_on_quit_phrase, - STATE(2783), 1, + STATE(2934), 1, sym_sort_clause, - STATE(3434), 1, + STATE(3343), 1, aux_sym_for_statement_repeat1, - STATE(3448), 1, + STATE(3344), 1, sym_on_stop_phrase, STATE(2044), 2, sym_comment, sym_include, - [102871] = 11, + [102740] = 9, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2634), 1, - aux_sym_method_definition_token1, - ACTIONS(3232), 1, - aux_sym__block_terminator_token1, - ACTIONS(3234), 1, - aux_sym_variable_definition_token1, - ACTIONS(3236), 1, - aux_sym_variable_definition_token2, - STATE(2157), 1, - aux_sym_interface_body_repeat1, - STATE(4194), 1, - sym_interface_body, + ACTIONS(679), 1, + sym__namedot, + ACTIONS(3240), 1, + anon_sym_COMMA, + STATE(336), 1, + aux_sym_qualified_name_repeat1, + STATE(2257), 1, + aux_sym_inherits_repeat1, STATE(2045), 2, sym_comment, sym_include, - STATE(3008), 5, - sym_property_definition, - sym_event_definition, - sym_method_definition, - sym_dataset_definition, - sym_temp_table_definition, - [102910] = 15, + ACTIONS(3238), 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, + [102775] = 15, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2105), 1, - anon_sym_COMMA, ACTIONS(2109), 1, - aux_sym_on_error_phrase_token1, + anon_sym_COMMA, ACTIONS(2113), 1, + aux_sym_on_error_phrase_token1, + ACTIONS(2117), 1, aux_sym_sort_clause_token1, - ACTIONS(2115), 1, + ACTIONS(2119), 1, aux_sym_sort_clause_token2, - ACTIONS(2606), 1, + ACTIONS(3242), 1, anon_sym_COLON, - STATE(2454), 1, + STATE(2544), 1, aux_sym_for_phrase_repeat2, - STATE(2683), 1, + STATE(2619), 1, sym_on_error_phrase, - STATE(2783), 1, - sym_sort_clause, - STATE(2901), 1, + STATE(2889), 1, sym_on_quit_phrase, - STATE(3202), 1, + STATE(2934), 1, + sym_sort_clause, + STATE(3380), 1, sym_on_stop_phrase, - STATE(3203), 1, + STATE(3381), 1, aux_sym_for_statement_repeat1, STATE(2046), 2, sym_comment, sym_include, - [102957] = 11, + [102822] = 15, 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(3184), 1, - sym__terminator, - STATE(1953), 1, - sym_query_tuning, - STATE(2284), 1, - aux_sym_for_phrase_repeat1, - STATE(2286), 1, - sym_where_clause, + ACTIONS(2109), 1, + anon_sym_COMMA, + ACTIONS(2113), 1, + aux_sym_on_error_phrase_token1, + ACTIONS(2117), 1, + aux_sym_sort_clause_token1, + ACTIONS(2119), 1, + aux_sym_sort_clause_token2, + ACTIONS(3244), 1, + anon_sym_COLON, + STATE(2544), 1, + aux_sym_for_phrase_repeat2, + STATE(2658), 1, + sym_on_error_phrase, + STATE(2895), 1, + sym_on_quit_phrase, + STATE(2934), 1, + sym_sort_clause, + STATE(3420), 1, + aux_sym_for_statement_repeat1, + STATE(3421), 1, + sym_on_stop_phrase, STATE(2047), 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, - [102996] = 11, - ACTIONS(59), 1, + [102869] = 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(1199), 1, - aux_sym_where_clause_token1, - ACTIONS(1201), 1, - aux_sym_query_tuning_token5, - ACTIONS(3174), 1, - sym__terminator, - STATE(1953), 1, - sym_query_tuning, - STATE(2309), 1, - sym_where_clause, - STATE(2316), 1, - aux_sym_for_phrase_repeat1, + ACTIONS(3246), 1, + aux_sym_function_call_token1, STATE(2048), 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, - [103035] = 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, + [102898] = 10, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2634), 1, - aux_sym_method_definition_token1, - ACTIONS(3234), 1, - aux_sym_variable_definition_token1, - ACTIONS(3236), 1, - aux_sym_variable_definition_token2, - ACTIONS(3238), 1, - aux_sym__block_terminator_token1, - STATE(2157), 1, - aux_sym_interface_body_repeat1, - STATE(4114), 1, - sym_interface_body, + ACTIONS(3017), 1, + aux_sym_variable_tuning_token1, + STATE(2038), 1, + aux_sym_field_definition_repeat1, + STATE(2362), 1, + sym_field_option, + ACTIONS(3021), 2, + aux_sym_variable_tuning_token5, + aux_sym_property_tuning_token1, STATE(2049), 2, sym_comment, sym_include, - STATE(3008), 5, - sym_property_definition, - sym_event_definition, - sym_method_definition, - sym_dataset_definition, - sym_temp_table_definition, - [103074] = 11, + ACTIONS(3015), 3, + sym__terminator, + aux_sym_field_definition_token1, + aux_sym_index_definition_token1, + ACTIONS(3019), 3, + aux_sym_variable_tuning_token2, + aux_sym_variable_tuning_token3, + aux_sym_variable_tuning_token4, + [102935] = 10, 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(3240), 1, - sym__terminator, - STATE(1953), 1, - sym_query_tuning, - STATE(2255), 1, - sym_where_clause, - STATE(2259), 1, - aux_sym_for_phrase_repeat1, + ACTIONS(3017), 1, + aux_sym_variable_tuning_token1, + STATE(2037), 1, + aux_sym_field_definition_repeat1, + STATE(2362), 1, + sym_field_option, + ACTIONS(3021), 2, + aux_sym_variable_tuning_token5, + aux_sym_property_tuning_token1, STATE(2050), 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, - [103113] = 11, + ACTIONS(3019), 3, + aux_sym_variable_tuning_token2, + aux_sym_variable_tuning_token3, + aux_sym_variable_tuning_token4, + ACTIONS(3248), 3, + sym__terminator, + aux_sym_field_definition_token1, + aux_sym_index_definition_token1, + [102972] = 11, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2634), 1, + ACTIONS(2626), 1, aux_sym_method_definition_token1, - ACTIONS(3234), 1, + ACTIONS(3218), 1, aux_sym_variable_definition_token1, - ACTIONS(3236), 1, + ACTIONS(3220), 1, aux_sym_variable_definition_token2, - ACTIONS(3242), 1, + ACTIONS(3250), 1, aux_sym__block_terminator_token1, - STATE(2157), 1, + STATE(2228), 1, aux_sym_interface_body_repeat1, - STATE(4441), 1, + STATE(4242), 1, sym_interface_body, STATE(2051), 2, sym_comment, sym_include, - STATE(3008), 5, + STATE(3046), 5, sym_property_definition, sym_event_definition, sym_method_definition, sym_dataset_definition, sym_temp_table_definition, - [103152] = 15, + [103011] = 15, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2105), 1, - anon_sym_COMMA, ACTIONS(2109), 1, - aux_sym_on_error_phrase_token1, + anon_sym_COMMA, ACTIONS(2113), 1, + aux_sym_on_error_phrase_token1, + ACTIONS(2117), 1, aux_sym_sort_clause_token1, - ACTIONS(2115), 1, + ACTIONS(2119), 1, aux_sym_sort_clause_token2, - ACTIONS(2457), 1, + ACTIONS(2463), 1, anon_sym_COLON, - STATE(2454), 1, + STATE(2544), 1, aux_sym_for_phrase_repeat2, - STATE(2697), 1, + STATE(2772), 1, sym_on_error_phrase, - STATE(2783), 1, - sym_sort_clause, - STATE(2910), 1, + STATE(2833), 1, sym_on_quit_phrase, - STATE(3207), 1, + STATE(2934), 1, + sym_sort_clause, + STATE(3334), 1, sym_on_stop_phrase, - STATE(3208), 1, + STATE(3335), 1, aux_sym_for_statement_repeat1, STATE(2052), 2, sym_comment, sym_include, - [103199] = 15, + [103058] = 15, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2105), 1, - anon_sym_COMMA, ACTIONS(2109), 1, - aux_sym_on_error_phrase_token1, + anon_sym_COMMA, ACTIONS(2113), 1, + aux_sym_on_error_phrase_token1, + ACTIONS(2117), 1, aux_sym_sort_clause_token1, - ACTIONS(2115), 1, + ACTIONS(2119), 1, aux_sym_sort_clause_token2, - ACTIONS(3244), 1, + ACTIONS(2578), 1, anon_sym_COLON, - STATE(2454), 1, + STATE(2544), 1, aux_sym_for_phrase_repeat2, - STATE(2598), 1, + STATE(2686), 1, sym_on_error_phrase, - STATE(2783), 1, + STATE(2934), 1, sym_sort_clause, - STATE(2826), 1, + STATE(2936), 1, sym_on_quit_phrase, - STATE(3333), 1, - aux_sym_for_statement_repeat1, - STATE(3335), 1, + STATE(3388), 1, sym_on_stop_phrase, + STATE(3389), 1, + aux_sym_for_statement_repeat1, STATE(2053), 2, sym_comment, sym_include, - [103246] = 11, + [103105] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2634), 1, - aux_sym_method_definition_token1, - ACTIONS(3234), 1, - aux_sym_variable_definition_token1, - ACTIONS(3236), 1, - aux_sym_variable_definition_token2, - ACTIONS(3246), 1, - aux_sym__block_terminator_token1, - STATE(2157), 1, - aux_sym_interface_body_repeat1, - STATE(4384), 1, - sym_interface_body, STATE(2054), 2, sym_comment, sym_include, - STATE(3008), 5, - sym_property_definition, - sym_event_definition, - sym_method_definition, - sym_dataset_definition, - sym_temp_table_definition, - [103285] = 15, + ACTIONS(3252), 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, + [103132] = 15, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2105), 1, - anon_sym_COMMA, ACTIONS(2109), 1, - aux_sym_on_error_phrase_token1, + anon_sym_COMMA, ACTIONS(2113), 1, + aux_sym_on_error_phrase_token1, + ACTIONS(2117), 1, aux_sym_sort_clause_token1, - ACTIONS(2115), 1, + ACTIONS(2119), 1, aux_sym_sort_clause_token2, - ACTIONS(2443), 1, + ACTIONS(2465), 1, anon_sym_COLON, - STATE(2454), 1, + STATE(2544), 1, aux_sym_for_phrase_repeat2, - STATE(2635), 1, + STATE(2609), 1, sym_on_error_phrase, - STATE(2760), 1, + STATE(2811), 1, sym_on_quit_phrase, - STATE(2783), 1, + STATE(2934), 1, sym_sort_clause, - STATE(3483), 1, + STATE(3360), 1, aux_sym_for_statement_repeat1, - STATE(3492), 1, + STATE(3361), 1, sym_on_stop_phrase, STATE(2055), 2, sym_comment, sym_include, - [103332] = 6, + [103179] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - STATE(3498), 1, + STATE(470), 1, sym_accumulate_aggregate, STATE(2056), 2, sym_comment, sym_include, - ACTIONS(3224), 10, + ACTIONS(3222), 10, aux_sym_accumulate_aggregate_token1, aux_sym_accumulate_aggregate_token2, aux_sym_accumulate_aggregate_token3, @@ -131285,327 +131926,340 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_aggregate_token8, aux_sym_accumulate_aggregate_token9, aux_sym_accumulate_aggregate_token10, - [103361] = 15, + [103208] = 15, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2105), 1, - anon_sym_COMMA, ACTIONS(2109), 1, - aux_sym_on_error_phrase_token1, + anon_sym_COMMA, ACTIONS(2113), 1, + aux_sym_on_error_phrase_token1, + ACTIONS(2117), 1, aux_sym_sort_clause_token1, - ACTIONS(2115), 1, + ACTIONS(2119), 1, aux_sym_sort_clause_token2, - ACTIONS(2576), 1, + ACTIONS(3254), 1, anon_sym_COLON, - STATE(2454), 1, + STATE(2544), 1, aux_sym_for_phrase_repeat2, STATE(2707), 1, sym_on_error_phrase, - STATE(2783), 1, - sym_sort_clause, - STATE(2873), 1, + STATE(2868), 1, sym_on_quit_phrase, - STATE(3209), 1, + STATE(2934), 1, + sym_sort_clause, + STATE(3390), 1, sym_on_stop_phrase, - STATE(3210), 1, + STATE(3391), 1, aux_sym_for_statement_repeat1, STATE(2057), 2, sym_comment, sym_include, - [103408] = 15, + [103255] = 15, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2105), 1, - anon_sym_COMMA, ACTIONS(2109), 1, - aux_sym_on_error_phrase_token1, + anon_sym_COMMA, ACTIONS(2113), 1, + aux_sym_on_error_phrase_token1, + ACTIONS(2117), 1, aux_sym_sort_clause_token1, - ACTIONS(2115), 1, + ACTIONS(2119), 1, aux_sym_sort_clause_token2, - ACTIONS(3248), 1, + ACTIONS(2425), 1, anon_sym_COLON, - STATE(2454), 1, + STATE(2544), 1, aux_sym_for_phrase_repeat2, - STATE(2672), 1, + STATE(2664), 1, sym_on_error_phrase, - STATE(2783), 1, - sym_sort_clause, - STATE(2883), 1, + STATE(2795), 1, sym_on_quit_phrase, - STATE(3197), 1, - sym_on_stop_phrase, - STATE(3198), 1, + STATE(2934), 1, + sym_sort_clause, + STATE(3329), 1, aux_sym_for_statement_repeat1, + STATE(3330), 1, + sym_on_stop_phrase, STATE(2058), 2, sym_comment, sym_include, - [103455] = 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(3250), 1, - sym__terminator, - STATE(1953), 1, - sym_query_tuning, - STATE(2236), 1, - sym_where_clause, - STATE(2237), 1, - aux_sym_for_phrase_repeat1, - STATE(2059), 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, - [103494] = 15, + [103302] = 15, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2105), 1, - anon_sym_COMMA, ACTIONS(2109), 1, - aux_sym_on_error_phrase_token1, + anon_sym_COMMA, ACTIONS(2113), 1, + aux_sym_on_error_phrase_token1, + ACTIONS(2117), 1, aux_sym_sort_clause_token1, - ACTIONS(2115), 1, + ACTIONS(2119), 1, aux_sym_sort_clause_token2, - ACTIONS(2455), 1, + ACTIONS(2602), 1, anon_sym_COLON, - STATE(2454), 1, + STATE(2544), 1, aux_sym_for_phrase_repeat2, - STATE(2674), 1, + STATE(2693), 1, sym_on_error_phrase, - STATE(2783), 1, - sym_sort_clause, - STATE(2799), 1, + STATE(2922), 1, sym_on_quit_phrase, - STATE(3295), 1, + STATE(2934), 1, + sym_sort_clause, + STATE(3325), 1, sym_on_stop_phrase, - STATE(3296), 1, + STATE(3326), 1, aux_sym_for_statement_repeat1, - STATE(2060), 2, + STATE(2059), 2, sym_comment, sym_include, - [103541] = 9, + [103349] = 6, 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(3254), 1, - anon_sym_COMMA, - STATE(329), 1, - aux_sym_qualified_name_repeat1, - STATE(2328), 1, - aux_sym_inherits_repeat1, - STATE(2061), 2, + STATE(3430), 1, + sym_accumulate_aggregate, + STATE(2060), 2, sym_comment, sym_include, - ACTIONS(3252), 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, - [103576] = 15, + ACTIONS(3256), 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, + [103378] = 15, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2105), 1, - anon_sym_COMMA, ACTIONS(2109), 1, - aux_sym_on_error_phrase_token1, + anon_sym_COMMA, ACTIONS(2113), 1, + aux_sym_on_error_phrase_token1, + ACTIONS(2117), 1, aux_sym_sort_clause_token1, - ACTIONS(2115), 1, + ACTIONS(2119), 1, aux_sym_sort_clause_token2, - ACTIONS(2602), 1, + ACTIONS(2576), 1, anon_sym_COLON, - STATE(2454), 1, + STATE(2544), 1, aux_sym_for_phrase_repeat2, - STATE(2670), 1, + STATE(2760), 1, sym_on_error_phrase, - STATE(2783), 1, - sym_sort_clause, - STATE(2881), 1, + STATE(2838), 1, sym_on_quit_phrase, - STATE(3195), 1, + STATE(2934), 1, + sym_sort_clause, + STATE(3393), 1, sym_on_stop_phrase, - STATE(3196), 1, + STATE(3394), 1, aux_sym_for_statement_repeat1, - STATE(2062), 2, + STATE(2061), 2, sym_comment, sym_include, - [103623] = 15, + [103425] = 15, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2105), 1, - anon_sym_COMMA, ACTIONS(2109), 1, - aux_sym_on_error_phrase_token1, + anon_sym_COMMA, ACTIONS(2113), 1, + aux_sym_on_error_phrase_token1, + ACTIONS(2117), 1, aux_sym_sort_clause_token1, - ACTIONS(2115), 1, + ACTIONS(2119), 1, aux_sym_sort_clause_token2, - ACTIONS(2437), 1, + ACTIONS(2469), 1, anon_sym_COLON, - STATE(2454), 1, + STATE(2544), 1, aux_sym_for_phrase_repeat2, - STATE(2554), 1, + STATE(2665), 1, sym_on_error_phrase, - STATE(2783), 1, - sym_sort_clause, - STATE(2864), 1, + STATE(2913), 1, sym_on_quit_phrase, - STATE(3212), 1, - aux_sym_for_statement_repeat1, - STATE(3214), 1, + STATE(2934), 1, + sym_sort_clause, + STATE(3321), 1, sym_on_stop_phrase, - STATE(2063), 2, + STATE(3322), 1, + aux_sym_for_statement_repeat1, + STATE(2062), 2, sym_comment, sym_include, - [103670] = 15, + [103472] = 15, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2105), 1, - anon_sym_COMMA, ACTIONS(2109), 1, - aux_sym_on_error_phrase_token1, + anon_sym_COMMA, ACTIONS(2113), 1, + aux_sym_on_error_phrase_token1, + ACTIONS(2117), 1, aux_sym_sort_clause_token1, - ACTIONS(2115), 1, + ACTIONS(2119), 1, aux_sym_sort_clause_token2, - ACTIONS(2465), 1, + ACTIONS(2604), 1, anon_sym_COLON, - STATE(2454), 1, + STATE(2544), 1, aux_sym_for_phrase_repeat2, - STATE(2623), 1, + STATE(2660), 1, sym_on_error_phrase, - STATE(2759), 1, + STATE(2905), 1, sym_on_quit_phrase, - STATE(2783), 1, + STATE(2934), 1, sym_sort_clause, - STATE(3389), 1, - sym_on_stop_phrase, - STATE(3391), 1, + STATE(3351), 1, aux_sym_for_statement_repeat1, - STATE(2064), 2, + STATE(3352), 1, + sym_on_stop_phrase, + STATE(2063), 2, sym_comment, sym_include, - [103717] = 6, + [103519] = 11, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - STATE(3312), 1, - sym_accumulate_aggregate, - STATE(2065), 2, + ACTIONS(1199), 1, + aux_sym_where_clause_token1, + ACTIONS(1201), 1, + aux_sym_query_tuning_token5, + ACTIONS(3061), 1, + sym__terminator, + STATE(2019), 1, + sym_query_tuning, + STATE(2249), 1, + sym_where_clause, + STATE(2255), 1, + aux_sym_for_phrase_repeat1, + STATE(2064), 2, sym_comment, sym_include, - ACTIONS(3224), 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, - [103746] = 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, + [103558] = 9, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_LBRACE, + ACTIONS(3258), 1, + sym_identifier, + STATE(2753), 1, + sym_sort_column, + STATE(4393), 1, + sym_object_access, + STATE(2134), 2, + sym_qualified_name, + sym_function_call, + STATE(2065), 3, + sym_comment, + sym_include, + aux_sym_sort_clause_repeat1, + ACTIONS(3261), 5, + anon_sym_COMMA, + anon_sym_COLON, + aux_sym_on_error_phrase_token1, + aux_sym_sort_clause_token1, + aux_sym_sort_clause_token2, + [103593] = 15, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2634), 1, - aux_sym_method_definition_token1, - ACTIONS(3234), 1, - aux_sym_variable_definition_token1, - ACTIONS(3236), 1, - aux_sym_variable_definition_token2, - ACTIONS(3256), 1, - aux_sym__block_terminator_token1, - STATE(2157), 1, - aux_sym_interface_body_repeat1, - STATE(4484), 1, - sym_interface_body, + ACTIONS(2109), 1, + anon_sym_COMMA, + ACTIONS(2113), 1, + aux_sym_on_error_phrase_token1, + ACTIONS(2117), 1, + aux_sym_sort_clause_token1, + ACTIONS(2119), 1, + aux_sym_sort_clause_token2, + ACTIONS(2437), 1, + anon_sym_COLON, + STATE(2544), 1, + aux_sym_for_phrase_repeat2, + STATE(2689), 1, + sym_on_error_phrase, + STATE(2934), 1, + sym_sort_clause, + STATE(2951), 1, + sym_on_quit_phrase, + STATE(3518), 1, + aux_sym_for_statement_repeat1, + STATE(3519), 1, + sym_on_stop_phrase, STATE(2066), 2, sym_comment, sym_include, - STATE(3008), 5, - sym_property_definition, - sym_event_definition, - sym_method_definition, - sym_dataset_definition, - sym_temp_table_definition, - [103785] = 6, + [103640] = 15, 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, + ACTIONS(2109), 1, + anon_sym_COMMA, + ACTIONS(2113), 1, + aux_sym_on_error_phrase_token1, + ACTIONS(2117), 1, + aux_sym_sort_clause_token1, + ACTIONS(2119), 1, + aux_sym_sort_clause_token2, + ACTIONS(2592), 1, + anon_sym_COLON, + STATE(2544), 1, + aux_sym_for_phrase_repeat2, + STATE(2659), 1, + sym_on_error_phrase, + STATE(2899), 1, + sym_on_quit_phrase, + STATE(2934), 1, + sym_sort_clause, + STATE(3243), 1, + sym_on_stop_phrase, + STATE(3244), 1, + aux_sym_for_statement_repeat1, STATE(2067), 2, sym_comment, sym_include, - ACTIONS(3258), 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, - [103814] = 11, + [103687] = 11, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, @@ -131616,14 +132270,14 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_where_clause_token1, ACTIONS(1201), 1, aux_sym_query_tuning_token5, - ACTIONS(3260), 1, + ACTIONS(3263), 1, sym__terminator, - STATE(1953), 1, + STATE(2019), 1, sym_query_tuning, - STATE(2276), 1, - sym_where_clause, - STATE(2277), 1, + STATE(2355), 1, aux_sym_for_phrase_repeat1, + STATE(2360), 1, + sym_where_clause, STATE(2068), 2, sym_comment, sym_include, @@ -131633,675 +132287,738 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_query_tuning_token2, aux_sym_query_tuning_token3, aux_sym_query_tuning_token4, - [103853] = 6, + [103726] = 10, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(3262), 1, - aux_sym_function_call_token1, + ACTIONS(3265), 1, + sym_identifier, + STATE(2065), 1, + aux_sym_sort_clause_repeat1, + STATE(2753), 1, + sym_sort_column, + STATE(4393), 1, + sym_object_access, STATE(2069), 2, sym_comment, sym_include, - ACTIONS(131), 10, - sym_identifier, + STATE(2134), 2, + sym_qualified_name, + sym_function_call, + ACTIONS(3267), 5, 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, - [103882] = 11, + [103763] = 15, 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(3129), 1, - sym__terminator, - STATE(1953), 1, - sym_query_tuning, - STATE(2314), 1, - sym_where_clause, - STATE(2318), 1, - aux_sym_for_phrase_repeat1, + ACTIONS(2109), 1, + anon_sym_COMMA, + ACTIONS(2113), 1, + aux_sym_on_error_phrase_token1, + ACTIONS(2117), 1, + aux_sym_sort_clause_token1, + ACTIONS(2119), 1, + aux_sym_sort_clause_token2, + ACTIONS(2572), 1, + anon_sym_COLON, + STATE(2544), 1, + aux_sym_for_phrase_repeat2, + STATE(2595), 1, + sym_on_error_phrase, + STATE(2934), 1, + sym_sort_clause, + STATE(2976), 1, + sym_on_quit_phrase, + STATE(3317), 1, + sym_on_stop_phrase, + STATE(3318), 1, + aux_sym_for_statement_repeat1, STATE(2070), 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, - [103921] = 15, + [103810] = 15, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2105), 1, - anon_sym_COMMA, ACTIONS(2109), 1, - aux_sym_on_error_phrase_token1, + anon_sym_COMMA, ACTIONS(2113), 1, + aux_sym_on_error_phrase_token1, + ACTIONS(2117), 1, aux_sym_sort_clause_token1, - ACTIONS(2115), 1, + ACTIONS(2119), 1, aux_sym_sort_clause_token2, - ACTIONS(3264), 1, + ACTIONS(2598), 1, anon_sym_COLON, - STATE(2454), 1, + STATE(2544), 1, aux_sym_for_phrase_repeat2, - STATE(2665), 1, + STATE(2670), 1, sym_on_error_phrase, - STATE(2783), 1, + STATE(2934), 1, sym_sort_clause, - STATE(2872), 1, + STATE(2980), 1, sym_on_quit_phrase, - STATE(3190), 1, - sym_on_stop_phrase, - STATE(3191), 1, + STATE(3424), 1, aux_sym_for_statement_repeat1, + STATE(3428), 1, + sym_on_stop_phrase, STATE(2071), 2, sym_comment, sym_include, - [103968] = 11, + [103857] = 5, 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(3127), 1, - sym__terminator, - STATE(1953), 1, - sym_query_tuning, - STATE(2246), 1, - sym_where_clause, - STATE(2250), 1, - aux_sym_for_phrase_repeat1, STATE(2072), 2, sym_comment, sym_include, - ACTIONS(1195), 5, + ACTIONS(3269), 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, - [104007] = 6, + aux_sym_query_tuning_token5, + aux_sym_of_token1, + aux_sym__using_and_token1, + [103884] = 9, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - STATE(3236), 1, - sym_accumulate_aggregate, + ACTIONS(679), 1, + sym__namedot, + ACTIONS(3240), 1, + anon_sym_COMMA, + STATE(336), 1, + aux_sym_qualified_name_repeat1, + STATE(2365), 1, + aux_sym_inherits_repeat1, STATE(2073), 2, sym_comment, sym_include, - ACTIONS(3224), 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, - [104036] = 10, + 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, + [103919] = 15, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2972), 1, - aux_sym_variable_tuning_token1, - STATE(2086), 1, - aux_sym_field_definition_repeat1, - STATE(2266), 1, - sym_field_option, - ACTIONS(2976), 2, - aux_sym_variable_tuning_token5, - aux_sym_property_tuning_token1, + ACTIONS(2109), 1, + anon_sym_COMMA, + ACTIONS(2113), 1, + aux_sym_on_error_phrase_token1, + ACTIONS(2117), 1, + aux_sym_sort_clause_token1, + ACTIONS(2119), 1, + aux_sym_sort_clause_token2, + ACTIONS(2600), 1, + anon_sym_COLON, + STATE(2544), 1, + aux_sym_for_phrase_repeat2, + STATE(2762), 1, + sym_on_error_phrase, + STATE(2835), 1, + sym_on_quit_phrase, + STATE(2934), 1, + sym_sort_clause, + STATE(3396), 1, + sym_on_stop_phrase, + STATE(3397), 1, + aux_sym_for_statement_repeat1, STATE(2074), 2, sym_comment, sym_include, - ACTIONS(2974), 3, - aux_sym_variable_tuning_token2, - aux_sym_variable_tuning_token3, - aux_sym_variable_tuning_token4, - ACTIONS(3266), 3, - sym__terminator, - aux_sym_field_definition_token1, - aux_sym_index_definition_token1, - [104073] = 10, - ACTIONS(59), 1, - anon_sym_SLASH_SLASH, - ACTIONS(61), 1, - anon_sym_SLASH_STAR, - ACTIONS(65), 1, - anon_sym_LBRACE, - ACTIONS(2972), 1, - aux_sym_variable_tuning_token1, - STATE(2086), 1, - aux_sym_field_definition_repeat1, - STATE(2266), 1, - sym_field_option, - ACTIONS(2976), 2, - aux_sym_variable_tuning_token5, - aux_sym_property_tuning_token1, - STATE(2075), 2, - sym_comment, - sym_include, - ACTIONS(2974), 3, - aux_sym_variable_tuning_token2, - aux_sym_variable_tuning_token3, - aux_sym_variable_tuning_token4, - ACTIONS(3268), 3, - sym__terminator, - aux_sym_field_definition_token1, - aux_sym_index_definition_token1, - [104110] = 9, + [103966] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(3270), 1, - sym_identifier, - STATE(2642), 1, - sym_sort_column, - STATE(4291), 1, - sym_object_access, - STATE(2093), 2, - sym_qualified_name, - sym_function_call, - STATE(2076), 3, + ACTIONS(100), 1, + sym__namedot, + STATE(2075), 2, sym_comment, sym_include, - aux_sym_sort_clause_repeat1, - ACTIONS(3273), 5, + 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, - [104145] = 9, + [103995] = 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(3254), 1, + ACTIONS(2626), 1, + aux_sym_method_definition_token1, + ACTIONS(3218), 1, + aux_sym_variable_definition_token1, + ACTIONS(3220), 1, + aux_sym_variable_definition_token2, + ACTIONS(3273), 1, + aux_sym__block_terminator_token1, + STATE(2228), 1, + aux_sym_interface_body_repeat1, + STATE(4468), 1, + sym_interface_body, + STATE(2076), 2, + sym_comment, + sym_include, + STATE(3046), 5, + sym_property_definition, + sym_event_definition, + sym_method_definition, + sym_dataset_definition, + sym_temp_table_definition, + [104034] = 15, + ACTIONS(59), 1, + anon_sym_SLASH_SLASH, + ACTIONS(61), 1, + anon_sym_SLASH_STAR, + ACTIONS(65), 1, + anon_sym_LBRACE, + ACTIONS(2109), 1, anon_sym_COMMA, - STATE(329), 1, - aux_sym_qualified_name_repeat1, - STATE(2330), 1, - aux_sym_inherits_repeat1, + ACTIONS(2113), 1, + aux_sym_on_error_phrase_token1, + ACTIONS(2117), 1, + aux_sym_sort_clause_token1, + ACTIONS(2119), 1, + aux_sym_sort_clause_token2, + ACTIONS(2608), 1, + anon_sym_COLON, + STATE(2544), 1, + aux_sym_for_phrase_repeat2, + STATE(2600), 1, + sym_on_error_phrase, + STATE(2794), 1, + sym_on_quit_phrase, + STATE(2934), 1, + sym_sort_clause, + STATE(3314), 1, + sym_on_stop_phrase, + STATE(3315), 1, + aux_sym_for_statement_repeat1, STATE(2077), 2, sym_comment, sym_include, - ACTIONS(3275), 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, - [104180] = 11, + [104081] = 15, 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(3277), 1, - sym__terminator, - STATE(1953), 1, - sym_query_tuning, - STATE(2320), 1, - sym_where_clause, - STATE(2324), 1, - aux_sym_for_phrase_repeat1, + ACTIONS(2109), 1, + anon_sym_COMMA, + ACTIONS(2113), 1, + aux_sym_on_error_phrase_token1, + ACTIONS(2117), 1, + aux_sym_sort_clause_token1, + ACTIONS(2119), 1, + aux_sym_sort_clause_token2, + ACTIONS(2453), 1, + anon_sym_COLON, + STATE(2544), 1, + aux_sym_for_phrase_repeat2, + STATE(2622), 1, + sym_on_error_phrase, + STATE(2924), 1, + sym_on_quit_phrase, + STATE(2934), 1, + sym_sort_clause, + STATE(3400), 1, + sym_on_stop_phrase, + STATE(3401), 1, + aux_sym_for_statement_repeat1, STATE(2078), 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, - [104219] = 15, + [104128] = 15, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2105), 1, - anon_sym_COMMA, ACTIONS(2109), 1, - aux_sym_on_error_phrase_token1, + anon_sym_COMMA, ACTIONS(2113), 1, + aux_sym_on_error_phrase_token1, + ACTIONS(2117), 1, aux_sym_sort_clause_token1, - ACTIONS(2115), 1, + ACTIONS(2119), 1, aux_sym_sort_clause_token2, - ACTIONS(2447), 1, + ACTIONS(2596), 1, anon_sym_COLON, - STATE(2454), 1, + STATE(2544), 1, aux_sym_for_phrase_repeat2, - STATE(2621), 1, + STATE(2667), 1, sym_on_error_phrase, - STATE(2783), 1, + STATE(2934), 1, sym_sort_clause, - STATE(2858), 1, + STATE(2967), 1, sym_on_quit_phrase, - STATE(3215), 1, + STATE(3246), 1, sym_on_stop_phrase, - STATE(3216), 1, + STATE(3247), 1, aux_sym_for_statement_repeat1, STATE(2079), 2, sym_comment, sym_include, - [104266] = 6, + [104175] = 11, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - STATE(4054), 1, - sym_accumulate_aggregate, + ACTIONS(2626), 1, + aux_sym_method_definition_token1, + ACTIONS(3218), 1, + aux_sym_variable_definition_token1, + ACTIONS(3220), 1, + aux_sym_variable_definition_token2, + ACTIONS(3275), 1, + aux_sym__block_terminator_token1, + STATE(2228), 1, + aux_sym_interface_body_repeat1, + STATE(4618), 1, + sym_interface_body, STATE(2080), 2, sym_comment, sym_include, - ACTIONS(3224), 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, - [104295] = 15, + STATE(3046), 5, + sym_property_definition, + sym_event_definition, + sym_method_definition, + sym_dataset_definition, + sym_temp_table_definition, + [104214] = 15, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2105), 1, - anon_sym_COMMA, ACTIONS(2109), 1, - aux_sym_on_error_phrase_token1, + anon_sym_COMMA, ACTIONS(2113), 1, + aux_sym_on_error_phrase_token1, + ACTIONS(2117), 1, aux_sym_sort_clause_token1, - ACTIONS(2115), 1, + ACTIONS(2119), 1, aux_sym_sort_clause_token2, - ACTIONS(2586), 1, + ACTIONS(3277), 1, anon_sym_COLON, - STATE(2454), 1, + STATE(2544), 1, aux_sym_for_phrase_repeat2, - STATE(2604), 1, + STATE(2606), 1, sym_on_error_phrase, - STATE(2763), 1, + STATE(2808), 1, sym_on_quit_phrase, - STATE(2783), 1, + STATE(2934), 1, sym_sort_clause, - STATE(3385), 1, + STATE(3312), 1, sym_on_stop_phrase, - STATE(3387), 1, + STATE(3313), 1, aux_sym_for_statement_repeat1, STATE(2081), 2, sym_comment, sym_include, - [104342] = 15, + [104261] = 15, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2105), 1, - anon_sym_COMMA, ACTIONS(2109), 1, - aux_sym_on_error_phrase_token1, + anon_sym_COMMA, ACTIONS(2113), 1, + aux_sym_on_error_phrase_token1, + ACTIONS(2117), 1, aux_sym_sort_clause_token1, - ACTIONS(2115), 1, + ACTIONS(2119), 1, aux_sym_sort_clause_token2, - ACTIONS(2592), 1, + ACTIONS(2610), 1, anon_sym_COLON, - STATE(2454), 1, + STATE(2544), 1, aux_sym_for_phrase_repeat2, - STATE(2564), 1, + STATE(2608), 1, sym_on_error_phrase, - STATE(2733), 1, + STATE(2810), 1, sym_on_quit_phrase, - STATE(2783), 1, + STATE(2934), 1, sym_sort_clause, - STATE(3255), 1, - aux_sym_for_statement_repeat1, - STATE(3256), 1, + STATE(3310), 1, sym_on_stop_phrase, + STATE(3311), 1, + aux_sym_for_statement_repeat1, STATE(2082), 2, sym_comment, sym_include, - [104389] = 11, + [104308] = 15, 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(3110), 1, - sym__terminator, - STATE(1953), 1, - sym_query_tuning, - STATE(2300), 1, - aux_sym_for_phrase_repeat1, - STATE(2306), 1, - sym_where_clause, + ACTIONS(2109), 1, + anon_sym_COMMA, + ACTIONS(2113), 1, + aux_sym_on_error_phrase_token1, + ACTIONS(2117), 1, + aux_sym_sort_clause_token1, + ACTIONS(2119), 1, + aux_sym_sort_clause_token2, + ACTIONS(3279), 1, + anon_sym_COLON, + STATE(2544), 1, + aux_sym_for_phrase_repeat2, + STATE(2612), 1, + sym_on_error_phrase, + STATE(2814), 1, + sym_on_quit_phrase, + STATE(2934), 1, + sym_sort_clause, + STATE(3306), 1, + sym_on_stop_phrase, + STATE(3307), 1, + aux_sym_for_statement_repeat1, STATE(2083), 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, - [104428] = 15, + [104355] = 15, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2105), 1, - anon_sym_COMMA, ACTIONS(2109), 1, - aux_sym_on_error_phrase_token1, + anon_sym_COMMA, ACTIONS(2113), 1, + aux_sym_on_error_phrase_token1, + ACTIONS(2117), 1, aux_sym_sort_clause_token1, - ACTIONS(2115), 1, + ACTIONS(2119), 1, aux_sym_sort_clause_token2, - ACTIONS(2451), 1, + ACTIONS(2574), 1, anon_sym_COLON, - STATE(2454), 1, + STATE(2544), 1, aux_sym_for_phrase_repeat2, - STATE(2634), 1, + STATE(2654), 1, sym_on_error_phrase, - STATE(2783), 1, - sym_sort_clause, - STATE(2817), 1, + STATE(2865), 1, sym_on_quit_phrase, - STATE(3226), 1, - aux_sym_for_statement_repeat1, - STATE(3227), 1, + STATE(2934), 1, + sym_sort_clause, + STATE(3402), 1, sym_on_stop_phrase, + STATE(3403), 1, + aux_sym_for_statement_repeat1, STATE(2084), 2, sym_comment, sym_include, - [104475] = 15, + [104402] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2105), 1, - anon_sym_COMMA, - ACTIONS(2109), 1, - aux_sym_on_error_phrase_token1, - ACTIONS(2113), 1, - aux_sym_sort_clause_token1, - ACTIONS(2115), 1, - aux_sym_sort_clause_token2, - ACTIONS(2415), 1, - anon_sym_COLON, - STATE(2454), 1, - aux_sym_for_phrase_repeat2, - STATE(2689), 1, - sym_on_error_phrase, - STATE(2783), 1, - sym_sort_clause, - STATE(2913), 1, - sym_on_quit_phrase, - STATE(3293), 1, - aux_sym_for_statement_repeat1, - STATE(3294), 1, - sym_on_stop_phrase, STATE(2085), 2, sym_comment, sym_include, - [104522] = 9, + ACTIONS(3281), 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, + [104429] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(3281), 1, - aux_sym_variable_tuning_token1, - STATE(2266), 1, - sym_field_option, - ACTIONS(3287), 2, - aux_sym_variable_tuning_token5, - aux_sym_property_tuning_token1, - ACTIONS(3279), 3, - sym__terminator, - aux_sym_field_definition_token1, - aux_sym_index_definition_token1, - ACTIONS(3284), 3, - aux_sym_variable_tuning_token2, - aux_sym_variable_tuning_token3, - aux_sym_variable_tuning_token4, - STATE(2086), 3, + STATE(455), 1, + sym_accumulate_aggregate, + STATE(2086), 2, sym_comment, sym_include, - aux_sym_field_definition_repeat1, - [104557] = 15, + ACTIONS(3222), 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, + [104458] = 15, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2105), 1, - anon_sym_COMMA, ACTIONS(2109), 1, - aux_sym_on_error_phrase_token1, + anon_sym_COMMA, ACTIONS(2113), 1, + aux_sym_on_error_phrase_token1, + ACTIONS(2117), 1, aux_sym_sort_clause_token1, - ACTIONS(2115), 1, + ACTIONS(2119), 1, aux_sym_sort_clause_token2, - ACTIONS(2584), 1, + ACTIONS(2461), 1, anon_sym_COLON, - STATE(2454), 1, + STATE(2544), 1, aux_sym_for_phrase_repeat2, - STATE(2662), 1, + STATE(2713), 1, sym_on_error_phrase, - STATE(2739), 1, + STATE(2920), 1, sym_on_quit_phrase, - STATE(2783), 1, + STATE(2934), 1, sym_sort_clause, - STATE(3129), 1, + STATE(3505), 1, sym_on_stop_phrase, - STATE(3130), 1, + STATE(3506), 1, aux_sym_for_statement_repeat1, STATE(2087), 2, sym_comment, sym_include, - [104604] = 11, + [104505] = 11, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2634), 1, - aux_sym_method_definition_token1, - ACTIONS(3234), 1, - aux_sym_variable_definition_token1, - ACTIONS(3236), 1, - aux_sym_variable_definition_token2, - ACTIONS(3290), 1, - aux_sym__block_terminator_token1, - STATE(2157), 1, - aux_sym_interface_body_repeat1, - STATE(4175), 1, - sym_interface_body, + ACTIONS(1199), 1, + aux_sym_where_clause_token1, + ACTIONS(1201), 1, + aux_sym_query_tuning_token5, + ACTIONS(3198), 1, + sym__terminator, + STATE(2019), 1, + sym_query_tuning, + STATE(2305), 1, + aux_sym_for_phrase_repeat1, + STATE(2306), 1, + sym_where_clause, STATE(2088), 2, sym_comment, sym_include, - STATE(3008), 5, - sym_property_definition, - sym_event_definition, - sym_method_definition, - sym_dataset_definition, - sym_temp_table_definition, - [104643] = 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, + [104544] = 5, + ACTIONS(59), 1, + anon_sym_SLASH_SLASH, + ACTIONS(61), 1, + anon_sym_SLASH_STAR, + ACTIONS(65), 1, + anon_sym_LBRACE, + STATE(2089), 2, + sym_comment, + sym_include, + 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, + 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, + [104571] = 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(3285), 1, + sym__terminator, + STATE(2019), 1, + sym_query_tuning, + STATE(2303), 1, + aux_sym_for_phrase_repeat1, + STATE(2304), 1, + sym_where_clause, + STATE(2090), 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, + [104610] = 15, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2105), 1, - anon_sym_COMMA, ACTIONS(2109), 1, - aux_sym_on_error_phrase_token1, + anon_sym_COMMA, ACTIONS(2113), 1, + aux_sym_on_error_phrase_token1, + ACTIONS(2117), 1, aux_sym_sort_clause_token1, - ACTIONS(2115), 1, + ACTIONS(2119), 1, aux_sym_sort_clause_token2, - ACTIONS(2425), 1, + ACTIONS(2431), 1, anon_sym_COLON, - STATE(2454), 1, + STATE(2544), 1, aux_sym_for_phrase_repeat2, - STATE(2655), 1, + STATE(2750), 1, sym_on_error_phrase, - STATE(2783), 1, - sym_sort_clause, - STATE(2812), 1, + STATE(2862), 1, sym_on_quit_phrase, - STATE(3229), 1, - aux_sym_for_statement_repeat1, - STATE(3232), 1, + STATE(2934), 1, + sym_sort_clause, + STATE(3340), 1, sym_on_stop_phrase, - STATE(2089), 2, - sym_comment, - sym_include, - [104690] = 10, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - ACTIONS(7), 1, - anon_sym_LBRACE, - ACTIONS(3292), 1, - sym_identifier, - STATE(2076), 1, - aux_sym_sort_clause_repeat1, - STATE(2642), 1, - sym_sort_column, - STATE(4291), 1, - sym_object_access, - STATE(2090), 2, + STATE(3342), 1, + aux_sym_for_statement_repeat1, + STATE(2091), 2, sym_comment, sym_include, - STATE(2093), 2, - sym_qualified_name, - sym_function_call, - ACTIONS(3294), 5, - anon_sym_COMMA, - anon_sym_COLON, - aux_sym_on_error_phrase_token1, - aux_sym_sort_clause_token1, - aux_sym_sort_clause_token2, - [104727] = 15, + [104657] = 15, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2105), 1, - anon_sym_COMMA, ACTIONS(2109), 1, - aux_sym_on_error_phrase_token1, + anon_sym_COMMA, ACTIONS(2113), 1, + aux_sym_on_error_phrase_token1, + ACTIONS(2117), 1, aux_sym_sort_clause_token1, - ACTIONS(2115), 1, + ACTIONS(2119), 1, aux_sym_sort_clause_token2, - ACTIONS(2568), 1, + ACTIONS(2435), 1, anon_sym_COLON, - STATE(2454), 1, + STATE(2544), 1, aux_sym_for_phrase_repeat2, - STATE(2624), 1, + STATE(2601), 1, sym_on_error_phrase, - STATE(2764), 1, + STATE(2798), 1, sym_on_quit_phrase, - STATE(2783), 1, + STATE(2934), 1, sym_sort_clause, - STATE(3288), 1, - sym_on_stop_phrase, - STATE(3289), 1, + STATE(3408), 1, aux_sym_for_statement_repeat1, - STATE(2091), 2, + STATE(3409), 1, + sym_on_stop_phrase, + STATE(2092), 2, sym_comment, sym_include, - [104774] = 6, + [104704] = 9, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - STATE(3159), 1, + ACTIONS(3289), 1, + aux_sym_variable_tuning_token1, + STATE(2362), 1, + sym_field_option, + ACTIONS(3295), 2, + aux_sym_variable_tuning_token5, + aux_sym_property_tuning_token1, + ACTIONS(3287), 3, + sym__terminator, + aux_sym_field_definition_token1, + aux_sym_index_definition_token1, + ACTIONS(3292), 3, + aux_sym_variable_tuning_token2, + aux_sym_variable_tuning_token3, + aux_sym_variable_tuning_token4, + STATE(2093), 3, + sym_comment, + sym_include, + aux_sym_field_definition_repeat1, + [104739] = 6, + ACTIONS(59), 1, + anon_sym_SLASH_SLASH, + ACTIONS(61), 1, + anon_sym_SLASH_STAR, + ACTIONS(65), 1, + anon_sym_LBRACE, + STATE(4113), 1, sym_accumulate_aggregate, - STATE(2092), 2, + STATE(2094), 2, sym_comment, sym_include, - ACTIONS(3224), 10, + ACTIONS(3256), 10, aux_sym_accumulate_aggregate_token1, aux_sym_accumulate_aggregate_token2, aux_sym_accumulate_aggregate_token3, @@ -132312,123 +133029,159 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_aggregate_token8, aux_sym_accumulate_aggregate_token9, aux_sym_accumulate_aggregate_token10, - [104803] = 7, - ACTIONS(3), 1, + [104768] = 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, - STATE(2597), 1, - sym_sort_order, - STATE(2093), 2, + ACTIONS(1199), 1, + aux_sym_where_clause_token1, + ACTIONS(1201), 1, + aux_sym_query_tuning_token5, + ACTIONS(3298), 1, + sym__terminator, + STATE(2019), 1, + sym_query_tuning, + STATE(2320), 1, + aux_sym_for_phrase_repeat1, + STATE(2322), 1, + sym_where_clause, + STATE(2095), 2, sym_comment, sym_include, - ACTIONS(2746), 4, - aux_sym_sort_order_token1, - aux_sym_sort_order_token2, - aux_sym_sort_order_token3, - aux_sym_sort_order_token4, - ACTIONS(2742), 6, - sym_identifier, + ACTIONS(1195), 5, + aux_sym_function_call_token1, + aux_sym_query_tuning_token1, + aux_sym_query_tuning_token2, + aux_sym_query_tuning_token3, + aux_sym_query_tuning_token4, + [104807] = 15, + ACTIONS(59), 1, + anon_sym_SLASH_SLASH, + ACTIONS(61), 1, + anon_sym_SLASH_STAR, + ACTIONS(65), 1, + anon_sym_LBRACE, + ACTIONS(2109), 1, anon_sym_COMMA, - anon_sym_COLON, + ACTIONS(2113), 1, aux_sym_on_error_phrase_token1, + ACTIONS(2117), 1, aux_sym_sort_clause_token1, + ACTIONS(2119), 1, aux_sym_sort_clause_token2, - [104834] = 15, + ACTIONS(2417), 1, + anon_sym_COLON, + STATE(2544), 1, + aux_sym_for_phrase_repeat2, + STATE(2738), 1, + sym_on_error_phrase, + STATE(2876), 1, + sym_on_quit_phrase, + STATE(2934), 1, + sym_sort_clause, + STATE(3284), 1, + sym_on_stop_phrase, + STATE(3285), 1, + aux_sym_for_statement_repeat1, + STATE(2096), 2, + sym_comment, + sym_include, + [104854] = 15, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2105), 1, - anon_sym_COMMA, ACTIONS(2109), 1, - aux_sym_on_error_phrase_token1, + anon_sym_COMMA, ACTIONS(2113), 1, + aux_sym_on_error_phrase_token1, + ACTIONS(2117), 1, aux_sym_sort_clause_token1, - ACTIONS(2115), 1, + ACTIONS(2119), 1, aux_sym_sort_clause_token2, - ACTIONS(2578), 1, + ACTIONS(2423), 1, anon_sym_COLON, - STATE(2454), 1, + STATE(2544), 1, aux_sym_for_phrase_repeat2, - STATE(2586), 1, + STATE(2728), 1, sym_on_error_phrase, - STATE(2781), 1, + STATE(2909), 1, sym_on_quit_phrase, - STATE(2783), 1, + STATE(2934), 1, sym_sort_clause, - STATE(3372), 1, - sym_on_stop_phrase, - STATE(3377), 1, + STATE(3498), 1, aux_sym_for_statement_repeat1, - STATE(2094), 2, + STATE(3501), 1, + sym_on_stop_phrase, + STATE(2097), 2, sym_comment, sym_include, - [104881] = 15, + [104901] = 15, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2105), 1, - anon_sym_COMMA, ACTIONS(2109), 1, - aux_sym_on_error_phrase_token1, + anon_sym_COMMA, ACTIONS(2113), 1, + aux_sym_on_error_phrase_token1, + ACTIONS(2117), 1, aux_sym_sort_clause_token1, - ACTIONS(2115), 1, + ACTIONS(2119), 1, aux_sym_sort_clause_token2, - ACTIONS(2582), 1, + ACTIONS(2457), 1, anon_sym_COLON, - STATE(2454), 1, + STATE(2544), 1, aux_sym_for_phrase_repeat2, - STATE(2650), 1, + STATE(2678), 1, sym_on_error_phrase, - STATE(2751), 1, - sym_on_quit_phrase, - STATE(2783), 1, + STATE(2934), 1, sym_sort_clause, - STATE(3131), 1, + STATE(2960), 1, + sym_on_quit_phrase, + STATE(3249), 1, sym_on_stop_phrase, - STATE(3132), 1, + STATE(3251), 1, aux_sym_for_statement_repeat1, - STATE(2095), 2, + STATE(2098), 2, sym_comment, sym_include, - [104928] = 11, + [104948] = 11, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2634), 1, - aux_sym_method_definition_token1, - ACTIONS(3234), 1, - aux_sym_variable_definition_token1, - ACTIONS(3236), 1, - aux_sym_variable_definition_token2, - ACTIONS(3296), 1, - aux_sym__block_terminator_token1, - STATE(2157), 1, - aux_sym_interface_body_repeat1, - STATE(4348), 1, - sym_interface_body, - STATE(2096), 2, + ACTIONS(1199), 1, + aux_sym_where_clause_token1, + ACTIONS(1201), 1, + aux_sym_query_tuning_token5, + ACTIONS(3084), 1, + sym__terminator, + STATE(2019), 1, + sym_query_tuning, + STATE(2239), 1, + aux_sym_for_phrase_repeat1, + STATE(2302), 1, + sym_where_clause, + STATE(2099), 2, sym_comment, sym_include, - STATE(3008), 5, - sym_property_definition, - sym_event_definition, - sym_method_definition, - sym_dataset_definition, - sym_temp_table_definition, - [104967] = 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, + [104987] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, @@ -132437,10 +133190,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, STATE(418), 1, sym_accumulate_aggregate, - STATE(2097), 2, + STATE(2100), 2, sym_comment, sym_include, - ACTIONS(3258), 10, + ACTIONS(3222), 10, aux_sym_accumulate_aggregate_token1, aux_sym_accumulate_aggregate_token2, aux_sym_accumulate_aggregate_token3, @@ -132451,103 +133204,177 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_aggregate_token8, aux_sym_accumulate_aggregate_token9, aux_sym_accumulate_aggregate_token10, - [104996] = 15, + [105016] = 15, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2105), 1, - anon_sym_COMMA, ACTIONS(2109), 1, - aux_sym_on_error_phrase_token1, + anon_sym_COMMA, ACTIONS(2113), 1, + aux_sym_on_error_phrase_token1, + ACTIONS(2117), 1, aux_sym_sort_clause_token1, - ACTIONS(2115), 1, + ACTIONS(2119), 1, aux_sym_sort_clause_token2, ACTIONS(2459), 1, anon_sym_COLON, - STATE(2454), 1, + STATE(2544), 1, aux_sym_for_phrase_repeat2, - STATE(2620), 1, + STATE(2625), 1, sym_on_error_phrase, - STATE(2761), 1, + STATE(2843), 1, sym_on_quit_phrase, - STATE(2783), 1, + STATE(2934), 1, sym_sort_clause, - STATE(3134), 1, + STATE(3412), 1, sym_on_stop_phrase, - STATE(3135), 1, + STATE(3413), 1, aux_sym_for_statement_repeat1, - STATE(2098), 2, + STATE(2101), 2, sym_comment, sym_include, - [105043] = 15, + [105063] = 6, + ACTIONS(59), 1, + anon_sym_SLASH_SLASH, + ACTIONS(61), 1, + anon_sym_SLASH_STAR, + ACTIONS(65), 1, + anon_sym_LBRACE, + STATE(3346), 1, + sym_accumulate_aggregate, + STATE(2102), 2, + sym_comment, + sym_include, + ACTIONS(3256), 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, + [105092] = 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(3300), 1, + sym__terminator, + STATE(2019), 1, + sym_query_tuning, + STATE(2319), 1, + aux_sym_for_phrase_repeat1, + STATE(2321), 1, + sym_where_clause, + STATE(2103), 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, + [105131] = 15, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2105), 1, - anon_sym_COMMA, ACTIONS(2109), 1, - aux_sym_on_error_phrase_token1, + anon_sym_COMMA, ACTIONS(2113), 1, + aux_sym_on_error_phrase_token1, + ACTIONS(2117), 1, aux_sym_sort_clause_token1, - ACTIONS(2115), 1, + ACTIONS(2119), 1, aux_sym_sort_clause_token2, - ACTIONS(2445), 1, + ACTIONS(3302), 1, anon_sym_COLON, - STATE(2454), 1, + STATE(2544), 1, aux_sym_for_phrase_repeat2, - STATE(2592), 1, + STATE(2748), 1, sym_on_error_phrase, - STATE(2765), 1, + STATE(2867), 1, sym_on_quit_phrase, - STATE(2783), 1, + STATE(2934), 1, sym_sort_clause, - STATE(3286), 1, + STATE(3443), 1, aux_sym_for_statement_repeat1, - STATE(3287), 1, + STATE(3444), 1, sym_on_stop_phrase, - STATE(2099), 2, + STATE(2104), 2, sym_comment, sym_include, - [105090] = 15, + [105178] = 15, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2105), 1, - anon_sym_COMMA, ACTIONS(2109), 1, - aux_sym_on_error_phrase_token1, + anon_sym_COMMA, ACTIONS(2113), 1, + aux_sym_on_error_phrase_token1, + ACTIONS(2117), 1, aux_sym_sort_clause_token1, - ACTIONS(2115), 1, + ACTIONS(2119), 1, aux_sym_sort_clause_token2, - ACTIONS(2463), 1, + ACTIONS(2584), 1, anon_sym_COLON, - STATE(2454), 1, + STATE(2544), 1, aux_sym_for_phrase_repeat2, - STATE(2676), 1, + STATE(2740), 1, sym_on_error_phrase, - STATE(2762), 1, + STATE(2891), 1, sym_on_quit_phrase, - STATE(2783), 1, + STATE(2934), 1, sym_sort_clause, - STATE(3284), 1, + STATE(3493), 1, sym_on_stop_phrase, - STATE(3285), 1, + STATE(3494), 1, aux_sym_for_statement_repeat1, - STATE(2100), 2, + STATE(2105), 2, + sym_comment, + sym_include, + [105225] = 6, + ACTIONS(59), 1, + anon_sym_SLASH_SLASH, + ACTIONS(61), 1, + anon_sym_SLASH_STAR, + ACTIONS(65), 1, + anon_sym_LBRACE, + STATE(3531), 1, + sym_accumulate_aggregate, + STATE(2106), 2, sym_comment, sym_include, - [105137] = 11, + ACTIONS(3256), 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, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, @@ -132558,15 +133385,43 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_where_clause_token1, ACTIONS(1201), 1, aux_sym_query_tuning_token5, - ACTIONS(3074), 1, + ACTIONS(3194), 1, sym__terminator, - STATE(1953), 1, + STATE(2019), 1, sym_query_tuning, - STATE(2231), 1, + STATE(2271), 1, + aux_sym_for_phrase_repeat1, + STATE(2273), 1, sym_where_clause, - STATE(2261), 1, + STATE(2107), 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, + [105293] = 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(3098), 1, + sym__terminator, + STATE(2019), 1, + sym_query_tuning, + STATE(2336), 1, aux_sym_for_phrase_repeat1, - STATE(2101), 2, + STATE(2368), 1, + sym_where_clause, + STATE(2108), 2, sym_comment, sym_include, ACTIONS(1195), 5, @@ -132575,19 +133430,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_query_tuning_token2, aux_sym_query_tuning_token3, aux_sym_query_tuning_token4, - [105176] = 6, + [105332] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - STATE(427), 1, + STATE(449), 1, sym_accumulate_aggregate, - STATE(2102), 2, + STATE(2109), 2, sym_comment, sym_include, - ACTIONS(3258), 10, + ACTIONS(3222), 10, aux_sym_accumulate_aggregate_token1, aux_sym_accumulate_aggregate_token2, aux_sym_accumulate_aggregate_token3, @@ -132598,7 +133453,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_aggregate_token8, aux_sym_accumulate_aggregate_token9, aux_sym_accumulate_aggregate_token10, - [105205] = 11, + [105361] = 11, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, @@ -132609,15 +133464,15 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_where_clause_token1, ACTIONS(1201), 1, aux_sym_query_tuning_token5, - ACTIONS(3298), 1, + ACTIONS(3304), 1, sym__terminator, - STATE(1953), 1, + STATE(2019), 1, sym_query_tuning, - STATE(2303), 1, + STATE(2288), 1, sym_where_clause, - STATE(2304), 1, + STATE(2297), 1, aux_sym_for_phrase_repeat1, - STATE(2103), 2, + STATE(2110), 2, sym_comment, sym_include, ACTIONS(1195), 5, @@ -132626,29 +133481,35 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_query_tuning_token2, aux_sym_query_tuning_token3, aux_sym_query_tuning_token4, - [105244] = 5, + [105400] = 11, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - STATE(2104), 2, + ACTIONS(2626), 1, + aux_sym_method_definition_token1, + ACTIONS(3218), 1, + aux_sym_variable_definition_token1, + ACTIONS(3220), 1, + aux_sym_variable_definition_token2, + ACTIONS(3306), 1, + aux_sym__block_terminator_token1, + STATE(2228), 1, + aux_sym_interface_body_repeat1, + STATE(4308), 1, + sym_interface_body, + STATE(2111), 2, sym_comment, sym_include, - ACTIONS(3300), 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, - [105271] = 11, + STATE(3046), 5, + sym_property_definition, + sym_event_definition, + sym_method_definition, + sym_dataset_definition, + sym_temp_table_definition, + [105439] = 11, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, @@ -132659,15 +133520,15 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_where_clause_token1, ACTIONS(1201), 1, aux_sym_query_tuning_token5, - ACTIONS(3070), 1, + ACTIONS(3109), 1, sym__terminator, - STATE(1953), 1, + STATE(2019), 1, sym_query_tuning, - STATE(2292), 1, - sym_where_clause, - STATE(2295), 1, + STATE(2263), 1, aux_sym_for_phrase_repeat1, - STATE(2105), 2, + STATE(2264), 1, + sym_where_clause, + STATE(2112), 2, sym_comment, sym_include, ACTIONS(1195), 5, @@ -132676,105 +133537,79 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_query_tuning_token2, aux_sym_query_tuning_token3, aux_sym_query_tuning_token4, - [105310] = 15, - ACTIONS(59), 1, - anon_sym_SLASH_SLASH, - ACTIONS(61), 1, - anon_sym_SLASH_STAR, - ACTIONS(65), 1, - anon_sym_LBRACE, - ACTIONS(2105), 1, - anon_sym_COMMA, - ACTIONS(2109), 1, - aux_sym_on_error_phrase_token1, - ACTIONS(2113), 1, - aux_sym_sort_clause_token1, - ACTIONS(2115), 1, - aux_sym_sort_clause_token2, - ACTIONS(3302), 1, - anon_sym_COLON, - STATE(2454), 1, - aux_sym_for_phrase_repeat2, - STATE(2573), 1, - sym_on_error_phrase, - STATE(2783), 1, - sym_sort_clause, - STATE(2786), 1, - sym_on_quit_phrase, - STATE(3360), 1, - sym_on_stop_phrase, - STATE(3361), 1, - aux_sym_for_statement_repeat1, - STATE(2106), 2, - sym_comment, - sym_include, - [105357] = 5, + [105478] = 11, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - STATE(2107), 2, + ACTIONS(2626), 1, + aux_sym_method_definition_token1, + ACTIONS(3218), 1, + aux_sym_variable_definition_token1, + ACTIONS(3220), 1, + aux_sym_variable_definition_token2, + ACTIONS(3308), 1, + aux_sym__block_terminator_token1, + STATE(2228), 1, + aux_sym_interface_body_repeat1, + STATE(4367), 1, + sym_interface_body, + STATE(2113), 2, sym_comment, sym_include, - ACTIONS(3304), 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, - [105384] = 15, + STATE(3046), 5, + sym_property_definition, + sym_event_definition, + sym_method_definition, + sym_dataset_definition, + sym_temp_table_definition, + [105517] = 15, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2105), 1, - anon_sym_COMMA, ACTIONS(2109), 1, - aux_sym_on_error_phrase_token1, + anon_sym_COMMA, ACTIONS(2113), 1, + aux_sym_on_error_phrase_token1, + ACTIONS(2117), 1, aux_sym_sort_clause_token1, - ACTIONS(2115), 1, + ACTIONS(2119), 1, aux_sym_sort_clause_token2, - ACTIONS(2574), 1, + ACTIONS(2433), 1, anon_sym_COLON, - STATE(2454), 1, + STATE(2544), 1, aux_sym_for_phrase_repeat2, - STATE(2560), 1, + STATE(2715), 1, sym_on_error_phrase, - STATE(2783), 1, - sym_sort_clause, - STATE(2793), 1, + STATE(2928), 1, sym_on_quit_phrase, - STATE(3357), 1, - sym_on_stop_phrase, - STATE(3358), 1, + STATE(2934), 1, + sym_sort_clause, + STATE(3257), 1, aux_sym_for_statement_repeat1, - STATE(2108), 2, + STATE(3258), 1, + sym_on_stop_phrase, + STATE(2114), 2, sym_comment, sym_include, - [105431] = 6, + [105564] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - STATE(514), 1, + STATE(390), 1, sym_accumulate_aggregate, - STATE(2109), 2, + STATE(2115), 2, sym_comment, sym_include, - ACTIONS(3258), 10, + ACTIONS(3222), 10, aux_sym_accumulate_aggregate_token1, aux_sym_accumulate_aggregate_token2, aux_sym_accumulate_aggregate_token3, @@ -132785,143 +133620,171 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_aggregate_token8, aux_sym_accumulate_aggregate_token9, aux_sym_accumulate_aggregate_token10, - [105460] = 11, - ACTIONS(59), 1, - anon_sym_SLASH_SLASH, - ACTIONS(61), 1, - anon_sym_SLASH_STAR, - ACTIONS(65), 1, - anon_sym_LBRACE, - ACTIONS(2634), 1, - aux_sym_method_definition_token1, - ACTIONS(3234), 1, - aux_sym_variable_definition_token1, - ACTIONS(3236), 1, - aux_sym_variable_definition_token2, - ACTIONS(3306), 1, - aux_sym__block_terminator_token1, - STATE(2157), 1, - aux_sym_interface_body_repeat1, - STATE(4145), 1, - sym_interface_body, - STATE(2110), 2, - sym_comment, - sym_include, - STATE(3008), 5, - sym_property_definition, - sym_event_definition, - sym_method_definition, - sym_dataset_definition, - sym_temp_table_definition, - [105499] = 15, + [105593] = 15, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2105), 1, - anon_sym_COMMA, ACTIONS(2109), 1, - aux_sym_on_error_phrase_token1, + anon_sym_COMMA, ACTIONS(2113), 1, + aux_sym_on_error_phrase_token1, + ACTIONS(2117), 1, aux_sym_sort_clause_token1, - ACTIONS(2115), 1, + ACTIONS(2119), 1, aux_sym_sort_clause_token2, - ACTIONS(2421), 1, + ACTIONS(2451), 1, anon_sym_COLON, - STATE(2454), 1, + STATE(2544), 1, aux_sym_for_phrase_repeat2, - STATE(2657), 1, + STATE(2743), 1, sym_on_error_phrase, - STATE(2783), 1, - sym_sort_clause, - STATE(2849), 1, + STATE(2877), 1, sym_on_quit_phrase, - STATE(3171), 1, + STATE(2934), 1, + sym_sort_clause, + STATE(3488), 1, sym_on_stop_phrase, - STATE(3173), 1, + STATE(3489), 1, aux_sym_for_statement_repeat1, - STATE(2111), 2, + STATE(2116), 2, sym_comment, sym_include, - [105546] = 15, + [105640] = 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(3310), 1, + sym__terminator, + STATE(2019), 1, + sym_query_tuning, + STATE(2307), 1, + aux_sym_for_phrase_repeat1, + STATE(2313), 1, + sym_where_clause, + STATE(2117), 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, + [105679] = 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(3107), 1, + sym__terminator, + STATE(2019), 1, + sym_query_tuning, + STATE(2314), 1, + aux_sym_for_phrase_repeat1, + STATE(2315), 1, + sym_where_clause, + STATE(2118), 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, + [105718] = 15, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2105), 1, - anon_sym_COMMA, ACTIONS(2109), 1, - aux_sym_on_error_phrase_token1, + anon_sym_COMMA, ACTIONS(2113), 1, + aux_sym_on_error_phrase_token1, + ACTIONS(2117), 1, aux_sym_sort_clause_token1, - ACTIONS(2115), 1, + ACTIONS(2119), 1, aux_sym_sort_clause_token2, - ACTIONS(2580), 1, + ACTIONS(2586), 1, anon_sym_COLON, - STATE(2454), 1, + STATE(2544), 1, aux_sym_for_phrase_repeat2, - STATE(2682), 1, + STATE(2628), 1, sym_on_error_phrase, - STATE(2783), 1, - sym_sort_clause, - STATE(2911), 1, + STATE(2842), 1, sym_on_quit_phrase, - STATE(3317), 1, - aux_sym_for_statement_repeat1, - STATE(3319), 1, + STATE(2934), 1, + sym_sort_clause, + STATE(3238), 1, sym_on_stop_phrase, - STATE(2112), 2, + STATE(3239), 1, + aux_sym_for_statement_repeat1, + STATE(2119), 2, sym_comment, sym_include, - [105593] = 15, + [105765] = 15, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2105), 1, - anon_sym_COMMA, ACTIONS(2109), 1, - aux_sym_on_error_phrase_token1, + anon_sym_COMMA, ACTIONS(2113), 1, + aux_sym_on_error_phrase_token1, + ACTIONS(2117), 1, aux_sym_sort_clause_token1, - ACTIONS(2115), 1, + ACTIONS(2119), 1, aux_sym_sort_clause_token2, - ACTIONS(2594), 1, + ACTIONS(2443), 1, anon_sym_COLON, - STATE(2454), 1, + STATE(2544), 1, aux_sym_for_phrase_repeat2, - STATE(2614), 1, + STATE(2666), 1, sym_on_error_phrase, - STATE(2769), 1, + STATE(2807), 1, sym_on_quit_phrase, - STATE(2783), 1, + STATE(2934), 1, sym_sort_clause, - STATE(3137), 1, - sym_on_stop_phrase, - STATE(3138), 1, + STATE(3423), 1, aux_sym_for_statement_repeat1, - STATE(2113), 2, + STATE(3426), 1, + sym_on_stop_phrase, + STATE(2120), 2, sym_comment, sym_include, - [105640] = 6, + [105812] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - STATE(415), 1, + STATE(3272), 1, sym_accumulate_aggregate, - STATE(2114), 2, + STATE(2121), 2, sym_comment, sym_include, - ACTIONS(3258), 10, + ACTIONS(3256), 10, aux_sym_accumulate_aggregate_token1, aux_sym_accumulate_aggregate_token2, aux_sym_accumulate_aggregate_token3, @@ -132932,240 +133795,271 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_aggregate_token8, aux_sym_accumulate_aggregate_token9, aux_sym_accumulate_aggregate_token10, - [105669] = 15, + [105841] = 11, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2105), 1, - anon_sym_COMMA, - ACTIONS(2109), 1, - aux_sym_on_error_phrase_token1, - ACTIONS(2113), 1, - aux_sym_sort_clause_token1, - ACTIONS(2115), 1, - aux_sym_sort_clause_token2, - ACTIONS(2431), 1, - anon_sym_COLON, - STATE(2454), 1, - aux_sym_for_phrase_repeat2, - STATE(2579), 1, - sym_on_error_phrase, - STATE(2783), 1, - sym_sort_clause, - STATE(2785), 1, - sym_on_quit_phrase, - STATE(3142), 1, - aux_sym_for_statement_repeat1, - STATE(3143), 1, - sym_on_stop_phrase, - STATE(2115), 2, + ACTIONS(1199), 1, + aux_sym_where_clause_token1, + ACTIONS(1201), 1, + aux_sym_query_tuning_token5, + ACTIONS(3312), 1, + sym__terminator, + STATE(2019), 1, + sym_query_tuning, + STATE(2237), 1, + aux_sym_for_phrase_repeat1, + STATE(2256), 1, + sym_where_clause, + STATE(2122), 2, sym_comment, sym_include, - [105716] = 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, + [105880] = 11, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2634), 1, + ACTIONS(2626), 1, aux_sym_method_definition_token1, - ACTIONS(3234), 1, + ACTIONS(3218), 1, aux_sym_variable_definition_token1, - ACTIONS(3236), 1, + ACTIONS(3220), 1, aux_sym_variable_definition_token2, - ACTIONS(3308), 1, + ACTIONS(3314), 1, aux_sym__block_terminator_token1, - STATE(2157), 1, + STATE(2228), 1, aux_sym_interface_body_repeat1, - STATE(4260), 1, + STATE(4421), 1, sym_interface_body, - STATE(2116), 2, + STATE(2123), 2, sym_comment, sym_include, - STATE(3008), 5, + STATE(3046), 5, sym_property_definition, sym_event_definition, sym_method_definition, sym_dataset_definition, sym_temp_table_definition, - [105755] = 15, + [105919] = 15, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2105), 1, - anon_sym_COMMA, ACTIONS(2109), 1, - aux_sym_on_error_phrase_token1, + anon_sym_COMMA, ACTIONS(2113), 1, + aux_sym_on_error_phrase_token1, + ACTIONS(2117), 1, aux_sym_sort_clause_token1, - ACTIONS(2115), 1, + ACTIONS(2119), 1, aux_sym_sort_clause_token2, - ACTIONS(2572), 1, + ACTIONS(2580), 1, anon_sym_COLON, - STATE(2454), 1, + STATE(2544), 1, aux_sym_for_phrase_repeat2, - STATE(2571), 1, + STATE(2751), 1, sym_on_error_phrase, - STATE(2740), 1, + STATE(2863), 1, sym_on_quit_phrase, - STATE(2783), 1, + STATE(2934), 1, sym_sort_clause, - STATE(3281), 1, + STATE(3486), 1, sym_on_stop_phrase, - STATE(3282), 1, + STATE(3487), 1, aux_sym_for_statement_repeat1, - STATE(2117), 2, + STATE(2124), 2, sym_comment, sym_include, - [105802] = 15, + [105966] = 15, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2105), 1, - anon_sym_COMMA, ACTIONS(2109), 1, - aux_sym_on_error_phrase_token1, + anon_sym_COMMA, ACTIONS(2113), 1, + aux_sym_on_error_phrase_token1, + ACTIONS(2117), 1, aux_sym_sort_clause_token1, - ACTIONS(2115), 1, + ACTIONS(2119), 1, aux_sym_sort_clause_token2, - ACTIONS(2461), 1, + ACTIONS(2449), 1, anon_sym_COLON, - STATE(2454), 1, + STATE(2544), 1, aux_sym_for_phrase_repeat2, - STATE(2567), 1, + STATE(2737), 1, sym_on_error_phrase, - STATE(2783), 1, - sym_sort_clause, - STATE(2790), 1, + STATE(2894), 1, sym_on_quit_phrase, - STATE(3145), 1, - sym_on_stop_phrase, - STATE(3146), 1, + STATE(2934), 1, + sym_sort_clause, + STATE(3324), 1, aux_sym_for_statement_repeat1, - STATE(2118), 2, + STATE(3327), 1, + sym_on_stop_phrase, + STATE(2125), 2, sym_comment, sym_include, - [105849] = 10, - ACTIONS(3), 1, + [106013] = 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(3292), 1, - sym_identifier, - STATE(2076), 1, - aux_sym_sort_clause_repeat1, - STATE(2642), 1, - sym_sort_column, - STATE(4291), 1, - sym_object_access, - STATE(2093), 2, - sym_qualified_name, - sym_function_call, - STATE(2119), 2, + ACTIONS(2626), 1, + aux_sym_method_definition_token1, + ACTIONS(3218), 1, + aux_sym_variable_definition_token1, + ACTIONS(3220), 1, + aux_sym_variable_definition_token2, + ACTIONS(3316), 1, + aux_sym__block_terminator_token1, + STATE(2228), 1, + aux_sym_interface_body_repeat1, + STATE(4365), 1, + sym_interface_body, + STATE(2126), 2, sym_comment, sym_include, - ACTIONS(3310), 5, - anon_sym_COMMA, - anon_sym_COLON, - aux_sym_on_error_phrase_token1, - aux_sym_sort_clause_token1, - aux_sym_sort_clause_token2, - [105886] = 10, + STATE(3046), 5, + sym_property_definition, + sym_event_definition, + sym_method_definition, + sym_dataset_definition, + sym_temp_table_definition, + [106052] = 11, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2972), 1, - aux_sym_variable_tuning_token1, - STATE(2075), 1, - aux_sym_field_definition_repeat1, - STATE(2266), 1, - sym_field_option, - ACTIONS(2976), 2, - aux_sym_variable_tuning_token5, - aux_sym_property_tuning_token1, - STATE(2120), 2, + ACTIONS(1199), 1, + aux_sym_where_clause_token1, + ACTIONS(1201), 1, + aux_sym_query_tuning_token5, + ACTIONS(3117), 1, + sym__terminator, + STATE(2019), 1, + sym_query_tuning, + STATE(2246), 1, + aux_sym_for_phrase_repeat1, + STATE(2247), 1, + sym_where_clause, + STATE(2127), 2, sym_comment, sym_include, - ACTIONS(2974), 3, - aux_sym_variable_tuning_token2, - aux_sym_variable_tuning_token3, - aux_sym_variable_tuning_token4, - ACTIONS(3312), 3, + ACTIONS(1195), 5, + aux_sym_function_call_token1, + aux_sym_query_tuning_token1, + aux_sym_query_tuning_token2, + aux_sym_query_tuning_token3, + aux_sym_query_tuning_token4, + [106091] = 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(3178), 1, sym__terminator, - aux_sym_field_definition_token1, - aux_sym_index_definition_token1, - [105923] = 15, + STATE(2019), 1, + sym_query_tuning, + STATE(2260), 1, + aux_sym_for_phrase_repeat1, + STATE(2261), 1, + sym_where_clause, + STATE(2128), 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, + [106130] = 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(3318), 1, + sym__terminator, + STATE(2019), 1, + sym_query_tuning, + STATE(2242), 1, + aux_sym_for_phrase_repeat1, + STATE(2245), 1, + sym_where_clause, + STATE(2129), 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, + [106169] = 15, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2105), 1, - anon_sym_COMMA, ACTIONS(2109), 1, - aux_sym_on_error_phrase_token1, + anon_sym_COMMA, ACTIONS(2113), 1, + aux_sym_on_error_phrase_token1, + ACTIONS(2117), 1, aux_sym_sort_clause_token1, - ACTIONS(2115), 1, + ACTIONS(2119), 1, aux_sym_sort_clause_token2, - ACTIONS(2598), 1, + ACTIONS(2582), 1, anon_sym_COLON, - STATE(2454), 1, + STATE(2544), 1, aux_sym_for_phrase_repeat2, - STATE(2690), 1, + STATE(2756), 1, sym_on_error_phrase, - STATE(2783), 1, + STATE(2934), 1, sym_sort_clause, - STATE(2818), 1, + STATE(2971), 1, sym_on_quit_phrase, - STATE(3279), 1, + STATE(3484), 1, sym_on_stop_phrase, - STATE(3280), 1, + STATE(3485), 1, aux_sym_for_statement_repeat1, - STATE(2121), 2, - sym_comment, - sym_include, - [105970] = 6, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - ACTIONS(7), 1, - anon_sym_LBRACE, - ACTIONS(104), 1, - sym__namedot, - STATE(2122), 2, + STATE(2130), 2, sym_comment, sym_include, - ACTIONS(102), 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, - [105999] = 11, + [106216] = 11, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, @@ -133176,15 +134070,15 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_where_clause_token1, ACTIONS(1201), 1, aux_sym_query_tuning_token5, - ACTIONS(3314), 1, + ACTIONS(3320), 1, sym__terminator, - STATE(1953), 1, + STATE(2019), 1, sym_query_tuning, - STATE(2226), 1, - sym_where_clause, - STATE(2227), 1, + STATE(2344), 1, aux_sym_for_phrase_repeat1, - STATE(2123), 2, + STATE(2346), 1, + sym_where_clause, + STATE(2131), 2, sym_comment, sym_include, ACTIONS(1195), 5, @@ -133193,78 +134087,134 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_query_tuning_token2, aux_sym_query_tuning_token3, aux_sym_query_tuning_token4, - [106038] = 15, + [106255] = 15, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2105), 1, - anon_sym_COMMA, ACTIONS(2109), 1, - aux_sym_on_error_phrase_token1, + anon_sym_COMMA, ACTIONS(2113), 1, + aux_sym_on_error_phrase_token1, + ACTIONS(2117), 1, aux_sym_sort_clause_token1, - ACTIONS(2115), 1, + ACTIONS(2119), 1, aux_sym_sort_clause_token2, - ACTIONS(2393), 1, + ACTIONS(2467), 1, anon_sym_COLON, - STATE(2454), 1, + STATE(2544), 1, aux_sym_for_phrase_repeat2, - STATE(2572), 1, + STATE(2726), 1, sym_on_error_phrase, - STATE(2783), 1, - sym_sort_clause, - STATE(2805), 1, + STATE(2916), 1, sym_on_quit_phrase, - STATE(3153), 1, - aux_sym_for_statement_repeat1, - STATE(3154), 1, + STATE(2934), 1, + sym_sort_clause, + STATE(3261), 1, sym_on_stop_phrase, - STATE(2124), 2, + STATE(3262), 1, + aux_sym_for_statement_repeat1, + STATE(2132), 2, + sym_comment, + sym_include, + [106302] = 10, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_LBRACE, + ACTIONS(3265), 1, + sym_identifier, + STATE(2065), 1, + aux_sym_sort_clause_repeat1, + STATE(2753), 1, + sym_sort_column, + STATE(4393), 1, + sym_object_access, + STATE(2133), 2, + sym_comment, + sym_include, + STATE(2134), 2, + sym_qualified_name, + sym_function_call, + ACTIONS(3322), 5, + anon_sym_COMMA, + anon_sym_COLON, + aux_sym_on_error_phrase_token1, + aux_sym_sort_clause_token1, + aux_sym_sort_clause_token2, + [106339] = 7, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_LBRACE, + STATE(2708), 1, + sym_sort_order, + STATE(2134), 2, sym_comment, sym_include, - [106085] = 10, + ACTIONS(2723), 4, + aux_sym_sort_order_token1, + aux_sym_sort_order_token2, + aux_sym_sort_order_token3, + aux_sym_sort_order_token4, + ACTIONS(2719), 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, + [106370] = 15, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2972), 1, - aux_sym_variable_tuning_token1, - STATE(2074), 1, - aux_sym_field_definition_repeat1, - STATE(2266), 1, - sym_field_option, - ACTIONS(2976), 2, - aux_sym_variable_tuning_token5, - aux_sym_property_tuning_token1, - STATE(2125), 2, + ACTIONS(2109), 1, + anon_sym_COMMA, + ACTIONS(2113), 1, + aux_sym_on_error_phrase_token1, + ACTIONS(2117), 1, + aux_sym_sort_clause_token1, + ACTIONS(2119), 1, + aux_sym_sort_clause_token2, + ACTIONS(3324), 1, + anon_sym_COLON, + STATE(2544), 1, + aux_sym_for_phrase_repeat2, + STATE(2616), 1, + sym_on_error_phrase, + STATE(2828), 1, + sym_on_quit_phrase, + STATE(2934), 1, + sym_sort_clause, + STATE(3234), 1, + sym_on_stop_phrase, + STATE(3235), 1, + aux_sym_for_statement_repeat1, + STATE(2135), 2, sym_comment, sym_include, - ACTIONS(2970), 3, - sym__terminator, - aux_sym_field_definition_token1, - aux_sym_index_definition_token1, - ACTIONS(2974), 3, - aux_sym_variable_tuning_token2, - aux_sym_variable_tuning_token3, - aux_sym_variable_tuning_token4, - [106122] = 6, + [106417] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - STATE(515), 1, + STATE(3277), 1, sym_accumulate_aggregate, - STATE(2126), 2, + STATE(2136), 2, sym_comment, sym_include, - ACTIONS(3258), 10, + ACTIONS(3256), 10, aux_sym_accumulate_aggregate_token1, aux_sym_accumulate_aggregate_token2, aux_sym_accumulate_aggregate_token3, @@ -133275,70 +134225,83 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_aggregate_token8, aux_sym_accumulate_aggregate_token9, aux_sym_accumulate_aggregate_token10, - [106151] = 11, + [106446] = 15, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2634), 1, - aux_sym_method_definition_token1, - ACTIONS(3234), 1, - aux_sym_variable_definition_token1, - ACTIONS(3236), 1, - aux_sym_variable_definition_token2, - ACTIONS(3316), 1, - aux_sym__block_terminator_token1, - STATE(2157), 1, - aux_sym_interface_body_repeat1, - STATE(4378), 1, - sym_interface_body, - STATE(2127), 2, + ACTIONS(2109), 1, + anon_sym_COMMA, + ACTIONS(2113), 1, + aux_sym_on_error_phrase_token1, + ACTIONS(2117), 1, + aux_sym_sort_clause_token1, + ACTIONS(2119), 1, + aux_sym_sort_clause_token2, + ACTIONS(3326), 1, + anon_sym_COLON, + STATE(2544), 1, + aux_sym_for_phrase_repeat2, + STATE(2769), 1, + sym_on_error_phrase, + STATE(2824), 1, + sym_on_quit_phrase, + STATE(2934), 1, + sym_sort_clause, + STATE(3480), 1, + sym_on_stop_phrase, + STATE(3481), 1, + aux_sym_for_statement_repeat1, + STATE(2137), 2, sym_comment, sym_include, - STATE(3008), 5, - sym_property_definition, - sym_event_definition, - sym_method_definition, - sym_dataset_definition, - sym_temp_table_definition, - [106190] = 6, + [106493] = 15, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - STATE(466), 1, - sym_accumulate_aggregate, - STATE(2128), 2, + ACTIONS(2109), 1, + anon_sym_COMMA, + ACTIONS(2113), 1, + aux_sym_on_error_phrase_token1, + ACTIONS(2117), 1, + aux_sym_sort_clause_token1, + ACTIONS(2119), 1, + aux_sym_sort_clause_token2, + ACTIONS(2606), 1, + anon_sym_COLON, + STATE(2544), 1, + aux_sym_for_phrase_repeat2, + STATE(2692), 1, + sym_on_error_phrase, + STATE(2934), 1, + sym_sort_clause, + STATE(2944), 1, + sym_on_quit_phrase, + STATE(3253), 1, + sym_on_stop_phrase, + STATE(3254), 1, + aux_sym_for_statement_repeat1, + STATE(2138), 2, sym_comment, sym_include, - ACTIONS(3258), 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, - [106219] = 6, + [106540] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - STATE(428), 1, + STATE(500), 1, sym_accumulate_aggregate, - STATE(2129), 2, + STATE(2139), 2, sym_comment, sym_include, - ACTIONS(3258), 10, + ACTIONS(3222), 10, aux_sym_accumulate_aggregate_token1, aux_sym_accumulate_aggregate_token2, aux_sym_accumulate_aggregate_token3, @@ -133349,131 +134312,131 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_accumulate_aggregate_token8, aux_sym_accumulate_aggregate_token9, aux_sym_accumulate_aggregate_token10, - [106248] = 11, + [106569] = 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(3027), 1, - sym__terminator, - STATE(1953), 1, - sym_query_tuning, - STATE(2252), 1, - aux_sym_for_phrase_repeat1, - STATE(2256), 1, - sym_where_clause, - STATE(2130), 2, + ACTIONS(2626), 1, + aux_sym_method_definition_token1, + ACTIONS(3218), 1, + aux_sym_variable_definition_token1, + ACTIONS(3220), 1, + aux_sym_variable_definition_token2, + ACTIONS(3328), 1, + aux_sym__block_terminator_token1, + STATE(2228), 1, + aux_sym_interface_body_repeat1, + STATE(4452), 1, + sym_interface_body, + STATE(2140), 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, - [106287] = 15, + STATE(3046), 5, + sym_property_definition, + sym_event_definition, + sym_method_definition, + sym_dataset_definition, + sym_temp_table_definition, + [106608] = 15, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2105), 1, - anon_sym_COMMA, ACTIONS(2109), 1, - aux_sym_on_error_phrase_token1, + anon_sym_COMMA, ACTIONS(2113), 1, + aux_sym_on_error_phrase_token1, + ACTIONS(2117), 1, aux_sym_sort_clause_token1, - ACTIONS(2115), 1, + ACTIONS(2119), 1, aux_sym_sort_clause_token2, - ACTIONS(3318), 1, + ACTIONS(2439), 1, anon_sym_COLON, - STATE(2454), 1, + STATE(2544), 1, aux_sym_for_phrase_repeat2, - STATE(2582), 1, + STATE(2746), 1, sym_on_error_phrase, - STATE(2732), 1, + STATE(2869), 1, sym_on_quit_phrase, - STATE(2783), 1, + STATE(2934), 1, sym_sort_clause, - STATE(3267), 1, - sym_on_stop_phrase, - STATE(3268), 1, + STATE(3273), 1, aux_sym_for_statement_repeat1, - STATE(2131), 2, + STATE(3274), 1, + sym_on_stop_phrase, + STATE(2141), 2, sym_comment, sym_include, - [106334] = 15, + [106655] = 15, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2105), 1, - anon_sym_COMMA, ACTIONS(2109), 1, - aux_sym_on_error_phrase_token1, + anon_sym_COMMA, ACTIONS(2113), 1, + aux_sym_on_error_phrase_token1, + ACTIONS(2117), 1, aux_sym_sort_clause_token1, - ACTIONS(2115), 1, + ACTIONS(2119), 1, aux_sym_sort_clause_token2, - ACTIONS(2590), 1, + ACTIONS(2594), 1, anon_sym_COLON, - STATE(2454), 1, + STATE(2544), 1, aux_sym_for_phrase_repeat2, - STATE(2632), 1, + STATE(2770), 1, sym_on_error_phrase, - STATE(2729), 1, + STATE(2821), 1, sym_on_quit_phrase, - STATE(2783), 1, + STATE(2934), 1, sym_sort_clause, - STATE(3273), 1, + STATE(3477), 1, sym_on_stop_phrase, - STATE(3274), 1, + STATE(3478), 1, aux_sym_for_statement_repeat1, - STATE(2132), 2, + STATE(2142), 2, sym_comment, sym_include, - [106381] = 15, + [106702] = 15, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2105), 1, - anon_sym_COMMA, ACTIONS(2109), 1, - aux_sym_on_error_phrase_token1, + anon_sym_COMMA, ACTIONS(2113), 1, + aux_sym_on_error_phrase_token1, + ACTIONS(2117), 1, aux_sym_sort_clause_token1, - ACTIONS(2115), 1, + ACTIONS(2119), 1, aux_sym_sort_clause_token2, - ACTIONS(3320), 1, + ACTIONS(3330), 1, anon_sym_COLON, - STATE(2454), 1, + STATE(2544), 1, aux_sym_for_phrase_repeat2, - STATE(2661), 1, + STATE(2775), 1, sym_on_error_phrase, - STATE(2723), 1, + STATE(2809), 1, sym_on_quit_phrase, - STATE(2783), 1, + STATE(2934), 1, sym_sort_clause, - STATE(3275), 1, + STATE(3470), 1, sym_on_stop_phrase, - STATE(3277), 1, + STATE(3471), 1, aux_sym_for_statement_repeat1, - STATE(2133), 2, + STATE(2143), 2, sym_comment, sym_include, - [106428] = 11, + [106749] = 11, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, @@ -133484,15 +134447,15 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_where_clause_token1, ACTIONS(1201), 1, aux_sym_query_tuning_token5, - ACTIONS(3322), 1, + ACTIONS(3168), 1, sym__terminator, - STATE(1953), 1, + STATE(2019), 1, sym_query_tuning, - STATE(2234), 1, - aux_sym_for_phrase_repeat1, - STATE(2242), 1, + STATE(2323), 1, sym_where_clause, - STATE(2134), 2, + STATE(2324), 1, + aux_sym_for_phrase_repeat1, + STATE(2144), 2, sym_comment, sym_include, ACTIONS(1195), 5, @@ -133501,102 +134464,151 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_query_tuning_token2, aux_sym_query_tuning_token3, aux_sym_query_tuning_token4, - [106467] = 15, + [106788] = 7, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2105), 1, + ACTIONS(679), 1, + sym__namedot, + STATE(336), 1, + aux_sym_qualified_name_repeat1, + STATE(2145), 2, + sym_comment, + sym_include, + ACTIONS(3332), 8, + aux_sym_serialization_tuning_token1, anon_sym_COMMA, - ACTIONS(2109), 1, + 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, + [106818] = 12, + ACTIONS(59), 1, + anon_sym_SLASH_SLASH, + ACTIONS(61), 1, + anon_sym_SLASH_STAR, + ACTIONS(65), 1, + anon_sym_LBRACE, + ACTIONS(3031), 1, aux_sym_on_error_phrase_token1, - ACTIONS(2113), 1, - aux_sym_sort_clause_token1, - ACTIONS(2115), 1, - aux_sym_sort_clause_token2, - ACTIONS(3324), 1, + ACTIONS(3033), 1, + aux_sym_stop_after_phrase_token1, + ACTIONS(3035), 1, + aux_sym_do_tuning_token1, + ACTIONS(3334), 1, anon_sym_COLON, - STATE(2454), 1, - aux_sym_for_phrase_repeat2, - STATE(2671), 1, + STATE(2215), 1, + aux_sym_do_block_repeat1, + STATE(2886), 1, + sym_stop_after_phrase, + STATE(3074), 1, + sym_do_tuning, + STATE(2146), 2, + sym_comment, + sym_include, + STATE(4303), 3, sym_on_error_phrase, - STATE(2783), 1, - sym_sort_clause, - STATE(2802), 1, + sym_on_stop_phrase, sym_on_quit_phrase, - STATE(3347), 1, + [106858] = 14, + ACTIONS(59), 1, + anon_sym_SLASH_SLASH, + ACTIONS(61), 1, + anon_sym_SLASH_STAR, + ACTIONS(65), 1, + anon_sym_LBRACE, + ACTIONS(3029), 1, + aux_sym_while_phrase_token1, + ACTIONS(3336), 1, + anon_sym_COLON, + ACTIONS(3338), 1, + aux_sym_repeat_tuning_token1, + ACTIONS(3340), 1, + aux_sym_on_error_phrase_token1, + STATE(2412), 1, + sym_while_phrase, + STATE(2500), 1, + sym_on_error_phrase, + STATE(2611), 1, + sym_on_quit_phrase, + STATE(3125), 1, + aux_sym_repeat_statement_repeat1, + STATE(3132), 1, sym_on_stop_phrase, - STATE(3348), 1, - aux_sym_for_statement_repeat1, - STATE(2135), 2, + STATE(3672), 1, + sym_repeat_tuning, + STATE(2147), 2, sym_comment, sym_include, - [106514] = 12, + [106902] = 12, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(3003), 1, + ACTIONS(3031), 1, aux_sym_on_error_phrase_token1, - ACTIONS(3005), 1, + ACTIONS(3033), 1, aux_sym_stop_after_phrase_token1, - ACTIONS(3007), 1, + ACTIONS(3035), 1, aux_sym_do_tuning_token1, - ACTIONS(3326), 1, + ACTIONS(3039), 1, anon_sym_COLON, - STATE(2608), 1, + STATE(2604), 1, aux_sym_do_block_repeat1, - STATE(2779), 1, + STATE(2853), 1, sym_stop_after_phrase, - STATE(2944), 1, + STATE(3074), 1, sym_do_tuning, - STATE(2136), 2, + STATE(2148), 2, sym_comment, sym_include, - STATE(4137), 3, + STATE(4197), 3, sym_on_error_phrase, sym_on_stop_phrase, sym_on_quit_phrase, - [106554] = 12, + [106942] = 12, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(3003), 1, + ACTIONS(3031), 1, aux_sym_on_error_phrase_token1, - ACTIONS(3005), 1, + ACTIONS(3033), 1, aux_sym_stop_after_phrase_token1, - ACTIONS(3007), 1, + ACTIONS(3035), 1, aux_sym_do_tuning_token1, - ACTIONS(3328), 1, + ACTIONS(3342), 1, anon_sym_COLON, - STATE(2608), 1, + STATE(2604), 1, aux_sym_do_block_repeat1, - STATE(2835), 1, + STATE(2856), 1, sym_stop_after_phrase, - STATE(2944), 1, + STATE(3074), 1, sym_do_tuning, - STATE(2137), 2, + STATE(2149), 2, sym_comment, sym_include, - STATE(4178), 3, + STATE(4245), 3, sym_on_error_phrase, sym_on_stop_phrase, sym_on_quit_phrase, - [106594] = 14, + [106982] = 14, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(261), 1, + ACTIONS(791), 1, aux_sym_do_block_token1, ACTIONS(1295), 1, sym_identifier, @@ -133604,73 +134616,89 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_input_expression_token2, ACTIONS(1299), 1, anon_sym_COMMA, - ACTIONS(1303), 1, + ACTIONS(3344), 1, aux_sym_widget_field_token1, - STATE(1142), 1, + STATE(852), 1, sym_do_block, - STATE(2470), 1, + STATE(2432), 1, aux_sym_on_statement_repeat2, - STATE(2710), 1, + STATE(2663), 1, aux_sym_on_statement_repeat1, - STATE(3194), 1, + STATE(3291), 1, sym_widget_phrase, - STATE(4440), 1, + STATE(4307), 1, sym_label, - STATE(2138), 2, + STATE(2150), 2, sym_comment, sym_include, - [106638] = 6, - ACTIONS(59), 1, + [107026] = 14, + 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(3332), 1, - aux_sym_variable_definition_token2, - STATE(2139), 2, + 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(3346), 1, + aux_sym_widget_field_token1, + STATE(2521), 1, + aux_sym_on_statement_repeat2, + STATE(2663), 1, + aux_sym_on_statement_repeat1, + STATE(3291), 1, + sym_widget_phrase, + STATE(3555), 1, + sym_do_block, + STATE(4453), 1, + sym_label, + STATE(2151), 2, sym_comment, sym_include, - ACTIONS(3330), 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, - [106666] = 6, - ACTIONS(59), 1, + [107070] = 14, + 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(3336), 1, - aux_sym_variable_definition_token2, - STATE(2140), 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(3348), 1, + aux_sym_widget_field_token1, + STATE(1182), 1, + sym_do_block, + STATE(2526), 1, + aux_sym_on_statement_repeat2, + STATE(2663), 1, + aux_sym_on_statement_repeat1, + STATE(3291), 1, + sym_widget_phrase, + STATE(4362), 1, + sym_label, + STATE(2152), 2, sym_comment, sym_include, - ACTIONS(3334), 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, - [106694] = 14, + [107114] = 14, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(825), 1, + ACTIONS(297), 1, aux_sym_do_block_token1, ACTIONS(1295), 1, sym_identifier, @@ -133678,60 +134706,87 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_input_expression_token2, ACTIONS(1299), 1, anon_sym_COMMA, - ACTIONS(3338), 1, + ACTIONS(3350), 1, aux_sym_widget_field_token1, - STATE(922), 1, + STATE(1420), 1, sym_do_block, - STATE(2436), 1, + STATE(2510), 1, aux_sym_on_statement_repeat2, - STATE(2710), 1, + STATE(2663), 1, aux_sym_on_statement_repeat1, - STATE(3194), 1, + STATE(3291), 1, sym_widget_phrase, - STATE(4176), 1, + STATE(4560), 1, sym_label, - STATE(2141), 2, + STATE(2153), 2, sym_comment, sym_include, - [106738] = 12, + [107158] = 11, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_LBRACE, + ACTIONS(967), 1, + sym__integer_literal, + ACTIONS(973), 1, + anon_sym_LPAREN, + ACTIONS(3352), 1, + sym_identifier, + STATE(1098), 1, + sym_object_access, + STATE(1254), 1, + sym__unary_minus_expressions, + STATE(1335), 1, + sym__decimal_literal, + STATE(2154), 2, + sym_comment, + sym_include, + STATE(1257), 4, + sym_qualified_name, + sym_number_literal, + sym_parenthesized_expression, + sym_function_call, + [107196] = 12, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(3003), 1, + ACTIONS(3027), 1, + anon_sym_COLON, + ACTIONS(3031), 1, aux_sym_on_error_phrase_token1, - ACTIONS(3005), 1, + ACTIONS(3033), 1, aux_sym_stop_after_phrase_token1, - ACTIONS(3007), 1, + ACTIONS(3035), 1, aux_sym_do_tuning_token1, - ACTIONS(3340), 1, - anon_sym_COLON, - STATE(2608), 1, + STATE(2604), 1, aux_sym_do_block_repeat1, - STATE(2754), 1, + STATE(2925), 1, sym_stop_after_phrase, - STATE(2944), 1, + STATE(3074), 1, sym_do_tuning, - STATE(2142), 2, + STATE(2155), 2, sym_comment, sym_include, - STATE(4401), 3, + STATE(4216), 3, sym_on_error_phrase, sym_on_stop_phrase, sym_on_quit_phrase, - [106778] = 5, + [107236] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - STATE(2143), 2, + STATE(2156), 2, sym_comment, sym_include, - ACTIONS(3198), 10, + ACTIONS(3354), 10, sym__terminator, aux_sym_input_stream_tuning_token1, aux_sym_input_stream_tuning_token2, @@ -133742,64 +134797,213 @@ 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, - [106804] = 5, + [107262] = 12, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - STATE(2144), 2, + ACTIONS(3027), 1, + anon_sym_COLON, + ACTIONS(3031), 1, + aux_sym_on_error_phrase_token1, + ACTIONS(3033), 1, + aux_sym_stop_after_phrase_token1, + ACTIONS(3035), 1, + aux_sym_do_tuning_token1, + STATE(2149), 1, + aux_sym_do_block_repeat1, + STATE(2925), 1, + sym_stop_after_phrase, + STATE(3074), 1, + sym_do_tuning, + STATE(2157), 2, sym_comment, sym_include, - ACTIONS(3342), 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, - [106830] = 13, + STATE(4216), 3, + sym_on_error_phrase, + sym_on_stop_phrase, + sym_on_quit_phrase, + [107302] = 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(3356), 1, + sym_identifier, + STATE(1197), 1, + sym_object_access, + STATE(1581), 1, + sym__decimal_literal, + STATE(1583), 1, + sym__unary_minus_expressions, + STATE(2158), 2, + sym_comment, + sym_include, + STATE(1584), 4, + sym_qualified_name, + sym_number_literal, + sym_parenthesized_expression, + sym_function_call, + [107340] = 14, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2109), 1, + ACTIONS(3029), 1, + aux_sym_while_phrase_token1, + ACTIONS(3338), 1, + aux_sym_repeat_tuning_token1, + ACTIONS(3340), 1, + aux_sym_on_error_phrase_token1, + ACTIONS(3358), 1, + anon_sym_COLON, + STATE(2420), 1, + sym_while_phrase, + STATE(2484), 1, + sym_on_error_phrase, + STATE(2683), 1, + sym_on_quit_phrase, + STATE(2993), 1, + aux_sym_repeat_statement_repeat1, + STATE(3028), 1, + sym_on_stop_phrase, + STATE(3672), 1, + sym_repeat_tuning, + STATE(2159), 2, + sym_comment, + sym_include, + [107384] = 11, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_LBRACE, + ACTIONS(1049), 1, + sym__integer_literal, + ACTIONS(1055), 1, + anon_sym_LPAREN, + ACTIONS(3360), 1, + sym_identifier, + STATE(1575), 1, + sym_object_access, + STATE(1594), 1, + sym__unary_minus_expressions, + STATE(1630), 1, + sym__decimal_literal, + STATE(2160), 2, + sym_comment, + sym_include, + STATE(1601), 4, + sym_qualified_name, + sym_number_literal, + sym_parenthesized_expression, + sym_function_call, + [107422] = 13, + ACTIONS(59), 1, + anon_sym_SLASH_SLASH, + ACTIONS(61), 1, + anon_sym_SLASH_STAR, + ACTIONS(65), 1, + anon_sym_LBRACE, + ACTIONS(2113), 1, aux_sym_on_error_phrase_token1, + ACTIONS(2117), 1, + aux_sym_sort_clause_token1, + ACTIONS(2119), 1, + aux_sym_sort_clause_token2, + STATE(2544), 1, + aux_sym_for_phrase_repeat2, + STATE(2857), 1, + sym_on_error_phrase, + STATE(2934), 1, + sym_sort_clause, + STATE(3071), 1, + sym_on_quit_phrase, + STATE(3862), 1, + sym_on_stop_phrase, + ACTIONS(3362), 2, + anon_sym_COMMA, + anon_sym_COLON, + STATE(2161), 2, + sym_comment, + sym_include, + [107464] = 13, + ACTIONS(59), 1, + anon_sym_SLASH_SLASH, + ACTIONS(61), 1, + anon_sym_SLASH_STAR, + ACTIONS(65), 1, + anon_sym_LBRACE, ACTIONS(2113), 1, + aux_sym_on_error_phrase_token1, + ACTIONS(2117), 1, aux_sym_sort_clause_token1, - ACTIONS(2115), 1, + ACTIONS(2119), 1, aux_sym_sort_clause_token2, - STATE(2454), 1, + STATE(2544), 1, aux_sym_for_phrase_repeat2, - STATE(2736), 1, + STATE(2934), 1, + sym_sort_clause, + STATE(2979), 1, sym_on_error_phrase, - STATE(2783), 1, + STATE(3017), 1, + sym_on_quit_phrase, + STATE(4120), 1, + sym_on_stop_phrase, + ACTIONS(2455), 2, + anon_sym_COMMA, + anon_sym_COLON, + STATE(2162), 2, + sym_comment, + sym_include, + [107506] = 13, + ACTIONS(59), 1, + anon_sym_SLASH_SLASH, + ACTIONS(61), 1, + anon_sym_SLASH_STAR, + ACTIONS(65), 1, + anon_sym_LBRACE, + ACTIONS(2113), 1, + aux_sym_on_error_phrase_token1, + ACTIONS(2117), 1, + aux_sym_sort_clause_token1, + ACTIONS(2119), 1, + aux_sym_sort_clause_token2, + STATE(2544), 1, + aux_sym_for_phrase_repeat2, + STATE(2881), 1, + sym_on_error_phrase, + STATE(2934), 1, sym_sort_clause, - STATE(3011), 1, + STATE(3082), 1, sym_on_quit_phrase, - STATE(3737), 1, + STATE(4040), 1, sym_on_stop_phrase, - ACTIONS(2612), 2, + ACTIONS(2558), 2, anon_sym_COMMA, anon_sym_COLON, - STATE(2145), 2, + STATE(2163), 2, sym_comment, sym_include, - [106872] = 14, + [107548] = 14, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(825), 1, + ACTIONS(791), 1, aux_sym_do_block_token1, ACTIONS(1295), 1, sym_identifier, @@ -133807,29 +135011,50 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_input_expression_token2, ACTIONS(1299), 1, anon_sym_COMMA, - ACTIONS(1305), 1, + ACTIONS(1301), 1, aux_sym_widget_field_token1, - STATE(1001), 1, + STATE(863), 1, sym_do_block, - STATE(2409), 1, + STATE(2445), 1, aux_sym_on_statement_repeat2, - STATE(2710), 1, + STATE(2663), 1, aux_sym_on_statement_repeat1, - STATE(3194), 1, + STATE(3291), 1, sym_widget_phrase, - STATE(4176), 1, + STATE(4307), 1, sym_label, - STATE(2146), 2, + STATE(2164), 2, + sym_comment, + sym_include, + [107592] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_LBRACE, + STATE(2165), 2, sym_comment, sym_include, - [106916] = 14, + 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, + [107618] = 14, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(261), 1, + ACTIONS(297), 1, aux_sym_do_block_token1, ACTIONS(1295), 1, sym_identifier, @@ -133837,1537 +135062,1623 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_input_expression_token2, ACTIONS(1299), 1, anon_sym_COMMA, - ACTIONS(1307), 1, + ACTIONS(1305), 1, aux_sym_widget_field_token1, - STATE(1508), 1, + STATE(1319), 1, sym_do_block, - STATE(2541), 1, + STATE(2517), 1, aux_sym_on_statement_repeat2, - STATE(2710), 1, + STATE(2663), 1, aux_sym_on_statement_repeat1, - STATE(3194), 1, + STATE(3291), 1, sym_widget_phrase, - STATE(4440), 1, + STATE(4560), 1, sym_label, - STATE(2147), 2, + STATE(2166), 2, sym_comment, sym_include, - [106960] = 12, + [107662] = 12, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(3003), 1, + ACTIONS(3031), 1, aux_sym_on_error_phrase_token1, - ACTIONS(3005), 1, + ACTIONS(3033), 1, aux_sym_stop_after_phrase_token1, - ACTIONS(3007), 1, + ACTIONS(3035), 1, aux_sym_do_tuning_token1, - ACTIONS(3206), 1, + ACTIONS(3214), 1, anon_sym_COLON, - STATE(2162), 1, + STATE(2604), 1, aux_sym_do_block_repeat1, - STATE(2806), 1, + STATE(2957), 1, sym_stop_after_phrase, - STATE(2944), 1, + STATE(3074), 1, sym_do_tuning, - STATE(2148), 2, + STATE(2167), 2, sym_comment, sym_include, - STATE(4335), 3, + STATE(4611), 3, sym_on_error_phrase, sym_on_stop_phrase, sym_on_quit_phrase, - [107000] = 12, + [107702] = 5, + ACTIONS(59), 1, + anon_sym_SLASH_SLASH, + ACTIONS(61), 1, + anon_sym_SLASH_STAR, + ACTIONS(65), 1, + anon_sym_LBRACE, + STATE(2168), 2, + sym_comment, + sym_include, + ACTIONS(3149), 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, + [107728] = 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(1303), 1, + aux_sym_widget_field_token1, + STATE(962), 1, + sym_do_block, + STATE(2467), 1, + aux_sym_on_statement_repeat2, + STATE(2663), 1, + aux_sym_on_statement_repeat1, + STATE(3291), 1, + sym_widget_phrase, + STATE(4243), 1, + sym_label, + STATE(2169), 2, + sym_comment, + sym_include, + [107772] = 12, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(3003), 1, + ACTIONS(3031), 1, aux_sym_on_error_phrase_token1, - ACTIONS(3005), 1, + ACTIONS(3033), 1, aux_sym_stop_after_phrase_token1, - ACTIONS(3007), 1, + ACTIONS(3035), 1, aux_sym_do_tuning_token1, - ACTIONS(3206), 1, + ACTIONS(3166), 1, anon_sym_COLON, - STATE(2608), 1, + STATE(2167), 1, aux_sym_do_block_repeat1, - STATE(2806), 1, + STATE(2930), 1, sym_stop_after_phrase, - STATE(2944), 1, + STATE(3074), 1, sym_do_tuning, - STATE(2149), 2, + STATE(2170), 2, sym_comment, sym_include, - STATE(4335), 3, + STATE(4678), 3, sym_on_error_phrase, sym_on_stop_phrase, sym_on_quit_phrase, - [107040] = 6, + [107812] = 12, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(3346), 1, - aux_sym_variable_definition_token2, - STATE(2150), 2, + ACTIONS(3031), 1, + aux_sym_on_error_phrase_token1, + ACTIONS(3033), 1, + aux_sym_stop_after_phrase_token1, + ACTIONS(3035), 1, + aux_sym_do_tuning_token1, + ACTIONS(3214), 1, + anon_sym_COLON, + STATE(2199), 1, + aux_sym_do_block_repeat1, + STATE(2957), 1, + sym_stop_after_phrase, + STATE(3074), 1, + sym_do_tuning, + STATE(2171), 2, sym_comment, sym_include, - ACTIONS(3344), 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, - [107068] = 6, + STATE(4611), 3, + sym_on_error_phrase, + sym_on_stop_phrase, + sym_on_quit_phrase, + [107852] = 14, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(3350), 1, - aux_sym_variable_definition_token2, - STATE(2151), 2, + ACTIONS(3029), 1, + aux_sym_while_phrase_token1, + ACTIONS(3338), 1, + aux_sym_repeat_tuning_token1, + ACTIONS(3340), 1, + aux_sym_on_error_phrase_token1, + ACTIONS(3364), 1, + anon_sym_COLON, + STATE(2390), 1, + sym_while_phrase, + STATE(2538), 1, + sym_on_error_phrase, + STATE(2745), 1, + sym_on_quit_phrase, + STATE(3083), 1, + aux_sym_repeat_statement_repeat1, + STATE(3085), 1, + sym_on_stop_phrase, + STATE(3672), 1, + sym_repeat_tuning, + STATE(2172), 2, sym_comment, sym_include, - ACTIONS(3348), 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, - [107096] = 12, + [107896] = 14, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(3003), 1, + ACTIONS(3029), 1, + aux_sym_while_phrase_token1, + ACTIONS(3338), 1, + aux_sym_repeat_tuning_token1, + ACTIONS(3340), 1, aux_sym_on_error_phrase_token1, - ACTIONS(3005), 1, - aux_sym_stop_after_phrase_token1, - ACTIONS(3007), 1, - aux_sym_do_tuning_token1, - ACTIONS(3352), 1, + ACTIONS(3366), 1, anon_sym_COLON, - STATE(2142), 1, - aux_sym_do_block_repeat1, - STATE(2735), 1, - sym_stop_after_phrase, - STATE(2944), 1, - sym_do_tuning, - STATE(2152), 2, - sym_comment, - sym_include, - STATE(4436), 3, + STATE(2408), 1, + sym_while_phrase, + STATE(2466), 1, sym_on_error_phrase, - sym_on_stop_phrase, + STATE(2680), 1, sym_on_quit_phrase, - [107136] = 6, + STATE(3010), 1, + aux_sym_repeat_statement_repeat1, + STATE(3016), 1, + sym_on_stop_phrase, + STATE(3672), 1, + sym_repeat_tuning, + STATE(2173), 2, + sym_comment, + sym_include, + [107940] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(3354), 1, - sym__namedot, - STATE(2153), 3, + STATE(2174), 2, sym_comment, sym_include, - aux_sym_qualified_name_repeat1, - ACTIONS(102), 8, + ACTIONS(187), 10, sym_identifier, - sym__terminator, + 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_field_definition_token1, - aux_sym_index_definition_token1, - [107164] = 7, - ACTIONS(3), 1, + aux_sym_sort_clause_token1, + aux_sym_sort_clause_token2, + [107966] = 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(2938), 1, - sym__namedot, - STATE(2153), 1, - aux_sym_qualified_name_repeat1, - STATE(2154), 2, + ACTIONS(3029), 1, + aux_sym_while_phrase_token1, + ACTIONS(3338), 1, + aux_sym_repeat_tuning_token1, + ACTIONS(3340), 1, + aux_sym_on_error_phrase_token1, + ACTIONS(3368), 1, + anon_sym_COLON, + STATE(2400), 1, + sym_while_phrase, + STATE(2507), 1, + sym_on_error_phrase, + STATE(2761), 1, + sym_on_quit_phrase, + STATE(3098), 1, + aux_sym_repeat_statement_repeat1, + STATE(3100), 1, + sym_on_stop_phrase, + STATE(3672), 1, + sym_repeat_tuning, + STATE(2175), 2, sym_comment, sym_include, - ACTIONS(91), 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, - [107194] = 12, + [108010] = 12, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(3003), 1, + ACTIONS(3031), 1, aux_sym_on_error_phrase_token1, - ACTIONS(3005), 1, + ACTIONS(3033), 1, aux_sym_stop_after_phrase_token1, - ACTIONS(3007), 1, + ACTIONS(3035), 1, aux_sym_do_tuning_token1, - ACTIONS(3357), 1, + ACTIONS(3125), 1, anon_sym_COLON, - STATE(2608), 1, + STATE(2184), 1, aux_sym_do_block_repeat1, - STATE(2773), 1, + STATE(2860), 1, sym_stop_after_phrase, - STATE(2944), 1, + STATE(3074), 1, sym_do_tuning, - STATE(2155), 2, + STATE(2176), 2, sym_comment, sym_include, - STATE(4407), 3, + STATE(4426), 3, sym_on_error_phrase, sym_on_stop_phrase, sym_on_quit_phrase, - [107234] = 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(3359), 1, - aux_sym_widget_field_token1, - STATE(1471), 1, - sym_do_block, - STATE(2526), 1, - aux_sym_on_statement_repeat2, - STATE(2710), 1, - aux_sym_on_statement_repeat1, - STATE(3194), 1, - sym_widget_phrase, - STATE(4440), 1, - sym_label, - STATE(2156), 2, - sym_comment, - sym_include, - [107278] = 10, + [108050] = 12, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2634), 1, - aux_sym_method_definition_token1, - ACTIONS(3234), 1, - aux_sym_variable_definition_token1, - ACTIONS(3236), 1, - aux_sym_variable_definition_token2, - ACTIONS(3361), 1, - aux_sym__block_terminator_token1, - STATE(2180), 1, - aux_sym_interface_body_repeat1, - STATE(2157), 2, + ACTIONS(3031), 1, + aux_sym_on_error_phrase_token1, + ACTIONS(3033), 1, + aux_sym_stop_after_phrase_token1, + ACTIONS(3035), 1, + aux_sym_do_tuning_token1, + ACTIONS(3123), 1, + anon_sym_COLON, + STATE(2203), 1, + aux_sym_do_block_repeat1, + STATE(2890), 1, + sym_stop_after_phrase, + STATE(3074), 1, + sym_do_tuning, + STATE(2177), 2, sym_comment, sym_include, - STATE(3008), 5, - sym_property_definition, - sym_event_definition, - sym_method_definition, - sym_dataset_definition, - sym_temp_table_definition, - [107314] = 12, + STATE(4402), 3, + sym_on_error_phrase, + sym_on_stop_phrase, + sym_on_quit_phrase, + [108090] = 12, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(3003), 1, + ACTIONS(3031), 1, aux_sym_on_error_phrase_token1, - ACTIONS(3005), 1, + ACTIONS(3033), 1, aux_sym_stop_after_phrase_token1, - ACTIONS(3007), 1, + ACTIONS(3035), 1, aux_sym_do_tuning_token1, - ACTIONS(3363), 1, + ACTIONS(3342), 1, anon_sym_COLON, - STATE(2155), 1, + STATE(2190), 1, aux_sym_do_block_repeat1, - STATE(2796), 1, + STATE(2856), 1, sym_stop_after_phrase, - STATE(2944), 1, + STATE(3074), 1, sym_do_tuning, - STATE(2158), 2, + STATE(2178), 2, sym_comment, sym_include, - STATE(4381), 3, + STATE(4245), 3, sym_on_error_phrase, sym_on_stop_phrase, sym_on_quit_phrase, - [107354] = 11, + [108130] = 11, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(361), 1, + ACTIONS(645), 1, sym__integer_literal, - ACTIONS(367), 1, + ACTIONS(839), 1, anon_sym_LPAREN, - ACTIONS(3365), 1, + ACTIONS(3370), 1, sym_identifier, - STATE(14), 1, - sym_object_access, - STATE(36), 1, + STATE(565), 1, sym__decimal_literal, - STATE(43), 1, + STATE(576), 1, + sym_object_access, + STATE(595), 1, sym__unary_minus_expressions, - STATE(2159), 2, + STATE(2179), 2, sym_comment, sym_include, - STATE(42), 4, + STATE(591), 4, sym_qualified_name, sym_number_literal, sym_parenthesized_expression, sym_function_call, - [107392] = 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(3367), 1, - aux_sym_widget_field_token1, - STATE(1099), 1, - sym_do_block, - STATE(2452), 1, - aux_sym_on_statement_repeat2, - STATE(2710), 1, - aux_sym_on_statement_repeat1, - STATE(3194), 1, - sym_widget_phrase, - STATE(4193), 1, - sym_label, - STATE(2160), 2, - sym_comment, - sym_include, - [107436] = 13, + [108168] = 12, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2109), 1, + ACTIONS(3031), 1, aux_sym_on_error_phrase_token1, - ACTIONS(2113), 1, - aux_sym_sort_clause_token1, - ACTIONS(2115), 1, - aux_sym_sort_clause_token2, - STATE(2454), 1, - aux_sym_for_phrase_repeat2, - STATE(2783), 1, - sym_sort_clause, - STATE(2876), 1, + ACTIONS(3033), 1, + aux_sym_stop_after_phrase_token1, + ACTIONS(3035), 1, + aux_sym_do_tuning_token1, + ACTIONS(3166), 1, + anon_sym_COLON, + STATE(2604), 1, + aux_sym_do_block_repeat1, + STATE(2930), 1, + sym_stop_after_phrase, + STATE(3074), 1, + sym_do_tuning, + STATE(2180), 2, + sym_comment, + sym_include, + STATE(4678), 3, sym_on_error_phrase, - STATE(2951), 1, - sym_on_quit_phrase, - STATE(3679), 1, sym_on_stop_phrase, - ACTIONS(3369), 2, - anon_sym_COMMA, - anon_sym_COLON, - STATE(2161), 2, + sym_on_quit_phrase, + [108208] = 11, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_LBRACE, + ACTIONS(345), 1, + sym__integer_literal, + ACTIONS(351), 1, + anon_sym_LPAREN, + ACTIONS(3372), 1, + sym_identifier, + STATE(14), 1, + sym__unary_minus_expressions, + STATE(23), 1, + sym__decimal_literal, + STATE(41), 1, + sym_object_access, + STATE(2181), 2, sym_comment, sym_include, - [107478] = 12, + STATE(39), 4, + sym_qualified_name, + sym_number_literal, + sym_parenthesized_expression, + sym_function_call, + [108246] = 12, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(3003), 1, + ACTIONS(3031), 1, aux_sym_on_error_phrase_token1, - ACTIONS(3005), 1, + ACTIONS(3033), 1, aux_sym_stop_after_phrase_token1, - ACTIONS(3007), 1, + ACTIONS(3035), 1, aux_sym_do_tuning_token1, - ACTIONS(3371), 1, + ACTIONS(3123), 1, anon_sym_COLON, - STATE(2608), 1, + STATE(2604), 1, aux_sym_do_block_repeat1, - STATE(2885), 1, + STATE(2890), 1, sym_stop_after_phrase, - STATE(2944), 1, + STATE(3074), 1, sym_do_tuning, - STATE(2162), 2, + STATE(2182), 2, sym_comment, sym_include, - STATE(4243), 3, + STATE(4402), 3, sym_on_error_phrase, sym_on_stop_phrase, sym_on_quit_phrase, - [107518] = 12, + [108286] = 12, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(3003), 1, + ACTIONS(3031), 1, aux_sym_on_error_phrase_token1, - ACTIONS(3005), 1, + ACTIONS(3033), 1, aux_sym_stop_after_phrase_token1, - ACTIONS(3007), 1, + ACTIONS(3035), 1, aux_sym_do_tuning_token1, - ACTIONS(3352), 1, + ACTIONS(3125), 1, anon_sym_COLON, - STATE(2608), 1, + STATE(2604), 1, aux_sym_do_block_repeat1, - STATE(2735), 1, + STATE(2860), 1, sym_stop_after_phrase, - STATE(2944), 1, + STATE(3074), 1, sym_do_tuning, - STATE(2163), 2, + STATE(2183), 2, sym_comment, sym_include, - STATE(4436), 3, + STATE(4426), 3, sym_on_error_phrase, sym_on_stop_phrase, sym_on_quit_phrase, - [107558] = 12, + [108326] = 12, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(3003), 1, + ACTIONS(3031), 1, aux_sym_on_error_phrase_token1, - ACTIONS(3005), 1, + ACTIONS(3033), 1, aux_sym_stop_after_phrase_token1, - ACTIONS(3007), 1, + ACTIONS(3035), 1, aux_sym_do_tuning_token1, - ACTIONS(3363), 1, + ACTIONS(3374), 1, anon_sym_COLON, - STATE(2608), 1, + STATE(2604), 1, aux_sym_do_block_repeat1, - STATE(2796), 1, + STATE(2893), 1, sym_stop_after_phrase, - STATE(2944), 1, + STATE(3074), 1, sym_do_tuning, - STATE(2164), 2, + STATE(2184), 2, sym_comment, sym_include, - STATE(4381), 3, + STATE(4455), 3, sym_on_error_phrase, sym_on_stop_phrase, sym_on_quit_phrase, - [107598] = 12, + [108366] = 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(2185), 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, + [108394] = 12, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(3003), 1, + ACTIONS(3031), 1, aux_sym_on_error_phrase_token1, - ACTIONS(3005), 1, + ACTIONS(3033), 1, aux_sym_stop_after_phrase_token1, - ACTIONS(3007), 1, + ACTIONS(3035), 1, aux_sym_do_tuning_token1, - ACTIONS(3371), 1, + ACTIONS(3374), 1, anon_sym_COLON, - STATE(2136), 1, + STATE(2229), 1, aux_sym_do_block_repeat1, - STATE(2885), 1, + STATE(2893), 1, sym_stop_after_phrase, - STATE(2944), 1, + STATE(3074), 1, sym_do_tuning, - STATE(2165), 2, + STATE(2186), 2, sym_comment, sym_include, - STATE(4243), 3, + STATE(4455), 3, sym_on_error_phrase, sym_on_stop_phrase, sym_on_quit_phrase, - [107638] = 5, + [108434] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - STATE(2166), 2, - sym_comment, - sym_include, - ACTIONS(3373), 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, - [107664] = 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(1309), 1, - aux_sym_widget_field_token1, - STATE(983), 1, - sym_do_block, - STATE(2484), 1, - aux_sym_on_statement_repeat2, - STATE(2710), 1, - aux_sym_on_statement_repeat1, - STATE(3194), 1, - sym_widget_phrase, - STATE(4176), 1, - sym_label, - STATE(2167), 2, + ACTIONS(3382), 1, + aux_sym_variable_definition_token2, + STATE(2187), 2, sym_comment, sym_include, - [107708] = 13, + 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, + [108462] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2109), 1, - aux_sym_on_error_phrase_token1, - ACTIONS(2113), 1, - aux_sym_sort_clause_token1, - ACTIONS(2115), 1, - aux_sym_sort_clause_token2, - STATE(2454), 1, - aux_sym_for_phrase_repeat2, - STATE(2744), 1, - sym_on_error_phrase, - STATE(2783), 1, - sym_sort_clause, - STATE(3034), 1, - sym_on_quit_phrase, - STATE(3726), 1, - sym_on_stop_phrase, - ACTIONS(2614), 2, - anon_sym_COMMA, - anon_sym_COLON, - STATE(2168), 2, + ACTIONS(3386), 1, + aux_sym_variable_definition_token2, + STATE(2188), 2, sym_comment, sym_include, - [107750] = 12, + ACTIONS(3384), 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, + [108490] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(3003), 1, - aux_sym_on_error_phrase_token1, - ACTIONS(3005), 1, - aux_sym_stop_after_phrase_token1, - ACTIONS(3007), 1, - aux_sym_do_tuning_token1, - ACTIONS(3068), 1, - anon_sym_COLON, - STATE(2164), 1, - aux_sym_do_block_repeat1, - STATE(2814), 1, - sym_stop_after_phrase, - STATE(2944), 1, - sym_do_tuning, - STATE(2169), 2, + ACTIONS(3390), 1, + aux_sym_variable_definition_token2, + STATE(2189), 2, sym_comment, sym_include, - STATE(4353), 3, - sym_on_error_phrase, - sym_on_stop_phrase, - sym_on_quit_phrase, - [107790] = 12, + ACTIONS(3388), 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, + [108518] = 12, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(3003), 1, + ACTIONS(3031), 1, aux_sym_on_error_phrase_token1, - ACTIONS(3005), 1, + ACTIONS(3033), 1, aux_sym_stop_after_phrase_token1, - ACTIONS(3007), 1, + ACTIONS(3035), 1, aux_sym_do_tuning_token1, - ACTIONS(3068), 1, + ACTIONS(3392), 1, anon_sym_COLON, - STATE(2608), 1, + STATE(2604), 1, aux_sym_do_block_repeat1, - STATE(2814), 1, + STATE(2918), 1, sym_stop_after_phrase, - STATE(2944), 1, + STATE(3074), 1, sym_do_tuning, - STATE(2170), 2, + STATE(2190), 2, sym_comment, sym_include, - STATE(4353), 3, + STATE(4272), 3, sym_on_error_phrase, sym_on_stop_phrase, sym_on_quit_phrase, - [107830] = 12, + [108558] = 12, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(3003), 1, + ACTIONS(3031), 1, aux_sym_on_error_phrase_token1, - ACTIONS(3005), 1, + ACTIONS(3033), 1, aux_sym_stop_after_phrase_token1, - ACTIONS(3007), 1, + ACTIONS(3035), 1, aux_sym_do_tuning_token1, - ACTIONS(3098), 1, + ACTIONS(3394), 1, anon_sym_COLON, - STATE(2608), 1, + STATE(2214), 1, aux_sym_do_block_repeat1, - STATE(2829), 1, + STATE(2902), 1, sym_stop_after_phrase, - STATE(2944), 1, + STATE(3074), 1, sym_do_tuning, - STATE(2171), 2, + STATE(2191), 2, sym_comment, sym_include, - STATE(4319), 3, + STATE(4356), 3, sym_on_error_phrase, sym_on_stop_phrase, sym_on_quit_phrase, - [107870] = 11, + [108598] = 14, 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(3375), 1, + ACTIONS(43), 1, + aux_sym_do_block_token1, + ACTIONS(1295), 1, sym_identifier, - STATE(921), 1, - sym_object_access, - STATE(1354), 1, - sym__unary_minus_expressions, - STATE(1386), 1, - sym__decimal_literal, - STATE(2172), 2, + ACTIONS(1297), 1, + aux_sym_input_expression_token2, + ACTIONS(1299), 1, + anon_sym_COMMA, + ACTIONS(1323), 1, + aux_sym_widget_field_token1, + STATE(1356), 1, + sym_do_block, + STATE(2448), 1, + aux_sym_on_statement_repeat2, + STATE(2663), 1, + aux_sym_on_statement_repeat1, + STATE(3291), 1, + sym_widget_phrase, + STATE(4362), 1, + sym_label, + STATE(2192), 2, sym_comment, sym_include, - STATE(1359), 4, - sym_qualified_name, - sym_number_literal, - sym_parenthesized_expression, - sym_function_call, - [107908] = 12, + [108642] = 6, + ACTIONS(59), 1, + anon_sym_SLASH_SLASH, + ACTIONS(61), 1, + anon_sym_SLASH_STAR, + ACTIONS(65), 1, + anon_sym_LBRACE, + ACTIONS(3398), 1, + aux_sym_variable_definition_token2, + STATE(2193), 2, + sym_comment, + sym_include, + ACTIONS(3396), 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, + [108670] = 6, + ACTIONS(59), 1, + anon_sym_SLASH_SLASH, + ACTIONS(61), 1, + anon_sym_SLASH_STAR, + ACTIONS(65), 1, + anon_sym_LBRACE, + ACTIONS(3402), 1, + aux_sym_variable_definition_token2, + STATE(2194), 2, + sym_comment, + sym_include, + ACTIONS(3400), 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, + [108698] = 6, + ACTIONS(59), 1, + anon_sym_SLASH_SLASH, + ACTIONS(61), 1, + anon_sym_SLASH_STAR, + ACTIONS(65), 1, + anon_sym_LBRACE, + ACTIONS(3406), 1, + aux_sym_variable_definition_token2, + STATE(2195), 2, + sym_comment, + sym_include, + ACTIONS(3404), 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, + [108726] = 12, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(3003), 1, + ACTIONS(3031), 1, aux_sym_on_error_phrase_token1, - ACTIONS(3005), 1, + ACTIONS(3033), 1, aux_sym_stop_after_phrase_token1, - ACTIONS(3007), 1, + ACTIONS(3035), 1, aux_sym_do_tuning_token1, - ACTIONS(3098), 1, + ACTIONS(3039), 1, anon_sym_COLON, - STATE(2170), 1, + STATE(2155), 1, aux_sym_do_block_repeat1, - STATE(2829), 1, + STATE(2853), 1, sym_stop_after_phrase, - STATE(2944), 1, + STATE(3074), 1, sym_do_tuning, - STATE(2173), 2, + STATE(2196), 2, sym_comment, sym_include, - STATE(4319), 3, + STATE(4197), 3, sym_on_error_phrase, sym_on_stop_phrase, sym_on_quit_phrase, - [107948] = 5, + [108766] = 14, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(2174), 2, - sym_comment, - sym_include, - ACTIONS(127), 10, + 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, - 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, - [107974] = 5, + ACTIONS(1311), 1, + aux_sym_widget_field_token1, + STATE(899), 1, + sym_do_block, + STATE(2456), 1, + aux_sym_on_statement_repeat2, + STATE(2663), 1, + aux_sym_on_statement_repeat1, + STATE(3291), 1, + sym_widget_phrase, + STATE(4307), 1, + sym_label, + STATE(2197), 2, + sym_comment, + sym_include, + [108810] = 14, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(2175), 2, - sym_comment, - sym_include, - ACTIONS(213), 10, + 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, - 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, - [108000] = 12, + ACTIONS(1313), 1, + aux_sym_widget_field_token1, + STATE(1009), 1, + sym_do_block, + STATE(2481), 1, + aux_sym_on_statement_repeat2, + STATE(2663), 1, + aux_sym_on_statement_repeat1, + STATE(3291), 1, + sym_widget_phrase, + STATE(4243), 1, + sym_label, + STATE(2198), 2, + sym_comment, + sym_include, + [108854] = 12, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(3003), 1, + ACTIONS(3031), 1, aux_sym_on_error_phrase_token1, - ACTIONS(3005), 1, + ACTIONS(3033), 1, aux_sym_stop_after_phrase_token1, - ACTIONS(3007), 1, + ACTIONS(3035), 1, aux_sym_do_tuning_token1, - ACTIONS(3139), 1, + ACTIONS(3408), 1, anon_sym_COLON, - STATE(2163), 1, + STATE(2604), 1, aux_sym_do_block_repeat1, - STATE(2810), 1, + STATE(2939), 1, sym_stop_after_phrase, - STATE(2944), 1, + STATE(3074), 1, sym_do_tuning, - STATE(2176), 2, + STATE(2199), 2, sym_comment, sym_include, - STATE(4481), 3, + STATE(4559), 3, sym_on_error_phrase, sym_on_stop_phrase, sym_on_quit_phrase, - [108040] = 11, + [108894] = 6, + ACTIONS(59), 1, + anon_sym_SLASH_SLASH, + ACTIONS(61), 1, + anon_sym_SLASH_STAR, + ACTIONS(65), 1, + anon_sym_LBRACE, + ACTIONS(3412), 1, + aux_sym_variable_definition_token2, + STATE(2200), 2, + sym_comment, + sym_include, + ACTIONS(3410), 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, + [108922] = 14, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(1043), 1, - sym__integer_literal, - ACTIONS(1049), 1, - anon_sym_LPAREN, - ACTIONS(3377), 1, + ACTIONS(297), 1, + aux_sym_do_block_token1, + ACTIONS(1295), 1, sym_identifier, - STATE(668), 1, - sym_object_access, - STATE(695), 1, - sym__unary_minus_expressions, - STATE(699), 1, - sym__decimal_literal, - STATE(2177), 2, + ACTIONS(1297), 1, + aux_sym_input_expression_token2, + ACTIONS(1299), 1, + anon_sym_COMMA, + ACTIONS(1329), 1, + aux_sym_widget_field_token1, + STATE(1152), 1, + sym_do_block, + STATE(2529), 1, + aux_sym_on_statement_repeat2, + STATE(2663), 1, + aux_sym_on_statement_repeat1, + STATE(3291), 1, + sym_widget_phrase, + STATE(4560), 1, + sym_label, + STATE(2201), 2, sym_comment, sym_include, - STATE(697), 4, - sym_qualified_name, - sym_number_literal, - sym_parenthesized_expression, - sym_function_call, - [108078] = 12, + [108966] = 12, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(3003), 1, + ACTIONS(3031), 1, aux_sym_on_error_phrase_token1, - ACTIONS(3005), 1, + ACTIONS(3033), 1, aux_sym_stop_after_phrase_token1, - ACTIONS(3007), 1, + ACTIONS(3035), 1, aux_sym_do_tuning_token1, - ACTIONS(3139), 1, + ACTIONS(3408), 1, anon_sym_COLON, - STATE(2608), 1, + STATE(2218), 1, aux_sym_do_block_repeat1, - STATE(2810), 1, + STATE(2939), 1, sym_stop_after_phrase, - STATE(2944), 1, + STATE(3074), 1, sym_do_tuning, - STATE(2178), 2, + STATE(2202), 2, sym_comment, sym_include, - STATE(4481), 3, + STATE(4559), 3, sym_on_error_phrase, sym_on_stop_phrase, sym_on_quit_phrase, - [108118] = 12, + [109006] = 12, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(3003), 1, + ACTIONS(3031), 1, aux_sym_on_error_phrase_token1, - ACTIONS(3005), 1, + ACTIONS(3033), 1, aux_sym_stop_after_phrase_token1, - ACTIONS(3007), 1, + ACTIONS(3035), 1, aux_sym_do_tuning_token1, - ACTIONS(3131), 1, + ACTIONS(3111), 1, anon_sym_COLON, - STATE(2188), 1, + STATE(2604), 1, aux_sym_do_block_repeat1, - STATE(2917), 1, + STATE(2961), 1, sym_stop_after_phrase, - STATE(2944), 1, + STATE(3074), 1, sym_do_tuning, - STATE(2179), 2, + STATE(2203), 2, sym_comment, sym_include, - STATE(4247), 3, + STATE(4345), 3, sym_on_error_phrase, sym_on_stop_phrase, sym_on_quit_phrase, - [108158] = 9, + [109046] = 13, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(3379), 1, - aux_sym__block_terminator_token1, - ACTIONS(3381), 1, - aux_sym_variable_definition_token1, - ACTIONS(3384), 1, - aux_sym_variable_definition_token2, - ACTIONS(3387), 1, - aux_sym_method_definition_token1, - STATE(2180), 3, + ACTIONS(2113), 1, + aux_sym_on_error_phrase_token1, + ACTIONS(2117), 1, + aux_sym_sort_clause_token1, + ACTIONS(2119), 1, + aux_sym_sort_clause_token2, + STATE(2544), 1, + aux_sym_for_phrase_repeat2, + STATE(2793), 1, + sym_on_error_phrase, + STATE(2934), 1, + sym_sort_clause, + STATE(3003), 1, + sym_on_quit_phrase, + STATE(3919), 1, + sym_on_stop_phrase, + ACTIONS(2618), 2, + anon_sym_COMMA, + anon_sym_COLON, + STATE(2204), 2, sym_comment, sym_include, - aux_sym_interface_body_repeat1, - STATE(3008), 5, - sym_property_definition, - sym_event_definition, - sym_method_definition, - sym_dataset_definition, - sym_temp_table_definition, - [108192] = 12, + [109088] = 12, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(3003), 1, + ACTIONS(3031), 1, aux_sym_on_error_phrase_token1, - ACTIONS(3005), 1, + ACTIONS(3033), 1, aux_sym_stop_after_phrase_token1, - ACTIONS(3007), 1, + ACTIONS(3035), 1, aux_sym_do_tuning_token1, - ACTIONS(3131), 1, + ACTIONS(3180), 1, anon_sym_COLON, - STATE(2608), 1, + STATE(2604), 1, aux_sym_do_block_repeat1, - STATE(2917), 1, + STATE(2803), 1, sym_stop_after_phrase, - STATE(2944), 1, + STATE(3074), 1, sym_do_tuning, - STATE(2181), 2, + STATE(2205), 2, sym_comment, sym_include, - STATE(4247), 3, + STATE(4577), 3, sym_on_error_phrase, sym_on_stop_phrase, sym_on_quit_phrase, - [108232] = 12, + [109128] = 7, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_LBRACE, + ACTIONS(2931), 1, + sym__namedot, + STATE(2209), 1, + aux_sym_qualified_name_repeat1, + STATE(2206), 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, + [109158] = 12, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(3003), 1, + ACTIONS(3031), 1, aux_sym_on_error_phrase_token1, - ACTIONS(3005), 1, + ACTIONS(3033), 1, aux_sym_stop_after_phrase_token1, - ACTIONS(3007), 1, + ACTIONS(3035), 1, aux_sym_do_tuning_token1, - ACTIONS(3116), 1, + ACTIONS(3111), 1, anon_sym_COLON, - STATE(2608), 1, + STATE(2231), 1, aux_sym_do_block_repeat1, - STATE(2860), 1, + STATE(2961), 1, sym_stop_after_phrase, - STATE(2944), 1, + STATE(3074), 1, sym_do_tuning, - STATE(2182), 2, + STATE(2207), 2, sym_comment, sym_include, - STATE(4532), 3, + STATE(4345), 3, sym_on_error_phrase, sym_on_stop_phrase, sym_on_quit_phrase, - [108272] = 14, - ACTIONS(3), 1, + [109198] = 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(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(1336), 1, - aux_sym_widget_field_token1, - STATE(1146), 1, - sym_do_block, - STATE(2422), 1, - aux_sym_on_statement_repeat2, - STATE(2710), 1, - aux_sym_on_statement_repeat1, - STATE(3194), 1, - sym_widget_phrase, - STATE(4253), 1, - sym_label, - STATE(2183), 2, + ACTIONS(3029), 1, + aux_sym_while_phrase_token1, + ACTIONS(3338), 1, + aux_sym_repeat_tuning_token1, + ACTIONS(3340), 1, + aux_sym_on_error_phrase_token1, + ACTIONS(3414), 1, + anon_sym_COLON, + STATE(2402), 1, + sym_while_phrase, + STATE(2488), 1, + sym_on_error_phrase, + STATE(2718), 1, + sym_on_quit_phrase, + STATE(3019), 1, + sym_on_stop_phrase, + STATE(3036), 1, + aux_sym_repeat_statement_repeat1, + STATE(3672), 1, + sym_repeat_tuning, + STATE(2208), 2, sym_comment, sym_include, - [108316] = 14, + [109242] = 6, 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, - ACTIONS(1299), 1, - anon_sym_COMMA, - ACTIONS(3390), 1, - aux_sym_widget_field_token1, - STATE(1184), 1, - sym_do_block, - STATE(2400), 1, - aux_sym_on_statement_repeat2, - STATE(2710), 1, - aux_sym_on_statement_repeat1, - STATE(3194), 1, - sym_widget_phrase, - STATE(4253), 1, - sym_label, - STATE(2184), 2, + ACTIONS(3416), 1, + sym__namedot, + STATE(2209), 3, sym_comment, sym_include, - [108360] = 12, + 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, + [109270] = 14, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(3003), 1, + ACTIONS(3029), 1, + aux_sym_while_phrase_token1, + ACTIONS(3338), 1, + aux_sym_repeat_tuning_token1, + ACTIONS(3340), 1, aux_sym_on_error_phrase_token1, - ACTIONS(3005), 1, - aux_sym_stop_after_phrase_token1, - ACTIONS(3007), 1, - aux_sym_do_tuning_token1, - ACTIONS(3116), 1, + ACTIONS(3419), 1, anon_sym_COLON, - STATE(2178), 1, - aux_sym_do_block_repeat1, - STATE(2860), 1, - sym_stop_after_phrase, - STATE(2944), 1, - sym_do_tuning, - STATE(2185), 2, - sym_comment, - sym_include, - STATE(4532), 3, + STATE(2382), 1, + sym_while_phrase, + STATE(2564), 1, sym_on_error_phrase, - sym_on_stop_phrase, + STATE(2696), 1, sym_on_quit_phrase, - [108400] = 11, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - ACTIONS(7), 1, - anon_sym_LBRACE, - ACTIONS(1005), 1, - sym__integer_literal, - ACTIONS(1011), 1, - anon_sym_LPAREN, - ACTIONS(3392), 1, - sym_identifier, - STATE(1141), 1, - sym_object_access, - STATE(1549), 1, - sym__unary_minus_expressions, - STATE(1577), 1, - sym__decimal_literal, - STATE(2186), 2, + STATE(2988), 1, + aux_sym_repeat_statement_repeat1, + STATE(3031), 1, + sym_on_stop_phrase, + STATE(3672), 1, + sym_repeat_tuning, + STATE(2210), 2, sym_comment, sym_include, - STATE(1548), 4, - sym_qualified_name, - sym_number_literal, - sym_parenthesized_expression, - sym_function_call, - [108438] = 11, + [109314] = 11, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(967), 1, + ACTIONS(1089), 1, sym__integer_literal, - ACTIONS(973), 1, + ACTIONS(1095), 1, anon_sym_LPAREN, - ACTIONS(3394), 1, + ACTIONS(3421), 1, sym_identifier, - STATE(1550), 1, + STATE(657), 1, sym_object_access, - STATE(1588), 1, + STATE(704), 1, sym__unary_minus_expressions, - STATE(1596), 1, + STATE(713), 1, sym__decimal_literal, - STATE(2187), 2, + STATE(2211), 2, sym_comment, sym_include, - STATE(1589), 4, + STATE(702), 4, sym_qualified_name, sym_number_literal, sym_parenthesized_expression, sym_function_call, - [108476] = 12, + [109352] = 12, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2999), 1, - anon_sym_COLON, - ACTIONS(3003), 1, + ACTIONS(3031), 1, aux_sym_on_error_phrase_token1, - ACTIONS(3005), 1, + ACTIONS(3033), 1, aux_sym_stop_after_phrase_token1, - ACTIONS(3007), 1, + ACTIONS(3035), 1, aux_sym_do_tuning_token1, - STATE(2608), 1, + ACTIONS(3119), 1, + anon_sym_COLON, + STATE(2604), 1, aux_sym_do_block_repeat1, STATE(2892), 1, sym_stop_after_phrase, - STATE(2944), 1, + STATE(3074), 1, sym_do_tuning, - STATE(2188), 2, + STATE(2212), 2, sym_comment, sym_include, - STATE(4218), 3, + STATE(4456), 3, sym_on_error_phrase, sym_on_stop_phrase, sym_on_quit_phrase, - [108516] = 6, - ACTIONS(59), 1, + [109392] = 14, + 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(3398), 1, - aux_sym_variable_definition_token2, - STATE(2189), 2, + 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(1321), 1, + aux_sym_widget_field_token1, + STATE(2452), 1, + aux_sym_on_statement_repeat2, + STATE(2663), 1, + aux_sym_on_statement_repeat1, + STATE(3291), 1, + sym_widget_phrase, + STATE(3571), 1, + sym_do_block, + STATE(4453), 1, + sym_label, + STATE(2213), 2, sym_comment, sym_include, - ACTIONS(3396), 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, - [108544] = 12, + [109436] = 12, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2999), 1, - anon_sym_COLON, - ACTIONS(3003), 1, + ACTIONS(3031), 1, aux_sym_on_error_phrase_token1, - ACTIONS(3005), 1, + ACTIONS(3033), 1, aux_sym_stop_after_phrase_token1, - ACTIONS(3007), 1, + ACTIONS(3035), 1, aux_sym_do_tuning_token1, - STATE(2192), 1, + ACTIONS(3423), 1, + anon_sym_COLON, + STATE(2604), 1, aux_sym_do_block_repeat1, - STATE(2892), 1, + STATE(2790), 1, sym_stop_after_phrase, - STATE(2944), 1, + STATE(3074), 1, sym_do_tuning, - STATE(2190), 2, + STATE(2214), 2, sym_comment, sym_include, - STATE(4218), 3, + STATE(4265), 3, sym_on_error_phrase, sym_on_stop_phrase, sym_on_quit_phrase, - [108584] = 12, + [109476] = 12, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(3003), 1, + ACTIONS(3031), 1, aux_sym_on_error_phrase_token1, - ACTIONS(3005), 1, + ACTIONS(3033), 1, aux_sym_stop_after_phrase_token1, - ACTIONS(3007), 1, + ACTIONS(3035), 1, aux_sym_do_tuning_token1, - ACTIONS(3072), 1, + ACTIONS(3425), 1, anon_sym_COLON, - STATE(2608), 1, + STATE(2604), 1, aux_sym_do_block_repeat1, - STATE(2784), 1, + STATE(2845), 1, sym_stop_after_phrase, - STATE(2944), 1, + STATE(3074), 1, sym_do_tuning, - STATE(2191), 2, + STATE(2215), 2, sym_comment, sym_include, - STATE(4414), 3, + STATE(4287), 3, sym_on_error_phrase, sym_on_stop_phrase, sym_on_quit_phrase, - [108624] = 12, + [109516] = 14, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(3003), 1, + ACTIONS(3029), 1, + aux_sym_while_phrase_token1, + ACTIONS(3338), 1, + aux_sym_repeat_tuning_token1, + ACTIONS(3340), 1, aux_sym_on_error_phrase_token1, - ACTIONS(3005), 1, - aux_sym_stop_after_phrase_token1, - ACTIONS(3007), 1, - aux_sym_do_tuning_token1, - ACTIONS(3400), 1, + ACTIONS(3427), 1, anon_sym_COLON, - STATE(2608), 1, - aux_sym_do_block_repeat1, - STATE(2840), 1, - sym_stop_after_phrase, - STATE(2944), 1, - sym_do_tuning, - STATE(2192), 2, - sym_comment, - sym_include, - STATE(4192), 3, + STATE(2379), 1, + sym_while_phrase, + STATE(2589), 1, sym_on_error_phrase, - sym_on_stop_phrase, + STATE(2597), 1, sym_on_quit_phrase, - [108664] = 12, + STATE(3165), 1, + aux_sym_repeat_statement_repeat1, + STATE(3172), 1, + sym_on_stop_phrase, + STATE(3672), 1, + sym_repeat_tuning, + STATE(2216), 2, + sym_comment, + sym_include, + [109560] = 12, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(3003), 1, + ACTIONS(3031), 1, aux_sym_on_error_phrase_token1, - ACTIONS(3005), 1, + ACTIONS(3033), 1, aux_sym_stop_after_phrase_token1, - ACTIONS(3007), 1, + ACTIONS(3035), 1, aux_sym_do_tuning_token1, - ACTIONS(3052), 1, + ACTIONS(3119), 1, anon_sym_COLON, - STATE(2215), 1, + STATE(2220), 1, aux_sym_do_block_repeat1, - STATE(2775), 1, + STATE(2892), 1, sym_stop_after_phrase, - STATE(2944), 1, + STATE(3074), 1, sym_do_tuning, - STATE(2193), 2, + STATE(2217), 2, sym_comment, sym_include, - STATE(4116), 3, + STATE(4456), 3, sym_on_error_phrase, sym_on_stop_phrase, sym_on_quit_phrase, - [108704] = 12, + [109600] = 12, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(3003), 1, + ACTIONS(3031), 1, aux_sym_on_error_phrase_token1, - ACTIONS(3005), 1, + ACTIONS(3033), 1, aux_sym_stop_after_phrase_token1, - ACTIONS(3007), 1, + ACTIONS(3035), 1, aux_sym_do_tuning_token1, - ACTIONS(3400), 1, + ACTIONS(3429), 1, anon_sym_COLON, - STATE(2208), 1, + STATE(2604), 1, aux_sym_do_block_repeat1, - STATE(2840), 1, + STATE(2898), 1, sym_stop_after_phrase, - STATE(2944), 1, + STATE(3074), 1, sym_do_tuning, - STATE(2194), 2, + STATE(2218), 2, sym_comment, sym_include, - STATE(4192), 3, + STATE(4541), 3, sym_on_error_phrase, sym_on_stop_phrase, sym_on_quit_phrase, - [108744] = 12, + [109640] = 13, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(3003), 1, + ACTIONS(2113), 1, aux_sym_on_error_phrase_token1, - ACTIONS(3005), 1, - aux_sym_stop_after_phrase_token1, - ACTIONS(3007), 1, - aux_sym_do_tuning_token1, - ACTIONS(3072), 1, - anon_sym_COLON, - STATE(2149), 1, - aux_sym_do_block_repeat1, - STATE(2784), 1, - sym_stop_after_phrase, - STATE(2944), 1, - sym_do_tuning, - STATE(2195), 2, - sym_comment, - sym_include, - STATE(4414), 3, + ACTIONS(2117), 1, + aux_sym_sort_clause_token1, + ACTIONS(2119), 1, + aux_sym_sort_clause_token2, + STATE(2544), 1, + aux_sym_for_phrase_repeat2, + STATE(2896), 1, sym_on_error_phrase, - sym_on_stop_phrase, + STATE(2934), 1, + sym_sort_clause, + STATE(3054), 1, sym_on_quit_phrase, - [108784] = 6, - ACTIONS(59), 1, - anon_sym_SLASH_SLASH, - ACTIONS(61), 1, - anon_sym_SLASH_STAR, - ACTIONS(65), 1, - anon_sym_LBRACE, - ACTIONS(3404), 1, - aux_sym_variable_definition_token2, - STATE(2196), 2, + STATE(3971), 1, + sym_on_stop_phrase, + ACTIONS(2614), 2, + anon_sym_COMMA, + anon_sym_COLON, + STATE(2219), 2, sym_comment, sym_include, - ACTIONS(3402), 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, - [108812] = 12, + [109682] = 12, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(3003), 1, + ACTIONS(3031), 1, aux_sym_on_error_phrase_token1, - ACTIONS(3005), 1, + ACTIONS(3033), 1, aux_sym_stop_after_phrase_token1, - ACTIONS(3007), 1, + ACTIONS(3035), 1, aux_sym_do_tuning_token1, - ACTIONS(3052), 1, + ACTIONS(3394), 1, anon_sym_COLON, - STATE(2608), 1, + STATE(2604), 1, aux_sym_do_block_repeat1, - STATE(2775), 1, + STATE(2902), 1, sym_stop_after_phrase, - STATE(2944), 1, + STATE(3074), 1, sym_do_tuning, - STATE(2197), 2, + STATE(2220), 2, sym_comment, sym_include, - STATE(4116), 3, + STATE(4356), 3, sym_on_error_phrase, sym_on_stop_phrase, sym_on_quit_phrase, - [108852] = 7, + [109722] = 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, - STATE(329), 1, - aux_sym_qualified_name_repeat1, - STATE(2198), 2, + ACTIONS(3031), 1, + aux_sym_on_error_phrase_token1, + ACTIONS(3033), 1, + aux_sym_stop_after_phrase_token1, + ACTIONS(3035), 1, + aux_sym_do_tuning_token1, + ACTIONS(3092), 1, + anon_sym_COLON, + STATE(2604), 1, + aux_sym_do_block_repeat1, + STATE(2858), 1, + sym_stop_after_phrase, + STATE(3074), 1, + sym_do_tuning, + STATE(2221), 2, sym_comment, sym_include, - ACTIONS(3406), 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, - [108882] = 13, + STATE(4391), 3, + sym_on_error_phrase, + sym_on_stop_phrase, + sym_on_quit_phrase, + [109762] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2109), 1, - aux_sym_on_error_phrase_token1, - ACTIONS(2113), 1, - aux_sym_sort_clause_token1, - ACTIONS(2115), 1, - aux_sym_sort_clause_token2, - STATE(2454), 1, - aux_sym_for_phrase_repeat2, - STATE(2783), 1, - sym_sort_clause, - STATE(2838), 1, - sym_on_error_phrase, - STATE(2979), 1, - sym_on_quit_phrase, - STATE(3876), 1, - sym_on_stop_phrase, - ACTIONS(2495), 2, - anon_sym_COMMA, - anon_sym_COLON, - STATE(2199), 2, + STATE(2222), 2, sym_comment, sym_include, - [108924] = 12, + ACTIONS(3431), 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, + [109788] = 12, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(3003), 1, + ACTIONS(3031), 1, aux_sym_on_error_phrase_token1, - ACTIONS(3005), 1, + ACTIONS(3033), 1, aux_sym_stop_after_phrase_token1, - ACTIONS(3007), 1, + ACTIONS(3035), 1, aux_sym_do_tuning_token1, - ACTIONS(3408), 1, + ACTIONS(3180), 1, anon_sym_COLON, - STATE(2608), 1, + STATE(2212), 1, aux_sym_do_block_repeat1, - STATE(2871), 1, + STATE(2803), 1, sym_stop_after_phrase, - STATE(2944), 1, + STATE(3074), 1, sym_do_tuning, - STATE(2200), 2, + STATE(2223), 2, sym_comment, sym_include, - STATE(4204), 3, + STATE(4577), 3, sym_on_error_phrase, sym_on_stop_phrase, sym_on_quit_phrase, - [108964] = 14, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - ACTIONS(7), 1, - anon_sym_LBRACE, - ACTIONS(789), 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(1311), 1, - aux_sym_widget_field_token1, - STATE(2466), 1, - aux_sym_on_statement_repeat2, - STATE(2710), 1, - aux_sym_on_statement_repeat1, - STATE(3194), 1, - sym_widget_phrase, - STATE(3430), 1, - sym_do_block, - STATE(4379), 1, - sym_label, - STATE(2201), 2, - sym_comment, - sym_include, - [109008] = 14, - ACTIONS(3), 1, + [109828] = 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(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(1332), 1, - aux_sym_widget_field_token1, - STATE(1059), 1, - sym_do_block, - STATE(2419), 1, - aux_sym_on_statement_repeat2, - STATE(2710), 1, - aux_sym_on_statement_repeat1, - STATE(3194), 1, - sym_widget_phrase, - STATE(4193), 1, - sym_label, - STATE(2202), 2, + ACTIONS(3029), 1, + aux_sym_while_phrase_token1, + ACTIONS(3338), 1, + aux_sym_repeat_tuning_token1, + ACTIONS(3340), 1, + aux_sym_on_error_phrase_token1, + ACTIONS(3433), 1, + anon_sym_COLON, + STATE(2416), 1, + sym_while_phrase, + STATE(2489), 1, + sym_on_error_phrase, + STATE(2653), 1, + sym_on_quit_phrase, + STATE(3062), 1, + aux_sym_repeat_statement_repeat1, + STATE(3077), 1, + sym_on_stop_phrase, + STATE(3672), 1, + sym_repeat_tuning, + STATE(2224), 2, sym_comment, sym_include, - [109052] = 6, + [109872] = 9, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(3412), 1, - aux_sym_variable_definition_token2, - STATE(2203), 2, - sym_comment, - sym_include, - ACTIONS(3410), 9, + ACTIONS(3435), 1, aux_sym__block_terminator_token1, - aux_sym_access_tuning_token1, - aux_sym_access_tuning_token2, - aux_sym_access_tuning_token3, + ACTIONS(3437), 1, aux_sym_variable_definition_token1, - aux_sym_getter_token1, - aux_sym_setter_token1, + ACTIONS(3440), 1, + aux_sym_variable_definition_token2, + ACTIONS(3443), 1, aux_sym_method_definition_token1, - aux_sym_constructor_definition_token1, - [109080] = 14, + STATE(2225), 3, + sym_comment, + sym_include, + aux_sym_interface_body_repeat1, + STATE(3046), 5, + sym_property_definition, + sym_event_definition, + sym_method_definition, + sym_dataset_definition, + sym_temp_table_definition, + [109906] = 14, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(789), 1, + ACTIONS(825), 1, aux_sym_do_block_token1, ACTIONS(1295), 1, sym_identifier, @@ -135375,213 +136686,106 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_input_expression_token2, ACTIONS(1299), 1, anon_sym_COMMA, - ACTIONS(1334), 1, + ACTIONS(1325), 1, aux_sym_widget_field_token1, - STATE(2433), 1, + STATE(2584), 1, aux_sym_on_statement_repeat2, - STATE(2710), 1, + STATE(2663), 1, aux_sym_on_statement_repeat1, - STATE(3194), 1, + STATE(3291), 1, sym_widget_phrase, - STATE(3407), 1, + STATE(3604), 1, sym_do_block, - STATE(4379), 1, + STATE(4453), 1, sym_label, - STATE(2204), 2, + STATE(2226), 2, sym_comment, sym_include, - [109124] = 6, + [109950] = 14, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(3416), 1, - aux_sym_variable_definition_token2, - STATE(2205), 2, - sym_comment, - sym_include, - ACTIONS(3414), 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, - [109152] = 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(901), 1, - anon_sym_LPAREN, - ACTIONS(3418), 1, - sym_identifier, - STATE(564), 1, - sym__decimal_literal, - STATE(586), 1, - sym_object_access, - STATE(587), 1, - sym__unary_minus_expressions, - STATE(2206), 2, + ACTIONS(3029), 1, + aux_sym_while_phrase_token1, + ACTIONS(3338), 1, + aux_sym_repeat_tuning_token1, + ACTIONS(3340), 1, + aux_sym_on_error_phrase_token1, + ACTIONS(3446), 1, + anon_sym_COLON, + STATE(2388), 1, + sym_while_phrase, + STATE(2549), 1, + sym_on_error_phrase, + STATE(2716), 1, + sym_on_quit_phrase, + STATE(2997), 1, + sym_on_stop_phrase, + STATE(3034), 1, + aux_sym_repeat_statement_repeat1, + STATE(3672), 1, + sym_repeat_tuning, + STATE(2227), 2, sym_comment, sym_include, - STATE(558), 4, - sym_qualified_name, - sym_number_literal, - sym_parenthesized_expression, - sym_function_call, - [109190] = 12, + [109994] = 10, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(3003), 1, - aux_sym_on_error_phrase_token1, - ACTIONS(3005), 1, - aux_sym_stop_after_phrase_token1, - ACTIONS(3007), 1, - aux_sym_do_tuning_token1, - ACTIONS(3084), 1, - anon_sym_COLON, - STATE(2137), 1, - aux_sym_do_block_repeat1, - STATE(2800), 1, - sym_stop_after_phrase, - STATE(2944), 1, - sym_do_tuning, - STATE(2207), 2, + ACTIONS(2626), 1, + aux_sym_method_definition_token1, + ACTIONS(3218), 1, + aux_sym_variable_definition_token1, + ACTIONS(3220), 1, + aux_sym_variable_definition_token2, + ACTIONS(3448), 1, + aux_sym__block_terminator_token1, + STATE(2225), 1, + aux_sym_interface_body_repeat1, + STATE(2228), 2, sym_comment, sym_include, - STATE(4150), 3, - sym_on_error_phrase, - sym_on_stop_phrase, - sym_on_quit_phrase, - [109230] = 12, + STATE(3046), 5, + sym_property_definition, + sym_event_definition, + sym_method_definition, + sym_dataset_definition, + sym_temp_table_definition, + [110030] = 12, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(3003), 1, + ACTIONS(3031), 1, aux_sym_on_error_phrase_token1, - ACTIONS(3005), 1, + ACTIONS(3033), 1, aux_sym_stop_after_phrase_token1, - ACTIONS(3007), 1, + ACTIONS(3035), 1, aux_sym_do_tuning_token1, - ACTIONS(3420), 1, + ACTIONS(3450), 1, anon_sym_COLON, - STATE(2608), 1, + STATE(2604), 1, aux_sym_do_block_repeat1, - STATE(2770), 1, + STATE(2943), 1, sym_stop_after_phrase, - STATE(2944), 1, + STATE(3074), 1, sym_do_tuning, - STATE(2208), 2, + STATE(2229), 2, sym_comment, sym_include, - STATE(4179), 3, + STATE(4482), 3, sym_on_error_phrase, sym_on_stop_phrase, sym_on_quit_phrase, - [109270] = 13, - ACTIONS(59), 1, - anon_sym_SLASH_SLASH, - ACTIONS(61), 1, - anon_sym_SLASH_STAR, - ACTIONS(65), 1, - anon_sym_LBRACE, - ACTIONS(2109), 1, - aux_sym_on_error_phrase_token1, - ACTIONS(2113), 1, - aux_sym_sort_clause_token1, - ACTIONS(2115), 1, - aux_sym_sort_clause_token2, - STATE(2454), 1, - aux_sym_for_phrase_repeat2, - STATE(2783), 1, - sym_sort_clause, - STATE(2857), 1, - sym_on_error_phrase, - STATE(2970), 1, - sym_on_quit_phrase, - STATE(3969), 1, - sym_on_stop_phrase, - ACTIONS(2449), 2, - anon_sym_COMMA, - anon_sym_COLON, - STATE(2209), 2, - sym_comment, - sym_include, - [109312] = 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(1295), 1, - sym_identifier, - ACTIONS(1297), 1, - aux_sym_input_expression_token2, - ACTIONS(1299), 1, - anon_sym_COMMA, - ACTIONS(1324), 1, - aux_sym_widget_field_token1, - STATE(1296), 1, - sym_do_block, - STATE(2499), 1, - aux_sym_on_statement_repeat2, - STATE(2710), 1, - aux_sym_on_statement_repeat1, - STATE(3194), 1, - sym_widget_phrase, - STATE(4253), 1, - sym_label, - STATE(2210), 2, - sym_comment, - sym_include, - [109356] = 11, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - ACTIONS(7), 1, - anon_sym_LBRACE, - ACTIONS(1081), 1, - sym__integer_literal, - ACTIONS(1087), 1, - anon_sym_LPAREN, - ACTIONS(3422), 1, - sym_identifier, - STATE(732), 1, - sym_object_access, - STATE(746), 1, - sym__unary_minus_expressions, - STATE(772), 1, - sym__decimal_literal, - STATE(2211), 2, - sym_comment, - sym_include, - STATE(745), 4, - sym_qualified_name, - sym_number_literal, - sym_parenthesized_expression, - sym_function_call, - [109394] = 14, + [110070] = 14, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, @@ -135596,142 +136800,112 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_input_expression_token2, ACTIONS(1299), 1, anon_sym_COMMA, - ACTIONS(1301), 1, + ACTIONS(3452), 1, aux_sym_widget_field_token1, - STATE(1082), 1, + STATE(1035), 1, sym_do_block, - STATE(2530), 1, - aux_sym_on_statement_repeat2, - STATE(2710), 1, - aux_sym_on_statement_repeat1, - STATE(3194), 1, - sym_widget_phrase, - STATE(4193), 1, - sym_label, - STATE(2212), 2, - sym_comment, - sym_include, - [109438] = 14, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - ACTIONS(7), 1, - anon_sym_LBRACE, - ACTIONS(789), 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(3424), 1, - aux_sym_widget_field_token1, - STATE(2462), 1, + STATE(2490), 1, aux_sym_on_statement_repeat2, - STATE(2710), 1, + STATE(2663), 1, aux_sym_on_statement_repeat1, - STATE(3194), 1, + STATE(3291), 1, sym_widget_phrase, - STATE(3396), 1, - sym_do_block, - STATE(4379), 1, + STATE(4243), 1, sym_label, - STATE(2213), 2, - sym_comment, - sym_include, - [109482] = 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(2214), 2, + STATE(2230), 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, - [109510] = 12, + [110114] = 12, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(3003), 1, + ACTIONS(3031), 1, aux_sym_on_error_phrase_token1, - ACTIONS(3005), 1, + ACTIONS(3033), 1, aux_sym_stop_after_phrase_token1, - ACTIONS(3007), 1, + ACTIONS(3035), 1, aux_sym_do_tuning_token1, - ACTIONS(3084), 1, + ACTIONS(3334), 1, anon_sym_COLON, - STATE(2608), 1, + STATE(2604), 1, aux_sym_do_block_repeat1, - STATE(2800), 1, + STATE(2886), 1, sym_stop_after_phrase, - STATE(2944), 1, + STATE(3074), 1, sym_do_tuning, - STATE(2215), 2, + STATE(2231), 2, sym_comment, sym_include, - STATE(4150), 3, + STATE(4303), 3, sym_on_error_phrase, sym_on_stop_phrase, sym_on_quit_phrase, - [109550] = 12, + [110154] = 12, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(3003), 1, + ACTIONS(3031), 1, aux_sym_on_error_phrase_token1, - ACTIONS(3005), 1, + ACTIONS(3033), 1, aux_sym_stop_after_phrase_token1, - ACTIONS(3007), 1, + ACTIONS(3035), 1, aux_sym_do_tuning_token1, - ACTIONS(3328), 1, + ACTIONS(3092), 1, anon_sym_COLON, - STATE(2200), 1, + STATE(2183), 1, aux_sym_do_block_repeat1, - STATE(2835), 1, + STATE(2858), 1, sym_stop_after_phrase, - STATE(2944), 1, + STATE(3074), 1, sym_do_tuning, - STATE(2216), 2, + STATE(2232), 2, sym_comment, sym_include, - STATE(4178), 3, + STATE(4391), 3, sym_on_error_phrase, sym_on_stop_phrase, sym_on_quit_phrase, - [109590] = 6, + [110194] = 6, + ACTIONS(59), 1, + anon_sym_SLASH_SLASH, + ACTIONS(61), 1, + anon_sym_SLASH_STAR, + ACTIONS(65), 1, + anon_sym_LBRACE, + ACTIONS(3456), 1, + aux_sym_variable_definition_token2, + STATE(2233), 2, + sym_comment, + sym_include, + ACTIONS(3454), 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, + [110222] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(3432), 1, + ACTIONS(3460), 1, aux_sym_variable_definition_token2, - STATE(2217), 2, + STATE(2234), 2, sym_comment, sym_include, - ACTIONS(3430), 9, + ACTIONS(3458), 9, aux_sym__block_terminator_token1, aux_sym_access_tuning_token1, aux_sym_access_tuning_token2, @@ -135741,97 +136915,112 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_setter_token1, aux_sym_method_definition_token1, aux_sym_constructor_definition_token1, - [109618] = 6, + [110250] = 14, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(104), 1, - sym__namedot, - STATE(2218), 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(1317), 1, + aux_sym_widget_field_token1, + STATE(1514), 1, + sym_do_block, + STATE(2519), 1, + aux_sym_on_statement_repeat2, + STATE(2663), 1, + aux_sym_on_statement_repeat1, + STATE(3291), 1, + sym_widget_phrase, + STATE(4362), 1, + sym_label, + STATE(2235), 2, sym_comment, sym_include, - ACTIONS(102), 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, - [109645] = 6, + [110294] = 11, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(3434), 1, - aux_sym_function_call_token1, - STATE(2219), 2, + ACTIONS(1009), 1, + sym__integer_literal, + ACTIONS(1015), 1, + anon_sym_LPAREN, + ACTIONS(3462), 1, + sym_identifier, + STATE(740), 1, + sym_object_access, + STATE(754), 1, + sym__unary_minus_expressions, + STATE(770), 1, + sym__decimal_literal, + STATE(2236), 2, sym_comment, sym_include, - ACTIONS(213), 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, - [109672] = 9, + STATE(752), 4, + sym_qualified_name, + sym_number_literal, + sym_parenthesized_expression, + sym_function_call, + [110332] = 9, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(3436), 1, + ACTIONS(1201), 1, + aux_sym_query_tuning_token5, + ACTIONS(3464), 1, sym__terminator, - ACTIONS(3440), 1, - aux_sym_variable_tuning_token6, - STATE(2274), 1, - aux_sym_variable_definition_repeat2, - STATE(2520), 1, - sym_variable_tuning, - STATE(2220), 2, + STATE(1948), 1, + aux_sym_for_phrase_repeat1, + STATE(2019), 1, + sym_query_tuning, + STATE(2237), 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, - [109705] = 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, + [110365] = 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(3442), 1, + ACTIONS(3466), 1, sym__terminator, - STATE(2311), 1, + ACTIONS(3470), 1, + aux_sym_variable_tuning_token6, + STATE(2341), 1, aux_sym_variable_definition_repeat2, - STATE(2520), 1, + STATE(2581), 1, sym_variable_tuning, - STATE(2221), 2, + STATE(2238), 2, sym_comment, sym_include, - ACTIONS(3438), 5, + ACTIONS(3468), 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, - [109738] = 9, + [110398] = 9, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, @@ -135840,13 +137029,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, ACTIONS(1201), 1, aux_sym_query_tuning_token5, - ACTIONS(3226), 1, + ACTIONS(3310), 1, sym__terminator, - STATE(1953), 1, - sym_query_tuning, - STATE(2272), 1, + STATE(1948), 1, aux_sym_for_phrase_repeat1, - STATE(2222), 2, + STATE(2019), 1, + sym_query_tuning, + STATE(2239), 2, sym_comment, sym_include, ACTIONS(1195), 5, @@ -135855,31 +137044,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_query_tuning_token2, aux_sym_query_tuning_token3, aux_sym_query_tuning_token4, - [109771] = 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(3444), 1, - sym__terminator, - STATE(2311), 1, - aux_sym_variable_definition_repeat2, - STATE(2520), 1, - sym_variable_tuning, - STATE(2223), 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, - [109804] = 9, + [110431] = 9, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, @@ -135888,13 +137053,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, ACTIONS(1201), 1, aux_sym_query_tuning_token5, - ACTIONS(3226), 1, + ACTIONS(3098), 1, sym__terminator, - STATE(1935), 1, + STATE(1948), 1, aux_sym_for_phrase_repeat1, - STATE(1953), 1, + STATE(2019), 1, sym_query_tuning, - STATE(2224), 2, + STATE(2240), 2, sym_comment, sym_include, ACTIONS(1195), 5, @@ -135903,7 +137068,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_query_tuning_token2, aux_sym_query_tuning_token3, aux_sym_query_tuning_token4, - [109837] = 9, + [110464] = 9, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, @@ -135912,13 +137077,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, ACTIONS(1201), 1, aux_sym_query_tuning_token5, - ACTIONS(3446), 1, + ACTIONS(3109), 1, sym__terminator, - STATE(1953), 1, + STATE(2019), 1, sym_query_tuning, - STATE(2271), 1, + STATE(2263), 1, aux_sym_for_phrase_repeat1, - STATE(2225), 2, + STATE(2241), 2, sym_comment, sym_include, ACTIONS(1195), 5, @@ -135927,7 +137092,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_query_tuning_token2, aux_sym_query_tuning_token3, aux_sym_query_tuning_token4, - [109870] = 9, + [110497] = 9, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, @@ -135936,13 +137101,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, ACTIONS(1201), 1, aux_sym_query_tuning_token5, - ACTIONS(3448), 1, + ACTIONS(3472), 1, sym__terminator, - STATE(1953), 1, - sym_query_tuning, - STATE(2298), 1, + STATE(1948), 1, aux_sym_for_phrase_repeat1, - STATE(2226), 2, + STATE(2019), 1, + sym_query_tuning, + STATE(2242), 2, sym_comment, sym_include, ACTIONS(1195), 5, @@ -135951,7 +137116,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_query_tuning_token2, aux_sym_query_tuning_token3, aux_sym_query_tuning_token4, - [109903] = 9, + [110530] = 9, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, @@ -135960,13 +137125,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, ACTIONS(1201), 1, aux_sym_query_tuning_token5, - ACTIONS(3448), 1, + ACTIONS(3098), 1, sym__terminator, - STATE(1935), 1, - aux_sym_for_phrase_repeat1, - STATE(1953), 1, + STATE(2019), 1, sym_query_tuning, - STATE(2227), 2, + STATE(2336), 1, + aux_sym_for_phrase_repeat1, + STATE(2243), 2, sym_comment, sym_include, ACTIONS(1195), 5, @@ -135975,7 +137140,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_query_tuning_token2, aux_sym_query_tuning_token3, aux_sym_query_tuning_token4, - [109936] = 9, + [110563] = 9, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, @@ -135984,13 +137149,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, ACTIONS(1201), 1, aux_sym_query_tuning_token5, - ACTIONS(3446), 1, + ACTIONS(3194), 1, sym__terminator, - STATE(1935), 1, - aux_sym_for_phrase_repeat1, - STATE(1953), 1, + STATE(2019), 1, sym_query_tuning, - STATE(2228), 2, + STATE(2271), 1, + aux_sym_for_phrase_repeat1, + STATE(2244), 2, sym_comment, sym_include, ACTIONS(1195), 5, @@ -135999,7 +137164,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_query_tuning_token2, aux_sym_query_tuning_token3, aux_sym_query_tuning_token4, - [109969] = 9, + [110596] = 9, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, @@ -136008,13 +137173,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, ACTIONS(1201), 1, aux_sym_query_tuning_token5, - ACTIONS(3450), 1, + ACTIONS(3472), 1, sym__terminator, - STATE(1935), 1, - aux_sym_for_phrase_repeat1, - STATE(1953), 1, + STATE(2019), 1, sym_query_tuning, - STATE(2229), 2, + STATE(2312), 1, + aux_sym_for_phrase_repeat1, + STATE(2245), 2, sym_comment, sym_include, ACTIONS(1195), 5, @@ -136023,31 +137188,31 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_query_tuning_token2, aux_sym_query_tuning_token3, aux_sym_query_tuning_token4, - [110002] = 9, + [110629] = 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(3452), 1, + ACTIONS(1201), 1, + aux_sym_query_tuning_token5, + ACTIONS(3300), 1, sym__terminator, - STATE(2311), 1, - aux_sym_variable_definition_repeat2, - STATE(2520), 1, - sym_variable_tuning, - STATE(2230), 2, + STATE(1948), 1, + aux_sym_for_phrase_repeat1, + STATE(2019), 1, + sym_query_tuning, + STATE(2246), 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, - [110035] = 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, + [110662] = 9, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, @@ -136056,13 +137221,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, ACTIONS(1201), 1, aux_sym_query_tuning_token5, - ACTIONS(3277), 1, + ACTIONS(3300), 1, sym__terminator, - STATE(1953), 1, + STATE(2019), 1, sym_query_tuning, - STATE(2324), 1, + STATE(2319), 1, aux_sym_for_phrase_repeat1, - STATE(2231), 2, + STATE(2247), 2, sym_comment, sym_include, ACTIONS(1195), 5, @@ -136071,7 +137236,31 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_query_tuning_token2, aux_sym_query_tuning_token3, aux_sym_query_tuning_token4, - [110068] = 9, + [110695] = 9, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_LBRACE, + ACTIONS(3474), 1, + sym_identifier, + STATE(3052), 1, + sym_sort_column, + STATE(4589), 1, + sym_object_access, + STATE(2345), 2, + sym_qualified_name, + sym_function_call, + ACTIONS(3261), 3, + sym__terminator, + aux_sym_field_definition_token1, + aux_sym_index_definition_token1, + STATE(2248), 3, + sym_comment, + sym_include, + aux_sym_sort_clause_repeat1, + [110728] = 9, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, @@ -136080,13 +137269,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, ACTIONS(1201), 1, aux_sym_query_tuning_token5, - ACTIONS(3129), 1, + ACTIONS(3304), 1, sym__terminator, - STATE(1953), 1, + STATE(2019), 1, sym_query_tuning, - STATE(2318), 1, + STATE(2297), 1, aux_sym_for_phrase_repeat1, - STATE(2232), 2, + STATE(2249), 2, sym_comment, sym_include, ACTIONS(1195), 5, @@ -136095,7 +137284,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_query_tuning_token2, aux_sym_query_tuning_token3, aux_sym_query_tuning_token4, - [110101] = 9, + [110761] = 9, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, @@ -136104,13 +137293,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, ACTIONS(1201), 1, aux_sym_query_tuning_token5, - ACTIONS(3454), 1, + ACTIONS(3194), 1, sym__terminator, - STATE(1935), 1, + STATE(1948), 1, aux_sym_for_phrase_repeat1, - STATE(1953), 1, + STATE(2019), 1, sym_query_tuning, - STATE(2233), 2, + STATE(2250), 2, sym_comment, sym_include, ACTIONS(1195), 5, @@ -136119,7 +137308,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_query_tuning_token2, aux_sym_query_tuning_token3, aux_sym_query_tuning_token4, - [110134] = 9, + [110794] = 9, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, @@ -136128,13 +137317,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, ACTIONS(1201), 1, aux_sym_query_tuning_token5, - ACTIONS(3456), 1, + ACTIONS(3477), 1, sym__terminator, - STATE(1935), 1, + STATE(1948), 1, aux_sym_for_phrase_repeat1, - STATE(1953), 1, + STATE(2019), 1, sym_query_tuning, - STATE(2234), 2, + STATE(2251), 2, sym_comment, sym_include, ACTIONS(1195), 5, @@ -136143,7 +137332,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_query_tuning_token2, aux_sym_query_tuning_token3, aux_sym_query_tuning_token4, - [110167] = 9, + [110827] = 9, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, @@ -136152,13 +137341,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, ACTIONS(1201), 1, aux_sym_query_tuning_token5, - ACTIONS(3458), 1, + ACTIONS(3084), 1, sym__terminator, - STATE(1935), 1, + STATE(1948), 1, aux_sym_for_phrase_repeat1, - STATE(1953), 1, + STATE(2019), 1, sym_query_tuning, - STATE(2235), 2, + STATE(2252), 2, sym_comment, sym_include, ACTIONS(1195), 5, @@ -136167,7 +137356,31 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_query_tuning_token2, aux_sym_query_tuning_token3, aux_sym_query_tuning_token4, - [110200] = 9, + [110860] = 9, + ACTIONS(59), 1, + anon_sym_SLASH_SLASH, + ACTIONS(61), 1, + anon_sym_SLASH_STAR, + ACTIONS(65), 1, + anon_sym_LBRACE, + ACTIONS(3470), 1, + aux_sym_variable_tuning_token6, + ACTIONS(3479), 1, + sym__terminator, + STATE(2332), 1, + aux_sym_variable_definition_repeat2, + STATE(2581), 1, + sym_variable_tuning, + STATE(2253), 2, + sym_comment, + sym_include, + ACTIONS(3468), 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, + [110893] = 9, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, @@ -136176,13 +137389,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, ACTIONS(1201), 1, aux_sym_query_tuning_token5, - ACTIONS(3460), 1, + ACTIONS(3084), 1, sym__terminator, - STATE(1953), 1, + STATE(2019), 1, sym_query_tuning, - STATE(2281), 1, + STATE(2239), 1, aux_sym_for_phrase_repeat1, - STATE(2236), 2, + STATE(2254), 2, sym_comment, sym_include, ACTIONS(1195), 5, @@ -136191,7 +137404,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_query_tuning_token2, aux_sym_query_tuning_token3, aux_sym_query_tuning_token4, - [110233] = 9, + [110926] = 9, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, @@ -136200,13 +137413,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, ACTIONS(1201), 1, aux_sym_query_tuning_token5, - ACTIONS(3460), 1, + ACTIONS(3304), 1, sym__terminator, - STATE(1935), 1, + STATE(1948), 1, aux_sym_for_phrase_repeat1, - STATE(1953), 1, + STATE(2019), 1, sym_query_tuning, - STATE(2237), 2, + STATE(2255), 2, sym_comment, sym_include, ACTIONS(1195), 5, @@ -136215,7 +137428,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_query_tuning_token2, aux_sym_query_tuning_token3, aux_sym_query_tuning_token4, - [110266] = 9, + [110959] = 9, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, @@ -136224,13 +137437,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, ACTIONS(1201), 1, aux_sym_query_tuning_token5, - ACTIONS(3462), 1, + ACTIONS(3464), 1, sym__terminator, - STATE(1935), 1, - aux_sym_for_phrase_repeat1, - STATE(1953), 1, + STATE(2019), 1, sym_query_tuning, - STATE(2238), 2, + STATE(2317), 1, + aux_sym_for_phrase_repeat1, + STATE(2256), 2, sym_comment, sym_include, ACTIONS(1195), 5, @@ -136239,79 +137452,77 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_query_tuning_token2, aux_sym_query_tuning_token3, aux_sym_query_tuning_token4, - [110299] = 9, + [110992] = 7, 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(3464), 1, - sym__terminator, - STATE(2244), 1, - aux_sym_variable_definition_repeat2, - STATE(2520), 1, - sym_variable_tuning, - STATE(2239), 2, + ACTIONS(3240), 1, + anon_sym_COMMA, + STATE(2286), 1, + aux_sym_inherits_repeat1, + STATE(2257), 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, - [110332] = 9, + ACTIONS(3481), 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, + [111021] = 9, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(3440), 1, + ACTIONS(3470), 1, aux_sym_variable_tuning_token6, - ACTIONS(3466), 1, + ACTIONS(3483), 1, sym__terminator, - STATE(2287), 1, + STATE(2332), 1, aux_sym_variable_definition_repeat2, - STATE(2520), 1, + STATE(2581), 1, sym_variable_tuning, - STATE(2240), 2, + STATE(2258), 2, sym_comment, sym_include, - ACTIONS(3438), 5, + ACTIONS(3468), 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, - [110365] = 9, + [111054] = 9, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(3440), 1, + ACTIONS(3470), 1, aux_sym_variable_tuning_token6, - ACTIONS(3468), 1, + ACTIONS(3485), 1, sym__terminator, - STATE(2291), 1, + STATE(2332), 1, aux_sym_variable_definition_repeat2, - STATE(2520), 1, + STATE(2581), 1, sym_variable_tuning, - STATE(2241), 2, + STATE(2259), 2, sym_comment, sym_include, - ACTIONS(3438), 5, + ACTIONS(3468), 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, - [110398] = 9, + [111087] = 9, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, @@ -136320,13 +137531,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, ACTIONS(1201), 1, aux_sym_query_tuning_token5, - ACTIONS(3456), 1, + ACTIONS(3298), 1, sym__terminator, - STATE(1953), 1, - sym_query_tuning, - STATE(2238), 1, + STATE(1948), 1, aux_sym_for_phrase_repeat1, - STATE(2242), 2, + STATE(2019), 1, + sym_query_tuning, + STATE(2260), 2, sym_comment, sym_include, ACTIONS(1195), 5, @@ -136335,7 +137546,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_query_tuning_token2, aux_sym_query_tuning_token3, aux_sym_query_tuning_token4, - [110431] = 9, + [111120] = 9, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, @@ -136344,13 +137555,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, ACTIONS(1201), 1, aux_sym_query_tuning_token5, - ACTIONS(3009), 1, + ACTIONS(3298), 1, sym__terminator, - STATE(1935), 1, - aux_sym_for_phrase_repeat1, - STATE(1953), 1, + STATE(2019), 1, sym_query_tuning, - STATE(2243), 2, + STATE(2320), 1, + aux_sym_for_phrase_repeat1, + STATE(2261), 2, sym_comment, sym_include, ACTIONS(1195), 5, @@ -136359,31 +137570,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_query_tuning_token2, aux_sym_query_tuning_token3, aux_sym_query_tuning_token4, - [110464] = 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(3470), 1, - sym__terminator, - STATE(2311), 1, - aux_sym_variable_definition_repeat2, - STATE(2520), 1, - sym_variable_tuning, - STATE(2244), 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, - [110497] = 9, + [111153] = 9, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, @@ -136392,13 +137579,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, ACTIONS(1201), 1, aux_sym_query_tuning_token5, - ACTIONS(3009), 1, + ACTIONS(3107), 1, sym__terminator, - STATE(1953), 1, + STATE(2019), 1, sym_query_tuning, - STATE(2224), 1, + STATE(2314), 1, aux_sym_for_phrase_repeat1, - STATE(2245), 2, + STATE(2262), 2, sym_comment, sym_include, ACTIONS(1195), 5, @@ -136407,7 +137594,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_query_tuning_token2, aux_sym_query_tuning_token3, aux_sym_query_tuning_token4, - [110530] = 9, + [111186] = 9, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, @@ -136416,13 +137603,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, ACTIONS(1201), 1, aux_sym_query_tuning_token5, - ACTIONS(3214), 1, + ACTIONS(3312), 1, sym__terminator, - STATE(1953), 1, - sym_query_tuning, - STATE(2228), 1, + STATE(1948), 1, aux_sym_for_phrase_repeat1, - STATE(2246), 2, + STATE(2019), 1, + sym_query_tuning, + STATE(2263), 2, sym_comment, sym_include, ACTIONS(1195), 5, @@ -136431,7 +137618,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_query_tuning_token2, aux_sym_query_tuning_token3, aux_sym_query_tuning_token4, - [110563] = 9, + [111219] = 9, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, @@ -136440,13 +137627,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, ACTIONS(1201), 1, aux_sym_query_tuning_token5, - ACTIONS(3074), 1, + ACTIONS(3312), 1, sym__terminator, - STATE(1935), 1, - aux_sym_for_phrase_repeat1, - STATE(1953), 1, + STATE(2019), 1, sym_query_tuning, - STATE(2247), 2, + STATE(2237), 1, + aux_sym_for_phrase_repeat1, + STATE(2264), 2, sym_comment, sym_include, ACTIONS(1195), 5, @@ -136455,55 +137642,123 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_query_tuning_token2, aux_sym_query_tuning_token3, aux_sym_query_tuning_token4, - [110596] = 9, + [111252] = 9, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(3440), 1, + ACTIONS(3470), 1, aux_sym_variable_tuning_token6, - ACTIONS(3472), 1, + ACTIONS(3487), 1, sym__terminator, - STATE(2337), 1, + STATE(2332), 1, aux_sym_variable_definition_repeat2, - STATE(2520), 1, + STATE(2581), 1, sym_variable_tuning, - STATE(2248), 2, + STATE(2265), 2, sym_comment, sym_include, - ACTIONS(3438), 5, + ACTIONS(3468), 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, - [110629] = 9, + [111285] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(3440), 1, + STATE(2266), 2, + sym_comment, + sym_include, + ACTIONS(1338), 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, + [111310] = 9, + ACTIONS(59), 1, + anon_sym_SLASH_SLASH, + ACTIONS(61), 1, + anon_sym_SLASH_STAR, + ACTIONS(65), 1, + anon_sym_LBRACE, + ACTIONS(3470), 1, aux_sym_variable_tuning_token6, - ACTIONS(3474), 1, + ACTIONS(3489), 1, sym__terminator, STATE(2332), 1, aux_sym_variable_definition_repeat2, - STATE(2520), 1, + STATE(2581), 1, sym_variable_tuning, - STATE(2249), 2, + STATE(2267), 2, sym_comment, sym_include, - ACTIONS(3438), 5, + ACTIONS(3468), 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, - [110662] = 9, + [111343] = 9, + ACTIONS(59), 1, + anon_sym_SLASH_SLASH, + ACTIONS(61), 1, + anon_sym_SLASH_STAR, + ACTIONS(65), 1, + anon_sym_LBRACE, + ACTIONS(3470), 1, + aux_sym_variable_tuning_token6, + ACTIONS(3491), 1, + sym__terminator, + STATE(2352), 1, + aux_sym_variable_definition_repeat2, + STATE(2581), 1, + sym_variable_tuning, + STATE(2268), 2, + sym_comment, + sym_include, + ACTIONS(3468), 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, + [111376] = 9, + ACTIONS(59), 1, + anon_sym_SLASH_SLASH, + ACTIONS(61), 1, + anon_sym_SLASH_STAR, + ACTIONS(65), 1, + anon_sym_LBRACE, + ACTIONS(3470), 1, + aux_sym_variable_tuning_token6, + ACTIONS(3493), 1, + sym__terminator, + STATE(2354), 1, + aux_sym_variable_definition_repeat2, + STATE(2581), 1, + sym_variable_tuning, + STATE(2269), 2, + sym_comment, + sym_include, + ACTIONS(3468), 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, + [111409] = 9, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, @@ -136512,13 +137767,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, ACTIONS(1201), 1, aux_sym_query_tuning_token5, - ACTIONS(3214), 1, + ACTIONS(3109), 1, sym__terminator, - STATE(1935), 1, + STATE(1948), 1, aux_sym_for_phrase_repeat1, - STATE(1953), 1, + STATE(2019), 1, sym_query_tuning, - STATE(2250), 2, + STATE(2270), 2, sym_comment, sym_include, ACTIONS(1195), 5, @@ -136527,7 +137782,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_query_tuning_token2, aux_sym_query_tuning_token3, aux_sym_query_tuning_token4, - [110695] = 9, + [111442] = 9, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, @@ -136536,13 +137791,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, ACTIONS(1201), 1, aux_sym_query_tuning_token5, - ACTIONS(3204), 1, + ACTIONS(3285), 1, sym__terminator, - STATE(1935), 1, + STATE(1948), 1, aux_sym_for_phrase_repeat1, - STATE(1953), 1, + STATE(2019), 1, sym_query_tuning, - STATE(2251), 2, + STATE(2271), 2, sym_comment, sym_include, ACTIONS(1195), 5, @@ -136551,7 +137806,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_query_tuning_token2, aux_sym_query_tuning_token3, aux_sym_query_tuning_token4, - [110728] = 9, + [111475] = 9, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, @@ -136560,13 +137815,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, ACTIONS(1201), 1, aux_sym_query_tuning_token5, - ACTIONS(3250), 1, + ACTIONS(3107), 1, sym__terminator, - STATE(1935), 1, + STATE(1948), 1, aux_sym_for_phrase_repeat1, - STATE(1953), 1, + STATE(2019), 1, sym_query_tuning, - STATE(2252), 2, + STATE(2272), 2, sym_comment, sym_include, ACTIONS(1195), 5, @@ -136575,151 +137830,244 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_query_tuning_token2, aux_sym_query_tuning_token3, aux_sym_query_tuning_token4, - [110761] = 9, + [111508] = 9, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(3440), 1, + ACTIONS(1201), 1, + aux_sym_query_tuning_token5, + ACTIONS(3285), 1, + sym__terminator, + STATE(2019), 1, + sym_query_tuning, + STATE(2303), 1, + aux_sym_for_phrase_repeat1, + STATE(2273), 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, + [111541] = 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(3198), 1, + sym__terminator, + STATE(2019), 1, + sym_query_tuning, + STATE(2305), 1, + aux_sym_for_phrase_repeat1, + STATE(2274), 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, + [111574] = 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(3198), 1, + sym__terminator, + STATE(1948), 1, + aux_sym_for_phrase_repeat1, + STATE(2019), 1, + sym_query_tuning, + STATE(2275), 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, + [111607] = 9, + ACTIONS(59), 1, + anon_sym_SLASH_SLASH, + ACTIONS(61), 1, + anon_sym_SLASH_STAR, + ACTIONS(65), 1, + anon_sym_LBRACE, + ACTIONS(3470), 1, aux_sym_variable_tuning_token6, - ACTIONS(3476), 1, + ACTIONS(3495), 1, sym__terminator, - STATE(2275), 1, + STATE(2309), 1, aux_sym_variable_definition_repeat2, - STATE(2520), 1, + STATE(2581), 1, sym_variable_tuning, - STATE(2253), 2, + STATE(2276), 2, sym_comment, sym_include, - ACTIONS(3438), 5, + ACTIONS(3468), 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, - [110794] = 9, + [111640] = 9, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(3440), 1, + ACTIONS(3470), 1, aux_sym_variable_tuning_token6, - ACTIONS(3478), 1, + ACTIONS(3497), 1, sym__terminator, - STATE(2279), 1, + STATE(2259), 1, aux_sym_variable_definition_repeat2, - STATE(2520), 1, + STATE(2581), 1, sym_variable_tuning, - STATE(2254), 2, + STATE(2277), 2, sym_comment, sym_include, - ACTIONS(3438), 5, + ACTIONS(3468), 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, - [110827] = 9, + [111673] = 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(3480), 1, + ACTIONS(3470), 1, + aux_sym_variable_tuning_token6, + ACTIONS(3499), 1, sym__terminator, - STATE(1953), 1, - sym_query_tuning, - STATE(2235), 1, - aux_sym_for_phrase_repeat1, - STATE(2255), 2, + STATE(2258), 1, + aux_sym_variable_definition_repeat2, + STATE(2581), 1, + sym_variable_tuning, + STATE(2278), 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, - [110860] = 9, + ACTIONS(3468), 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, + [111706] = 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(3250), 1, + ACTIONS(3470), 1, + aux_sym_variable_tuning_token6, + ACTIONS(3501), 1, sym__terminator, - STATE(1953), 1, - sym_query_tuning, - STATE(2237), 1, - aux_sym_for_phrase_repeat1, - STATE(2256), 2, + STATE(2310), 1, + aux_sym_variable_definition_repeat2, + STATE(2581), 1, + sym_variable_tuning, + STATE(2279), 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, - [110893] = 9, + ACTIONS(3468), 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, + [111739] = 9, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(3440), 1, + ACTIONS(3470), 1, aux_sym_variable_tuning_token6, - ACTIONS(3482), 1, + ACTIONS(3503), 1, sym__terminator, - STATE(2311), 1, + STATE(2328), 1, aux_sym_variable_definition_repeat2, - STATE(2520), 1, + STATE(2581), 1, sym_variable_tuning, - STATE(2257), 2, + STATE(2280), 2, sym_comment, sym_include, - ACTIONS(3438), 5, + ACTIONS(3468), 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, - [110926] = 9, + [111772] = 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(2281), 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, + [111799] = 9, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(3440), 1, + ACTIONS(3470), 1, aux_sym_variable_tuning_token6, - ACTIONS(3484), 1, + ACTIONS(3505), 1, sym__terminator, - STATE(2311), 1, + STATE(2330), 1, aux_sym_variable_definition_repeat2, - STATE(2520), 1, + STATE(2581), 1, sym_variable_tuning, - STATE(2258), 2, + STATE(2282), 2, sym_comment, sym_include, - ACTIONS(3438), 5, + ACTIONS(3468), 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, - [110959] = 9, + [111832] = 9, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, @@ -136728,13 +138076,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, ACTIONS(1201), 1, aux_sym_query_tuning_token5, - ACTIONS(3480), 1, + ACTIONS(3507), 1, sym__terminator, - STATE(1935), 1, - aux_sym_for_phrase_repeat1, - STATE(1953), 1, + STATE(2019), 1, sym_query_tuning, - STATE(2259), 2, + STATE(2251), 1, + aux_sym_for_phrase_repeat1, + STATE(2283), 2, sym_comment, sym_include, ACTIONS(1195), 5, @@ -136743,29 +138091,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_query_tuning_token2, aux_sym_query_tuning_token3, aux_sym_query_tuning_token4, - [110992] = 7, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - ACTIONS(7), 1, - anon_sym_LBRACE, - STATE(3056), 1, - sym_sort_order, - STATE(2260), 2, - sym_comment, - sym_include, - ACTIONS(2742), 4, - sym_identifier, - sym__terminator, - aux_sym_field_definition_token1, - aux_sym_index_definition_token1, - ACTIONS(2936), 4, - aux_sym_sort_order_token1, - aux_sym_sort_order_token2, - aux_sym_sort_order_token3, - aux_sym_sort_order_token4, - [111021] = 9, + [111865] = 9, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, @@ -136774,13 +138100,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, ACTIONS(1201), 1, aux_sym_query_tuning_token5, - ACTIONS(3277), 1, + ACTIONS(3507), 1, sym__terminator, - STATE(1935), 1, + STATE(1948), 1, aux_sym_for_phrase_repeat1, - STATE(1953), 1, + STATE(2019), 1, sym_query_tuning, - STATE(2261), 2, + STATE(2284), 2, sym_comment, sym_include, ACTIONS(1195), 5, @@ -136789,7 +138115,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_query_tuning_token2, aux_sym_query_tuning_token3, aux_sym_query_tuning_token4, - [111054] = 9, + [111898] = 9, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, @@ -136798,13 +138124,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, ACTIONS(1201), 1, aux_sym_query_tuning_token5, - ACTIONS(3486), 1, + ACTIONS(3509), 1, sym__terminator, - STATE(1935), 1, + STATE(1948), 1, aux_sym_for_phrase_repeat1, - STATE(1953), 1, + STATE(2019), 1, sym_query_tuning, - STATE(2262), 2, + STATE(2285), 2, sym_comment, sym_include, ACTIONS(1195), 5, @@ -136813,21 +138139,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_query_tuning_token2, aux_sym_query_tuning_token3, aux_sym_query_tuning_token4, - [111087] = 7, + [111931] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(3254), 1, + ACTIONS(3511), 1, anon_sym_COMMA, - STATE(2328), 1, - aux_sym_inherits_repeat1, - STATE(2263), 2, + STATE(2286), 3, sym_comment, sym_include, - ACTIONS(3252), 7, + aux_sym_inherits_repeat1, + ACTIONS(3332), 7, aux_sym_serialization_tuning_token1, anon_sym_COLON, aux_sym_property_type_token1, @@ -136835,7 +138160,31 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_inherits_token1, aux_sym_implements_token1, aux_sym_use_widget_pool_token1, - [111116] = 9, + [111958] = 9, + ACTIONS(59), 1, + anon_sym_SLASH_SLASH, + ACTIONS(61), 1, + anon_sym_SLASH_STAR, + ACTIONS(65), 1, + anon_sym_LBRACE, + ACTIONS(3470), 1, + aux_sym_variable_tuning_token6, + ACTIONS(3514), 1, + sym__terminator, + STATE(2331), 1, + aux_sym_variable_definition_repeat2, + STATE(2581), 1, + sym_variable_tuning, + STATE(2287), 2, + sym_comment, + sym_include, + ACTIONS(3468), 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, + [111991] = 9, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, @@ -136844,13 +138193,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, ACTIONS(1201), 1, aux_sym_query_tuning_token5, - ACTIONS(3204), 1, + ACTIONS(3516), 1, sym__terminator, - STATE(1953), 1, + STATE(2019), 1, sym_query_tuning, - STATE(2310), 1, + STATE(2285), 1, aux_sym_for_phrase_repeat1, - STATE(2264), 2, + STATE(2288), 2, sym_comment, sym_include, ACTIONS(1195), 5, @@ -136859,51 +138208,55 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_query_tuning_token2, aux_sym_query_tuning_token3, aux_sym_query_tuning_token4, - [111149] = 9, + [112024] = 9, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(3440), 1, + ACTIONS(3470), 1, aux_sym_variable_tuning_token6, - ACTIONS(3488), 1, + ACTIONS(3518), 1, sym__terminator, - STATE(2311), 1, + STATE(2332), 1, aux_sym_variable_definition_repeat2, - STATE(2520), 1, + STATE(2581), 1, sym_variable_tuning, - STATE(2265), 2, + STATE(2289), 2, sym_comment, sym_include, - ACTIONS(3438), 5, + ACTIONS(3468), 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, - [111182] = 5, + [112057] = 9, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - STATE(2266), 2, + ACTIONS(3470), 1, + aux_sym_variable_tuning_token6, + ACTIONS(3520), 1, + sym__terminator, + STATE(2332), 1, + aux_sym_variable_definition_repeat2, + STATE(2581), 1, + sym_variable_tuning, + STATE(2290), 2, sym_comment, sym_include, - ACTIONS(3490), 9, - sym__terminator, + ACTIONS(3468), 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, - [111207] = 9, + [112090] = 9, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, @@ -136912,13 +138265,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, ACTIONS(1201), 1, aux_sym_query_tuning_token5, - ACTIONS(3127), 1, + ACTIONS(3117), 1, sym__terminator, - STATE(1935), 1, + STATE(1948), 1, aux_sym_for_phrase_repeat1, - STATE(1953), 1, + STATE(2019), 1, sym_query_tuning, - STATE(2267), 2, + STATE(2291), 2, sym_comment, sym_include, ACTIONS(1195), 5, @@ -136927,31 +138280,77 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_query_tuning_token2, aux_sym_query_tuning_token3, aux_sym_query_tuning_token4, - [111240] = 9, + [112123] = 6, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_LBRACE, + ACTIONS(3522), 1, + aux_sym_function_call_token1, + STATE(2292), 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, + [112150] = 10, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_LBRACE, + ACTIONS(3000), 1, + sym_identifier, + STATE(2248), 1, + aux_sym_sort_clause_repeat1, + STATE(3052), 1, + sym_sort_column, + STATE(4589), 1, + sym_object_access, + STATE(2293), 2, + sym_comment, + sym_include, + STATE(2345), 2, + sym_qualified_name, + sym_function_call, + ACTIONS(3013), 3, + sym__terminator, + aux_sym_field_definition_token1, + aux_sym_index_definition_token1, + [112185] = 9, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(3440), 1, + ACTIONS(3470), 1, aux_sym_variable_tuning_token6, - ACTIONS(3492), 1, + ACTIONS(3524), 1, sym__terminator, - STATE(2311), 1, + STATE(2334), 1, aux_sym_variable_definition_repeat2, - STATE(2520), 1, + STATE(2581), 1, sym_variable_tuning, - STATE(2268), 2, + STATE(2294), 2, sym_comment, sym_include, - ACTIONS(3438), 5, + ACTIONS(3468), 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, - [111273] = 9, + [112218] = 9, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, @@ -136960,13 +138359,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, ACTIONS(1201), 1, aux_sym_query_tuning_token5, - ACTIONS(3127), 1, + ACTIONS(3178), 1, sym__terminator, - STATE(1953), 1, + STATE(2019), 1, sym_query_tuning, - STATE(2250), 1, + STATE(2260), 1, aux_sym_for_phrase_repeat1, - STATE(2269), 2, + STATE(2295), 2, sym_comment, sym_include, ACTIONS(1195), 5, @@ -136975,29 +138374,52 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_query_tuning_token2, aux_sym_query_tuning_token3, aux_sym_query_tuning_token4, - [111306] = 7, + [112251] = 6, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_LBRACE, + ACTIONS(3526), 1, + aux_sym_function_call_token1, + STATE(2296), 2, + sym_comment, + sym_include, + 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, + [112278] = 9, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(3254), 1, - anon_sym_COMMA, - STATE(2330), 1, - aux_sym_inherits_repeat1, - STATE(2270), 2, + ACTIONS(1201), 1, + aux_sym_query_tuning_token5, + ACTIONS(3516), 1, + sym__terminator, + STATE(1948), 1, + aux_sym_for_phrase_repeat1, + STATE(2019), 1, + sym_query_tuning, + STATE(2297), 2, sym_comment, sym_include, - ACTIONS(3275), 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, - [111335] = 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, + [112311] = 9, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, @@ -137006,13 +138428,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, ACTIONS(1201), 1, aux_sym_query_tuning_token5, - ACTIONS(3494), 1, + ACTIONS(3061), 1, sym__terminator, - STATE(1935), 1, + STATE(2019), 1, + sym_query_tuning, + STATE(2255), 1, aux_sym_for_phrase_repeat1, - STATE(1953), 1, + STATE(2298), 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, + [112344] = 9, + ACTIONS(59), 1, + anon_sym_SLASH_SLASH, + ACTIONS(61), 1, + anon_sym_SLASH_STAR, + ACTIONS(65), 1, + anon_sym_LBRACE, + ACTIONS(3470), 1, + aux_sym_variable_tuning_token6, + ACTIONS(3528), 1, + sym__terminator, + STATE(2339), 1, + aux_sym_variable_definition_repeat2, + STATE(2581), 1, + sym_variable_tuning, + STATE(2299), 2, + sym_comment, + sym_include, + ACTIONS(3468), 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, + [112377] = 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(3117), 1, + sym__terminator, + STATE(2019), 1, sym_query_tuning, - STATE(2271), 2, + STATE(2246), 1, + aux_sym_for_phrase_repeat1, + STATE(2300), 2, sym_comment, sym_include, ACTIONS(1195), 5, @@ -137021,7 +138491,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_query_tuning_token2, aux_sym_query_tuning_token3, aux_sym_query_tuning_token4, - [111368] = 9, + [112410] = 9, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, @@ -137030,13 +138500,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, ACTIONS(1201), 1, aux_sym_query_tuning_token5, - ACTIONS(3496), 1, + ACTIONS(3178), 1, sym__terminator, - STATE(1935), 1, + STATE(1948), 1, aux_sym_for_phrase_repeat1, - STATE(1953), 1, + STATE(2019), 1, sym_query_tuning, - STATE(2272), 2, + STATE(2301), 2, sym_comment, sym_include, ACTIONS(1195), 5, @@ -137045,7 +138515,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_query_tuning_token2, aux_sym_query_tuning_token3, aux_sym_query_tuning_token4, - [111401] = 9, + [112443] = 9, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, @@ -137054,13 +138524,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, ACTIONS(1201), 1, aux_sym_query_tuning_token5, - ACTIONS(3496), 1, + ACTIONS(3310), 1, sym__terminator, - STATE(1953), 1, + STATE(2019), 1, sym_query_tuning, - STATE(2289), 1, + STATE(2307), 1, aux_sym_for_phrase_repeat1, - STATE(2273), 2, + STATE(2302), 2, sym_comment, sym_include, ACTIONS(1195), 5, @@ -137069,55 +138539,55 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_query_tuning_token2, aux_sym_query_tuning_token3, aux_sym_query_tuning_token4, - [111434] = 9, + [112476] = 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(3498), 1, + ACTIONS(1201), 1, + aux_sym_query_tuning_token5, + ACTIONS(3530), 1, sym__terminator, - STATE(2311), 1, - aux_sym_variable_definition_repeat2, - STATE(2520), 1, - sym_variable_tuning, - STATE(2274), 2, + STATE(1948), 1, + aux_sym_for_phrase_repeat1, + STATE(2019), 1, + sym_query_tuning, + STATE(2303), 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, - [111467] = 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, + [112509] = 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(3500), 1, + ACTIONS(1201), 1, + aux_sym_query_tuning_token5, + ACTIONS(3530), 1, sym__terminator, - STATE(2311), 1, - aux_sym_variable_definition_repeat2, - STATE(2520), 1, - sym_variable_tuning, - STATE(2275), 2, + STATE(2019), 1, + sym_query_tuning, + STATE(2353), 1, + aux_sym_for_phrase_repeat1, + STATE(2304), 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, - [111500] = 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, + [112542] = 9, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, @@ -137126,13 +138596,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, ACTIONS(1201), 1, aux_sym_query_tuning_token5, - ACTIONS(3502), 1, + ACTIONS(3263), 1, sym__terminator, - STATE(1953), 1, - sym_query_tuning, - STATE(2233), 1, + STATE(1948), 1, aux_sym_for_phrase_repeat1, - STATE(2276), 2, + STATE(2019), 1, + sym_query_tuning, + STATE(2305), 2, sym_comment, sym_include, ACTIONS(1195), 5, @@ -137141,7 +138611,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_query_tuning_token2, aux_sym_query_tuning_token3, aux_sym_query_tuning_token4, - [111533] = 9, + [112575] = 9, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, @@ -137150,13 +138620,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, ACTIONS(1201), 1, aux_sym_query_tuning_token5, - ACTIONS(3502), 1, + ACTIONS(3263), 1, sym__terminator, - STATE(1935), 1, - aux_sym_for_phrase_repeat1, - STATE(1953), 1, + STATE(2019), 1, sym_query_tuning, - STATE(2277), 2, + STATE(2355), 1, + aux_sym_for_phrase_repeat1, + STATE(2306), 2, sym_comment, sym_include, ACTIONS(1195), 5, @@ -137165,7 +138635,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_query_tuning_token2, aux_sym_query_tuning_token3, aux_sym_query_tuning_token4, - [111566] = 9, + [112608] = 9, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, @@ -137174,13 +138644,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, ACTIONS(1201), 1, aux_sym_query_tuning_token5, - ACTIONS(3504), 1, + ACTIONS(3532), 1, sym__terminator, - STATE(1935), 1, + STATE(1948), 1, aux_sym_for_phrase_repeat1, - STATE(1953), 1, + STATE(2019), 1, sym_query_tuning, - STATE(2278), 2, + STATE(2307), 2, sym_comment, sym_include, ACTIONS(1195), 5, @@ -137189,31 +138659,103 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_query_tuning_token2, aux_sym_query_tuning_token3, aux_sym_query_tuning_token4, - [111599] = 9, + [112641] = 9, + ACTIONS(59), 1, + anon_sym_SLASH_SLASH, + ACTIONS(61), 1, + anon_sym_SLASH_STAR, + ACTIONS(65), 1, + anon_sym_LBRACE, + ACTIONS(3470), 1, + aux_sym_variable_tuning_token6, + ACTIONS(3534), 1, + sym__terminator, + STATE(2265), 1, + aux_sym_variable_definition_repeat2, + STATE(2581), 1, + sym_variable_tuning, + STATE(2308), 2, + sym_comment, + sym_include, + ACTIONS(3468), 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, + [112674] = 9, + ACTIONS(59), 1, + anon_sym_SLASH_SLASH, + ACTIONS(61), 1, + anon_sym_SLASH_STAR, + ACTIONS(65), 1, + anon_sym_LBRACE, + ACTIONS(3470), 1, + aux_sym_variable_tuning_token6, + ACTIONS(3536), 1, + sym__terminator, + STATE(2332), 1, + aux_sym_variable_definition_repeat2, + STATE(2581), 1, + sym_variable_tuning, + STATE(2309), 2, + sym_comment, + sym_include, + ACTIONS(3468), 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, + [112707] = 9, + ACTIONS(59), 1, + anon_sym_SLASH_SLASH, + ACTIONS(61), 1, + anon_sym_SLASH_STAR, + ACTIONS(65), 1, + anon_sym_LBRACE, + ACTIONS(3470), 1, + aux_sym_variable_tuning_token6, + ACTIONS(3538), 1, + sym__terminator, + STATE(2332), 1, + aux_sym_variable_definition_repeat2, + STATE(2581), 1, + sym_variable_tuning, + STATE(2310), 2, + sym_comment, + sym_include, + ACTIONS(3468), 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, + [112740] = 9, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(3440), 1, + ACTIONS(3470), 1, aux_sym_variable_tuning_token6, - ACTIONS(3506), 1, + ACTIONS(3540), 1, sym__terminator, - STATE(2311), 1, + STATE(2267), 1, aux_sym_variable_definition_repeat2, - STATE(2520), 1, + STATE(2581), 1, sym_variable_tuning, - STATE(2279), 2, + STATE(2311), 2, sym_comment, sym_include, - ACTIONS(3438), 5, + ACTIONS(3468), 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, - [111632] = 9, + [112773] = 9, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, @@ -137222,13 +138764,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, ACTIONS(1201), 1, aux_sym_query_tuning_token5, - ACTIONS(3074), 1, + ACTIONS(3542), 1, sym__terminator, - STATE(1953), 1, - sym_query_tuning, - STATE(2261), 1, + STATE(1948), 1, aux_sym_for_phrase_repeat1, - STATE(2280), 2, + STATE(2019), 1, + sym_query_tuning, + STATE(2312), 2, sym_comment, sym_include, ACTIONS(1195), 5, @@ -137237,7 +138779,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_query_tuning_token2, aux_sym_query_tuning_token3, aux_sym_query_tuning_token4, - [111665] = 9, + [112806] = 9, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, @@ -137246,13 +138788,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, ACTIONS(1201), 1, aux_sym_query_tuning_token5, - ACTIONS(3508), 1, + ACTIONS(3532), 1, sym__terminator, - STATE(1935), 1, - aux_sym_for_phrase_repeat1, - STATE(1953), 1, + STATE(2019), 1, sym_query_tuning, - STATE(2281), 2, + STATE(2343), 1, + aux_sym_for_phrase_repeat1, + STATE(2313), 2, sym_comment, sym_include, ACTIONS(1195), 5, @@ -137261,55 +138803,31 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_query_tuning_token2, aux_sym_query_tuning_token3, aux_sym_query_tuning_token4, - [111698] = 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(3510), 1, - sym__terminator, - STATE(2230), 1, - aux_sym_variable_definition_repeat2, - STATE(2520), 1, - sym_variable_tuning, - STATE(2282), 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, - [111731] = 9, + [112839] = 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(3512), 1, + ACTIONS(1201), 1, + aux_sym_query_tuning_token5, + ACTIONS(3320), 1, sym__terminator, - STATE(2221), 1, - aux_sym_variable_definition_repeat2, - STATE(2520), 1, - sym_variable_tuning, - STATE(2283), 2, + STATE(1948), 1, + aux_sym_for_phrase_repeat1, + STATE(2019), 1, + sym_query_tuning, + STATE(2314), 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, - [111764] = 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, + [112872] = 9, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, @@ -137318,13 +138836,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, ACTIONS(1201), 1, aux_sym_query_tuning_token5, - ACTIONS(3228), 1, + ACTIONS(3320), 1, sym__terminator, - STATE(1935), 1, - aux_sym_for_phrase_repeat1, - STATE(1953), 1, + STATE(2019), 1, sym_query_tuning, - STATE(2284), 2, + STATE(2344), 1, + aux_sym_for_phrase_repeat1, + STATE(2315), 2, sym_comment, sym_include, ACTIONS(1195), 5, @@ -137333,31 +138851,31 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_query_tuning_token2, aux_sym_query_tuning_token3, aux_sym_query_tuning_token4, - [111797] = 9, + [112905] = 9, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(3440), 1, + ACTIONS(3470), 1, aux_sym_variable_tuning_token6, - ACTIONS(3514), 1, + ACTIONS(3544), 1, sym__terminator, - STATE(2349), 1, + STATE(2361), 1, aux_sym_variable_definition_repeat2, - STATE(2520), 1, + STATE(2581), 1, sym_variable_tuning, - STATE(2285), 2, + STATE(2316), 2, sym_comment, sym_include, - ACTIONS(3438), 5, + ACTIONS(3468), 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, - [111830] = 9, + [112938] = 9, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, @@ -137366,13 +138884,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, ACTIONS(1201), 1, aux_sym_query_tuning_token5, - ACTIONS(3228), 1, + ACTIONS(3546), 1, sym__terminator, - STATE(1953), 1, - sym_query_tuning, - STATE(2323), 1, + STATE(1948), 1, aux_sym_for_phrase_repeat1, - STATE(2286), 2, + STATE(2019), 1, + sym_query_tuning, + STATE(2317), 2, sym_comment, sym_include, ACTIONS(1195), 5, @@ -137381,55 +138899,55 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_query_tuning_token2, aux_sym_query_tuning_token3, aux_sym_query_tuning_token4, - [111863] = 9, + [112971] = 9, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(3440), 1, + ACTIONS(3470), 1, aux_sym_variable_tuning_token6, - ACTIONS(3516), 1, + ACTIONS(3548), 1, sym__terminator, - STATE(2311), 1, + STATE(2367), 1, aux_sym_variable_definition_repeat2, - STATE(2520), 1, + STATE(2581), 1, sym_variable_tuning, - STATE(2287), 2, + STATE(2318), 2, sym_comment, sym_include, - ACTIONS(3438), 5, + ACTIONS(3468), 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, - [111896] = 9, - ACTIONS(3), 1, + [113004] = 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(3518), 1, - sym_identifier, - STATE(3037), 1, - sym_sort_column, - STATE(4460), 1, - sym_object_access, - STATE(2260), 2, - sym_qualified_name, - sym_function_call, - ACTIONS(3273), 3, + ACTIONS(1201), 1, + aux_sym_query_tuning_token5, + ACTIONS(3550), 1, sym__terminator, - aux_sym_field_definition_token1, - aux_sym_index_definition_token1, - STATE(2288), 3, + STATE(1948), 1, + aux_sym_for_phrase_repeat1, + STATE(2019), 1, + sym_query_tuning, + STATE(2319), 2, sym_comment, sym_include, - aux_sym_sort_clause_repeat1, - [111929] = 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, + [113037] = 9, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, @@ -137438,13 +138956,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, ACTIONS(1201), 1, aux_sym_query_tuning_token5, - ACTIONS(3521), 1, + ACTIONS(3552), 1, sym__terminator, - STATE(1935), 1, + STATE(1948), 1, aux_sym_for_phrase_repeat1, - STATE(1953), 1, + STATE(2019), 1, sym_query_tuning, - STATE(2289), 2, + STATE(2320), 2, sym_comment, sym_include, ACTIONS(1195), 5, @@ -137453,55 +138971,55 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_query_tuning_token2, aux_sym_query_tuning_token3, aux_sym_query_tuning_token4, - [111962] = 9, + [113070] = 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(3523), 1, + ACTIONS(1201), 1, + aux_sym_query_tuning_token5, + ACTIONS(3550), 1, sym__terminator, - STATE(2223), 1, - aux_sym_variable_definition_repeat2, - STATE(2520), 1, - sym_variable_tuning, - STATE(2290), 2, + STATE(2019), 1, + sym_query_tuning, + STATE(2358), 1, + aux_sym_for_phrase_repeat1, + STATE(2321), 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, - [111995] = 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, + [113103] = 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(3525), 1, + ACTIONS(1201), 1, + aux_sym_query_tuning_token5, + ACTIONS(3552), 1, sym__terminator, - STATE(2311), 1, - aux_sym_variable_definition_repeat2, - STATE(2520), 1, - sym_variable_tuning, - STATE(2291), 2, + STATE(2019), 1, + sym_query_tuning, + STATE(2366), 1, + aux_sym_for_phrase_repeat1, + STATE(2322), 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, - [112028] = 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, + [113136] = 9, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, @@ -137510,13 +139028,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, ACTIONS(1201), 1, aux_sym_query_tuning_token5, - ACTIONS(3314), 1, + ACTIONS(3318), 1, sym__terminator, - STATE(1953), 1, + STATE(2019), 1, sym_query_tuning, - STATE(2227), 1, + STATE(2242), 1, aux_sym_for_phrase_repeat1, - STATE(2292), 2, + STATE(2323), 2, sym_comment, sym_include, ACTIONS(1195), 5, @@ -137525,7 +139043,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_query_tuning_token2, aux_sym_query_tuning_token3, aux_sym_query_tuning_token4, - [112061] = 9, + [113169] = 9, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, @@ -137534,13 +139052,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, ACTIONS(1201), 1, aux_sym_query_tuning_token5, - ACTIONS(3184), 1, + ACTIONS(3318), 1, sym__terminator, - STATE(1953), 1, - sym_query_tuning, - STATE(2284), 1, + STATE(1948), 1, aux_sym_for_phrase_repeat1, - STATE(2293), 2, + STATE(2019), 1, + sym_query_tuning, + STATE(2324), 2, sym_comment, sym_include, ACTIONS(1195), 5, @@ -137549,267 +139067,268 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_query_tuning_token2, aux_sym_query_tuning_token3, aux_sym_query_tuning_token4, - [112094] = 9, + [113202] = 9, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(3440), 1, + ACTIONS(3470), 1, aux_sym_variable_tuning_token6, - ACTIONS(3527), 1, + ACTIONS(3554), 1, sym__terminator, - STATE(2257), 1, + STATE(2327), 1, aux_sym_variable_definition_repeat2, - STATE(2520), 1, + STATE(2581), 1, sym_variable_tuning, - STATE(2294), 2, + STATE(2325), 2, sym_comment, sym_include, - ACTIONS(3438), 5, + ACTIONS(3468), 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, - [112127] = 9, + [113235] = 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(3314), 1, + ACTIONS(3470), 1, + aux_sym_variable_tuning_token6, + ACTIONS(3556), 1, sym__terminator, - STATE(1935), 1, - aux_sym_for_phrase_repeat1, - STATE(1953), 1, - sym_query_tuning, - STATE(2295), 2, + STATE(2350), 1, + aux_sym_variable_definition_repeat2, + STATE(2581), 1, + sym_variable_tuning, + 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, - [112160] = 9, + ACTIONS(3468), 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, + [113268] = 9, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(3440), 1, + ACTIONS(3470), 1, aux_sym_variable_tuning_token6, - ACTIONS(3529), 1, + ACTIONS(3558), 1, sym__terminator, - STATE(2258), 1, + STATE(2332), 1, aux_sym_variable_definition_repeat2, - STATE(2520), 1, + STATE(2581), 1, sym_variable_tuning, - STATE(2296), 2, + STATE(2327), 2, sym_comment, sym_include, - ACTIONS(3438), 5, + ACTIONS(3468), 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, - [112193] = 9, + [113301] = 9, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(3440), 1, + ACTIONS(3470), 1, aux_sym_variable_tuning_token6, - ACTIONS(3531), 1, + ACTIONS(3560), 1, sym__terminator, - STATE(2311), 1, + STATE(2332), 1, aux_sym_variable_definition_repeat2, - STATE(2520), 1, + STATE(2581), 1, sym_variable_tuning, - STATE(2297), 2, + STATE(2328), 2, sym_comment, sym_include, - ACTIONS(3438), 5, + ACTIONS(3468), 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, - [112226] = 9, + [113334] = 7, 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(3533), 1, - sym__terminator, - STATE(1935), 1, - aux_sym_for_phrase_repeat1, - STATE(1953), 1, - sym_query_tuning, - STATE(2298), 2, + ACTIONS(3240), 1, + anon_sym_COMMA, + STATE(2365), 1, + aux_sym_inherits_repeat1, + STATE(2329), 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, - [112259] = 5, + 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, + [113363] = 9, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - STATE(2299), 2, + ACTIONS(3470), 1, + aux_sym_variable_tuning_token6, + ACTIONS(3562), 1, + sym__terminator, + STATE(2332), 1, + aux_sym_variable_definition_repeat2, + STATE(2581), 1, + sym_variable_tuning, + STATE(2330), 2, sym_comment, sym_include, - ACTIONS(1338), 9, - sym__terminator, + ACTIONS(3468), 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, - [112284] = 9, + [113396] = 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(3298), 1, + ACTIONS(3470), 1, + aux_sym_variable_tuning_token6, + ACTIONS(3564), 1, sym__terminator, - STATE(1935), 1, - aux_sym_for_phrase_repeat1, - STATE(1953), 1, - sym_query_tuning, - STATE(2300), 2, + STATE(2332), 1, + aux_sym_variable_definition_repeat2, + STATE(2581), 1, + sym_variable_tuning, + STATE(2331), 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, - [112317] = 9, + ACTIONS(3468), 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, + [113429] = 8, 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(3535), 1, + ACTIONS(3566), 1, sym__terminator, - STATE(2311), 1, - aux_sym_variable_definition_repeat2, - STATE(2520), 1, + ACTIONS(3571), 1, + aux_sym_variable_tuning_token6, + STATE(2581), 1, sym_variable_tuning, - STATE(2301), 2, + STATE(2332), 3, sym_comment, sym_include, - ACTIONS(3438), 5, + aux_sym_variable_definition_repeat2, + ACTIONS(3568), 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, - [112350] = 9, + [113460] = 9, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(3440), 1, + ACTIONS(3470), 1, aux_sym_variable_tuning_token6, - ACTIONS(3537), 1, + ACTIONS(3574), 1, sym__terminator, - STATE(2311), 1, + STATE(2351), 1, aux_sym_variable_definition_repeat2, - STATE(2520), 1, + STATE(2581), 1, sym_variable_tuning, - STATE(2302), 2, + STATE(2333), 2, sym_comment, sym_include, - ACTIONS(3438), 5, + ACTIONS(3468), 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, - [112383] = 9, + [113493] = 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(3539), 1, + ACTIONS(3470), 1, + aux_sym_variable_tuning_token6, + ACTIONS(3576), 1, sym__terminator, - STATE(1953), 1, - sym_query_tuning, - STATE(2229), 1, - aux_sym_for_phrase_repeat1, - STATE(2303), 2, + STATE(2332), 1, + aux_sym_variable_definition_repeat2, + STATE(2581), 1, + sym_variable_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, - [112416] = 9, + ACTIONS(3468), 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, + [113526] = 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(3539), 1, + ACTIONS(3470), 1, + aux_sym_variable_tuning_token6, + ACTIONS(3578), 1, sym__terminator, - STATE(1935), 1, - aux_sym_for_phrase_repeat1, - STATE(1953), 1, - sym_query_tuning, - STATE(2304), 2, + STATE(2253), 1, + aux_sym_variable_definition_repeat2, + STATE(2581), 1, + sym_variable_tuning, + STATE(2335), 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, - [112449] = 9, + ACTIONS(3468), 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, + [113559] = 9, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, @@ -137818,13 +139337,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, ACTIONS(1201), 1, aux_sym_query_tuning_token5, - ACTIONS(3129), 1, + ACTIONS(3226), 1, sym__terminator, - STATE(1935), 1, + STATE(1948), 1, aux_sym_for_phrase_repeat1, - STATE(1953), 1, + STATE(2019), 1, sym_query_tuning, - STATE(2305), 2, + STATE(2336), 2, sym_comment, sym_include, ACTIONS(1195), 5, @@ -137833,7 +139352,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_query_tuning_token2, aux_sym_query_tuning_token3, aux_sym_query_tuning_token4, - [112482] = 9, + [113592] = 9, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, @@ -137842,13 +139361,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, ACTIONS(1201), 1, aux_sym_query_tuning_token5, - ACTIONS(3298), 1, + ACTIONS(3580), 1, sym__terminator, - STATE(1953), 1, - sym_query_tuning, - STATE(2304), 1, + STATE(1948), 1, aux_sym_for_phrase_repeat1, - STATE(2306), 2, + STATE(2019), 1, + sym_query_tuning, + STATE(2337), 2, sym_comment, sym_include, ACTIONS(1195), 5, @@ -137857,172 +139376,125 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_query_tuning_token2, aux_sym_query_tuning_token3, aux_sym_query_tuning_token4, - [112515] = 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(3541), 1, - sym__terminator, - STATE(2311), 1, - aux_sym_variable_definition_repeat2, - STATE(2520), 1, - sym_variable_tuning, - STATE(2307), 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, - [112548] = 6, + [113625] = 10, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(3543), 1, - aux_sym_function_call_token1, - STATE(2308), 2, + ACTIONS(3000), 1, + sym_identifier, + STATE(2248), 1, + aux_sym_sort_clause_repeat1, + STATE(3052), 1, + sym_sort_column, + STATE(4589), 1, + sym_object_access, + STATE(2338), 2, sym_comment, sym_include, - ACTIONS(131), 8, - sym_identifier, + STATE(2345), 2, + sym_qualified_name, + sym_function_call, + ACTIONS(3582), 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, - [112575] = 9, + [113660] = 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(3260), 1, + ACTIONS(3470), 1, + aux_sym_variable_tuning_token6, + ACTIONS(3584), 1, sym__terminator, - STATE(1953), 1, - sym_query_tuning, - STATE(2277), 1, - aux_sym_for_phrase_repeat1, - STATE(2309), 2, + STATE(2332), 1, + aux_sym_variable_definition_repeat2, + STATE(2581), 1, + sym_variable_tuning, + STATE(2339), 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, - [112608] = 9, + ACTIONS(3468), 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, + [113693] = 8, 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(3322), 1, - sym__terminator, - STATE(1935), 1, - aux_sym_for_phrase_repeat1, - STATE(1953), 1, - sym_query_tuning, - STATE(2310), 2, + ACTIONS(3591), 1, + anon_sym_LIKE, + STATE(2464), 1, + sym_temp_table_tuning, + ACTIONS(3588), 2, + aux_sym_variable_tuning_token6, + aux_sym_temp_table_tuning_token1, + STATE(2340), 3, 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, - [112641] = 8, + aux_sym_temp_table_definition_repeat1, + ACTIONS(3586), 4, + sym__terminator, + aux_sym_variable_definition_token6, + aux_sym_field_definition_token1, + aux_sym_index_definition_token1, + [113724] = 9, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(3545), 1, - sym__terminator, - ACTIONS(3550), 1, + ACTIONS(3470), 1, aux_sym_variable_tuning_token6, - STATE(2520), 1, + ACTIONS(3594), 1, + sym__terminator, + STATE(2332), 1, + aux_sym_variable_definition_repeat2, + STATE(2581), 1, sym_variable_tuning, - STATE(2311), 3, + STATE(2341), 2, sym_comment, sym_include, - aux_sym_variable_definition_repeat2, - ACTIONS(3547), 5, + ACTIONS(3468), 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, - [112672] = 9, + [113757] = 7, 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(3322), 1, - sym__terminator, - STATE(1953), 1, - sym_query_tuning, - STATE(2234), 1, - aux_sym_for_phrase_repeat1, - STATE(2312), 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, - [112705] = 10, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - ACTIONS(7), 1, - anon_sym_LBRACE, - ACTIONS(2984), 1, - sym_identifier, - STATE(2288), 1, - aux_sym_sort_clause_repeat1, - STATE(3037), 1, - sym_sort_column, - STATE(4460), 1, - sym_object_access, - STATE(2260), 2, - sym_qualified_name, - sym_function_call, - STATE(2313), 2, + ACTIONS(3240), 1, + anon_sym_COMMA, + STATE(2257), 1, + aux_sym_inherits_repeat1, + STATE(2342), 2, sym_comment, sym_include, - ACTIONS(2986), 3, - sym__terminator, - aux_sym_field_definition_token1, - aux_sym_index_definition_token1, - [112740] = 9, + ACTIONS(3238), 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, + [113786] = 9, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, @@ -138031,13 +139503,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, ACTIONS(1201), 1, aux_sym_query_tuning_token5, - ACTIONS(3240), 1, + ACTIONS(3596), 1, sym__terminator, - STATE(1953), 1, - sym_query_tuning, - STATE(2259), 1, + STATE(1948), 1, aux_sym_for_phrase_repeat1, - STATE(2314), 2, + STATE(2019), 1, + sym_query_tuning, + STATE(2343), 2, sym_comment, sym_include, ACTIONS(1195), 5, @@ -138046,7 +139518,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_query_tuning_token2, aux_sym_query_tuning_token3, aux_sym_query_tuning_token4, - [112773] = 9, + [113819] = 9, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, @@ -138055,13 +139527,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, ACTIONS(1201), 1, aux_sym_query_tuning_token5, - ACTIONS(3027), 1, + ACTIONS(3598), 1, sym__terminator, - STATE(1953), 1, - sym_query_tuning, - STATE(2252), 1, + STATE(1948), 1, aux_sym_for_phrase_repeat1, - STATE(2315), 2, + STATE(2019), 1, + sym_query_tuning, + STATE(2344), 2, sym_comment, sym_include, ACTIONS(1195), 5, @@ -138070,7 +139542,29 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_query_tuning_token2, aux_sym_query_tuning_token3, aux_sym_query_tuning_token4, - [112806] = 9, + [113852] = 7, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_LBRACE, + STATE(3069), 1, + sym_sort_order, + STATE(2345), 2, + sym_comment, + sym_include, + ACTIONS(2719), 4, + sym_identifier, + sym__terminator, + aux_sym_field_definition_token1, + aux_sym_index_definition_token1, + ACTIONS(2929), 4, + aux_sym_sort_order_token1, + aux_sym_sort_order_token2, + aux_sym_sort_order_token3, + aux_sym_sort_order_token4, + [113881] = 9, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, @@ -138079,13 +139573,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, ACTIONS(1201), 1, aux_sym_query_tuning_token5, - ACTIONS(3260), 1, + ACTIONS(3598), 1, sym__terminator, - STATE(1935), 1, - aux_sym_for_phrase_repeat1, - STATE(1953), 1, + STATE(2019), 1, sym_query_tuning, - STATE(2316), 2, + STATE(2357), 1, + aux_sym_for_phrase_repeat1, + STATE(2346), 2, sym_comment, sym_include, ACTIONS(1195), 5, @@ -138094,7 +139588,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_query_tuning_token2, aux_sym_query_tuning_token3, aux_sym_query_tuning_token4, - [112839] = 9, + [113914] = 9, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, @@ -138103,13 +139597,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, ACTIONS(1201), 1, aux_sym_query_tuning_token5, - ACTIONS(3553), 1, + ACTIONS(3061), 1, sym__terminator, - STATE(1953), 1, - sym_query_tuning, - STATE(2278), 1, + STATE(1948), 1, aux_sym_for_phrase_repeat1, - STATE(2317), 2, + STATE(2019), 1, + sym_query_tuning, + STATE(2347), 2, sym_comment, sym_include, ACTIONS(1195), 5, @@ -138118,31 +139612,30 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_query_tuning_token2, aux_sym_query_tuning_token3, aux_sym_query_tuning_token4, - [112872] = 9, + [113947] = 8, 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(3240), 1, - sym__terminator, - STATE(1935), 1, - aux_sym_for_phrase_repeat1, - STATE(1953), 1, - sym_query_tuning, - STATE(2318), 2, + ACTIONS(679), 1, + sym__namedot, + ACTIONS(3602), 1, + anon_sym_LIKE, + STATE(336), 1, + aux_sym_qualified_name_repeat1, + STATE(2348), 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, - [112905] = 9, + ACTIONS(3600), 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, + [113978] = 9, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, @@ -138151,13 +139644,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, ACTIONS(1201), 1, aux_sym_query_tuning_token5, - ACTIONS(3027), 1, + ACTIONS(3168), 1, sym__terminator, - STATE(1935), 1, + STATE(1948), 1, aux_sym_for_phrase_repeat1, - STATE(1953), 1, + STATE(2019), 1, sym_query_tuning, - STATE(2319), 2, + STATE(2349), 2, sym_comment, sym_include, ACTIONS(1195), 5, @@ -138166,79 +139659,79 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_query_tuning_token2, aux_sym_query_tuning_token3, aux_sym_query_tuning_token4, - [112938] = 9, + [114011] = 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(3555), 1, + ACTIONS(3470), 1, + aux_sym_variable_tuning_token6, + ACTIONS(3604), 1, sym__terminator, - STATE(1953), 1, - sym_query_tuning, - STATE(2262), 1, - aux_sym_for_phrase_repeat1, - STATE(2320), 2, + STATE(2332), 1, + aux_sym_variable_definition_repeat2, + STATE(2581), 1, + sym_variable_tuning, + STATE(2350), 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, - [112971] = 9, + ACTIONS(3468), 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, + [114044] = 9, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(3440), 1, + ACTIONS(3470), 1, aux_sym_variable_tuning_token6, - ACTIONS(3557), 1, + ACTIONS(3606), 1, sym__terminator, - STATE(2311), 1, + STATE(2332), 1, aux_sym_variable_definition_repeat2, - STATE(2520), 1, + STATE(2581), 1, sym_variable_tuning, - STATE(2321), 2, + STATE(2351), 2, sym_comment, sym_include, - ACTIONS(3438), 5, + ACTIONS(3468), 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, - [113004] = 9, + [114077] = 9, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(3440), 1, + ACTIONS(3470), 1, aux_sym_variable_tuning_token6, - ACTIONS(3559), 1, + ACTIONS(3608), 1, sym__terminator, - STATE(2311), 1, + STATE(2332), 1, aux_sym_variable_definition_repeat2, - STATE(2520), 1, + STATE(2581), 1, sym_variable_tuning, - STATE(2322), 2, + STATE(2352), 2, sym_comment, sym_include, - ACTIONS(3438), 5, + ACTIONS(3468), 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, - [113037] = 9, + [114110] = 9, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, @@ -138247,13 +139740,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, ACTIONS(1201), 1, aux_sym_query_tuning_token5, - ACTIONS(3553), 1, + ACTIONS(3610), 1, sym__terminator, - STATE(1935), 1, + STATE(1948), 1, aux_sym_for_phrase_repeat1, - STATE(1953), 1, + STATE(2019), 1, sym_query_tuning, - STATE(2323), 2, + STATE(2353), 2, sym_comment, sym_include, ACTIONS(1195), 5, @@ -138262,7 +139755,31 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_query_tuning_token2, aux_sym_query_tuning_token3, aux_sym_query_tuning_token4, - [113070] = 9, + [114143] = 9, + ACTIONS(59), 1, + anon_sym_SLASH_SLASH, + ACTIONS(61), 1, + anon_sym_SLASH_STAR, + ACTIONS(65), 1, + anon_sym_LBRACE, + ACTIONS(3470), 1, + aux_sym_variable_tuning_token6, + ACTIONS(3612), 1, + sym__terminator, + STATE(2332), 1, + aux_sym_variable_definition_repeat2, + STATE(2581), 1, + sym_variable_tuning, + STATE(2354), 2, + sym_comment, + sym_include, + ACTIONS(3468), 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, + [114176] = 9, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, @@ -138271,13 +139788,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, ACTIONS(1201), 1, aux_sym_query_tuning_token5, - ACTIONS(3555), 1, + ACTIONS(3614), 1, sym__terminator, - STATE(1935), 1, + STATE(1948), 1, aux_sym_for_phrase_repeat1, - STATE(1953), 1, + STATE(2019), 1, sym_query_tuning, - STATE(2324), 2, + STATE(2355), 2, sym_comment, sym_include, ACTIONS(1195), 5, @@ -138286,7 +139803,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_query_tuning_token2, aux_sym_query_tuning_token3, aux_sym_query_tuning_token4, - [113103] = 9, + [114209] = 9, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, @@ -138295,13 +139812,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, ACTIONS(1201), 1, aux_sym_query_tuning_token5, - ACTIONS(3070), 1, + ACTIONS(3168), 1, sym__terminator, - STATE(1953), 1, + STATE(2019), 1, sym_query_tuning, - STATE(2295), 1, + STATE(2324), 1, aux_sym_for_phrase_repeat1, - STATE(2325), 2, + STATE(2356), 2, sym_comment, sym_include, ACTIONS(1195), 5, @@ -138310,7 +139827,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_query_tuning_token2, aux_sym_query_tuning_token3, aux_sym_query_tuning_token4, - [113136] = 9, + [114242] = 9, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, @@ -138319,13 +139836,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, ACTIONS(1201), 1, aux_sym_query_tuning_token5, - ACTIONS(3174), 1, + ACTIONS(3616), 1, sym__terminator, - STATE(1953), 1, - sym_query_tuning, - STATE(2316), 1, + STATE(1948), 1, aux_sym_for_phrase_repeat1, - STATE(2326), 2, + STATE(2019), 1, + sym_query_tuning, + STATE(2357), 2, sym_comment, sym_include, ACTIONS(1195), 5, @@ -138334,217 +139851,189 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_query_tuning_token2, aux_sym_query_tuning_token3, aux_sym_query_tuning_token4, - [113169] = 10, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - ACTIONS(7), 1, - anon_sym_LBRACE, - ACTIONS(2984), 1, - sym_identifier, - STATE(2288), 1, - aux_sym_sort_clause_repeat1, - STATE(3037), 1, - sym_sort_column, - STATE(4460), 1, - sym_object_access, - STATE(2260), 2, - sym_qualified_name, - sym_function_call, - STATE(2327), 2, - sym_comment, - sym_include, - ACTIONS(3561), 3, - sym__terminator, - aux_sym_field_definition_token1, - aux_sym_index_definition_token1, - [113204] = 7, + [114275] = 9, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(3254), 1, - anon_sym_COMMA, - STATE(2331), 1, - aux_sym_inherits_repeat1, - STATE(2328), 2, + ACTIONS(1201), 1, + aux_sym_query_tuning_token5, + ACTIONS(3618), 1, + sym__terminator, + STATE(1948), 1, + aux_sym_for_phrase_repeat1, + STATE(2019), 1, + sym_query_tuning, + STATE(2358), 2, sym_comment, sym_include, - ACTIONS(3563), 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, - [113233] = 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, + [114308] = 9, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(3440), 1, + ACTIONS(3470), 1, aux_sym_variable_tuning_token6, - ACTIONS(3565), 1, + ACTIONS(3620), 1, sym__terminator, - STATE(2307), 1, + STATE(2290), 1, aux_sym_variable_definition_repeat2, - STATE(2520), 1, + STATE(2581), 1, sym_variable_tuning, - STATE(2329), 2, + STATE(2359), 2, sym_comment, sym_include, - ACTIONS(3438), 5, + ACTIONS(3468), 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, - [113266] = 7, + [114341] = 9, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(3254), 1, - anon_sym_COMMA, - STATE(2331), 1, - aux_sym_inherits_repeat1, - STATE(2330), 2, + ACTIONS(1201), 1, + aux_sym_query_tuning_token5, + ACTIONS(3614), 1, + sym__terminator, + STATE(2019), 1, + sym_query_tuning, + STATE(2337), 1, + aux_sym_for_phrase_repeat1, + STATE(2360), 2, sym_comment, sym_include, - ACTIONS(3567), 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, - [113295] = 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, + [114374] = 9, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(3569), 1, - anon_sym_COMMA, - STATE(2331), 3, + ACTIONS(3470), 1, + aux_sym_variable_tuning_token6, + ACTIONS(3622), 1, + sym__terminator, + STATE(2332), 1, + aux_sym_variable_definition_repeat2, + STATE(2581), 1, + sym_variable_tuning, + STATE(2361), 2, sym_comment, sym_include, - aux_sym_inherits_repeat1, - ACTIONS(3406), 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, - [113322] = 9, + ACTIONS(3468), 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, + [114407] = 5, 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(3572), 1, - sym__terminator, - STATE(2311), 1, - aux_sym_variable_definition_repeat2, - STATE(2520), 1, - sym_variable_tuning, - STATE(2332), 2, + STATE(2362), 2, sym_comment, sym_include, - ACTIONS(3438), 5, + ACTIONS(3624), 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, - [113355] = 9, + aux_sym_property_tuning_token1, + aux_sym_field_definition_token1, + aux_sym_index_definition_token1, + [114432] = 5, 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(3184), 1, - sym__terminator, - STATE(1935), 1, - aux_sym_for_phrase_repeat1, - STATE(1953), 1, - sym_query_tuning, - STATE(2333), 2, + STATE(2363), 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, - [113388] = 9, + ACTIONS(1460), 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, + [114457] = 9, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(3440), 1, + ACTIONS(3470), 1, aux_sym_variable_tuning_token6, - ACTIONS(3574), 1, + ACTIONS(3626), 1, sym__terminator, - STATE(2322), 1, + STATE(2289), 1, aux_sym_variable_definition_repeat2, - STATE(2520), 1, + STATE(2581), 1, sym_variable_tuning, - STATE(2334), 2, + STATE(2364), 2, sym_comment, sym_include, - ACTIONS(3438), 5, + ACTIONS(3468), 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, - [113421] = 9, + [114490] = 7, 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(3576), 1, - sym__terminator, - STATE(2321), 1, - aux_sym_variable_definition_repeat2, - STATE(2520), 1, - sym_variable_tuning, - STATE(2335), 2, + ACTIONS(3240), 1, + anon_sym_COMMA, + STATE(2286), 1, + aux_sym_inherits_repeat1, + STATE(2365), 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, - [113454] = 9, + ACTIONS(3628), 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, + [114519] = 9, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, @@ -138553,13 +140042,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, ACTIONS(1201), 1, aux_sym_query_tuning_token5, - ACTIONS(3070), 1, + ACTIONS(3630), 1, sym__terminator, - STATE(1935), 1, + STATE(1948), 1, aux_sym_for_phrase_repeat1, - STATE(1953), 1, + STATE(2019), 1, sym_query_tuning, - STATE(2336), 2, + STATE(2366), 2, sym_comment, sym_include, ACTIONS(1195), 5, @@ -138568,31 +140057,31 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_query_tuning_token2, aux_sym_query_tuning_token3, aux_sym_query_tuning_token4, - [113487] = 9, + [114552] = 9, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(3440), 1, + ACTIONS(3470), 1, aux_sym_variable_tuning_token6, - ACTIONS(3578), 1, + ACTIONS(3632), 1, sym__terminator, - STATE(2311), 1, + STATE(2332), 1, aux_sym_variable_definition_repeat2, - STATE(2520), 1, + STATE(2581), 1, sym_variable_tuning, - STATE(2337), 2, + STATE(2367), 2, sym_comment, sym_include, - ACTIONS(3438), 5, + ACTIONS(3468), 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, - [113520] = 9, + [114585] = 9, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, @@ -138601,13 +140090,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, ACTIONS(1201), 1, aux_sym_query_tuning_token5, - ACTIONS(3174), 1, + ACTIONS(3226), 1, sym__terminator, - STATE(1935), 1, - aux_sym_for_phrase_repeat1, - STATE(1953), 1, + STATE(2019), 1, sym_query_tuning, - STATE(2338), 2, + STATE(2284), 1, + aux_sym_for_phrase_repeat1, + STATE(2368), 2, sym_comment, sym_include, ACTIONS(1195), 5, @@ -138616,265 +140105,208 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_query_tuning_token2, aux_sym_query_tuning_token3, aux_sym_query_tuning_token4, - [113553] = 8, - ACTIONS(59), 1, + [114618] = 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(679), 1, - sym__namedot, - ACTIONS(3582), 1, - anon_sym_LIKE, - STATE(329), 1, - aux_sym_qualified_name_repeat1, - STATE(2339), 2, + STATE(2369), 2, sym_comment, sym_include, - ACTIONS(3580), 6, + ACTIONS(153), 8, + sym_identifier, sym__terminator, - aux_sym_variable_tuning_token6, - aux_sym_variable_definition_token6, - aux_sym_temp_table_tuning_token1, + 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, - [113584] = 5, - ACTIONS(59), 1, - anon_sym_SLASH_SLASH, - ACTIONS(61), 1, - anon_sym_SLASH_STAR, - ACTIONS(65), 1, - anon_sym_LBRACE, - STATE(2340), 2, - sym_comment, - sym_include, - ACTIONS(1450), 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, - [113609] = 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(3584), 1, - sym__terminator, - STATE(2268), 1, - aux_sym_variable_definition_repeat2, - STATE(2520), 1, - sym_variable_tuning, - STATE(2341), 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, - [113642] = 9, + [114642] = 11, 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(3586), 1, + ACTIONS(679), 1, + sym__namedot, + ACTIONS(3057), 1, + aux_sym_field_definition_token1, + ACTIONS(3059), 1, + aux_sym_index_definition_token1, + ACTIONS(3634), 1, sym__terminator, - STATE(2301), 1, - aux_sym_variable_definition_repeat2, - STATE(2520), 1, - sym_variable_tuning, - STATE(2342), 2, + STATE(336), 1, + aux_sym_qualified_name_repeat1, + STATE(2780), 1, + aux_sym_temp_table_definition_repeat2, + STATE(2370), 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, - [113675] = 8, + STATE(3248), 2, + sym_field_definition, + sym_index_definition, + [114678] = 10, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(3593), 1, - anon_sym_LIKE, - STATE(2482), 1, - sym_temp_table_tuning, - ACTIONS(3590), 2, - aux_sym_variable_tuning_token6, - aux_sym_temp_table_tuning_token1, - STATE(2343), 3, + ACTIONS(3636), 1, + aux_sym_property_definition_token1, + STATE(2585), 1, + aux_sym_property_definition_repeat1, + STATE(2840), 1, + sym_property_type, + STATE(4194), 1, + sym_serialization_tuning, + ACTIONS(1362), 2, + aux_sym_serialization_tuning_token1, + aux_sym_serialization_tuning_token2, + ACTIONS(1376), 2, + aux_sym_property_type_token1, + aux_sym_property_type_token2, + STATE(2371), 2, sym_comment, sym_include, - aux_sym_temp_table_definition_repeat1, - ACTIONS(3588), 4, - sym__terminator, - aux_sym_variable_definition_token6, - aux_sym_field_definition_token1, - aux_sym_index_definition_token1, - [113706] = 9, - ACTIONS(59), 1, + [114712] = 8, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(61), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(65), 1, - anon_sym_LBRACE, - ACTIONS(3440), 1, - aux_sym_variable_tuning_token6, - ACTIONS(3596), 1, - sym__terminator, - STATE(2265), 1, - aux_sym_variable_definition_repeat2, - STATE(2520), 1, - sym_variable_tuning, - STATE(2344), 2, + ACTIONS(7), 1, + anon_sym_LBRACE, + ACTIONS(3638), 1, + sym_identifier, + STATE(1958), 1, + sym_qualified_name, + STATE(4155), 1, + sym__find_type, + STATE(2372), 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, - [113739] = 9, + ACTIONS(3640), 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, + [114742] = 5, 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(3110), 1, - sym__terminator, - STATE(1953), 1, - sym_query_tuning, - STATE(2300), 1, - aux_sym_for_phrase_repeat1, - STATE(2345), 2, + STATE(2373), 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, - [113772] = 9, + ACTIONS(3332), 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, + [114766] = 11, 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(3110), 1, + ACTIONS(3642), 1, sym__terminator, - STATE(1935), 1, - aux_sym_for_phrase_repeat1, - STATE(1953), 1, - sym_query_tuning, - STATE(2346), 2, + ACTIONS(3644), 1, + aux_sym_query_definition_tuning_token1, + ACTIONS(3648), 1, + aux_sym_query_definition_token2, + ACTIONS(3650), 1, + aux_sym_query_definition_token3, + STATE(2617), 1, + aux_sym_query_definition_repeat1, + STATE(3121), 1, + sym_query_definition_tuning, + ACTIONS(3646), 2, + anon_sym_SCROLLING, + aux_sym_query_definition_tuning_token2, + STATE(2374), 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, - [113805] = 9, + [114802] = 12, 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(3598), 1, - sym__terminator, - STATE(2302), 1, - aux_sym_variable_definition_repeat2, - STATE(2520), 1, - sym_variable_tuning, - STATE(2347), 2, + ACTIONS(3336), 1, + anon_sym_COLON, + ACTIONS(3338), 1, + aux_sym_repeat_tuning_token1, + ACTIONS(3340), 1, + aux_sym_on_error_phrase_token1, + STATE(2500), 1, + sym_on_error_phrase, + STATE(2611), 1, + sym_on_quit_phrase, + STATE(3125), 1, + aux_sym_repeat_statement_repeat1, + STATE(3132), 1, + sym_on_stop_phrase, + STATE(3672), 1, + sym_repeat_tuning, + STATE(2375), 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, - [113838] = 9, - ACTIONS(59), 1, + [114840] = 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(3440), 1, - aux_sym_variable_tuning_token6, - ACTIONS(3600), 1, - sym__terminator, - STATE(2297), 1, - aux_sym_variable_definition_repeat2, - STATE(2520), 1, - sym_variable_tuning, - STATE(2348), 2, + STATE(2376), 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, - [113871] = 9, - ACTIONS(59), 1, + 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, + [114864] = 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(3440), 1, - aux_sym_variable_tuning_token6, - ACTIONS(3602), 1, - sym__terminator, - STATE(2311), 1, - aux_sym_variable_definition_repeat2, - STATE(2520), 1, - sym_variable_tuning, - STATE(2349), 2, + ACTIONS(3652), 1, + sym_identifier, + STATE(1946), 1, + sym_qualified_name, + STATE(3997), 1, + sym__find_type, + STATE(2377), 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, - [113904] = 11, + ACTIONS(3640), 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, + [114894] = 11, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, @@ -138883,47 +140315,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, ACTIONS(679), 1, sym__namedot, - ACTIONS(3039), 1, + ACTIONS(3057), 1, aux_sym_field_definition_token1, - ACTIONS(3041), 1, + ACTIONS(3059), 1, aux_sym_index_definition_token1, - ACTIONS(3152), 1, + ACTIONS(3654), 1, sym__terminator, - STATE(329), 1, + STATE(336), 1, aux_sym_qualified_name_repeat1, - STATE(2562), 1, + STATE(2685), 1, aux_sym_temp_table_definition_repeat2, - STATE(2350), 2, + STATE(2378), 2, sym_comment, sym_include, - STATE(3136), 2, + STATE(3248), 2, sym_field_definition, sym_index_definition, - [113940] = 10, + [114930] = 12, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(3604), 1, - aux_sym_property_definition_token1, - STATE(2472), 1, - aux_sym_property_definition_repeat1, - STATE(2828), 1, - sym_property_type, - STATE(4098), 1, - sym_serialization_tuning, - ACTIONS(1356), 2, - aux_sym_serialization_tuning_token1, - aux_sym_serialization_tuning_token2, - ACTIONS(1370), 2, - aux_sym_property_type_token1, - aux_sym_property_type_token2, - STATE(2351), 2, + ACTIONS(3338), 1, + aux_sym_repeat_tuning_token1, + ACTIONS(3340), 1, + aux_sym_on_error_phrase_token1, + ACTIONS(3414), 1, + anon_sym_COLON, + STATE(2488), 1, + sym_on_error_phrase, + STATE(2718), 1, + sym_on_quit_phrase, + STATE(3019), 1, + sym_on_stop_phrase, + STATE(3036), 1, + aux_sym_repeat_statement_repeat1, + STATE(3672), 1, + sym_repeat_tuning, + STATE(2379), 2, sym_comment, sym_include, - [113974] = 11, + [114968] = 11, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, @@ -138932,123 +140366,125 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, ACTIONS(679), 1, sym__namedot, - ACTIONS(3039), 1, + ACTIONS(3057), 1, aux_sym_field_definition_token1, - ACTIONS(3041), 1, + ACTIONS(3059), 1, aux_sym_index_definition_token1, - ACTIONS(3606), 1, + ACTIONS(3656), 1, sym__terminator, - STATE(329), 1, + STATE(336), 1, aux_sym_qualified_name_repeat1, - STATE(2548), 1, + STATE(2627), 1, aux_sym_temp_table_definition_repeat2, - STATE(2352), 2, + STATE(2380), 2, sym_comment, sym_include, - STATE(3136), 2, + STATE(3248), 2, sym_field_definition, sym_index_definition, - [114010] = 11, + [115004] = 12, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(3608), 1, - sym__terminator, - ACTIONS(3610), 1, - aux_sym_query_definition_tuning_token1, - ACTIONS(3614), 1, - aux_sym_query_definition_token2, - ACTIONS(3616), 1, - aux_sym_query_definition_token3, - STATE(2578), 1, - aux_sym_query_definition_repeat1, - STATE(2981), 1, - sym_query_definition_tuning, - ACTIONS(3612), 2, - anon_sym_SCROLLING, - aux_sym_query_definition_tuning_token2, - STATE(2353), 2, + ACTIONS(3338), 1, + aux_sym_repeat_tuning_token1, + ACTIONS(3340), 1, + aux_sym_on_error_phrase_token1, + ACTIONS(3446), 1, + anon_sym_COLON, + STATE(2549), 1, + sym_on_error_phrase, + STATE(2716), 1, + sym_on_quit_phrase, + STATE(2997), 1, + sym_on_stop_phrase, + STATE(3034), 1, + aux_sym_repeat_statement_repeat1, + STATE(3672), 1, + sym_repeat_tuning, + STATE(2381), 2, sym_comment, sym_include, - [114046] = 11, + [115042] = 12, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(3610), 1, - aux_sym_query_definition_tuning_token1, - ACTIONS(3618), 1, - sym__terminator, - ACTIONS(3620), 1, - aux_sym_query_definition_token2, - ACTIONS(3622), 1, - aux_sym_query_definition_token3, - STATE(2561), 1, - aux_sym_query_definition_repeat1, - STATE(2981), 1, - sym_query_definition_tuning, - ACTIONS(3612), 2, - anon_sym_SCROLLING, - aux_sym_query_definition_tuning_token2, - STATE(2354), 2, + ACTIONS(3338), 1, + aux_sym_repeat_tuning_token1, + ACTIONS(3340), 1, + aux_sym_on_error_phrase_token1, + ACTIONS(3658), 1, + anon_sym_COLON, + STATE(2572), 1, + sym_on_error_phrase, + STATE(2656), 1, + sym_on_quit_phrase, + STATE(3053), 1, + aux_sym_repeat_statement_repeat1, + STATE(3058), 1, + sym_on_stop_phrase, + STATE(3672), 1, + sym_repeat_tuning, + STATE(2382), 2, sym_comment, sym_include, - [114082] = 11, + [115080] = 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(3039), 1, - aux_sym_field_definition_token1, - ACTIONS(3041), 1, - aux_sym_index_definition_token1, - ACTIONS(3056), 1, + ACTIONS(3644), 1, + aux_sym_query_definition_tuning_token1, + ACTIONS(3660), 1, sym__terminator, - STATE(329), 1, - aux_sym_qualified_name_repeat1, - STATE(2643), 1, - aux_sym_temp_table_definition_repeat2, - STATE(2355), 2, + ACTIONS(3662), 1, + aux_sym_query_definition_token2, + ACTIONS(3664), 1, + aux_sym_query_definition_token3, + STATE(2635), 1, + aux_sym_query_definition_repeat1, + STATE(3121), 1, + sym_query_definition_tuning, + ACTIONS(3646), 2, + anon_sym_SCROLLING, + aux_sym_query_definition_tuning_token2, + STATE(2383), 2, sym_comment, sym_include, - STATE(3136), 2, - sym_field_definition, - sym_index_definition, - [114118] = 11, + [115116] = 11, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(3610), 1, + ACTIONS(3644), 1, aux_sym_query_definition_tuning_token1, - ACTIONS(3624), 1, + ACTIONS(3666), 1, sym__terminator, - ACTIONS(3626), 1, + ACTIONS(3668), 1, aux_sym_query_definition_token2, - ACTIONS(3628), 1, + ACTIONS(3670), 1, aux_sym_query_definition_token3, - STATE(2667), 1, + STATE(2669), 1, aux_sym_query_definition_repeat1, - STATE(2981), 1, + STATE(3121), 1, sym_query_definition_tuning, - ACTIONS(3612), 2, + ACTIONS(3646), 2, anon_sym_SCROLLING, aux_sym_query_definition_tuning_token2, - STATE(2356), 2, + STATE(2384), 2, sym_comment, sym_include, - [114154] = 11, + [115152] = 11, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, @@ -139057,23 +140493,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, ACTIONS(679), 1, sym__namedot, - ACTIONS(3039), 1, + ACTIONS(3057), 1, aux_sym_field_definition_token1, - ACTIONS(3041), 1, + ACTIONS(3059), 1, aux_sym_index_definition_token1, - ACTIONS(3156), 1, + ACTIONS(3103), 1, sym__terminator, - STATE(329), 1, + STATE(336), 1, aux_sym_qualified_name_repeat1, - STATE(2553), 1, + STATE(2642), 1, aux_sym_temp_table_definition_repeat2, - STATE(2357), 2, + STATE(2385), 2, sym_comment, sym_include, - STATE(3136), 2, + STATE(3248), 2, sym_field_definition, sym_index_definition, - [114190] = 11, + [115188] = 11, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, @@ -139082,151 +140518,237 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, ACTIONS(679), 1, sym__namedot, - ACTIONS(3039), 1, + ACTIONS(3057), 1, aux_sym_field_definition_token1, - ACTIONS(3041), 1, + ACTIONS(3059), 1, aux_sym_index_definition_token1, - ACTIONS(3630), 1, + ACTIONS(3113), 1, sym__terminator, - STATE(329), 1, + STATE(336), 1, aux_sym_qualified_name_repeat1, - STATE(2577), 1, + STATE(2764), 1, aux_sym_temp_table_definition_repeat2, - STATE(2358), 2, + STATE(2386), 2, sym_comment, sym_include, - STATE(3136), 2, + STATE(3248), 2, sym_field_definition, sym_index_definition, - [114226] = 11, + [115224] = 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(3039), 1, - aux_sym_field_definition_token1, - ACTIONS(3041), 1, - aux_sym_index_definition_token1, - ACTIONS(3090), 1, + ACTIONS(3644), 1, + aux_sym_query_definition_tuning_token1, + ACTIONS(3672), 1, sym__terminator, - STATE(329), 1, - aux_sym_qualified_name_repeat1, - STATE(2556), 1, - aux_sym_temp_table_definition_repeat2, - STATE(2359), 2, + ACTIONS(3674), 1, + aux_sym_query_definition_token2, + ACTIONS(3676), 1, + aux_sym_query_definition_token3, + STATE(2767), 1, + aux_sym_query_definition_repeat1, + STATE(3121), 1, + sym_query_definition_tuning, + ACTIONS(3646), 2, + anon_sym_SCROLLING, + aux_sym_query_definition_tuning_token2, + STATE(2387), 2, sym_comment, sym_include, - STATE(3136), 2, - sym_field_definition, - sym_index_definition, - [114262] = 5, + [115260] = 12, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - STATE(2360), 2, + ACTIONS(3338), 1, + aux_sym_repeat_tuning_token1, + ACTIONS(3340), 1, + aux_sym_on_error_phrase_token1, + ACTIONS(3368), 1, + anon_sym_COLON, + STATE(2507), 1, + sym_on_error_phrase, + STATE(2761), 1, + sym_on_quit_phrase, + STATE(3098), 1, + aux_sym_repeat_statement_repeat1, + STATE(3100), 1, + sym_on_stop_phrase, + STATE(3672), 1, + sym_repeat_tuning, + STATE(2388), 2, sym_comment, sym_include, - ACTIONS(3406), 8, - aux_sym_serialization_tuning_token1, - anon_sym_COMMA, + [115298] = 8, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_LBRACE, + ACTIONS(3678), 1, + sym_identifier, + STATE(1953), 1, + sym_qualified_name, + STATE(3708), 1, + sym__find_type, + STATE(2389), 2, + sym_comment, + sym_include, + ACTIONS(3640), 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, + [115328] = 12, + ACTIONS(59), 1, + anon_sym_SLASH_SLASH, + ACTIONS(61), 1, + anon_sym_SLASH_STAR, + ACTIONS(65), 1, + anon_sym_LBRACE, + ACTIONS(3338), 1, + aux_sym_repeat_tuning_token1, + ACTIONS(3340), 1, + aux_sym_on_error_phrase_token1, + ACTIONS(3419), 1, 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, - [114286] = 11, + STATE(2564), 1, + sym_on_error_phrase, + STATE(2696), 1, + sym_on_quit_phrase, + STATE(2988), 1, + aux_sym_repeat_statement_repeat1, + STATE(3031), 1, + sym_on_stop_phrase, + STATE(3672), 1, + sym_repeat_tuning, + STATE(2390), 2, + sym_comment, + sym_include, + [115366] = 11, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(3610), 1, + ACTIONS(3644), 1, aux_sym_query_definition_tuning_token1, - ACTIONS(3632), 1, + ACTIONS(3680), 1, sym__terminator, - ACTIONS(3634), 1, + ACTIONS(3682), 1, aux_sym_query_definition_token2, - ACTIONS(3636), 1, + ACTIONS(3684), 1, aux_sym_query_definition_token3, - STATE(2558), 1, + STATE(2774), 1, aux_sym_query_definition_repeat1, - STATE(2981), 1, + STATE(3121), 1, sym_query_definition_tuning, - ACTIONS(3612), 2, + ACTIONS(3646), 2, anon_sym_SCROLLING, aux_sym_query_definition_tuning_token2, - STATE(2361), 2, + STATE(2391), 2, sym_comment, sym_include, - [114322] = 8, + [115402] = 12, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, - anon_sym_LBRACE, - ACTIONS(3638), 1, + ACTIONS(3686), 1, sym_identifier, - STATE(1915), 1, - sym_qualified_name, - STATE(4081), 1, - sym__find_type, - STATE(2362), 2, + ACTIONS(3688), 1, + anon_sym_LBRACE, + ACTIONS(3690), 1, + anon_sym_RBRACE, + ACTIONS(3692), 1, + anon_sym_DQUOTE, + ACTIONS(3694), 1, + aux_sym_include_argument_token1, + STATE(2423), 1, + aux_sym_include_repeat2, + STATE(3133), 1, + sym_constant, + STATE(3135), 1, + sym_double_quoted_string, + STATE(3142), 1, + sym_include_argument, + STATE(2392), 2, sym_comment, sym_include, - ACTIONS(3640), 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, - [114352] = 10, + [115440] = 11, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(1454), 1, - aux_sym_property_definition_token1, - STATE(2472), 1, - aux_sym_property_definition_repeat1, - STATE(2828), 1, - sym_property_type, - STATE(4206), 1, - sym_serialization_tuning, - ACTIONS(1356), 2, - aux_sym_serialization_tuning_token1, - aux_sym_serialization_tuning_token2, - ACTIONS(1370), 2, - aux_sym_property_type_token1, - aux_sym_property_type_token2, - STATE(2363), 2, + ACTIONS(3644), 1, + aux_sym_query_definition_tuning_token1, + ACTIONS(3696), 1, + sym__terminator, + ACTIONS(3698), 1, + aux_sym_query_definition_token2, + ACTIONS(3700), 1, + aux_sym_query_definition_token3, + STATE(2679), 1, + aux_sym_query_definition_repeat1, + STATE(3121), 1, + sym_query_definition_tuning, + ACTIONS(3646), 2, + anon_sym_SCROLLING, + aux_sym_query_definition_tuning_token2, + STATE(2393), 2, + sym_comment, + sym_include, + [115476] = 12, + ACTIONS(59), 1, + anon_sym_SLASH_SLASH, + ACTIONS(61), 1, + anon_sym_SLASH_STAR, + ACTIONS(65), 1, + anon_sym_LBRACE, + ACTIONS(3338), 1, + aux_sym_repeat_tuning_token1, + ACTIONS(3340), 1, + aux_sym_on_error_phrase_token1, + ACTIONS(3364), 1, + anon_sym_COLON, + STATE(2538), 1, + sym_on_error_phrase, + STATE(2745), 1, + sym_on_quit_phrase, + STATE(3083), 1, + aux_sym_repeat_statement_repeat1, + STATE(3085), 1, + sym_on_stop_phrase, + STATE(3672), 1, + sym_repeat_tuning, + STATE(2394), 2, sym_comment, sym_include, - [114386] = 8, + [115514] = 8, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(3642), 1, + ACTIONS(3702), 1, sym_identifier, - STATE(1918), 1, + STATE(1939), 1, sym_qualified_name, - STATE(3888), 1, + STATE(3940), 1, sym__find_type, - STATE(2364), 2, + STATE(2395), 2, sym_comment, sym_include, ACTIONS(3640), 5, @@ -139235,7 +140757,33 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_for_phrase_token3, aux_sym__find_type_token1, aux_sym__find_type_token2, - [114416] = 11, + [115544] = 12, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(3686), 1, + sym_identifier, + ACTIONS(3688), 1, + anon_sym_LBRACE, + ACTIONS(3690), 1, + anon_sym_RBRACE, + ACTIONS(3692), 1, + anon_sym_DQUOTE, + ACTIONS(3694), 1, + aux_sym_include_argument_token1, + STATE(2419), 1, + aux_sym_include_repeat2, + STATE(3133), 1, + sym_constant, + STATE(3135), 1, + sym_double_quoted_string, + STATE(3142), 1, + sym_include_argument, + STATE(2396), 2, + sym_comment, + sym_include, + [115582] = 11, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, @@ -139244,157 +140792,201 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, ACTIONS(679), 1, sym__namedot, - ACTIONS(3039), 1, + ACTIONS(3057), 1, aux_sym_field_definition_token1, - ACTIONS(3041), 1, + ACTIONS(3059), 1, aux_sym_index_definition_token1, - ACTIONS(3644), 1, + ACTIONS(3131), 1, sym__terminator, - STATE(329), 1, + STATE(336), 1, aux_sym_qualified_name_repeat1, - STATE(2568), 1, + STATE(2632), 1, aux_sym_temp_table_definition_repeat2, - STATE(2365), 2, + STATE(2397), 2, sym_comment, sym_include, - STATE(3136), 2, + STATE(3248), 2, sym_field_definition, sym_index_definition, - [114452] = 5, - ACTIONS(3), 1, + [115618] = 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, - STATE(2366), 2, - sym_comment, - sym_include, - ACTIONS(213), 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, + ACTIONS(679), 1, + sym__namedot, + ACTIONS(3057), 1, aux_sym_field_definition_token1, + ACTIONS(3059), 1, aux_sym_index_definition_token1, - [114476] = 5, - ACTIONS(3), 1, + ACTIONS(3704), 1, + sym__terminator, + STATE(336), 1, + aux_sym_qualified_name_repeat1, + STATE(2765), 1, + aux_sym_temp_table_definition_repeat2, + STATE(2398), 2, + sym_comment, + sym_include, + STATE(3248), 2, + sym_field_definition, + sym_index_definition, + [115654] = 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(2367), 2, + ACTIONS(1464), 1, + aux_sym_property_definition_token1, + STATE(2585), 1, + aux_sym_property_definition_repeat1, + STATE(2840), 1, + sym_property_type, + STATE(4313), 1, + sym_serialization_tuning, + ACTIONS(1362), 2, + aux_sym_serialization_tuning_token1, + aux_sym_serialization_tuning_token2, + ACTIONS(1376), 2, + aux_sym_property_type_token1, + aux_sym_property_type_token2, + STATE(2399), 2, sym_comment, sym_include, - 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, - [114500] = 11, + [115688] = 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(3039), 1, - aux_sym_field_definition_token1, - ACTIONS(3041), 1, - aux_sym_index_definition_token1, - ACTIONS(3646), 1, - sym__terminator, - STATE(329), 1, - aux_sym_qualified_name_repeat1, - STATE(2615), 1, - aux_sym_temp_table_definition_repeat2, - STATE(2368), 2, + ACTIONS(3338), 1, + aux_sym_repeat_tuning_token1, + ACTIONS(3340), 1, + aux_sym_on_error_phrase_token1, + ACTIONS(3706), 1, + anon_sym_COLON, + STATE(2493), 1, + sym_on_error_phrase, + STATE(2736), 1, + sym_on_quit_phrase, + STATE(3064), 1, + sym_on_stop_phrase, + STATE(3068), 1, + aux_sym_repeat_statement_repeat1, + STATE(3672), 1, + sym_repeat_tuning, + STATE(2400), 2, sym_comment, sym_include, - STATE(3136), 2, - sym_field_definition, - sym_index_definition, - [114536] = 11, + [115726] = 12, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(3610), 1, - aux_sym_query_definition_tuning_token1, - ACTIONS(3648), 1, - sym__terminator, - ACTIONS(3650), 1, - aux_sym_query_definition_token2, - ACTIONS(3652), 1, - aux_sym_query_definition_token3, - STATE(2651), 1, - aux_sym_query_definition_repeat1, - STATE(2981), 1, - sym_query_definition_tuning, - ACTIONS(3612), 2, - anon_sym_SCROLLING, - aux_sym_query_definition_tuning_token2, - STATE(2369), 2, + ACTIONS(3338), 1, + aux_sym_repeat_tuning_token1, + ACTIONS(3340), 1, + aux_sym_on_error_phrase_token1, + ACTIONS(3433), 1, + anon_sym_COLON, + STATE(2489), 1, + sym_on_error_phrase, + STATE(2653), 1, + sym_on_quit_phrase, + STATE(3062), 1, + aux_sym_repeat_statement_repeat1, + STATE(3077), 1, + sym_on_stop_phrase, + STATE(3672), 1, + sym_repeat_tuning, + STATE(2401), 2, + sym_comment, + sym_include, + [115764] = 12, + ACTIONS(59), 1, + anon_sym_SLASH_SLASH, + ACTIONS(61), 1, + anon_sym_SLASH_STAR, + ACTIONS(65), 1, + anon_sym_LBRACE, + ACTIONS(3338), 1, + aux_sym_repeat_tuning_token1, + ACTIONS(3340), 1, + aux_sym_on_error_phrase_token1, + ACTIONS(3708), 1, + anon_sym_COLON, + STATE(2578), 1, + sym_on_error_phrase, + STATE(2694), 1, + sym_on_quit_phrase, + STATE(3013), 1, + aux_sym_repeat_statement_repeat1, + STATE(3014), 1, + sym_on_stop_phrase, + STATE(3672), 1, + sym_repeat_tuning, + STATE(2402), 2, sym_comment, sym_include, - [114572] = 7, + [115802] = 12, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, + ACTIONS(3686), 1, + sym_identifier, + ACTIONS(3688), 1, anon_sym_LBRACE, - STATE(2580), 1, - sym_index_tuning, - ACTIONS(3656), 2, - aux_sym_variable_definition_token5, - aux_sym_index_tuning_token1, - STATE(2370), 3, + ACTIONS(3692), 1, + anon_sym_DQUOTE, + ACTIONS(3694), 1, + aux_sym_include_argument_token1, + ACTIONS(3710), 1, + anon_sym_RBRACE, + STATE(2396), 1, + aux_sym_include_repeat2, + STATE(3133), 1, + sym_constant, + STATE(3135), 1, + sym_double_quoted_string, + STATE(3142), 1, + sym_include_argument, + STATE(2403), 2, sym_comment, sym_include, - aux_sym_index_definition_repeat1, - ACTIONS(3654), 4, - sym_identifier, - sym__terminator, - aux_sym_field_definition_token1, - aux_sym_index_definition_token1, - [114600] = 11, + [115840] = 11, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(3610), 1, - aux_sym_query_definition_tuning_token1, - ACTIONS(3659), 1, + ACTIONS(679), 1, + sym__namedot, + ACTIONS(3057), 1, + aux_sym_field_definition_token1, + ACTIONS(3059), 1, + aux_sym_index_definition_token1, + ACTIONS(3712), 1, sym__terminator, - ACTIONS(3661), 1, - aux_sym_query_definition_token2, - ACTIONS(3663), 1, - aux_sym_query_definition_token3, - STATE(2599), 1, - aux_sym_query_definition_repeat1, - STATE(2981), 1, - sym_query_definition_tuning, - ACTIONS(3612), 2, - anon_sym_SCROLLING, - aux_sym_query_definition_tuning_token2, - STATE(2371), 2, + STATE(336), 1, + aux_sym_qualified_name_repeat1, + STATE(2723), 1, + aux_sym_temp_table_definition_repeat2, + STATE(2404), 2, sym_comment, sym_include, - [114636] = 11, + STATE(3248), 2, + sym_field_definition, + sym_index_definition, + [115876] = 11, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, @@ -139403,122 +140995,121 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, ACTIONS(679), 1, sym__namedot, - ACTIONS(3039), 1, + ACTIONS(3057), 1, aux_sym_field_definition_token1, - ACTIONS(3041), 1, + ACTIONS(3059), 1, aux_sym_index_definition_token1, - ACTIONS(3665), 1, + ACTIONS(3210), 1, sym__terminator, - STATE(329), 1, + STATE(336), 1, aux_sym_qualified_name_repeat1, - STATE(2714), 1, + STATE(2673), 1, aux_sym_temp_table_definition_repeat2, - STATE(2372), 2, + STATE(2405), 2, sym_comment, sym_include, - STATE(3136), 2, + STATE(3248), 2, sym_field_definition, sym_index_definition, - [114672] = 11, + [115912] = 11, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(3610), 1, + ACTIONS(3644), 1, aux_sym_query_definition_tuning_token1, - ACTIONS(3667), 1, + ACTIONS(3714), 1, sym__terminator, - ACTIONS(3669), 1, + ACTIONS(3716), 1, aux_sym_query_definition_token2, - ACTIONS(3671), 1, + ACTIONS(3718), 1, aux_sym_query_definition_token3, - STATE(2700), 1, + STATE(2591), 1, aux_sym_query_definition_repeat1, - STATE(2981), 1, + STATE(3121), 1, sym_query_definition_tuning, - ACTIONS(3612), 2, + ACTIONS(3646), 2, anon_sym_SCROLLING, aux_sym_query_definition_tuning_token2, - STATE(2373), 2, + STATE(2406), 2, sym_comment, sym_include, - [114708] = 12, - ACTIONS(3), 1, + [115948] = 12, + ACTIONS(59), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(61), 1, anon_sym_SLASH_STAR, - ACTIONS(3673), 1, - sym_identifier, - ACTIONS(3675), 1, + ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(3677), 1, - anon_sym_RBRACE, - ACTIONS(3679), 1, - anon_sym_DQUOTE, - ACTIONS(3681), 1, - aux_sym_include_argument_token1, - STATE(2384), 1, - aux_sym_include_repeat2, - STATE(2929), 1, - sym_constant, - STATE(2930), 1, - sym_double_quoted_string, - STATE(2935), 1, - sym_include_argument, - STATE(2374), 2, + ACTIONS(3338), 1, + aux_sym_repeat_tuning_token1, + ACTIONS(3340), 1, + aux_sym_on_error_phrase_token1, + ACTIONS(3427), 1, + anon_sym_COLON, + STATE(2589), 1, + sym_on_error_phrase, + STATE(2597), 1, + sym_on_quit_phrase, + STATE(3165), 1, + aux_sym_repeat_statement_repeat1, + STATE(3172), 1, + sym_on_stop_phrase, + STATE(3672), 1, + sym_repeat_tuning, + STATE(2407), 2, sym_comment, sym_include, - [114746] = 8, - ACTIONS(3), 1, + [115986] = 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(3683), 1, - sym_identifier, - STATE(1922), 1, - sym_qualified_name, - STATE(3873), 1, - sym__find_type, - STATE(2375), 2, + ACTIONS(3338), 1, + aux_sym_repeat_tuning_token1, + ACTIONS(3340), 1, + aux_sym_on_error_phrase_token1, + ACTIONS(3720), 1, + anon_sym_COLON, + STATE(2480), 1, + sym_on_error_phrase, + STATE(2700), 1, + sym_on_quit_phrase, + STATE(3023), 1, + sym_on_stop_phrase, + STATE(3024), 1, + aux_sym_repeat_statement_repeat1, + STATE(3672), 1, + sym_repeat_tuning, + STATE(2408), 2, sym_comment, sym_include, - ACTIONS(3640), 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, - [114776] = 12, + [116024] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(3673), 1, - sym_identifier, - ACTIONS(3675), 1, + ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(3677), 1, - anon_sym_RBRACE, - ACTIONS(3679), 1, - anon_sym_DQUOTE, - ACTIONS(3681), 1, - aux_sym_include_argument_token1, - STATE(2383), 1, - aux_sym_include_repeat2, - STATE(2929), 1, - sym_constant, - STATE(2930), 1, - sym_double_quoted_string, - STATE(2935), 1, - sym_include_argument, - STATE(2376), 2, + STATE(2634), 1, + sym_index_tuning, + ACTIONS(3724), 2, + aux_sym_variable_definition_token5, + aux_sym_index_tuning_token1, + STATE(2409), 3, sym_comment, sym_include, - [114814] = 11, + aux_sym_index_definition_repeat1, + ACTIONS(3722), 4, + sym_identifier, + sym__terminator, + aux_sym_field_definition_token1, + aux_sym_index_definition_token1, + [116052] = 11, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, @@ -139527,73 +141118,74 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, ACTIONS(679), 1, sym__namedot, - ACTIONS(3039), 1, + ACTIONS(3057), 1, aux_sym_field_definition_token1, - ACTIONS(3041), 1, + ACTIONS(3059), 1, aux_sym_index_definition_token1, - ACTIONS(3685), 1, + ACTIONS(3727), 1, sym__terminator, - STATE(329), 1, + STATE(336), 1, aux_sym_qualified_name_repeat1, - STATE(2581), 1, + STATE(2639), 1, aux_sym_temp_table_definition_repeat2, - STATE(2377), 2, + STATE(2410), 2, sym_comment, sym_include, - STATE(3136), 2, + STATE(3248), 2, sym_field_definition, sym_index_definition, - [114850] = 11, + [116088] = 11, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(3610), 1, + ACTIONS(3644), 1, aux_sym_query_definition_tuning_token1, - ACTIONS(3687), 1, + ACTIONS(3729), 1, sym__terminator, - ACTIONS(3689), 1, + ACTIONS(3731), 1, aux_sym_query_definition_token2, - ACTIONS(3691), 1, + ACTIONS(3733), 1, aux_sym_query_definition_token3, - STATE(2587), 1, + STATE(2710), 1, aux_sym_query_definition_repeat1, - STATE(2981), 1, + STATE(3121), 1, sym_query_definition_tuning, - ACTIONS(3612), 2, + ACTIONS(3646), 2, anon_sym_SCROLLING, aux_sym_query_definition_tuning_token2, - STATE(2378), 2, + STATE(2411), 2, sym_comment, sym_include, - [114886] = 11, + [116124] = 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(3039), 1, - aux_sym_field_definition_token1, - ACTIONS(3041), 1, - aux_sym_index_definition_token1, - ACTIONS(3693), 1, - sym__terminator, - STATE(329), 1, - aux_sym_qualified_name_repeat1, - STATE(2613), 1, - aux_sym_temp_table_definition_repeat2, - STATE(2379), 2, + ACTIONS(3338), 1, + aux_sym_repeat_tuning_token1, + ACTIONS(3340), 1, + aux_sym_on_error_phrase_token1, + ACTIONS(3358), 1, + anon_sym_COLON, + STATE(2484), 1, + sym_on_error_phrase, + STATE(2683), 1, + sym_on_quit_phrase, + STATE(2993), 1, + aux_sym_repeat_statement_repeat1, + STATE(3028), 1, + sym_on_stop_phrase, + STATE(3672), 1, + sym_repeat_tuning, + STATE(2412), 2, sym_comment, sym_include, - STATE(3136), 2, - sym_field_definition, - sym_index_definition, - [114922] = 11, + [116162] = 11, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, @@ -139602,23 +141194,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, ACTIONS(679), 1, sym__namedot, - ACTIONS(3039), 1, + ACTIONS(3057), 1, aux_sym_field_definition_token1, - ACTIONS(3041), 1, + ACTIONS(3059), 1, aux_sym_index_definition_token1, - ACTIONS(3695), 1, + ACTIONS(3735), 1, sym__terminator, - STATE(329), 1, + STATE(336), 1, aux_sym_qualified_name_repeat1, - STATE(2596), 1, + STATE(2657), 1, aux_sym_temp_table_definition_repeat2, - STATE(2380), 2, + STATE(2413), 2, sym_comment, sym_include, - STATE(3136), 2, + STATE(3248), 2, sym_field_definition, sym_index_definition, - [114958] = 11, + [116198] = 11, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, @@ -139627,99 +141219,74 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, ACTIONS(679), 1, sym__namedot, - ACTIONS(3039), 1, + ACTIONS(3057), 1, aux_sym_field_definition_token1, - ACTIONS(3041), 1, + ACTIONS(3059), 1, aux_sym_index_definition_token1, - ACTIONS(3697), 1, + ACTIONS(3737), 1, sym__terminator, - STATE(329), 1, + STATE(336), 1, aux_sym_qualified_name_repeat1, - STATE(2603), 1, + STATE(2699), 1, aux_sym_temp_table_definition_repeat2, - STATE(2381), 2, + STATE(2414), 2, sym_comment, sym_include, - STATE(3136), 2, + STATE(3248), 2, sym_field_definition, sym_index_definition, - [114994] = 11, + [116234] = 11, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(3610), 1, + ACTIONS(3644), 1, aux_sym_query_definition_tuning_token1, - ACTIONS(3699), 1, + ACTIONS(3739), 1, sym__terminator, - ACTIONS(3701), 1, + ACTIONS(3741), 1, aux_sym_query_definition_token2, - ACTIONS(3703), 1, + ACTIONS(3743), 1, aux_sym_query_definition_token3, - STATE(2684), 1, + STATE(2650), 1, aux_sym_query_definition_repeat1, - STATE(2981), 1, + STATE(3121), 1, sym_query_definition_tuning, - ACTIONS(3612), 2, + ACTIONS(3646), 2, anon_sym_SCROLLING, aux_sym_query_definition_tuning_token2, - STATE(2382), 2, - sym_comment, - sym_include, - [115030] = 12, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - ACTIONS(3673), 1, - sym_identifier, - ACTIONS(3675), 1, - anon_sym_LBRACE, - ACTIONS(3679), 1, - anon_sym_DQUOTE, - ACTIONS(3681), 1, - aux_sym_include_argument_token1, - ACTIONS(3705), 1, - anon_sym_RBRACE, - STATE(2384), 1, - aux_sym_include_repeat2, - STATE(2929), 1, - sym_constant, - STATE(2930), 1, - sym_double_quoted_string, - STATE(2935), 1, - sym_include_argument, - STATE(2383), 2, + STATE(2415), 2, sym_comment, sym_include, - [115068] = 11, - ACTIONS(3), 1, + [116270] = 12, + ACTIONS(59), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(61), 1, anon_sym_SLASH_STAR, - ACTIONS(3707), 1, - sym_identifier, - ACTIONS(3710), 1, + ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(3713), 1, - anon_sym_RBRACE, - ACTIONS(3715), 1, - anon_sym_DQUOTE, - ACTIONS(3718), 1, - aux_sym_include_argument_token1, - STATE(2929), 1, - sym_constant, - STATE(2930), 1, - sym_double_quoted_string, - STATE(2935), 1, - sym_include_argument, - STATE(2384), 3, + ACTIONS(3338), 1, + aux_sym_repeat_tuning_token1, + ACTIONS(3340), 1, + aux_sym_on_error_phrase_token1, + ACTIONS(3366), 1, + anon_sym_COLON, + STATE(2466), 1, + sym_on_error_phrase, + STATE(2680), 1, + sym_on_quit_phrase, + STATE(3010), 1, + aux_sym_repeat_statement_repeat1, + STATE(3016), 1, + sym_on_stop_phrase, + STATE(3672), 1, + sym_repeat_tuning, + STATE(2416), 2, sym_comment, sym_include, - aux_sym_include_repeat2, - [115104] = 11, + [116308] = 11, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, @@ -139728,61 +141295,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, ACTIONS(679), 1, sym__namedot, - ACTIONS(3039), 1, + ACTIONS(3057), 1, aux_sym_field_definition_token1, - ACTIONS(3041), 1, + ACTIONS(3059), 1, aux_sym_index_definition_token1, - ACTIONS(3186), 1, + ACTIONS(3745), 1, sym__terminator, - STATE(329), 1, + STATE(336), 1, aux_sym_qualified_name_repeat1, - STATE(2663), 1, + STATE(2644), 1, aux_sym_temp_table_definition_repeat2, - STATE(2385), 2, + STATE(2417), 2, sym_comment, sym_include, - STATE(3136), 2, + STATE(3248), 2, sym_field_definition, sym_index_definition, - [115140] = 11, - ACTIONS(59), 1, - anon_sym_SLASH_SLASH, - ACTIONS(61), 1, - anon_sym_SLASH_STAR, - ACTIONS(65), 1, - anon_sym_LBRACE, - ACTIONS(3610), 1, - aux_sym_query_definition_tuning_token1, - ACTIONS(3721), 1, - sym__terminator, - ACTIONS(3723), 1, - aux_sym_query_definition_token2, - ACTIONS(3725), 1, - aux_sym_query_definition_token3, - STATE(2653), 1, - aux_sym_query_definition_repeat1, - STATE(2981), 1, - sym_query_definition_tuning, - ACTIONS(3612), 2, - anon_sym_SCROLLING, - aux_sym_query_definition_tuning_token2, - STATE(2386), 2, - sym_comment, - sym_include, - [115176] = 8, + [116344] = 8, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(3727), 1, + ACTIONS(3747), 1, sym_identifier, - STATE(1906), 1, + STATE(1952), 1, sym_qualified_name, - STATE(3596), 1, + STATE(3680), 1, sym__find_type, - STATE(2387), 2, + STATE(2418), 2, sym_comment, sym_include, ACTIONS(3640), 5, @@ -139791,775 +141333,658 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_for_phrase_token3, aux_sym__find_type_token1, aux_sym__find_type_token2, - [115206] = 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(3039), 1, - aux_sym_field_definition_token1, - ACTIONS(3041), 1, - aux_sym_index_definition_token1, - ACTIONS(3729), 1, - sym__terminator, - STATE(329), 1, - aux_sym_qualified_name_repeat1, - STATE(2677), 1, - aux_sym_temp_table_definition_repeat2, - STATE(2388), 2, - sym_comment, - sym_include, - STATE(3136), 2, - sym_field_definition, - sym_index_definition, - [115242] = 12, + [116374] = 11, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(3673), 1, + ACTIONS(3749), 1, sym_identifier, - ACTIONS(3675), 1, + ACTIONS(3752), 1, anon_sym_LBRACE, - ACTIONS(3679), 1, + ACTIONS(3755), 1, + anon_sym_RBRACE, + ACTIONS(3757), 1, anon_sym_DQUOTE, - ACTIONS(3681), 1, + ACTIONS(3760), 1, aux_sym_include_argument_token1, - ACTIONS(3731), 1, - anon_sym_RBRACE, - STATE(2374), 1, - aux_sym_include_repeat2, - STATE(2929), 1, + STATE(3133), 1, sym_constant, - STATE(2930), 1, + STATE(3135), 1, sym_double_quoted_string, - STATE(2935), 1, + STATE(3142), 1, sym_include_argument, - STATE(2389), 2, + STATE(2419), 3, sym_comment, sym_include, - [115280] = 8, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - ACTIONS(7), 1, - anon_sym_LBRACE, - ACTIONS(3733), 1, - sym_identifier, - STATE(1912), 1, - sym_qualified_name, - STATE(3666), 1, - sym__find_type, - STATE(2390), 2, - sym_comment, - sym_include, - ACTIONS(3640), 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, - [115310] = 6, + aux_sym_include_repeat2, + [116410] = 12, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(1541), 1, - aux_sym_variable_definition_token2, - STATE(2391), 2, + ACTIONS(3338), 1, + aux_sym_repeat_tuning_token1, + ACTIONS(3340), 1, + aux_sym_on_error_phrase_token1, + ACTIONS(3763), 1, + anon_sym_COLON, + STATE(2513), 1, + sym_on_error_phrase, + STATE(2744), 1, + sym_on_quit_phrase, + STATE(3037), 1, + aux_sym_repeat_statement_repeat1, + STATE(3059), 1, + sym_on_stop_phrase, + STATE(3672), 1, + sym_repeat_tuning, + STATE(2420), 2, sym_comment, sym_include, - ACTIONS(1869), 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, - [115335] = 10, - ACTIONS(3), 1, + [116448] = 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(3735), 1, - sym_identifier, - ACTIONS(3737), 1, - anon_sym_RPAREN, - ACTIONS(3741), 1, - aux_sym_function_parameter_token1, - STATE(3461), 1, - sym_function_parameter, - STATE(4030), 1, - sym_function_parameter_mode, - ACTIONS(3739), 2, - aux_sym_input_expression_token1, - aux_sym_argument_mode_token1, - STATE(2392), 2, + ACTIONS(679), 1, + sym__namedot, + ACTIONS(3057), 1, + aux_sym_field_definition_token1, + ACTIONS(3059), 1, + aux_sym_index_definition_token1, + ACTIONS(3135), 1, + sym__terminator, + STATE(336), 1, + aux_sym_qualified_name_repeat1, + STATE(2668), 1, + aux_sym_temp_table_definition_repeat2, + STATE(2421), 2, sym_comment, sym_include, - [115368] = 10, + STATE(3248), 2, + sym_field_definition, + sym_index_definition, + [116484] = 11, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(3610), 1, + ACTIONS(3644), 1, aux_sym_query_definition_tuning_token1, - ACTIONS(3743), 1, + ACTIONS(3765), 1, sym__terminator, - ACTIONS(3745), 1, + ACTIONS(3767), 1, + aux_sym_query_definition_token2, + ACTIONS(3769), 1, aux_sym_query_definition_token3, - STATE(2681), 1, + STATE(2675), 1, aux_sym_query_definition_repeat1, - STATE(2981), 1, + STATE(3121), 1, sym_query_definition_tuning, - ACTIONS(3612), 2, + ACTIONS(3646), 2, anon_sym_SCROLLING, aux_sym_query_definition_tuning_token2, - STATE(2393), 2, + STATE(2422), 2, sym_comment, sym_include, - [115401] = 10, + [116520] = 12, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, - anon_sym_LBRACE, - ACTIONS(3735), 1, + ACTIONS(3686), 1, sym_identifier, - ACTIONS(3741), 1, - aux_sym_function_parameter_token1, - ACTIONS(3747), 1, - anon_sym_RPAREN, - STATE(3514), 1, - sym_function_parameter, - STATE(4030), 1, - sym_function_parameter_mode, - ACTIONS(3739), 2, - aux_sym_input_expression_token1, - aux_sym_argument_mode_token1, - STATE(2394), 2, + ACTIONS(3688), 1, + anon_sym_LBRACE, + ACTIONS(3692), 1, + anon_sym_DQUOTE, + ACTIONS(3694), 1, + aux_sym_include_argument_token1, + ACTIONS(3771), 1, + anon_sym_RBRACE, + STATE(2419), 1, + aux_sym_include_repeat2, + STATE(3133), 1, + sym_constant, + STATE(3135), 1, + sym_double_quoted_string, + STATE(3142), 1, + sym_include_argument, + STATE(2423), 2, + sym_comment, + sym_include, + [116558] = 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(3057), 1, + aux_sym_field_definition_token1, + ACTIONS(3059), 1, + aux_sym_index_definition_token1, + ACTIONS(3773), 1, + sym__terminator, + STATE(336), 1, + aux_sym_qualified_name_repeat1, + STATE(2613), 1, + aux_sym_temp_table_definition_repeat2, + STATE(2424), 2, + sym_comment, + sym_include, + STATE(3248), 2, + sym_field_definition, + sym_index_definition, + [116594] = 6, + ACTIONS(59), 1, + anon_sym_SLASH_SLASH, + ACTIONS(61), 1, + anon_sym_SLASH_STAR, + ACTIONS(65), 1, + anon_sym_LBRACE, + ACTIONS(1705), 1, + aux_sym_variable_definition_token2, + STATE(2425), 2, sym_comment, sym_include, - [115434] = 9, + ACTIONS(1703), 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, + [116619] = 9, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(3749), 1, + ACTIONS(3775), 1, sym_identifier, - ACTIONS(3751), 1, + ACTIONS(3777), 1, anon_sym_DQUOTE, - ACTIONS(3753), 1, + ACTIONS(3779), 1, anon_sym_SQUOTE, - STATE(1812), 2, + STATE(1769), 2, sym_double_quoted_string, sym_single_quoted_string, - STATE(2395), 2, + STATE(2426), 2, sym_comment, sym_include, - STATE(3084), 2, + STATE(3208), 2, sym_qualified_name, sym__string_literal, - [115465] = 10, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - ACTIONS(7), 1, - anon_sym_LBRACE, - ACTIONS(3735), 1, - sym_identifier, - ACTIONS(3741), 1, - aux_sym_function_parameter_token1, - ACTIONS(3755), 1, - anon_sym_RPAREN, - STATE(3321), 1, - sym_function_parameter, - STATE(4030), 1, - sym_function_parameter_mode, - ACTIONS(3739), 2, - aux_sym_input_expression_token1, - aux_sym_argument_mode_token1, - STATE(2396), 2, - sym_comment, - sym_include, - [115498] = 10, + [116650] = 11, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(3735), 1, + ACTIONS(791), 1, + aux_sym_do_block_token1, + ACTIONS(1295), 1, sym_identifier, - ACTIONS(3741), 1, - aux_sym_function_parameter_token1, - ACTIONS(3757), 1, - anon_sym_RPAREN, - STATE(3298), 1, - sym_function_parameter, - STATE(4030), 1, - sym_function_parameter_mode, - ACTIONS(3739), 2, - aux_sym_input_expression_token1, - aux_sym_argument_mode_token1, - STATE(2397), 2, + ACTIONS(1297), 1, + aux_sym_input_expression_token2, + STATE(1015), 1, + sym_do_block, + STATE(2817), 1, + aux_sym_on_statement_repeat2, + STATE(3291), 1, + sym_widget_phrase, + STATE(4307), 1, + sym_label, + STATE(2427), 2, sym_comment, sym_include, - [115531] = 10, - ACTIONS(3), 1, + [116685] = 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(3759), 1, - sym_identifier, - ACTIONS(3761), 1, + ACTIONS(3644), 1, + aux_sym_query_definition_tuning_token1, + ACTIONS(3781), 1, sym__terminator, - ACTIONS(3763), 1, - anon_sym_NO_DASHERROR, - STATE(2515), 1, - aux_sym_assign_statement_repeat1, - STATE(3078), 1, - sym_assignment, - STATE(2398), 2, + ACTIONS(3783), 1, + aux_sym_query_definition_token3, + STATE(2614), 1, + aux_sym_query_definition_repeat1, + STATE(3121), 1, + sym_query_definition_tuning, + ACTIONS(3646), 2, + anon_sym_SCROLLING, + aux_sym_query_definition_tuning_token2, + STATE(2428), 2, sym_comment, sym_include, - STATE(4588), 2, - sym_qualified_name, - sym_object_access, - [115564] = 9, + [116718] = 9, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(3751), 1, + ACTIONS(3777), 1, anon_sym_DQUOTE, - ACTIONS(3753), 1, + ACTIONS(3779), 1, anon_sym_SQUOTE, - ACTIONS(3765), 1, + ACTIONS(3785), 1, sym_identifier, - STATE(1812), 2, + STATE(1769), 2, sym_double_quoted_string, sym_single_quoted_string, - STATE(1924), 2, + STATE(1929), 2, sym_qualified_name, sym__string_literal, - STATE(2399), 2, + STATE(2429), 2, sym_comment, sym_include, - [115595] = 11, + [116749] = 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(1295), 1, sym_identifier, ACTIONS(1297), 1, aux_sym_input_expression_token2, - STATE(1208), 1, + STATE(962), 1, sym_do_block, - STATE(2797), 1, + STATE(2467), 1, aux_sym_on_statement_repeat2, - STATE(3194), 1, + STATE(3291), 1, sym_widget_phrase, - STATE(4253), 1, + STATE(4243), 1, sym_label, - STATE(2400), 2, + STATE(2430), 2, sym_comment, sym_include, - [115630] = 11, + [116784] = 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(791), 1, aux_sym_do_block_token1, ACTIONS(1295), 1, sym_identifier, ACTIONS(1297), 1, aux_sym_input_expression_token2, - STATE(1208), 1, + STATE(1081), 1, sym_do_block, - STATE(2523), 1, + STATE(2427), 1, aux_sym_on_statement_repeat2, - STATE(3194), 1, + STATE(3291), 1, sym_widget_phrase, - STATE(4253), 1, + STATE(4307), 1, sym_label, - STATE(2401), 2, + STATE(2431), 2, sym_comment, sym_include, - [115665] = 8, + [116819] = 11, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(3767), 1, + ACTIONS(791), 1, + aux_sym_do_block_token1, + ACTIONS(1295), 1, sym_identifier, - STATE(3078), 1, - sym_assignment, - ACTIONS(3770), 2, - sym__terminator, - anon_sym_NO_DASHERROR, - STATE(4588), 2, - sym_qualified_name, - sym_object_access, - STATE(2402), 3, + ACTIONS(1297), 1, + aux_sym_input_expression_token2, + STATE(1081), 1, + sym_do_block, + STATE(2817), 1, + aux_sym_on_statement_repeat2, + STATE(3291), 1, + sym_widget_phrase, + STATE(4307), 1, + sym_label, + STATE(2432), 2, sym_comment, sym_include, - aux_sym_assign_statement_repeat1, - [115694] = 11, + [116854] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2109), 1, - aux_sym_on_error_phrase_token1, - ACTIONS(3001), 1, - aux_sym_while_phrase_token1, - ACTIONS(3772), 1, - anon_sym_COLON, - STATE(2803), 1, - sym_while_phrase, - STATE(3009), 1, - sym_on_error_phrase, - STATE(3238), 1, - sym_on_quit_phrase, - STATE(4142), 1, - sym_on_stop_phrase, - STATE(2403), 2, + ACTIONS(1888), 1, + aux_sym_variable_definition_token2, + STATE(2433), 2, sym_comment, sym_include, - [115729] = 11, + ACTIONS(1972), 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, + [116879] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(3774), 1, - aux_sym__block_terminator_token1, - ACTIONS(3776), 1, - aux_sym_case_when_branch_token1, - STATE(1042), 1, - sym__case_terminator, - STATE(1043), 1, - sym__block_terminator, - STATE(2631), 1, - aux_sym_case_body_repeat1, - STATE(3156), 1, - sym_case_when_branch, - STATE(3518), 1, - sym_case_body, - STATE(2404), 2, + ACTIONS(1886), 1, + aux_sym_variable_definition_token2, + STATE(2434), 2, sym_comment, sym_include, - [115764] = 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, + [116904] = 9, 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, + ACTIONS(3777), 1, + anon_sym_DQUOTE, + ACTIONS(3779), 1, + anon_sym_SQUOTE, + ACTIONS(3787), 1, sym_identifier, - ACTIONS(1297), 1, - aux_sym_input_expression_token2, - STATE(1142), 1, - sym_do_block, - STATE(2797), 1, - aux_sym_on_statement_repeat2, - STATE(3194), 1, - sym_widget_phrase, - STATE(4440), 1, - sym_label, - STATE(2405), 2, + STATE(1769), 2, + sym_double_quoted_string, + sym_single_quoted_string, + STATE(2435), 2, sym_comment, sym_include, - [115799] = 11, + STATE(3191), 2, + sym_qualified_name, + sym__string_literal, + [116935] = 11, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(261), 1, + ACTIONS(755), 1, aux_sym_do_block_token1, ACTIONS(1295), 1, sym_identifier, ACTIONS(1297), 1, aux_sym_input_expression_token2, - STATE(1142), 1, + STATE(962), 1, sym_do_block, - STATE(2470), 1, + STATE(2817), 1, aux_sym_on_statement_repeat2, - STATE(3194), 1, + STATE(3291), 1, sym_widget_phrase, - STATE(4440), 1, + STATE(4243), 1, sym_label, - STATE(2406), 2, + STATE(2436), 2, sym_comment, sym_include, - [115834] = 9, + [116970] = 9, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(3751), 1, + ACTIONS(3777), 1, anon_sym_DQUOTE, - ACTIONS(3753), 1, + ACTIONS(3779), 1, anon_sym_SQUOTE, - ACTIONS(3778), 1, + ACTIONS(3789), 1, sym_identifier, - STATE(1812), 2, + STATE(1769), 2, sym_double_quoted_string, sym_single_quoted_string, - STATE(2407), 2, + STATE(2437), 2, sym_comment, sym_include, - STATE(3097), 2, + STATE(3206), 2, sym_qualified_name, sym__string_literal, - [115865] = 10, + [117001] = 10, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(3610), 1, + ACTIONS(3644), 1, aux_sym_query_definition_tuning_token1, - ACTIONS(3780), 1, + ACTIONS(3791), 1, sym__terminator, - ACTIONS(3782), 1, + ACTIONS(3793), 1, aux_sym_query_definition_token3, - STATE(2605), 1, + STATE(2630), 1, aux_sym_query_definition_repeat1, - STATE(2981), 1, + STATE(3121), 1, sym_query_definition_tuning, - ACTIONS(3612), 2, + ACTIONS(3646), 2, anon_sym_SCROLLING, aux_sym_query_definition_tuning_token2, - STATE(2408), 2, + STATE(2438), 2, sym_comment, sym_include, - [115898] = 11, - ACTIONS(3), 1, + [117034] = 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(825), 1, - aux_sym_do_block_token1, - ACTIONS(1295), 1, - sym_identifier, - ACTIONS(1297), 1, - aux_sym_input_expression_token2, - STATE(922), 1, - sym_do_block, - STATE(2797), 1, - aux_sym_on_statement_repeat2, - STATE(3194), 1, - sym_widget_phrase, - STATE(4176), 1, - sym_label, - STATE(2409), 2, + ACTIONS(1872), 1, + aux_sym_variable_definition_token2, + STATE(2439), 2, sym_comment, sym_include, - [115933] = 9, - ACTIONS(3), 1, + 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, + [117059] = 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(3751), 1, - anon_sym_DQUOTE, - ACTIONS(3753), 1, - anon_sym_SQUOTE, - ACTIONS(3784), 1, - sym_identifier, - STATE(1812), 2, - sym_double_quoted_string, - sym_single_quoted_string, - STATE(1928), 2, - sym_qualified_name, - sym__string_literal, - STATE(2410), 2, + STATE(2440), 2, sym_comment, sym_include, - [115964] = 11, + 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, + [117082] = 10, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2109), 1, - aux_sym_on_error_phrase_token1, - ACTIONS(3001), 1, - aux_sym_while_phrase_token1, - ACTIONS(3786), 1, - anon_sym_COLON, - STATE(2888), 1, - sym_while_phrase, - STATE(2937), 1, - sym_on_error_phrase, - STATE(3315), 1, - sym_on_quit_phrase, - STATE(4221), 1, - sym_on_stop_phrase, - STATE(2411), 2, + ACTIONS(3644), 1, + aux_sym_query_definition_tuning_token1, + ACTIONS(3797), 1, + sym__terminator, + ACTIONS(3799), 1, + aux_sym_query_definition_token3, + STATE(2645), 1, + aux_sym_query_definition_repeat1, + STATE(3121), 1, + sym_query_definition_tuning, + ACTIONS(3646), 2, + anon_sym_SCROLLING, + aux_sym_query_definition_tuning_token2, + STATE(2441), 2, sym_comment, sym_include, - [115999] = 11, + [117115] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2109), 1, - aux_sym_on_error_phrase_token1, - ACTIONS(3001), 1, - aux_sym_while_phrase_token1, - ACTIONS(3788), 1, - anon_sym_COLON, - STATE(2767), 1, - sym_while_phrase, - STATE(3025), 1, - sym_on_error_phrase, - STATE(3247), 1, - sym_on_quit_phrase, - STATE(4109), 1, - sym_on_stop_phrase, - STATE(2412), 2, + ACTIONS(1868), 1, + aux_sym_variable_definition_token2, + STATE(2442), 2, sym_comment, sym_include, - [116034] = 10, + ACTIONS(1988), 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, + [117140] = 10, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(3735), 1, + ACTIONS(3801), 1, sym_identifier, - ACTIONS(3741), 1, - aux_sym_function_parameter_token1, - ACTIONS(3790), 1, - anon_sym_RPAREN, - STATE(3300), 1, - sym_function_parameter, - STATE(4030), 1, - sym_function_parameter_mode, - ACTIONS(3739), 2, - aux_sym_input_expression_token1, - aux_sym_argument_mode_token1, - STATE(2413), 2, + ACTIONS(3803), 1, + sym__terminator, + ACTIONS(3805), 1, + anon_sym_NO_DASHERROR, + STATE(2499), 1, + aux_sym_assign_statement_repeat1, + STATE(3194), 1, + sym_assignment, + STATE(2443), 2, sym_comment, sym_include, - [116067] = 11, + STATE(4729), 2, + sym_qualified_name, + sym_object_access, + [117173] = 11, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(825), 1, + ACTIONS(791), 1, aux_sym_do_block_token1, ACTIONS(1295), 1, sym_identifier, ACTIONS(1297), 1, aux_sym_input_expression_token2, - STATE(922), 1, + STATE(852), 1, sym_do_block, - STATE(2436), 1, + STATE(2432), 1, aux_sym_on_statement_repeat2, - STATE(3194), 1, + STATE(3291), 1, sym_widget_phrase, - STATE(4176), 1, + STATE(4307), 1, sym_label, - STATE(2414), 2, - sym_comment, - sym_include, - [116102] = 10, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - ACTIONS(7), 1, - anon_sym_LBRACE, - ACTIONS(3735), 1, - sym_identifier, - ACTIONS(3741), 1, - aux_sym_function_parameter_token1, - ACTIONS(3792), 1, - anon_sym_RPAREN, - STATE(3371), 1, - sym_function_parameter, - STATE(4030), 1, - sym_function_parameter_mode, - ACTIONS(3739), 2, - aux_sym_input_expression_token1, - aux_sym_argument_mode_token1, - STATE(2415), 2, - sym_comment, - sym_include, - [116135] = 11, - ACTIONS(59), 1, - anon_sym_SLASH_SLASH, - ACTIONS(61), 1, - anon_sym_SLASH_STAR, - ACTIONS(65), 1, - anon_sym_LBRACE, - ACTIONS(2109), 1, - aux_sym_on_error_phrase_token1, - ACTIONS(3001), 1, - aux_sym_while_phrase_token1, - ACTIONS(3794), 1, - anon_sym_COLON, - STATE(2821), 1, - sym_while_phrase, - STATE(3012), 1, - sym_on_error_phrase, - STATE(3147), 1, - sym_on_quit_phrase, - STATE(4394), 1, - sym_on_stop_phrase, - STATE(2416), 2, + STATE(2444), 2, sym_comment, sym_include, - [116170] = 11, + [117208] = 11, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(755), 1, + ACTIONS(791), 1, aux_sym_do_block_token1, ACTIONS(1295), 1, sym_identifier, ACTIONS(1297), 1, aux_sym_input_expression_token2, - STATE(1082), 1, + STATE(852), 1, sym_do_block, - STATE(2530), 1, + STATE(2817), 1, aux_sym_on_statement_repeat2, - STATE(3194), 1, + STATE(3291), 1, sym_widget_phrase, - STATE(4193), 1, + STATE(4307), 1, sym_label, - STATE(2417), 2, + STATE(2445), 2, sym_comment, sym_include, - [116205] = 11, + [117243] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(3776), 1, - aux_sym_case_when_branch_token1, - ACTIONS(3796), 1, - aux_sym__block_terminator_token1, - STATE(988), 1, - sym__block_terminator, - STATE(990), 1, - sym__case_terminator, - STATE(2631), 1, - aux_sym_case_body_repeat1, - STATE(3156), 1, - sym_case_when_branch, - STATE(3520), 1, - sym_case_body, - STATE(2418), 2, - sym_comment, - sym_include, - [116240] = 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(1082), 1, - sym_do_block, - STATE(2797), 1, - aux_sym_on_statement_repeat2, - STATE(3194), 1, - sym_widget_phrase, - STATE(4193), 1, - sym_label, - STATE(2419), 2, + ACTIONS(1858), 1, + aux_sym_variable_definition_token2, + STATE(2446), 2, sym_comment, sym_include, - [116275] = 11, + 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, + [117268] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(3776), 1, - aux_sym_case_when_branch_token1, - ACTIONS(3798), 1, - aux_sym__block_terminator_token1, - STATE(2631), 1, - aux_sym_case_body_repeat1, - STATE(3156), 1, - sym_case_when_branch, - STATE(3473), 1, - sym_case_body, - STATE(3475), 1, - sym__case_terminator, - STATE(3476), 1, - sym__block_terminator, - STATE(2420), 2, + ACTIONS(1898), 1, + aux_sym_variable_definition_token2, + STATE(2447), 2, sym_comment, sym_include, - [116310] = 11, + ACTIONS(1956), 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, + [117293] = 11, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, @@ -140572,18 +141997,18 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, ACTIONS(1297), 1, aux_sym_input_expression_token2, - STATE(1296), 1, + STATE(1182), 1, sym_do_block, - STATE(2499), 1, + STATE(2817), 1, aux_sym_on_statement_repeat2, - STATE(3194), 1, + STATE(3291), 1, sym_widget_phrase, - STATE(4253), 1, + STATE(4362), 1, sym_label, - STATE(2421), 2, + STATE(2448), 2, sym_comment, sym_include, - [116345] = 11, + [117328] = 11, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, @@ -140596,343 +142021,221 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, ACTIONS(1297), 1, aux_sym_input_expression_token2, - STATE(1296), 1, + STATE(1182), 1, sym_do_block, - STATE(2797), 1, + STATE(2526), 1, aux_sym_on_statement_repeat2, - STATE(3194), 1, + STATE(3291), 1, sym_widget_phrase, - STATE(4253), 1, + STATE(4362), 1, sym_label, - STATE(2422), 2, + STATE(2449), 2, sym_comment, sym_include, - [116380] = 10, + [117363] = 9, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(3610), 1, - aux_sym_query_definition_tuning_token1, - ACTIONS(3800), 1, - sym__terminator, - ACTIONS(3802), 1, - aux_sym_query_definition_token3, - STATE(2658), 1, - aux_sym_query_definition_repeat1, - STATE(2981), 1, - sym_query_definition_tuning, - ACTIONS(3612), 2, - anon_sym_SCROLLING, - aux_sym_query_definition_tuning_token2, - STATE(2423), 2, - sym_comment, - sym_include, - [116413] = 9, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - ACTIONS(7), 1, - anon_sym_LBRACE, - ACTIONS(3751), 1, + ACTIONS(3807), 1, anon_sym_DQUOTE, - ACTIONS(3753), 1, + ACTIONS(3809), 1, anon_sym_SQUOTE, - ACTIONS(3804), 1, - sym_identifier, - STATE(1812), 2, + STATE(2949), 1, + sym__string_literal, + ACTIONS(3811), 2, + aux_sym_on_error_phrase_token2, + aux_sym_on_error_phrase_token7, + STATE(1769), 2, sym_double_quoted_string, sym_single_quoted_string, - STATE(2424), 2, + STATE(2450), 2, sym_comment, sym_include, - STATE(3088), 2, - sym_qualified_name, - sym__string_literal, - [116444] = 11, + [117394] = 10, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2109), 1, - aux_sym_on_error_phrase_token1, - ACTIONS(3001), 1, - aux_sym_while_phrase_token1, - ACTIONS(3806), 1, - anon_sym_COLON, - STATE(2891), 1, - sym_while_phrase, - STATE(2952), 1, - sym_on_error_phrase, - STATE(3528), 1, - sym_on_quit_phrase, - STATE(4541), 1, - sym_on_stop_phrase, - STATE(2425), 2, - sym_comment, - sym_include, - [116479] = 9, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - ACTIONS(7), 1, - anon_sym_LBRACE, - ACTIONS(3751), 1, - anon_sym_DQUOTE, - ACTIONS(3753), 1, - anon_sym_SQUOTE, - ACTIONS(3808), 1, - sym_identifier, - STATE(1812), 2, - sym_double_quoted_string, - sym_single_quoted_string, - STATE(1920), 2, - sym_qualified_name, - sym__string_literal, - STATE(2426), 2, - sym_comment, - sym_include, - [116510] = 10, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - ACTIONS(7), 1, - anon_sym_LBRACE, - ACTIONS(3759), 1, - sym_identifier, - ACTIONS(3810), 1, + ACTIONS(3644), 1, + aux_sym_query_definition_tuning_token1, + ACTIONS(3813), 1, sym__terminator, - ACTIONS(3812), 1, - anon_sym_NO_DASHERROR, - STATE(2402), 1, - aux_sym_assign_statement_repeat1, - STATE(3078), 1, - sym_assignment, - STATE(2427), 2, + ACTIONS(3815), 1, + aux_sym_query_definition_token3, + STATE(2647), 1, + aux_sym_query_definition_repeat1, + STATE(3121), 1, + sym_query_definition_tuning, + ACTIONS(3646), 2, + anon_sym_SCROLLING, + aux_sym_query_definition_tuning_token2, + STATE(2451), 2, sym_comment, sym_include, - STATE(4588), 2, - sym_qualified_name, - sym_object_access, - [116543] = 11, + [117427] = 11, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(789), 1, + ACTIONS(825), 1, aux_sym_do_block_token1, ACTIONS(1295), 1, sym_identifier, ACTIONS(1297), 1, aux_sym_input_expression_token2, - STATE(2797), 1, + STATE(2817), 1, aux_sym_on_statement_repeat2, - STATE(3194), 1, + STATE(3291), 1, sym_widget_phrase, - STATE(3376), 1, + STATE(3555), 1, sym_do_block, - STATE(4379), 1, + STATE(4453), 1, sym_label, - STATE(2428), 2, - sym_comment, - sym_include, - [116578] = 6, - ACTIONS(59), 1, - anon_sym_SLASH_SLASH, - ACTIONS(61), 1, - anon_sym_SLASH_STAR, - ACTIONS(65), 1, - anon_sym_LBRACE, - ACTIONS(1634), 1, - aux_sym_variable_definition_token2, - STATE(2429), 2, + STATE(2452), 2, sym_comment, sym_include, - ACTIONS(1969), 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, - [116603] = 11, + [117462] = 10, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(789), 1, - aux_sym_do_block_token1, - ACTIONS(1295), 1, + ACTIONS(3817), 1, sym_identifier, - ACTIONS(1297), 1, - aux_sym_input_expression_token2, - STATE(2462), 1, - aux_sym_on_statement_repeat2, - STATE(3194), 1, - sym_widget_phrase, - STATE(3396), 1, - sym_do_block, - STATE(4379), 1, - sym_label, - STATE(2430), 2, + ACTIONS(3819), 1, + anon_sym_RPAREN, + ACTIONS(3823), 1, + aux_sym_function_parameter_token1, + STATE(3502), 1, + sym_function_parameter, + STATE(4080), 1, + sym_function_parameter_mode, + ACTIONS(3821), 2, + aux_sym_input_expression_token1, + aux_sym_argument_mode_token1, + STATE(2453), 2, sym_comment, sym_include, - [116638] = 11, + [117495] = 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(1295), 1, + ACTIONS(3777), 1, + anon_sym_DQUOTE, + ACTIONS(3779), 1, + anon_sym_SQUOTE, + ACTIONS(3825), 1, sym_identifier, - ACTIONS(1297), 1, - aux_sym_input_expression_token2, - STATE(1146), 1, - sym_do_block, - STATE(2797), 1, - aux_sym_on_statement_repeat2, - STATE(3194), 1, - sym_widget_phrase, - STATE(4253), 1, - sym_label, - STATE(2431), 2, + STATE(1769), 2, + sym_double_quoted_string, + sym_single_quoted_string, + STATE(2454), 2, sym_comment, sym_include, - [116673] = 11, + STATE(3200), 2, + sym_qualified_name, + sym__string_literal, + [117526] = 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(791), 1, aux_sym_do_block_token1, ACTIONS(1295), 1, sym_identifier, ACTIONS(1297), 1, aux_sym_input_expression_token2, - STATE(1184), 1, + STATE(863), 1, sym_do_block, - STATE(2400), 1, - aux_sym_on_statement_repeat2, - STATE(3194), 1, - sym_widget_phrase, - STATE(4253), 1, - sym_label, - STATE(2432), 2, - sym_comment, - sym_include, - [116708] = 11, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - ACTIONS(7), 1, - anon_sym_LBRACE, - ACTIONS(789), 1, - aux_sym_do_block_token1, - ACTIONS(1295), 1, - sym_identifier, - ACTIONS(1297), 1, - aux_sym_input_expression_token2, - STATE(2797), 1, + STATE(2445), 1, aux_sym_on_statement_repeat2, - STATE(3194), 1, + STATE(3291), 1, sym_widget_phrase, - STATE(3396), 1, - sym_do_block, - STATE(4379), 1, + STATE(4307), 1, sym_label, - STATE(2433), 2, + STATE(2455), 2, sym_comment, sym_include, - [116743] = 11, + [117561] = 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(791), 1, aux_sym_do_block_token1, ACTIONS(1295), 1, sym_identifier, ACTIONS(1297), 1, aux_sym_input_expression_token2, - STATE(1146), 1, + STATE(863), 1, sym_do_block, - STATE(2422), 1, + STATE(2817), 1, aux_sym_on_statement_repeat2, - STATE(3194), 1, + STATE(3291), 1, sym_widget_phrase, - STATE(4253), 1, + STATE(4307), 1, sym_label, - STATE(2434), 2, + STATE(2456), 2, sym_comment, sym_include, - [116778] = 11, + [117596] = 9, 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, + ACTIONS(3777), 1, + anon_sym_DQUOTE, + ACTIONS(3779), 1, + anon_sym_SQUOTE, + ACTIONS(3827), 1, sym_identifier, - ACTIONS(1297), 1, - aux_sym_input_expression_token2, - STATE(1106), 1, - sym_do_block, - STATE(2474), 1, - aux_sym_on_statement_repeat2, - STATE(3194), 1, - sym_widget_phrase, - STATE(4193), 1, - sym_label, - STATE(2435), 2, + STATE(1769), 2, + sym_double_quoted_string, + sym_single_quoted_string, + STATE(1941), 2, + sym_qualified_name, + sym__string_literal, + STATE(2457), 2, sym_comment, sym_include, - [116813] = 11, - ACTIONS(3), 1, + [117627] = 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(825), 1, - aux_sym_do_block_token1, - ACTIONS(1295), 1, - sym_identifier, - ACTIONS(1297), 1, - aux_sym_input_expression_token2, - STATE(909), 1, - sym_do_block, - STATE(2797), 1, - aux_sym_on_statement_repeat2, - STATE(3194), 1, - sym_widget_phrase, - STATE(4176), 1, - sym_label, - STATE(2436), 2, + ACTIONS(1900), 1, + aux_sym_variable_definition_token2, + STATE(2458), 2, sym_comment, sym_include, - [116848] = 11, + ACTIONS(1952), 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, + [117652] = 11, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, @@ -140945,115 +142248,47 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, ACTIONS(1297), 1, aux_sym_input_expression_token2, - STATE(909), 1, - sym_do_block, - STATE(2457), 1, + STATE(2521), 1, aux_sym_on_statement_repeat2, - STATE(3194), 1, + STATE(3291), 1, sym_widget_phrase, - STATE(4176), 1, + STATE(3555), 1, + sym_do_block, + STATE(4453), 1, sym_label, - STATE(2437), 2, - sym_comment, - sym_include, - [116883] = 10, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - ACTIONS(7), 1, - anon_sym_LBRACE, - ACTIONS(3735), 1, - sym_identifier, - ACTIONS(3741), 1, - aux_sym_function_parameter_token1, - ACTIONS(3814), 1, - anon_sym_RPAREN, - STATE(3394), 1, - sym_function_parameter, - STATE(4030), 1, - sym_function_parameter_mode, - ACTIONS(3739), 2, - aux_sym_input_expression_token1, - aux_sym_argument_mode_token1, - STATE(2438), 2, - sym_comment, - sym_include, - [116916] = 10, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - ACTIONS(7), 1, - anon_sym_LBRACE, - ACTIONS(3759), 1, - sym_identifier, - ACTIONS(3816), 1, - sym__terminator, - ACTIONS(3818), 1, - anon_sym_NO_DASHERROR, - STATE(2427), 1, - aux_sym_assign_statement_repeat1, - STATE(3078), 1, - sym_assignment, - STATE(2439), 2, + STATE(2459), 2, sym_comment, sym_include, - STATE(4588), 2, - sym_qualified_name, - sym_object_access, - [116949] = 5, + [117687] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - STATE(2440), 2, - sym_comment, - sym_include, - ACTIONS(3820), 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, - [116972] = 10, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - ACTIONS(7), 1, - anon_sym_LBRACE, - ACTIONS(3735), 1, - sym_identifier, - ACTIONS(3741), 1, - aux_sym_function_parameter_token1, - ACTIONS(3822), 1, - anon_sym_RPAREN, - STATE(3237), 1, - sym_function_parameter, - STATE(4030), 1, - sym_function_parameter_mode, - ACTIONS(3739), 2, - aux_sym_input_expression_token1, - aux_sym_argument_mode_token1, - STATE(2441), 2, + ACTIONS(1902), 1, + aux_sym_variable_definition_token2, + STATE(2460), 2, sym_comment, sym_include, - [117005] = 5, + 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, + [117712] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - STATE(2442), 2, + STATE(2461), 2, sym_comment, sym_include, - ACTIONS(3824), 7, + ACTIONS(3829), 7, aux_sym_serialization_tuning_token1, anon_sym_COLON, aux_sym_property_type_token1, @@ -141061,6401 +142296,6872 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_inherits_token1, aux_sym_implements_token1, aux_sym_use_widget_pool_token1, - [117028] = 5, + [117735] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - STATE(2443), 2, + ACTIONS(3833), 1, + anon_sym_LIKE, + STATE(2462), 2, sym_comment, sym_include, - ACTIONS(3826), 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, - [117051] = 6, + ACTIONS(3831), 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, + [117760] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(1567), 1, + ACTIONS(1884), 1, aux_sym_variable_definition_token2, - STATE(2444), 2, + STATE(2463), 2, sym_comment, sym_include, - ACTIONS(1602), 6, + ACTIONS(1882), 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, - [117076] = 9, - ACTIONS(3), 1, + [117785] = 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(3751), 1, - anon_sym_DQUOTE, - ACTIONS(3753), 1, - anon_sym_SQUOTE, - ACTIONS(3828), 1, - sym_identifier, - STATE(1812), 2, - sym_double_quoted_string, - sym_single_quoted_string, - STATE(2263), 2, - sym_qualified_name, - sym__string_literal, - STATE(2445), 2, + ACTIONS(3837), 1, + anon_sym_LIKE, + STATE(2464), 2, sym_comment, sym_include, - [117107] = 9, + ACTIONS(3835), 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, + [117810] = 9, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(3751), 1, + ACTIONS(3777), 1, anon_sym_DQUOTE, - ACTIONS(3753), 1, + ACTIONS(3779), 1, anon_sym_SQUOTE, - ACTIONS(3830), 1, + ACTIONS(3839), 1, sym_identifier, - STATE(1812), 2, + STATE(1769), 2, sym_double_quoted_string, sym_single_quoted_string, - STATE(2270), 2, + STATE(2342), 2, sym_qualified_name, sym__string_literal, - STATE(2446), 2, + STATE(2465), 2, sym_comment, sym_include, - [117138] = 5, + [117841] = 11, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - STATE(2447), 2, - sym_comment, - sym_include, - ACTIONS(3832), 7, - aux_sym_serialization_tuning_token1, + ACTIONS(3338), 1, + aux_sym_repeat_tuning_token1, + ACTIONS(3720), 1, 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, - [117161] = 5, - ACTIONS(59), 1, - anon_sym_SLASH_SLASH, - ACTIONS(61), 1, - anon_sym_SLASH_STAR, - ACTIONS(65), 1, - anon_sym_LBRACE, - STATE(2448), 2, + ACTIONS(3841), 1, + aux_sym_on_error_phrase_token1, + STATE(2700), 1, + sym_on_quit_phrase, + STATE(3023), 1, + sym_on_stop_phrase, + STATE(3024), 1, + aux_sym_repeat_statement_repeat1, + STATE(3672), 1, + sym_repeat_tuning, + STATE(2466), 2, sym_comment, sym_include, - ACTIONS(3834), 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, - [117184] = 9, + [117876] = 11, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(3751), 1, - anon_sym_DQUOTE, - ACTIONS(3753), 1, - anon_sym_SQUOTE, - ACTIONS(3836), 1, + ACTIONS(755), 1, + aux_sym_do_block_token1, + ACTIONS(1295), 1, sym_identifier, - STATE(1812), 2, - sym_double_quoted_string, - sym_single_quoted_string, - STATE(1940), 2, - sym_qualified_name, - sym__string_literal, - STATE(2449), 2, + ACTIONS(1297), 1, + aux_sym_input_expression_token2, + STATE(1009), 1, + sym_do_block, + STATE(2817), 1, + aux_sym_on_statement_repeat2, + STATE(3291), 1, + sym_widget_phrase, + STATE(4243), 1, + sym_label, + STATE(2467), 2, sym_comment, sym_include, - [117215] = 10, + [117911] = 10, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(3610), 1, + ACTIONS(3644), 1, aux_sym_query_definition_tuning_token1, - ACTIONS(3838), 1, + ACTIONS(3843), 1, sym__terminator, - ACTIONS(3840), 1, + ACTIONS(3845), 1, aux_sym_query_definition_token3, - STATE(2550), 1, + STATE(2638), 1, aux_sym_query_definition_repeat1, - STATE(2981), 1, + STATE(3121), 1, sym_query_definition_tuning, - ACTIONS(3612), 2, + ACTIONS(3646), 2, anon_sym_SCROLLING, aux_sym_query_definition_tuning_token2, - STATE(2450), 2, + STATE(2468), 2, sym_comment, sym_include, - [117248] = 11, - ACTIONS(59), 1, + [117944] = 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(2109), 1, - aux_sym_on_error_phrase_token1, - ACTIONS(3001), 1, - aux_sym_while_phrase_token1, - ACTIONS(3842), 1, - anon_sym_COLON, - STATE(2836), 1, - sym_while_phrase, - STATE(2980), 1, - sym_on_error_phrase, - STATE(3168), 1, - sym_on_quit_phrase, - STATE(4311), 1, - sym_on_stop_phrase, - STATE(2451), 2, + ACTIONS(755), 1, + aux_sym_do_block_token1, + ACTIONS(1295), 1, + sym_identifier, + ACTIONS(1297), 1, + aux_sym_input_expression_token2, + STATE(1009), 1, + sym_do_block, + STATE(2481), 1, + aux_sym_on_statement_repeat2, + STATE(3291), 1, + sym_widget_phrase, + STATE(4243), 1, + sym_label, + STATE(2469), 2, sym_comment, sym_include, - [117283] = 11, + [117979] = 11, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(755), 1, + ACTIONS(791), 1, aux_sym_do_block_token1, ACTIONS(1295), 1, sym_identifier, ACTIONS(1297), 1, aux_sym_input_expression_token2, - STATE(1106), 1, + STATE(899), 1, sym_do_block, - STATE(2797), 1, + STATE(2817), 1, aux_sym_on_statement_repeat2, - STATE(3194), 1, + STATE(3291), 1, sym_widget_phrase, - STATE(4193), 1, + STATE(4307), 1, sym_label, - STATE(2452), 2, + STATE(2470), 2, + sym_comment, + sym_include, + [118014] = 11, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_LBRACE, + ACTIONS(791), 1, + aux_sym_do_block_token1, + ACTIONS(1295), 1, + sym_identifier, + ACTIONS(1297), 1, + aux_sym_input_expression_token2, + STATE(899), 1, + sym_do_block, + STATE(2456), 1, + aux_sym_on_statement_repeat2, + STATE(3291), 1, + sym_widget_phrase, + STATE(4307), 1, + sym_label, + STATE(2471), 2, + sym_comment, + sym_include, + [118049] = 8, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_LBRACE, + ACTIONS(3847), 1, + sym_identifier, + STATE(3194), 1, + sym_assignment, + ACTIONS(3850), 2, + sym__terminator, + anon_sym_NO_DASHERROR, + STATE(4729), 2, + sym_qualified_name, + sym_object_access, + STATE(2472), 3, sym_comment, sym_include, - [117318] = 6, + aux_sym_assign_statement_repeat1, + [118078] = 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(1880), 1, aux_sym_variable_definition_token2, - STATE(2453), 2, + STATE(2473), 2, sym_comment, sym_include, - ACTIONS(1608), 6, + ACTIONS(1878), 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, - [117343] = 8, + [118103] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(3846), 1, - aux_sym_sort_clause_token1, - ACTIONS(3849), 1, - aux_sym_sort_clause_token2, - STATE(2783), 1, - sym_sort_clause, - ACTIONS(3844), 3, - anon_sym_COMMA, + ACTIONS(1876), 1, + aux_sym_variable_definition_token2, + STATE(2474), 2, + sym_comment, + sym_include, + ACTIONS(1874), 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, + [118128] = 11, + ACTIONS(59), 1, + anon_sym_SLASH_SLASH, + ACTIONS(61), 1, + anon_sym_SLASH_STAR, + ACTIONS(65), 1, + anon_sym_LBRACE, + ACTIONS(3338), 1, + aux_sym_repeat_tuning_token1, + ACTIONS(3427), 1, anon_sym_COLON, + ACTIONS(3841), 1, aux_sym_on_error_phrase_token1, - STATE(2454), 3, + STATE(2597), 1, + sym_on_quit_phrase, + STATE(3165), 1, + aux_sym_repeat_statement_repeat1, + STATE(3172), 1, + sym_on_stop_phrase, + STATE(3672), 1, + sym_repeat_tuning, + STATE(2475), 2, + sym_comment, + sym_include, + [118163] = 6, + ACTIONS(59), 1, + anon_sym_SLASH_SLASH, + ACTIONS(61), 1, + anon_sym_SLASH_STAR, + ACTIONS(65), 1, + anon_sym_LBRACE, + ACTIONS(1866), 1, + aux_sym_variable_definition_token2, + STATE(2476), 2, + sym_comment, + sym_include, + ACTIONS(1864), 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, + [118188] = 10, + ACTIONS(59), 1, + anon_sym_SLASH_SLASH, + ACTIONS(61), 1, + anon_sym_SLASH_STAR, + ACTIONS(65), 1, + anon_sym_LBRACE, + ACTIONS(3644), 1, + aux_sym_query_definition_tuning_token1, + ACTIONS(3852), 1, + sym__terminator, + ACTIONS(3854), 1, + aux_sym_query_definition_token3, + STATE(2605), 1, + aux_sym_query_definition_repeat1, + STATE(3121), 1, + sym_query_definition_tuning, + ACTIONS(3646), 2, + anon_sym_SCROLLING, + aux_sym_query_definition_tuning_token2, + STATE(2477), 2, + sym_comment, + sym_include, + [118221] = 10, + ACTIONS(59), 1, + anon_sym_SLASH_SLASH, + ACTIONS(61), 1, + anon_sym_SLASH_STAR, + ACTIONS(65), 1, + anon_sym_LBRACE, + ACTIONS(3644), 1, + aux_sym_query_definition_tuning_token1, + ACTIONS(3856), 1, + sym__terminator, + ACTIONS(3858), 1, + aux_sym_query_definition_token3, + STATE(2721), 1, + aux_sym_query_definition_repeat1, + STATE(3121), 1, + sym_query_definition_tuning, + ACTIONS(3646), 2, + anon_sym_SCROLLING, + aux_sym_query_definition_tuning_token2, + STATE(2478), 2, sym_comment, sym_include, - aux_sym_for_phrase_repeat2, - [117372] = 6, + [118254] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(1555), 1, + ACTIONS(1862), 1, aux_sym_variable_definition_token2, - STATE(2455), 2, + STATE(2479), 2, sym_comment, sym_include, - ACTIONS(1610), 6, + ACTIONS(1860), 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, - [117397] = 11, + [118279] = 11, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2109), 1, + ACTIONS(3338), 1, + aux_sym_repeat_tuning_token1, + ACTIONS(3841), 1, aux_sym_on_error_phrase_token1, - ACTIONS(3001), 1, - aux_sym_while_phrase_token1, - ACTIONS(3852), 1, + ACTIONS(3860), 1, anon_sym_COLON, - STATE(2899), 1, - sym_while_phrase, - STATE(2938), 1, - sym_on_error_phrase, - STATE(3059), 1, + STATE(2733), 1, sym_on_quit_phrase, - STATE(4257), 1, + STATE(3009), 1, sym_on_stop_phrase, - STATE(2456), 2, + STATE(3015), 1, + aux_sym_repeat_statement_repeat1, + STATE(3672), 1, + sym_repeat_tuning, + STATE(2480), 2, sym_comment, sym_include, - [117432] = 11, + [118314] = 11, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(825), 1, + ACTIONS(755), 1, aux_sym_do_block_token1, ACTIONS(1295), 1, sym_identifier, ACTIONS(1297), 1, aux_sym_input_expression_token2, - STATE(897), 1, + STATE(1035), 1, sym_do_block, - STATE(2797), 1, + STATE(2817), 1, aux_sym_on_statement_repeat2, - STATE(3194), 1, + STATE(3291), 1, sym_widget_phrase, - STATE(4176), 1, + STATE(4243), 1, sym_label, - STATE(2457), 2, - sym_comment, - sym_include, - [117467] = 11, - ACTIONS(59), 1, - anon_sym_SLASH_SLASH, - ACTIONS(61), 1, - anon_sym_SLASH_STAR, - ACTIONS(65), 1, - anon_sym_LBRACE, - ACTIONS(2109), 1, - aux_sym_on_error_phrase_token1, - ACTIONS(3001), 1, - aux_sym_while_phrase_token1, - ACTIONS(3854), 1, - anon_sym_COLON, - STATE(2792), 1, - sym_while_phrase, - STATE(2991), 1, - sym_on_error_phrase, - STATE(3510), 1, - sym_on_quit_phrase, - STATE(4490), 1, - sym_on_stop_phrase, - STATE(2458), 2, - sym_comment, - sym_include, - [117502] = 9, - ACTIONS(59), 1, - anon_sym_SLASH_SLASH, - ACTIONS(61), 1, - anon_sym_SLASH_STAR, - ACTIONS(65), 1, - anon_sym_LBRACE, - ACTIONS(3856), 1, - anon_sym_DQUOTE, - ACTIONS(3858), 1, - anon_sym_SQUOTE, - STATE(3049), 1, - sym__string_literal, - ACTIONS(3860), 2, - aux_sym_on_error_phrase_token2, - aux_sym_on_error_phrase_token7, - STATE(1812), 2, - sym_double_quoted_string, - sym_single_quoted_string, - STATE(2459), 2, - sym_comment, - sym_include, - [117533] = 10, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - ACTIONS(7), 1, - anon_sym_LBRACE, - ACTIONS(3759), 1, - sym_identifier, - ACTIONS(3862), 1, - sym__terminator, - ACTIONS(3864), 1, - anon_sym_NO_DASHERROR, - STATE(2521), 1, - aux_sym_assign_statement_repeat1, - STATE(3078), 1, - sym_assignment, - STATE(2460), 2, + STATE(2481), 2, sym_comment, sym_include, - STATE(4588), 2, - sym_qualified_name, - sym_object_access, - [117566] = 10, + [118349] = 10, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(3735), 1, + ACTIONS(3817), 1, sym_identifier, - ACTIONS(3741), 1, + ACTIONS(3823), 1, aux_sym_function_parameter_token1, - ACTIONS(3866), 1, + ACTIONS(3862), 1, anon_sym_RPAREN, - STATE(3524), 1, + STATE(3367), 1, sym_function_parameter, - STATE(4030), 1, + STATE(4080), 1, sym_function_parameter_mode, - ACTIONS(3739), 2, + ACTIONS(3821), 2, aux_sym_input_expression_token1, aux_sym_argument_mode_token1, - STATE(2461), 2, + STATE(2482), 2, sym_comment, sym_include, - [117599] = 11, + [118382] = 11, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(789), 1, + ACTIONS(755), 1, aux_sym_do_block_token1, ACTIONS(1295), 1, sym_identifier, ACTIONS(1297), 1, aux_sym_input_expression_token2, - STATE(2797), 1, + STATE(1035), 1, + sym_do_block, + STATE(2490), 1, aux_sym_on_statement_repeat2, - STATE(3194), 1, + STATE(3291), 1, sym_widget_phrase, - STATE(3383), 1, - sym_do_block, - STATE(4379), 1, + STATE(4243), 1, sym_label, - STATE(2462), 2, + STATE(2483), 2, sym_comment, sym_include, - [117634] = 6, + [118417] = 11, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(1553), 1, - aux_sym_variable_definition_token2, - STATE(2463), 2, + ACTIONS(3338), 1, + aux_sym_repeat_tuning_token1, + ACTIONS(3763), 1, + anon_sym_COLON, + ACTIONS(3841), 1, + aux_sym_on_error_phrase_token1, + STATE(2744), 1, + sym_on_quit_phrase, + STATE(3037), 1, + aux_sym_repeat_statement_repeat1, + STATE(3059), 1, + sym_on_stop_phrase, + STATE(3672), 1, + sym_repeat_tuning, + STATE(2484), 2, sym_comment, sym_include, - ACTIONS(1632), 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, - [117659] = 10, - ACTIONS(3), 1, + [118452] = 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(3735), 1, - sym_identifier, - ACTIONS(3741), 1, - aux_sym_function_parameter_token1, - ACTIONS(3868), 1, - anon_sym_RPAREN, - STATE(3328), 1, - sym_function_parameter, - STATE(4030), 1, - sym_function_parameter_mode, - ACTIONS(3739), 2, - aux_sym_input_expression_token1, - aux_sym_argument_mode_token1, - STATE(2464), 2, + ACTIONS(3864), 1, + aux_sym__block_terminator_token1, + ACTIONS(3866), 1, + aux_sym_case_when_branch_token1, + STATE(1101), 1, + sym__case_terminator, + STATE(1102), 1, + sym__block_terminator, + STATE(2739), 1, + aux_sym_case_body_repeat1, + STATE(3269), 1, + sym_case_when_branch, + STATE(3584), 1, + sym_case_body, + STATE(2485), 2, sym_comment, sym_include, - [117692] = 6, + [118487] = 10, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(1549), 1, - aux_sym_variable_definition_token2, - STATE(2465), 2, + ACTIONS(3644), 1, + aux_sym_query_definition_tuning_token1, + ACTIONS(3868), 1, + sym__terminator, + ACTIONS(3870), 1, + aux_sym_query_definition_token3, + STATE(2731), 1, + aux_sym_query_definition_repeat1, + STATE(3121), 1, + sym_query_definition_tuning, + ACTIONS(3646), 2, + anon_sym_SCROLLING, + aux_sym_query_definition_tuning_token2, + STATE(2486), 2, sym_comment, sym_include, - ACTIONS(1642), 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, - [117717] = 11, + [118520] = 10, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(789), 1, - aux_sym_do_block_token1, - ACTIONS(1295), 1, + ACTIONS(3817), 1, sym_identifier, - ACTIONS(1297), 1, - aux_sym_input_expression_token2, - STATE(2797), 1, - aux_sym_on_statement_repeat2, - STATE(3194), 1, - sym_widget_phrase, - STATE(3407), 1, - sym_do_block, - STATE(4379), 1, - sym_label, - STATE(2466), 2, + ACTIONS(3823), 1, + aux_sym_function_parameter_token1, + ACTIONS(3872), 1, + anon_sym_RPAREN, + STATE(3364), 1, + sym_function_parameter, + STATE(4080), 1, + sym_function_parameter_mode, + ACTIONS(3821), 2, + aux_sym_input_expression_token1, + aux_sym_argument_mode_token1, + STATE(2487), 2, sym_comment, sym_include, - [117752] = 6, + [118553] = 11, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(1795), 1, - aux_sym_variable_definition_token2, - STATE(2467), 2, + ACTIONS(3338), 1, + aux_sym_repeat_tuning_token1, + ACTIONS(3708), 1, + anon_sym_COLON, + ACTIONS(3841), 1, + aux_sym_on_error_phrase_token1, + STATE(2694), 1, + sym_on_quit_phrase, + STATE(3013), 1, + aux_sym_repeat_statement_repeat1, + STATE(3014), 1, + sym_on_stop_phrase, + STATE(3672), 1, + sym_repeat_tuning, + STATE(2488), 2, sym_comment, sym_include, - ACTIONS(1939), 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, - [117777] = 11, + [118588] = 11, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(3776), 1, - aux_sym_case_when_branch_token1, - ACTIONS(3870), 1, - aux_sym__block_terminator_token1, - STATE(1302), 1, - sym__case_terminator, - STATE(1303), 1, - sym__block_terminator, - STATE(2631), 1, - aux_sym_case_body_repeat1, - STATE(3156), 1, - sym_case_when_branch, - STATE(3551), 1, - sym_case_body, - STATE(2468), 2, + ACTIONS(3338), 1, + aux_sym_repeat_tuning_token1, + ACTIONS(3366), 1, + anon_sym_COLON, + ACTIONS(3841), 1, + aux_sym_on_error_phrase_token1, + STATE(2680), 1, + sym_on_quit_phrase, + STATE(3010), 1, + aux_sym_repeat_statement_repeat1, + STATE(3016), 1, + sym_on_stop_phrase, + STATE(3672), 1, + sym_repeat_tuning, + STATE(2489), 2, sym_comment, sym_include, - [117812] = 11, + [118623] = 11, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(789), 1, + ACTIONS(755), 1, aux_sym_do_block_token1, ACTIONS(1295), 1, sym_identifier, ACTIONS(1297), 1, aux_sym_input_expression_token2, - STATE(2428), 1, + STATE(1060), 1, + sym_do_block, + STATE(2817), 1, aux_sym_on_statement_repeat2, - STATE(3194), 1, + STATE(3291), 1, sym_widget_phrase, - STATE(3383), 1, - sym_do_block, - STATE(4379), 1, + STATE(4243), 1, sym_label, - STATE(2469), 2, + STATE(2490), 2, sym_comment, sym_include, - [117847] = 11, + [118658] = 11, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(261), 1, + ACTIONS(755), 1, aux_sym_do_block_token1, ACTIONS(1295), 1, sym_identifier, ACTIONS(1297), 1, aux_sym_input_expression_token2, - STATE(1508), 1, + STATE(1060), 1, sym_do_block, - STATE(2797), 1, + STATE(2495), 1, aux_sym_on_statement_repeat2, - STATE(3194), 1, + STATE(3291), 1, sym_widget_phrase, - STATE(4440), 1, + STATE(4243), 1, sym_label, - STATE(2470), 2, + STATE(2491), 2, + sym_comment, + sym_include, + [118693] = 10, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_LBRACE, + ACTIONS(3801), 1, + sym_identifier, + ACTIONS(3874), 1, + sym__terminator, + ACTIONS(3876), 1, + anon_sym_NO_DASHERROR, + STATE(2472), 1, + aux_sym_assign_statement_repeat1, + STATE(3194), 1, + sym_assignment, + STATE(2492), 2, sym_comment, sym_include, - [117882] = 10, + STATE(4729), 2, + sym_qualified_name, + sym_object_access, + [118726] = 11, 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_tuning_token6, - ACTIONS(1372), 1, - aux_sym_property_tuning_token1, - ACTIONS(3872), 1, - aux_sym_event_definition_token1, - STATE(1893), 1, - sym_property_tuning, - STATE(2475), 1, - aux_sym_property_definition_repeat2, - ACTIONS(1348), 2, - aux_sym_variable_tuning_token1, - aux_sym_variable_tuning_token5, - STATE(2471), 2, + ACTIONS(3338), 1, + aux_sym_repeat_tuning_token1, + ACTIONS(3841), 1, + aux_sym_on_error_phrase_token1, + ACTIONS(3878), 1, + anon_sym_COLON, + STATE(2711), 1, + sym_on_quit_phrase, + STATE(3020), 1, + aux_sym_repeat_statement_repeat1, + STATE(3026), 1, + sym_on_stop_phrase, + STATE(3672), 1, + sym_repeat_tuning, + STATE(2493), 2, sym_comment, sym_include, - [117915] = 7, + [118761] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - STATE(2828), 1, - sym_property_type, - ACTIONS(3876), 2, - aux_sym_property_type_token1, - aux_sym_property_type_token2, - ACTIONS(3874), 3, - aux_sym_serialization_tuning_token1, - aux_sym_serialization_tuning_token2, - aux_sym_property_definition_token1, - STATE(2472), 3, + STATE(2494), 2, sym_comment, sym_include, - aux_sym_property_definition_repeat1, - [117942] = 11, + ACTIONS(3880), 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, + [118784] = 11, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(261), 1, + ACTIONS(755), 1, aux_sym_do_block_token1, ACTIONS(1295), 1, sym_identifier, ACTIONS(1297), 1, aux_sym_input_expression_token2, - STATE(1508), 1, + STATE(1071), 1, sym_do_block, - STATE(2541), 1, + STATE(2817), 1, aux_sym_on_statement_repeat2, - STATE(3194), 1, + STATE(3291), 1, sym_widget_phrase, - STATE(4440), 1, + STATE(4243), 1, sym_label, - STATE(2473), 2, + STATE(2495), 2, sym_comment, sym_include, - [117977] = 11, + [118819] = 10, 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, + ACTIONS(3801), 1, sym_identifier, - ACTIONS(1297), 1, - aux_sym_input_expression_token2, - STATE(1110), 1, - sym_do_block, - STATE(2797), 1, - aux_sym_on_statement_repeat2, + ACTIONS(3882), 1, + sym__terminator, + ACTIONS(3884), 1, + anon_sym_NO_DASHERROR, + STATE(2492), 1, + aux_sym_assign_statement_repeat1, STATE(3194), 1, - sym_widget_phrase, - STATE(4193), 1, - sym_label, - STATE(2474), 2, + sym_assignment, + STATE(2496), 2, sym_comment, sym_include, - [118012] = 9, + STATE(4729), 2, + sym_qualified_name, + sym_object_access, + [118852] = 11, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2729), 1, - aux_sym_event_definition_token1, - ACTIONS(2734), 1, - aux_sym_variable_tuning_token6, - ACTIONS(2739), 1, - aux_sym_property_tuning_token1, - STATE(1893), 1, - sym_property_tuning, - ACTIONS(3879), 2, - aux_sym_variable_tuning_token1, - aux_sym_variable_tuning_token5, - STATE(2475), 3, + ACTIONS(3338), 1, + aux_sym_repeat_tuning_token1, + ACTIONS(3433), 1, + anon_sym_COLON, + ACTIONS(3841), 1, + aux_sym_on_error_phrase_token1, + STATE(2653), 1, + sym_on_quit_phrase, + STATE(3062), 1, + aux_sym_repeat_statement_repeat1, + STATE(3077), 1, + sym_on_stop_phrase, + STATE(3672), 1, + sym_repeat_tuning, + STATE(2497), 2, sym_comment, sym_include, - aux_sym_property_definition_repeat2, - [118043] = 10, + [118887] = 6, + ACTIONS(59), 1, + anon_sym_SLASH_SLASH, + ACTIONS(61), 1, + anon_sym_SLASH_STAR, + ACTIONS(65), 1, + anon_sym_LBRACE, + ACTIONS(1856), 1, + aux_sym_variable_definition_token2, + STATE(2498), 2, + sym_comment, + sym_include, + 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, + [118912] = 10, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(3735), 1, + ACTIONS(3801), 1, sym_identifier, - ACTIONS(3741), 1, - aux_sym_function_parameter_token1, - ACTIONS(3882), 1, - anon_sym_RPAREN, - STATE(3477), 1, - sym_function_parameter, - STATE(4030), 1, - sym_function_parameter_mode, - ACTIONS(3739), 2, - aux_sym_input_expression_token1, - aux_sym_argument_mode_token1, - STATE(2476), 2, + ACTIONS(3886), 1, + sym__terminator, + ACTIONS(3888), 1, + anon_sym_NO_DASHERROR, + STATE(2472), 1, + aux_sym_assign_statement_repeat1, + STATE(3194), 1, + sym_assignment, + STATE(2499), 2, sym_comment, sym_include, - [118076] = 6, + STATE(4729), 2, + sym_qualified_name, + sym_object_access, + [118945] = 11, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(3582), 1, - anon_sym_LIKE, - STATE(2477), 2, + ACTIONS(3338), 1, + aux_sym_repeat_tuning_token1, + ACTIONS(3358), 1, + anon_sym_COLON, + ACTIONS(3841), 1, + aux_sym_on_error_phrase_token1, + STATE(2683), 1, + sym_on_quit_phrase, + STATE(2993), 1, + aux_sym_repeat_statement_repeat1, + STATE(3028), 1, + sym_on_stop_phrase, + STATE(3672), 1, + sym_repeat_tuning, + STATE(2500), 2, sym_comment, sym_include, - ACTIONS(3580), 6, + [118980] = 10, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_LBRACE, + ACTIONS(3801), 1, + sym_identifier, + ACTIONS(3890), 1, 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, - [118101] = 10, + ACTIONS(3892), 1, + anon_sym_NO_DASHERROR, + STATE(2550), 1, + aux_sym_assign_statement_repeat1, + STATE(3194), 1, + sym_assignment, + STATE(2501), 2, + sym_comment, + sym_include, + STATE(4729), 2, + sym_qualified_name, + sym_object_access, + [119013] = 9, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(3735), 1, + ACTIONS(3777), 1, + anon_sym_DQUOTE, + ACTIONS(3779), 1, + anon_sym_SQUOTE, + ACTIONS(3894), 1, sym_identifier, - ACTIONS(3741), 1, - aux_sym_function_parameter_token1, - ACTIONS(3884), 1, - anon_sym_RPAREN, - STATE(3249), 1, - sym_function_parameter, - STATE(4030), 1, - sym_function_parameter_mode, - ACTIONS(3739), 2, - aux_sym_input_expression_token1, - aux_sym_argument_mode_token1, - STATE(2478), 2, + STATE(1769), 2, + sym_double_quoted_string, + sym_single_quoted_string, + STATE(2329), 2, + sym_qualified_name, + sym__string_literal, + STATE(2502), 2, sym_comment, sym_include, - [118134] = 6, - ACTIONS(59), 1, + [119044] = 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(3888), 1, - anon_sym_LIKE, - STATE(2479), 2, + ACTIONS(3777), 1, + anon_sym_DQUOTE, + ACTIONS(3779), 1, + anon_sym_SQUOTE, + ACTIONS(3896), 1, + sym_identifier, + STATE(1769), 2, + sym_double_quoted_string, + sym_single_quoted_string, + STATE(2503), 2, sym_comment, sym_include, - ACTIONS(3886), 6, + STATE(3214), 2, + sym_qualified_name, + sym__string_literal, + [119075] = 10, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_LBRACE, + ACTIONS(3801), 1, + sym_identifier, + ACTIONS(3898), 1, 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, - [118159] = 11, + ACTIONS(3900), 1, + anon_sym_NO_DASHERROR, + STATE(2511), 1, + aux_sym_assign_statement_repeat1, + STATE(3194), 1, + sym_assignment, + STATE(2504), 2, + sym_comment, + sym_include, + STATE(4729), 2, + sym_qualified_name, + sym_object_access, + [119108] = 11, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(825), 1, + ACTIONS(297), 1, aux_sym_do_block_token1, ACTIONS(1295), 1, sym_identifier, ACTIONS(1297), 1, aux_sym_input_expression_token2, - STATE(1001), 1, + STATE(1525), 1, sym_do_block, - STATE(2409), 1, + STATE(2817), 1, aux_sym_on_statement_repeat2, - STATE(3194), 1, + STATE(3291), 1, sym_widget_phrase, - STATE(4176), 1, + STATE(4560), 1, sym_label, - STATE(2480), 2, + STATE(2505), 2, sym_comment, sym_include, - [118194] = 10, - ACTIONS(59), 1, + [119143] = 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(3610), 1, - aux_sym_query_definition_tuning_token1, - ACTIONS(3890), 1, - sym__terminator, - ACTIONS(3892), 1, - aux_sym_query_definition_token3, - STATE(2588), 1, - aux_sym_query_definition_repeat1, - STATE(2981), 1, - sym_query_definition_tuning, - ACTIONS(3612), 2, - anon_sym_SCROLLING, - aux_sym_query_definition_tuning_token2, - STATE(2481), 2, + ACTIONS(3777), 1, + anon_sym_DQUOTE, + ACTIONS(3779), 1, + anon_sym_SQUOTE, + ACTIONS(3902), 1, + sym_identifier, + STATE(1769), 2, + sym_double_quoted_string, + sym_single_quoted_string, + STATE(1920), 2, + sym_qualified_name, + sym__string_literal, + STATE(2506), 2, sym_comment, sym_include, - [118227] = 6, + [119174] = 11, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(3896), 1, - anon_sym_LIKE, - STATE(2482), 2, + ACTIONS(3338), 1, + aux_sym_repeat_tuning_token1, + ACTIONS(3706), 1, + anon_sym_COLON, + ACTIONS(3841), 1, + aux_sym_on_error_phrase_token1, + STATE(2736), 1, + sym_on_quit_phrase, + STATE(3064), 1, + sym_on_stop_phrase, + STATE(3068), 1, + aux_sym_repeat_statement_repeat1, + STATE(3672), 1, + sym_repeat_tuning, + STATE(2507), 2, sym_comment, sym_include, - ACTIONS(3894), 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, - [118252] = 6, + [119209] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(1545), 1, + ACTIONS(1852), 1, aux_sym_variable_definition_token2, - STATE(2483), 2, + STATE(2508), 2, sym_comment, sym_include, - ACTIONS(1654), 6, + ACTIONS(1850), 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, - [118277] = 11, + [119234] = 11, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(825), 1, + ACTIONS(297), 1, aux_sym_do_block_token1, ACTIONS(1295), 1, sym_identifier, ACTIONS(1297), 1, aux_sym_input_expression_token2, - STATE(1001), 1, + STATE(1518), 1, sym_do_block, - STATE(2797), 1, + STATE(2505), 1, aux_sym_on_statement_repeat2, - STATE(3194), 1, + STATE(3291), 1, sym_widget_phrase, - STATE(4176), 1, + STATE(4560), 1, sym_label, - STATE(2484), 2, - sym_comment, - sym_include, - [118312] = 11, - ACTIONS(59), 1, - anon_sym_SLASH_SLASH, - ACTIONS(61), 1, - anon_sym_SLASH_STAR, - ACTIONS(65), 1, - anon_sym_LBRACE, - ACTIONS(2109), 1, - aux_sym_on_error_phrase_token1, - ACTIONS(3001), 1, - aux_sym_while_phrase_token1, - ACTIONS(3898), 1, - anon_sym_COLON, - STATE(2816), 1, - sym_while_phrase, - STATE(3000), 1, - sym_on_error_phrase, - STATE(3096), 1, - sym_on_quit_phrase, - STATE(4499), 1, - sym_on_stop_phrase, - STATE(2485), 2, - sym_comment, - sym_include, - [118347] = 11, - ACTIONS(59), 1, - anon_sym_SLASH_SLASH, - ACTIONS(61), 1, - anon_sym_SLASH_STAR, - ACTIONS(65), 1, - anon_sym_LBRACE, - ACTIONS(3776), 1, - aux_sym_case_when_branch_token1, - ACTIONS(3900), 1, - aux_sym__block_terminator_token1, - STATE(1391), 1, - sym__case_terminator, - STATE(1392), 1, - sym__block_terminator, - STATE(2631), 1, - aux_sym_case_body_repeat1, - STATE(3156), 1, - sym_case_when_branch, - STATE(3157), 1, - sym_case_body, - STATE(2486), 2, + STATE(2509), 2, sym_comment, sym_include, - [118382] = 10, + [119269] = 11, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(3759), 1, + ACTIONS(297), 1, + aux_sym_do_block_token1, + ACTIONS(1295), 1, sym_identifier, - ACTIONS(3902), 1, - sym__terminator, - ACTIONS(3904), 1, - anon_sym_NO_DASHERROR, - STATE(2517), 1, - aux_sym_assign_statement_repeat1, - STATE(3078), 1, - sym_assignment, - STATE(2487), 2, + ACTIONS(1297), 1, + aux_sym_input_expression_token2, + STATE(1518), 1, + sym_do_block, + STATE(2817), 1, + aux_sym_on_statement_repeat2, + STATE(3291), 1, + sym_widget_phrase, + STATE(4560), 1, + sym_label, + STATE(2510), 2, sym_comment, sym_include, - STATE(4588), 2, - sym_qualified_name, - sym_object_access, - [118415] = 10, + [119304] = 10, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(3759), 1, + ACTIONS(3801), 1, sym_identifier, - ACTIONS(3906), 1, + ACTIONS(3904), 1, sym__terminator, - ACTIONS(3908), 1, + ACTIONS(3906), 1, anon_sym_NO_DASHERROR, - STATE(2402), 1, + STATE(2472), 1, aux_sym_assign_statement_repeat1, - STATE(3078), 1, + STATE(3194), 1, sym_assignment, - STATE(2488), 2, + STATE(2511), 2, sym_comment, sym_include, - STATE(4588), 2, + STATE(4729), 2, sym_qualified_name, sym_object_access, - [118448] = 9, - ACTIONS(3), 1, + [119337] = 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(3751), 1, - anon_sym_DQUOTE, - ACTIONS(3753), 1, - anon_sym_SQUOTE, - ACTIONS(3910), 1, - sym_identifier, - STATE(1812), 2, - sym_double_quoted_string, - sym_single_quoted_string, - STATE(2360), 2, - sym_qualified_name, - sym__string_literal, - STATE(2489), 2, + ACTIONS(1356), 1, + aux_sym_variable_tuning_token6, + ACTIONS(1378), 1, + aux_sym_property_tuning_token1, + ACTIONS(1466), 1, + aux_sym_event_definition_token1, + STATE(1885), 1, + sym_property_tuning, + STATE(2580), 1, + aux_sym_property_definition_repeat2, + ACTIONS(1354), 2, + aux_sym_variable_tuning_token1, + aux_sym_variable_tuning_token5, + STATE(2512), 2, sym_comment, sym_include, - [118479] = 6, + [119370] = 11, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(1535), 1, - aux_sym_variable_definition_token2, - STATE(2490), 2, + ACTIONS(3338), 1, + aux_sym_repeat_tuning_token1, + ACTIONS(3841), 1, + aux_sym_on_error_phrase_token1, + ACTIONS(3908), 1, + anon_sym_COLON, + STATE(2732), 1, + sym_on_quit_phrase, + STATE(3152), 1, + aux_sym_repeat_statement_repeat1, + STATE(3158), 1, + sym_on_stop_phrase, + STATE(3672), 1, + sym_repeat_tuning, + STATE(2513), 2, sym_comment, sym_include, - ACTIONS(1656), 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, - [118504] = 9, + [119405] = 9, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(3751), 1, + ACTIONS(3777), 1, anon_sym_DQUOTE, - ACTIONS(3753), 1, + ACTIONS(3779), 1, anon_sym_SQUOTE, - ACTIONS(3912), 1, + ACTIONS(3910), 1, sym_identifier, - STATE(1812), 2, + STATE(1769), 2, sym_double_quoted_string, sym_single_quoted_string, - STATE(2491), 2, - sym_comment, - sym_include, - STATE(3090), 2, + STATE(2373), 2, sym_qualified_name, sym__string_literal, - [118535] = 10, + STATE(2514), 2, + sym_comment, + sym_include, + [119436] = 10, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(3610), 1, + ACTIONS(3644), 1, aux_sym_query_definition_tuning_token1, - ACTIONS(3914), 1, + ACTIONS(3912), 1, sym__terminator, - ACTIONS(3916), 1, + ACTIONS(3914), 1, aux_sym_query_definition_token3, - STATE(2551), 1, + STATE(2758), 1, aux_sym_query_definition_repeat1, - STATE(2981), 1, + STATE(3121), 1, sym_query_definition_tuning, - ACTIONS(3612), 2, + ACTIONS(3646), 2, anon_sym_SCROLLING, aux_sym_query_definition_tuning_token2, - STATE(2492), 2, + STATE(2515), 2, sym_comment, sym_include, - [118568] = 6, - ACTIONS(59), 1, + [119469] = 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(1561), 1, - aux_sym_variable_definition_token2, - STATE(2493), 2, + ACTIONS(297), 1, + aux_sym_do_block_token1, + ACTIONS(1295), 1, + sym_identifier, + ACTIONS(1297), 1, + aux_sym_input_expression_token2, + STATE(1420), 1, + sym_do_block, + STATE(2510), 1, + aux_sym_on_statement_repeat2, + STATE(3291), 1, + sym_widget_phrase, + STATE(4560), 1, + sym_label, + STATE(2516), 2, sym_comment, sym_include, - ACTIONS(1875), 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, - [118593] = 11, + [119504] = 11, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(789), 1, + ACTIONS(297), 1, aux_sym_do_block_token1, ACTIONS(1295), 1, sym_identifier, ACTIONS(1297), 1, aux_sym_input_expression_token2, - STATE(2466), 1, + STATE(1420), 1, + sym_do_block, + STATE(2817), 1, aux_sym_on_statement_repeat2, - STATE(3194), 1, + STATE(3291), 1, sym_widget_phrase, - STATE(3430), 1, + STATE(4560), 1, + sym_label, + STATE(2517), 2, + sym_comment, + sym_include, + [119539] = 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(1356), 1, sym_do_block, - STATE(4379), 1, + STATE(2448), 1, + aux_sym_on_statement_repeat2, + STATE(3291), 1, + sym_widget_phrase, + STATE(4362), 1, sym_label, - STATE(2494), 2, + STATE(2518), 2, + sym_comment, + sym_include, + [119574] = 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(1356), 1, + sym_do_block, + STATE(2817), 1, + aux_sym_on_statement_repeat2, + STATE(3291), 1, + sym_widget_phrase, + STATE(4362), 1, + sym_label, + STATE(2519), 2, sym_comment, sym_include, - [118628] = 10, + [119609] = 11, 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_tuning_token6, - ACTIONS(1372), 1, - aux_sym_property_tuning_token1, - ACTIONS(1456), 1, - aux_sym_event_definition_token1, - STATE(1893), 1, - sym_property_tuning, - STATE(2475), 1, - aux_sym_property_definition_repeat2, - ACTIONS(1348), 2, - aux_sym_variable_tuning_token1, - aux_sym_variable_tuning_token5, - STATE(2495), 2, + ACTIONS(3866), 1, + aux_sym_case_when_branch_token1, + ACTIONS(3916), 1, + aux_sym__block_terminator_token1, + STATE(2739), 1, + aux_sym_case_body_repeat1, + STATE(3269), 1, + sym_case_when_branch, + STATE(3549), 1, + sym_case_body, + STATE(3647), 1, + sym__case_terminator, + STATE(3648), 1, + sym__block_terminator, + STATE(2520), 2, + sym_comment, + sym_include, + [119644] = 11, + 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, + STATE(2817), 1, + aux_sym_on_statement_repeat2, + STATE(3291), 1, + sym_widget_phrase, + STATE(3547), 1, + sym_do_block, + STATE(4453), 1, + sym_label, + STATE(2521), 2, sym_comment, sym_include, - [118661] = 10, + [119679] = 10, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(3610), 1, + ACTIONS(3644), 1, aux_sym_query_definition_tuning_token1, ACTIONS(3918), 1, sym__terminator, ACTIONS(3920), 1, aux_sym_query_definition_token3, - STATE(2575), 1, + STATE(2768), 1, aux_sym_query_definition_repeat1, - STATE(2981), 1, + STATE(3121), 1, sym_query_definition_tuning, - ACTIONS(3612), 2, + ACTIONS(3646), 2, anon_sym_SCROLLING, aux_sym_query_definition_tuning_token2, - STATE(2496), 2, + STATE(2522), 2, + sym_comment, + sym_include, + [119712] = 11, + 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, + STATE(2545), 1, + aux_sym_on_statement_repeat2, + STATE(3291), 1, + sym_widget_phrase, + STATE(3547), 1, + sym_do_block, + STATE(4453), 1, + sym_label, + STATE(2523), 2, sym_comment, sym_include, - [118694] = 6, + [119747] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(1531), 1, + ACTIONS(1908), 1, aux_sym_variable_definition_token2, - STATE(2497), 2, + STATE(2524), 2, + sym_comment, + sym_include, + 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, + [119772] = 6, + ACTIONS(59), 1, + anon_sym_SLASH_SLASH, + ACTIONS(61), 1, + anon_sym_SLASH_STAR, + ACTIONS(65), 1, + anon_sym_LBRACE, + ACTIONS(1910), 1, + aux_sym_variable_definition_token2, + STATE(2525), 2, sym_comment, sym_include, - ACTIONS(1662), 6, + ACTIONS(1928), 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, - [118719] = 11, + [119797] = 11, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(825), 1, + ACTIONS(43), 1, aux_sym_do_block_token1, ACTIONS(1295), 1, sym_identifier, ACTIONS(1297), 1, aux_sym_input_expression_token2, - STATE(983), 1, + STATE(1221), 1, sym_do_block, - STATE(2484), 1, + STATE(2817), 1, aux_sym_on_statement_repeat2, - STATE(3194), 1, + STATE(3291), 1, sym_widget_phrase, - STATE(4176), 1, + STATE(4362), 1, sym_label, - STATE(2498), 2, + STATE(2526), 2, + sym_comment, + sym_include, + [119832] = 6, + ACTIONS(59), 1, + anon_sym_SLASH_SLASH, + ACTIONS(61), 1, + anon_sym_SLASH_STAR, + ACTIONS(65), 1, + anon_sym_LBRACE, + ACTIONS(1916), 1, + aux_sym_variable_definition_token2, + STATE(2527), 2, sym_comment, sym_include, - [118754] = 11, + ACTIONS(1926), 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, + [119857] = 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(297), 1, aux_sym_do_block_token1, ACTIONS(1295), 1, sym_identifier, ACTIONS(1297), 1, aux_sym_input_expression_token2, - STATE(1184), 1, + STATE(1319), 1, sym_do_block, - STATE(2797), 1, + STATE(2517), 1, aux_sym_on_statement_repeat2, - STATE(3194), 1, + STATE(3291), 1, sym_widget_phrase, - STATE(4253), 1, + STATE(4560), 1, sym_label, - STATE(2499), 2, + STATE(2528), 2, sym_comment, sym_include, - [118789] = 10, + [119892] = 11, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(3735), 1, + ACTIONS(297), 1, + aux_sym_do_block_token1, + ACTIONS(1295), 1, sym_identifier, - ACTIONS(3741), 1, - aux_sym_function_parameter_token1, - ACTIONS(3922), 1, - anon_sym_RPAREN, - STATE(3432), 1, - sym_function_parameter, - STATE(4030), 1, - sym_function_parameter_mode, - ACTIONS(3739), 2, - aux_sym_input_expression_token1, - aux_sym_argument_mode_token1, - STATE(2500), 2, + ACTIONS(1297), 1, + aux_sym_input_expression_token2, + STATE(1319), 1, + sym_do_block, + STATE(2817), 1, + aux_sym_on_statement_repeat2, + STATE(3291), 1, + sym_widget_phrase, + STATE(4560), 1, + sym_label, + STATE(2529), 2, sym_comment, sym_include, - [118822] = 11, + [119927] = 11, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(789), 1, + ACTIONS(43), 1, aux_sym_do_block_token1, ACTIONS(1295), 1, sym_identifier, ACTIONS(1297), 1, aux_sym_input_expression_token2, - STATE(2797), 1, + STATE(1221), 1, + sym_do_block, + STATE(2563), 1, aux_sym_on_statement_repeat2, - STATE(3194), 1, + STATE(3291), 1, sym_widget_phrase, - STATE(3430), 1, - sym_do_block, - STATE(4379), 1, + STATE(4362), 1, sym_label, - STATE(2501), 2, + STATE(2530), 2, sym_comment, sym_include, - [118857] = 11, + [119962] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2109), 1, - aux_sym_on_error_phrase_token1, - ACTIONS(3001), 1, - aux_sym_while_phrase_token1, - ACTIONS(3924), 1, + ACTIONS(1922), 1, + aux_sym_variable_definition_token2, + STATE(2531), 2, + sym_comment, + sym_include, + ACTIONS(1924), 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, + [119987] = 11, + ACTIONS(59), 1, + anon_sym_SLASH_SLASH, + ACTIONS(61), 1, + anon_sym_SLASH_STAR, + ACTIONS(65), 1, + anon_sym_LBRACE, + ACTIONS(3338), 1, + aux_sym_repeat_tuning_token1, + ACTIONS(3364), 1, anon_sym_COLON, - STATE(2808), 1, - sym_while_phrase, - STATE(2988), 1, - sym_on_error_phrase, - STATE(3161), 1, + ACTIONS(3841), 1, + aux_sym_on_error_phrase_token1, + STATE(2745), 1, sym_on_quit_phrase, - STATE(4345), 1, + STATE(3083), 1, + aux_sym_repeat_statement_repeat1, + STATE(3085), 1, sym_on_stop_phrase, - STATE(2502), 2, + STATE(3672), 1, + sym_repeat_tuning, + STATE(2532), 2, + sym_comment, + sym_include, + [120022] = 10, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_LBRACE, + ACTIONS(3817), 1, + sym_identifier, + ACTIONS(3823), 1, + aux_sym_function_parameter_token1, + ACTIONS(3922), 1, + anon_sym_RPAREN, + STATE(3410), 1, + sym_function_parameter, + STATE(4080), 1, + sym_function_parameter_mode, + ACTIONS(3821), 2, + aux_sym_input_expression_token1, + aux_sym_argument_mode_token1, + STATE(2533), 2, sym_comment, sym_include, - [118892] = 6, + [120055] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(1551), 1, + ACTIONS(1920), 1, aux_sym_variable_definition_token2, - STATE(2503), 2, + STATE(2534), 2, sym_comment, sym_include, - ACTIONS(1873), 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, - [118917] = 11, + [120080] = 10, 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, + ACTIONS(3817), 1, sym_identifier, - ACTIONS(1297), 1, - aux_sym_input_expression_token2, - STATE(983), 1, - sym_do_block, - STATE(2797), 1, - aux_sym_on_statement_repeat2, - STATE(3194), 1, - sym_widget_phrase, - STATE(4176), 1, - sym_label, - STATE(2504), 2, + ACTIONS(3823), 1, + aux_sym_function_parameter_token1, + ACTIONS(3924), 1, + anon_sym_RPAREN, + STATE(3347), 1, + sym_function_parameter, + STATE(4080), 1, + sym_function_parameter_mode, + ACTIONS(3821), 2, + aux_sym_input_expression_token1, + aux_sym_argument_mode_token1, + STATE(2535), 2, + sym_comment, + sym_include, + [120113] = 10, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_LBRACE, + ACTIONS(3817), 1, + sym_identifier, + ACTIONS(3823), 1, + aux_sym_function_parameter_token1, + ACTIONS(3926), 1, + anon_sym_RPAREN, + STATE(3517), 1, + sym_function_parameter, + STATE(4080), 1, + sym_function_parameter_mode, + ACTIONS(3821), 2, + aux_sym_input_expression_token1, + aux_sym_argument_mode_token1, + STATE(2536), 2, + sym_comment, + sym_include, + [120146] = 10, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_LBRACE, + ACTIONS(3817), 1, + sym_identifier, + ACTIONS(3823), 1, + aux_sym_function_parameter_token1, + ACTIONS(3928), 1, + anon_sym_RPAREN, + STATE(3476), 1, + sym_function_parameter, + STATE(4080), 1, + sym_function_parameter_mode, + ACTIONS(3821), 2, + aux_sym_input_expression_token1, + aux_sym_argument_mode_token1, + STATE(2537), 2, sym_comment, sym_include, - [118952] = 6, + [120179] = 11, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(1574), 1, - aux_sym_variable_definition_token2, - STATE(2505), 2, + ACTIONS(3338), 1, + aux_sym_repeat_tuning_token1, + ACTIONS(3419), 1, + anon_sym_COLON, + ACTIONS(3841), 1, + aux_sym_on_error_phrase_token1, + STATE(2696), 1, + sym_on_quit_phrase, + STATE(2988), 1, + aux_sym_repeat_statement_repeat1, + STATE(3031), 1, + sym_on_stop_phrase, + STATE(3672), 1, + sym_repeat_tuning, + STATE(2538), 2, sym_comment, sym_include, - ACTIONS(1871), 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, - [118977] = 6, + [120214] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(1529), 1, + ACTIONS(1914), 1, aux_sym_variable_definition_token2, - STATE(2506), 2, + STATE(2539), 2, sym_comment, sym_include, - ACTIONS(1694), 6, + ACTIONS(1912), 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, - [119002] = 6, + [120239] = 9, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(1527), 1, - aux_sym_variable_definition_token2, - STATE(2507), 2, + ACTIONS(3807), 1, + anon_sym_DQUOTE, + ACTIONS(3809), 1, + anon_sym_SQUOTE, + STATE(2879), 1, + sym__string_literal, + ACTIONS(3930), 2, + aux_sym_on_error_phrase_token2, + aux_sym_on_error_phrase_token7, + STATE(1769), 2, + sym_double_quoted_string, + sym_single_quoted_string, + STATE(2540), 2, sym_comment, sym_include, - ACTIONS(1696), 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, - [119027] = 6, - ACTIONS(59), 1, + [120270] = 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(1521), 1, - aux_sym_variable_definition_token2, - STATE(2508), 2, + ACTIONS(297), 1, + aux_sym_do_block_token1, + ACTIONS(1295), 1, + sym_identifier, + ACTIONS(1297), 1, + aux_sym_input_expression_token2, + STATE(1152), 1, + sym_do_block, + STATE(2817), 1, + aux_sym_on_statement_repeat2, + STATE(3291), 1, + sym_widget_phrase, + STATE(4560), 1, + sym_label, + STATE(2541), 2, sym_comment, sym_include, - ACTIONS(1698), 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, - [119052] = 6, + [120305] = 11, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(1702), 1, - aux_sym_variable_definition_token2, - STATE(2509), 2, + ACTIONS(3866), 1, + aux_sym_case_when_branch_token1, + ACTIONS(3932), 1, + aux_sym__block_terminator_token1, + STATE(1244), 1, + sym__case_terminator, + STATE(1245), 1, + sym__block_terminator, + STATE(2739), 1, + aux_sym_case_body_repeat1, + STATE(3269), 1, + sym_case_when_branch, + STATE(3270), 1, + sym_case_body, + STATE(2542), 2, sym_comment, sym_include, - ACTIONS(1700), 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, - [119077] = 9, + [120340] = 11, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(3751), 1, - anon_sym_DQUOTE, - ACTIONS(3753), 1, - anon_sym_SQUOTE, - ACTIONS(3926), 1, + ACTIONS(297), 1, + aux_sym_do_block_token1, + ACTIONS(1295), 1, sym_identifier, - STATE(1812), 2, - sym_double_quoted_string, - sym_single_quoted_string, - STATE(2510), 2, + ACTIONS(1297), 1, + aux_sym_input_expression_token2, + STATE(1152), 1, + sym_do_block, + STATE(2529), 1, + aux_sym_on_statement_repeat2, + STATE(3291), 1, + sym_widget_phrase, + STATE(4560), 1, + sym_label, + STATE(2543), 2, sym_comment, sym_include, - STATE(3074), 2, - sym_qualified_name, - sym__string_literal, - [119108] = 6, + [120375] = 8, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(1539), 1, - aux_sym_variable_definition_token2, - STATE(2511), 2, + ACTIONS(3936), 1, + aux_sym_sort_clause_token1, + ACTIONS(3939), 1, + aux_sym_sort_clause_token2, + STATE(2934), 1, + sym_sort_clause, + ACTIONS(3934), 3, + anon_sym_COMMA, + anon_sym_COLON, + aux_sym_on_error_phrase_token1, + STATE(2544), 3, sym_comment, sym_include, - ACTIONS(1863), 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, - [119133] = 11, + aux_sym_for_phrase_repeat2, + [120404] = 11, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(261), 1, + ACTIONS(825), 1, aux_sym_do_block_token1, ACTIONS(1295), 1, sym_identifier, ACTIONS(1297), 1, aux_sym_input_expression_token2, - STATE(1431), 1, - sym_do_block, - STATE(2797), 1, + STATE(2817), 1, aux_sym_on_statement_repeat2, - STATE(3194), 1, + STATE(3291), 1, sym_widget_phrase, - STATE(4440), 1, + STATE(3540), 1, + sym_do_block, + STATE(4453), 1, sym_label, - STATE(2512), 2, + STATE(2545), 2, sym_comment, sym_include, - [119168] = 6, + [120439] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(1706), 1, + ACTIONS(1848), 1, aux_sym_variable_definition_token2, - STATE(2513), 2, + STATE(2546), 2, sym_comment, sym_include, - ACTIONS(1704), 6, + ACTIONS(1846), 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, - [119193] = 6, + [120464] = 5, + ACTIONS(59), 1, + anon_sym_SLASH_SLASH, + ACTIONS(61), 1, + anon_sym_SLASH_STAR, + ACTIONS(65), 1, + anon_sym_LBRACE, + STATE(2547), 2, + sym_comment, + sym_include, + ACTIONS(3942), 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, + [120487] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(1710), 1, + ACTIONS(1814), 1, aux_sym_variable_definition_token2, - STATE(2514), 2, + STATE(2548), 2, sym_comment, sym_include, - ACTIONS(1708), 6, + ACTIONS(1812), 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, - [119218] = 10, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - ACTIONS(7), 1, - anon_sym_LBRACE, - ACTIONS(3759), 1, - sym_identifier, - ACTIONS(3928), 1, - sym__terminator, - ACTIONS(3930), 1, - anon_sym_NO_DASHERROR, - STATE(2402), 1, - aux_sym_assign_statement_repeat1, - STATE(3078), 1, - sym_assignment, - STATE(2515), 2, - sym_comment, - sym_include, - STATE(4588), 2, - sym_qualified_name, - sym_object_access, - [119251] = 11, - ACTIONS(3), 1, + [120512] = 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(789), 1, - aux_sym_do_block_token1, - ACTIONS(1295), 1, - sym_identifier, - ACTIONS(1297), 1, - aux_sym_input_expression_token2, - STATE(2433), 1, - aux_sym_on_statement_repeat2, - STATE(3194), 1, - sym_widget_phrase, - STATE(3407), 1, - sym_do_block, - STATE(4379), 1, - sym_label, - STATE(2516), 2, + ACTIONS(3338), 1, + aux_sym_repeat_tuning_token1, + ACTIONS(3368), 1, + anon_sym_COLON, + ACTIONS(3841), 1, + aux_sym_on_error_phrase_token1, + STATE(2761), 1, + sym_on_quit_phrase, + STATE(3098), 1, + aux_sym_repeat_statement_repeat1, + STATE(3100), 1, + sym_on_stop_phrase, + STATE(3672), 1, + sym_repeat_tuning, + STATE(2549), 2, sym_comment, sym_include, - [119286] = 10, + [120547] = 10, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(3759), 1, + ACTIONS(3801), 1, sym_identifier, - ACTIONS(3932), 1, + ACTIONS(3944), 1, sym__terminator, - ACTIONS(3934), 1, + ACTIONS(3946), 1, anon_sym_NO_DASHERROR, - STATE(2402), 1, + STATE(2472), 1, aux_sym_assign_statement_repeat1, - STATE(3078), 1, + STATE(3194), 1, sym_assignment, - STATE(2517), 2, + STATE(2550), 2, sym_comment, sym_include, - STATE(4588), 2, + STATE(4729), 2, sym_qualified_name, sym_object_access, - [119319] = 10, + [120580] = 10, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(3759), 1, + ACTIONS(3817), 1, sym_identifier, - ACTIONS(3936), 1, - sym__terminator, - ACTIONS(3938), 1, - anon_sym_NO_DASHERROR, - STATE(2488), 1, - aux_sym_assign_statement_repeat1, - STATE(3078), 1, - sym_assignment, - STATE(2518), 2, + ACTIONS(3823), 1, + aux_sym_function_parameter_token1, + ACTIONS(3948), 1, + anon_sym_RPAREN, + STATE(3452), 1, + sym_function_parameter, + STATE(4080), 1, + sym_function_parameter_mode, + ACTIONS(3821), 2, + aux_sym_input_expression_token1, + aux_sym_argument_mode_token1, + STATE(2551), 2, sym_comment, sym_include, - STATE(4588), 2, - sym_qualified_name, - sym_object_access, - [119352] = 5, - ACTIONS(59), 1, + [120613] = 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(2519), 2, + ACTIONS(3817), 1, + sym_identifier, + ACTIONS(3823), 1, + aux_sym_function_parameter_token1, + ACTIONS(3950), 1, + anon_sym_RPAREN, + STATE(3332), 1, + sym_function_parameter, + STATE(4080), 1, + sym_function_parameter_mode, + ACTIONS(3821), 2, + aux_sym_input_expression_token1, + aux_sym_argument_mode_token1, + STATE(2552), 2, sym_comment, sym_include, - ACTIONS(3940), 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, - [119375] = 5, + [120646] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - STATE(2520), 2, + ACTIONS(1810), 1, + aux_sym_variable_definition_token2, + STATE(2553), 2, sym_comment, sym_include, - ACTIONS(3942), 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, - [119398] = 10, + ACTIONS(1808), 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, + [120671] = 9, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(3759), 1, + ACTIONS(3777), 1, + anon_sym_DQUOTE, + ACTIONS(3779), 1, + anon_sym_SQUOTE, + ACTIONS(3952), 1, sym_identifier, - ACTIONS(3944), 1, - sym__terminator, - ACTIONS(3946), 1, - anon_sym_NO_DASHERROR, - STATE(2402), 1, - aux_sym_assign_statement_repeat1, - STATE(3078), 1, - sym_assignment, - STATE(2521), 2, + STATE(1769), 2, + sym_double_quoted_string, + sym_single_quoted_string, + STATE(1955), 2, + sym_qualified_name, + sym__string_literal, + STATE(2554), 2, sym_comment, sym_include, - STATE(4588), 2, - sym_qualified_name, - sym_object_access, - [119431] = 11, + [120702] = 11, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(755), 1, + ACTIONS(825), 1, aux_sym_do_block_token1, ACTIONS(1295), 1, sym_identifier, ACTIONS(1297), 1, aux_sym_input_expression_token2, - STATE(1059), 1, - sym_do_block, - STATE(2419), 1, + STATE(2584), 1, aux_sym_on_statement_repeat2, - STATE(3194), 1, + STATE(3291), 1, sym_widget_phrase, - STATE(4193), 1, + STATE(3604), 1, + sym_do_block, + STATE(4453), 1, sym_label, - STATE(2522), 2, + STATE(2555), 2, sym_comment, sym_include, - [119466] = 11, + [120737] = 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(1295), 1, sym_identifier, ACTIONS(1297), 1, aux_sym_input_expression_token2, - STATE(1299), 1, - sym_do_block, - STATE(2797), 1, + STATE(2817), 1, aux_sym_on_statement_repeat2, - STATE(3194), 1, + STATE(3291), 1, sym_widget_phrase, - STATE(4253), 1, + STATE(3604), 1, + sym_do_block, + STATE(4453), 1, sym_label, - STATE(2523), 2, + STATE(2556), 2, sym_comment, sym_include, - [119501] = 6, + [120772] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(1680), 1, - aux_sym_variable_definition_token2, - STATE(2524), 2, + ACTIONS(3602), 1, + anon_sym_LIKE, + STATE(2557), 2, sym_comment, sym_include, - ACTIONS(1776), 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, - [119526] = 11, + ACTIONS(3600), 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, + [120797] = 11, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(261), 1, + ACTIONS(43), 1, aux_sym_do_block_token1, ACTIONS(1295), 1, sym_identifier, ACTIONS(1297), 1, aux_sym_input_expression_token2, - STATE(1444), 1, + STATE(1514), 1, sym_do_block, - STATE(2512), 1, + STATE(2519), 1, aux_sym_on_statement_repeat2, - STATE(3194), 1, + STATE(3291), 1, sym_widget_phrase, - STATE(4440), 1, + STATE(4362), 1, sym_label, - STATE(2525), 2, + STATE(2558), 2, sym_comment, sym_include, - [119561] = 11, + [120832] = 10, 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, + ACTIONS(3817), 1, sym_identifier, - ACTIONS(1297), 1, - aux_sym_input_expression_token2, - STATE(1444), 1, - sym_do_block, - STATE(2797), 1, - aux_sym_on_statement_repeat2, - STATE(3194), 1, - sym_widget_phrase, - STATE(4440), 1, - sym_label, - STATE(2526), 2, - sym_comment, - sym_include, - [119596] = 6, - ACTIONS(59), 1, - anon_sym_SLASH_SLASH, - ACTIONS(61), 1, - anon_sym_SLASH_STAR, - ACTIONS(65), 1, - anon_sym_LBRACE, - ACTIONS(1764), 1, - aux_sym_variable_definition_token2, - STATE(2527), 2, + ACTIONS(3823), 1, + aux_sym_function_parameter_token1, + ACTIONS(3954), 1, + anon_sym_RPAREN, + STATE(3446), 1, + sym_function_parameter, + STATE(4080), 1, + sym_function_parameter_mode, + ACTIONS(3821), 2, + aux_sym_input_expression_token1, + aux_sym_argument_mode_token1, + STATE(2559), 2, sym_comment, sym_include, - ACTIONS(1762), 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, - [119621] = 6, + [120865] = 7, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(1768), 1, - aux_sym_variable_definition_token2, - STATE(2528), 2, + ACTIONS(679), 1, + sym__namedot, + STATE(336), 1, + aux_sym_qualified_name_repeat1, + STATE(2560), 2, sym_comment, sym_include, - ACTIONS(1766), 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, - [119646] = 6, + ACTIONS(3956), 5, + sym__terminator, + anon_sym_RPAREN, + anon_sym_COMMA, + aux_sym_data_relation_token1, + aux_sym_data_relation_token2, + [120892] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(1772), 1, + ACTIONS(1806), 1, aux_sym_variable_definition_token2, - STATE(2529), 2, + STATE(2561), 2, sym_comment, sym_include, - ACTIONS(1770), 6, + ACTIONS(1804), 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, - [119671] = 11, + [120917] = 11, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(755), 1, + ACTIONS(43), 1, aux_sym_do_block_token1, ACTIONS(1295), 1, sym_identifier, ACTIONS(1297), 1, aux_sym_input_expression_token2, - STATE(1099), 1, + STATE(1514), 1, sym_do_block, - STATE(2797), 1, + STATE(2817), 1, aux_sym_on_statement_repeat2, - STATE(3194), 1, + STATE(3291), 1, sym_widget_phrase, - STATE(4193), 1, + STATE(4362), 1, sym_label, - STATE(2530), 2, + STATE(2562), 2, sym_comment, sym_include, - [119706] = 11, + [120952] = 11, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(755), 1, + ACTIONS(43), 1, aux_sym_do_block_token1, ACTIONS(1295), 1, sym_identifier, ACTIONS(1297), 1, aux_sym_input_expression_token2, - STATE(1099), 1, + STATE(1313), 1, sym_do_block, - STATE(2452), 1, + STATE(2817), 1, aux_sym_on_statement_repeat2, - STATE(3194), 1, + STATE(3291), 1, sym_widget_phrase, - STATE(4193), 1, + STATE(4362), 1, sym_label, - STATE(2531), 2, + STATE(2563), 2, sym_comment, sym_include, - [119741] = 6, + [120987] = 11, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(1640), 1, - aux_sym_variable_definition_token2, - STATE(2532), 2, + ACTIONS(3338), 1, + aux_sym_repeat_tuning_token1, + ACTIONS(3658), 1, + anon_sym_COLON, + ACTIONS(3841), 1, + aux_sym_on_error_phrase_token1, + STATE(2656), 1, + sym_on_quit_phrase, + STATE(3053), 1, + aux_sym_repeat_statement_repeat1, + STATE(3058), 1, + sym_on_stop_phrase, + STATE(3672), 1, + sym_repeat_tuning, + STATE(2564), 2, sym_comment, sym_include, - ACTIONS(1774), 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, - [119766] = 10, + [121022] = 11, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(3610), 1, - aux_sym_query_definition_tuning_token1, - ACTIONS(3948), 1, - sym__terminator, - ACTIONS(3950), 1, - aux_sym_query_definition_token3, - STATE(2627), 1, - aux_sym_query_definition_repeat1, - STATE(2981), 1, - sym_query_definition_tuning, - ACTIONS(3612), 2, - anon_sym_SCROLLING, - aux_sym_query_definition_tuning_token2, - STATE(2533), 2, + ACTIONS(3866), 1, + aux_sym_case_when_branch_token1, + ACTIONS(3958), 1, + aux_sym__block_terminator_token1, + STATE(1409), 1, + sym__case_terminator, + STATE(1410), 1, + sym__block_terminator, + STATE(2739), 1, + aux_sym_case_body_repeat1, + STATE(3269), 1, + sym_case_when_branch, + STATE(3556), 1, + sym_case_body, + STATE(2565), 2, sym_comment, sym_include, - [119799] = 10, + [121057] = 11, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(3610), 1, - aux_sym_query_definition_tuning_token1, - ACTIONS(3952), 1, - sym__terminator, - ACTIONS(3954), 1, - aux_sym_query_definition_token3, - STATE(2583), 1, - aux_sym_query_definition_repeat1, - STATE(2981), 1, - sym_query_definition_tuning, - ACTIONS(3612), 2, - anon_sym_SCROLLING, - aux_sym_query_definition_tuning_token2, - STATE(2534), 2, - sym_comment, - sym_include, - [119832] = 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(1059), 1, - sym_do_block, - STATE(2797), 1, - aux_sym_on_statement_repeat2, - STATE(3194), 1, - sym_widget_phrase, - STATE(4193), 1, - sym_label, - STATE(2535), 2, + ACTIONS(3338), 1, + aux_sym_repeat_tuning_token1, + ACTIONS(3446), 1, + anon_sym_COLON, + ACTIONS(3841), 1, + aux_sym_on_error_phrase_token1, + STATE(2716), 1, + sym_on_quit_phrase, + STATE(2997), 1, + sym_on_stop_phrase, + STATE(3034), 1, + aux_sym_repeat_statement_repeat1, + STATE(3672), 1, + sym_repeat_tuning, + STATE(2566), 2, sym_comment, sym_include, - [119867] = 6, + [121092] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(1670), 1, - aux_sym_variable_definition_token2, - STATE(2536), 2, + STATE(2567), 2, sym_comment, sym_include, - ACTIONS(1778), 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, - [119892] = 6, + ACTIONS(3960), 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, + [121115] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(1666), 1, + ACTIONS(1802), 1, aux_sym_variable_definition_token2, - STATE(2537), 2, + STATE(2568), 2, sym_comment, sym_include, - ACTIONS(1780), 6, + ACTIONS(1800), 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, - [119917] = 6, + [121140] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(1784), 1, + ACTIONS(1798), 1, aux_sym_variable_definition_token2, - STATE(2538), 2, + STATE(2569), 2, sym_comment, sym_include, - ACTIONS(1782), 6, + ACTIONS(1796), 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, - [119942] = 6, + [121165] = 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(1755), 1, aux_sym_variable_definition_token2, - STATE(2539), 2, + STATE(2570), 2, sym_comment, sym_include, - ACTIONS(1786), 6, + ACTIONS(1753), 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, - [119967] = 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(1471), 1, - sym_do_block, - STATE(2526), 1, - aux_sym_on_statement_repeat2, - STATE(3194), 1, - sym_widget_phrase, - STATE(4440), 1, - sym_label, - STATE(2540), 2, - sym_comment, - sym_include, - [120002] = 11, + [121190] = 10, 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, + ACTIONS(3817), 1, sym_identifier, - ACTIONS(1297), 1, - aux_sym_input_expression_token2, - STATE(1471), 1, - sym_do_block, - STATE(2797), 1, - aux_sym_on_statement_repeat2, - STATE(3194), 1, - sym_widget_phrase, - STATE(4440), 1, - sym_label, - STATE(2541), 2, + ACTIONS(3823), 1, + aux_sym_function_parameter_token1, + ACTIONS(3962), 1, + anon_sym_RPAREN, + STATE(3439), 1, + sym_function_parameter, + STATE(4080), 1, + sym_function_parameter_mode, + ACTIONS(3821), 2, + aux_sym_input_expression_token1, + aux_sym_argument_mode_token1, + STATE(2571), 2, sym_comment, sym_include, - [120037] = 9, + [121223] = 11, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(3856), 1, - anon_sym_DQUOTE, - ACTIONS(3858), 1, - anon_sym_SQUOTE, - STATE(2957), 1, - sym__string_literal, - ACTIONS(3956), 2, - aux_sym_on_error_phrase_token2, - aux_sym_on_error_phrase_token7, - STATE(1812), 2, - sym_double_quoted_string, - sym_single_quoted_string, - STATE(2542), 2, + ACTIONS(3338), 1, + aux_sym_repeat_tuning_token1, + ACTIONS(3841), 1, + aux_sym_on_error_phrase_token1, + ACTIONS(3964), 1, + anon_sym_COLON, + STATE(2592), 1, + sym_on_quit_phrase, + STATE(2984), 1, + sym_on_stop_phrase, + STATE(3128), 1, + aux_sym_repeat_statement_repeat1, + STATE(3672), 1, + sym_repeat_tuning, + STATE(2572), 2, sym_comment, sym_include, - [120068] = 7, + [121258] = 6, 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(329), 1, - aux_sym_qualified_name_repeat1, - STATE(2543), 2, + ACTIONS(1896), 1, + aux_sym_variable_definition_token2, + STATE(2573), 2, sym_comment, sym_include, - ACTIONS(3958), 5, - sym__terminator, - anon_sym_RPAREN, - anon_sym_COMMA, - aux_sym_data_relation_token1, - aux_sym_data_relation_token2, - [120095] = 9, + ACTIONS(1894), 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, + [121283] = 10, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(3751), 1, - anon_sym_DQUOTE, - ACTIONS(3753), 1, - anon_sym_SQUOTE, - ACTIONS(3960), 1, + ACTIONS(3801), 1, sym_identifier, - STATE(1812), 2, - sym_double_quoted_string, - sym_single_quoted_string, - STATE(1916), 2, - sym_qualified_name, - sym__string_literal, - STATE(2544), 2, - sym_comment, - sym_include, - [120126] = 10, - ACTIONS(59), 1, - anon_sym_SLASH_SLASH, - ACTIONS(61), 1, - anon_sym_SLASH_STAR, - ACTIONS(65), 1, - anon_sym_LBRACE, - ACTIONS(3610), 1, - aux_sym_query_definition_tuning_token1, - ACTIONS(3962), 1, + ACTIONS(3966), 1, sym__terminator, - ACTIONS(3964), 1, - aux_sym_query_definition_token3, - STATE(2552), 1, - aux_sym_query_definition_repeat1, - STATE(2981), 1, - sym_query_definition_tuning, - ACTIONS(3612), 2, - anon_sym_SCROLLING, - aux_sym_query_definition_tuning_token2, - STATE(2545), 2, + ACTIONS(3968), 1, + anon_sym_NO_DASHERROR, + STATE(2472), 1, + aux_sym_assign_statement_repeat1, + STATE(3194), 1, + sym_assignment, + STATE(2574), 2, sym_comment, sym_include, - [120159] = 9, + STATE(4729), 2, + sym_qualified_name, + sym_object_access, + [121316] = 11, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(3610), 1, - aux_sym_query_definition_tuning_token1, - ACTIONS(3966), 1, - sym__terminator, - STATE(2652), 1, - aux_sym_query_definition_repeat1, - STATE(2981), 1, - sym_query_definition_tuning, - ACTIONS(3612), 2, - anon_sym_SCROLLING, - aux_sym_query_definition_tuning_token2, - STATE(2546), 2, + ACTIONS(3866), 1, + aux_sym_case_when_branch_token1, + ACTIONS(3970), 1, + aux_sym__block_terminator_token1, + STATE(914), 1, + sym__block_terminator, + STATE(915), 1, + sym__case_terminator, + STATE(2739), 1, + aux_sym_case_body_repeat1, + STATE(3269), 1, + sym_case_when_branch, + STATE(3588), 1, + sym_case_body, + STATE(2575), 2, sym_comment, sym_include, - [120189] = 10, + [121351] = 11, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2105), 1, - anon_sym_COMMA, - ACTIONS(2586), 1, + ACTIONS(3336), 1, anon_sym_COLON, - ACTIONS(3968), 1, + ACTIONS(3338), 1, + aux_sym_repeat_tuning_token1, + ACTIONS(3841), 1, aux_sym_on_error_phrase_token1, - STATE(2763), 1, + STATE(2611), 1, sym_on_quit_phrase, - STATE(3385), 1, + STATE(3125), 1, + aux_sym_repeat_statement_repeat1, + STATE(3132), 1, sym_on_stop_phrase, - STATE(3387), 1, - aux_sym_for_statement_repeat1, - STATE(2547), 2, + STATE(3672), 1, + sym_repeat_tuning, + STATE(2576), 2, sym_comment, sym_include, - [120221] = 9, - ACTIONS(59), 1, + [121386] = 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(3039), 1, - aux_sym_field_definition_token1, - ACTIONS(3041), 1, - aux_sym_index_definition_token1, - ACTIONS(3970), 1, - sym__terminator, - STATE(2626), 1, - aux_sym_temp_table_definition_repeat2, - STATE(2548), 2, + ACTIONS(3777), 1, + anon_sym_DQUOTE, + ACTIONS(3779), 1, + anon_sym_SQUOTE, + ACTIONS(3972), 1, + sym_identifier, + STATE(1769), 2, + sym_double_quoted_string, + sym_single_quoted_string, + STATE(1950), 2, + sym_qualified_name, + sym__string_literal, + STATE(2577), 2, sym_comment, sym_include, - STATE(3136), 2, - sym_field_definition, - sym_index_definition, - [120251] = 9, + [121417] = 11, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(3610), 1, - aux_sym_query_definition_tuning_token1, - ACTIONS(3948), 1, - sym__terminator, - STATE(2627), 1, - aux_sym_query_definition_repeat1, - STATE(2981), 1, - sym_query_definition_tuning, - ACTIONS(3612), 2, - anon_sym_SCROLLING, - aux_sym_query_definition_tuning_token2, - STATE(2549), 2, + ACTIONS(3338), 1, + aux_sym_repeat_tuning_token1, + ACTIONS(3841), 1, + aux_sym_on_error_phrase_token1, + ACTIONS(3974), 1, + anon_sym_COLON, + STATE(2747), 1, + sym_on_quit_phrase, + STATE(3044), 1, + aux_sym_repeat_statement_repeat1, + STATE(3167), 1, + sym_on_stop_phrase, + STATE(3672), 1, + sym_repeat_tuning, + STATE(2578), 2, sym_comment, sym_include, - [120281] = 9, - ACTIONS(59), 1, + [121452] = 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(3610), 1, - aux_sym_query_definition_tuning_token1, - ACTIONS(3972), 1, + ACTIONS(3801), 1, + sym_identifier, + ACTIONS(3976), 1, sym__terminator, - STATE(2652), 1, - aux_sym_query_definition_repeat1, - STATE(2981), 1, - sym_query_definition_tuning, - ACTIONS(3612), 2, - anon_sym_SCROLLING, - aux_sym_query_definition_tuning_token2, - STATE(2550), 2, + ACTIONS(3978), 1, + anon_sym_NO_DASHERROR, + STATE(2574), 1, + aux_sym_assign_statement_repeat1, + STATE(3194), 1, + sym_assignment, + STATE(2579), 2, sym_comment, sym_include, - [120311] = 9, + STATE(4729), 2, + sym_qualified_name, + sym_object_access, + [121485] = 9, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(3610), 1, - aux_sym_query_definition_tuning_token1, - ACTIONS(3974), 1, - sym__terminator, - STATE(2652), 1, - aux_sym_query_definition_repeat1, - STATE(2981), 1, - sym_query_definition_tuning, - ACTIONS(3612), 2, - anon_sym_SCROLLING, - aux_sym_query_definition_tuning_token2, - STATE(2551), 2, + ACTIONS(2682), 1, + aux_sym_event_definition_token1, + ACTIONS(2687), 1, + aux_sym_variable_tuning_token6, + ACTIONS(2692), 1, + aux_sym_property_tuning_token1, + STATE(1885), 1, + sym_property_tuning, + ACTIONS(3980), 2, + aux_sym_variable_tuning_token1, + aux_sym_variable_tuning_token5, + STATE(2580), 3, sym_comment, sym_include, - [120341] = 9, + aux_sym_property_definition_repeat2, + [121516] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(3610), 1, - aux_sym_query_definition_tuning_token1, - ACTIONS(3976), 1, - sym__terminator, - STATE(2652), 1, - aux_sym_query_definition_repeat1, - STATE(2981), 1, - sym_query_definition_tuning, - ACTIONS(3612), 2, - anon_sym_SCROLLING, - aux_sym_query_definition_tuning_token2, - STATE(2552), 2, + STATE(2581), 2, sym_comment, sym_include, - [120371] = 9, + ACTIONS(3983), 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, + [121539] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(3039), 1, - aux_sym_field_definition_token1, - ACTIONS(3041), 1, - aux_sym_index_definition_token1, - ACTIONS(3646), 1, - sym__terminator, - STATE(2626), 1, - aux_sym_temp_table_definition_repeat2, - STATE(2553), 2, + STATE(2582), 2, sym_comment, sym_include, - STATE(3136), 2, - sym_field_definition, - sym_index_definition, - [120401] = 10, - ACTIONS(59), 1, + ACTIONS(3985), 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, + [121562] = 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(2105), 1, - anon_sym_COMMA, - ACTIONS(2457), 1, - anon_sym_COLON, - ACTIONS(3968), 1, - aux_sym_on_error_phrase_token1, - STATE(2910), 1, - sym_on_quit_phrase, - STATE(3207), 1, - sym_on_stop_phrase, - STATE(3208), 1, - aux_sym_for_statement_repeat1, - STATE(2554), 2, + ACTIONS(825), 1, + aux_sym_do_block_token1, + ACTIONS(1295), 1, + sym_identifier, + ACTIONS(1297), 1, + aux_sym_input_expression_token2, + STATE(2452), 1, + aux_sym_on_statement_repeat2, + STATE(3291), 1, + sym_widget_phrase, + STATE(3571), 1, + sym_do_block, + STATE(4453), 1, + sym_label, + STATE(2583), 2, sym_comment, sym_include, - [120433] = 9, - ACTIONS(59), 1, + [121597] = 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(3039), 1, - aux_sym_field_definition_token1, - ACTIONS(3041), 1, - aux_sym_index_definition_token1, - ACTIONS(3646), 1, - sym__terminator, - STATE(2615), 1, - aux_sym_temp_table_definition_repeat2, - STATE(2555), 2, + ACTIONS(825), 1, + aux_sym_do_block_token1, + ACTIONS(1295), 1, + sym_identifier, + ACTIONS(1297), 1, + aux_sym_input_expression_token2, + STATE(2817), 1, + aux_sym_on_statement_repeat2, + STATE(3291), 1, + sym_widget_phrase, + STATE(3571), 1, + sym_do_block, + STATE(4453), 1, + sym_label, + STATE(2584), 2, sym_comment, sym_include, - STATE(3136), 2, - sym_field_definition, - sym_index_definition, - [120463] = 9, + [121632] = 7, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(3039), 1, - aux_sym_field_definition_token1, - ACTIONS(3041), 1, - aux_sym_index_definition_token1, - ACTIONS(3644), 1, - sym__terminator, - STATE(2626), 1, - aux_sym_temp_table_definition_repeat2, - STATE(2556), 2, + STATE(2840), 1, + sym_property_type, + ACTIONS(3989), 2, + aux_sym_property_type_token1, + aux_sym_property_type_token2, + ACTIONS(3987), 3, + aux_sym_serialization_tuning_token1, + aux_sym_serialization_tuning_token2, + aux_sym_property_definition_token1, + STATE(2585), 3, sym_comment, sym_include, - STATE(3136), 2, - sym_field_definition, - sym_index_definition, - [120493] = 10, - ACTIONS(59), 1, + aux_sym_property_definition_repeat1, + [121659] = 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(2105), 1, - anon_sym_COMMA, - ACTIONS(2431), 1, - anon_sym_COLON, - ACTIONS(3968), 1, - aux_sym_on_error_phrase_token1, - STATE(2785), 1, - sym_on_quit_phrase, - STATE(3142), 1, - aux_sym_for_statement_repeat1, - STATE(3143), 1, - sym_on_stop_phrase, - STATE(2557), 2, + ACTIONS(3817), 1, + sym_identifier, + ACTIONS(3823), 1, + aux_sym_function_parameter_token1, + ACTIONS(3992), 1, + anon_sym_RPAREN, + STATE(3414), 1, + sym_function_parameter, + STATE(4080), 1, + sym_function_parameter_mode, + ACTIONS(3821), 2, + aux_sym_input_expression_token1, + aux_sym_argument_mode_token1, + STATE(2586), 2, sym_comment, sym_include, - [120525] = 9, - ACTIONS(59), 1, + [121692] = 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(3610), 1, - aux_sym_query_definition_tuning_token1, - ACTIONS(3978), 1, - sym__terminator, - STATE(2652), 1, - aux_sym_query_definition_repeat1, - STATE(2981), 1, - sym_query_definition_tuning, - ACTIONS(3612), 2, - anon_sym_SCROLLING, - aux_sym_query_definition_tuning_token2, - STATE(2558), 2, + ACTIONS(3817), 1, + sym_identifier, + ACTIONS(3823), 1, + aux_sym_function_parameter_token1, + ACTIONS(3994), 1, + anon_sym_RPAREN, + STATE(3432), 1, + sym_function_parameter, + STATE(4080), 1, + sym_function_parameter_mode, + ACTIONS(3821), 2, + aux_sym_input_expression_token1, + aux_sym_argument_mode_token1, + STATE(2587), 2, sym_comment, sym_include, - [120555] = 9, + [121725] = 10, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(3610), 1, - aux_sym_query_definition_tuning_token1, - ACTIONS(3980), 1, - sym__terminator, - STATE(2647), 1, - aux_sym_query_definition_repeat1, - STATE(2981), 1, - sym_query_definition_tuning, - ACTIONS(3612), 2, - anon_sym_SCROLLING, - aux_sym_query_definition_tuning_token2, - STATE(2559), 2, + ACTIONS(1356), 1, + aux_sym_variable_tuning_token6, + ACTIONS(1378), 1, + aux_sym_property_tuning_token1, + ACTIONS(3996), 1, + aux_sym_event_definition_token1, + STATE(1885), 1, + sym_property_tuning, + STATE(2580), 1, + aux_sym_property_definition_repeat2, + ACTIONS(1354), 2, + aux_sym_variable_tuning_token1, + aux_sym_variable_tuning_token5, + STATE(2588), 2, sym_comment, sym_include, - [120585] = 10, + [121758] = 11, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2105), 1, - anon_sym_COMMA, - ACTIONS(3324), 1, + ACTIONS(3338), 1, + aux_sym_repeat_tuning_token1, + ACTIONS(3414), 1, anon_sym_COLON, - ACTIONS(3968), 1, + ACTIONS(3841), 1, aux_sym_on_error_phrase_token1, - STATE(2802), 1, + STATE(2718), 1, sym_on_quit_phrase, - STATE(3347), 1, + STATE(3019), 1, sym_on_stop_phrase, - STATE(3348), 1, - aux_sym_for_statement_repeat1, - STATE(2560), 2, - sym_comment, - sym_include, - [120617] = 9, - ACTIONS(59), 1, - anon_sym_SLASH_SLASH, - ACTIONS(61), 1, - anon_sym_SLASH_STAR, - ACTIONS(65), 1, - anon_sym_LBRACE, - ACTIONS(3610), 1, - aux_sym_query_definition_tuning_token1, - ACTIONS(3982), 1, - sym__terminator, - STATE(2652), 1, - aux_sym_query_definition_repeat1, - STATE(2981), 1, - sym_query_definition_tuning, - ACTIONS(3612), 2, - anon_sym_SCROLLING, - aux_sym_query_definition_tuning_token2, - STATE(2561), 2, + STATE(3036), 1, + aux_sym_repeat_statement_repeat1, + STATE(3672), 1, + sym_repeat_tuning, + STATE(2589), 2, sym_comment, sym_include, - [120647] = 9, + [121793] = 10, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(3039), 1, - aux_sym_field_definition_token1, - ACTIONS(3041), 1, - aux_sym_index_definition_token1, - ACTIONS(3665), 1, - sym__terminator, - STATE(2626), 1, - aux_sym_temp_table_definition_repeat2, - STATE(2562), 2, + ACTIONS(3338), 1, + aux_sym_repeat_tuning_token1, + ACTIONS(3364), 1, + anon_sym_COLON, + ACTIONS(3998), 1, + aux_sym_on_error_phrase_token1, + STATE(3083), 1, + aux_sym_repeat_statement_repeat1, + STATE(3085), 1, + sym_on_stop_phrase, + STATE(3672), 1, + sym_repeat_tuning, + STATE(2590), 2, sym_comment, sym_include, - STATE(3136), 2, - sym_field_definition, - sym_index_definition, - [120677] = 9, + [121825] = 9, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(3610), 1, + ACTIONS(3644), 1, aux_sym_query_definition_tuning_token1, - ACTIONS(3984), 1, + ACTIONS(4000), 1, sym__terminator, - STATE(2652), 1, + STATE(2681), 1, aux_sym_query_definition_repeat1, - STATE(2981), 1, + STATE(3121), 1, sym_query_definition_tuning, - ACTIONS(3612), 2, + ACTIONS(3646), 2, anon_sym_SCROLLING, aux_sym_query_definition_tuning_token2, - STATE(2563), 2, + STATE(2591), 2, sym_comment, sym_include, - [120707] = 10, + [121855] = 10, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2105), 1, - anon_sym_COMMA, - ACTIONS(2588), 1, - anon_sym_COLON, - ACTIONS(3968), 1, + ACTIONS(3338), 1, + aux_sym_repeat_tuning_token1, + ACTIONS(3998), 1, aux_sym_on_error_phrase_token1, - STATE(2866), 1, - sym_on_quit_phrase, - STATE(3305), 1, - aux_sym_for_statement_repeat1, - STATE(3306), 1, + ACTIONS(4002), 1, + anon_sym_COLON, + STATE(3022), 1, + aux_sym_repeat_statement_repeat1, + STATE(3160), 1, sym_on_stop_phrase, - STATE(2564), 2, + STATE(3672), 1, + sym_repeat_tuning, + STATE(2592), 2, sym_comment, sym_include, - [120739] = 9, + [121887] = 10, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(3039), 1, - aux_sym_field_definition_token1, - ACTIONS(3041), 1, - aux_sym_index_definition_token1, - ACTIONS(3644), 1, - sym__terminator, - STATE(2568), 1, - aux_sym_temp_table_definition_repeat2, - STATE(2565), 2, + ACTIONS(679), 1, + sym__namedot, + ACTIONS(4004), 1, + anon_sym_COMMA, + ACTIONS(4006), 1, + aux_sym_data_relation_token1, + STATE(336), 1, + aux_sym_qualified_name_repeat1, + STATE(3063), 1, + aux_sym_data_relation_repeat1, + STATE(4274), 1, + sym_data_relation, + STATE(2593), 2, sym_comment, sym_include, - STATE(3136), 2, - sym_field_definition, - sym_index_definition, - [120769] = 10, + [121919] = 10, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2105), 1, - anon_sym_COMMA, - ACTIONS(3230), 1, + ACTIONS(3336), 1, anon_sym_COLON, - ACTIONS(3968), 1, + ACTIONS(3338), 1, + aux_sym_repeat_tuning_token1, + ACTIONS(3998), 1, aux_sym_on_error_phrase_token1, - STATE(2720), 1, - sym_on_quit_phrase, - STATE(3434), 1, - aux_sym_for_statement_repeat1, - STATE(3448), 1, + STATE(3125), 1, + aux_sym_repeat_statement_repeat1, + STATE(3132), 1, sym_on_stop_phrase, - STATE(2566), 2, + STATE(3672), 1, + sym_repeat_tuning, + STATE(2594), 2, sym_comment, sym_include, - [120801] = 10, + [121951] = 10, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2105), 1, + ACTIONS(2109), 1, anon_sym_COMMA, - ACTIONS(2594), 1, + ACTIONS(3277), 1, anon_sym_COLON, - ACTIONS(3968), 1, + ACTIONS(4008), 1, aux_sym_on_error_phrase_token1, - STATE(2769), 1, + STATE(2808), 1, sym_on_quit_phrase, - STATE(3137), 1, + STATE(3312), 1, sym_on_stop_phrase, - STATE(3138), 1, + STATE(3313), 1, aux_sym_for_statement_repeat1, - STATE(2567), 2, + STATE(2595), 2, sym_comment, sym_include, - [120833] = 9, + [121983] = 10, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(3039), 1, - aux_sym_field_definition_token1, - ACTIONS(3041), 1, - aux_sym_index_definition_token1, - ACTIONS(3606), 1, - sym__terminator, - STATE(2626), 1, - aux_sym_temp_table_definition_repeat2, - STATE(2568), 2, + ACTIONS(679), 1, + sym__namedot, + ACTIONS(4004), 1, + anon_sym_COMMA, + ACTIONS(4006), 1, + aux_sym_data_relation_token1, + STATE(336), 1, + aux_sym_qualified_name_repeat1, + STATE(3032), 1, + aux_sym_data_relation_repeat1, + STATE(4338), 1, + sym_data_relation, + STATE(2596), 2, sym_comment, sym_include, - STATE(3136), 2, - sym_field_definition, - sym_index_definition, - [120863] = 10, + [122015] = 10, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2105), 1, - anon_sym_COMMA, - ACTIONS(2437), 1, + ACTIONS(3338), 1, + aux_sym_repeat_tuning_token1, + ACTIONS(3414), 1, anon_sym_COLON, - ACTIONS(3968), 1, + ACTIONS(3998), 1, aux_sym_on_error_phrase_token1, - STATE(2864), 1, - sym_on_quit_phrase, - STATE(3212), 1, - aux_sym_for_statement_repeat1, - STATE(3214), 1, + STATE(3019), 1, sym_on_stop_phrase, - STATE(2569), 2, + STATE(3036), 1, + aux_sym_repeat_statement_repeat1, + STATE(3672), 1, + sym_repeat_tuning, + STATE(2597), 2, sym_comment, sym_include, - [120895] = 9, + [122047] = 9, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(3610), 1, + ACTIONS(3644), 1, aux_sym_query_definition_tuning_token1, - ACTIONS(3952), 1, + ACTIONS(4010), 1, sym__terminator, - STATE(2583), 1, + STATE(2681), 1, aux_sym_query_definition_repeat1, - STATE(2981), 1, + STATE(3121), 1, sym_query_definition_tuning, - ACTIONS(3612), 2, + ACTIONS(3646), 2, anon_sym_SCROLLING, aux_sym_query_definition_tuning_token2, - STATE(2570), 2, + STATE(2598), 2, sym_comment, sym_include, - [120925] = 10, + [122077] = 9, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2105), 1, - anon_sym_COMMA, - ACTIONS(3320), 1, - anon_sym_COLON, - ACTIONS(3968), 1, - aux_sym_on_error_phrase_token1, - STATE(2723), 1, - sym_on_quit_phrase, - STATE(3275), 1, - sym_on_stop_phrase, - STATE(3277), 1, - aux_sym_for_statement_repeat1, - STATE(2571), 2, + ACTIONS(3057), 1, + aux_sym_field_definition_token1, + ACTIONS(3059), 1, + aux_sym_index_definition_token1, + ACTIONS(3068), 1, + sym__terminator, + STATE(2785), 1, + aux_sym_temp_table_definition_repeat2, + STATE(2599), 2, sym_comment, sym_include, - [120957] = 10, + STATE(3248), 2, + sym_field_definition, + sym_index_definition, + [122107] = 10, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2105), 1, + ACTIONS(2109), 1, anon_sym_COMMA, - ACTIONS(2461), 1, + ACTIONS(2610), 1, anon_sym_COLON, - ACTIONS(3968), 1, + ACTIONS(4008), 1, aux_sym_on_error_phrase_token1, - STATE(2790), 1, + STATE(2810), 1, sym_on_quit_phrase, - STATE(3145), 1, + STATE(3310), 1, sym_on_stop_phrase, - STATE(3146), 1, + STATE(3311), 1, aux_sym_for_statement_repeat1, - STATE(2572), 2, + STATE(2600), 2, sym_comment, sym_include, - [120989] = 10, + [122139] = 10, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2105), 1, + ACTIONS(2109), 1, anon_sym_COMMA, - ACTIONS(3968), 1, - aux_sym_on_error_phrase_token1, - ACTIONS(3986), 1, + ACTIONS(2453), 1, anon_sym_COLON, - STATE(2811), 1, + ACTIONS(4008), 1, + aux_sym_on_error_phrase_token1, + STATE(2924), 1, sym_on_quit_phrase, - STATE(3352), 1, + STATE(3400), 1, sym_on_stop_phrase, - STATE(3354), 1, + STATE(3401), 1, aux_sym_for_statement_repeat1, - STATE(2573), 2, + STATE(2601), 2, sym_comment, sym_include, - [121021] = 9, + [122171] = 9, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(3039), 1, - aux_sym_field_definition_token1, - ACTIONS(3041), 1, - aux_sym_index_definition_token1, - ACTIONS(3665), 1, + ACTIONS(3644), 1, + aux_sym_query_definition_tuning_token1, + ACTIONS(4012), 1, sym__terminator, - STATE(2714), 1, - aux_sym_temp_table_definition_repeat2, - STATE(2574), 2, + STATE(2598), 1, + aux_sym_query_definition_repeat1, + STATE(3121), 1, + sym_query_definition_tuning, + ACTIONS(3646), 2, + anon_sym_SCROLLING, + aux_sym_query_definition_tuning_token2, + STATE(2602), 2, sym_comment, sym_include, - STATE(3136), 2, - sym_field_definition, - sym_index_definition, - [121051] = 9, + [122201] = 9, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(3610), 1, + ACTIONS(3644), 1, aux_sym_query_definition_tuning_token1, - ACTIONS(3988), 1, + ACTIONS(4014), 1, sym__terminator, - STATE(2652), 1, + STATE(2681), 1, aux_sym_query_definition_repeat1, - STATE(2981), 1, + STATE(3121), 1, sym_query_definition_tuning, - ACTIONS(3612), 2, + ACTIONS(3646), 2, anon_sym_SCROLLING, aux_sym_query_definition_tuning_token2, - STATE(2575), 2, - sym_comment, - sym_include, - [121081] = 6, - ACTIONS(59), 1, - anon_sym_SLASH_SLASH, - ACTIONS(61), 1, - anon_sym_SLASH_STAR, - ACTIONS(65), 1, - anon_sym_LBRACE, - ACTIONS(3990), 1, - anon_sym_COMMA, - STATE(2576), 3, + STATE(2603), 2, sym_comment, sym_include, - aux_sym_data_relation_repeat1, - ACTIONS(3958), 4, - sym__terminator, - anon_sym_RPAREN, - aux_sym_data_relation_token1, - aux_sym_data_relation_token2, - [121105] = 9, + [122231] = 7, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(3039), 1, - aux_sym_field_definition_token1, - ACTIONS(3041), 1, - aux_sym_index_definition_token1, - ACTIONS(3993), 1, - sym__terminator, - STATE(2626), 1, - aux_sym_temp_table_definition_repeat2, - STATE(2577), 2, + ACTIONS(4018), 1, + aux_sym_do_tuning_token1, + STATE(3074), 1, + sym_do_tuning, + ACTIONS(4016), 3, + anon_sym_COLON, + aux_sym_on_error_phrase_token1, + aux_sym_stop_after_phrase_token1, + STATE(2604), 3, sym_comment, sym_include, - STATE(3136), 2, - sym_field_definition, - sym_index_definition, - [121135] = 9, + aux_sym_do_block_repeat1, + [122257] = 9, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(3610), 1, + ACTIONS(3644), 1, aux_sym_query_definition_tuning_token1, - ACTIONS(3995), 1, + ACTIONS(4021), 1, sym__terminator, - STATE(2652), 1, + STATE(2681), 1, aux_sym_query_definition_repeat1, - STATE(2981), 1, + STATE(3121), 1, sym_query_definition_tuning, - ACTIONS(3612), 2, + ACTIONS(3646), 2, anon_sym_SCROLLING, aux_sym_query_definition_tuning_token2, - STATE(2578), 2, + STATE(2605), 2, sym_comment, sym_include, - [121165] = 10, + [122287] = 10, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2105), 1, + ACTIONS(2109), 1, anon_sym_COMMA, - ACTIONS(2459), 1, - anon_sym_COLON, - ACTIONS(3968), 1, + ACTIONS(4008), 1, aux_sym_on_error_phrase_token1, - STATE(2761), 1, + ACTIONS(4023), 1, + anon_sym_COLON, + STATE(2812), 1, sym_on_quit_phrase, - STATE(3134), 1, + STATE(3308), 1, sym_on_stop_phrase, - STATE(3135), 1, + STATE(3309), 1, aux_sym_for_statement_repeat1, - STATE(2579), 2, - sym_comment, - sym_include, - [121197] = 5, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - ACTIONS(7), 1, - anon_sym_LBRACE, - STATE(2580), 2, + STATE(2606), 2, sym_comment, sym_include, - ACTIONS(3997), 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, - [121219] = 9, + [122319] = 9, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(3039), 1, - aux_sym_field_definition_token1, - ACTIONS(3041), 1, - aux_sym_index_definition_token1, - ACTIONS(3999), 1, + ACTIONS(3644), 1, + aux_sym_query_definition_tuning_token1, + ACTIONS(4025), 1, sym__terminator, - STATE(2626), 1, - aux_sym_temp_table_definition_repeat2, - STATE(2581), 2, + STATE(2603), 1, + aux_sym_query_definition_repeat1, + STATE(3121), 1, + sym_query_definition_tuning, + ACTIONS(3646), 2, + anon_sym_SCROLLING, + aux_sym_query_definition_tuning_token2, + STATE(2607), 2, sym_comment, sym_include, - STATE(3136), 2, - sym_field_definition, - sym_index_definition, - [121249] = 10, + [122349] = 10, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2105), 1, + ACTIONS(2109), 1, anon_sym_COMMA, - ACTIONS(3968), 1, - aux_sym_on_error_phrase_token1, - ACTIONS(4001), 1, + ACTIONS(3279), 1, anon_sym_COLON, - STATE(2734), 1, + ACTIONS(4008), 1, + aux_sym_on_error_phrase_token1, + STATE(2814), 1, sym_on_quit_phrase, - STATE(3262), 1, + STATE(3306), 1, sym_on_stop_phrase, - STATE(3263), 1, + STATE(3307), 1, aux_sym_for_statement_repeat1, - STATE(2582), 2, + STATE(2608), 2, sym_comment, sym_include, - [121281] = 9, + [122381] = 10, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(3610), 1, - aux_sym_query_definition_tuning_token1, - ACTIONS(4003), 1, - sym__terminator, - STATE(2652), 1, - aux_sym_query_definition_repeat1, - STATE(2981), 1, - sym_query_definition_tuning, - ACTIONS(3612), 2, - anon_sym_SCROLLING, - aux_sym_query_definition_tuning_token2, - STATE(2583), 2, - sym_comment, - sym_include, - [121311] = 5, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - ACTIONS(7), 1, - anon_sym_LBRACE, - STATE(2584), 2, - sym_comment, - sym_include, - ACTIONS(4005), 6, - sym_identifier, + ACTIONS(2109), 1, anon_sym_COMMA, + ACTIONS(2588), 1, anon_sym_COLON, + ACTIONS(4008), 1, aux_sym_on_error_phrase_token1, - aux_sym_sort_clause_token1, - aux_sym_sort_clause_token2, - [121333] = 9, + STATE(2945), 1, + sym_on_quit_phrase, + STATE(3398), 1, + aux_sym_for_statement_repeat1, + STATE(3399), 1, + sym_on_stop_phrase, + STATE(2609), 2, + sym_comment, + sym_include, + [122413] = 9, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(3610), 1, + ACTIONS(3644), 1, aux_sym_query_definition_tuning_token1, - ACTIONS(4007), 1, + ACTIONS(3852), 1, sym__terminator, - STATE(2606), 1, + STATE(2605), 1, aux_sym_query_definition_repeat1, - STATE(2981), 1, + STATE(3121), 1, sym_query_definition_tuning, - ACTIONS(3612), 2, + ACTIONS(3646), 2, anon_sym_SCROLLING, aux_sym_query_definition_tuning_token2, - STATE(2585), 2, + STATE(2610), 2, sym_comment, sym_include, - [121363] = 10, + [122443] = 10, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2105), 1, - anon_sym_COMMA, - ACTIONS(2574), 1, + ACTIONS(3338), 1, + aux_sym_repeat_tuning_token1, + ACTIONS(3358), 1, anon_sym_COLON, - ACTIONS(3968), 1, + ACTIONS(3998), 1, aux_sym_on_error_phrase_token1, - STATE(2793), 1, - sym_on_quit_phrase, - STATE(3357), 1, + STATE(2993), 1, + aux_sym_repeat_statement_repeat1, + STATE(3028), 1, sym_on_stop_phrase, - STATE(3358), 1, - aux_sym_for_statement_repeat1, - STATE(2586), 2, - sym_comment, - sym_include, - [121395] = 9, - ACTIONS(59), 1, - anon_sym_SLASH_SLASH, - ACTIONS(61), 1, - anon_sym_SLASH_STAR, - ACTIONS(65), 1, - anon_sym_LBRACE, - ACTIONS(3610), 1, - aux_sym_query_definition_tuning_token1, - ACTIONS(4009), 1, - sym__terminator, - STATE(2652), 1, - aux_sym_query_definition_repeat1, - STATE(2981), 1, - sym_query_definition_tuning, - ACTIONS(3612), 2, - anon_sym_SCROLLING, - aux_sym_query_definition_tuning_token2, - STATE(2587), 2, + STATE(3672), 1, + sym_repeat_tuning, + STATE(2611), 2, sym_comment, sym_include, - [121425] = 9, + [122475] = 10, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(3610), 1, - aux_sym_query_definition_tuning_token1, - ACTIONS(4011), 1, - sym__terminator, - STATE(2652), 1, - aux_sym_query_definition_repeat1, - STATE(2981), 1, - sym_query_definition_tuning, - ACTIONS(3612), 2, - anon_sym_SCROLLING, - aux_sym_query_definition_tuning_token2, - STATE(2588), 2, + ACTIONS(2109), 1, + anon_sym_COMMA, + ACTIONS(4008), 1, + aux_sym_on_error_phrase_token1, + ACTIONS(4027), 1, + anon_sym_COLON, + STATE(2816), 1, + sym_on_quit_phrase, + STATE(3302), 1, + sym_on_stop_phrase, + STATE(3303), 1, + aux_sym_for_statement_repeat1, + STATE(2612), 2, sym_comment, sym_include, - [121455] = 9, + [122507] = 9, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(3039), 1, + ACTIONS(3057), 1, aux_sym_field_definition_token1, - ACTIONS(3041), 1, + ACTIONS(3059), 1, aux_sym_index_definition_token1, - ACTIONS(3056), 1, + ACTIONS(4029), 1, sym__terminator, - STATE(2643), 1, + STATE(2785), 1, aux_sym_temp_table_definition_repeat2, - STATE(2589), 2, + STATE(2613), 2, sym_comment, sym_include, - STATE(3136), 2, + STATE(3248), 2, sym_field_definition, sym_index_definition, - [121485] = 9, + [122537] = 9, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(3039), 1, - aux_sym_field_definition_token1, - ACTIONS(3041), 1, - aux_sym_index_definition_token1, - ACTIONS(3685), 1, + ACTIONS(3644), 1, + aux_sym_query_definition_tuning_token1, + ACTIONS(4031), 1, sym__terminator, - STATE(2581), 1, - aux_sym_temp_table_definition_repeat2, - STATE(2590), 2, + STATE(2681), 1, + aux_sym_query_definition_repeat1, + STATE(3121), 1, + sym_query_definition_tuning, + ACTIONS(3646), 2, + anon_sym_SCROLLING, + aux_sym_query_definition_tuning_token2, + STATE(2614), 2, sym_comment, sym_include, - STATE(3136), 2, - sym_field_definition, - sym_index_definition, - [121515] = 8, + [122567] = 8, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(4015), 1, + ACTIONS(4035), 1, aux_sym_field_definition_token1, - STATE(2706), 1, + STATE(2777), 1, aux_sym_widget_phrase_repeat1, - STATE(3039), 1, + STATE(3117), 1, sym_widget_field, - STATE(2591), 2, + STATE(2615), 2, sym_comment, sym_include, - ACTIONS(4013), 3, + ACTIONS(4033), 3, sym_identifier, aux_sym_input_expression_token2, aux_sym_do_block_token1, - [121543] = 10, + [122595] = 10, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2105), 1, + ACTIONS(2109), 1, anon_sym_COMMA, - ACTIONS(2580), 1, - anon_sym_COLON, - ACTIONS(3968), 1, + ACTIONS(4008), 1, aux_sym_on_error_phrase_token1, - STATE(2911), 1, + ACTIONS(4037), 1, + anon_sym_COLON, + STATE(2820), 1, sym_on_quit_phrase, - STATE(3317), 1, - aux_sym_for_statement_repeat1, - STATE(3319), 1, + STATE(3230), 1, sym_on_stop_phrase, - STATE(2592), 2, + STATE(3231), 1, + aux_sym_for_statement_repeat1, + STATE(2616), 2, sym_comment, sym_include, - [121575] = 10, + [122627] = 9, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2105), 1, - anon_sym_COMMA, - ACTIONS(2421), 1, - anon_sym_COLON, - ACTIONS(3968), 1, - aux_sym_on_error_phrase_token1, - STATE(2849), 1, - sym_on_quit_phrase, - STATE(3171), 1, - sym_on_stop_phrase, - STATE(3173), 1, - aux_sym_for_statement_repeat1, - STATE(2593), 2, + ACTIONS(3644), 1, + aux_sym_query_definition_tuning_token1, + ACTIONS(4039), 1, + sym__terminator, + STATE(2681), 1, + aux_sym_query_definition_repeat1, + STATE(3121), 1, + sym_query_definition_tuning, + ACTIONS(3646), 2, + anon_sym_SCROLLING, + aux_sym_query_definition_tuning_token2, + STATE(2617), 2, sym_comment, sym_include, - [121607] = 9, - ACTIONS(3), 1, + [122657] = 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(4017), 1, - sym_identifier, - STATE(2090), 1, - aux_sym_sort_clause_repeat1, - STATE(2642), 1, - sym_sort_column, - STATE(4291), 1, - sym_object_access, - STATE(2093), 2, - sym_qualified_name, - sym_function_call, - STATE(2594), 2, + ACTIONS(3644), 1, + aux_sym_query_definition_tuning_token1, + ACTIONS(4041), 1, + sym__terminator, + STATE(2681), 1, + aux_sym_query_definition_repeat1, + STATE(3121), 1, + sym_query_definition_tuning, + ACTIONS(3646), 2, + anon_sym_SCROLLING, + aux_sym_query_definition_tuning_token2, + STATE(2618), 2, sym_comment, sym_include, - [121637] = 10, + [122687] = 10, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2105), 1, + ACTIONS(2109), 1, anon_sym_COMMA, - ACTIONS(2393), 1, - anon_sym_COLON, - ACTIONS(3968), 1, + ACTIONS(4008), 1, aux_sym_on_error_phrase_token1, - STATE(2805), 1, + ACTIONS(4043), 1, + anon_sym_COLON, + STATE(2825), 1, sym_on_quit_phrase, - STATE(3153), 1, - aux_sym_for_statement_repeat1, - STATE(3154), 1, + STATE(3376), 1, sym_on_stop_phrase, - STATE(2595), 2, + STATE(3377), 1, + aux_sym_for_statement_repeat1, + STATE(2619), 2, sym_comment, sym_include, - [121669] = 9, + [122719] = 9, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(3039), 1, + ACTIONS(3057), 1, aux_sym_field_definition_token1, - ACTIONS(3041), 1, + ACTIONS(3059), 1, aux_sym_index_definition_token1, - ACTIONS(4019), 1, + ACTIONS(3773), 1, sym__terminator, - STATE(2626), 1, + STATE(2613), 1, aux_sym_temp_table_definition_repeat2, - STATE(2596), 2, + STATE(2620), 2, sym_comment, sym_include, - STATE(3136), 2, + STATE(3248), 2, sym_field_definition, sym_index_definition, - [121699] = 5, - ACTIONS(3), 1, + [122749] = 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(2597), 2, + ACTIONS(3057), 1, + aux_sym_field_definition_token1, + ACTIONS(3059), 1, + aux_sym_index_definition_token1, + ACTIONS(3135), 1, + sym__terminator, + STATE(2668), 1, + aux_sym_temp_table_definition_repeat2, + STATE(2621), 2, sym_comment, sym_include, - ACTIONS(4021), 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, - [121721] = 10, + STATE(3248), 2, + sym_field_definition, + sym_index_definition, + [122779] = 10, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2105), 1, + ACTIONS(2109), 1, anon_sym_COMMA, - ACTIONS(3968), 1, - aux_sym_on_error_phrase_token1, - ACTIONS(4023), 1, + ACTIONS(2576), 1, anon_sym_COLON, - STATE(2742), 1, + ACTIONS(4008), 1, + aux_sym_on_error_phrase_token1, + STATE(2838), 1, sym_on_quit_phrase, - STATE(3424), 1, - aux_sym_for_statement_repeat1, - STATE(3427), 1, + STATE(3393), 1, sym_on_stop_phrase, - STATE(2598), 2, + STATE(3394), 1, + aux_sym_for_statement_repeat1, + STATE(2622), 2, sym_comment, sym_include, - [121753] = 9, + [122811] = 9, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(3610), 1, + ACTIONS(3057), 1, + aux_sym_field_definition_token1, + ACTIONS(3059), 1, + aux_sym_index_definition_token1, + ACTIONS(3135), 1, + sym__terminator, + STATE(2785), 1, + aux_sym_temp_table_definition_repeat2, + STATE(2623), 2, + sym_comment, + sym_include, + STATE(3248), 2, + sym_field_definition, + sym_index_definition, + [122841] = 9, + ACTIONS(59), 1, + anon_sym_SLASH_SLASH, + ACTIONS(61), 1, + anon_sym_SLASH_STAR, + ACTIONS(65), 1, + anon_sym_LBRACE, + ACTIONS(3644), 1, aux_sym_query_definition_tuning_token1, - ACTIONS(4025), 1, + ACTIONS(4045), 1, sym__terminator, - STATE(2652), 1, + STATE(2618), 1, aux_sym_query_definition_repeat1, - STATE(2981), 1, + STATE(3121), 1, sym_query_definition_tuning, - ACTIONS(3612), 2, + ACTIONS(3646), 2, anon_sym_SCROLLING, aux_sym_query_definition_tuning_token2, - STATE(2599), 2, + STATE(2624), 2, sym_comment, sym_include, - [121783] = 10, + [122871] = 10, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2105), 1, + ACTIONS(2109), 1, anon_sym_COMMA, - ACTIONS(2415), 1, + ACTIONS(2574), 1, anon_sym_COLON, - ACTIONS(3968), 1, + ACTIONS(4008), 1, aux_sym_on_error_phrase_token1, - STATE(2913), 1, + STATE(2865), 1, sym_on_quit_phrase, - STATE(3293), 1, - aux_sym_for_statement_repeat1, - STATE(3294), 1, + STATE(3402), 1, sym_on_stop_phrase, - STATE(2600), 2, + STATE(3403), 1, + aux_sym_for_statement_repeat1, + STATE(2625), 2, sym_comment, sym_include, - [121815] = 9, + [122903] = 9, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(3610), 1, + ACTIONS(3644), 1, aux_sym_query_definition_tuning_token1, - ACTIONS(3914), 1, + ACTIONS(3781), 1, sym__terminator, - STATE(2551), 1, + STATE(2614), 1, aux_sym_query_definition_repeat1, - STATE(2981), 1, + STATE(3121), 1, sym_query_definition_tuning, - ACTIONS(3612), 2, + ACTIONS(3646), 2, anon_sym_SCROLLING, aux_sym_query_definition_tuning_token2, - STATE(2601), 2, + STATE(2626), 2, sym_comment, sym_include, - [121845] = 9, + [122933] = 9, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(3039), 1, + ACTIONS(3057), 1, aux_sym_field_definition_token1, - ACTIONS(3041), 1, + ACTIONS(3059), 1, aux_sym_index_definition_token1, - ACTIONS(3606), 1, + ACTIONS(3773), 1, sym__terminator, - STATE(2548), 1, + STATE(2785), 1, aux_sym_temp_table_definition_repeat2, - STATE(2602), 2, + STATE(2627), 2, sym_comment, sym_include, - STATE(3136), 2, + STATE(3248), 2, sym_field_definition, sym_index_definition, - [121875] = 9, + [122963] = 10, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(3039), 1, - aux_sym_field_definition_token1, - ACTIONS(3041), 1, - aux_sym_index_definition_token1, - ACTIONS(3685), 1, - sym__terminator, - STATE(2626), 1, - aux_sym_temp_table_definition_repeat2, - STATE(2603), 2, + ACTIONS(2109), 1, + anon_sym_COMMA, + ACTIONS(3324), 1, + anon_sym_COLON, + ACTIONS(4008), 1, + aux_sym_on_error_phrase_token1, + STATE(2828), 1, + sym_on_quit_phrase, + STATE(3234), 1, + sym_on_stop_phrase, + STATE(3235), 1, + aux_sym_for_statement_repeat1, + STATE(2628), 2, sym_comment, sym_include, - STATE(3136), 2, - sym_field_definition, - sym_index_definition, - [121905] = 10, + [122995] = 10, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2105), 1, + ACTIONS(2109), 1, anon_sym_COMMA, - ACTIONS(3302), 1, + ACTIONS(2431), 1, anon_sym_COLON, - ACTIONS(3968), 1, + ACTIONS(4008), 1, aux_sym_on_error_phrase_token1, - STATE(2786), 1, + STATE(2862), 1, sym_on_quit_phrase, - STATE(3360), 1, + STATE(3340), 1, sym_on_stop_phrase, - STATE(3361), 1, + STATE(3342), 1, aux_sym_for_statement_repeat1, - STATE(2604), 2, + STATE(2629), 2, sym_comment, sym_include, - [121937] = 9, + [123027] = 9, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(3610), 1, + ACTIONS(3644), 1, aux_sym_query_definition_tuning_token1, - ACTIONS(4027), 1, + ACTIONS(4047), 1, sym__terminator, - STATE(2652), 1, + STATE(2681), 1, aux_sym_query_definition_repeat1, - STATE(2981), 1, + STATE(3121), 1, sym_query_definition_tuning, - ACTIONS(3612), 2, + ACTIONS(3646), 2, anon_sym_SCROLLING, aux_sym_query_definition_tuning_token2, - STATE(2605), 2, + STATE(2630), 2, sym_comment, sym_include, - [121967] = 9, + [123057] = 9, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(3610), 1, + ACTIONS(3644), 1, aux_sym_query_definition_tuning_token1, - ACTIONS(4029), 1, + ACTIONS(4049), 1, sym__terminator, - STATE(2652), 1, + STATE(2649), 1, aux_sym_query_definition_repeat1, - STATE(2981), 1, + STATE(3121), 1, sym_query_definition_tuning, - ACTIONS(3612), 2, + ACTIONS(3646), 2, anon_sym_SCROLLING, aux_sym_query_definition_tuning_token2, - STATE(2606), 2, + STATE(2631), 2, sym_comment, sym_include, - [121997] = 9, + [123087] = 9, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(3610), 1, - aux_sym_query_definition_tuning_token1, - ACTIONS(3962), 1, + ACTIONS(3057), 1, + aux_sym_field_definition_token1, + ACTIONS(3059), 1, + aux_sym_index_definition_token1, + ACTIONS(3654), 1, sym__terminator, - STATE(2552), 1, - aux_sym_query_definition_repeat1, - STATE(2981), 1, - sym_query_definition_tuning, - ACTIONS(3612), 2, - anon_sym_SCROLLING, - aux_sym_query_definition_tuning_token2, - STATE(2607), 2, + STATE(2785), 1, + aux_sym_temp_table_definition_repeat2, + STATE(2632), 2, sym_comment, sym_include, - [122027] = 7, + STATE(3248), 2, + sym_field_definition, + sym_index_definition, + [123117] = 10, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(4033), 1, - aux_sym_do_tuning_token1, - STATE(2944), 1, - sym_do_tuning, - ACTIONS(4031), 3, - anon_sym_COLON, + ACTIONS(2109), 1, + anon_sym_COMMA, + ACTIONS(4008), 1, aux_sym_on_error_phrase_token1, - aux_sym_stop_after_phrase_token1, - STATE(2608), 3, + ACTIONS(4051), 1, + anon_sym_COLON, + STATE(2830), 1, + sym_on_quit_phrase, + STATE(3236), 1, + sym_on_stop_phrase, + STATE(3237), 1, + aux_sym_for_statement_repeat1, + STATE(2633), 2, sym_comment, sym_include, - aux_sym_do_block_repeat1, - [122053] = 9, + [123149] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_LBRACE, + STATE(2634), 2, + sym_comment, + sym_include, + ACTIONS(4053), 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, + [123171] = 9, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(3610), 1, + ACTIONS(3644), 1, aux_sym_query_definition_tuning_token1, - ACTIONS(3918), 1, + ACTIONS(4055), 1, sym__terminator, - STATE(2575), 1, + STATE(2681), 1, aux_sym_query_definition_repeat1, - STATE(2981), 1, + STATE(3121), 1, sym_query_definition_tuning, - ACTIONS(3612), 2, + ACTIONS(3646), 2, anon_sym_SCROLLING, aux_sym_query_definition_tuning_token2, - STATE(2609), 2, + STATE(2635), 2, sym_comment, sym_include, - [122083] = 9, + [123201] = 9, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(3039), 1, + ACTIONS(3057), 1, aux_sym_field_definition_token1, - ACTIONS(3041), 1, + ACTIONS(3059), 1, aux_sym_index_definition_token1, - ACTIONS(3080), 1, + ACTIONS(3656), 1, sym__terminator, - STATE(2626), 1, + STATE(2627), 1, aux_sym_temp_table_definition_repeat2, - STATE(2610), 2, + STATE(2636), 2, sym_comment, sym_include, - STATE(3136), 2, + STATE(3248), 2, sym_field_definition, sym_index_definition, - [122113] = 9, + [123231] = 9, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_LBRACE, + ACTIONS(3817), 1, + sym_identifier, + ACTIONS(3823), 1, + aux_sym_function_parameter_token1, + STATE(4080), 1, + sym_function_parameter_mode, + STATE(4100), 1, + sym_function_parameter, + ACTIONS(3821), 2, + aux_sym_input_expression_token1, + aux_sym_argument_mode_token1, + STATE(2637), 2, + sym_comment, + sym_include, + [123261] = 9, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(3039), 1, + ACTIONS(3644), 1, + aux_sym_query_definition_tuning_token1, + ACTIONS(4057), 1, + sym__terminator, + STATE(2681), 1, + aux_sym_query_definition_repeat1, + STATE(3121), 1, + sym_query_definition_tuning, + ACTIONS(3646), 2, + anon_sym_SCROLLING, + aux_sym_query_definition_tuning_token2, + STATE(2638), 2, + sym_comment, + sym_include, + [123291] = 9, + ACTIONS(59), 1, + anon_sym_SLASH_SLASH, + ACTIONS(61), 1, + anon_sym_SLASH_STAR, + ACTIONS(65), 1, + anon_sym_LBRACE, + ACTIONS(3057), 1, aux_sym_field_definition_token1, - ACTIONS(3041), 1, + ACTIONS(3059), 1, aux_sym_index_definition_token1, - ACTIONS(3156), 1, + ACTIONS(4059), 1, sym__terminator, - STATE(2626), 1, + STATE(2785), 1, aux_sym_temp_table_definition_repeat2, - STATE(2611), 2, + STATE(2639), 2, sym_comment, sym_include, - STATE(3136), 2, + STATE(3248), 2, sym_field_definition, sym_index_definition, - [122143] = 9, + [123321] = 9, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(3039), 1, + ACTIONS(3057), 1, aux_sym_field_definition_token1, - ACTIONS(3041), 1, + ACTIONS(3059), 1, aux_sym_index_definition_token1, - ACTIONS(3156), 1, + ACTIONS(3654), 1, sym__terminator, - STATE(2553), 1, + STATE(2685), 1, aux_sym_temp_table_definition_repeat2, - STATE(2612), 2, + STATE(2640), 2, sym_comment, sym_include, - STATE(3136), 2, + STATE(3248), 2, sym_field_definition, sym_index_definition, - [122173] = 9, + [123351] = 9, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(3039), 1, + ACTIONS(3644), 1, + aux_sym_query_definition_tuning_token1, + ACTIONS(3791), 1, + sym__terminator, + STATE(2630), 1, + aux_sym_query_definition_repeat1, + STATE(3121), 1, + sym_query_definition_tuning, + ACTIONS(3646), 2, + anon_sym_SCROLLING, + aux_sym_query_definition_tuning_token2, + STATE(2641), 2, + sym_comment, + sym_include, + [123381] = 9, + ACTIONS(59), 1, + anon_sym_SLASH_SLASH, + ACTIONS(61), 1, + anon_sym_SLASH_STAR, + ACTIONS(65), 1, + anon_sym_LBRACE, + ACTIONS(3057), 1, aux_sym_field_definition_token1, - ACTIONS(3041), 1, + ACTIONS(3059), 1, aux_sym_index_definition_token1, - ACTIONS(3630), 1, + ACTIONS(3656), 1, sym__terminator, - STATE(2626), 1, + STATE(2785), 1, aux_sym_temp_table_definition_repeat2, - STATE(2613), 2, + STATE(2642), 2, sym_comment, sym_include, - STATE(3136), 2, + STATE(3248), 2, sym_field_definition, sym_index_definition, - [122203] = 10, + [123411] = 9, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2105), 1, - anon_sym_COMMA, - ACTIONS(2582), 1, - anon_sym_COLON, - ACTIONS(3968), 1, - aux_sym_on_error_phrase_token1, - STATE(2751), 1, - sym_on_quit_phrase, - STATE(3131), 1, - sym_on_stop_phrase, - STATE(3132), 1, - aux_sym_for_statement_repeat1, - STATE(2614), 2, + ACTIONS(3644), 1, + aux_sym_query_definition_tuning_token1, + ACTIONS(4061), 1, + sym__terminator, + STATE(2722), 1, + aux_sym_query_definition_repeat1, + STATE(3121), 1, + sym_query_definition_tuning, + ACTIONS(3646), 2, + anon_sym_SCROLLING, + aux_sym_query_definition_tuning_token2, + STATE(2643), 2, sym_comment, sym_include, - [122235] = 9, + [123441] = 9, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(3039), 1, + ACTIONS(3057), 1, aux_sym_field_definition_token1, - ACTIONS(3041), 1, + ACTIONS(3059), 1, aux_sym_index_definition_token1, - ACTIONS(3695), 1, + ACTIONS(4063), 1, sym__terminator, - STATE(2626), 1, + STATE(2785), 1, aux_sym_temp_table_definition_repeat2, - STATE(2615), 2, + STATE(2644), 2, sym_comment, sym_include, - STATE(3136), 2, + STATE(3248), 2, sym_field_definition, sym_index_definition, - [122265] = 9, + [123471] = 9, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(3610), 1, + ACTIONS(3644), 1, aux_sym_query_definition_tuning_token1, - ACTIONS(4036), 1, + ACTIONS(4065), 1, sym__terminator, - STATE(2618), 1, + STATE(2681), 1, aux_sym_query_definition_repeat1, - STATE(2981), 1, + STATE(3121), 1, sym_query_definition_tuning, - ACTIONS(3612), 2, + ACTIONS(3646), 2, anon_sym_SCROLLING, aux_sym_query_definition_tuning_token2, - STATE(2616), 2, + STATE(2645), 2, sym_comment, sym_include, - [122295] = 10, + [123501] = 10, 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(4038), 1, + ACTIONS(2109), 1, anon_sym_COMMA, - ACTIONS(4040), 1, - aux_sym_data_relation_token1, - STATE(329), 1, - aux_sym_qualified_name_repeat1, - STATE(3055), 1, - aux_sym_data_relation_repeat1, - STATE(4429), 1, - sym_data_relation, - STATE(2617), 2, + ACTIONS(2435), 1, + anon_sym_COLON, + ACTIONS(4008), 1, + aux_sym_on_error_phrase_token1, + STATE(2798), 1, + sym_on_quit_phrase, + STATE(3408), 1, + aux_sym_for_statement_repeat1, + STATE(3409), 1, + sym_on_stop_phrase, + STATE(2646), 2, sym_comment, sym_include, - [122327] = 9, + [123533] = 9, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(3610), 1, + ACTIONS(3644), 1, aux_sym_query_definition_tuning_token1, - ACTIONS(4042), 1, + ACTIONS(4067), 1, sym__terminator, - STATE(2652), 1, + STATE(2681), 1, aux_sym_query_definition_repeat1, - STATE(2981), 1, + STATE(3121), 1, sym_query_definition_tuning, - ACTIONS(3612), 2, + ACTIONS(3646), 2, anon_sym_SCROLLING, aux_sym_query_definition_tuning_token2, - STATE(2618), 2, + STATE(2647), 2, sym_comment, sym_include, - [122357] = 10, + [123563] = 10, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2105), 1, + ACTIONS(2109), 1, anon_sym_COMMA, - ACTIONS(2443), 1, + ACTIONS(2441), 1, anon_sym_COLON, - ACTIONS(3968), 1, + ACTIONS(4008), 1, aux_sym_on_error_phrase_token1, - STATE(2760), 1, + STATE(2917), 1, sym_on_quit_phrase, - STATE(3483), 1, + STATE(3343), 1, aux_sym_for_statement_repeat1, - STATE(3492), 1, + STATE(3344), 1, sym_on_stop_phrase, - STATE(2619), 2, + STATE(2648), 2, sym_comment, sym_include, - [122389] = 10, + [123595] = 9, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2105), 1, - anon_sym_COMMA, - ACTIONS(2584), 1, - anon_sym_COLON, - ACTIONS(3968), 1, - aux_sym_on_error_phrase_token1, - STATE(2739), 1, - sym_on_quit_phrase, - STATE(3129), 1, - sym_on_stop_phrase, - STATE(3130), 1, - aux_sym_for_statement_repeat1, - STATE(2620), 2, + ACTIONS(3644), 1, + aux_sym_query_definition_tuning_token1, + ACTIONS(4069), 1, + sym__terminator, + STATE(2681), 1, + aux_sym_query_definition_repeat1, + STATE(3121), 1, + sym_query_definition_tuning, + ACTIONS(3646), 2, + anon_sym_SCROLLING, + aux_sym_query_definition_tuning_token2, + STATE(2649), 2, sym_comment, sym_include, - [122421] = 10, + [123625] = 9, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2105), 1, - anon_sym_COMMA, - ACTIONS(2576), 1, - anon_sym_COLON, - ACTIONS(3968), 1, - aux_sym_on_error_phrase_token1, - STATE(2873), 1, - sym_on_quit_phrase, - STATE(3209), 1, - sym_on_stop_phrase, - STATE(3210), 1, - aux_sym_for_statement_repeat1, - STATE(2621), 2, + ACTIONS(3644), 1, + aux_sym_query_definition_tuning_token1, + ACTIONS(4071), 1, + sym__terminator, + STATE(2681), 1, + aux_sym_query_definition_repeat1, + STATE(3121), 1, + sym_query_definition_tuning, + ACTIONS(3646), 2, + anon_sym_SCROLLING, + aux_sym_query_definition_tuning_token2, + STATE(2650), 2, sym_comment, sym_include, - [122453] = 9, + [123655] = 9, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(3039), 1, + ACTIONS(3057), 1, aux_sym_field_definition_token1, - ACTIONS(3041), 1, + ACTIONS(3059), 1, aux_sym_index_definition_token1, - ACTIONS(3090), 1, + ACTIONS(3745), 1, sym__terminator, - STATE(2556), 1, + STATE(2644), 1, aux_sym_temp_table_definition_repeat2, - STATE(2622), 2, + STATE(2651), 2, sym_comment, sym_include, - STATE(3136), 2, + STATE(3248), 2, sym_field_definition, sym_index_definition, - [122483] = 10, + [123685] = 9, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2105), 1, - anon_sym_COMMA, - ACTIONS(2578), 1, + ACTIONS(3644), 1, + aux_sym_query_definition_tuning_token1, + ACTIONS(3797), 1, + sym__terminator, + STATE(2645), 1, + aux_sym_query_definition_repeat1, + STATE(3121), 1, + sym_query_definition_tuning, + ACTIONS(3646), 2, + anon_sym_SCROLLING, + aux_sym_query_definition_tuning_token2, + STATE(2652), 2, + sym_comment, + sym_include, + [123715] = 10, + ACTIONS(59), 1, + anon_sym_SLASH_SLASH, + ACTIONS(61), 1, + anon_sym_SLASH_STAR, + ACTIONS(65), 1, + anon_sym_LBRACE, + ACTIONS(3338), 1, + aux_sym_repeat_tuning_token1, + ACTIONS(3366), 1, anon_sym_COLON, - ACTIONS(3968), 1, + ACTIONS(3998), 1, aux_sym_on_error_phrase_token1, - STATE(2781), 1, - sym_on_quit_phrase, - STATE(3372), 1, + STATE(3010), 1, + aux_sym_repeat_statement_repeat1, + STATE(3016), 1, sym_on_stop_phrase, - STATE(3377), 1, - aux_sym_for_statement_repeat1, - STATE(2623), 2, + STATE(3672), 1, + sym_repeat_tuning, + STATE(2653), 2, sym_comment, sym_include, - [122515] = 10, + [123747] = 10, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2105), 1, + ACTIONS(2109), 1, anon_sym_COMMA, - ACTIONS(2572), 1, + ACTIONS(2600), 1, anon_sym_COLON, - ACTIONS(3968), 1, + ACTIONS(4008), 1, aux_sym_on_error_phrase_token1, - STATE(2740), 1, + STATE(2835), 1, sym_on_quit_phrase, - STATE(3281), 1, + STATE(3396), 1, sym_on_stop_phrase, - STATE(3282), 1, + STATE(3397), 1, aux_sym_for_statement_repeat1, - STATE(2624), 2, + STATE(2654), 2, sym_comment, sym_include, - [122547] = 9, + [123779] = 9, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(3039), 1, - aux_sym_field_definition_token1, - ACTIONS(3041), 1, - aux_sym_index_definition_token1, - ACTIONS(3090), 1, + ACTIONS(3644), 1, + aux_sym_query_definition_tuning_token1, + ACTIONS(3813), 1, sym__terminator, - STATE(2626), 1, - aux_sym_temp_table_definition_repeat2, - STATE(2625), 2, + STATE(2647), 1, + aux_sym_query_definition_repeat1, + STATE(3121), 1, + sym_query_definition_tuning, + ACTIONS(3646), 2, + anon_sym_SCROLLING, + aux_sym_query_definition_tuning_token2, + STATE(2655), 2, sym_comment, sym_include, - STATE(3136), 2, - sym_field_definition, - sym_index_definition, - [122577] = 8, + [123809] = 10, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(4044), 1, - sym__terminator, - ACTIONS(4046), 1, + ACTIONS(3338), 1, + aux_sym_repeat_tuning_token1, + ACTIONS(3964), 1, + anon_sym_COLON, + ACTIONS(3998), 1, + aux_sym_on_error_phrase_token1, + STATE(2984), 1, + sym_on_stop_phrase, + STATE(3128), 1, + aux_sym_repeat_statement_repeat1, + STATE(3672), 1, + sym_repeat_tuning, + STATE(2656), 2, + sym_comment, + sym_include, + [123841] = 9, + ACTIONS(59), 1, + anon_sym_SLASH_SLASH, + ACTIONS(61), 1, + anon_sym_SLASH_STAR, + ACTIONS(65), 1, + anon_sym_LBRACE, + ACTIONS(3057), 1, aux_sym_field_definition_token1, - ACTIONS(4049), 1, + ACTIONS(3059), 1, aux_sym_index_definition_token1, - STATE(3136), 2, - sym_field_definition, - sym_index_definition, - STATE(2626), 3, + ACTIONS(3745), 1, + sym__terminator, + STATE(2785), 1, + aux_sym_temp_table_definition_repeat2, + STATE(2657), 2, sym_comment, sym_include, - aux_sym_temp_table_definition_repeat2, - [122605] = 9, + STATE(3248), 2, + sym_field_definition, + sym_index_definition, + [123871] = 10, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(3610), 1, - aux_sym_query_definition_tuning_token1, - ACTIONS(4052), 1, - sym__terminator, - STATE(2652), 1, - aux_sym_query_definition_repeat1, - STATE(2981), 1, - sym_query_definition_tuning, - ACTIONS(3612), 2, - anon_sym_SCROLLING, - aux_sym_query_definition_tuning_token2, - STATE(2627), 2, + ACTIONS(2109), 1, + anon_sym_COMMA, + ACTIONS(4008), 1, + aux_sym_on_error_phrase_token1, + ACTIONS(4073), 1, + anon_sym_COLON, + STATE(2885), 1, + sym_on_quit_phrase, + STATE(3440), 1, + aux_sym_for_statement_repeat1, + STATE(3441), 1, + sym_on_stop_phrase, + STATE(2658), 2, sym_comment, sym_include, - [122635] = 9, + [123903] = 10, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(3039), 1, - aux_sym_field_definition_token1, - ACTIONS(3041), 1, - aux_sym_index_definition_token1, - ACTIONS(3152), 1, - sym__terminator, - STATE(2626), 1, - aux_sym_temp_table_definition_repeat2, - STATE(2628), 2, + ACTIONS(2109), 1, + anon_sym_COMMA, + ACTIONS(2586), 1, + anon_sym_COLON, + ACTIONS(4008), 1, + aux_sym_on_error_phrase_token1, + STATE(2842), 1, + sym_on_quit_phrase, + STATE(3238), 1, + sym_on_stop_phrase, + STATE(3239), 1, + aux_sym_for_statement_repeat1, + STATE(2659), 2, sym_comment, sym_include, - STATE(3136), 2, - sym_field_definition, - sym_index_definition, - [122665] = 9, + [123935] = 10, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(3039), 1, - aux_sym_field_definition_token1, - ACTIONS(3041), 1, - aux_sym_index_definition_token1, - ACTIONS(3152), 1, - sym__terminator, - STATE(2562), 1, - aux_sym_temp_table_definition_repeat2, - STATE(2629), 2, + ACTIONS(2109), 1, + anon_sym_COMMA, + ACTIONS(2590), 1, + anon_sym_COLON, + ACTIONS(4008), 1, + aux_sym_on_error_phrase_token1, + STATE(2956), 1, + sym_on_quit_phrase, + STATE(3382), 1, + aux_sym_for_statement_repeat1, + STATE(3385), 1, + sym_on_stop_phrase, + STATE(2660), 2, sym_comment, sym_include, - STATE(3136), 2, - sym_field_definition, - sym_index_definition, - [122695] = 9, + [123967] = 10, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(3610), 1, - aux_sym_query_definition_tuning_token1, - ACTIONS(3890), 1, - sym__terminator, - STATE(2588), 1, - aux_sym_query_definition_repeat1, - STATE(2981), 1, - sym_query_definition_tuning, - ACTIONS(3612), 2, - anon_sym_SCROLLING, - aux_sym_query_definition_tuning_token2, - STATE(2630), 2, + ACTIONS(3338), 1, + aux_sym_repeat_tuning_token1, + ACTIONS(3446), 1, + anon_sym_COLON, + ACTIONS(3998), 1, + aux_sym_on_error_phrase_token1, + STATE(2997), 1, + sym_on_stop_phrase, + STATE(3034), 1, + aux_sym_repeat_statement_repeat1, + STATE(3672), 1, + sym_repeat_tuning, + STATE(2661), 2, sym_comment, sym_include, - [122725] = 10, + [123999] = 10, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(3776), 1, - aux_sym_case_when_branch_token1, - ACTIONS(4054), 1, - aux_sym__block_terminator_token1, - ACTIONS(4056), 1, - aux_sym_case_otherwise_branch_token1, - STATE(2887), 1, - aux_sym_case_body_repeat1, - STATE(3156), 1, - sym_case_when_branch, - STATE(4241), 1, - sym_case_otherwise_branch, - STATE(2631), 2, + ACTIONS(2109), 1, + anon_sym_COMMA, + ACTIONS(2437), 1, + anon_sym_COLON, + ACTIONS(4008), 1, + aux_sym_on_error_phrase_token1, + STATE(2951), 1, + sym_on_quit_phrase, + STATE(3518), 1, + aux_sym_for_statement_repeat1, + STATE(3519), 1, + sym_on_stop_phrase, + STATE(2662), 2, + sym_comment, + sym_include, + [124031] = 6, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_LBRACE, + ACTIONS(4075), 1, + anon_sym_COMMA, + STATE(2663), 3, sym_comment, sym_include, - [122757] = 10, + aux_sym_on_statement_repeat1, + ACTIONS(1431), 4, + sym_identifier, + aux_sym_input_expression_token2, + aux_sym_do_block_token1, + aux_sym_widget_field_token1, + [124055] = 10, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2105), 1, + ACTIONS(2109), 1, anon_sym_COMMA, - ACTIONS(3318), 1, + ACTIONS(2469), 1, anon_sym_COLON, - ACTIONS(3968), 1, + ACTIONS(4008), 1, aux_sym_on_error_phrase_token1, - STATE(2732), 1, + STATE(2913), 1, sym_on_quit_phrase, - STATE(3267), 1, + STATE(3321), 1, sym_on_stop_phrase, - STATE(3268), 1, + STATE(3322), 1, aux_sym_for_statement_repeat1, - STATE(2632), 2, + STATE(2664), 2, sym_comment, sym_include, - [122789] = 9, + [124087] = 10, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(3610), 1, - aux_sym_query_definition_tuning_token1, - ACTIONS(4058), 1, - sym__terminator, - STATE(2637), 1, - aux_sym_query_definition_repeat1, - STATE(2981), 1, - sym_query_definition_tuning, - ACTIONS(3612), 2, - anon_sym_SCROLLING, - aux_sym_query_definition_tuning_token2, - STATE(2633), 2, + ACTIONS(2109), 1, + anon_sym_COMMA, + ACTIONS(2608), 1, + anon_sym_COLON, + ACTIONS(4008), 1, + aux_sym_on_error_phrase_token1, + STATE(2794), 1, + sym_on_quit_phrase, + STATE(3314), 1, + sym_on_stop_phrase, + STATE(3315), 1, + aux_sym_for_statement_repeat1, + STATE(2665), 2, sym_comment, sym_include, - [122819] = 10, + [124119] = 10, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2105), 1, + ACTIONS(2109), 1, anon_sym_COMMA, - ACTIONS(2592), 1, + ACTIONS(2459), 1, anon_sym_COLON, - ACTIONS(3968), 1, + ACTIONS(4008), 1, aux_sym_on_error_phrase_token1, - STATE(2733), 1, + STATE(2843), 1, sym_on_quit_phrase, - STATE(3255), 1, - aux_sym_for_statement_repeat1, - STATE(3256), 1, + STATE(3412), 1, sym_on_stop_phrase, - STATE(2634), 2, + STATE(3413), 1, + aux_sym_for_statement_repeat1, + STATE(2666), 2, sym_comment, sym_include, - [122851] = 10, + [124151] = 10, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2105), 1, + ACTIONS(2109), 1, anon_sym_COMMA, - ACTIONS(2453), 1, + ACTIONS(3232), 1, anon_sym_COLON, - ACTIONS(3968), 1, + ACTIONS(4008), 1, aux_sym_on_error_phrase_token1, - STATE(2738), 1, + STATE(2847), 1, sym_on_quit_phrase, - STATE(3436), 1, + STATE(3241), 1, sym_on_stop_phrase, - STATE(3442), 1, + STATE(3242), 1, aux_sym_for_statement_repeat1, - STATE(2635), 2, - sym_comment, - sym_include, - [122883] = 9, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - ACTIONS(7), 1, - anon_sym_LBRACE, - ACTIONS(4017), 1, - sym_identifier, - STATE(2119), 1, - aux_sym_sort_clause_repeat1, - STATE(2642), 1, - sym_sort_column, - STATE(4291), 1, - sym_object_access, - STATE(2093), 2, - sym_qualified_name, - sym_function_call, - STATE(2636), 2, + STATE(2667), 2, sym_comment, sym_include, - [122913] = 9, + [124183] = 9, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(3610), 1, - aux_sym_query_definition_tuning_token1, - ACTIONS(4060), 1, + ACTIONS(3057), 1, + aux_sym_field_definition_token1, + ACTIONS(3059), 1, + aux_sym_index_definition_token1, + ACTIONS(3737), 1, sym__terminator, - STATE(2652), 1, - aux_sym_query_definition_repeat1, - STATE(2981), 1, - sym_query_definition_tuning, - ACTIONS(3612), 2, - anon_sym_SCROLLING, - aux_sym_query_definition_tuning_token2, - STATE(2637), 2, + STATE(2785), 1, + aux_sym_temp_table_definition_repeat2, + STATE(2668), 2, sym_comment, sym_include, - [122943] = 9, + STATE(3248), 2, + sym_field_definition, + sym_index_definition, + [124213] = 9, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(3610), 1, + ACTIONS(3644), 1, aux_sym_query_definition_tuning_token1, - ACTIONS(4062), 1, + ACTIONS(4078), 1, sym__terminator, - STATE(2652), 1, + STATE(2681), 1, aux_sym_query_definition_repeat1, - STATE(2981), 1, + STATE(3121), 1, sym_query_definition_tuning, - ACTIONS(3612), 2, + ACTIONS(3646), 2, anon_sym_SCROLLING, aux_sym_query_definition_tuning_token2, - STATE(2638), 2, + STATE(2669), 2, sym_comment, sym_include, - [122973] = 9, + [124243] = 10, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(3610), 1, - aux_sym_query_definition_tuning_token1, - ACTIONS(4064), 1, - sym__terminator, - STATE(2546), 1, - aux_sym_query_definition_repeat1, - STATE(2981), 1, - sym_query_definition_tuning, - ACTIONS(3612), 2, - anon_sym_SCROLLING, - aux_sym_query_definition_tuning_token2, - STATE(2639), 2, + ACTIONS(2109), 1, + anon_sym_COMMA, + ACTIONS(3302), 1, + anon_sym_COLON, + ACTIONS(4008), 1, + aux_sym_on_error_phrase_token1, + STATE(2867), 1, + sym_on_quit_phrase, + STATE(3443), 1, + aux_sym_for_statement_repeat1, + STATE(3444), 1, + sym_on_stop_phrase, + STATE(2670), 2, sym_comment, sym_include, - [123003] = 9, + [124275] = 9, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(3039), 1, + ACTIONS(3057), 1, aux_sym_field_definition_token1, - ACTIONS(3041), 1, + ACTIONS(3059), 1, aux_sym_index_definition_token1, - ACTIONS(3056), 1, + ACTIONS(3737), 1, sym__terminator, - STATE(2626), 1, + STATE(2699), 1, aux_sym_temp_table_definition_repeat2, - STATE(2640), 2, + STATE(2671), 2, sym_comment, sym_include, - STATE(3136), 2, + STATE(3248), 2, sym_field_definition, sym_index_definition, - [123033] = 10, - ACTIONS(59), 1, - anon_sym_SLASH_SLASH, - ACTIONS(61), 1, - anon_sym_SLASH_STAR, - ACTIONS(65), 1, - anon_sym_LBRACE, - ACTIONS(2105), 1, - anon_sym_COMMA, - ACTIONS(2455), 1, - anon_sym_COLON, - ACTIONS(3968), 1, - aux_sym_on_error_phrase_token1, - STATE(2799), 1, - sym_on_quit_phrase, - STATE(3295), 1, - sym_on_stop_phrase, - STATE(3296), 1, - aux_sym_for_statement_repeat1, - STATE(2641), 2, - sym_comment, - sym_include, - [123065] = 5, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - ACTIONS(7), 1, - anon_sym_LBRACE, - STATE(2642), 2, - sym_comment, - sym_include, - ACTIONS(4066), 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, - [123087] = 9, + [124305] = 9, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(3039), 1, + ACTIONS(3057), 1, aux_sym_field_definition_token1, - ACTIONS(3041), 1, + ACTIONS(3059), 1, aux_sym_index_definition_token1, - ACTIONS(3693), 1, + ACTIONS(3735), 1, sym__terminator, - STATE(2626), 1, + STATE(2657), 1, aux_sym_temp_table_definition_repeat2, - STATE(2643), 2, + STATE(2672), 2, sym_comment, sym_include, - STATE(3136), 2, + STATE(3248), 2, sym_field_definition, sym_index_definition, - [123117] = 9, + [124335] = 9, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(3039), 1, + ACTIONS(3057), 1, aux_sym_field_definition_token1, - ACTIONS(3041), 1, + ACTIONS(3059), 1, aux_sym_index_definition_token1, - ACTIONS(3693), 1, + ACTIONS(3735), 1, sym__terminator, - STATE(2613), 1, + STATE(2785), 1, aux_sym_temp_table_definition_repeat2, - STATE(2644), 2, + STATE(2673), 2, sym_comment, sym_include, - STATE(3136), 2, + STATE(3248), 2, sym_field_definition, sym_index_definition, - [123147] = 9, + [124365] = 9, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(3610), 1, - aux_sym_query_definition_tuning_token1, - ACTIONS(4068), 1, + ACTIONS(3057), 1, + aux_sym_field_definition_token1, + ACTIONS(3059), 1, + aux_sym_index_definition_token1, + ACTIONS(3088), 1, sym__terminator, - STATE(2638), 1, - aux_sym_query_definition_repeat1, - STATE(2981), 1, - sym_query_definition_tuning, - ACTIONS(3612), 2, - anon_sym_SCROLLING, - aux_sym_query_definition_tuning_token2, - STATE(2645), 2, + STATE(2785), 1, + aux_sym_temp_table_definition_repeat2, + STATE(2674), 2, sym_comment, sym_include, - [123177] = 9, + STATE(3248), 2, + sym_field_definition, + sym_index_definition, + [124395] = 9, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(3610), 1, + ACTIONS(3644), 1, aux_sym_query_definition_tuning_token1, - ACTIONS(4070), 1, + ACTIONS(4080), 1, sym__terminator, - STATE(2652), 1, + STATE(2681), 1, aux_sym_query_definition_repeat1, - STATE(2981), 1, + STATE(3121), 1, sym_query_definition_tuning, - ACTIONS(3612), 2, + ACTIONS(3646), 2, anon_sym_SCROLLING, aux_sym_query_definition_tuning_token2, - STATE(2646), 2, + STATE(2675), 2, sym_comment, sym_include, - [123207] = 9, + [124425] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(3610), 1, - aux_sym_query_definition_tuning_token1, - ACTIONS(4072), 1, - sym__terminator, - STATE(2652), 1, - aux_sym_query_definition_repeat1, - STATE(2981), 1, - sym_query_definition_tuning, - ACTIONS(3612), 2, - anon_sym_SCROLLING, - aux_sym_query_definition_tuning_token2, - STATE(2647), 2, + ACTIONS(4082), 1, + anon_sym_COMMA, + STATE(2676), 3, sym_comment, sym_include, - [123237] = 9, - ACTIONS(59), 1, - anon_sym_SLASH_SLASH, - ACTIONS(61), 1, - anon_sym_SLASH_STAR, - ACTIONS(65), 1, - anon_sym_LBRACE, - ACTIONS(3031), 1, + aux_sym_data_relation_repeat1, + ACTIONS(3956), 4, sym__terminator, - ACTIONS(3039), 1, - aux_sym_field_definition_token1, - ACTIONS(3041), 1, - aux_sym_index_definition_token1, - STATE(2626), 1, - aux_sym_temp_table_definition_repeat2, - STATE(2648), 2, - sym_comment, - sym_include, - STATE(3136), 2, - sym_field_definition, - sym_index_definition, - [123267] = 9, + anon_sym_RPAREN, + aux_sym_data_relation_token1, + aux_sym_data_relation_token2, + [124449] = 9, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(3039), 1, + ACTIONS(3057), 1, aux_sym_field_definition_token1, - ACTIONS(3041), 1, + ACTIONS(3059), 1, aux_sym_index_definition_token1, - ACTIONS(3695), 1, + ACTIONS(3727), 1, sym__terminator, - STATE(2596), 1, + STATE(2639), 1, aux_sym_temp_table_definition_repeat2, - STATE(2649), 2, + STATE(2677), 2, sym_comment, sym_include, - STATE(3136), 2, + STATE(3248), 2, sym_field_definition, sym_index_definition, - [123297] = 10, + [124479] = 10, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2105), 1, + ACTIONS(2109), 1, anon_sym_COMMA, - ACTIONS(3212), 1, + ACTIONS(2592), 1, anon_sym_COLON, - ACTIONS(3968), 1, + ACTIONS(4008), 1, aux_sym_on_error_phrase_token1, - STATE(2737), 1, + STATE(2899), 1, sym_on_quit_phrase, - STATE(3127), 1, + STATE(3243), 1, sym_on_stop_phrase, - STATE(3128), 1, + STATE(3244), 1, aux_sym_for_statement_repeat1, - STATE(2650), 2, + STATE(2678), 2, sym_comment, sym_include, - [123329] = 9, + [124511] = 9, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(3610), 1, + ACTIONS(3644), 1, aux_sym_query_definition_tuning_token1, - ACTIONS(4074), 1, + ACTIONS(4085), 1, sym__terminator, - STATE(2652), 1, + STATE(2681), 1, aux_sym_query_definition_repeat1, - STATE(2981), 1, + STATE(3121), 1, sym_query_definition_tuning, - ACTIONS(3612), 2, + ACTIONS(3646), 2, anon_sym_SCROLLING, aux_sym_query_definition_tuning_token2, - STATE(2651), 2, + STATE(2679), 2, + sym_comment, + sym_include, + [124541] = 10, + ACTIONS(59), 1, + anon_sym_SLASH_SLASH, + ACTIONS(61), 1, + anon_sym_SLASH_STAR, + ACTIONS(65), 1, + anon_sym_LBRACE, + ACTIONS(3338), 1, + aux_sym_repeat_tuning_token1, + ACTIONS(3720), 1, + anon_sym_COLON, + ACTIONS(3998), 1, + aux_sym_on_error_phrase_token1, + STATE(3023), 1, + sym_on_stop_phrase, + STATE(3024), 1, + aux_sym_repeat_statement_repeat1, + STATE(3672), 1, + sym_repeat_tuning, + STATE(2680), 2, sym_comment, sym_include, - [123359] = 8, + [124573] = 8, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(4076), 1, + ACTIONS(4087), 1, sym__terminator, - ACTIONS(4078), 1, + ACTIONS(4089), 1, aux_sym_query_definition_tuning_token1, - STATE(2981), 1, + STATE(3121), 1, sym_query_definition_tuning, - ACTIONS(4081), 2, + ACTIONS(4092), 2, anon_sym_SCROLLING, aux_sym_query_definition_tuning_token2, - STATE(2652), 3, + STATE(2681), 3, sym_comment, sym_include, aux_sym_query_definition_repeat1, - [123387] = 9, + [124601] = 9, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(3610), 1, + ACTIONS(3644), 1, aux_sym_query_definition_tuning_token1, - ACTIONS(4084), 1, + ACTIONS(3843), 1, sym__terminator, - STATE(2652), 1, + STATE(2638), 1, aux_sym_query_definition_repeat1, - STATE(2981), 1, + STATE(3121), 1, sym_query_definition_tuning, - ACTIONS(3612), 2, + ACTIONS(3646), 2, anon_sym_SCROLLING, aux_sym_query_definition_tuning_token2, - STATE(2653), 2, + STATE(2682), 2, sym_comment, sym_include, - [123417] = 9, + [124631] = 10, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(3039), 1, + ACTIONS(3338), 1, + aux_sym_repeat_tuning_token1, + ACTIONS(3763), 1, + anon_sym_COLON, + ACTIONS(3998), 1, + aux_sym_on_error_phrase_token1, + STATE(3037), 1, + aux_sym_repeat_statement_repeat1, + STATE(3059), 1, + sym_on_stop_phrase, + STATE(3672), 1, + sym_repeat_tuning, + STATE(2683), 2, + sym_comment, + sym_include, + [124663] = 10, + ACTIONS(59), 1, + anon_sym_SLASH_SLASH, + ACTIONS(61), 1, + anon_sym_SLASH_STAR, + ACTIONS(65), 1, + anon_sym_LBRACE, + ACTIONS(2109), 1, + anon_sym_COMMA, + ACTIONS(2598), 1, + anon_sym_COLON, + ACTIONS(4008), 1, + aux_sym_on_error_phrase_token1, + STATE(2980), 1, + sym_on_quit_phrase, + STATE(3424), 1, + aux_sym_for_statement_repeat1, + STATE(3428), 1, + sym_on_stop_phrase, + STATE(2684), 2, + sym_comment, + sym_include, + [124695] = 9, + ACTIONS(59), 1, + anon_sym_SLASH_SLASH, + ACTIONS(61), 1, + anon_sym_SLASH_STAR, + ACTIONS(65), 1, + anon_sym_LBRACE, + ACTIONS(3057), 1, aux_sym_field_definition_token1, - ACTIONS(3041), 1, + ACTIONS(3059), 1, aux_sym_index_definition_token1, - ACTIONS(3697), 1, + ACTIONS(3727), 1, sym__terminator, - STATE(2603), 1, + STATE(2785), 1, aux_sym_temp_table_definition_repeat2, - STATE(2654), 2, + STATE(2685), 2, sym_comment, sym_include, - STATE(3136), 2, + STATE(3248), 2, sym_field_definition, sym_index_definition, - [123447] = 10, + [124725] = 10, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2105), 1, + ACTIONS(2109), 1, anon_sym_COMMA, - ACTIONS(2447), 1, + ACTIONS(3242), 1, anon_sym_COLON, - ACTIONS(3968), 1, + ACTIONS(4008), 1, aux_sym_on_error_phrase_token1, - STATE(2858), 1, + STATE(2889), 1, sym_on_quit_phrase, - STATE(3215), 1, + STATE(3380), 1, sym_on_stop_phrase, - STATE(3216), 1, + STATE(3381), 1, aux_sym_for_statement_repeat1, - STATE(2655), 2, + STATE(2686), 2, sym_comment, sym_include, - [123479] = 10, + [124757] = 10, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2105), 1, + ACTIONS(2109), 1, anon_sym_COMMA, - ACTIONS(2570), 1, + ACTIONS(3244), 1, anon_sym_COLON, - ACTIONS(3968), 1, + ACTIONS(4008), 1, aux_sym_on_error_phrase_token1, - STATE(2755), 1, + STATE(2895), 1, sym_on_quit_phrase, - STATE(3403), 1, - sym_on_stop_phrase, - STATE(3410), 1, + STATE(3420), 1, aux_sym_for_statement_repeat1, - STATE(2656), 2, + STATE(3421), 1, + sym_on_stop_phrase, + STATE(2687), 2, + sym_comment, + sym_include, + [124789] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_LBRACE, + STATE(2688), 2, sym_comment, sym_include, - [123511] = 10, + ACTIONS(4095), 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, + [124811] = 10, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2105), 1, + ACTIONS(2109), 1, anon_sym_COMMA, - ACTIONS(2451), 1, + ACTIONS(2461), 1, anon_sym_COLON, - ACTIONS(3968), 1, + ACTIONS(4008), 1, aux_sym_on_error_phrase_token1, - STATE(2817), 1, + STATE(2920), 1, sym_on_quit_phrase, - STATE(3226), 1, - aux_sym_for_statement_repeat1, - STATE(3227), 1, + STATE(3505), 1, sym_on_stop_phrase, - STATE(2657), 2, + STATE(3506), 1, + aux_sym_for_statement_repeat1, + STATE(2689), 2, sym_comment, sym_include, - [123543] = 9, + [124843] = 9, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(3610), 1, - aux_sym_query_definition_tuning_token1, - ACTIONS(4086), 1, + ACTIONS(3057), 1, + aux_sym_field_definition_token1, + ACTIONS(3059), 1, + aux_sym_index_definition_token1, + ACTIONS(3210), 1, sym__terminator, - STATE(2652), 1, - aux_sym_query_definition_repeat1, - STATE(2981), 1, - sym_query_definition_tuning, - ACTIONS(3612), 2, - anon_sym_SCROLLING, - aux_sym_query_definition_tuning_token2, - STATE(2658), 2, + STATE(2785), 1, + aux_sym_temp_table_definition_repeat2, + STATE(2690), 2, sym_comment, sym_include, - [123573] = 9, + STATE(3248), 2, + sym_field_definition, + sym_index_definition, + [124873] = 9, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(3610), 1, - aux_sym_query_definition_tuning_token1, - ACTIONS(4088), 1, + ACTIONS(3057), 1, + aux_sym_field_definition_token1, + ACTIONS(3059), 1, + aux_sym_index_definition_token1, + ACTIONS(3210), 1, sym__terminator, - STATE(2646), 1, - aux_sym_query_definition_repeat1, - STATE(2981), 1, - sym_query_definition_tuning, - ACTIONS(3612), 2, - anon_sym_SCROLLING, - aux_sym_query_definition_tuning_token2, - STATE(2659), 2, + STATE(2673), 1, + aux_sym_temp_table_definition_repeat2, + STATE(2691), 2, sym_comment, sym_include, - [123603] = 9, + STATE(3248), 2, + sym_field_definition, + sym_index_definition, + [124903] = 10, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(3610), 1, - aux_sym_query_definition_tuning_token1, - ACTIONS(4090), 1, - sym__terminator, - STATE(2702), 1, - aux_sym_query_definition_repeat1, - STATE(2981), 1, - sym_query_definition_tuning, - ACTIONS(3612), 2, - anon_sym_SCROLLING, - aux_sym_query_definition_tuning_token2, - STATE(2660), 2, + ACTIONS(2109), 1, + anon_sym_COMMA, + ACTIONS(2596), 1, + anon_sym_COLON, + ACTIONS(4008), 1, + aux_sym_on_error_phrase_token1, + STATE(2967), 1, + sym_on_quit_phrase, + STATE(3246), 1, + sym_on_stop_phrase, + STATE(3247), 1, + aux_sym_for_statement_repeat1, + STATE(2692), 2, sym_comment, sym_include, - [123633] = 10, + [124935] = 10, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2105), 1, + ACTIONS(2109), 1, anon_sym_COMMA, - ACTIONS(3968), 1, - aux_sym_on_error_phrase_token1, - ACTIONS(4092), 1, + ACTIONS(2572), 1, anon_sym_COLON, - STATE(2731), 1, + ACTIONS(4008), 1, + aux_sym_on_error_phrase_token1, + STATE(2976), 1, sym_on_quit_phrase, - STATE(3269), 1, + STATE(3317), 1, sym_on_stop_phrase, - STATE(3270), 1, + STATE(3318), 1, aux_sym_for_statement_repeat1, - STATE(2661), 2, + STATE(2693), 2, + sym_comment, + sym_include, + [124967] = 10, + ACTIONS(59), 1, + anon_sym_SLASH_SLASH, + ACTIONS(61), 1, + anon_sym_SLASH_STAR, + ACTIONS(65), 1, + anon_sym_LBRACE, + ACTIONS(3338), 1, + aux_sym_repeat_tuning_token1, + ACTIONS(3974), 1, + anon_sym_COLON, + ACTIONS(3998), 1, + aux_sym_on_error_phrase_token1, + STATE(3044), 1, + aux_sym_repeat_statement_repeat1, + STATE(3167), 1, + sym_on_stop_phrase, + STATE(3672), 1, + sym_repeat_tuning, + STATE(2694), 2, + sym_comment, + sym_include, + [124999] = 9, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_LBRACE, + ACTIONS(4097), 1, + sym_identifier, + STATE(2133), 1, + aux_sym_sort_clause_repeat1, + STATE(2753), 1, + sym_sort_column, + STATE(4393), 1, + sym_object_access, + STATE(2134), 2, + sym_qualified_name, + sym_function_call, + STATE(2695), 2, + sym_comment, + sym_include, + [125029] = 10, + ACTIONS(59), 1, + anon_sym_SLASH_SLASH, + ACTIONS(61), 1, + anon_sym_SLASH_STAR, + ACTIONS(65), 1, + anon_sym_LBRACE, + ACTIONS(3338), 1, + aux_sym_repeat_tuning_token1, + ACTIONS(3658), 1, + anon_sym_COLON, + ACTIONS(3998), 1, + aux_sym_on_error_phrase_token1, + STATE(3053), 1, + aux_sym_repeat_statement_repeat1, + STATE(3058), 1, + sym_on_stop_phrase, + STATE(3672), 1, + sym_repeat_tuning, + STATE(2696), 2, sym_comment, sym_include, - [123665] = 10, + [125061] = 10, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2105), 1, + ACTIONS(2109), 1, anon_sym_COMMA, - ACTIONS(2600), 1, + ACTIONS(2417), 1, anon_sym_COLON, - ACTIONS(3968), 1, + ACTIONS(4008), 1, aux_sym_on_error_phrase_token1, - STATE(2777), 1, + STATE(2876), 1, sym_on_quit_phrase, - STATE(3124), 1, + STATE(3284), 1, sym_on_stop_phrase, - STATE(3125), 1, + STATE(3285), 1, aux_sym_for_statement_repeat1, - STATE(2662), 2, + STATE(2697), 2, sym_comment, sym_include, - [123697] = 9, + [125093] = 10, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(3039), 1, - aux_sym_field_definition_token1, - ACTIONS(3041), 1, - aux_sym_index_definition_token1, - ACTIONS(3697), 1, - sym__terminator, - STATE(2626), 1, - aux_sym_temp_table_definition_repeat2, - STATE(2663), 2, + ACTIONS(679), 1, + sym__namedot, + ACTIONS(4004), 1, + anon_sym_COMMA, + ACTIONS(4006), 1, + aux_sym_data_relation_token1, + STATE(336), 1, + aux_sym_qualified_name_repeat1, + STATE(3099), 1, + aux_sym_data_relation_repeat1, + STATE(4427), 1, + sym_data_relation, + STATE(2698), 2, sym_comment, sym_include, - STATE(3136), 2, - sym_field_definition, - sym_index_definition, - [123727] = 9, + [125125] = 9, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(3610), 1, - aux_sym_query_definition_tuning_token1, - ACTIONS(3838), 1, + ACTIONS(3057), 1, + aux_sym_field_definition_token1, + ACTIONS(3059), 1, + aux_sym_index_definition_token1, + ACTIONS(3712), 1, sym__terminator, - STATE(2550), 1, - aux_sym_query_definition_repeat1, - STATE(2981), 1, - sym_query_definition_tuning, - ACTIONS(3612), 2, - anon_sym_SCROLLING, - aux_sym_query_definition_tuning_token2, - STATE(2664), 2, + STATE(2785), 1, + aux_sym_temp_table_definition_repeat2, + STATE(2699), 2, sym_comment, sym_include, - [123757] = 10, + STATE(3248), 2, + sym_field_definition, + sym_index_definition, + [125155] = 10, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2105), 1, - anon_sym_COMMA, - ACTIONS(3968), 1, - aux_sym_on_error_phrase_token1, - ACTIONS(4094), 1, + ACTIONS(3338), 1, + aux_sym_repeat_tuning_token1, + ACTIONS(3860), 1, anon_sym_COLON, - STATE(2865), 1, - sym_on_quit_phrase, - STATE(3186), 1, + ACTIONS(3998), 1, + aux_sym_on_error_phrase_token1, + STATE(3009), 1, sym_on_stop_phrase, - STATE(3187), 1, - aux_sym_for_statement_repeat1, - STATE(2665), 2, + STATE(3015), 1, + aux_sym_repeat_statement_repeat1, + STATE(3672), 1, + sym_repeat_tuning, + STATE(2700), 2, sym_comment, sym_include, - [123789] = 10, + [125187] = 10, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2105), 1, - anon_sym_COMMA, - ACTIONS(2465), 1, + ACTIONS(3338), 1, + aux_sym_repeat_tuning_token1, + ACTIONS(3427), 1, anon_sym_COLON, - ACTIONS(3968), 1, + ACTIONS(3998), 1, aux_sym_on_error_phrase_token1, - STATE(2759), 1, - sym_on_quit_phrase, - STATE(3389), 1, + STATE(3165), 1, + aux_sym_repeat_statement_repeat1, + STATE(3172), 1, sym_on_stop_phrase, - STATE(3391), 1, - aux_sym_for_statement_repeat1, - STATE(2666), 2, + STATE(3672), 1, + sym_repeat_tuning, + STATE(2701), 2, sym_comment, sym_include, - [123821] = 9, + [125219] = 9, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(3610), 1, - aux_sym_query_definition_tuning_token1, - ACTIONS(4096), 1, + ACTIONS(3057), 1, + aux_sym_field_definition_token1, + ACTIONS(3059), 1, + aux_sym_index_definition_token1, + ACTIONS(3103), 1, sym__terminator, - STATE(2652), 1, - aux_sym_query_definition_repeat1, - STATE(2981), 1, - sym_query_definition_tuning, - ACTIONS(3612), 2, - anon_sym_SCROLLING, - aux_sym_query_definition_tuning_token2, - STATE(2667), 2, + STATE(2785), 1, + aux_sym_temp_table_definition_repeat2, + STATE(2702), 2, sym_comment, sym_include, - [123851] = 10, + STATE(3248), 2, + sym_field_definition, + sym_index_definition, + [125249] = 9, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2105), 1, - anon_sym_COMMA, - ACTIONS(3968), 1, - aux_sym_on_error_phrase_token1, - ACTIONS(4098), 1, - anon_sym_COLON, - STATE(2722), 1, - sym_on_quit_phrase, - STATE(3121), 1, - sym_on_stop_phrase, - STATE(3122), 1, - aux_sym_for_statement_repeat1, - STATE(2668), 2, + ACTIONS(3057), 1, + aux_sym_field_definition_token1, + ACTIONS(3059), 1, + aux_sym_index_definition_token1, + ACTIONS(3103), 1, + sym__terminator, + STATE(2642), 1, + aux_sym_temp_table_definition_repeat2, + STATE(2703), 2, sym_comment, sym_include, - [123883] = 5, + STATE(3248), 2, + sym_field_definition, + sym_index_definition, + [125279] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(2669), 2, + STATE(2704), 2, sym_comment, sym_include, - ACTIONS(4100), 6, + ACTIONS(4099), 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, - [123905] = 10, + anon_sym_COMMA, + anon_sym_COLON, + aux_sym_on_error_phrase_token1, + aux_sym_sort_clause_token1, + aux_sym_sort_clause_token2, + [125301] = 9, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2105), 1, - anon_sym_COMMA, - ACTIONS(3264), 1, - anon_sym_COLON, - ACTIONS(3968), 1, - aux_sym_on_error_phrase_token1, - STATE(2872), 1, - sym_on_quit_phrase, - STATE(3190), 1, - sym_on_stop_phrase, - STATE(3191), 1, - aux_sym_for_statement_repeat1, - STATE(2670), 2, + ACTIONS(3644), 1, + aux_sym_query_definition_tuning_token1, + ACTIONS(3856), 1, + sym__terminator, + STATE(2721), 1, + aux_sym_query_definition_repeat1, + STATE(3121), 1, + sym_query_definition_tuning, + ACTIONS(3646), 2, + anon_sym_SCROLLING, + aux_sym_query_definition_tuning_token2, + STATE(2705), 2, sym_comment, sym_include, - [123937] = 10, + [125331] = 10, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2105), 1, + ACTIONS(2109), 1, anon_sym_COMMA, - ACTIONS(3968), 1, - aux_sym_on_error_phrase_token1, - ACTIONS(4102), 1, + ACTIONS(2423), 1, anon_sym_COLON, - STATE(2813), 1, + ACTIONS(4008), 1, + aux_sym_on_error_phrase_token1, + STATE(2909), 1, sym_on_quit_phrase, - STATE(3343), 1, - sym_on_stop_phrase, - STATE(3344), 1, + STATE(3498), 1, aux_sym_for_statement_repeat1, - STATE(2671), 2, + STATE(3501), 1, + sym_on_stop_phrase, + STATE(2706), 2, sym_comment, sym_include, - [123969] = 10, + [125363] = 10, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2105), 1, + ACTIONS(2109), 1, anon_sym_COMMA, - ACTIONS(3968), 1, + ACTIONS(4008), 1, aux_sym_on_error_phrase_token1, - ACTIONS(4104), 1, + ACTIONS(4101), 1, anon_sym_COLON, - STATE(2877), 1, + STATE(2966), 1, sym_on_quit_phrase, - STATE(3192), 1, + STATE(3383), 1, sym_on_stop_phrase, - STATE(3193), 1, + STATE(3384), 1, aux_sym_for_statement_repeat1, - STATE(2672), 2, + STATE(2707), 2, sym_comment, sym_include, - [124001] = 10, - ACTIONS(59), 1, + [125395] = 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(2105), 1, + STATE(2708), 2, + sym_comment, + sym_include, + ACTIONS(4103), 6, + sym_identifier, anon_sym_COMMA, - ACTIONS(2602), 1, anon_sym_COLON, - ACTIONS(3968), 1, aux_sym_on_error_phrase_token1, - STATE(2881), 1, - sym_on_quit_phrase, - STATE(3195), 1, - sym_on_stop_phrase, - STATE(3196), 1, - aux_sym_for_statement_repeat1, - STATE(2673), 2, - sym_comment, - sym_include, - [124033] = 10, + aux_sym_sort_clause_token1, + aux_sym_sort_clause_token2, + [125417] = 9, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2105), 1, - anon_sym_COMMA, - ACTIONS(2568), 1, - anon_sym_COLON, - ACTIONS(3968), 1, - aux_sym_on_error_phrase_token1, - STATE(2764), 1, - sym_on_quit_phrase, - STATE(3288), 1, - sym_on_stop_phrase, - STATE(3289), 1, - aux_sym_for_statement_repeat1, - STATE(2674), 2, + ACTIONS(3057), 1, + aux_sym_field_definition_token1, + ACTIONS(3059), 1, + aux_sym_index_definition_token1, + ACTIONS(3712), 1, + sym__terminator, + STATE(2723), 1, + aux_sym_temp_table_definition_repeat2, + STATE(2709), 2, sym_comment, sym_include, - [124065] = 9, + STATE(3248), 2, + sym_field_definition, + sym_index_definition, + [125447] = 9, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(3610), 1, + ACTIONS(3644), 1, aux_sym_query_definition_tuning_token1, - ACTIONS(3800), 1, + ACTIONS(4105), 1, sym__terminator, - STATE(2658), 1, + STATE(2681), 1, aux_sym_query_definition_repeat1, - STATE(2981), 1, + STATE(3121), 1, sym_query_definition_tuning, - ACTIONS(3612), 2, + ACTIONS(3646), 2, anon_sym_SCROLLING, aux_sym_query_definition_tuning_token2, - STATE(2675), 2, + STATE(2710), 2, sym_comment, sym_include, - [124095] = 10, + [125477] = 10, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2105), 1, - anon_sym_COMMA, - ACTIONS(2598), 1, - anon_sym_COLON, - ACTIONS(3968), 1, + ACTIONS(3338), 1, + aux_sym_repeat_tuning_token1, + ACTIONS(3998), 1, aux_sym_on_error_phrase_token1, - STATE(2818), 1, - sym_on_quit_phrase, - STATE(3279), 1, + ACTIONS(4107), 1, + anon_sym_COLON, + STATE(2999), 1, + aux_sym_repeat_statement_repeat1, + STATE(3018), 1, sym_on_stop_phrase, - STATE(3280), 1, - aux_sym_for_statement_repeat1, - STATE(2676), 2, + STATE(3672), 1, + sym_repeat_tuning, + STATE(2711), 2, sym_comment, sym_include, - [124127] = 9, + [125509] = 9, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(3039), 1, + ACTIONS(3057), 1, aux_sym_field_definition_token1, - ACTIONS(3041), 1, + ACTIONS(3059), 1, aux_sym_index_definition_token1, - ACTIONS(4106), 1, + ACTIONS(3200), 1, sym__terminator, - STATE(2626), 1, + STATE(2785), 1, aux_sym_temp_table_definition_repeat2, - STATE(2677), 2, + STATE(2712), 2, sym_comment, sym_include, - STATE(3136), 2, + STATE(3248), 2, sym_field_definition, sym_index_definition, - [124157] = 10, + [125539] = 10, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2105), 1, + ACTIONS(2109), 1, anon_sym_COMMA, - ACTIONS(3968), 1, - aux_sym_on_error_phrase_token1, - ACTIONS(4108), 1, + ACTIONS(2584), 1, anon_sym_COLON, - STATE(2822), 1, + ACTIONS(4008), 1, + aux_sym_on_error_phrase_token1, + STATE(2891), 1, sym_on_quit_phrase, - STATE(3509), 1, - aux_sym_for_statement_repeat1, - STATE(3526), 1, + STATE(3493), 1, sym_on_stop_phrase, - STATE(2678), 2, - sym_comment, - sym_include, - [124189] = 8, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - ACTIONS(7), 1, - anon_sym_LBRACE, - ACTIONS(4015), 1, - aux_sym_field_definition_token1, - STATE(2591), 1, - aux_sym_widget_phrase_repeat1, - STATE(3039), 1, - sym_widget_field, - STATE(2679), 2, + STATE(3494), 1, + aux_sym_for_statement_repeat1, + STATE(2713), 2, sym_comment, sym_include, - ACTIONS(4110), 3, - sym_identifier, - aux_sym_input_expression_token2, - aux_sym_do_block_token1, - [124217] = 10, + [125571] = 10, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2105), 1, + ACTIONS(2109), 1, anon_sym_COMMA, - ACTIONS(3216), 1, + ACTIONS(2443), 1, anon_sym_COLON, - ACTIONS(3968), 1, + ACTIONS(4008), 1, aux_sym_on_error_phrase_token1, - STATE(2721), 1, + STATE(2807), 1, sym_on_quit_phrase, - STATE(3119), 1, - sym_on_stop_phrase, - STATE(3120), 1, + STATE(3423), 1, aux_sym_for_statement_repeat1, - STATE(2680), 2, + STATE(3426), 1, + sym_on_stop_phrase, + STATE(2714), 2, sym_comment, sym_include, - [124249] = 9, + [125603] = 10, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(3610), 1, - aux_sym_query_definition_tuning_token1, - ACTIONS(4112), 1, - sym__terminator, - STATE(2652), 1, - aux_sym_query_definition_repeat1, - STATE(2981), 1, - sym_query_definition_tuning, - ACTIONS(3612), 2, - anon_sym_SCROLLING, - aux_sym_query_definition_tuning_token2, - STATE(2681), 2, + ACTIONS(2109), 1, + anon_sym_COMMA, + ACTIONS(2457), 1, + anon_sym_COLON, + ACTIONS(4008), 1, + aux_sym_on_error_phrase_token1, + STATE(2960), 1, + sym_on_quit_phrase, + STATE(3249), 1, + sym_on_stop_phrase, + STATE(3251), 1, + aux_sym_for_statement_repeat1, + STATE(2715), 2, sym_comment, sym_include, - [124279] = 10, + [125635] = 10, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2105), 1, - anon_sym_COMMA, - ACTIONS(2604), 1, + ACTIONS(3338), 1, + aux_sym_repeat_tuning_token1, + ACTIONS(3368), 1, anon_sym_COLON, - ACTIONS(3968), 1, + ACTIONS(3998), 1, aux_sym_on_error_phrase_token1, - STATE(2809), 1, - sym_on_quit_phrase, - STATE(3351), 1, + STATE(3098), 1, + aux_sym_repeat_statement_repeat1, + STATE(3100), 1, sym_on_stop_phrase, - STATE(3415), 1, - aux_sym_for_statement_repeat1, - STATE(2682), 2, + STATE(3672), 1, + sym_repeat_tuning, + STATE(2716), 2, sym_comment, sym_include, - [124311] = 10, + [125667] = 10, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2105), 1, - anon_sym_COMMA, - ACTIONS(3248), 1, + ACTIONS(3338), 1, + aux_sym_repeat_tuning_token1, + ACTIONS(3433), 1, anon_sym_COLON, - ACTIONS(3968), 1, + ACTIONS(3998), 1, aux_sym_on_error_phrase_token1, - STATE(2883), 1, - sym_on_quit_phrase, - STATE(3197), 1, + STATE(3062), 1, + aux_sym_repeat_statement_repeat1, + STATE(3077), 1, sym_on_stop_phrase, - STATE(3198), 1, - aux_sym_for_statement_repeat1, - STATE(2683), 2, + STATE(3672), 1, + sym_repeat_tuning, + STATE(2717), 2, sym_comment, sym_include, - [124343] = 9, + [125699] = 10, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(3610), 1, - aux_sym_query_definition_tuning_token1, - ACTIONS(4114), 1, - sym__terminator, - STATE(2652), 1, - aux_sym_query_definition_repeat1, - STATE(2981), 1, - sym_query_definition_tuning, - ACTIONS(3612), 2, - anon_sym_SCROLLING, - aux_sym_query_definition_tuning_token2, - STATE(2684), 2, + ACTIONS(3338), 1, + aux_sym_repeat_tuning_token1, + ACTIONS(3708), 1, + anon_sym_COLON, + ACTIONS(3998), 1, + aux_sym_on_error_phrase_token1, + STATE(3013), 1, + aux_sym_repeat_statement_repeat1, + STATE(3014), 1, + sym_on_stop_phrase, + STATE(3672), 1, + sym_repeat_tuning, + STATE(2718), 2, sym_comment, sym_include, - [124373] = 9, + [125731] = 9, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(3039), 1, + ACTIONS(3057), 1, aux_sym_field_definition_token1, - ACTIONS(3041), 1, + ACTIONS(3059), 1, aux_sym_index_definition_token1, - ACTIONS(3104), 1, + ACTIONS(3113), 1, sym__terminator, - STATE(2626), 1, + STATE(2764), 1, aux_sym_temp_table_definition_repeat2, - STATE(2685), 2, + STATE(2719), 2, sym_comment, sym_include, - STATE(3136), 2, + STATE(3248), 2, sym_field_definition, sym_index_definition, - [124403] = 10, - ACTIONS(59), 1, - anon_sym_SLASH_SLASH, - ACTIONS(61), 1, - anon_sym_SLASH_STAR, - ACTIONS(65), 1, - anon_sym_LBRACE, - ACTIONS(2105), 1, - anon_sym_COMMA, - ACTIONS(2425), 1, - anon_sym_COLON, - ACTIONS(3968), 1, - aux_sym_on_error_phrase_token1, - STATE(2812), 1, - sym_on_quit_phrase, - STATE(3229), 1, - aux_sym_for_statement_repeat1, - STATE(3232), 1, - sym_on_stop_phrase, - STATE(2686), 2, - sym_comment, - sym_include, - [124435] = 9, + [125761] = 9, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(3039), 1, + ACTIONS(3057), 1, aux_sym_field_definition_token1, - ACTIONS(3041), 1, + ACTIONS(3059), 1, aux_sym_index_definition_token1, - ACTIONS(3186), 1, + ACTIONS(3113), 1, sym__terminator, - STATE(2663), 1, + STATE(2785), 1, aux_sym_temp_table_definition_repeat2, - STATE(2687), 2, + STATE(2720), 2, sym_comment, sym_include, - STATE(3136), 2, + STATE(3248), 2, sym_field_definition, sym_index_definition, - [124465] = 9, + [125791] = 9, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(3039), 1, - aux_sym_field_definition_token1, - ACTIONS(3041), 1, - aux_sym_index_definition_token1, - ACTIONS(3186), 1, + ACTIONS(3644), 1, + aux_sym_query_definition_tuning_token1, + ACTIONS(4109), 1, sym__terminator, - STATE(2626), 1, - aux_sym_temp_table_definition_repeat2, - STATE(2688), 2, + STATE(2681), 1, + aux_sym_query_definition_repeat1, + STATE(3121), 1, + sym_query_definition_tuning, + ACTIONS(3646), 2, + anon_sym_SCROLLING, + aux_sym_query_definition_tuning_token2, + STATE(2721), 2, sym_comment, sym_include, - STATE(3136), 2, - sym_field_definition, - sym_index_definition, - [124495] = 10, + [125821] = 9, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2105), 1, - anon_sym_COMMA, - ACTIONS(2463), 1, - anon_sym_COLON, - ACTIONS(3968), 1, - aux_sym_on_error_phrase_token1, - STATE(2762), 1, - sym_on_quit_phrase, - STATE(3284), 1, - sym_on_stop_phrase, - STATE(3285), 1, - aux_sym_for_statement_repeat1, - STATE(2689), 2, + ACTIONS(3644), 1, + aux_sym_query_definition_tuning_token1, + ACTIONS(4111), 1, + sym__terminator, + STATE(2681), 1, + aux_sym_query_definition_repeat1, + STATE(3121), 1, + sym_query_definition_tuning, + ACTIONS(3646), 2, + anon_sym_SCROLLING, + aux_sym_query_definition_tuning_token2, + STATE(2722), 2, sym_comment, sym_include, - [124527] = 10, + [125851] = 9, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2105), 1, - anon_sym_COMMA, - ACTIONS(2590), 1, - anon_sym_COLON, - ACTIONS(3968), 1, - aux_sym_on_error_phrase_token1, - STATE(2729), 1, - sym_on_quit_phrase, - STATE(3273), 1, - sym_on_stop_phrase, - STATE(3274), 1, - aux_sym_for_statement_repeat1, - STATE(2690), 2, + ACTIONS(3057), 1, + aux_sym_field_definition_token1, + ACTIONS(3059), 1, + aux_sym_index_definition_token1, + ACTIONS(4113), 1, + sym__terminator, + STATE(2785), 1, + aux_sym_temp_table_definition_repeat2, + STATE(2723), 2, sym_comment, sym_include, - [124559] = 9, + STATE(3248), 2, + sym_field_definition, + sym_index_definition, + [125881] = 9, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(3610), 1, + ACTIONS(3644), 1, aux_sym_query_definition_tuning_token1, - ACTIONS(4116), 1, + ACTIONS(3868), 1, sym__terminator, - STATE(2563), 1, + STATE(2731), 1, aux_sym_query_definition_repeat1, - STATE(2981), 1, + STATE(3121), 1, sym_query_definition_tuning, - ACTIONS(3612), 2, + ACTIONS(3646), 2, anon_sym_SCROLLING, aux_sym_query_definition_tuning_token2, - STATE(2691), 2, + STATE(2724), 2, sym_comment, sym_include, - [124589] = 10, + [125911] = 9, 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(4038), 1, - anon_sym_COMMA, - ACTIONS(4040), 1, - aux_sym_data_relation_token1, - STATE(329), 1, - aux_sym_qualified_name_repeat1, - STATE(3029), 1, - aux_sym_data_relation_repeat1, - STATE(4351), 1, - sym_data_relation, - STATE(2692), 2, + ACTIONS(3057), 1, + aux_sym_field_definition_token1, + ACTIONS(3059), 1, + aux_sym_index_definition_token1, + ACTIONS(3206), 1, + sym__terminator, + STATE(2785), 1, + aux_sym_temp_table_definition_repeat2, + STATE(2725), 2, sym_comment, sym_include, - [124621] = 10, + STATE(3248), 2, + sym_field_definition, + sym_index_definition, + [125941] = 10, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2105), 1, + ACTIONS(2109), 1, anon_sym_COMMA, - ACTIONS(2429), 1, + ACTIONS(2606), 1, anon_sym_COLON, - ACTIONS(3968), 1, + ACTIONS(4008), 1, aux_sym_on_error_phrase_token1, - STATE(2789), 1, + STATE(2944), 1, sym_on_quit_phrase, - STATE(3244), 1, + STATE(3253), 1, sym_on_stop_phrase, - STATE(3245), 1, + STATE(3254), 1, aux_sym_for_statement_repeat1, - STATE(2693), 2, + STATE(2726), 2, sym_comment, sym_include, - [124653] = 10, + [125973] = 10, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2105), 1, + ACTIONS(2109), 1, anon_sym_COMMA, - ACTIONS(3968), 1, - aux_sym_on_error_phrase_token1, - ACTIONS(4118), 1, + ACTIONS(2463), 1, anon_sym_COLON, - STATE(2719), 1, + ACTIONS(4008), 1, + aux_sym_on_error_phrase_token1, + STATE(2833), 1, sym_on_quit_phrase, - STATE(3115), 1, + STATE(3334), 1, sym_on_stop_phrase, - STATE(3116), 1, + STATE(3335), 1, aux_sym_for_statement_repeat1, - STATE(2694), 2, + STATE(2727), 2, sym_comment, sym_include, - [124685] = 9, + [126005] = 10, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(3039), 1, - aux_sym_field_definition_token1, - ACTIONS(3041), 1, - aux_sym_index_definition_token1, - ACTIONS(3076), 1, - sym__terminator, - STATE(2626), 1, - aux_sym_temp_table_definition_repeat2, - STATE(2695), 2, + ACTIONS(2109), 1, + anon_sym_COMMA, + ACTIONS(2451), 1, + anon_sym_COLON, + ACTIONS(4008), 1, + aux_sym_on_error_phrase_token1, + STATE(2877), 1, + sym_on_quit_phrase, + STATE(3488), 1, + sym_on_stop_phrase, + STATE(3489), 1, + aux_sym_for_statement_repeat1, + STATE(2728), 2, sym_comment, sym_include, - STATE(3136), 2, - sym_field_definition, - sym_index_definition, - [124715] = 9, + [126037] = 9, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(3039), 1, - aux_sym_field_definition_token1, - ACTIONS(3041), 1, - aux_sym_index_definition_token1, - ACTIONS(3190), 1, + ACTIONS(3644), 1, + aux_sym_query_definition_tuning_token1, + ACTIONS(4115), 1, sym__terminator, - STATE(2626), 1, - aux_sym_temp_table_definition_repeat2, - STATE(2696), 2, + STATE(2734), 1, + aux_sym_query_definition_repeat1, + STATE(3121), 1, + sym_query_definition_tuning, + ACTIONS(3646), 2, + anon_sym_SCROLLING, + aux_sym_query_definition_tuning_token2, + STATE(2729), 2, sym_comment, sym_include, - STATE(3136), 2, - sym_field_definition, - sym_index_definition, - [124745] = 10, + [126067] = 9, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2105), 1, - anon_sym_COMMA, - ACTIONS(2596), 1, - anon_sym_COLON, - ACTIONS(3968), 1, - aux_sym_on_error_phrase_token1, - STATE(2886), 1, - sym_on_quit_phrase, - STATE(3200), 1, - sym_on_stop_phrase, - STATE(3201), 1, - aux_sym_for_statement_repeat1, - STATE(2697), 2, - sym_comment, - sym_include, - [124777] = 9, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - ACTIONS(7), 1, - anon_sym_LBRACE, - ACTIONS(3735), 1, - sym_identifier, - ACTIONS(3741), 1, - aux_sym_function_parameter_token1, - STATE(3944), 1, - sym_function_parameter, - STATE(4030), 1, - sym_function_parameter_mode, - ACTIONS(3739), 2, - aux_sym_input_expression_token1, - aux_sym_argument_mode_token1, - STATE(2698), 2, + ACTIONS(3644), 1, + aux_sym_query_definition_tuning_token1, + ACTIONS(4117), 1, + sym__terminator, + STATE(2782), 1, + aux_sym_query_definition_repeat1, + STATE(3121), 1, + sym_query_definition_tuning, + ACTIONS(3646), 2, + anon_sym_SCROLLING, + aux_sym_query_definition_tuning_token2, + STATE(2730), 2, sym_comment, sym_include, - [124807] = 9, + [126097] = 9, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(3610), 1, + ACTIONS(3644), 1, aux_sym_query_definition_tuning_token1, - ACTIONS(4120), 1, + ACTIONS(4119), 1, sym__terminator, - STATE(2652), 1, + STATE(2681), 1, aux_sym_query_definition_repeat1, - STATE(2981), 1, + STATE(3121), 1, sym_query_definition_tuning, - ACTIONS(3612), 2, + ACTIONS(3646), 2, anon_sym_SCROLLING, aux_sym_query_definition_tuning_token2, - STATE(2699), 2, + STATE(2731), 2, sym_comment, sym_include, - [124837] = 9, + [126127] = 10, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(3610), 1, - aux_sym_query_definition_tuning_token1, - ACTIONS(4122), 1, - sym__terminator, - STATE(2652), 1, - aux_sym_query_definition_repeat1, - STATE(2981), 1, - sym_query_definition_tuning, - ACTIONS(3612), 2, - anon_sym_SCROLLING, - aux_sym_query_definition_tuning_token2, - STATE(2700), 2, + ACTIONS(3338), 1, + aux_sym_repeat_tuning_token1, + ACTIONS(3998), 1, + aux_sym_on_error_phrase_token1, + ACTIONS(4121), 1, + anon_sym_COLON, + STATE(3001), 1, + aux_sym_repeat_statement_repeat1, + STATE(3097), 1, + sym_on_stop_phrase, + STATE(3672), 1, + sym_repeat_tuning, + STATE(2732), 2, sym_comment, sym_include, - [124867] = 9, + [126159] = 10, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(3039), 1, - aux_sym_field_definition_token1, - ACTIONS(3041), 1, - aux_sym_index_definition_token1, - ACTIONS(3729), 1, - sym__terminator, - STATE(2677), 1, - aux_sym_temp_table_definition_repeat2, - STATE(2701), 2, + ACTIONS(3338), 1, + aux_sym_repeat_tuning_token1, + ACTIONS(3998), 1, + aux_sym_on_error_phrase_token1, + ACTIONS(4123), 1, + anon_sym_COLON, + STATE(2981), 1, + aux_sym_repeat_statement_repeat1, + STATE(3081), 1, + sym_on_stop_phrase, + STATE(3672), 1, + sym_repeat_tuning, + STATE(2733), 2, sym_comment, sym_include, - STATE(3136), 2, - sym_field_definition, - sym_index_definition, - [124897] = 9, + [126191] = 9, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(3610), 1, + ACTIONS(3644), 1, aux_sym_query_definition_tuning_token1, - ACTIONS(4124), 1, + ACTIONS(4125), 1, sym__terminator, - STATE(2652), 1, + STATE(2681), 1, aux_sym_query_definition_repeat1, - STATE(2981), 1, + STATE(3121), 1, sym_query_definition_tuning, - ACTIONS(3612), 2, + ACTIONS(3646), 2, anon_sym_SCROLLING, aux_sym_query_definition_tuning_token2, - STATE(2702), 2, + STATE(2734), 2, sym_comment, sym_include, - [124927] = 10, + [126221] = 10, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2105), 1, + ACTIONS(2109), 1, anon_sym_COMMA, - ACTIONS(2395), 1, + ACTIONS(2433), 1, anon_sym_COLON, - ACTIONS(3968), 1, + ACTIONS(4008), 1, aux_sym_on_error_phrase_token1, - STATE(2878), 1, + STATE(2928), 1, sym_on_quit_phrase, - STATE(3307), 1, + STATE(3257), 1, aux_sym_for_statement_repeat1, - STATE(3308), 1, + STATE(3258), 1, sym_on_stop_phrase, - STATE(2703), 2, + STATE(2735), 2, sym_comment, sym_include, - [124959] = 9, + [126253] = 10, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(3610), 1, - aux_sym_query_definition_tuning_token1, - ACTIONS(4126), 1, - sym__terminator, - STATE(2699), 1, - aux_sym_query_definition_repeat1, - STATE(2981), 1, - sym_query_definition_tuning, - ACTIONS(3612), 2, - anon_sym_SCROLLING, - aux_sym_query_definition_tuning_token2, - STATE(2704), 2, + ACTIONS(3338), 1, + aux_sym_repeat_tuning_token1, + ACTIONS(3878), 1, + anon_sym_COLON, + ACTIONS(3998), 1, + aux_sym_on_error_phrase_token1, + STATE(3020), 1, + aux_sym_repeat_statement_repeat1, + STATE(3026), 1, + sym_on_stop_phrase, + STATE(3672), 1, + sym_repeat_tuning, + STATE(2736), 2, sym_comment, sym_include, - [124989] = 10, + [126285] = 10, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2105), 1, + ACTIONS(2109), 1, anon_sym_COMMA, - ACTIONS(2445), 1, + ACTIONS(2604), 1, anon_sym_COLON, - ACTIONS(3968), 1, + ACTIONS(4008), 1, aux_sym_on_error_phrase_token1, - STATE(2765), 1, + STATE(2905), 1, sym_on_quit_phrase, - STATE(3286), 1, + STATE(3351), 1, aux_sym_for_statement_repeat1, - STATE(3287), 1, + STATE(3352), 1, sym_on_stop_phrase, - STATE(2705), 2, - sym_comment, - sym_include, - [125021] = 8, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - ACTIONS(7), 1, - anon_sym_LBRACE, - ACTIONS(4128), 1, - sym_identifier, - ACTIONS(4133), 1, - aux_sym_field_definition_token1, - STATE(3039), 1, - sym_widget_field, - ACTIONS(4131), 2, - aux_sym_input_expression_token2, - aux_sym_do_block_token1, - STATE(2706), 3, + STATE(2737), 2, sym_comment, sym_include, - aux_sym_widget_phrase_repeat1, - [125049] = 10, + [126317] = 10, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2105), 1, + ACTIONS(2109), 1, anon_sym_COMMA, - ACTIONS(2606), 1, + ACTIONS(2449), 1, anon_sym_COLON, - ACTIONS(3968), 1, + ACTIONS(4008), 1, aux_sym_on_error_phrase_token1, - STATE(2901), 1, + STATE(2894), 1, sym_on_quit_phrase, - STATE(3202), 1, - sym_on_stop_phrase, - STATE(3203), 1, + STATE(3324), 1, aux_sym_for_statement_repeat1, - STATE(2707), 2, + STATE(3327), 1, + sym_on_stop_phrase, + STATE(2738), 2, sym_comment, sym_include, - [125081] = 10, + [126349] = 10, 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(4038), 1, - anon_sym_COMMA, - ACTIONS(4040), 1, - aux_sym_data_relation_token1, - STATE(329), 1, - aux_sym_qualified_name_repeat1, - STATE(2928), 1, - aux_sym_data_relation_repeat1, - STATE(4244), 1, - sym_data_relation, - STATE(2708), 2, + ACTIONS(3866), 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(2888), 1, + aux_sym_case_body_repeat1, + STATE(3269), 1, + sym_case_when_branch, + STATE(4354), 1, + sym_case_otherwise_branch, + STATE(2739), 2, sym_comment, sym_include, - [125113] = 9, + [126381] = 10, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(3039), 1, - aux_sym_field_definition_token1, - ACTIONS(3041), 1, - aux_sym_index_definition_token1, - ACTIONS(3630), 1, - sym__terminator, - STATE(2577), 1, - aux_sym_temp_table_definition_repeat2, - STATE(2709), 2, + ACTIONS(2109), 1, + anon_sym_COMMA, + ACTIONS(2580), 1, + anon_sym_COLON, + ACTIONS(4008), 1, + aux_sym_on_error_phrase_token1, + STATE(2863), 1, + sym_on_quit_phrase, + STATE(3486), 1, + sym_on_stop_phrase, + STATE(3487), 1, + aux_sym_for_statement_repeat1, + STATE(2740), 2, sym_comment, sym_include, - STATE(3136), 2, - sym_field_definition, - sym_index_definition, - [125143] = 6, - ACTIONS(3), 1, + [126413] = 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(4136), 1, - anon_sym_COMMA, - STATE(2710), 3, + ACTIONS(3644), 1, + aux_sym_query_definition_tuning_token1, + ACTIONS(4131), 1, + sym__terminator, + STATE(2742), 1, + aux_sym_query_definition_repeat1, + STATE(3121), 1, + sym_query_definition_tuning, + ACTIONS(3646), 2, + anon_sym_SCROLLING, + aux_sym_query_definition_tuning_token2, + STATE(2741), 2, sym_comment, sym_include, - aux_sym_on_statement_repeat1, - ACTIONS(1426), 4, - sym_identifier, - aux_sym_input_expression_token2, - aux_sym_do_block_token1, - aux_sym_widget_field_token1, - [125167] = 9, + [126443] = 9, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(3610), 1, + ACTIONS(3644), 1, aux_sym_query_definition_tuning_token1, - ACTIONS(3743), 1, + ACTIONS(4133), 1, sym__terminator, STATE(2681), 1, aux_sym_query_definition_repeat1, - STATE(2981), 1, + STATE(3121), 1, sym_query_definition_tuning, - ACTIONS(3612), 2, + ACTIONS(3646), 2, anon_sym_SCROLLING, aux_sym_query_definition_tuning_token2, - STATE(2711), 2, + STATE(2742), 2, sym_comment, sym_include, - [125197] = 10, + [126473] = 10, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2105), 1, + ACTIONS(2109), 1, anon_sym_COMMA, - ACTIONS(2423), 1, + ACTIONS(2582), 1, anon_sym_COLON, - ACTIONS(3968), 1, + ACTIONS(4008), 1, aux_sym_on_error_phrase_token1, - STATE(2743), 1, + STATE(2971), 1, sym_on_quit_phrase, - STATE(3421), 1, - aux_sym_for_statement_repeat1, - STATE(3426), 1, + STATE(3484), 1, sym_on_stop_phrase, - STATE(2712), 2, + STATE(3485), 1, + aux_sym_for_statement_repeat1, + STATE(2743), 2, sym_comment, sym_include, - [125229] = 10, + [126505] = 10, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2105), 1, - anon_sym_COMMA, - ACTIONS(3244), 1, + ACTIONS(3338), 1, + aux_sym_repeat_tuning_token1, + ACTIONS(3908), 1, anon_sym_COLON, - ACTIONS(3968), 1, + ACTIONS(3998), 1, aux_sym_on_error_phrase_token1, - STATE(2826), 1, - sym_on_quit_phrase, - STATE(3333), 1, - aux_sym_for_statement_repeat1, - STATE(3335), 1, + STATE(3152), 1, + aux_sym_repeat_statement_repeat1, + STATE(3158), 1, sym_on_stop_phrase, - STATE(2713), 2, + STATE(3672), 1, + sym_repeat_tuning, + STATE(2744), 2, sym_comment, sym_include, - [125261] = 9, + [126537] = 10, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(3039), 1, - aux_sym_field_definition_token1, - ACTIONS(3041), 1, - aux_sym_index_definition_token1, - ACTIONS(3729), 1, - sym__terminator, - STATE(2626), 1, - aux_sym_temp_table_definition_repeat2, - STATE(2714), 2, + ACTIONS(3338), 1, + aux_sym_repeat_tuning_token1, + ACTIONS(3419), 1, + anon_sym_COLON, + ACTIONS(3998), 1, + aux_sym_on_error_phrase_token1, + STATE(2988), 1, + aux_sym_repeat_statement_repeat1, + STATE(3031), 1, + sym_on_stop_phrase, + STATE(3672), 1, + sym_repeat_tuning, + STATE(2745), 2, sym_comment, sym_include, - STATE(3136), 2, - sym_field_definition, - sym_index_definition, - [125291] = 9, + [126569] = 10, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(3610), 1, - aux_sym_query_definition_tuning_token1, - ACTIONS(3780), 1, - sym__terminator, - STATE(2605), 1, - aux_sym_query_definition_repeat1, - STATE(2981), 1, - sym_query_definition_tuning, - ACTIONS(3612), 2, - anon_sym_SCROLLING, - aux_sym_query_definition_tuning_token2, - STATE(2715), 2, - sym_comment, - sym_include, - [125321] = 6, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - ACTIONS(7), 1, - anon_sym_LBRACE, - ACTIONS(4141), 1, - aux_sym_widget_field_token1, - STATE(2716), 2, + ACTIONS(2109), 1, + anon_sym_COMMA, + ACTIONS(2467), 1, + anon_sym_COLON, + ACTIONS(4008), 1, + aux_sym_on_error_phrase_token1, + STATE(2916), 1, + sym_on_quit_phrase, + STATE(3261), 1, + sym_on_stop_phrase, + STATE(3262), 1, + aux_sym_for_statement_repeat1, + STATE(2746), 2, sym_comment, sym_include, - ACTIONS(4139), 4, - sym_identifier, - aux_sym_input_expression_token2, - aux_sym_do_block_token1, - aux_sym_field_definition_token1, - [125344] = 6, + [126601] = 10, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(4145), 1, - aux_sym_variable_definition_token2, - STATE(2717), 2, + ACTIONS(3338), 1, + aux_sym_repeat_tuning_token1, + ACTIONS(3998), 1, + aux_sym_on_error_phrase_token1, + ACTIONS(4135), 1, + anon_sym_COLON, + STATE(3084), 1, + aux_sym_repeat_statement_repeat1, + STATE(3139), 1, + sym_on_stop_phrase, + STATE(3672), 1, + sym_repeat_tuning, + STATE(2747), 2, sym_comment, sym_include, - ACTIONS(4143), 4, - aux_sym__block_terminator_token1, - aux_sym_variable_definition_token1, - aux_sym_method_definition_token1, - aux_sym_constructor_definition_token1, - [125367] = 6, + [126633] = 10, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(4149), 1, - aux_sym_variable_definition_token2, - STATE(2718), 2, + ACTIONS(2109), 1, + anon_sym_COMMA, + ACTIONS(4008), 1, + aux_sym_on_error_phrase_token1, + ACTIONS(4137), 1, + anon_sym_COLON, + STATE(2813), 1, + sym_on_quit_phrase, + STATE(3464), 1, + aux_sym_for_statement_repeat1, + STATE(3469), 1, + sym_on_stop_phrase, + STATE(2748), 2, sym_comment, sym_include, - ACTIONS(4147), 4, - aux_sym__block_terminator_token1, - aux_sym_variable_definition_token1, - aux_sym_method_definition_token1, - aux_sym_constructor_definition_token1, - [125390] = 9, + [126665] = 9, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2105), 1, - anon_sym_COMMA, - ACTIONS(4151), 1, - anon_sym_COLON, - ACTIONS(4153), 1, - aux_sym_on_error_phrase_token1, - STATE(3112), 1, - sym_on_stop_phrase, - STATE(3113), 1, - aux_sym_for_statement_repeat1, - STATE(2719), 2, + ACTIONS(3644), 1, + aux_sym_query_definition_tuning_token1, + ACTIONS(4139), 1, + sym__terminator, + STATE(2681), 1, + aux_sym_query_definition_repeat1, + STATE(3121), 1, + sym_query_definition_tuning, + ACTIONS(3646), 2, + anon_sym_SCROLLING, + aux_sym_query_definition_tuning_token2, + STATE(2749), 2, sym_comment, sym_include, - [125419] = 9, + [126695] = 10, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2105), 1, + ACTIONS(2109), 1, anon_sym_COMMA, - ACTIONS(4108), 1, + ACTIONS(2465), 1, anon_sym_COLON, - ACTIONS(4153), 1, + ACTIONS(4008), 1, aux_sym_on_error_phrase_token1, - STATE(3509), 1, + STATE(2811), 1, + sym_on_quit_phrase, + STATE(3360), 1, aux_sym_for_statement_repeat1, - STATE(3526), 1, + STATE(3361), 1, sym_on_stop_phrase, - STATE(2720), 2, + STATE(2750), 2, sym_comment, sym_include, - [125448] = 9, + [126727] = 10, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2105), 1, + ACTIONS(2109), 1, anon_sym_COMMA, - ACTIONS(4118), 1, + ACTIONS(3326), 1, anon_sym_COLON, - ACTIONS(4153), 1, + ACTIONS(4008), 1, aux_sym_on_error_phrase_token1, - STATE(3115), 1, + STATE(2824), 1, + sym_on_quit_phrase, + STATE(3480), 1, sym_on_stop_phrase, - STATE(3116), 1, + STATE(3481), 1, aux_sym_for_statement_repeat1, - STATE(2721), 2, + STATE(2751), 2, sym_comment, sym_include, - [125477] = 9, + [126759] = 9, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2105), 1, - anon_sym_COMMA, - ACTIONS(4153), 1, - aux_sym_on_error_phrase_token1, - ACTIONS(4155), 1, - anon_sym_COLON, - STATE(3117), 1, - sym_on_stop_phrase, - STATE(3118), 1, - aux_sym_for_statement_repeat1, - STATE(2722), 2, + ACTIONS(3644), 1, + aux_sym_query_definition_tuning_token1, + ACTIONS(4141), 1, + sym__terminator, + STATE(2749), 1, + aux_sym_query_definition_repeat1, + STATE(3121), 1, + sym_query_definition_tuning, + ACTIONS(3646), 2, + anon_sym_SCROLLING, + aux_sym_query_definition_tuning_token2, + STATE(2752), 2, sym_comment, sym_include, - [125506] = 9, - ACTIONS(59), 1, + [126789] = 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(2105), 1, + STATE(2753), 2, + sym_comment, + sym_include, + ACTIONS(4143), 6, + sym_identifier, anon_sym_COMMA, - ACTIONS(4092), 1, anon_sym_COLON, - ACTIONS(4153), 1, aux_sym_on_error_phrase_token1, - STATE(3269), 1, - sym_on_stop_phrase, - STATE(3270), 1, - aux_sym_for_statement_repeat1, - STATE(2723), 2, - sym_comment, - sym_include, - [125535] = 6, + aux_sym_sort_clause_token1, + aux_sym_sort_clause_token2, + [126811] = 9, 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, - STATE(2724), 2, + ACTIONS(3644), 1, + aux_sym_query_definition_tuning_token1, + ACTIONS(4145), 1, + sym__terminator, + STATE(2681), 1, + aux_sym_query_definition_repeat1, + STATE(3121), 1, + sym_query_definition_tuning, + ACTIONS(3646), 2, + anon_sym_SCROLLING, + aux_sym_query_definition_tuning_token2, + STATE(2754), 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, - [125558] = 6, + [126841] = 10, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(4163), 1, - aux_sym_variable_definition_token2, - STATE(2725), 2, + ACTIONS(2109), 1, + anon_sym_COMMA, + ACTIONS(2425), 1, + anon_sym_COLON, + ACTIONS(4008), 1, + aux_sym_on_error_phrase_token1, + STATE(2795), 1, + sym_on_quit_phrase, + STATE(3329), 1, + aux_sym_for_statement_repeat1, + STATE(3330), 1, + sym_on_stop_phrase, + STATE(2755), 2, sym_comment, sym_include, - ACTIONS(4161), 4, - aux_sym__block_terminator_token1, - aux_sym_variable_definition_token1, - aux_sym_method_definition_token1, - aux_sym_constructor_definition_token1, - [125581] = 9, + [126873] = 10, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2105), 1, + ACTIONS(2109), 1, anon_sym_COMMA, - ACTIONS(2423), 1, + ACTIONS(2594), 1, anon_sym_COLON, - ACTIONS(4153), 1, + ACTIONS(4008), 1, aux_sym_on_error_phrase_token1, - STATE(3421), 1, - aux_sym_for_statement_repeat1, - STATE(3426), 1, + STATE(2821), 1, + sym_on_quit_phrase, + STATE(3477), 1, sym_on_stop_phrase, - STATE(2726), 2, + STATE(3478), 1, + aux_sym_for_statement_repeat1, + STATE(2756), 2, + sym_comment, + sym_include, + [126905] = 9, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_LBRACE, + ACTIONS(4097), 1, + sym_identifier, + STATE(2069), 1, + aux_sym_sort_clause_repeat1, + STATE(2753), 1, + sym_sort_column, + STATE(4393), 1, + sym_object_access, + STATE(2134), 2, + sym_qualified_name, + sym_function_call, + STATE(2757), 2, sym_comment, sym_include, - [125610] = 9, + [126935] = 9, 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(4038), 1, - anon_sym_COMMA, - ACTIONS(4165), 1, - aux_sym_data_relation_token2, - STATE(329), 1, - aux_sym_qualified_name_repeat1, - STATE(3512), 1, - aux_sym_data_relation_repeat1, - STATE(2727), 2, + ACTIONS(3644), 1, + aux_sym_query_definition_tuning_token1, + ACTIONS(4147), 1, + sym__terminator, + STATE(2681), 1, + aux_sym_query_definition_repeat1, + STATE(3121), 1, + sym_query_definition_tuning, + ACTIONS(3646), 2, + anon_sym_SCROLLING, + aux_sym_query_definition_tuning_token2, + STATE(2758), 2, sym_comment, sym_include, - [125639] = 9, + [126965] = 9, 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(4038), 1, - anon_sym_COMMA, - ACTIONS(4167), 1, + ACTIONS(3644), 1, + aux_sym_query_definition_tuning_token1, + ACTIONS(4149), 1, sym__terminator, - STATE(329), 1, - aux_sym_qualified_name_repeat1, - STATE(3515), 1, - aux_sym_data_relation_repeat1, - STATE(2728), 2, + STATE(2754), 1, + aux_sym_query_definition_repeat1, + STATE(3121), 1, + sym_query_definition_tuning, + ACTIONS(3646), 2, + anon_sym_SCROLLING, + aux_sym_query_definition_tuning_token2, + STATE(2759), 2, sym_comment, sym_include, - [125668] = 9, + [126995] = 10, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2105), 1, + ACTIONS(2109), 1, anon_sym_COMMA, - ACTIONS(3318), 1, + ACTIONS(2578), 1, anon_sym_COLON, - ACTIONS(4153), 1, + ACTIONS(4008), 1, aux_sym_on_error_phrase_token1, - STATE(3267), 1, + STATE(2936), 1, + sym_on_quit_phrase, + STATE(3388), 1, sym_on_stop_phrase, - STATE(3268), 1, + STATE(3389), 1, aux_sym_for_statement_repeat1, - STATE(2729), 2, + STATE(2760), 2, sym_comment, sym_include, - [125697] = 7, + [127027] = 10, 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_procedure_parameter_definition_token1, - ACTIONS(4173), 1, - aux_sym_on_error_phrase_token8, - STATE(2730), 2, + ACTIONS(3338), 1, + aux_sym_repeat_tuning_token1, + ACTIONS(3706), 1, + anon_sym_COLON, + ACTIONS(3998), 1, + aux_sym_on_error_phrase_token1, + STATE(3064), 1, + sym_on_stop_phrase, + STATE(3068), 1, + aux_sym_repeat_statement_repeat1, + STATE(3672), 1, + sym_repeat_tuning, + STATE(2761), 2, sym_comment, sym_include, - ACTIONS(4171), 3, - aux_sym_on_error_phrase_token4, - aux_sym_on_error_phrase_token5, - aux_sym_on_error_phrase_token6, - [125722] = 9, + [127059] = 10, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2105), 1, + ACTIONS(2109), 1, anon_sym_COMMA, - ACTIONS(4153), 1, - aux_sym_on_error_phrase_token1, - ACTIONS(4175), 1, + ACTIONS(3254), 1, anon_sym_COLON, - STATE(3264), 1, + ACTIONS(4008), 1, + aux_sym_on_error_phrase_token1, + STATE(2868), 1, + sym_on_quit_phrase, + STATE(3390), 1, sym_on_stop_phrase, - STATE(3265), 1, + STATE(3391), 1, aux_sym_for_statement_repeat1, - STATE(2731), 2, + STATE(2762), 2, sym_comment, sym_include, - [125751] = 9, + [127091] = 9, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2105), 1, - anon_sym_COMMA, - ACTIONS(4001), 1, - anon_sym_COLON, - ACTIONS(4153), 1, - aux_sym_on_error_phrase_token1, - STATE(3262), 1, - sym_on_stop_phrase, - STATE(3263), 1, - aux_sym_for_statement_repeat1, - STATE(2732), 2, + ACTIONS(3644), 1, + aux_sym_query_definition_tuning_token1, + ACTIONS(3912), 1, + sym__terminator, + STATE(2758), 1, + aux_sym_query_definition_repeat1, + STATE(3121), 1, + sym_query_definition_tuning, + ACTIONS(3646), 2, + anon_sym_SCROLLING, + aux_sym_query_definition_tuning_token2, + STATE(2763), 2, sym_comment, sym_include, - [125780] = 9, + [127121] = 9, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2105), 1, - anon_sym_COMMA, - ACTIONS(2588), 1, - anon_sym_COLON, - ACTIONS(4153), 1, - aux_sym_on_error_phrase_token1, - STATE(3305), 1, - aux_sym_for_statement_repeat1, - STATE(3306), 1, - sym_on_stop_phrase, - STATE(2733), 2, + ACTIONS(3057), 1, + aux_sym_field_definition_token1, + ACTIONS(3059), 1, + aux_sym_index_definition_token1, + ACTIONS(3634), 1, + sym__terminator, + STATE(2785), 1, + aux_sym_temp_table_definition_repeat2, + STATE(2764), 2, sym_comment, sym_include, - [125809] = 9, + STATE(3248), 2, + sym_field_definition, + sym_index_definition, + [127151] = 9, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2105), 1, - anon_sym_COMMA, - ACTIONS(4153), 1, - aux_sym_on_error_phrase_token1, - ACTIONS(4177), 1, - anon_sym_COLON, - STATE(3258), 1, - sym_on_stop_phrase, - STATE(3259), 1, - aux_sym_for_statement_repeat1, - STATE(2734), 2, + ACTIONS(3057), 1, + aux_sym_field_definition_token1, + ACTIONS(3059), 1, + aux_sym_index_definition_token1, + ACTIONS(4151), 1, + sym__terminator, + STATE(2785), 1, + aux_sym_temp_table_definition_repeat2, + STATE(2765), 2, sym_comment, sym_include, - [125838] = 7, + STATE(3248), 2, + sym_field_definition, + sym_index_definition, + [127181] = 9, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(3003), 1, - aux_sym_on_error_phrase_token1, - ACTIONS(3340), 1, - anon_sym_COLON, - STATE(2735), 2, + ACTIONS(3057), 1, + aux_sym_field_definition_token1, + ACTIONS(3059), 1, + aux_sym_index_definition_token1, + ACTIONS(3634), 1, + sym__terminator, + STATE(2780), 1, + aux_sym_temp_table_definition_repeat2, + STATE(2766), 2, sym_comment, sym_include, - STATE(4401), 3, - sym_on_error_phrase, - sym_on_stop_phrase, - sym_on_quit_phrase, - [125863] = 8, + STATE(3248), 2, + sym_field_definition, + sym_index_definition, + [127211] = 9, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(3968), 1, - aux_sym_on_error_phrase_token1, - STATE(2951), 1, - sym_on_quit_phrase, - STATE(3679), 1, - sym_on_stop_phrase, - ACTIONS(3369), 2, - anon_sym_COMMA, - anon_sym_COLON, - STATE(2736), 2, + ACTIONS(3644), 1, + aux_sym_query_definition_tuning_token1, + ACTIONS(4153), 1, + sym__terminator, + STATE(2681), 1, + aux_sym_query_definition_repeat1, + STATE(3121), 1, + sym_query_definition_tuning, + ACTIONS(3646), 2, + anon_sym_SCROLLING, + aux_sym_query_definition_tuning_token2, + STATE(2767), 2, sym_comment, sym_include, - [125890] = 9, + [127241] = 9, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2105), 1, - anon_sym_COMMA, - ACTIONS(4098), 1, - anon_sym_COLON, - ACTIONS(4153), 1, - aux_sym_on_error_phrase_token1, + ACTIONS(3644), 1, + aux_sym_query_definition_tuning_token1, + ACTIONS(4155), 1, + sym__terminator, + STATE(2681), 1, + aux_sym_query_definition_repeat1, STATE(3121), 1, - sym_on_stop_phrase, - STATE(3122), 1, - aux_sym_for_statement_repeat1, - STATE(2737), 2, + sym_query_definition_tuning, + ACTIONS(3646), 2, + anon_sym_SCROLLING, + aux_sym_query_definition_tuning_token2, + STATE(2768), 2, sym_comment, sym_include, - [125919] = 9, + [127271] = 10, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2105), 1, + ACTIONS(2109), 1, anon_sym_COMMA, - ACTIONS(2570), 1, - anon_sym_COLON, - ACTIONS(4153), 1, + ACTIONS(4008), 1, aux_sym_on_error_phrase_token1, - STATE(3403), 1, + ACTIONS(4157), 1, + anon_sym_COLON, + STATE(2855), 1, + sym_on_quit_phrase, + STATE(3473), 1, sym_on_stop_phrase, - STATE(3410), 1, + STATE(3474), 1, aux_sym_for_statement_repeat1, - STATE(2738), 2, + STATE(2769), 2, sym_comment, sym_include, - [125948] = 9, + [127303] = 10, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2105), 1, + ACTIONS(2109), 1, anon_sym_COMMA, - ACTIONS(2600), 1, + ACTIONS(3330), 1, anon_sym_COLON, - ACTIONS(4153), 1, + ACTIONS(4008), 1, aux_sym_on_error_phrase_token1, - STATE(3124), 1, + STATE(2809), 1, + sym_on_quit_phrase, + STATE(3470), 1, sym_on_stop_phrase, - STATE(3125), 1, + STATE(3471), 1, aux_sym_for_statement_repeat1, - STATE(2739), 2, + STATE(2770), 2, + sym_comment, + sym_include, + [127335] = 8, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_LBRACE, + ACTIONS(4035), 1, + aux_sym_field_definition_token1, + STATE(2615), 1, + aux_sym_widget_phrase_repeat1, + STATE(3117), 1, + sym_widget_field, + STATE(2771), 2, sym_comment, sym_include, - [125977] = 9, + ACTIONS(4159), 3, + sym_identifier, + aux_sym_input_expression_token2, + aux_sym_do_block_token1, + [127363] = 10, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2105), 1, + ACTIONS(2109), 1, anon_sym_COMMA, - ACTIONS(3320), 1, + ACTIONS(2602), 1, anon_sym_COLON, - ACTIONS(4153), 1, + ACTIONS(4008), 1, aux_sym_on_error_phrase_token1, - STATE(3275), 1, + STATE(2922), 1, + sym_on_quit_phrase, + STATE(3325), 1, sym_on_stop_phrase, - STATE(3277), 1, + STATE(3326), 1, aux_sym_for_statement_repeat1, - STATE(2740), 2, + STATE(2772), 2, sym_comment, sym_include, - [126006] = 8, + [127395] = 9, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(3968), 1, - aux_sym_on_error_phrase_token1, - STATE(2970), 1, - sym_on_quit_phrase, - STATE(3969), 1, - sym_on_stop_phrase, - ACTIONS(2449), 2, - anon_sym_COMMA, - anon_sym_COLON, - STATE(2741), 2, + ACTIONS(3057), 1, + aux_sym_field_definition_token1, + ACTIONS(3059), 1, + aux_sym_index_definition_token1, + ACTIONS(3127), 1, + sym__terminator, + STATE(2785), 1, + aux_sym_temp_table_definition_repeat2, + STATE(2773), 2, sym_comment, sym_include, - [126033] = 9, + STATE(3248), 2, + sym_field_definition, + sym_index_definition, + [127425] = 9, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2105), 1, - anon_sym_COMMA, - ACTIONS(4153), 1, - aux_sym_on_error_phrase_token1, - ACTIONS(4179), 1, - anon_sym_COLON, - STATE(3502), 1, - aux_sym_for_statement_repeat1, - STATE(3505), 1, - sym_on_stop_phrase, - STATE(2742), 2, + ACTIONS(3644), 1, + aux_sym_query_definition_tuning_token1, + ACTIONS(4161), 1, + sym__terminator, + STATE(2681), 1, + aux_sym_query_definition_repeat1, + STATE(3121), 1, + sym_query_definition_tuning, + ACTIONS(3646), 2, + anon_sym_SCROLLING, + aux_sym_query_definition_tuning_token2, + STATE(2774), 2, sym_comment, sym_include, - [126062] = 9, + [127455] = 10, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2105), 1, + ACTIONS(2109), 1, anon_sym_COMMA, - ACTIONS(2465), 1, - anon_sym_COLON, - ACTIONS(4153), 1, + ACTIONS(4008), 1, aux_sym_on_error_phrase_token1, - STATE(3389), 1, + ACTIONS(4163), 1, + anon_sym_COLON, + STATE(2806), 1, + sym_on_quit_phrase, + STATE(3465), 1, sym_on_stop_phrase, - STATE(3391), 1, + STATE(3466), 1, aux_sym_for_statement_repeat1, - STATE(2743), 2, + STATE(2775), 2, sym_comment, sym_include, - [126091] = 8, + [127487] = 9, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(3968), 1, - aux_sym_on_error_phrase_token1, - STATE(3011), 1, - sym_on_quit_phrase, - STATE(3737), 1, - sym_on_stop_phrase, - ACTIONS(2612), 2, - anon_sym_COMMA, - anon_sym_COLON, - STATE(2744), 2, + ACTIONS(3057), 1, + aux_sym_field_definition_token1, + ACTIONS(3059), 1, + aux_sym_index_definition_token1, + ACTIONS(3704), 1, + sym__terminator, + STATE(2765), 1, + aux_sym_temp_table_definition_repeat2, + STATE(2776), 2, + sym_comment, + sym_include, + STATE(3248), 2, + sym_field_definition, + sym_index_definition, + [127517] = 8, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_LBRACE, + ACTIONS(4165), 1, + sym_identifier, + ACTIONS(4170), 1, + aux_sym_field_definition_token1, + STATE(3117), 1, + sym_widget_field, + ACTIONS(4168), 2, + aux_sym_input_expression_token2, + aux_sym_do_block_token1, + STATE(2777), 3, sym_comment, sym_include, - [126118] = 9, + aux_sym_widget_phrase_repeat1, + [127545] = 10, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, @@ -147463,501 +149169,460 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(65), 1, anon_sym_LBRACE, ACTIONS(2109), 1, - aux_sym_on_error_phrase_token1, - ACTIONS(3788), 1, + anon_sym_COMMA, + ACTIONS(2439), 1, anon_sym_COLON, - STATE(3025), 1, - sym_on_error_phrase, - STATE(3247), 1, + ACTIONS(4008), 1, + aux_sym_on_error_phrase_token1, + STATE(2869), 1, sym_on_quit_phrase, - STATE(4109), 1, + STATE(3273), 1, + aux_sym_for_statement_repeat1, + STATE(3274), 1, sym_on_stop_phrase, - STATE(2745), 2, + STATE(2778), 2, sym_comment, sym_include, - [126147] = 7, - ACTIONS(3), 1, + [127577] = 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(4181), 1, - sym_identifier, - STATE(4321), 1, - sym_access_tuning, - STATE(2746), 2, + ACTIONS(3644), 1, + aux_sym_query_definition_tuning_token1, + ACTIONS(3918), 1, + sym__terminator, + STATE(2768), 1, + aux_sym_query_definition_repeat1, + STATE(3121), 1, + sym_query_definition_tuning, + ACTIONS(3646), 2, + anon_sym_SCROLLING, + aux_sym_query_definition_tuning_token2, + STATE(2779), 2, sym_comment, sym_include, - ACTIONS(4183), 3, - aux_sym_access_tuning_token1, - aux_sym_access_tuning_token2, - aux_sym_access_tuning_token3, - [126172] = 6, + [127607] = 9, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(4187), 1, - aux_sym_variable_definition_token2, - STATE(2747), 2, + ACTIONS(3057), 1, + aux_sym_field_definition_token1, + ACTIONS(3059), 1, + aux_sym_index_definition_token1, + ACTIONS(3704), 1, + sym__terminator, + STATE(2785), 1, + aux_sym_temp_table_definition_repeat2, + STATE(2780), 2, sym_comment, sym_include, - ACTIONS(4185), 4, - aux_sym__block_terminator_token1, - aux_sym_variable_definition_token1, - aux_sym_method_definition_token1, - aux_sym_constructor_definition_token1, - [126195] = 6, + STATE(3248), 2, + sym_field_definition, + sym_index_definition, + [127637] = 9, 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_variable_definition_token2, - STATE(2748), 2, + ACTIONS(3057), 1, + aux_sym_field_definition_token1, + ACTIONS(3059), 1, + aux_sym_index_definition_token1, + ACTIONS(3131), 1, + sym__terminator, + STATE(2632), 1, + aux_sym_temp_table_definition_repeat2, + STATE(2781), 2, sym_comment, sym_include, - ACTIONS(4189), 4, - aux_sym__block_terminator_token1, - aux_sym_variable_definition_token1, - aux_sym_method_definition_token1, - aux_sym_constructor_definition_token1, - [126218] = 7, + STATE(3248), 2, + sym_field_definition, + sym_index_definition, + [127667] = 9, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(4193), 1, - aux_sym_procedure_parameter_definition_token1, - ACTIONS(4197), 1, - aux_sym_on_error_phrase_token8, - STATE(2749), 2, + ACTIONS(3644), 1, + aux_sym_query_definition_tuning_token1, + ACTIONS(4173), 1, + sym__terminator, + STATE(2681), 1, + aux_sym_query_definition_repeat1, + STATE(3121), 1, + sym_query_definition_tuning, + ACTIONS(3646), 2, + anon_sym_SCROLLING, + aux_sym_query_definition_tuning_token2, + STATE(2782), 2, sym_comment, sym_include, - ACTIONS(4195), 3, - aux_sym_on_error_phrase_token4, - aux_sym_on_error_phrase_token5, - aux_sym_on_error_phrase_token6, - [126243] = 7, + [127697] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(4199), 1, - aux_sym_procedure_parameter_definition_token1, - ACTIONS(4203), 1, - aux_sym_on_error_phrase_token8, - STATE(2750), 2, + STATE(2783), 2, sym_comment, sym_include, - ACTIONS(4201), 3, - aux_sym_on_error_phrase_token4, - aux_sym_on_error_phrase_token5, - aux_sym_on_error_phrase_token6, - [126268] = 9, + ACTIONS(4175), 6, + anon_sym_COLON, + aux_sym_while_phrase_token1, + aux_sym_repeat_tuning_token1, + aux_sym_on_error_phrase_token1, + aux_sym_stop_after_phrase_token1, + aux_sym_do_tuning_token1, + [127719] = 9, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2105), 1, - anon_sym_COMMA, - ACTIONS(3212), 1, - anon_sym_COLON, - ACTIONS(4153), 1, - aux_sym_on_error_phrase_token1, - STATE(3127), 1, - sym_on_stop_phrase, - STATE(3128), 1, - aux_sym_for_statement_repeat1, - STATE(2751), 2, + ACTIONS(3057), 1, + aux_sym_field_definition_token1, + ACTIONS(3059), 1, + aux_sym_index_definition_token1, + ACTIONS(3131), 1, + sym__terminator, + STATE(2785), 1, + aux_sym_temp_table_definition_repeat2, + STATE(2784), 2, sym_comment, sym_include, - [126297] = 6, + STATE(3248), 2, + sym_field_definition, + sym_index_definition, + [127749] = 8, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(4207), 1, - aux_sym_variable_definition_token2, - STATE(2752), 2, + ACTIONS(4177), 1, + sym__terminator, + ACTIONS(4179), 1, + aux_sym_field_definition_token1, + ACTIONS(4182), 1, + aux_sym_index_definition_token1, + STATE(3248), 2, + sym_field_definition, + sym_index_definition, + STATE(2785), 3, sym_comment, sym_include, - ACTIONS(4205), 4, - aux_sym__block_terminator_token1, - aux_sym_variable_definition_token1, - aux_sym_method_definition_token1, - aux_sym_constructor_definition_token1, - [126320] = 6, + aux_sym_temp_table_definition_repeat2, + [127777] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(4211), 1, + ACTIONS(4187), 1, aux_sym_variable_definition_token2, - STATE(2753), 2, + STATE(2786), 2, sym_comment, sym_include, - ACTIONS(4209), 4, + ACTIONS(4185), 4, aux_sym__block_terminator_token1, aux_sym_variable_definition_token1, aux_sym_method_definition_token1, aux_sym_constructor_definition_token1, - [126343] = 7, + [127800] = 7, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(3003), 1, + ACTIONS(3031), 1, aux_sym_on_error_phrase_token1, - ACTIONS(4213), 1, + ACTIONS(3180), 1, anon_sym_COLON, - STATE(2754), 2, + STATE(2787), 2, sym_comment, sym_include, - STATE(4239), 3, + STATE(4577), 3, sym_on_error_phrase, sym_on_stop_phrase, sym_on_quit_phrase, - [126368] = 9, - ACTIONS(59), 1, - anon_sym_SLASH_SLASH, - ACTIONS(61), 1, - anon_sym_SLASH_STAR, - ACTIONS(65), 1, - anon_sym_LBRACE, - ACTIONS(2105), 1, - anon_sym_COMMA, - ACTIONS(2586), 1, - anon_sym_COLON, - ACTIONS(4153), 1, - aux_sym_on_error_phrase_token1, - STATE(3385), 1, - sym_on_stop_phrase, - STATE(3387), 1, - aux_sym_for_statement_repeat1, - STATE(2755), 2, - sym_comment, - sym_include, - [126397] = 6, + [127825] = 7, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(4217), 1, - aux_sym_variable_definition_token2, - STATE(2756), 2, + ACTIONS(4189), 1, + aux_sym_procedure_parameter_definition_token1, + ACTIONS(4193), 1, + aux_sym_on_error_phrase_token8, + STATE(2788), 2, sym_comment, sym_include, - ACTIONS(4215), 4, - aux_sym__block_terminator_token1, - aux_sym_variable_definition_token1, - aux_sym_method_definition_token1, - aux_sym_constructor_definition_token1, - [126420] = 6, + ACTIONS(4191), 3, + aux_sym_on_error_phrase_token4, + aux_sym_on_error_phrase_token5, + aux_sym_on_error_phrase_token6, + [127850] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(4221), 1, + ACTIONS(4197), 1, aux_sym_variable_definition_token2, - STATE(2757), 2, + STATE(2789), 2, sym_comment, sym_include, - ACTIONS(4219), 4, + ACTIONS(4195), 4, aux_sym__block_terminator_token1, aux_sym_variable_definition_token1, aux_sym_method_definition_token1, aux_sym_constructor_definition_token1, - [126443] = 7, + [127873] = 7, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(3003), 1, + ACTIONS(3031), 1, aux_sym_on_error_phrase_token1, - ACTIONS(3052), 1, + ACTIONS(4199), 1, anon_sym_COLON, - STATE(2758), 2, + STATE(2790), 2, sym_comment, sym_include, - STATE(4116), 3, + STATE(4203), 3, sym_on_error_phrase, sym_on_stop_phrase, sym_on_quit_phrase, - [126468] = 9, + [127898] = 9, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2105), 1, + ACTIONS(679), 1, + sym__namedot, + ACTIONS(4004), 1, anon_sym_COMMA, - ACTIONS(2578), 1, - anon_sym_COLON, - ACTIONS(4153), 1, - aux_sym_on_error_phrase_token1, - STATE(3372), 1, - sym_on_stop_phrase, - STATE(3377), 1, - aux_sym_for_statement_repeat1, - STATE(2759), 2, + ACTIONS(4201), 1, + sym__terminator, + STATE(336), 1, + aux_sym_qualified_name_repeat1, + STATE(3434), 1, + aux_sym_data_relation_repeat1, + STATE(2791), 2, sym_comment, sym_include, - [126497] = 9, + [127927] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2105), 1, - anon_sym_COMMA, - ACTIONS(2453), 1, - anon_sym_COLON, - ACTIONS(4153), 1, - aux_sym_on_error_phrase_token1, - STATE(3436), 1, - sym_on_stop_phrase, - STATE(3442), 1, - aux_sym_for_statement_repeat1, - STATE(2760), 2, + ACTIONS(4205), 1, + aux_sym_variable_definition_token2, + STATE(2792), 2, sym_comment, sym_include, - [126526] = 9, + ACTIONS(4203), 4, + aux_sym__block_terminator_token1, + aux_sym_variable_definition_token1, + aux_sym_method_definition_token1, + aux_sym_constructor_definition_token1, + [127950] = 8, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2105), 1, - anon_sym_COMMA, - ACTIONS(2584), 1, - anon_sym_COLON, - ACTIONS(4153), 1, + ACTIONS(4008), 1, aux_sym_on_error_phrase_token1, - STATE(3129), 1, + STATE(3071), 1, + sym_on_quit_phrase, + STATE(3862), 1, sym_on_stop_phrase, - STATE(3130), 1, - aux_sym_for_statement_repeat1, - STATE(2761), 2, - sym_comment, - sym_include, - [126555] = 9, - ACTIONS(59), 1, - anon_sym_SLASH_SLASH, - ACTIONS(61), 1, - anon_sym_SLASH_STAR, - ACTIONS(65), 1, - anon_sym_LBRACE, - ACTIONS(2105), 1, + ACTIONS(3362), 2, anon_sym_COMMA, - ACTIONS(2598), 1, anon_sym_COLON, - ACTIONS(4153), 1, - aux_sym_on_error_phrase_token1, - STATE(3279), 1, - sym_on_stop_phrase, - STATE(3280), 1, - aux_sym_for_statement_repeat1, - STATE(2762), 2, + STATE(2793), 2, sym_comment, sym_include, - [126584] = 9, + [127977] = 9, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2105), 1, + ACTIONS(2109), 1, anon_sym_COMMA, - ACTIONS(3302), 1, + ACTIONS(2610), 1, anon_sym_COLON, - ACTIONS(4153), 1, + ACTIONS(4207), 1, aux_sym_on_error_phrase_token1, - STATE(3360), 1, + STATE(3310), 1, sym_on_stop_phrase, - STATE(3361), 1, + STATE(3311), 1, aux_sym_for_statement_repeat1, - STATE(2763), 2, + STATE(2794), 2, sym_comment, sym_include, - [126613] = 9, + [128006] = 9, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2105), 1, + ACTIONS(2109), 1, anon_sym_COMMA, - ACTIONS(2572), 1, + ACTIONS(2469), 1, anon_sym_COLON, - ACTIONS(4153), 1, + ACTIONS(4207), 1, aux_sym_on_error_phrase_token1, - STATE(3281), 1, + STATE(3321), 1, sym_on_stop_phrase, - STATE(3282), 1, - aux_sym_for_statement_repeat1, - STATE(2764), 2, - sym_comment, - sym_include, - [126642] = 9, - ACTIONS(59), 1, - anon_sym_SLASH_SLASH, - ACTIONS(61), 1, - anon_sym_SLASH_STAR, - ACTIONS(65), 1, - anon_sym_LBRACE, - ACTIONS(2105), 1, - anon_sym_COMMA, - ACTIONS(2580), 1, - anon_sym_COLON, - ACTIONS(4153), 1, - aux_sym_on_error_phrase_token1, - STATE(3317), 1, + STATE(3322), 1, aux_sym_for_statement_repeat1, - STATE(3319), 1, - sym_on_stop_phrase, - STATE(2765), 2, - sym_comment, - sym_include, - [126671] = 6, - ACTIONS(59), 1, - anon_sym_SLASH_SLASH, - ACTIONS(61), 1, - anon_sym_SLASH_STAR, - ACTIONS(65), 1, - anon_sym_LBRACE, - ACTIONS(4225), 1, - aux_sym_variable_definition_token2, - STATE(2766), 2, + STATE(2795), 2, sym_comment, sym_include, - ACTIONS(4223), 4, - aux_sym__block_terminator_token1, - aux_sym_variable_definition_token1, - aux_sym_method_definition_token1, - aux_sym_constructor_definition_token1, - [126694] = 9, + [128035] = 7, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2109), 1, + ACTIONS(3031), 1, aux_sym_on_error_phrase_token1, - ACTIONS(3772), 1, + ACTIONS(3039), 1, anon_sym_COLON, - STATE(3009), 1, - sym_on_error_phrase, - STATE(3238), 1, - sym_on_quit_phrase, - STATE(4142), 1, - sym_on_stop_phrase, - STATE(2767), 2, + STATE(2796), 2, sym_comment, sym_include, - [126723] = 6, + STATE(4197), 3, + sym_on_error_phrase, + sym_on_stop_phrase, + sym_on_quit_phrase, + [128060] = 9, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(4229), 1, - aux_sym_variable_definition_token2, - STATE(2768), 2, + ACTIONS(679), 1, + sym__namedot, + ACTIONS(2703), 1, + aux_sym_inherits_token1, + ACTIONS(4209), 1, + anon_sym_COLON, + STATE(336), 1, + aux_sym_qualified_name_repeat1, + STATE(4681), 1, + sym_inherits, + STATE(2797), 2, sym_comment, sym_include, - ACTIONS(4227), 4, - aux_sym__block_terminator_token1, - aux_sym_variable_definition_token1, - aux_sym_method_definition_token1, - aux_sym_constructor_definition_token1, - [126746] = 9, + [128089] = 9, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2105), 1, + ACTIONS(2109), 1, anon_sym_COMMA, - ACTIONS(2582), 1, + ACTIONS(2453), 1, anon_sym_COLON, - ACTIONS(4153), 1, + ACTIONS(4207), 1, aux_sym_on_error_phrase_token1, - STATE(3131), 1, + STATE(3400), 1, sym_on_stop_phrase, - STATE(3132), 1, + STATE(3401), 1, aux_sym_for_statement_repeat1, - STATE(2769), 2, + STATE(2798), 2, sym_comment, sym_include, - [126775] = 7, + [128118] = 9, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(3003), 1, - aux_sym_on_error_phrase_token1, - ACTIONS(4231), 1, + ACTIONS(679), 1, + sym__namedot, + ACTIONS(2703), 1, + aux_sym_inherits_token1, + ACTIONS(4211), 1, anon_sym_COLON, - STATE(2770), 2, + STATE(336), 1, + aux_sym_qualified_name_repeat1, + STATE(4606), 1, + sym_inherits, + STATE(2799), 2, sym_comment, sym_include, - STATE(4149), 3, - sym_on_error_phrase, - sym_on_stop_phrase, - sym_on_quit_phrase, - [126800] = 7, + [128147] = 7, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(4233), 1, + ACTIONS(4213), 1, aux_sym_procedure_parameter_definition_token1, - ACTIONS(4237), 1, + ACTIONS(4217), 1, aux_sym_on_error_phrase_token8, - STATE(2771), 2, + STATE(2800), 2, sym_comment, sym_include, - ACTIONS(4235), 3, + ACTIONS(4215), 3, aux_sym_on_error_phrase_token4, aux_sym_on_error_phrase_token5, aux_sym_on_error_phrase_token6, - [126825] = 9, + [128172] = 6, + ACTIONS(59), 1, + anon_sym_SLASH_SLASH, + ACTIONS(61), 1, + anon_sym_SLASH_STAR, + ACTIONS(65), 1, + anon_sym_LBRACE, + ACTIONS(4221), 1, + aux_sym_variable_definition_token2, + STATE(2801), 2, + sym_comment, + sym_include, + ACTIONS(4219), 4, + aux_sym__block_terminator_token1, + aux_sym_variable_definition_token1, + aux_sym_method_definition_token1, + aux_sym_constructor_definition_token1, + [128195] = 9, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, @@ -147966,578 +149631,586 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, ACTIONS(679), 1, sym__namedot, - ACTIONS(4038), 1, - anon_sym_COMMA, - ACTIONS(4239), 1, - sym__terminator, - STATE(329), 1, + ACTIONS(2703), 1, + aux_sym_inherits_token1, + ACTIONS(4223), 1, + anon_sym_COLON, + STATE(336), 1, aux_sym_qualified_name_repeat1, - STATE(3466), 1, - aux_sym_data_relation_repeat1, - STATE(2772), 2, + STATE(4648), 1, + sym_inherits, + STATE(2802), 2, sym_comment, sym_include, - [126854] = 7, + [128224] = 7, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(3003), 1, + ACTIONS(3031), 1, aux_sym_on_error_phrase_token1, - ACTIONS(4241), 1, + ACTIONS(3119), 1, anon_sym_COLON, - STATE(2773), 2, + STATE(2803), 2, sym_comment, sym_include, - STATE(4434), 3, + STATE(4456), 3, sym_on_error_phrase, sym_on_stop_phrase, sym_on_quit_phrase, - [126879] = 6, + [128249] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(4245), 1, + ACTIONS(4227), 1, aux_sym_variable_definition_token2, - STATE(2774), 2, + STATE(2804), 2, sym_comment, sym_include, - ACTIONS(4243), 4, + ACTIONS(4225), 4, aux_sym__block_terminator_token1, aux_sym_variable_definition_token1, aux_sym_method_definition_token1, aux_sym_constructor_definition_token1, - [126902] = 7, + [128272] = 7, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(3003), 1, - aux_sym_on_error_phrase_token1, - ACTIONS(3084), 1, - anon_sym_COLON, - STATE(2775), 2, + ACTIONS(4229), 1, + aux_sym_procedure_parameter_definition_token1, + ACTIONS(4233), 1, + aux_sym_on_error_phrase_token8, + STATE(2805), 2, sym_comment, sym_include, - STATE(4150), 3, - sym_on_error_phrase, - sym_on_stop_phrase, - sym_on_quit_phrase, - [126927] = 9, + ACTIONS(4231), 3, + aux_sym_on_error_phrase_token4, + aux_sym_on_error_phrase_token5, + aux_sym_on_error_phrase_token6, + [128297] = 9, 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(681), 1, - sym__namecolon, - ACTIONS(4247), 1, - anon_sym_EQ, - STATE(329), 1, - aux_sym_qualified_name_repeat1, - STATE(3004), 1, - aux_sym_object_access_repeat1, - STATE(2776), 2, + ACTIONS(2109), 1, + anon_sym_COMMA, + ACTIONS(4207), 1, + aux_sym_on_error_phrase_token1, + ACTIONS(4235), 1, + anon_sym_COLON, + STATE(3461), 1, + sym_on_stop_phrase, + STATE(3462), 1, + aux_sym_for_statement_repeat1, + STATE(2806), 2, sym_comment, sym_include, - [126956] = 9, + [128326] = 9, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2105), 1, + ACTIONS(2109), 1, anon_sym_COMMA, - ACTIONS(3216), 1, + ACTIONS(2459), 1, anon_sym_COLON, - ACTIONS(4153), 1, + ACTIONS(4207), 1, aux_sym_on_error_phrase_token1, - STATE(3119), 1, + STATE(3412), 1, sym_on_stop_phrase, - STATE(3120), 1, + STATE(3413), 1, aux_sym_for_statement_repeat1, - STATE(2777), 2, + STATE(2807), 2, sym_comment, sym_include, - [126985] = 9, + [128355] = 9, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2105), 1, + ACTIONS(2109), 1, anon_sym_COMMA, - ACTIONS(2421), 1, + ACTIONS(4023), 1, anon_sym_COLON, - ACTIONS(4153), 1, + ACTIONS(4207), 1, aux_sym_on_error_phrase_token1, - STATE(3171), 1, + STATE(3308), 1, sym_on_stop_phrase, - STATE(3173), 1, + STATE(3309), 1, aux_sym_for_statement_repeat1, - STATE(2778), 2, + STATE(2808), 2, sym_comment, sym_include, - [127014] = 7, + [128384] = 9, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(3003), 1, - aux_sym_on_error_phrase_token1, - ACTIONS(4249), 1, + ACTIONS(2109), 1, + anon_sym_COMMA, + ACTIONS(4163), 1, anon_sym_COLON, - STATE(2779), 2, + ACTIONS(4207), 1, + aux_sym_on_error_phrase_token1, + STATE(3465), 1, + sym_on_stop_phrase, + STATE(3466), 1, + aux_sym_for_statement_repeat1, + STATE(2809), 2, sym_comment, sym_include, - STATE(4163), 3, - sym_on_error_phrase, - sym_on_stop_phrase, - sym_on_quit_phrase, - [127039] = 9, + [128413] = 9, 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(4038), 1, + ACTIONS(2109), 1, anon_sym_COMMA, - ACTIONS(4251), 1, - sym__terminator, - STATE(329), 1, - aux_sym_qualified_name_repeat1, - STATE(3322), 1, - aux_sym_data_relation_repeat1, - STATE(2780), 2, + ACTIONS(3279), 1, + anon_sym_COLON, + ACTIONS(4207), 1, + aux_sym_on_error_phrase_token1, + STATE(3306), 1, + sym_on_stop_phrase, + STATE(3307), 1, + aux_sym_for_statement_repeat1, + STATE(2810), 2, sym_comment, sym_include, - [127068] = 9, + [128442] = 9, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2105), 1, + ACTIONS(2109), 1, anon_sym_COMMA, - ACTIONS(2574), 1, + ACTIONS(2588), 1, anon_sym_COLON, - ACTIONS(4153), 1, + ACTIONS(4207), 1, aux_sym_on_error_phrase_token1, - STATE(3357), 1, - sym_on_stop_phrase, - STATE(3358), 1, + STATE(3398), 1, aux_sym_for_statement_repeat1, - STATE(2781), 2, + STATE(3399), 1, + sym_on_stop_phrase, + STATE(2811), 2, sym_comment, sym_include, - [127097] = 6, + [128471] = 9, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(4255), 1, - aux_sym_variable_definition_token2, - STATE(2782), 2, + ACTIONS(2109), 1, + anon_sym_COMMA, + ACTIONS(4207), 1, + aux_sym_on_error_phrase_token1, + ACTIONS(4237), 1, + anon_sym_COLON, + STATE(3304), 1, + sym_on_stop_phrase, + STATE(3305), 1, + aux_sym_for_statement_repeat1, + STATE(2812), 2, sym_comment, sym_include, - ACTIONS(4253), 4, - aux_sym__block_terminator_token1, - aux_sym_variable_definition_token1, - aux_sym_method_definition_token1, - aux_sym_constructor_definition_token1, - [127120] = 5, + [128500] = 9, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - STATE(2783), 2, - sym_comment, - sym_include, - ACTIONS(4257), 5, + ACTIONS(2109), 1, anon_sym_COMMA, - anon_sym_COLON, + ACTIONS(4207), 1, aux_sym_on_error_phrase_token1, - aux_sym_sort_clause_token1, - aux_sym_sort_clause_token2, - [127141] = 7, + ACTIONS(4239), 1, + anon_sym_COLON, + STATE(3495), 1, + aux_sym_for_statement_repeat1, + STATE(3496), 1, + sym_on_stop_phrase, + STATE(2813), 2, + sym_comment, + sym_include, + [128529] = 9, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(3003), 1, - aux_sym_on_error_phrase_token1, - ACTIONS(3206), 1, + ACTIONS(2109), 1, + anon_sym_COMMA, + ACTIONS(4027), 1, anon_sym_COLON, - STATE(2784), 2, + ACTIONS(4207), 1, + aux_sym_on_error_phrase_token1, + STATE(3302), 1, + sym_on_stop_phrase, + STATE(3303), 1, + aux_sym_for_statement_repeat1, + STATE(2814), 2, sym_comment, sym_include, - STATE(4335), 3, - sym_on_error_phrase, - sym_on_stop_phrase, - sym_on_quit_phrase, - [127166] = 9, + [128558] = 9, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2105), 1, + ACTIONS(2109), 1, anon_sym_COMMA, - ACTIONS(2459), 1, + ACTIONS(2443), 1, anon_sym_COLON, - ACTIONS(4153), 1, + ACTIONS(4207), 1, aux_sym_on_error_phrase_token1, - STATE(3134), 1, - sym_on_stop_phrase, - STATE(3135), 1, + STATE(3423), 1, aux_sym_for_statement_repeat1, - STATE(2785), 2, + STATE(3426), 1, + sym_on_stop_phrase, + STATE(2815), 2, sym_comment, sym_include, - [127195] = 9, + [128587] = 9, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2105), 1, + ACTIONS(2109), 1, anon_sym_COMMA, - ACTIONS(3986), 1, - anon_sym_COLON, - ACTIONS(4153), 1, + ACTIONS(4207), 1, aux_sym_on_error_phrase_token1, - STATE(3352), 1, + ACTIONS(4241), 1, + anon_sym_COLON, + STATE(3299), 1, sym_on_stop_phrase, - STATE(3354), 1, + STATE(3300), 1, aux_sym_for_statement_repeat1, - STATE(2786), 2, + STATE(2816), 2, sym_comment, sym_include, - [127224] = 6, - ACTIONS(59), 1, + [128616] = 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(4261), 1, - aux_sym_variable_definition_token2, - STATE(2787), 2, + ACTIONS(4245), 1, + aux_sym_input_expression_token2, + STATE(3291), 1, + sym_widget_phrase, + ACTIONS(4243), 2, + sym_identifier, + aux_sym_do_block_token1, + STATE(2817), 3, sym_comment, sym_include, - ACTIONS(4259), 4, - aux_sym__block_terminator_token1, - aux_sym_variable_definition_token1, - aux_sym_method_definition_token1, - aux_sym_constructor_definition_token1, - [127247] = 5, + aux_sym_on_statement_repeat2, + [128641] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - STATE(2788), 2, + STATE(2818), 2, sym_comment, sym_include, - ACTIONS(3958), 5, + ACTIONS(4248), 5, sym__terminator, - anon_sym_RPAREN, - anon_sym_COMMA, - aux_sym_data_relation_token1, - aux_sym_data_relation_token2, - [127268] = 9, + aux_sym_query_definition_tuning_token1, + anon_sym_SCROLLING, + aux_sym_query_definition_tuning_token2, + aux_sym_query_definition_token3, + [128662] = 9, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2105), 1, + ACTIONS(2109), 1, anon_sym_COMMA, - ACTIONS(2445), 1, + ACTIONS(2439), 1, anon_sym_COLON, - ACTIONS(4153), 1, + ACTIONS(4207), 1, aux_sym_on_error_phrase_token1, - STATE(3286), 1, + STATE(3273), 1, aux_sym_for_statement_repeat1, - STATE(3287), 1, + STATE(3274), 1, sym_on_stop_phrase, - STATE(2789), 2, + STATE(2819), 2, sym_comment, sym_include, - [127297] = 9, + [128691] = 9, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2105), 1, + ACTIONS(2109), 1, anon_sym_COMMA, - ACTIONS(2594), 1, - anon_sym_COLON, - ACTIONS(4153), 1, + ACTIONS(4207), 1, aux_sym_on_error_phrase_token1, - STATE(3137), 1, + ACTIONS(4250), 1, + anon_sym_COLON, + STATE(3227), 1, sym_on_stop_phrase, - STATE(3138), 1, + STATE(3228), 1, aux_sym_for_statement_repeat1, - STATE(2790), 2, + STATE(2820), 2, sym_comment, sym_include, - [127326] = 6, + [128720] = 9, 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(2791), 2, + ACTIONS(2109), 1, + anon_sym_COMMA, + ACTIONS(3330), 1, + anon_sym_COLON, + ACTIONS(4207), 1, + aux_sym_on_error_phrase_token1, + STATE(3470), 1, + sym_on_stop_phrase, + STATE(3471), 1, + aux_sym_for_statement_repeat1, + STATE(2821), 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, - [127349] = 9, + [128749] = 7, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2109), 1, - aux_sym_on_error_phrase_token1, - ACTIONS(4267), 1, - anon_sym_COLON, - STATE(3003), 1, - sym_on_error_phrase, - STATE(3480), 1, - sym_on_quit_phrase, - STATE(4445), 1, - sym_on_stop_phrase, - STATE(2792), 2, + ACTIONS(4252), 1, + aux_sym_procedure_parameter_definition_token1, + ACTIONS(4256), 1, + aux_sym_on_error_phrase_token8, + STATE(2822), 2, sym_comment, sym_include, - [127378] = 9, + ACTIONS(4254), 3, + aux_sym_on_error_phrase_token4, + aux_sym_on_error_phrase_token5, + aux_sym_on_error_phrase_token6, + [128774] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2105), 1, - anon_sym_COMMA, - ACTIONS(3324), 1, - anon_sym_COLON, - ACTIONS(4153), 1, - aux_sym_on_error_phrase_token1, - STATE(3347), 1, - sym_on_stop_phrase, - STATE(3348), 1, - aux_sym_for_statement_repeat1, - STATE(2793), 2, + ACTIONS(4260), 1, + aux_sym_variable_definition_token2, + STATE(2823), 2, sym_comment, sym_include, - [127407] = 9, + ACTIONS(4258), 4, + aux_sym__block_terminator_token1, + aux_sym_variable_definition_token1, + aux_sym_method_definition_token1, + aux_sym_constructor_definition_token1, + [128797] = 9, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2105), 1, + ACTIONS(2109), 1, anon_sym_COMMA, - ACTIONS(2425), 1, + ACTIONS(4157), 1, anon_sym_COLON, - ACTIONS(4153), 1, + ACTIONS(4207), 1, aux_sym_on_error_phrase_token1, - STATE(3229), 1, - aux_sym_for_statement_repeat1, - STATE(3232), 1, + STATE(3473), 1, sym_on_stop_phrase, - STATE(2794), 2, + STATE(3474), 1, + aux_sym_for_statement_repeat1, + STATE(2824), 2, sym_comment, sym_include, - [127436] = 9, + [128826] = 9, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2105), 1, + ACTIONS(2109), 1, anon_sym_COMMA, - ACTIONS(2431), 1, - anon_sym_COLON, - ACTIONS(4153), 1, + ACTIONS(4207), 1, aux_sym_on_error_phrase_token1, - STATE(3142), 1, - aux_sym_for_statement_repeat1, - STATE(3143), 1, + ACTIONS(4262), 1, + anon_sym_COLON, + STATE(3372), 1, sym_on_stop_phrase, - STATE(2795), 2, + STATE(3374), 1, + aux_sym_for_statement_repeat1, + STATE(2825), 2, sym_comment, sym_include, - [127465] = 7, + [128855] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(3003), 1, - aux_sym_on_error_phrase_token1, - ACTIONS(3357), 1, - anon_sym_COLON, - STATE(2796), 2, - sym_comment, - sym_include, - STATE(4407), 3, - sym_on_error_phrase, - sym_on_stop_phrase, - sym_on_quit_phrase, - [127490] = 7, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - ACTIONS(7), 1, - anon_sym_LBRACE, - ACTIONS(4271), 1, - aux_sym_input_expression_token2, - STATE(3194), 1, - sym_widget_phrase, - ACTIONS(4269), 2, - sym_identifier, - aux_sym_do_block_token1, - STATE(2797), 3, + ACTIONS(4266), 1, + aux_sym_variable_definition_token2, + STATE(2826), 2, sym_comment, sym_include, - aux_sym_on_statement_repeat2, - [127515] = 7, + ACTIONS(4264), 4, + aux_sym__block_terminator_token1, + aux_sym_variable_definition_token1, + aux_sym_method_definition_token1, + aux_sym_constructor_definition_token1, + [128878] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(4274), 1, - aux_sym_procedure_parameter_definition_token1, - ACTIONS(4278), 1, - aux_sym_on_error_phrase_token8, - STATE(2798), 2, + ACTIONS(4270), 1, + aux_sym_variable_definition_token2, + STATE(2827), 2, sym_comment, sym_include, - ACTIONS(4276), 3, - aux_sym_on_error_phrase_token4, - aux_sym_on_error_phrase_token5, - aux_sym_on_error_phrase_token6, - [127540] = 9, + ACTIONS(4268), 4, + aux_sym__block_terminator_token1, + aux_sym_variable_definition_token1, + aux_sym_method_definition_token1, + aux_sym_constructor_definition_token1, + [128901] = 9, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2105), 1, + ACTIONS(2109), 1, anon_sym_COMMA, - ACTIONS(2568), 1, + ACTIONS(4037), 1, anon_sym_COLON, - ACTIONS(4153), 1, + ACTIONS(4207), 1, aux_sym_on_error_phrase_token1, - STATE(3288), 1, + STATE(3230), 1, sym_on_stop_phrase, - STATE(3289), 1, + STATE(3231), 1, aux_sym_for_statement_repeat1, - STATE(2799), 2, + STATE(2828), 2, + sym_comment, + sym_include, + [128930] = 6, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_LBRACE, + ACTIONS(4274), 1, + aux_sym_widget_field_token1, + STATE(2829), 2, sym_comment, sym_include, - [127569] = 7, + ACTIONS(4272), 4, + sym_identifier, + aux_sym_input_expression_token2, + aux_sym_do_block_token1, + aux_sym_field_definition_token1, + [128953] = 9, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(3003), 1, + ACTIONS(2109), 1, + anon_sym_COMMA, + ACTIONS(4207), 1, aux_sym_on_error_phrase_token1, - ACTIONS(3328), 1, + ACTIONS(4276), 1, anon_sym_COLON, - STATE(2800), 2, + STATE(3232), 1, + sym_on_stop_phrase, + STATE(3233), 1, + aux_sym_for_statement_repeat1, + STATE(2830), 2, sym_comment, sym_include, - STATE(4178), 3, - sym_on_error_phrase, - sym_on_stop_phrase, - sym_on_quit_phrase, - [127594] = 5, + [128982] = 7, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - STATE(2801), 2, + ACTIONS(4278), 1, + aux_sym_procedure_parameter_definition_token1, + ACTIONS(4282), 1, + aux_sym_on_error_phrase_token8, + STATE(2831), 2, sym_comment, sym_include, - ACTIONS(4280), 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, - [127615] = 9, + ACTIONS(4280), 3, + aux_sym_on_error_phrase_token4, + aux_sym_on_error_phrase_token5, + aux_sym_on_error_phrase_token6, + [129007] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2105), 1, - anon_sym_COMMA, - ACTIONS(4102), 1, - anon_sym_COLON, - ACTIONS(4153), 1, - aux_sym_on_error_phrase_token1, - STATE(3343), 1, - sym_on_stop_phrase, - STATE(3344), 1, - aux_sym_for_statement_repeat1, - STATE(2802), 2, + ACTIONS(4286), 1, + aux_sym_variable_definition_token2, + STATE(2832), 2, sym_comment, sym_include, - [127644] = 9, + ACTIONS(4284), 4, + aux_sym__block_terminator_token1, + aux_sym_variable_definition_token1, + aux_sym_method_definition_token1, + aux_sym_constructor_definition_token1, + [129030] = 9, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, @@ -148545,74 +150218,74 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(65), 1, anon_sym_LBRACE, ACTIONS(2109), 1, - aux_sym_on_error_phrase_token1, - ACTIONS(4282), 1, + anon_sym_COMMA, + ACTIONS(2602), 1, anon_sym_COLON, - STATE(2968), 1, - sym_on_error_phrase, - STATE(3225), 1, - sym_on_quit_phrase, - STATE(4173), 1, + ACTIONS(4207), 1, + aux_sym_on_error_phrase_token1, + STATE(3325), 1, sym_on_stop_phrase, - STATE(2803), 2, + STATE(3326), 1, + aux_sym_for_statement_repeat1, + STATE(2833), 2, sym_comment, sym_include, - [127673] = 6, + [129059] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(4286), 1, + ACTIONS(4290), 1, aux_sym_variable_definition_token2, - STATE(2804), 2, + STATE(2834), 2, sym_comment, sym_include, - ACTIONS(4284), 4, + ACTIONS(4288), 4, aux_sym__block_terminator_token1, aux_sym_variable_definition_token1, aux_sym_method_definition_token1, aux_sym_constructor_definition_token1, - [127696] = 9, + [129082] = 9, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2105), 1, + ACTIONS(2109), 1, anon_sym_COMMA, - ACTIONS(2461), 1, + ACTIONS(3254), 1, anon_sym_COLON, - ACTIONS(4153), 1, + ACTIONS(4207), 1, aux_sym_on_error_phrase_token1, - STATE(3145), 1, + STATE(3390), 1, sym_on_stop_phrase, - STATE(3146), 1, + STATE(3391), 1, aux_sym_for_statement_repeat1, - STATE(2805), 2, + STATE(2835), 2, sym_comment, sym_include, - [127725] = 7, + [129111] = 7, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(3003), 1, + ACTIONS(3031), 1, aux_sym_on_error_phrase_token1, - ACTIONS(3371), 1, + ACTIONS(3123), 1, anon_sym_COLON, - STATE(2806), 2, + STATE(2836), 2, sym_comment, sym_include, - STATE(4243), 3, + STATE(4402), 3, sym_on_error_phrase, sym_on_stop_phrase, sym_on_quit_phrase, - [127750] = 9, + [129136] = 9, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, @@ -148621,18 +150294,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, ACTIONS(679), 1, sym__namedot, - ACTIONS(2721), 1, - aux_sym_inherits_token1, - ACTIONS(4288), 1, - anon_sym_COLON, - STATE(329), 1, + ACTIONS(681), 1, + sym__namecolon, + ACTIONS(4292), 1, + anon_sym_EQ, + STATE(336), 1, aux_sym_qualified_name_repeat1, - STATE(4527), 1, - sym_inherits, - STATE(2807), 2, + STATE(3145), 1, + aux_sym_object_access_repeat1, + STATE(2837), 2, sym_comment, sym_include, - [127779] = 9, + [129165] = 9, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, @@ -148640,153 +150313,167 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(65), 1, anon_sym_LBRACE, ACTIONS(2109), 1, - aux_sym_on_error_phrase_token1, - ACTIONS(4290), 1, + anon_sym_COMMA, + ACTIONS(2578), 1, anon_sym_COLON, - STATE(3015), 1, - sym_on_error_phrase, - STATE(3152), 1, - sym_on_quit_phrase, - STATE(4376), 1, + ACTIONS(4207), 1, + aux_sym_on_error_phrase_token1, + STATE(3388), 1, sym_on_stop_phrase, - STATE(2808), 2, + STATE(3389), 1, + aux_sym_for_statement_repeat1, + STATE(2838), 2, + sym_comment, + sym_include, + [129194] = 6, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_LBRACE, + ACTIONS(4296), 1, + aux_sym_widget_field_token1, + STATE(2839), 2, sym_comment, sym_include, - [127808] = 9, + ACTIONS(4294), 4, + sym_identifier, + aux_sym_input_expression_token2, + aux_sym_do_block_token1, + aux_sym_field_definition_token1, + [129217] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2105), 1, - anon_sym_COMMA, - ACTIONS(3230), 1, - anon_sym_COLON, - ACTIONS(4153), 1, - aux_sym_on_error_phrase_token1, - STATE(3434), 1, - aux_sym_for_statement_repeat1, - STATE(3448), 1, - sym_on_stop_phrase, - STATE(2809), 2, + STATE(2840), 2, sym_comment, sym_include, - [127837] = 7, + ACTIONS(4298), 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, + [129238] = 9, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(3003), 1, - aux_sym_on_error_phrase_token1, - ACTIONS(3352), 1, + ACTIONS(2109), 1, + anon_sym_COMMA, + ACTIONS(2431), 1, anon_sym_COLON, - STATE(2810), 2, + ACTIONS(4207), 1, + aux_sym_on_error_phrase_token1, + STATE(3340), 1, + sym_on_stop_phrase, + STATE(3342), 1, + aux_sym_for_statement_repeat1, + STATE(2841), 2, sym_comment, sym_include, - STATE(4436), 3, - sym_on_error_phrase, - sym_on_stop_phrase, - sym_on_quit_phrase, - [127862] = 9, + [129267] = 9, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2105), 1, + ACTIONS(2109), 1, anon_sym_COMMA, - ACTIONS(4153), 1, - aux_sym_on_error_phrase_token1, - ACTIONS(4292), 1, + ACTIONS(3324), 1, anon_sym_COLON, - STATE(3345), 1, + ACTIONS(4207), 1, + aux_sym_on_error_phrase_token1, + STATE(3234), 1, sym_on_stop_phrase, - STATE(3346), 1, + STATE(3235), 1, aux_sym_for_statement_repeat1, - STATE(2811), 2, + STATE(2842), 2, sym_comment, sym_include, - [127891] = 9, + [129296] = 9, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2105), 1, + ACTIONS(2109), 1, anon_sym_COMMA, - ACTIONS(2447), 1, + ACTIONS(2574), 1, anon_sym_COLON, - ACTIONS(4153), 1, + ACTIONS(4207), 1, aux_sym_on_error_phrase_token1, - STATE(3215), 1, + STATE(3402), 1, sym_on_stop_phrase, - STATE(3216), 1, + STATE(3403), 1, aux_sym_for_statement_repeat1, - STATE(2812), 2, + STATE(2843), 2, sym_comment, sym_include, - [127920] = 9, + [129325] = 9, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2105), 1, + ACTIONS(679), 1, + sym__namedot, + ACTIONS(4004), 1, anon_sym_COMMA, - ACTIONS(4153), 1, - aux_sym_on_error_phrase_token1, - ACTIONS(4294), 1, - anon_sym_COLON, - STATE(3339), 1, - sym_on_stop_phrase, - STATE(3340), 1, - aux_sym_for_statement_repeat1, - STATE(2813), 2, + ACTIONS(4300), 1, + sym__terminator, + STATE(336), 1, + aux_sym_qualified_name_repeat1, + STATE(3479), 1, + aux_sym_data_relation_repeat1, + STATE(2844), 2, sym_comment, sym_include, - [127949] = 7, + [129354] = 7, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(3003), 1, + ACTIONS(3031), 1, aux_sym_on_error_phrase_token1, - ACTIONS(3363), 1, + ACTIONS(4302), 1, anon_sym_COLON, - STATE(2814), 2, + STATE(2845), 2, sym_comment, sym_include, - STATE(4381), 3, + STATE(4266), 3, sym_on_error_phrase, sym_on_stop_phrase, sym_on_quit_phrase, - [127974] = 7, + [129379] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(4193), 1, - aux_sym_procedure_parameter_definition_token1, - ACTIONS(4197), 1, - aux_sym_on_error_phrase_token8, - STATE(2815), 2, + ACTIONS(4306), 1, + aux_sym_variable_definition_token2, + STATE(2846), 2, sym_comment, sym_include, - ACTIONS(4296), 3, - aux_sym_on_error_phrase_token4, - aux_sym_on_error_phrase_token5, - aux_sym_on_error_phrase_token6, - [127999] = 9, + ACTIONS(4304), 4, + aux_sym__block_terminator_token1, + aux_sym_variable_definition_token1, + aux_sym_method_definition_token1, + aux_sym_constructor_definition_token1, + [129402] = 9, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, @@ -148794,95 +150481,90 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(65), 1, anon_sym_LBRACE, ACTIONS(2109), 1, - aux_sym_on_error_phrase_token1, - ACTIONS(3794), 1, + anon_sym_COMMA, + ACTIONS(4051), 1, anon_sym_COLON, - STATE(3012), 1, - sym_on_error_phrase, - STATE(3147), 1, - sym_on_quit_phrase, - STATE(4394), 1, + ACTIONS(4207), 1, + aux_sym_on_error_phrase_token1, + STATE(3236), 1, sym_on_stop_phrase, - STATE(2816), 2, + STATE(3237), 1, + aux_sym_for_statement_repeat1, + STATE(2847), 2, sym_comment, sym_include, - [128028] = 9, + [129431] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2105), 1, - anon_sym_COMMA, - ACTIONS(2592), 1, - anon_sym_COLON, - ACTIONS(4153), 1, - aux_sym_on_error_phrase_token1, - STATE(3255), 1, - aux_sym_for_statement_repeat1, - STATE(3256), 1, - sym_on_stop_phrase, - STATE(2817), 2, + STATE(2848), 2, sym_comment, sym_include, - [128057] = 9, + ACTIONS(4308), 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, + [129452] = 9, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2105), 1, + ACTIONS(679), 1, + sym__namedot, + ACTIONS(4004), 1, anon_sym_COMMA, - ACTIONS(2590), 1, - anon_sym_COLON, - ACTIONS(4153), 1, - aux_sym_on_error_phrase_token1, - STATE(3273), 1, - sym_on_stop_phrase, - STATE(3274), 1, - aux_sym_for_statement_repeat1, - STATE(2818), 2, + ACTIONS(4310), 1, + sym__terminator, + STATE(336), 1, + aux_sym_qualified_name_repeat1, + STATE(3503), 1, + aux_sym_data_relation_repeat1, + STATE(2849), 2, sym_comment, sym_include, - [128086] = 6, + [129481] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(4300), 1, + ACTIONS(4314), 1, aux_sym_variable_definition_token2, - STATE(2819), 2, + STATE(2850), 2, sym_comment, sym_include, - ACTIONS(4298), 4, + ACTIONS(4312), 4, aux_sym__block_terminator_token1, aux_sym_variable_definition_token1, aux_sym_method_definition_token1, aux_sym_constructor_definition_token1, - [128109] = 8, + [129504] = 7, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(3856), 1, - anon_sym_DQUOTE, - ACTIONS(3858), 1, - anon_sym_SQUOTE, - STATE(2299), 1, - sym__string_literal, - STATE(1812), 2, - sym_double_quoted_string, - sym_single_quoted_string, - STATE(2820), 2, + ACTIONS(4316), 1, + aux_sym_procedure_parameter_definition_token1, + ACTIONS(4320), 1, + aux_sym_on_error_phrase_token8, + STATE(2851), 2, sym_comment, sym_include, - [128136] = 9, + ACTIONS(4318), 3, + aux_sym_on_error_phrase_token4, + aux_sym_on_error_phrase_token5, + aux_sym_on_error_phrase_token6, + [129529] = 9, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, @@ -148890,270 +150572,277 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(65), 1, anon_sym_LBRACE, ACTIONS(2109), 1, - aux_sym_on_error_phrase_token1, - ACTIONS(4302), 1, + anon_sym_COMMA, + ACTIONS(2425), 1, anon_sym_COLON, - STATE(2934), 1, - sym_on_error_phrase, - STATE(3179), 1, - sym_on_quit_phrase, - STATE(4274), 1, + ACTIONS(4207), 1, + aux_sym_on_error_phrase_token1, + STATE(3329), 1, + aux_sym_for_statement_repeat1, + STATE(3330), 1, sym_on_stop_phrase, - STATE(2821), 2, + STATE(2852), 2, sym_comment, sym_include, - [128165] = 9, + [129558] = 7, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2105), 1, - anon_sym_COMMA, - ACTIONS(4153), 1, - aux_sym_on_error_phrase_token1, - ACTIONS(4304), 1, + ACTIONS(3027), 1, anon_sym_COLON, - STATE(3533), 1, - aux_sym_for_statement_repeat1, - STATE(3534), 1, - sym_on_stop_phrase, - STATE(2822), 2, + ACTIONS(3031), 1, + aux_sym_on_error_phrase_token1, + STATE(2853), 2, sym_comment, sym_include, - [128194] = 6, + STATE(4216), 3, + sym_on_error_phrase, + sym_on_stop_phrase, + sym_on_quit_phrase, + [129583] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(4308), 1, - aux_sym_variable_definition_token2, - STATE(2823), 2, + STATE(2854), 2, sym_comment, sym_include, - ACTIONS(4306), 4, - aux_sym__block_terminator_token1, - aux_sym_variable_definition_token1, - aux_sym_method_definition_token1, - aux_sym_constructor_definition_token1, - [128217] = 9, + ACTIONS(4322), 5, + sym__terminator, + anon_sym_COMMA, + anon_sym_COLON, + aux_sym_repeat_tuning_token1, + aux_sym_on_error_phrase_token1, + [129604] = 9, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2105), 1, + ACTIONS(2109), 1, anon_sym_COMMA, - ACTIONS(2393), 1, - anon_sym_COLON, - ACTIONS(4153), 1, + ACTIONS(4207), 1, aux_sym_on_error_phrase_token1, - STATE(3153), 1, - aux_sym_for_statement_repeat1, - STATE(3154), 1, + ACTIONS(4324), 1, + anon_sym_COLON, + STATE(3467), 1, sym_on_stop_phrase, - STATE(2824), 2, + STATE(3468), 1, + aux_sym_for_statement_repeat1, + STATE(2855), 2, sym_comment, sym_include, - [128246] = 5, + [129633] = 7, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - STATE(2825), 2, + ACTIONS(3031), 1, + aux_sym_on_error_phrase_token1, + ACTIONS(3392), 1, + anon_sym_COLON, + STATE(2856), 2, sym_comment, sym_include, - ACTIONS(4310), 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, - [128267] = 9, + STATE(4272), 3, + sym_on_error_phrase, + sym_on_stop_phrase, + sym_on_quit_phrase, + [129658] = 8, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2105), 1, - anon_sym_COMMA, - ACTIONS(4023), 1, - anon_sym_COLON, - ACTIONS(4153), 1, + ACTIONS(4008), 1, aux_sym_on_error_phrase_token1, - STATE(3424), 1, - aux_sym_for_statement_repeat1, - STATE(3427), 1, + STATE(3006), 1, + sym_on_quit_phrase, + STATE(3820), 1, sym_on_stop_phrase, - STATE(2826), 2, + ACTIONS(4326), 2, + anon_sym_COMMA, + anon_sym_COLON, + STATE(2857), 2, sym_comment, sym_include, - [128296] = 6, + [129685] = 7, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(4314), 1, - aux_sym_variable_definition_token2, - STATE(2827), 2, + ACTIONS(3031), 1, + aux_sym_on_error_phrase_token1, + ACTIONS(3125), 1, + anon_sym_COLON, + STATE(2858), 2, sym_comment, sym_include, - ACTIONS(4312), 4, - aux_sym__block_terminator_token1, - aux_sym_variable_definition_token1, - aux_sym_method_definition_token1, - aux_sym_constructor_definition_token1, - [128319] = 5, + STATE(4426), 3, + sym_on_error_phrase, + sym_on_stop_phrase, + sym_on_quit_phrase, + [129710] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - STATE(2828), 2, + ACTIONS(4330), 1, + aux_sym_variable_definition_token2, + STATE(2859), 2, sym_comment, sym_include, - ACTIONS(4316), 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, - [128340] = 7, + ACTIONS(4328), 4, + aux_sym__block_terminator_token1, + aux_sym_variable_definition_token1, + aux_sym_method_definition_token1, + aux_sym_constructor_definition_token1, + [129733] = 7, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(3003), 1, + ACTIONS(3031), 1, aux_sym_on_error_phrase_token1, - ACTIONS(3068), 1, + ACTIONS(3374), 1, anon_sym_COLON, - STATE(2829), 2, + STATE(2860), 2, sym_comment, sym_include, - STATE(4353), 3, + STATE(4455), 3, sym_on_error_phrase, sym_on_stop_phrase, sym_on_quit_phrase, - [128365] = 7, + [129758] = 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(4332), 1, aux_sym_procedure_parameter_definition_token1, - ACTIONS(4322), 1, + ACTIONS(4336), 1, aux_sym_on_error_phrase_token8, - STATE(2830), 2, + STATE(2861), 2, sym_comment, sym_include, - ACTIONS(4320), 3, + ACTIONS(4334), 3, aux_sym_on_error_phrase_token4, aux_sym_on_error_phrase_token5, aux_sym_on_error_phrase_token6, - [128390] = 6, + [129783] = 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(2831), 2, + ACTIONS(2109), 1, + anon_sym_COMMA, + ACTIONS(2465), 1, + anon_sym_COLON, + ACTIONS(4207), 1, + aux_sym_on_error_phrase_token1, + STATE(3360), 1, + aux_sym_for_statement_repeat1, + STATE(3361), 1, + sym_on_stop_phrase, + STATE(2862), 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, - [128413] = 9, + [129812] = 9, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2105), 1, + ACTIONS(2109), 1, anon_sym_COMMA, - ACTIONS(2443), 1, + ACTIONS(3326), 1, anon_sym_COLON, - ACTIONS(4153), 1, + ACTIONS(4207), 1, aux_sym_on_error_phrase_token1, - STATE(3483), 1, - aux_sym_for_statement_repeat1, - STATE(3492), 1, + STATE(3480), 1, sym_on_stop_phrase, - STATE(2832), 2, + STATE(3481), 1, + aux_sym_for_statement_repeat1, + STATE(2863), 2, sym_comment, sym_include, - [128442] = 6, + [129841] = 9, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(4330), 1, - aux_sym_variable_definition_token2, - STATE(2833), 2, + ACTIONS(679), 1, + sym__namedot, + ACTIONS(4004), 1, + anon_sym_COMMA, + ACTIONS(4338), 1, + aux_sym_data_relation_token2, + STATE(336), 1, + aux_sym_qualified_name_repeat1, + STATE(3472), 1, + aux_sym_data_relation_repeat1, + STATE(2864), 2, sym_comment, sym_include, - ACTIONS(4328), 4, - aux_sym__block_terminator_token1, - aux_sym_variable_definition_token1, - aux_sym_method_definition_token1, - aux_sym_constructor_definition_token1, - [128465] = 6, + [129870] = 9, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(4334), 1, - aux_sym_variable_definition_token2, - STATE(2834), 2, + ACTIONS(2109), 1, + anon_sym_COMMA, + ACTIONS(2600), 1, + anon_sym_COLON, + ACTIONS(4207), 1, + aux_sym_on_error_phrase_token1, + STATE(3396), 1, + sym_on_stop_phrase, + STATE(3397), 1, + aux_sym_for_statement_repeat1, + STATE(2865), 2, sym_comment, sym_include, - ACTIONS(4332), 4, - aux_sym__block_terminator_token1, - aux_sym_variable_definition_token1, - aux_sym_method_definition_token1, - aux_sym_constructor_definition_token1, - [128488] = 7, + [129899] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(3003), 1, - aux_sym_on_error_phrase_token1, - ACTIONS(3408), 1, - anon_sym_COLON, - STATE(2835), 2, + STATE(2866), 2, sym_comment, sym_include, - STATE(4204), 3, - sym_on_error_phrase, - sym_on_stop_phrase, - sym_on_quit_phrase, - [128513] = 9, + ACTIONS(4340), 5, + sym__terminator, + aux_sym_query_definition_tuning_token1, + anon_sym_SCROLLING, + aux_sym_query_definition_tuning_token2, + aux_sym_query_definition_token3, + [129920] = 9, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, @@ -149161,971 +150850,1025 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(65), 1, anon_sym_LBRACE, ACTIONS(2109), 1, - aux_sym_on_error_phrase_token1, - ACTIONS(3924), 1, + anon_sym_COMMA, + ACTIONS(4137), 1, anon_sym_COLON, - STATE(2988), 1, - sym_on_error_phrase, - STATE(3161), 1, - sym_on_quit_phrase, - STATE(4345), 1, + ACTIONS(4207), 1, + aux_sym_on_error_phrase_token1, + STATE(3464), 1, + aux_sym_for_statement_repeat1, + STATE(3469), 1, sym_on_stop_phrase, - STATE(2836), 2, + STATE(2867), 2, sym_comment, sym_include, - [128542] = 9, + [129949] = 9, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2105), 1, + ACTIONS(2109), 1, anon_sym_COMMA, - ACTIONS(2437), 1, + ACTIONS(4101), 1, anon_sym_COLON, - ACTIONS(4153), 1, + ACTIONS(4207), 1, aux_sym_on_error_phrase_token1, - STATE(3212), 1, - aux_sym_for_statement_repeat1, - STATE(3214), 1, + STATE(3383), 1, sym_on_stop_phrase, - STATE(2837), 2, + STATE(3384), 1, + aux_sym_for_statement_repeat1, + STATE(2868), 2, sym_comment, sym_include, - [128571] = 8, + [129978] = 9, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(3968), 1, - aux_sym_on_error_phrase_token1, - STATE(3034), 1, - sym_on_quit_phrase, - STATE(3726), 1, - sym_on_stop_phrase, - ACTIONS(2614), 2, + ACTIONS(2109), 1, anon_sym_COMMA, + ACTIONS(2467), 1, anon_sym_COLON, - STATE(2838), 2, + ACTIONS(4207), 1, + aux_sym_on_error_phrase_token1, + STATE(3261), 1, + sym_on_stop_phrase, + STATE(3262), 1, + aux_sym_for_statement_repeat1, + STATE(2869), 2, sym_comment, sym_include, - [128598] = 9, + [130007] = 9, 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(2721), 1, - aux_sym_inherits_token1, - ACTIONS(4336), 1, + ACTIONS(2109), 1, + anon_sym_COMMA, + ACTIONS(2435), 1, anon_sym_COLON, - STATE(329), 1, - aux_sym_qualified_name_repeat1, - STATE(4567), 1, - sym_inherits, - STATE(2839), 2, + ACTIONS(4207), 1, + aux_sym_on_error_phrase_token1, + STATE(3408), 1, + aux_sym_for_statement_repeat1, + STATE(3409), 1, + sym_on_stop_phrase, + STATE(2870), 2, sym_comment, sym_include, - [128627] = 7, + [130036] = 7, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(3003), 1, + ACTIONS(3031), 1, aux_sym_on_error_phrase_token1, - ACTIONS(3420), 1, + ACTIONS(3166), 1, anon_sym_COLON, - STATE(2840), 2, + STATE(2871), 2, sym_comment, sym_include, - STATE(4179), 3, + STATE(4678), 3, sym_on_error_phrase, sym_on_stop_phrase, sym_on_quit_phrase, - [128652] = 9, + [130061] = 6, 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(4038), 1, - anon_sym_COMMA, - ACTIONS(4338), 1, - sym__terminator, - STATE(329), 1, - aux_sym_qualified_name_repeat1, - STATE(3539), 1, - aux_sym_data_relation_repeat1, - STATE(2841), 2, + ACTIONS(4344), 1, + aux_sym_variable_definition_token2, + STATE(2872), 2, sym_comment, sym_include, - [128681] = 5, + ACTIONS(4342), 4, + aux_sym__block_terminator_token1, + aux_sym_variable_definition_token1, + aux_sym_method_definition_token1, + aux_sym_constructor_definition_token1, + [130084] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - STATE(2842), 2, + STATE(2873), 2, sym_comment, sym_include, - ACTIONS(4340), 5, + ACTIONS(4346), 5, sym__terminator, - aux_sym_query_definition_tuning_token1, - anon_sym_SCROLLING, - aux_sym_query_definition_tuning_token2, - aux_sym_query_definition_token3, - [128702] = 9, + anon_sym_COMMA, + anon_sym_COLON, + aux_sym_repeat_tuning_token1, + aux_sym_on_error_phrase_token1, + [130105] = 7, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2109), 1, - aux_sym_on_error_phrase_token1, - ACTIONS(3852), 1, - anon_sym_COLON, - STATE(2938), 1, - sym_on_error_phrase, - STATE(3059), 1, - sym_on_quit_phrase, - STATE(4257), 1, - sym_on_stop_phrase, - STATE(2843), 2, + ACTIONS(4229), 1, + aux_sym_procedure_parameter_definition_token1, + ACTIONS(4233), 1, + aux_sym_on_error_phrase_token8, + STATE(2874), 2, sym_comment, sym_include, - [128731] = 6, + ACTIONS(4348), 3, + aux_sym_on_error_phrase_token4, + aux_sym_on_error_phrase_token5, + aux_sym_on_error_phrase_token6, + [130130] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(4344), 1, + ACTIONS(4352), 1, aux_sym_variable_definition_token2, - STATE(2844), 2, + STATE(2875), 2, sym_comment, sym_include, - ACTIONS(4342), 4, + ACTIONS(4350), 4, aux_sym__block_terminator_token1, aux_sym_variable_definition_token1, aux_sym_method_definition_token1, aux_sym_constructor_definition_token1, - [128754] = 6, + [130153] = 9, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(4348), 1, - aux_sym_variable_definition_token2, - STATE(2845), 2, + ACTIONS(2109), 1, + anon_sym_COMMA, + ACTIONS(2449), 1, + anon_sym_COLON, + ACTIONS(4207), 1, + aux_sym_on_error_phrase_token1, + STATE(3324), 1, + aux_sym_for_statement_repeat1, + STATE(3327), 1, + sym_on_stop_phrase, + STATE(2876), 2, sym_comment, sym_include, - ACTIONS(4346), 4, - aux_sym__block_terminator_token1, - aux_sym_variable_definition_token1, - aux_sym_method_definition_token1, - aux_sym_constructor_definition_token1, - [128777] = 7, + [130182] = 9, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(3003), 1, - aux_sym_on_error_phrase_token1, - ACTIONS(3098), 1, + ACTIONS(2109), 1, + anon_sym_COMMA, + ACTIONS(2582), 1, anon_sym_COLON, - STATE(2846), 2, + ACTIONS(4207), 1, + aux_sym_on_error_phrase_token1, + STATE(3484), 1, + sym_on_stop_phrase, + STATE(3485), 1, + aux_sym_for_statement_repeat1, + STATE(2877), 2, sym_comment, sym_include, - STATE(4319), 3, - sym_on_error_phrase, - sym_on_stop_phrase, - sym_on_quit_phrase, - [128802] = 6, + [130211] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(4352), 1, + ACTIONS(4356), 1, aux_sym_variable_definition_token2, - STATE(2847), 2, + STATE(2878), 2, sym_comment, sym_include, - ACTIONS(4350), 4, + ACTIONS(4354), 4, aux_sym__block_terminator_token1, aux_sym_variable_definition_token1, aux_sym_method_definition_token1, aux_sym_constructor_definition_token1, - [128825] = 5, + [130234] = 5, + ACTIONS(59), 1, + anon_sym_SLASH_SLASH, + ACTIONS(61), 1, + anon_sym_SLASH_STAR, + ACTIONS(65), 1, + anon_sym_LBRACE, + STATE(2879), 2, + sym_comment, + sym_include, + ACTIONS(4358), 5, + sym__terminator, + anon_sym_COMMA, + anon_sym_COLON, + aux_sym_repeat_tuning_token1, + aux_sym_on_error_phrase_token1, + [130255] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - STATE(2848), 2, + STATE(2880), 2, sym_comment, sym_include, - ACTIONS(4354), 5, + ACTIONS(4360), 5, sym__terminator, - aux_sym_query_definition_tuning_token1, - anon_sym_SCROLLING, - aux_sym_query_definition_tuning_token2, - aux_sym_query_definition_token3, - [128846] = 9, + anon_sym_COMMA, + anon_sym_COLON, + aux_sym_repeat_tuning_token1, + aux_sym_on_error_phrase_token1, + [130276] = 8, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2105), 1, - anon_sym_COMMA, - ACTIONS(2451), 1, - anon_sym_COLON, - ACTIONS(4153), 1, + ACTIONS(4008), 1, aux_sym_on_error_phrase_token1, - STATE(3226), 1, - aux_sym_for_statement_repeat1, - STATE(3227), 1, + STATE(3054), 1, + sym_on_quit_phrase, + STATE(3971), 1, sym_on_stop_phrase, - STATE(2849), 2, + ACTIONS(2614), 2, + anon_sym_COMMA, + anon_sym_COLON, + STATE(2881), 2, sym_comment, sym_include, - [128875] = 7, + [130303] = 9, 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_procedure_parameter_definition_token1, - ACTIONS(4360), 1, - aux_sym_on_error_phrase_token8, - STATE(2850), 2, + ACTIONS(679), 1, + sym__namedot, + ACTIONS(4004), 1, + anon_sym_COMMA, + ACTIONS(4362), 1, + sym__terminator, + STATE(336), 1, + aux_sym_qualified_name_repeat1, + STATE(3404), 1, + aux_sym_data_relation_repeat1, + STATE(2882), 2, sym_comment, sym_include, - ACTIONS(4358), 3, - aux_sym_on_error_phrase_token4, - aux_sym_on_error_phrase_token5, - aux_sym_on_error_phrase_token6, - [128900] = 6, + [130332] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(4364), 1, + ACTIONS(4366), 1, aux_sym_variable_definition_token2, - STATE(2851), 2, + STATE(2883), 2, sym_comment, sym_include, - ACTIONS(4362), 4, + ACTIONS(4364), 4, aux_sym__block_terminator_token1, aux_sym_variable_definition_token1, aux_sym_method_definition_token1, aux_sym_constructor_definition_token1, - [128923] = 7, + [130355] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(4366), 1, - aux_sym_procedure_parameter_definition_token1, ACTIONS(4370), 1, - aux_sym_on_error_phrase_token8, - STATE(2852), 2, - sym_comment, - sym_include, - ACTIONS(4368), 3, - aux_sym_on_error_phrase_token4, - aux_sym_on_error_phrase_token5, - aux_sym_on_error_phrase_token6, - [128948] = 6, - ACTIONS(59), 1, - anon_sym_SLASH_SLASH, - ACTIONS(61), 1, - anon_sym_SLASH_STAR, - ACTIONS(65), 1, - anon_sym_LBRACE, - ACTIONS(4374), 1, aux_sym_variable_definition_token2, - STATE(2853), 2, + STATE(2884), 2, sym_comment, sym_include, - ACTIONS(4372), 4, + ACTIONS(4368), 4, aux_sym__block_terminator_token1, aux_sym_variable_definition_token1, aux_sym_method_definition_token1, aux_sym_constructor_definition_token1, - [128971] = 7, + [130378] = 9, 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_procedure_parameter_definition_token1, - ACTIONS(4173), 1, - aux_sym_on_error_phrase_token8, - STATE(2854), 2, + ACTIONS(2109), 1, + anon_sym_COMMA, + ACTIONS(4207), 1, + aux_sym_on_error_phrase_token1, + ACTIONS(4372), 1, + anon_sym_COLON, + STATE(3458), 1, + aux_sym_for_statement_repeat1, + STATE(3459), 1, + sym_on_stop_phrase, + STATE(2885), 2, sym_comment, sym_include, - ACTIONS(4376), 3, - aux_sym_on_error_phrase_token4, - aux_sym_on_error_phrase_token5, - aux_sym_on_error_phrase_token6, - [128996] = 9, + [130407] = 7, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2109), 1, + ACTIONS(3031), 1, aux_sym_on_error_phrase_token1, - ACTIONS(3842), 1, + ACTIONS(3425), 1, anon_sym_COLON, - STATE(2980), 1, - sym_on_error_phrase, - STATE(3168), 1, - sym_on_quit_phrase, - STATE(4311), 1, - sym_on_stop_phrase, - STATE(2855), 2, + STATE(2886), 2, sym_comment, sym_include, - [129025] = 6, + STATE(4287), 3, + sym_on_error_phrase, + sym_on_stop_phrase, + sym_on_quit_phrase, + [130432] = 7, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(4380), 1, - aux_sym_variable_definition_token2, - STATE(2856), 2, + ACTIONS(4374), 1, + aux_sym_procedure_parameter_definition_token1, + ACTIONS(4378), 1, + aux_sym_on_error_phrase_token8, + STATE(2887), 2, sym_comment, sym_include, - ACTIONS(4378), 4, - aux_sym__block_terminator_token1, - aux_sym_variable_definition_token1, - aux_sym_method_definition_token1, - aux_sym_constructor_definition_token1, - [129048] = 8, + ACTIONS(4376), 3, + aux_sym_on_error_phrase_token4, + aux_sym_on_error_phrase_token5, + aux_sym_on_error_phrase_token6, + [130457] = 7, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(3968), 1, - aux_sym_on_error_phrase_token1, - STATE(2979), 1, - sym_on_quit_phrase, - STATE(3876), 1, - sym_on_stop_phrase, - ACTIONS(2495), 2, - anon_sym_COMMA, - anon_sym_COLON, - STATE(2857), 2, + ACTIONS(4382), 1, + aux_sym_case_when_branch_token1, + STATE(3269), 1, + sym_case_when_branch, + ACTIONS(4380), 2, + aux_sym__block_terminator_token1, + aux_sym_case_otherwise_branch_token1, + STATE(2888), 3, sym_comment, sym_include, - [129075] = 9, + aux_sym_case_body_repeat1, + [130482] = 9, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2105), 1, + ACTIONS(2109), 1, anon_sym_COMMA, - ACTIONS(2576), 1, + ACTIONS(4043), 1, anon_sym_COLON, - ACTIONS(4153), 1, + ACTIONS(4207), 1, aux_sym_on_error_phrase_token1, - STATE(3209), 1, + STATE(3376), 1, sym_on_stop_phrase, - STATE(3210), 1, + STATE(3377), 1, aux_sym_for_statement_repeat1, - STATE(2858), 2, + STATE(2889), 2, sym_comment, sym_include, - [129104] = 9, + [130511] = 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(681), 1, - sym__namecolon, - ACTIONS(4382), 1, - anon_sym_EQ, - STATE(329), 1, - aux_sym_qualified_name_repeat1, - STATE(3004), 1, - aux_sym_object_access_repeat1, - STATE(2859), 2, + ACTIONS(3031), 1, + aux_sym_on_error_phrase_token1, + ACTIONS(3111), 1, + anon_sym_COLON, + STATE(2890), 2, sym_comment, sym_include, - [129133] = 7, + STATE(4345), 3, + sym_on_error_phrase, + sym_on_stop_phrase, + sym_on_quit_phrase, + [130536] = 9, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(3003), 1, - aux_sym_on_error_phrase_token1, - ACTIONS(3139), 1, + ACTIONS(2109), 1, + anon_sym_COMMA, + ACTIONS(2580), 1, anon_sym_COLON, - STATE(2860), 2, + ACTIONS(4207), 1, + aux_sym_on_error_phrase_token1, + STATE(3486), 1, + sym_on_stop_phrase, + STATE(3487), 1, + aux_sym_for_statement_repeat1, + STATE(2891), 2, sym_comment, sym_include, - STATE(4481), 3, - sym_on_error_phrase, - sym_on_stop_phrase, - sym_on_quit_phrase, - [129158] = 9, + [130565] = 7, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2109), 1, + ACTIONS(3031), 1, aux_sym_on_error_phrase_token1, - ACTIONS(3898), 1, + ACTIONS(3394), 1, anon_sym_COLON, - STATE(3000), 1, - sym_on_error_phrase, - STATE(3096), 1, - sym_on_quit_phrase, - STATE(4499), 1, - sym_on_stop_phrase, - STATE(2861), 2, + STATE(2892), 2, sym_comment, sym_include, - [129187] = 7, + STATE(4356), 3, + sym_on_error_phrase, + sym_on_stop_phrase, + sym_on_quit_phrase, + [130590] = 7, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(4384), 1, - aux_sym_procedure_parameter_definition_token1, - ACTIONS(4388), 1, - aux_sym_on_error_phrase_token8, - STATE(2862), 2, + ACTIONS(3031), 1, + aux_sym_on_error_phrase_token1, + ACTIONS(3450), 1, + anon_sym_COLON, + STATE(2893), 2, sym_comment, sym_include, - ACTIONS(4386), 3, - aux_sym_on_error_phrase_token4, - aux_sym_on_error_phrase_token5, - aux_sym_on_error_phrase_token6, - [129212] = 6, + STATE(4482), 3, + sym_on_error_phrase, + sym_on_stop_phrase, + sym_on_quit_phrase, + [130615] = 9, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(4392), 1, - aux_sym_variable_definition_token2, - STATE(2863), 2, + ACTIONS(2109), 1, + anon_sym_COMMA, + ACTIONS(2604), 1, + anon_sym_COLON, + ACTIONS(4207), 1, + aux_sym_on_error_phrase_token1, + STATE(3351), 1, + aux_sym_for_statement_repeat1, + STATE(3352), 1, + sym_on_stop_phrase, + STATE(2894), 2, sym_comment, sym_include, - ACTIONS(4390), 4, - aux_sym__block_terminator_token1, - aux_sym_variable_definition_token1, - aux_sym_method_definition_token1, - aux_sym_constructor_definition_token1, - [129235] = 9, + [130644] = 9, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2105), 1, + ACTIONS(2109), 1, anon_sym_COMMA, - ACTIONS(2457), 1, + ACTIONS(4073), 1, anon_sym_COLON, - ACTIONS(4153), 1, + ACTIONS(4207), 1, aux_sym_on_error_phrase_token1, - STATE(3207), 1, - sym_on_stop_phrase, - STATE(3208), 1, + STATE(3440), 1, aux_sym_for_statement_repeat1, - STATE(2864), 2, + STATE(3441), 1, + sym_on_stop_phrase, + STATE(2895), 2, sym_comment, sym_include, - [129264] = 9, + [130673] = 8, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2105), 1, - anon_sym_COMMA, - ACTIONS(4153), 1, + ACTIONS(4008), 1, aux_sym_on_error_phrase_token1, - ACTIONS(4394), 1, - anon_sym_COLON, - STATE(3182), 1, + STATE(3003), 1, + sym_on_quit_phrase, + STATE(3919), 1, sym_on_stop_phrase, - STATE(3183), 1, - aux_sym_for_statement_repeat1, - STATE(2865), 2, + ACTIONS(2618), 2, + anon_sym_COMMA, + anon_sym_COLON, + STATE(2896), 2, sym_comment, sym_include, - [129293] = 9, + [130700] = 9, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2105), 1, + ACTIONS(2109), 1, anon_sym_COMMA, - ACTIONS(3244), 1, + ACTIONS(2433), 1, anon_sym_COLON, - ACTIONS(4153), 1, + ACTIONS(4207), 1, aux_sym_on_error_phrase_token1, - STATE(3333), 1, + STATE(3257), 1, aux_sym_for_statement_repeat1, - STATE(3335), 1, + STATE(3258), 1, sym_on_stop_phrase, - STATE(2866), 2, + STATE(2897), 2, sym_comment, sym_include, - [129322] = 7, + [130729] = 7, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(3003), 1, + ACTIONS(3031), 1, aux_sym_on_error_phrase_token1, - ACTIONS(3131), 1, + ACTIONS(4385), 1, anon_sym_COLON, - STATE(2867), 2, + STATE(2898), 2, sym_comment, sym_include, - STATE(4247), 3, + STATE(4496), 3, sym_on_error_phrase, sym_on_stop_phrase, sym_on_quit_phrase, - [129347] = 9, + [130754] = 9, 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(2721), 1, - aux_sym_inherits_token1, - ACTIONS(4396), 1, + ACTIONS(2109), 1, + anon_sym_COMMA, + ACTIONS(2586), 1, anon_sym_COLON, - STATE(329), 1, - aux_sym_qualified_name_repeat1, - STATE(4600), 1, - sym_inherits, - STATE(2868), 2, + ACTIONS(4207), 1, + aux_sym_on_error_phrase_token1, + STATE(3238), 1, + sym_on_stop_phrase, + STATE(3239), 1, + aux_sym_for_statement_repeat1, + STATE(2899), 2, + sym_comment, + sym_include, + [130783] = 7, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_LBRACE, + ACTIONS(4387), 1, + sym_identifier, + STATE(4414), 1, + sym_access_tuning, + STATE(2900), 2, sym_comment, sym_include, - [129376] = 6, + ACTIONS(4389), 3, + aux_sym_access_tuning_token1, + aux_sym_access_tuning_token2, + aux_sym_access_tuning_token3, + [130808] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(4400), 1, + ACTIONS(4393), 1, aux_sym_variable_definition_token2, - STATE(2869), 2, + STATE(2901), 2, sym_comment, sym_include, - ACTIONS(4398), 4, + ACTIONS(4391), 4, aux_sym__block_terminator_token1, aux_sym_variable_definition_token1, aux_sym_method_definition_token1, aux_sym_constructor_definition_token1, - [129399] = 9, + [130831] = 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(2721), 1, - aux_sym_inherits_token1, - ACTIONS(4402), 1, + ACTIONS(3031), 1, + aux_sym_on_error_phrase_token1, + ACTIONS(3423), 1, anon_sym_COLON, - STATE(329), 1, - aux_sym_qualified_name_repeat1, - STATE(4519), 1, - sym_inherits, - STATE(2870), 2, + STATE(2902), 2, sym_comment, sym_include, - [129428] = 7, + STATE(4265), 3, + sym_on_error_phrase, + sym_on_stop_phrase, + sym_on_quit_phrase, + [130856] = 7, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(3003), 1, - aux_sym_on_error_phrase_token1, - ACTIONS(4404), 1, + ACTIONS(4395), 1, + aux_sym_procedure_parameter_definition_token1, + ACTIONS(4399), 1, + aux_sym_on_error_phrase_token8, + STATE(2903), 2, + sym_comment, + sym_include, + ACTIONS(4397), 3, + aux_sym_on_error_phrase_token4, + aux_sym_on_error_phrase_token5, + aux_sym_on_error_phrase_token6, + [130881] = 9, + 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(2703), 1, + aux_sym_inherits_token1, + ACTIONS(4401), 1, anon_sym_COLON, - STATE(2871), 2, + STATE(336), 1, + aux_sym_qualified_name_repeat1, + STATE(4713), 1, + sym_inherits, + STATE(2904), 2, sym_comment, sym_include, - STATE(4231), 3, - sym_on_error_phrase, - sym_on_stop_phrase, - sym_on_quit_phrase, - [129453] = 9, + [130910] = 9, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2105), 1, + ACTIONS(2109), 1, anon_sym_COMMA, - ACTIONS(4094), 1, + ACTIONS(2590), 1, anon_sym_COLON, - ACTIONS(4153), 1, + ACTIONS(4207), 1, aux_sym_on_error_phrase_token1, - STATE(3186), 1, - sym_on_stop_phrase, - STATE(3187), 1, + STATE(3382), 1, aux_sym_for_statement_repeat1, - STATE(2872), 2, + STATE(3385), 1, + sym_on_stop_phrase, + STATE(2905), 2, sym_comment, sym_include, - [129482] = 9, + [130939] = 9, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2105), 1, + ACTIONS(2109), 1, anon_sym_COMMA, - ACTIONS(2606), 1, + ACTIONS(2441), 1, anon_sym_COLON, - ACTIONS(4153), 1, + ACTIONS(4207), 1, aux_sym_on_error_phrase_token1, - STATE(3202), 1, - sym_on_stop_phrase, - STATE(3203), 1, + STATE(3343), 1, aux_sym_for_statement_repeat1, - STATE(2873), 2, + STATE(3344), 1, + sym_on_stop_phrase, + STATE(2906), 2, sym_comment, sym_include, - [129511] = 9, + [130968] = 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(4038), 1, - anon_sym_COMMA, - ACTIONS(4406), 1, - anon_sym_RPAREN, - STATE(329), 1, - aux_sym_qualified_name_repeat1, - STATE(3552), 1, - aux_sym_data_relation_repeat1, - STATE(2874), 2, + ACTIONS(3807), 1, + anon_sym_DQUOTE, + ACTIONS(3809), 1, + anon_sym_SQUOTE, + STATE(2266), 1, + sym__string_literal, + STATE(1769), 2, + sym_double_quoted_string, + sym_single_quoted_string, + STATE(2907), 2, sym_comment, sym_include, - [129540] = 7, + [130995] = 7, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(4408), 1, + ACTIONS(4403), 1, aux_sym_procedure_parameter_definition_token1, - ACTIONS(4412), 1, + ACTIONS(4407), 1, aux_sym_on_error_phrase_token8, - STATE(2875), 2, + STATE(2908), 2, sym_comment, sym_include, - ACTIONS(4410), 3, + ACTIONS(4405), 3, aux_sym_on_error_phrase_token4, aux_sym_on_error_phrase_token5, aux_sym_on_error_phrase_token6, - [129565] = 8, + [131020] = 9, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(3968), 1, - aux_sym_on_error_phrase_token1, - STATE(2921), 1, - sym_on_quit_phrase, - STATE(3628), 1, - sym_on_stop_phrase, - ACTIONS(4414), 2, + ACTIONS(2109), 1, anon_sym_COMMA, + ACTIONS(2451), 1, anon_sym_COLON, - STATE(2876), 2, + ACTIONS(4207), 1, + aux_sym_on_error_phrase_token1, + STATE(3488), 1, + sym_on_stop_phrase, + STATE(3489), 1, + aux_sym_for_statement_repeat1, + STATE(2909), 2, sym_comment, sym_include, - [129592] = 9, + [131049] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2105), 1, - anon_sym_COMMA, - ACTIONS(4153), 1, - aux_sym_on_error_phrase_token1, - ACTIONS(4416), 1, - anon_sym_COLON, - STATE(3188), 1, - sym_on_stop_phrase, - STATE(3189), 1, - aux_sym_for_statement_repeat1, - STATE(2877), 2, + ACTIONS(4411), 1, + aux_sym_variable_definition_token2, + STATE(2910), 2, sym_comment, sym_include, - [129621] = 9, + ACTIONS(4409), 4, + aux_sym__block_terminator_token1, + aux_sym_variable_definition_token1, + aux_sym_method_definition_token1, + aux_sym_constructor_definition_token1, + [131072] = 8, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2105), 1, - anon_sym_COMMA, - ACTIONS(2455), 1, - anon_sym_COLON, - ACTIONS(4153), 1, + ACTIONS(4008), 1, aux_sym_on_error_phrase_token1, - STATE(3295), 1, + STATE(3017), 1, + sym_on_quit_phrase, + STATE(4120), 1, sym_on_stop_phrase, - STATE(3296), 1, - aux_sym_for_statement_repeat1, - STATE(2878), 2, + ACTIONS(2455), 2, + anon_sym_COMMA, + anon_sym_COLON, + STATE(2911), 2, sym_comment, sym_include, - [129650] = 6, + [131099] = 7, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(4420), 1, - aux_sym_variable_definition_token2, - STATE(2879), 2, + ACTIONS(4229), 1, + aux_sym_procedure_parameter_definition_token1, + ACTIONS(4233), 1, + aux_sym_on_error_phrase_token8, + STATE(2912), 2, sym_comment, sym_include, - ACTIONS(4418), 4, - aux_sym__block_terminator_token1, - aux_sym_variable_definition_token1, - aux_sym_method_definition_token1, - aux_sym_constructor_definition_token1, - [129673] = 7, + ACTIONS(4413), 3, + aux_sym_on_error_phrase_token4, + aux_sym_on_error_phrase_token5, + aux_sym_on_error_phrase_token6, + [131124] = 9, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(3003), 1, - aux_sym_on_error_phrase_token1, - ACTIONS(3116), 1, + ACTIONS(2109), 1, + anon_sym_COMMA, + ACTIONS(2608), 1, anon_sym_COLON, - STATE(2880), 2, + ACTIONS(4207), 1, + aux_sym_on_error_phrase_token1, + STATE(3314), 1, + sym_on_stop_phrase, + STATE(3315), 1, + aux_sym_for_statement_repeat1, + STATE(2913), 2, sym_comment, sym_include, - STATE(4532), 3, - sym_on_error_phrase, - sym_on_stop_phrase, - sym_on_quit_phrase, - [129698] = 9, + [131153] = 9, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2105), 1, - anon_sym_COMMA, - ACTIONS(3264), 1, - anon_sym_COLON, - ACTIONS(4153), 1, - aux_sym_on_error_phrase_token1, - STATE(3190), 1, - sym_on_stop_phrase, - STATE(3191), 1, - aux_sym_for_statement_repeat1, - STATE(2881), 2, + ACTIONS(679), 1, + sym__namedot, + ACTIONS(681), 1, + sym__namecolon, + ACTIONS(4415), 1, + anon_sym_EQ, + STATE(336), 1, + aux_sym_qualified_name_repeat1, + STATE(3145), 1, + aux_sym_object_access_repeat1, + STATE(2914), 2, sym_comment, sym_include, - [129727] = 7, + [131182] = 7, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(4422), 1, + ACTIONS(4417), 1, aux_sym_procedure_parameter_definition_token1, - ACTIONS(4426), 1, + ACTIONS(4421), 1, aux_sym_on_error_phrase_token8, - STATE(2882), 2, + STATE(2915), 2, sym_comment, sym_include, - ACTIONS(4424), 3, + ACTIONS(4419), 3, aux_sym_on_error_phrase_token4, aux_sym_on_error_phrase_token5, aux_sym_on_error_phrase_token6, - [129752] = 9, + [131207] = 9, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2105), 1, + ACTIONS(2109), 1, anon_sym_COMMA, - ACTIONS(4104), 1, + ACTIONS(2606), 1, anon_sym_COLON, - ACTIONS(4153), 1, + ACTIONS(4207), 1, aux_sym_on_error_phrase_token1, - STATE(3192), 1, + STATE(3253), 1, sym_on_stop_phrase, - STATE(3193), 1, + STATE(3254), 1, aux_sym_for_statement_repeat1, - STATE(2883), 2, + STATE(2916), 2, sym_comment, sym_include, - [129781] = 7, + [131236] = 9, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(3003), 1, - aux_sym_on_error_phrase_token1, - ACTIONS(3072), 1, + ACTIONS(2109), 1, + anon_sym_COMMA, + ACTIONS(2463), 1, anon_sym_COLON, - STATE(2884), 2, + ACTIONS(4207), 1, + aux_sym_on_error_phrase_token1, + STATE(3334), 1, + sym_on_stop_phrase, + STATE(3335), 1, + aux_sym_for_statement_repeat1, + STATE(2917), 2, sym_comment, sym_include, - STATE(4414), 3, - sym_on_error_phrase, - sym_on_stop_phrase, - sym_on_quit_phrase, - [129806] = 7, + [131265] = 7, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(3003), 1, + ACTIONS(3031), 1, aux_sym_on_error_phrase_token1, - ACTIONS(3326), 1, + ACTIONS(4423), 1, anon_sym_COLON, - STATE(2885), 2, + STATE(2918), 2, sym_comment, sym_include, - STATE(4137), 3, + STATE(4300), 3, sym_on_error_phrase, sym_on_stop_phrase, sym_on_quit_phrase, - [129831] = 9, + [131290] = 7, + ACTIONS(59), 1, + anon_sym_SLASH_SLASH, + ACTIONS(61), 1, + anon_sym_SLASH_STAR, + ACTIONS(65), 1, + anon_sym_LBRACE, + ACTIONS(4417), 1, + aux_sym_procedure_parameter_definition_token1, + ACTIONS(4421), 1, + aux_sym_on_error_phrase_token8, + STATE(2919), 2, + sym_comment, + sym_include, + ACTIONS(4425), 3, + aux_sym_on_error_phrase_token4, + aux_sym_on_error_phrase_token5, + aux_sym_on_error_phrase_token6, + [131315] = 9, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2105), 1, + ACTIONS(2109), 1, anon_sym_COMMA, - ACTIONS(2602), 1, + ACTIONS(2584), 1, anon_sym_COLON, - ACTIONS(4153), 1, + ACTIONS(4207), 1, aux_sym_on_error_phrase_token1, - STATE(3195), 1, + STATE(3493), 1, sym_on_stop_phrase, - STATE(3196), 1, + STATE(3494), 1, aux_sym_for_statement_repeat1, - STATE(2886), 2, + STATE(2920), 2, sym_comment, sym_include, - [129860] = 7, + [131344] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(4430), 1, - aux_sym_case_when_branch_token1, - STATE(3156), 1, - sym_case_when_branch, - ACTIONS(4428), 2, - aux_sym__block_terminator_token1, - aux_sym_case_otherwise_branch_token1, - STATE(2887), 3, + ACTIONS(4429), 1, + aux_sym_variable_definition_token2, + STATE(2921), 2, sym_comment, sym_include, - aux_sym_case_body_repeat1, - [129885] = 9, + ACTIONS(4427), 4, + aux_sym__block_terminator_token1, + aux_sym_variable_definition_token1, + aux_sym_method_definition_token1, + aux_sym_constructor_definition_token1, + [131367] = 9, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, @@ -150133,551 +151876,506 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(65), 1, anon_sym_LBRACE, ACTIONS(2109), 1, - aux_sym_on_error_phrase_token1, - ACTIONS(4433), 1, + anon_sym_COMMA, + ACTIONS(2572), 1, anon_sym_COLON, - STATE(2993), 1, - sym_on_error_phrase, - STATE(3304), 1, - sym_on_quit_phrase, - STATE(4195), 1, + ACTIONS(4207), 1, + aux_sym_on_error_phrase_token1, + STATE(3317), 1, sym_on_stop_phrase, - STATE(2888), 2, + STATE(3318), 1, + aux_sym_for_statement_repeat1, + STATE(2922), 2, sym_comment, sym_include, - [129914] = 6, + [131396] = 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(2889), 2, + ACTIONS(679), 1, + sym__namedot, + ACTIONS(2703), 1, + aux_sym_inherits_token1, + ACTIONS(4431), 1, + anon_sym_COLON, + STATE(336), 1, + aux_sym_qualified_name_repeat1, + STATE(4598), 1, + sym_inherits, + STATE(2923), 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, - [129937] = 6, + [131425] = 9, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(4441), 1, - aux_sym_variable_definition_token2, - STATE(2890), 2, + ACTIONS(2109), 1, + anon_sym_COMMA, + ACTIONS(2576), 1, + anon_sym_COLON, + ACTIONS(4207), 1, + aux_sym_on_error_phrase_token1, + STATE(3393), 1, + sym_on_stop_phrase, + STATE(3394), 1, + aux_sym_for_statement_repeat1, + STATE(2924), 2, sym_comment, sym_include, - ACTIONS(4439), 4, - aux_sym__block_terminator_token1, - aux_sym_variable_definition_token1, - aux_sym_method_definition_token1, - aux_sym_constructor_definition_token1, - [129960] = 9, + [131454] = 7, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2109), 1, + ACTIONS(3031), 1, aux_sym_on_error_phrase_token1, - ACTIONS(3854), 1, + ACTIONS(3342), 1, anon_sym_COLON, - STATE(2991), 1, - sym_on_error_phrase, - STATE(3510), 1, - sym_on_quit_phrase, - STATE(4490), 1, - sym_on_stop_phrase, - STATE(2891), 2, + STATE(2925), 2, sym_comment, sym_include, - [129989] = 7, + STATE(4245), 3, + sym_on_error_phrase, + sym_on_stop_phrase, + sym_on_quit_phrase, + [131479] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(3003), 1, - aux_sym_on_error_phrase_token1, - ACTIONS(3400), 1, - anon_sym_COLON, - STATE(2892), 2, + ACTIONS(4435), 1, + aux_sym_variable_definition_token2, + STATE(2926), 2, sym_comment, sym_include, - STATE(4192), 3, - sym_on_error_phrase, - sym_on_stop_phrase, - sym_on_quit_phrase, - [130014] = 6, + ACTIONS(4433), 4, + aux_sym__block_terminator_token1, + aux_sym_variable_definition_token1, + aux_sym_method_definition_token1, + aux_sym_constructor_definition_token1, + [131502] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(4445), 1, + ACTIONS(4439), 1, aux_sym_variable_definition_token2, - STATE(2893), 2, + STATE(2927), 2, sym_comment, sym_include, - ACTIONS(4443), 4, + ACTIONS(4437), 4, aux_sym__block_terminator_token1, aux_sym_variable_definition_token1, aux_sym_method_definition_token1, aux_sym_constructor_definition_token1, - [130037] = 9, + [131525] = 9, 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(2721), 1, - aux_sym_inherits_token1, - ACTIONS(4447), 1, + ACTIONS(2109), 1, + anon_sym_COMMA, + ACTIONS(2457), 1, anon_sym_COLON, - STATE(329), 1, - aux_sym_qualified_name_repeat1, - STATE(4632), 1, - sym_inherits, - STATE(2894), 2, + ACTIONS(4207), 1, + aux_sym_on_error_phrase_token1, + STATE(3249), 1, + sym_on_stop_phrase, + STATE(3251), 1, + aux_sym_for_statement_repeat1, + STATE(2928), 2, sym_comment, sym_include, - [130066] = 6, + [131554] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(4451), 1, + ACTIONS(4443), 1, aux_sym_variable_definition_token2, - STATE(2895), 2, + STATE(2929), 2, sym_comment, sym_include, - ACTIONS(4449), 4, + ACTIONS(4441), 4, aux_sym__block_terminator_token1, aux_sym_variable_definition_token1, aux_sym_method_definition_token1, aux_sym_constructor_definition_token1, - [130089] = 6, + [131577] = 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(3031), 1, + aux_sym_on_error_phrase_token1, + ACTIONS(3214), 1, + anon_sym_COLON, + STATE(2930), 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, - [130112] = 6, + STATE(4611), 3, + sym_on_error_phrase, + sym_on_stop_phrase, + sym_on_quit_phrase, + [131602] = 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(4447), 1, aux_sym_variable_definition_token2, - STATE(2897), 2, + STATE(2931), 2, sym_comment, sym_include, - ACTIONS(4457), 4, + ACTIONS(4445), 4, aux_sym__block_terminator_token1, aux_sym_variable_definition_token1, aux_sym_method_definition_token1, aux_sym_constructor_definition_token1, - [130135] = 6, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - ACTIONS(7), 1, - anon_sym_LBRACE, - ACTIONS(4463), 1, - aux_sym_widget_field_token1, - STATE(2898), 2, - sym_comment, - sym_include, - ACTIONS(4461), 4, - sym_identifier, - aux_sym_input_expression_token2, - aux_sym_do_block_token1, - aux_sym_field_definition_token1, - [130158] = 9, + [131625] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2109), 1, - aux_sym_on_error_phrase_token1, - ACTIONS(3786), 1, - anon_sym_COLON, - STATE(2937), 1, - sym_on_error_phrase, - STATE(3315), 1, - sym_on_quit_phrase, - STATE(4221), 1, - sym_on_stop_phrase, - STATE(2899), 2, + ACTIONS(4451), 1, + aux_sym_variable_definition_token2, + STATE(2932), 2, sym_comment, sym_include, - [130187] = 9, + ACTIONS(4449), 4, + aux_sym__block_terminator_token1, + aux_sym_variable_definition_token1, + aux_sym_method_definition_token1, + aux_sym_constructor_definition_token1, + [131648] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2109), 1, - aux_sym_on_error_phrase_token1, - ACTIONS(3806), 1, - anon_sym_COLON, - STATE(2952), 1, - sym_on_error_phrase, - STATE(3528), 1, - sym_on_quit_phrase, - STATE(4541), 1, - sym_on_stop_phrase, - STATE(2900), 2, + ACTIONS(4455), 1, + aux_sym_variable_definition_token2, + STATE(2933), 2, sym_comment, sym_include, - [130216] = 9, + ACTIONS(4453), 4, + aux_sym__block_terminator_token1, + aux_sym_variable_definition_token1, + aux_sym_method_definition_token1, + aux_sym_constructor_definition_token1, + [131671] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2105), 1, + STATE(2934), 2, + sym_comment, + sym_include, + ACTIONS(4457), 5, anon_sym_COMMA, - ACTIONS(3248), 1, anon_sym_COLON, - ACTIONS(4153), 1, aux_sym_on_error_phrase_token1, - STATE(3197), 1, - sym_on_stop_phrase, - STATE(3198), 1, - aux_sym_for_statement_repeat1, - STATE(2901), 2, - sym_comment, - sym_include, - [130245] = 9, + aux_sym_sort_clause_token1, + aux_sym_sort_clause_token2, + [131692] = 9, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2105), 1, + ACTIONS(2109), 1, anon_sym_COMMA, - ACTIONS(2395), 1, + ACTIONS(2423), 1, anon_sym_COLON, - ACTIONS(4153), 1, + ACTIONS(4207), 1, aux_sym_on_error_phrase_token1, - STATE(3307), 1, + STATE(3498), 1, aux_sym_for_statement_repeat1, - STATE(3308), 1, + STATE(3501), 1, sym_on_stop_phrase, - STATE(2902), 2, + STATE(2935), 2, sym_comment, sym_include, - [130274] = 9, + [131721] = 9, 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(4038), 1, + ACTIONS(2109), 1, anon_sym_COMMA, - ACTIONS(4465), 1, - sym__terminator, - STATE(329), 1, - aux_sym_qualified_name_repeat1, - STATE(3379), 1, - aux_sym_data_relation_repeat1, - STATE(2903), 2, - sym_comment, - sym_include, - [130303] = 6, - 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_variable_definition_token2, - STATE(2904), 2, + ACTIONS(3242), 1, + anon_sym_COLON, + ACTIONS(4207), 1, + aux_sym_on_error_phrase_token1, + STATE(3380), 1, + sym_on_stop_phrase, + STATE(3381), 1, + aux_sym_for_statement_repeat1, + STATE(2936), 2, sym_comment, sym_include, - ACTIONS(4467), 4, - aux_sym__block_terminator_token1, - aux_sym_variable_definition_token1, - aux_sym_method_definition_token1, - aux_sym_constructor_definition_token1, - [130326] = 6, + [131750] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(4473), 1, + ACTIONS(4461), 1, aux_sym_variable_definition_token2, - STATE(2905), 2, + STATE(2937), 2, sym_comment, sym_include, - ACTIONS(4471), 4, + ACTIONS(4459), 4, aux_sym__block_terminator_token1, aux_sym_variable_definition_token1, aux_sym_method_definition_token1, aux_sym_constructor_definition_token1, - [130349] = 6, + [131773] = 9, 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_variable_definition_token2, - STATE(2906), 2, + ACTIONS(679), 1, + sym__namedot, + ACTIONS(4004), 1, + anon_sym_COMMA, + ACTIONS(4463), 1, + anon_sym_RPAREN, + STATE(336), 1, + aux_sym_qualified_name_repeat1, + STATE(3533), 1, + aux_sym_data_relation_repeat1, + STATE(2938), 2, sym_comment, sym_include, - ACTIONS(4475), 4, - aux_sym__block_terminator_token1, - aux_sym_variable_definition_token1, - aux_sym_method_definition_token1, - aux_sym_constructor_definition_token1, - [130372] = 7, + [131802] = 7, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(4479), 1, - aux_sym_procedure_parameter_definition_token1, - ACTIONS(4483), 1, - aux_sym_on_error_phrase_token8, - STATE(2907), 2, + ACTIONS(3031), 1, + aux_sym_on_error_phrase_token1, + ACTIONS(3429), 1, + anon_sym_COLON, + STATE(2939), 2, sym_comment, sym_include, - ACTIONS(4481), 3, - aux_sym_on_error_phrase_token4, - aux_sym_on_error_phrase_token5, - aux_sym_on_error_phrase_token6, - [130397] = 6, + STATE(4541), 3, + sym_on_error_phrase, + sym_on_stop_phrase, + sym_on_quit_phrase, + [131827] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(4487), 1, + ACTIONS(4467), 1, aux_sym_variable_definition_token2, - STATE(2908), 2, + STATE(2940), 2, sym_comment, sym_include, - ACTIONS(4485), 4, + ACTIONS(4465), 4, aux_sym__block_terminator_token1, aux_sym_variable_definition_token1, aux_sym_method_definition_token1, aux_sym_constructor_definition_token1, - [130420] = 6, + [131850] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(4491), 1, + ACTIONS(4471), 1, aux_sym_variable_definition_token2, - STATE(2909), 2, + STATE(2941), 2, sym_comment, sym_include, - ACTIONS(4489), 4, + ACTIONS(4469), 4, aux_sym__block_terminator_token1, aux_sym_variable_definition_token1, aux_sym_method_definition_token1, aux_sym_constructor_definition_token1, - [130443] = 9, + [131873] = 9, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2105), 1, + ACTIONS(2109), 1, anon_sym_COMMA, - ACTIONS(2596), 1, + ACTIONS(2417), 1, anon_sym_COLON, - ACTIONS(4153), 1, + ACTIONS(4207), 1, aux_sym_on_error_phrase_token1, - STATE(3200), 1, + STATE(3284), 1, sym_on_stop_phrase, - STATE(3201), 1, + STATE(3285), 1, aux_sym_for_statement_repeat1, - STATE(2910), 2, + STATE(2942), 2, sym_comment, sym_include, - [130472] = 9, + [131902] = 7, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2105), 1, - anon_sym_COMMA, - ACTIONS(2604), 1, - anon_sym_COLON, - ACTIONS(4153), 1, + ACTIONS(3031), 1, aux_sym_on_error_phrase_token1, - STATE(3351), 1, - sym_on_stop_phrase, - STATE(3415), 1, - aux_sym_for_statement_repeat1, - STATE(2911), 2, + ACTIONS(4473), 1, + anon_sym_COLON, + STATE(2943), 2, sym_comment, sym_include, - [130501] = 9, + STATE(4190), 3, + sym_on_error_phrase, + sym_on_stop_phrase, + sym_on_quit_phrase, + [131927] = 9, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2105), 1, + ACTIONS(2109), 1, anon_sym_COMMA, - ACTIONS(2415), 1, + ACTIONS(2596), 1, anon_sym_COLON, - ACTIONS(4153), 1, + ACTIONS(4207), 1, aux_sym_on_error_phrase_token1, - STATE(3293), 1, - aux_sym_for_statement_repeat1, - STATE(3294), 1, + STATE(3246), 1, sym_on_stop_phrase, - STATE(2912), 2, + STATE(3247), 1, + aux_sym_for_statement_repeat1, + STATE(2944), 2, sym_comment, sym_include, - [130530] = 9, + [131956] = 9, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2105), 1, + ACTIONS(2109), 1, anon_sym_COMMA, - ACTIONS(2463), 1, + ACTIONS(2598), 1, anon_sym_COLON, - ACTIONS(4153), 1, + ACTIONS(4207), 1, aux_sym_on_error_phrase_token1, - STATE(3284), 1, - sym_on_stop_phrase, - STATE(3285), 1, + STATE(3424), 1, aux_sym_for_statement_repeat1, - STATE(2913), 2, + STATE(3428), 1, + sym_on_stop_phrase, + STATE(2945), 2, sym_comment, sym_include, - [130559] = 6, + [131985] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(4495), 1, + ACTIONS(4477), 1, aux_sym_variable_definition_token2, - STATE(2914), 2, + STATE(2946), 2, sym_comment, sym_include, - ACTIONS(4493), 4, + ACTIONS(4475), 4, aux_sym__block_terminator_token1, aux_sym_variable_definition_token1, aux_sym_method_definition_token1, aux_sym_constructor_definition_token1, - [130582] = 6, + [132008] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(4499), 1, + ACTIONS(4481), 1, aux_sym_variable_definition_token2, - STATE(2915), 2, + STATE(2947), 2, sym_comment, sym_include, - ACTIONS(4497), 4, + ACTIONS(4479), 4, aux_sym__block_terminator_token1, aux_sym_variable_definition_token1, aux_sym_method_definition_token1, aux_sym_constructor_definition_token1, - [130605] = 9, + [132031] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2105), 1, + STATE(2948), 2, + sym_comment, + sym_include, + ACTIONS(4483), 5, + sym__terminator, anon_sym_COMMA, - ACTIONS(2429), 1, anon_sym_COLON, - ACTIONS(4153), 1, + aux_sym_repeat_tuning_token1, aux_sym_on_error_phrase_token1, - STATE(3244), 1, - sym_on_stop_phrase, - STATE(3245), 1, - aux_sym_for_statement_repeat1, - STATE(2916), 2, - sym_comment, - sym_include, - [130634] = 7, + [132052] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2999), 1, - anon_sym_COLON, - ACTIONS(3003), 1, - aux_sym_on_error_phrase_token1, - STATE(2917), 2, + STATE(2949), 2, sym_comment, sym_include, - STATE(4218), 3, - sym_on_error_phrase, - sym_on_stop_phrase, - sym_on_quit_phrase, - [130659] = 9, + ACTIONS(4485), 5, + sym__terminator, + anon_sym_COMMA, + anon_sym_COLON, + aux_sym_repeat_tuning_token1, + aux_sym_on_error_phrase_token1, + [132073] = 9, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, @@ -150686,2630 +152384,2646 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, ACTIONS(679), 1, sym__namedot, - ACTIONS(4038), 1, + ACTIONS(4004), 1, anon_sym_COMMA, - ACTIONS(4501), 1, - anon_sym_RPAREN, - STATE(329), 1, + ACTIONS(4487), 1, + sym__terminator, + STATE(336), 1, aux_sym_qualified_name_repeat1, - STATE(3547), 1, + STATE(3449), 1, aux_sym_data_relation_repeat1, - STATE(2918), 2, - sym_comment, - sym_include, - [130688] = 7, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - ACTIONS(7), 1, - anon_sym_LBRACE, - ACTIONS(4505), 1, - anon_sym_SQUOTE, - STATE(2973), 1, - aux_sym_single_quoted_string_repeat1, - ACTIONS(4503), 2, - aux_sym_double_quoted_string_token2, - aux_sym_single_quoted_string_token1, - STATE(2919), 2, - sym_comment, - sym_include, - [130712] = 7, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - ACTIONS(7), 1, - anon_sym_LBRACE, - ACTIONS(4507), 1, - anon_sym_DQUOTE, - STATE(2923), 1, - aux_sym_double_quoted_string_repeat1, - ACTIONS(4509), 2, - aux_sym_double_quoted_string_token1, - aux_sym_double_quoted_string_token2, - STATE(2920), 2, + STATE(2950), 2, sym_comment, sym_include, - [130736] = 7, + [132102] = 9, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(4153), 1, - aux_sym_on_error_phrase_token1, - STATE(3599), 1, - sym_on_stop_phrase, - ACTIONS(4511), 2, + ACTIONS(2109), 1, anon_sym_COMMA, + ACTIONS(2461), 1, anon_sym_COLON, - STATE(2921), 2, - sym_comment, - sym_include, - [130760] = 7, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - ACTIONS(7), 1, - anon_sym_LBRACE, - ACTIONS(4513), 1, - anon_sym_DQUOTE, - STATE(3051), 1, - aux_sym_double_quoted_string_repeat1, - ACTIONS(4509), 2, - aux_sym_double_quoted_string_token1, - aux_sym_double_quoted_string_token2, - STATE(2922), 2, - sym_comment, - sym_include, - [130784] = 7, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - ACTIONS(7), 1, - anon_sym_LBRACE, - ACTIONS(4515), 1, - anon_sym_DQUOTE, - STATE(3051), 1, - aux_sym_double_quoted_string_repeat1, - ACTIONS(4509), 2, - aux_sym_double_quoted_string_token1, - aux_sym_double_quoted_string_token2, - STATE(2923), 2, - sym_comment, - sym_include, - [130808] = 7, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - ACTIONS(7), 1, - anon_sym_LBRACE, - ACTIONS(4517), 1, - anon_sym_SQUOTE, - STATE(2919), 1, - aux_sym_single_quoted_string_repeat1, - ACTIONS(4503), 2, - aux_sym_double_quoted_string_token2, - aux_sym_single_quoted_string_token1, - STATE(2924), 2, - sym_comment, - sym_include, - [130832] = 5, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - ACTIONS(143), 1, - sym_identifier, - STATE(2925), 2, + ACTIONS(4207), 1, + aux_sym_on_error_phrase_token1, + STATE(3505), 1, + sym_on_stop_phrase, + STATE(3506), 1, + aux_sym_for_statement_repeat1, + STATE(2951), 2, sym_comment, sym_include, - ACTIONS(141), 4, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_DQUOTE, - aux_sym_include_argument_token1, - [130852] = 7, - ACTIONS(3), 1, + [132131] = 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(4519), 1, - anon_sym_DQUOTE, - STATE(2922), 1, - aux_sym_double_quoted_string_repeat1, - ACTIONS(4509), 2, - aux_sym_double_quoted_string_token1, - aux_sym_double_quoted_string_token2, - STATE(2926), 2, - sym_comment, - sym_include, - [130876] = 5, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - ACTIONS(4521), 1, - sym_identifier, - STATE(2927), 2, + ACTIONS(4491), 1, + aux_sym_variable_definition_token2, + STATE(2952), 2, sym_comment, sym_include, - ACTIONS(4523), 4, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_DQUOTE, - aux_sym_include_argument_token1, - [130896] = 8, + ACTIONS(4489), 4, + aux_sym__block_terminator_token1, + aux_sym_variable_definition_token1, + aux_sym_method_definition_token1, + aux_sym_constructor_definition_token1, + [132154] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(4038), 1, - anon_sym_COMMA, - ACTIONS(4040), 1, - aux_sym_data_relation_token1, - STATE(2576), 1, - aux_sym_data_relation_repeat1, - STATE(4351), 1, - sym_data_relation, - STATE(2928), 2, + ACTIONS(4495), 1, + aux_sym_variable_definition_token2, + STATE(2953), 2, sym_comment, sym_include, - [130922] = 5, - ACTIONS(3), 1, + ACTIONS(4493), 4, + aux_sym__block_terminator_token1, + aux_sym_variable_definition_token1, + aux_sym_method_definition_token1, + aux_sym_constructor_definition_token1, + [132177] = 7, + ACTIONS(59), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(61), 1, anon_sym_SLASH_STAR, - ACTIONS(4525), 1, - sym_identifier, - STATE(2929), 2, - sym_comment, - sym_include, - ACTIONS(4527), 4, + ACTIONS(65), 1, anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_DQUOTE, - aux_sym_include_argument_token1, - [130942] = 5, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - ACTIONS(4529), 1, - sym_identifier, - STATE(2930), 2, + ACTIONS(4417), 1, + aux_sym_procedure_parameter_definition_token1, + ACTIONS(4421), 1, + aux_sym_on_error_phrase_token8, + STATE(2954), 2, sym_comment, sym_include, - ACTIONS(4531), 4, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_DQUOTE, - aux_sym_include_argument_token1, - [130962] = 5, - ACTIONS(3), 1, + ACTIONS(4497), 3, + aux_sym_on_error_phrase_token4, + aux_sym_on_error_phrase_token5, + aux_sym_on_error_phrase_token6, + [132202] = 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(2931), 2, + ACTIONS(4501), 1, + aux_sym_variable_definition_token2, + STATE(2955), 2, sym_comment, sym_include, - ACTIONS(4005), 4, - sym_identifier, - sym__terminator, - aux_sym_field_definition_token1, - aux_sym_index_definition_token1, - [130982] = 8, + ACTIONS(4499), 4, + aux_sym__block_terminator_token1, + aux_sym_variable_definition_token1, + aux_sym_method_definition_token1, + aux_sym_constructor_definition_token1, + [132225] = 9, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(4533), 1, - aux_sym_using_statement_token2, - ACTIONS(4535), 1, - aux_sym_stream_definition_token1, - ACTIONS(4537), 1, - aux_sym_input_close_statement_token1, - ACTIONS(4539), 1, - aux_sym_input_close_statement_token2, - STATE(2932), 2, + ACTIONS(2109), 1, + anon_sym_COMMA, + ACTIONS(3244), 1, + anon_sym_COLON, + ACTIONS(4207), 1, + aux_sym_on_error_phrase_token1, + STATE(3420), 1, + aux_sym_for_statement_repeat1, + STATE(3421), 1, + sym_on_stop_phrase, + STATE(2956), 2, sym_comment, sym_include, - [131008] = 8, + [132254] = 7, 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_stream_definition_token1, - ACTIONS(4543), 1, - aux_sym_input_close_statement_token1, - ACTIONS(4545), 1, - aux_sym_input_close_statement_token2, - ACTIONS(4547), 1, - aux_sym_output_stream_statement_token1, - STATE(2933), 2, + ACTIONS(3031), 1, + aux_sym_on_error_phrase_token1, + ACTIONS(3408), 1, + anon_sym_COLON, + STATE(2957), 2, sym_comment, sym_include, - [131034] = 8, + STATE(4559), 3, + sym_on_error_phrase, + sym_on_stop_phrase, + sym_on_quit_phrase, + [132279] = 9, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(3968), 1, - aux_sym_on_error_phrase_token1, - ACTIONS(4549), 1, - anon_sym_COLON, - STATE(3246), 1, - sym_on_quit_phrase, - STATE(4155), 1, - sym_on_stop_phrase, - STATE(2934), 2, + ACTIONS(679), 1, + sym__namedot, + ACTIONS(4004), 1, + anon_sym_COMMA, + ACTIONS(4503), 1, + anon_sym_RPAREN, + STATE(336), 1, + aux_sym_qualified_name_repeat1, + STATE(3541), 1, + aux_sym_data_relation_repeat1, + STATE(2958), 2, sym_comment, sym_include, - [131060] = 5, - ACTIONS(3), 1, + [132308] = 6, + ACTIONS(59), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(61), 1, anon_sym_SLASH_STAR, - ACTIONS(4551), 1, - sym_identifier, - STATE(2935), 2, + ACTIONS(65), 1, + anon_sym_LBRACE, + ACTIONS(4507), 1, + aux_sym_variable_definition_token2, + STATE(2959), 2, sym_comment, sym_include, - ACTIONS(4553), 4, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_DQUOTE, - aux_sym_include_argument_token1, - [131080] = 8, + ACTIONS(4505), 4, + aux_sym__block_terminator_token1, + aux_sym_variable_definition_token1, + aux_sym_method_definition_token1, + aux_sym_constructor_definition_token1, + [132331] = 9, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(1472), 1, + ACTIONS(2109), 1, anon_sym_COMMA, - ACTIONS(4555), 1, - aux_sym_of_token1, - ACTIONS(4557), 1, - aux_sym_on_statement_token1, - STATE(3006), 1, - aux_sym_on_statement_repeat1, - STATE(2936), 2, + ACTIONS(2592), 1, + anon_sym_COLON, + ACTIONS(4207), 1, + aux_sym_on_error_phrase_token1, + STATE(3243), 1, + sym_on_stop_phrase, + STATE(3244), 1, + aux_sym_for_statement_repeat1, + STATE(2960), 2, sym_comment, sym_include, - [131106] = 8, + [132360] = 7, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(3968), 1, + ACTIONS(3031), 1, aux_sym_on_error_phrase_token1, - ACTIONS(4433), 1, + ACTIONS(3334), 1, anon_sym_COLON, - STATE(3304), 1, - sym_on_quit_phrase, - STATE(4195), 1, - sym_on_stop_phrase, - STATE(2937), 2, + STATE(2961), 2, sym_comment, sym_include, - [131132] = 8, + STATE(4303), 3, + sym_on_error_phrase, + sym_on_stop_phrase, + sym_on_quit_phrase, + [132385] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(3786), 1, - anon_sym_COLON, - ACTIONS(3968), 1, - aux_sym_on_error_phrase_token1, - STATE(3315), 1, - sym_on_quit_phrase, - STATE(4221), 1, - sym_on_stop_phrase, - STATE(2938), 2, + ACTIONS(4511), 1, + aux_sym_variable_definition_token2, + STATE(2962), 2, sym_comment, sym_include, - [131158] = 7, - ACTIONS(3), 1, + ACTIONS(4509), 4, + aux_sym__block_terminator_token1, + aux_sym_variable_definition_token1, + aux_sym_method_definition_token1, + aux_sym_constructor_definition_token1, + [132408] = 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(4559), 1, - anon_sym_DQUOTE, - STATE(3051), 1, - aux_sym_double_quoted_string_repeat1, - ACTIONS(4509), 2, - aux_sym_double_quoted_string_token1, - aux_sym_double_quoted_string_token2, - STATE(2939), 2, + ACTIONS(4515), 1, + aux_sym_variable_definition_token2, + STATE(2963), 2, sym_comment, sym_include, - [131182] = 7, - ACTIONS(3), 1, + ACTIONS(4513), 4, + aux_sym__block_terminator_token1, + aux_sym_variable_definition_token1, + aux_sym_method_definition_token1, + aux_sym_constructor_definition_token1, + [132431] = 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(4561), 1, - anon_sym_SQUOTE, - STATE(2973), 1, - aux_sym_single_quoted_string_repeat1, - ACTIONS(4503), 2, - aux_sym_double_quoted_string_token2, - aux_sym_single_quoted_string_token1, - STATE(2940), 2, + ACTIONS(4519), 1, + aux_sym_variable_definition_token2, + STATE(2964), 2, sym_comment, sym_include, - [131206] = 7, - ACTIONS(3), 1, + ACTIONS(4517), 4, + aux_sym__block_terminator_token1, + aux_sym_variable_definition_token1, + aux_sym_method_definition_token1, + aux_sym_constructor_definition_token1, + [132454] = 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(4563), 1, - anon_sym_DQUOTE, - STATE(3051), 1, - aux_sym_double_quoted_string_repeat1, - ACTIONS(4509), 2, - aux_sym_double_quoted_string_token1, - aux_sym_double_quoted_string_token2, - STATE(2941), 2, + ACTIONS(3031), 1, + aux_sym_on_error_phrase_token1, + ACTIONS(3092), 1, + anon_sym_COLON, + STATE(2965), 2, sym_comment, sym_include, - [131230] = 7, - ACTIONS(3), 1, + STATE(4391), 3, + sym_on_error_phrase, + sym_on_stop_phrase, + sym_on_quit_phrase, + [132479] = 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(4565), 1, - anon_sym_SQUOTE, - STATE(2973), 1, - aux_sym_single_quoted_string_repeat1, - ACTIONS(4503), 2, - aux_sym_double_quoted_string_token2, - aux_sym_single_quoted_string_token1, - STATE(2942), 2, + ACTIONS(2109), 1, + anon_sym_COMMA, + ACTIONS(4207), 1, + aux_sym_on_error_phrase_token1, + ACTIONS(4521), 1, + anon_sym_COLON, + STATE(3378), 1, + sym_on_stop_phrase, + STATE(3379), 1, + aux_sym_for_statement_repeat1, + STATE(2966), 2, sym_comment, sym_include, - [131254] = 7, - ACTIONS(3), 1, + [132508] = 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(4567), 1, - anon_sym_SQUOTE, - STATE(2973), 1, - aux_sym_single_quoted_string_repeat1, - ACTIONS(4503), 2, - aux_sym_double_quoted_string_token2, - aux_sym_single_quoted_string_token1, - STATE(2943), 2, + ACTIONS(2109), 1, + anon_sym_COMMA, + ACTIONS(3232), 1, + anon_sym_COLON, + ACTIONS(4207), 1, + aux_sym_on_error_phrase_token1, + STATE(3241), 1, + sym_on_stop_phrase, + STATE(3242), 1, + aux_sym_for_statement_repeat1, + STATE(2967), 2, sym_comment, sym_include, - [131278] = 5, + [132537] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - STATE(2944), 2, + ACTIONS(4525), 1, + aux_sym_variable_definition_token2, + STATE(2968), 2, sym_comment, sym_include, - ACTIONS(4569), 4, - anon_sym_COLON, - aux_sym_on_error_phrase_token1, - aux_sym_stop_after_phrase_token1, - aux_sym_do_tuning_token1, - [131298] = 8, - ACTIONS(3), 1, + ACTIONS(4523), 4, + aux_sym__block_terminator_token1, + aux_sym_variable_definition_token1, + aux_sym_method_definition_token1, + aux_sym_constructor_definition_token1, + [132560] = 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(4571), 1, - sym_identifier, - ACTIONS(4573), 1, - sym__terminator, - ACTIONS(4575), 1, - aux_sym_query_definition_token1, - STATE(3378), 1, - sym_qualified_name, - STATE(2945), 2, + ACTIONS(4529), 1, + aux_sym_variable_definition_token2, + STATE(2969), 2, sym_comment, sym_include, - [131324] = 7, - ACTIONS(3), 1, + ACTIONS(4527), 4, + aux_sym__block_terminator_token1, + aux_sym_variable_definition_token1, + aux_sym_method_definition_token1, + aux_sym_constructor_definition_token1, + [132583] = 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(4577), 1, - anon_sym_DQUOTE, - STATE(3051), 1, - aux_sym_double_quoted_string_repeat1, - ACTIONS(4509), 2, - aux_sym_double_quoted_string_token1, - aux_sym_double_quoted_string_token2, - STATE(2946), 2, + ACTIONS(2109), 1, + anon_sym_COMMA, + ACTIONS(2437), 1, + anon_sym_COLON, + ACTIONS(4207), 1, + aux_sym_on_error_phrase_token1, + STATE(3518), 1, + aux_sym_for_statement_repeat1, + STATE(3519), 1, + sym_on_stop_phrase, + STATE(2970), 2, sym_comment, sym_include, - [131348] = 7, - ACTIONS(3), 1, + [132612] = 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(4579), 1, - sym_identifier, - STATE(287), 1, - sym_qualified_name, - ACTIONS(4581), 2, - aux_sym_for_phrase_token2, - aux_sym_for_phrase_token3, - STATE(2947), 2, + ACTIONS(2109), 1, + anon_sym_COMMA, + ACTIONS(2594), 1, + anon_sym_COLON, + ACTIONS(4207), 1, + aux_sym_on_error_phrase_token1, + STATE(3477), 1, + sym_on_stop_phrase, + STATE(3478), 1, + aux_sym_for_statement_repeat1, + STATE(2971), 2, sym_comment, sym_include, - [131372] = 5, + [132641] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - STATE(2948), 2, + ACTIONS(4533), 1, + aux_sym_variable_definition_token2, + STATE(2972), 2, sym_comment, sym_include, - ACTIONS(4583), 4, - anon_sym_COLON, - aux_sym_on_error_phrase_token1, - aux_sym_stop_after_phrase_token1, - aux_sym_do_tuning_token1, - [131392] = 8, + ACTIONS(4531), 4, + aux_sym__block_terminator_token1, + aux_sym_variable_definition_token1, + aux_sym_method_definition_token1, + aux_sym_constructor_definition_token1, + [132664] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(1472), 1, - anon_sym_COMMA, - ACTIONS(4585), 1, - aux_sym_of_token1, - ACTIONS(4587), 1, - aux_sym_on_statement_token1, - STATE(3006), 1, - aux_sym_on_statement_repeat1, - STATE(2949), 2, + ACTIONS(4537), 1, + aux_sym_variable_definition_token2, + STATE(2973), 2, sym_comment, sym_include, - [131418] = 8, + ACTIONS(4535), 4, + aux_sym__block_terminator_token1, + aux_sym_variable_definition_token1, + aux_sym_method_definition_token1, + aux_sym_constructor_definition_token1, + [132687] = 5, 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(4589), 1, - sym__terminator, - ACTIONS(4591), 1, - aux_sym_using_statement_token2, - STATE(329), 1, - aux_sym_qualified_name_repeat1, - STATE(2950), 2, + STATE(2974), 2, sym_comment, sym_include, - [131444] = 7, + ACTIONS(3956), 5, + sym__terminator, + anon_sym_RPAREN, + anon_sym_COMMA, + aux_sym_data_relation_token1, + aux_sym_data_relation_token2, + [132708] = 7, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(4153), 1, - aux_sym_on_error_phrase_token1, - STATE(3628), 1, - sym_on_stop_phrase, - ACTIONS(4414), 2, - anon_sym_COMMA, - anon_sym_COLON, - STATE(2951), 2, + ACTIONS(4539), 1, + aux_sym_procedure_parameter_definition_token1, + ACTIONS(4543), 1, + aux_sym_on_error_phrase_token8, + STATE(2975), 2, sym_comment, sym_include, - [131468] = 8, + ACTIONS(4541), 3, + aux_sym_on_error_phrase_token4, + aux_sym_on_error_phrase_token5, + aux_sym_on_error_phrase_token6, + [132733] = 9, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(3854), 1, + ACTIONS(2109), 1, + anon_sym_COMMA, + ACTIONS(3277), 1, anon_sym_COLON, - ACTIONS(3968), 1, + ACTIONS(4207), 1, aux_sym_on_error_phrase_token1, - STATE(3510), 1, - sym_on_quit_phrase, - STATE(4490), 1, + STATE(3312), 1, sym_on_stop_phrase, - STATE(2952), 2, + STATE(3313), 1, + aux_sym_for_statement_repeat1, + STATE(2976), 2, sym_comment, sym_include, - [131494] = 7, - ACTIONS(3), 1, + [132762] = 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(4593), 1, - anon_sym_SQUOTE, - STATE(2940), 1, - aux_sym_single_quoted_string_repeat1, - ACTIONS(4503), 2, - aux_sym_double_quoted_string_token2, - aux_sym_single_quoted_string_token1, - STATE(2953), 2, + ACTIONS(4547), 1, + aux_sym_variable_definition_token2, + STATE(2977), 2, sym_comment, sym_include, - [131518] = 7, - ACTIONS(3), 1, + ACTIONS(4545), 4, + aux_sym__block_terminator_token1, + aux_sym_variable_definition_token1, + aux_sym_method_definition_token1, + aux_sym_constructor_definition_token1, + [132785] = 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(4595), 1, - anon_sym_DQUOTE, - STATE(2941), 1, - aux_sym_double_quoted_string_repeat1, - ACTIONS(4509), 2, - aux_sym_double_quoted_string_token1, - aux_sym_double_quoted_string_token2, - STATE(2954), 2, + ACTIONS(4551), 1, + aux_sym_variable_definition_token2, + STATE(2978), 2, sym_comment, sym_include, - [131542] = 7, - ACTIONS(3), 1, + ACTIONS(4549), 4, + aux_sym__block_terminator_token1, + aux_sym_variable_definition_token1, + aux_sym_method_definition_token1, + aux_sym_constructor_definition_token1, + [132808] = 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(4597), 1, - anon_sym_SQUOTE, - STATE(2973), 1, - aux_sym_single_quoted_string_repeat1, - ACTIONS(4503), 2, - aux_sym_double_quoted_string_token2, - aux_sym_single_quoted_string_token1, - STATE(2955), 2, + ACTIONS(4008), 1, + aux_sym_on_error_phrase_token1, + STATE(3082), 1, + sym_on_quit_phrase, + STATE(4040), 1, + sym_on_stop_phrase, + ACTIONS(2558), 2, + anon_sym_COMMA, + anon_sym_COLON, + STATE(2979), 2, sym_comment, sym_include, - [131566] = 5, + [132835] = 9, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - STATE(2956), 2, - sym_comment, - sym_include, - ACTIONS(4599), 4, - sym__terminator, + ACTIONS(2109), 1, anon_sym_COMMA, + ACTIONS(3302), 1, anon_sym_COLON, + ACTIONS(4207), 1, aux_sym_on_error_phrase_token1, - [131586] = 5, + STATE(3443), 1, + aux_sym_for_statement_repeat1, + STATE(3444), 1, + sym_on_stop_phrase, + STATE(2980), 2, + sym_comment, + sym_include, + [132864] = 8, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - STATE(2957), 2, - sym_comment, - sym_include, - ACTIONS(4601), 4, - sym__terminator, - anon_sym_COMMA, + ACTIONS(3338), 1, + aux_sym_repeat_tuning_token1, + ACTIONS(4553), 1, anon_sym_COLON, - aux_sym_on_error_phrase_token1, - [131606] = 7, - 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(288), 1, - sym_qualified_name, - ACTIONS(4605), 2, - aux_sym_for_phrase_token2, - aux_sym_for_phrase_token3, - STATE(2958), 2, + STATE(3159), 1, + aux_sym_repeat_statement_repeat1, + STATE(3672), 1, + sym_repeat_tuning, + STATE(2981), 2, sym_comment, sym_include, - [131630] = 6, + [132890] = 8, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(4607), 1, - sym__namecolon, - ACTIONS(97), 2, - anon_sym_LPAREN, - anon_sym_EQ, - STATE(2959), 3, + ACTIONS(3338), 1, + aux_sym_repeat_tuning_token1, + ACTIONS(3427), 1, + anon_sym_COLON, + STATE(3165), 1, + aux_sym_repeat_statement_repeat1, + STATE(3672), 1, + sym_repeat_tuning, + STATE(2982), 2, sym_comment, sym_include, - aux_sym_object_access_repeat1, - [131652] = 5, + [132916] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(125), 1, + ACTIONS(205), 1, sym_identifier, - STATE(2960), 2, + STATE(2983), 2, sym_comment, sym_include, - ACTIONS(123), 4, + ACTIONS(203), 4, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_DQUOTE, aux_sym_include_argument_token1, - [131672] = 7, - ACTIONS(3), 1, + [132936] = 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(4610), 1, - anon_sym_DQUOTE, - STATE(3051), 1, - aux_sym_double_quoted_string_repeat1, - ACTIONS(4509), 2, - aux_sym_double_quoted_string_token1, - aux_sym_double_quoted_string_token2, - STATE(2961), 2, + ACTIONS(3338), 1, + aux_sym_repeat_tuning_token1, + ACTIONS(4002), 1, + anon_sym_COLON, + STATE(3022), 1, + aux_sym_repeat_statement_repeat1, + STATE(3672), 1, + sym_repeat_tuning, + STATE(2984), 2, sym_comment, sym_include, - [131696] = 5, + [132962] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(121), 1, + ACTIONS(209), 1, sym_identifier, - STATE(2962), 2, + STATE(2985), 2, sym_comment, sym_include, - ACTIONS(119), 4, + ACTIONS(207), 4, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_DQUOTE, aux_sym_include_argument_token1, - [131716] = 8, + [132982] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(3898), 1, - anon_sym_COLON, - ACTIONS(3968), 1, - aux_sym_on_error_phrase_token1, - STATE(3096), 1, - sym_on_quit_phrase, - STATE(4499), 1, - sym_on_stop_phrase, - STATE(2963), 2, + STATE(2986), 2, sym_comment, sym_include, - [131742] = 8, + ACTIONS(4555), 4, + anon_sym_COMMA, + anon_sym_COLON, + aux_sym_repeat_tuning_token1, + aux_sym_on_error_phrase_token1, + [133002] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(4612), 1, - aux_sym_using_statement_token2, - ACTIONS(4614), 1, - aux_sym_stream_definition_token1, - ACTIONS(4616), 1, - aux_sym_input_close_statement_token1, - ACTIONS(4618), 1, - aux_sym_input_close_statement_token2, - STATE(2964), 2, + STATE(2987), 2, sym_comment, sym_include, - [131768] = 8, + ACTIONS(4557), 4, + anon_sym_COMMA, + anon_sym_COLON, + aux_sym_repeat_tuning_token1, + aux_sym_on_error_phrase_token1, + [133022] = 8, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(4620), 1, - aux_sym_stream_definition_token1, - ACTIONS(4622), 1, - aux_sym_input_close_statement_token1, - ACTIONS(4624), 1, - aux_sym_input_close_statement_token2, - ACTIONS(4626), 1, - aux_sym_output_stream_statement_token1, - STATE(2965), 2, + ACTIONS(3338), 1, + aux_sym_repeat_tuning_token1, + ACTIONS(3658), 1, + anon_sym_COLON, + STATE(3159), 1, + aux_sym_repeat_statement_repeat1, + STATE(3672), 1, + sym_repeat_tuning, + STATE(2988), 2, sym_comment, sym_include, - [131794] = 6, - ACTIONS(59), 1, + [133048] = 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(4628), 1, - aux_sym_procedure_parameter_definition_token1, - STATE(2966), 2, + ACTIONS(4559), 1, + sym_identifier, + STATE(300), 1, + sym_qualified_name, + ACTIONS(4561), 2, + aux_sym_for_phrase_token2, + aux_sym_for_phrase_token3, + STATE(2989), 2, sym_comment, sym_include, - ACTIONS(4630), 3, - aux_sym_on_error_phrase_token4, - aux_sym_on_error_phrase_token5, - aux_sym_on_error_phrase_token6, - [131816] = 7, + [133072] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(4632), 1, - anon_sym_SQUOTE, - STATE(2943), 1, - aux_sym_single_quoted_string_repeat1, - ACTIONS(4503), 2, + ACTIONS(4563), 1, + anon_sym_DQUOTE, + STATE(3106), 1, + aux_sym_double_quoted_string_repeat1, + ACTIONS(4565), 2, + aux_sym_double_quoted_string_token1, aux_sym_double_quoted_string_token2, - aux_sym_single_quoted_string_token1, - STATE(2967), 2, + STATE(2990), 2, sym_comment, sym_include, - [131840] = 8, - ACTIONS(59), 1, + [133096] = 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(3968), 1, - aux_sym_on_error_phrase_token1, - ACTIONS(4634), 1, - anon_sym_COLON, - STATE(3211), 1, - sym_on_quit_phrase, - STATE(4203), 1, - sym_on_stop_phrase, - STATE(2968), 2, + ACTIONS(4569), 1, + anon_sym_SQUOTE, + STATE(3104), 1, + aux_sym_single_quoted_string_repeat1, + ACTIONS(4567), 2, + aux_sym_double_quoted_string_token2, + aux_sym_single_quoted_string_token1, + STATE(2991), 2, sym_comment, sym_include, - [131866] = 6, + [133120] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(4636), 1, + ACTIONS(4571), 1, sym_identifier, - STATE(2969), 2, + STATE(2992), 2, sym_comment, sym_include, - ACTIONS(4638), 3, - anon_sym_COMMA, + ACTIONS(4573), 3, anon_sym_COLON, + aux_sym_repeat_tuning_token1, aux_sym_on_error_phrase_token1, - [131888] = 7, + [133142] = 8, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(4153), 1, - aux_sym_on_error_phrase_token1, - STATE(3876), 1, - sym_on_stop_phrase, - ACTIONS(2495), 2, - anon_sym_COMMA, + ACTIONS(3338), 1, + aux_sym_repeat_tuning_token1, + ACTIONS(3763), 1, anon_sym_COLON, - STATE(2970), 2, + STATE(3159), 1, + aux_sym_repeat_statement_repeat1, + STATE(3672), 1, + sym_repeat_tuning, + STATE(2993), 2, sym_comment, sym_include, - [131912] = 7, + [133168] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(4640), 1, + ACTIONS(4575), 1, anon_sym_DQUOTE, - STATE(2946), 1, + STATE(3106), 1, aux_sym_double_quoted_string_repeat1, - ACTIONS(4509), 2, + ACTIONS(4565), 2, aux_sym_double_quoted_string_token1, aux_sym_double_quoted_string_token2, - STATE(2971), 2, + STATE(2994), 2, + sym_comment, + sym_include, + [133192] = 8, + ACTIONS(59), 1, + anon_sym_SLASH_SLASH, + ACTIONS(61), 1, + anon_sym_SLASH_STAR, + ACTIONS(65), 1, + anon_sym_LBRACE, + ACTIONS(3338), 1, + aux_sym_repeat_tuning_token1, + ACTIONS(3427), 1, + anon_sym_COLON, + STATE(3159), 1, + aux_sym_repeat_statement_repeat1, + STATE(3672), 1, + sym_repeat_tuning, + STATE(2995), 2, sym_comment, sym_include, - [131936] = 6, + [133218] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(4642), 1, + ACTIONS(4577), 1, aux_sym_procedure_parameter_definition_token1, - STATE(2972), 2, + STATE(2996), 2, sym_comment, sym_include, - ACTIONS(4644), 3, + ACTIONS(4579), 3, aux_sym_on_error_phrase_token4, aux_sym_on_error_phrase_token5, aux_sym_on_error_phrase_token6, - [131958] = 6, + [133240] = 8, + ACTIONS(59), 1, + anon_sym_SLASH_SLASH, + ACTIONS(61), 1, + anon_sym_SLASH_STAR, + ACTIONS(65), 1, + anon_sym_LBRACE, + ACTIONS(3338), 1, + aux_sym_repeat_tuning_token1, + ACTIONS(3368), 1, + anon_sym_COLON, + STATE(3098), 1, + aux_sym_repeat_statement_repeat1, + STATE(3672), 1, + sym_repeat_tuning, + STATE(2997), 2, + sym_comment, + sym_include, + [133266] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(4649), 1, + ACTIONS(4581), 1, anon_sym_SQUOTE, - ACTIONS(4646), 2, + STATE(3104), 1, + aux_sym_single_quoted_string_repeat1, + ACTIONS(4567), 2, aux_sym_double_quoted_string_token2, aux_sym_single_quoted_string_token1, - STATE(2973), 3, + STATE(2998), 2, sym_comment, sym_include, - aux_sym_single_quoted_string_repeat1, - [131980] = 8, + [133290] = 8, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(3842), 1, + ACTIONS(3338), 1, + aux_sym_repeat_tuning_token1, + ACTIONS(4583), 1, anon_sym_COLON, - ACTIONS(3968), 1, - aux_sym_on_error_phrase_token1, - STATE(3168), 1, - sym_on_quit_phrase, - STATE(4311), 1, - sym_on_stop_phrase, - STATE(2974), 2, + STATE(3159), 1, + aux_sym_repeat_statement_repeat1, + STATE(3672), 1, + sym_repeat_tuning, + STATE(2999), 2, sym_comment, sym_include, - [132006] = 8, + [133316] = 8, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(1472), 1, - anon_sym_COMMA, - ACTIONS(4651), 1, - aux_sym_of_token1, - ACTIONS(4653), 1, - aux_sym_on_statement_token1, - STATE(3006), 1, - aux_sym_on_statement_repeat1, - STATE(2975), 2, + ACTIONS(679), 1, + sym__namedot, + ACTIONS(4585), 1, + sym__terminator, + ACTIONS(4587), 1, + aux_sym_using_statement_token2, + STATE(336), 1, + aux_sym_qualified_name_repeat1, + STATE(3000), 2, sym_comment, sym_include, - [132032] = 8, + [133342] = 8, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(3852), 1, + ACTIONS(3338), 1, + aux_sym_repeat_tuning_token1, + ACTIONS(4589), 1, anon_sym_COLON, - ACTIONS(3968), 1, - aux_sym_on_error_phrase_token1, - STATE(3059), 1, - sym_on_quit_phrase, - STATE(4257), 1, - sym_on_stop_phrase, - STATE(2976), 2, + STATE(3159), 1, + aux_sym_repeat_statement_repeat1, + STATE(3672), 1, + sym_repeat_tuning, + STATE(3001), 2, sym_comment, sym_include, - [132058] = 5, + [133368] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - STATE(2977), 2, - sym_comment, - sym_include, - ACTIONS(4655), 4, - sym__terminator, - aux_sym_query_definition_tuning_token1, - anon_sym_SCROLLING, - aux_sym_query_definition_tuning_token2, - [132078] = 7, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - ACTIONS(7), 1, - anon_sym_LBRACE, - ACTIONS(4657), 1, - sym_identifier, - STATE(297), 1, - sym_qualified_name, - ACTIONS(4659), 2, - aux_sym_for_phrase_token2, - aux_sym_for_phrase_token3, - STATE(2978), 2, + ACTIONS(4591), 1, + aux_sym_procedure_parameter_definition_token1, + STATE(3002), 2, sym_comment, sym_include, - [132102] = 7, + ACTIONS(4593), 3, + aux_sym_on_error_phrase_token4, + aux_sym_on_error_phrase_token5, + aux_sym_on_error_phrase_token6, + [133390] = 7, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(4153), 1, + ACTIONS(4207), 1, aux_sym_on_error_phrase_token1, - STATE(3726), 1, + STATE(3862), 1, sym_on_stop_phrase, - ACTIONS(2614), 2, + ACTIONS(3362), 2, anon_sym_COMMA, anon_sym_COLON, - STATE(2979), 2, + STATE(3003), 2, sym_comment, sym_include, - [132126] = 8, + [133414] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(3924), 1, - anon_sym_COLON, - ACTIONS(3968), 1, - aux_sym_on_error_phrase_token1, - STATE(3161), 1, - sym_on_quit_phrase, - STATE(4345), 1, - sym_on_stop_phrase, - STATE(2980), 2, + ACTIONS(4577), 1, + aux_sym_procedure_parameter_definition_token1, + STATE(3004), 2, sym_comment, sym_include, - [132152] = 5, + ACTIONS(4595), 3, + aux_sym_on_error_phrase_token4, + aux_sym_on_error_phrase_token5, + aux_sym_on_error_phrase_token6, + [133436] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - STATE(2981), 2, + STATE(3005), 2, sym_comment, sym_include, - ACTIONS(4661), 4, + ACTIONS(4597), 4, sym__terminator, aux_sym_query_definition_tuning_token1, anon_sym_SCROLLING, aux_sym_query_definition_tuning_token2, - [132172] = 7, - ACTIONS(3), 1, + [133456] = 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(4663), 1, - sym_identifier, - STATE(289), 1, - sym_qualified_name, - ACTIONS(4665), 2, - aux_sym_for_phrase_token2, - aux_sym_for_phrase_token3, - STATE(2982), 2, + ACTIONS(4207), 1, + aux_sym_on_error_phrase_token1, + STATE(3784), 1, + sym_on_stop_phrase, + ACTIONS(4599), 2, + anon_sym_COMMA, + anon_sym_COLON, + STATE(3006), 2, sym_comment, sym_include, - [132196] = 7, - ACTIONS(3), 1, + [133480] = 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(4667), 1, - anon_sym_SQUOTE, - STATE(2973), 1, - aux_sym_single_quoted_string_repeat1, - ACTIONS(4503), 2, - aux_sym_double_quoted_string_token2, - aux_sym_single_quoted_string_token1, - STATE(2983), 2, + ACTIONS(3338), 1, + aux_sym_repeat_tuning_token1, + ACTIONS(4601), 1, + anon_sym_COLON, + STATE(3159), 1, + aux_sym_repeat_statement_repeat1, + STATE(3672), 1, + sym_repeat_tuning, + STATE(3007), 2, sym_comment, sym_include, - [132220] = 7, - ACTIONS(3), 1, + [133506] = 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(4669), 1, - anon_sym_DQUOTE, + ACTIONS(1480), 1, + anon_sym_COMMA, + ACTIONS(4603), 1, + aux_sym_of_token1, + ACTIONS(4605), 1, + aux_sym_on_statement_token1, STATE(3051), 1, - aux_sym_double_quoted_string_repeat1, - ACTIONS(4509), 2, - aux_sym_double_quoted_string_token1, - aux_sym_double_quoted_string_token2, - STATE(2984), 2, + aux_sym_on_statement_repeat1, + STATE(3008), 2, sym_comment, sym_include, - [132244] = 8, + [133532] = 8, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(4671), 1, - aux_sym_stream_definition_token1, - ACTIONS(4673), 1, - aux_sym_input_close_statement_token1, - ACTIONS(4675), 1, - aux_sym_input_close_statement_token2, - ACTIONS(4677), 1, - aux_sym_output_stream_statement_token1, - STATE(2985), 2, + ACTIONS(3338), 1, + aux_sym_repeat_tuning_token1, + ACTIONS(4123), 1, + anon_sym_COLON, + STATE(2981), 1, + aux_sym_repeat_statement_repeat1, + STATE(3672), 1, + sym_repeat_tuning, + STATE(3009), 2, sym_comment, sym_include, - [132270] = 8, + [133558] = 8, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(1472), 1, - anon_sym_COMMA, - ACTIONS(4679), 1, - aux_sym_of_token1, - ACTIONS(4681), 1, - aux_sym_on_statement_token1, - STATE(3006), 1, - aux_sym_on_statement_repeat1, - STATE(2986), 2, + ACTIONS(3338), 1, + aux_sym_repeat_tuning_token1, + ACTIONS(3720), 1, + anon_sym_COLON, + STATE(3159), 1, + aux_sym_repeat_statement_repeat1, + STATE(3672), 1, + sym_repeat_tuning, + STATE(3010), 2, + sym_comment, + sym_include, + [133584] = 6, + ACTIONS(59), 1, + anon_sym_SLASH_SLASH, + ACTIONS(61), 1, + anon_sym_SLASH_STAR, + ACTIONS(65), 1, + anon_sym_LBRACE, + ACTIONS(4591), 1, + aux_sym_procedure_parameter_definition_token1, + STATE(3011), 2, sym_comment, sym_include, - [132296] = 7, + ACTIONS(4607), 3, + aux_sym_on_error_phrase_token4, + aux_sym_on_error_phrase_token5, + aux_sym_on_error_phrase_token6, + [133606] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, + ACTIONS(147), 1, + sym_identifier, + STATE(3012), 2, + sym_comment, + sym_include, + ACTIONS(145), 4, anon_sym_LBRACE, - ACTIONS(4683), 1, - anon_sym_SQUOTE, - STATE(2973), 1, - aux_sym_single_quoted_string_repeat1, - ACTIONS(4503), 2, - aux_sym_double_quoted_string_token2, - aux_sym_single_quoted_string_token1, - STATE(2987), 2, + anon_sym_RBRACE, + anon_sym_DQUOTE, + aux_sym_include_argument_token1, + [133626] = 8, + ACTIONS(59), 1, + anon_sym_SLASH_SLASH, + ACTIONS(61), 1, + anon_sym_SLASH_STAR, + ACTIONS(65), 1, + anon_sym_LBRACE, + ACTIONS(3338), 1, + aux_sym_repeat_tuning_token1, + ACTIONS(3974), 1, + anon_sym_COLON, + STATE(3159), 1, + aux_sym_repeat_statement_repeat1, + STATE(3672), 1, + sym_repeat_tuning, + STATE(3013), 2, sym_comment, sym_include, - [132320] = 8, + [133652] = 8, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(3968), 1, - aux_sym_on_error_phrase_token1, - ACTIONS(4290), 1, + ACTIONS(3338), 1, + aux_sym_repeat_tuning_token1, + ACTIONS(3974), 1, anon_sym_COLON, - STATE(3152), 1, - sym_on_quit_phrase, - STATE(4376), 1, - sym_on_stop_phrase, - STATE(2988), 2, + STATE(3044), 1, + aux_sym_repeat_statement_repeat1, + STATE(3672), 1, + sym_repeat_tuning, + STATE(3014), 2, sym_comment, sym_include, - [132346] = 7, - ACTIONS(3), 1, + [133678] = 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(4685), 1, - anon_sym_SQUOTE, - STATE(2955), 1, - aux_sym_single_quoted_string_repeat1, - ACTIONS(4503), 2, - aux_sym_double_quoted_string_token2, - aux_sym_single_quoted_string_token1, - STATE(2989), 2, + ACTIONS(3338), 1, + aux_sym_repeat_tuning_token1, + ACTIONS(4123), 1, + anon_sym_COLON, + STATE(3159), 1, + aux_sym_repeat_statement_repeat1, + STATE(3672), 1, + sym_repeat_tuning, + STATE(3015), 2, sym_comment, sym_include, - [132370] = 8, + [133704] = 8, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(4687), 1, - aux_sym_using_statement_token2, - ACTIONS(4689), 1, - aux_sym_stream_definition_token1, - ACTIONS(4691), 1, - aux_sym_input_close_statement_token1, - ACTIONS(4693), 1, - aux_sym_input_close_statement_token2, - STATE(2990), 2, + ACTIONS(3338), 1, + aux_sym_repeat_tuning_token1, + ACTIONS(3720), 1, + anon_sym_COLON, + STATE(3024), 1, + aux_sym_repeat_statement_repeat1, + STATE(3672), 1, + sym_repeat_tuning, + STATE(3016), 2, sym_comment, sym_include, - [132396] = 8, + [133730] = 7, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(3968), 1, + ACTIONS(4207), 1, aux_sym_on_error_phrase_token1, - ACTIONS(4267), 1, - anon_sym_COLON, - STATE(3480), 1, - sym_on_quit_phrase, - STATE(4445), 1, + STATE(4040), 1, sym_on_stop_phrase, - STATE(2991), 2, + ACTIONS(2558), 2, + anon_sym_COMMA, + anon_sym_COLON, + STATE(3017), 2, sym_comment, sym_include, - [132422] = 7, - ACTIONS(3), 1, + [133754] = 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(4695), 1, - anon_sym_DQUOTE, - STATE(2961), 1, - aux_sym_double_quoted_string_repeat1, - ACTIONS(4509), 2, - aux_sym_double_quoted_string_token1, - aux_sym_double_quoted_string_token2, - STATE(2992), 2, + ACTIONS(3338), 1, + aux_sym_repeat_tuning_token1, + ACTIONS(4583), 1, + anon_sym_COLON, + STATE(3093), 1, + aux_sym_repeat_statement_repeat1, + STATE(3672), 1, + sym_repeat_tuning, + STATE(3018), 2, sym_comment, sym_include, - [132446] = 8, + [133780] = 8, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(3968), 1, - aux_sym_on_error_phrase_token1, - ACTIONS(4697), 1, + ACTIONS(3338), 1, + aux_sym_repeat_tuning_token1, + ACTIONS(3708), 1, anon_sym_COLON, - STATE(3290), 1, - sym_on_quit_phrase, - STATE(4181), 1, - sym_on_stop_phrase, - STATE(2993), 2, + STATE(3013), 1, + aux_sym_repeat_statement_repeat1, + STATE(3672), 1, + sym_repeat_tuning, + STATE(3019), 2, sym_comment, sym_include, - [132472] = 5, - ACTIONS(3), 1, + [133806] = 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(2994), 2, + ACTIONS(3338), 1, + aux_sym_repeat_tuning_token1, + ACTIONS(4107), 1, + anon_sym_COLON, + STATE(3159), 1, + aux_sym_repeat_statement_repeat1, + STATE(3672), 1, + sym_repeat_tuning, + STATE(3020), 2, sym_comment, sym_include, - ACTIONS(4699), 4, - sym_identifier, - aux_sym_input_expression_token2, - aux_sym_do_block_token1, - aux_sym_field_definition_token1, - [132492] = 6, + [133832] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(4701), 1, - sym_identifier, - STATE(2995), 2, + ACTIONS(4609), 1, + anon_sym_DQUOTE, + STATE(3065), 1, + aux_sym_double_quoted_string_repeat1, + ACTIONS(4565), 2, + aux_sym_double_quoted_string_token1, + aux_sym_double_quoted_string_token2, + STATE(3021), 2, sym_comment, sym_include, - ACTIONS(4703), 3, - anon_sym_COMMA, - anon_sym_COLON, - aux_sym_on_error_phrase_token1, - [132514] = 5, + [133856] = 8, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - STATE(2996), 2, + ACTIONS(3338), 1, + aux_sym_repeat_tuning_token1, + ACTIONS(4611), 1, + anon_sym_COLON, + STATE(3159), 1, + aux_sym_repeat_statement_repeat1, + STATE(3672), 1, + sym_repeat_tuning, + STATE(3022), 2, sym_comment, sym_include, - ACTIONS(4705), 4, - sym__terminator, - anon_sym_COMMA, - anon_sym_COLON, - aux_sym_on_error_phrase_token1, - [132534] = 6, + [133882] = 8, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(4707), 1, - aux_sym_procedure_parameter_definition_token1, - STATE(2997), 2, + ACTIONS(3338), 1, + aux_sym_repeat_tuning_token1, + ACTIONS(3860), 1, + anon_sym_COLON, + STATE(3015), 1, + aux_sym_repeat_statement_repeat1, + STATE(3672), 1, + sym_repeat_tuning, + STATE(3023), 2, sym_comment, sym_include, - ACTIONS(4709), 3, - aux_sym_on_error_phrase_token4, - aux_sym_on_error_phrase_token5, - aux_sym_on_error_phrase_token6, - [132556] = 8, + [133908] = 8, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(4038), 1, - anon_sym_COMMA, - ACTIONS(4040), 1, - aux_sym_data_relation_token1, - STATE(3029), 1, - aux_sym_data_relation_repeat1, - STATE(4351), 1, - sym_data_relation, - STATE(2998), 2, + ACTIONS(3338), 1, + aux_sym_repeat_tuning_token1, + ACTIONS(3860), 1, + anon_sym_COLON, + STATE(3159), 1, + aux_sym_repeat_statement_repeat1, + STATE(3672), 1, + sym_repeat_tuning, + STATE(3024), 2, sym_comment, sym_include, - [132582] = 6, + [133934] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(4711), 1, + ACTIONS(4613), 1, aux_sym_procedure_parameter_definition_token1, - STATE(2999), 2, + STATE(3025), 2, sym_comment, sym_include, - ACTIONS(4713), 3, + ACTIONS(4615), 3, aux_sym_on_error_phrase_token4, aux_sym_on_error_phrase_token5, aux_sym_on_error_phrase_token6, - [132604] = 8, + [133956] = 8, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(3794), 1, + ACTIONS(3338), 1, + aux_sym_repeat_tuning_token1, + ACTIONS(4107), 1, anon_sym_COLON, - ACTIONS(3968), 1, - aux_sym_on_error_phrase_token1, - STATE(3147), 1, - sym_on_quit_phrase, - STATE(4394), 1, - sym_on_stop_phrase, - STATE(3000), 2, + STATE(2999), 1, + aux_sym_repeat_statement_repeat1, + STATE(3672), 1, + sym_repeat_tuning, + STATE(3026), 2, sym_comment, sym_include, - [132630] = 7, - ACTIONS(3), 1, + [133982] = 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(4715), 1, - anon_sym_DQUOTE, - STATE(3051), 1, - aux_sym_double_quoted_string_repeat1, - ACTIONS(4509), 2, - aux_sym_double_quoted_string_token1, - aux_sym_double_quoted_string_token2, - STATE(3001), 2, + ACTIONS(4004), 1, + anon_sym_COMMA, + ACTIONS(4006), 1, + aux_sym_data_relation_token1, + STATE(3099), 1, + aux_sym_data_relation_repeat1, + STATE(4427), 1, + sym_data_relation, + STATE(3027), 2, sym_comment, sym_include, - [132654] = 6, - ACTIONS(3), 1, + [134008] = 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(4717), 1, - sym_identifier, - STATE(3002), 2, + ACTIONS(3338), 1, + aux_sym_repeat_tuning_token1, + ACTIONS(3763), 1, + anon_sym_COLON, + STATE(3037), 1, + aux_sym_repeat_statement_repeat1, + STATE(3672), 1, + sym_repeat_tuning, + STATE(3028), 2, sym_comment, sym_include, - ACTIONS(4719), 3, - anon_sym_COMMA, - anon_sym_COLON, - aux_sym_on_error_phrase_token1, - [132676] = 8, + [134034] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(3968), 1, - aux_sym_on_error_phrase_token1, - ACTIONS(4721), 1, - anon_sym_COLON, - STATE(3411), 1, - sym_on_quit_phrase, - STATE(4403), 1, - sym_on_stop_phrase, - STATE(3003), 2, + STATE(3029), 2, sym_comment, sym_include, - [132702] = 7, + ACTIONS(4617), 4, + anon_sym_COMMA, + anon_sym_COLON, + aux_sym_repeat_tuning_token1, + aux_sym_on_error_phrase_token1, + [134054] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(681), 1, - sym__namecolon, - STATE(2959), 1, - aux_sym_object_access_repeat1, - ACTIONS(81), 2, - anon_sym_LPAREN, - anon_sym_EQ, - STATE(3004), 2, + ACTIONS(4591), 1, + aux_sym_procedure_parameter_definition_token1, + STATE(3030), 2, sym_comment, sym_include, - [132726] = 8, + ACTIONS(4619), 3, + aux_sym_on_error_phrase_token4, + aux_sym_on_error_phrase_token5, + aux_sym_on_error_phrase_token6, + [134076] = 8, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(3806), 1, + ACTIONS(3338), 1, + aux_sym_repeat_tuning_token1, + ACTIONS(3658), 1, anon_sym_COLON, - ACTIONS(3968), 1, - aux_sym_on_error_phrase_token1, - STATE(3528), 1, - sym_on_quit_phrase, - STATE(4541), 1, - sym_on_stop_phrase, - STATE(3005), 2, + STATE(3053), 1, + aux_sym_repeat_statement_repeat1, + STATE(3672), 1, + sym_repeat_tuning, + STATE(3031), 2, sym_comment, sym_include, - [132752] = 6, + [134102] = 8, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(4723), 1, + ACTIONS(4004), 1, anon_sym_COMMA, - ACTIONS(1511), 2, - aux_sym_of_token1, - aux_sym_on_statement_token1, - STATE(3006), 3, + ACTIONS(4006), 1, + aux_sym_data_relation_token1, + STATE(2676), 1, + aux_sym_data_relation_repeat1, + STATE(4427), 1, + sym_data_relation, + STATE(3032), 2, sym_comment, sym_include, - aux_sym_on_statement_repeat1, - [132774] = 7, + [134128] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(4726), 1, + ACTIONS(4621), 1, anon_sym_SQUOTE, - STATE(2987), 1, + STATE(3151), 1, aux_sym_single_quoted_string_repeat1, - ACTIONS(4503), 2, + ACTIONS(4567), 2, aux_sym_double_quoted_string_token2, aux_sym_single_quoted_string_token1, - STATE(3007), 2, + STATE(3033), 2, sym_comment, sym_include, - [132798] = 6, + [134152] = 8, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(4730), 1, - aux_sym_variable_definition_token2, - STATE(3008), 2, + ACTIONS(3338), 1, + aux_sym_repeat_tuning_token1, + ACTIONS(3368), 1, + anon_sym_COLON, + STATE(3159), 1, + aux_sym_repeat_statement_repeat1, + STATE(3672), 1, + sym_repeat_tuning, + STATE(3034), 2, sym_comment, sym_include, - ACTIONS(4728), 3, - aux_sym__block_terminator_token1, - aux_sym_variable_definition_token1, - aux_sym_method_definition_token1, - [132820] = 8, + [134178] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(3968), 1, - aux_sym_on_error_phrase_token1, - ACTIONS(4282), 1, + STATE(3972), 1, + sym_for_phrase, + STATE(3035), 2, + sym_comment, + sym_include, + ACTIONS(4623), 3, + aux_sym_for_phrase_token1, + aux_sym_for_phrase_token2, + aux_sym_for_phrase_token3, + [134200] = 8, + ACTIONS(59), 1, + anon_sym_SLASH_SLASH, + ACTIONS(61), 1, + anon_sym_SLASH_STAR, + ACTIONS(65), 1, + anon_sym_LBRACE, + ACTIONS(3338), 1, + aux_sym_repeat_tuning_token1, + ACTIONS(3708), 1, + anon_sym_COLON, + STATE(3159), 1, + aux_sym_repeat_statement_repeat1, + STATE(3672), 1, + sym_repeat_tuning, + STATE(3036), 2, + sym_comment, + sym_include, + [134226] = 8, + ACTIONS(59), 1, + anon_sym_SLASH_SLASH, + ACTIONS(61), 1, + anon_sym_SLASH_STAR, + ACTIONS(65), 1, + anon_sym_LBRACE, + ACTIONS(3338), 1, + aux_sym_repeat_tuning_token1, + ACTIONS(3908), 1, anon_sym_COLON, - STATE(3225), 1, - sym_on_quit_phrase, - STATE(4173), 1, - sym_on_stop_phrase, - STATE(3009), 2, + STATE(3159), 1, + aux_sym_repeat_statement_repeat1, + STATE(3672), 1, + sym_repeat_tuning, + STATE(3037), 2, sym_comment, sym_include, - [132846] = 8, + [134252] = 8, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(4732), 1, + ACTIONS(4625), 1, sym_identifier, - ACTIONS(4734), 1, + ACTIONS(4627), 1, sym__terminator, - ACTIONS(4736), 1, + ACTIONS(4629), 1, aux_sym_query_definition_token1, - STATE(3324), 1, + STATE(3363), 1, sym_qualified_name, - STATE(3010), 2, + STATE(3038), 2, sym_comment, sym_include, - [132872] = 7, + [134278] = 8, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(4153), 1, - aux_sym_on_error_phrase_token1, - STATE(3679), 1, - sym_on_stop_phrase, - ACTIONS(3369), 2, - anon_sym_COMMA, + ACTIONS(3338), 1, + aux_sym_repeat_tuning_token1, + ACTIONS(3433), 1, anon_sym_COLON, - STATE(3011), 2, + STATE(3062), 1, + aux_sym_repeat_statement_repeat1, + STATE(3672), 1, + sym_repeat_tuning, + STATE(3039), 2, sym_comment, sym_include, - [132896] = 8, + [134304] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(3968), 1, - aux_sym_on_error_phrase_token1, - ACTIONS(4302), 1, - anon_sym_COLON, - STATE(3179), 1, - sym_on_quit_phrase, - STATE(4274), 1, - sym_on_stop_phrase, - STATE(3012), 2, + ACTIONS(4631), 1, + aux_sym_procedure_parameter_definition_token1, + STATE(3040), 2, + sym_comment, + sym_include, + ACTIONS(4633), 3, + aux_sym_on_error_phrase_token4, + aux_sym_on_error_phrase_token5, + aux_sym_on_error_phrase_token6, + [134326] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(139), 1, + sym_identifier, + STATE(3041), 2, sym_comment, sym_include, - [132922] = 7, + ACTIONS(137), 4, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_DQUOTE, + aux_sym_include_argument_token1, + [134346] = 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(4635), 1, anon_sym_SQUOTE, - STATE(2942), 1, + STATE(2998), 1, aux_sym_single_quoted_string_repeat1, - ACTIONS(4503), 2, + ACTIONS(4567), 2, aux_sym_double_quoted_string_token2, aux_sym_single_quoted_string_token1, - STATE(3013), 2, + STATE(3042), 2, sym_comment, sym_include, - [132946] = 7, + [134370] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(4740), 1, + ACTIONS(4637), 1, anon_sym_DQUOTE, - STATE(2939), 1, + STATE(2994), 1, aux_sym_double_quoted_string_repeat1, - ACTIONS(4509), 2, + ACTIONS(4565), 2, aux_sym_double_quoted_string_token1, aux_sym_double_quoted_string_token2, - STATE(3014), 2, + STATE(3043), 2, sym_comment, sym_include, - [132970] = 8, + [134394] = 8, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(3968), 1, - aux_sym_on_error_phrase_token1, - ACTIONS(4742), 1, + ACTIONS(3338), 1, + aux_sym_repeat_tuning_token1, + ACTIONS(4135), 1, anon_sym_COLON, - STATE(3139), 1, - sym_on_quit_phrase, - STATE(4406), 1, - sym_on_stop_phrase, - STATE(3015), 2, + STATE(3159), 1, + aux_sym_repeat_statement_repeat1, + STATE(3672), 1, + sym_repeat_tuning, + STATE(3044), 2, sym_comment, sym_include, - [132996] = 6, + [134420] = 7, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(4744), 1, - aux_sym_procedure_parameter_definition_token1, - STATE(3016), 2, + ACTIONS(4207), 1, + aux_sym_on_error_phrase_token1, + STATE(4120), 1, + sym_on_stop_phrase, + ACTIONS(2455), 2, + anon_sym_COMMA, + anon_sym_COLON, + STATE(3045), 2, sym_comment, sym_include, - ACTIONS(4746), 3, - aux_sym_on_error_phrase_token4, - aux_sym_on_error_phrase_token5, - aux_sym_on_error_phrase_token6, - [133018] = 7, - ACTIONS(3), 1, + [134444] = 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(4748), 1, - anon_sym_DQUOTE, - STATE(3024), 1, - aux_sym_double_quoted_string_repeat1, - ACTIONS(4509), 2, - aux_sym_double_quoted_string_token1, - aux_sym_double_quoted_string_token2, - STATE(3017), 2, + ACTIONS(4641), 1, + aux_sym_variable_definition_token2, + STATE(3046), 2, sym_comment, sym_include, - [133042] = 8, + ACTIONS(4639), 3, + aux_sym__block_terminator_token1, + aux_sym_variable_definition_token1, + aux_sym_method_definition_token1, + [134466] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(4038), 1, - anon_sym_COMMA, - ACTIONS(4040), 1, - aux_sym_data_relation_token1, - STATE(2928), 1, - aux_sym_data_relation_repeat1, - STATE(4244), 1, - sym_data_relation, - STATE(3018), 2, + ACTIONS(4613), 1, + aux_sym_procedure_parameter_definition_token1, + STATE(3047), 2, sym_comment, sym_include, - [133068] = 7, - ACTIONS(3), 1, + ACTIONS(4643), 3, + aux_sym_on_error_phrase_token4, + aux_sym_on_error_phrase_token5, + aux_sym_on_error_phrase_token6, + [134488] = 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(4750), 1, - anon_sym_SQUOTE, - STATE(3027), 1, - aux_sym_single_quoted_string_repeat1, - ACTIONS(4503), 2, - aux_sym_double_quoted_string_token2, - aux_sym_single_quoted_string_token1, - STATE(3019), 2, + ACTIONS(4577), 1, + aux_sym_procedure_parameter_definition_token1, + STATE(3048), 2, sym_comment, sym_include, - [133092] = 8, + ACTIONS(4645), 3, + aux_sym_on_error_phrase_token4, + aux_sym_on_error_phrase_token5, + aux_sym_on_error_phrase_token6, + [134510] = 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(4752), 1, - sym__terminator, - ACTIONS(4754), 1, - aux_sym_using_statement_token2, - STATE(329), 1, - aux_sym_qualified_name_repeat1, - STATE(3020), 2, + ACTIONS(3338), 1, + aux_sym_repeat_tuning_token1, + ACTIONS(3433), 1, + anon_sym_COLON, + STATE(3159), 1, + aux_sym_repeat_statement_repeat1, + STATE(3672), 1, + sym_repeat_tuning, + STATE(3049), 2, sym_comment, sym_include, - [133118] = 7, - ACTIONS(3), 1, + [134536] = 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(4756), 1, - anon_sym_DQUOTE, - STATE(3001), 1, - aux_sym_double_quoted_string_repeat1, - ACTIONS(4509), 2, - aux_sym_double_quoted_string_token1, - aux_sym_double_quoted_string_token2, - STATE(3021), 2, + ACTIONS(3338), 1, + aux_sym_repeat_tuning_token1, + ACTIONS(3446), 1, + anon_sym_COLON, + STATE(3159), 1, + aux_sym_repeat_statement_repeat1, + STATE(3672), 1, + sym_repeat_tuning, + STATE(3050), 2, sym_comment, sym_include, - [133142] = 7, - ACTIONS(3), 1, + [134562] = 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(4758), 1, - anon_sym_SQUOTE, - STATE(2983), 1, - aux_sym_single_quoted_string_repeat1, - ACTIONS(4503), 2, - aux_sym_double_quoted_string_token2, - aux_sym_single_quoted_string_token1, - STATE(3022), 2, + ACTIONS(4647), 1, + anon_sym_COMMA, + ACTIONS(1513), 2, + aux_sym_of_token1, + aux_sym_on_statement_token1, + STATE(3051), 3, sym_comment, sym_include, - [133166] = 7, + aux_sym_on_statement_repeat1, + [134584] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(4760), 1, - anon_sym_DQUOTE, - STATE(2984), 1, - aux_sym_double_quoted_string_repeat1, - ACTIONS(4509), 2, - aux_sym_double_quoted_string_token1, - aux_sym_double_quoted_string_token2, - STATE(3023), 2, + STATE(3052), 2, sym_comment, sym_include, - [133190] = 7, - ACTIONS(3), 1, + ACTIONS(4143), 4, + sym_identifier, + sym__terminator, + aux_sym_field_definition_token1, + aux_sym_index_definition_token1, + [134604] = 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(4762), 1, - anon_sym_DQUOTE, - STATE(3051), 1, - aux_sym_double_quoted_string_repeat1, - ACTIONS(4509), 2, - aux_sym_double_quoted_string_token1, - aux_sym_double_quoted_string_token2, - STATE(3024), 2, + ACTIONS(3338), 1, + aux_sym_repeat_tuning_token1, + ACTIONS(3964), 1, + anon_sym_COLON, + STATE(3159), 1, + aux_sym_repeat_statement_repeat1, + STATE(3672), 1, + sym_repeat_tuning, + STATE(3053), 2, sym_comment, sym_include, - [133214] = 8, + [134630] = 7, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(3772), 1, - anon_sym_COLON, - ACTIONS(3968), 1, + ACTIONS(4207), 1, aux_sym_on_error_phrase_token1, - STATE(3238), 1, - sym_on_quit_phrase, - STATE(4142), 1, + STATE(3919), 1, sym_on_stop_phrase, - STATE(3025), 2, + ACTIONS(2618), 2, + anon_sym_COMMA, + anon_sym_COLON, + STATE(3054), 2, sym_comment, sym_include, - [133240] = 8, - ACTIONS(3), 1, + [134654] = 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(4764), 1, - sym_identifier, - ACTIONS(4766), 1, - sym__terminator, - ACTIONS(4768), 1, - aux_sym_query_definition_token1, - STATE(3291), 1, - sym_qualified_name, - STATE(3026), 2, + STATE(3055), 2, sym_comment, sym_include, - [133266] = 7, + ACTIONS(4650), 4, + anon_sym_COLON, + aux_sym_on_error_phrase_token1, + aux_sym_stop_after_phrase_token1, + aux_sym_do_tuning_token1, + [134674] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(4770), 1, + ACTIONS(4652), 1, anon_sym_SQUOTE, - STATE(2973), 1, + STATE(2991), 1, aux_sym_single_quoted_string_repeat1, - ACTIONS(4503), 2, + ACTIONS(4567), 2, aux_sym_double_quoted_string_token2, aux_sym_single_quoted_string_token1, - STATE(3027), 2, + STATE(3056), 2, sym_comment, sym_include, - [133290] = 7, + [134698] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(4772), 1, - sym_identifier, - STATE(290), 1, - sym_qualified_name, - ACTIONS(4774), 2, - aux_sym_for_phrase_token2, - aux_sym_for_phrase_token3, - STATE(3028), 2, + ACTIONS(4654), 1, + anon_sym_DQUOTE, + STATE(2990), 1, + aux_sym_double_quoted_string_repeat1, + ACTIONS(4565), 2, + aux_sym_double_quoted_string_token1, + aux_sym_double_quoted_string_token2, + STATE(3057), 2, sym_comment, sym_include, - [133314] = 8, + [134722] = 8, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(4038), 1, - anon_sym_COMMA, - ACTIONS(4040), 1, - aux_sym_data_relation_token1, - STATE(2576), 1, - aux_sym_data_relation_repeat1, - STATE(4429), 1, - sym_data_relation, - STATE(3029), 2, + ACTIONS(3338), 1, + aux_sym_repeat_tuning_token1, + ACTIONS(3964), 1, + anon_sym_COLON, + STATE(3128), 1, + aux_sym_repeat_statement_repeat1, + STATE(3672), 1, + sym_repeat_tuning, + STATE(3058), 2, sym_comment, sym_include, - [133340] = 8, + [134748] = 8, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(4038), 1, - anon_sym_COMMA, - ACTIONS(4040), 1, - aux_sym_data_relation_token1, - STATE(3055), 1, - aux_sym_data_relation_repeat1, - STATE(4429), 1, - sym_data_relation, - STATE(3030), 2, - sym_comment, - sym_include, - [133366] = 7, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - ACTIONS(7), 1, - anon_sym_LBRACE, - ACTIONS(4776), 1, - sym_identifier, - STATE(295), 1, - sym_qualified_name, - ACTIONS(4778), 2, - aux_sym_for_phrase_token2, - aux_sym_for_phrase_token3, - STATE(3031), 2, + ACTIONS(3338), 1, + aux_sym_repeat_tuning_token1, + ACTIONS(3908), 1, + anon_sym_COLON, + STATE(3152), 1, + aux_sym_repeat_statement_repeat1, + STATE(3672), 1, + sym_repeat_tuning, + STATE(3059), 2, sym_comment, sym_include, - [133390] = 6, + [134774] = 8, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(4711), 1, - aux_sym_procedure_parameter_definition_token1, - STATE(3032), 2, + ACTIONS(3338), 1, + aux_sym_repeat_tuning_token1, + ACTIONS(4656), 1, + anon_sym_COLON, + STATE(3159), 1, + aux_sym_repeat_statement_repeat1, + STATE(3672), 1, + sym_repeat_tuning, + STATE(3060), 2, sym_comment, sym_include, - ACTIONS(4780), 3, - aux_sym_on_error_phrase_token4, - aux_sym_on_error_phrase_token5, - aux_sym_on_error_phrase_token6, - [133412] = 8, + [134800] = 8, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(3788), 1, + ACTIONS(3338), 1, + aux_sym_repeat_tuning_token1, + ACTIONS(3446), 1, anon_sym_COLON, - ACTIONS(3968), 1, - aux_sym_on_error_phrase_token1, - STATE(3247), 1, - sym_on_quit_phrase, - STATE(4109), 1, - sym_on_stop_phrase, - STATE(3033), 2, + STATE(3034), 1, + aux_sym_repeat_statement_repeat1, + STATE(3672), 1, + sym_repeat_tuning, + STATE(3061), 2, sym_comment, sym_include, - [133438] = 7, + [134826] = 8, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(4153), 1, - aux_sym_on_error_phrase_token1, - STATE(3737), 1, - sym_on_stop_phrase, - ACTIONS(2612), 2, - anon_sym_COMMA, + ACTIONS(3338), 1, + aux_sym_repeat_tuning_token1, + ACTIONS(3366), 1, anon_sym_COLON, - STATE(3034), 2, + STATE(3159), 1, + aux_sym_repeat_statement_repeat1, + STATE(3672), 1, + sym_repeat_tuning, + STATE(3062), 2, sym_comment, sym_include, - [133462] = 5, + [134852] = 8, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - STATE(3035), 2, + ACTIONS(4004), 1, + anon_sym_COMMA, + ACTIONS(4006), 1, + aux_sym_data_relation_token1, + STATE(2676), 1, + aux_sym_data_relation_repeat1, + STATE(4338), 1, + sym_data_relation, + STATE(3063), 2, sym_comment, sym_include, - ACTIONS(4782), 4, - sym__terminator, - aux_sym_query_definition_tuning_token1, - anon_sym_SCROLLING, - aux_sym_query_definition_tuning_token2, - [133482] = 6, + [134878] = 8, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - STATE(3872), 1, - sym_for_phrase, - STATE(3036), 2, + ACTIONS(3338), 1, + aux_sym_repeat_tuning_token1, + ACTIONS(3878), 1, + anon_sym_COLON, + STATE(3020), 1, + aux_sym_repeat_statement_repeat1, + STATE(3672), 1, + sym_repeat_tuning, + STATE(3064), 2, sym_comment, sym_include, - ACTIONS(4784), 3, - aux_sym_for_phrase_token1, - aux_sym_for_phrase_token2, - aux_sym_for_phrase_token3, - [133504] = 5, + [134904] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(3037), 2, + ACTIONS(4658), 1, + anon_sym_DQUOTE, + STATE(3106), 1, + aux_sym_double_quoted_string_repeat1, + ACTIONS(4565), 2, + aux_sym_double_quoted_string_token1, + aux_sym_double_quoted_string_token2, + STATE(3065), 2, sym_comment, sym_include, - ACTIONS(4066), 4, - sym_identifier, - sym__terminator, - aux_sym_field_definition_token1, - aux_sym_index_definition_token1, - [133524] = 7, - ACTIONS(59), 1, + [134928] = 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(4153), 1, - aux_sym_on_error_phrase_token1, - STATE(3969), 1, - sym_on_stop_phrase, - ACTIONS(2449), 2, - anon_sym_COMMA, - anon_sym_COLON, - STATE(3038), 2, + ACTIONS(4660), 1, + sym_identifier, + STATE(3066), 2, sym_comment, sym_include, - [133548] = 5, + ACTIONS(4662), 3, + anon_sym_COLON, + aux_sym_repeat_tuning_token1, + aux_sym_on_error_phrase_token1, + [134950] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(3039), 2, + STATE(3067), 2, sym_comment, sym_include, - ACTIONS(4786), 4, + ACTIONS(4099), 4, sym_identifier, - aux_sym_input_expression_token2, - aux_sym_do_block_token1, + sym__terminator, aux_sym_field_definition_token1, - [133568] = 6, + aux_sym_index_definition_token1, + [134970] = 8, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(4744), 1, - aux_sym_procedure_parameter_definition_token1, - STATE(3040), 2, + ACTIONS(3338), 1, + aux_sym_repeat_tuning_token1, + ACTIONS(3878), 1, + anon_sym_COLON, + STATE(3159), 1, + aux_sym_repeat_statement_repeat1, + STATE(3672), 1, + sym_repeat_tuning, + STATE(3068), 2, sym_comment, sym_include, - ACTIONS(4788), 3, - aux_sym_on_error_phrase_token4, - aux_sym_on_error_phrase_token5, - aux_sym_on_error_phrase_token6, - [133590] = 5, + [134996] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(191), 1, - sym_identifier, - STATE(3041), 2, + ACTIONS(7), 1, + anon_sym_LBRACE, + STATE(3069), 2, sym_comment, sym_include, - ACTIONS(189), 4, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_DQUOTE, - aux_sym_include_argument_token1, - [133610] = 8, + ACTIONS(4103), 4, + sym_identifier, + sym__terminator, + aux_sym_field_definition_token1, + aux_sym_index_definition_token1, + [135016] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(4790), 1, - aux_sym_stream_definition_token1, - ACTIONS(4792), 1, - aux_sym_input_close_statement_token1, - ACTIONS(4794), 1, - aux_sym_input_close_statement_token2, - ACTIONS(4796), 1, - aux_sym_output_stream_statement_token1, - STATE(3042), 2, + ACTIONS(4664), 1, + sym__namecolon, + ACTIONS(93), 2, + anon_sym_LPAREN, + anon_sym_EQ, + STATE(3070), 3, sym_comment, sym_include, - [133636] = 8, + aux_sym_object_access_repeat1, + [135038] = 7, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(4798), 1, - aux_sym_stream_definition_token1, - ACTIONS(4800), 1, - aux_sym_input_close_statement_token1, - ACTIONS(4802), 1, - aux_sym_input_close_statement_token2, - ACTIONS(4804), 1, - aux_sym_output_stream_statement_token1, - STATE(3043), 2, + ACTIONS(4207), 1, + aux_sym_on_error_phrase_token1, + STATE(3820), 1, + sym_on_stop_phrase, + ACTIONS(4326), 2, + anon_sym_COMMA, + anon_sym_COLON, + STATE(3071), 2, sym_comment, sym_include, - [133662] = 8, - ACTIONS(59), 1, + [135062] = 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(4806), 1, - aux_sym_using_statement_token2, - ACTIONS(4808), 1, - aux_sym_stream_definition_token1, - ACTIONS(4810), 1, - aux_sym_input_close_statement_token1, - ACTIONS(4812), 1, - aux_sym_input_close_statement_token2, - STATE(3044), 2, + ACTIONS(4667), 1, + sym_identifier, + STATE(292), 1, + sym_qualified_name, + ACTIONS(4669), 2, + aux_sym_for_phrase_token2, + aux_sym_for_phrase_token3, + STATE(3072), 2, sym_comment, sym_include, - [133688] = 5, + [135086] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(3045), 2, + STATE(3073), 2, sym_comment, sym_include, - ACTIONS(4814), 4, + ACTIONS(4671), 4, sym_identifier, aux_sym_input_expression_token2, aux_sym_do_block_token1, aux_sym_field_definition_token1, - [133708] = 8, + [135106] = 5, + ACTIONS(59), 1, + anon_sym_SLASH_SLASH, + ACTIONS(61), 1, + anon_sym_SLASH_STAR, + ACTIONS(65), 1, + anon_sym_LBRACE, + STATE(3074), 2, + sym_comment, + sym_include, + ACTIONS(4673), 4, + anon_sym_COLON, + aux_sym_on_error_phrase_token1, + aux_sym_stop_after_phrase_token1, + aux_sym_do_tuning_token1, + [135126] = 8, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(1472), 1, + ACTIONS(1480), 1, anon_sym_COMMA, - ACTIONS(4816), 1, + ACTIONS(4675), 1, aux_sym_of_token1, - ACTIONS(4818), 1, + ACTIONS(4677), 1, aux_sym_on_statement_token1, - STATE(3006), 1, + STATE(3051), 1, aux_sym_on_statement_repeat1, - STATE(3046), 2, + STATE(3075), 2, sym_comment, sym_include, - [133734] = 6, + [135152] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(4820), 1, + ACTIONS(4679), 1, sym_identifier, - STATE(3047), 2, + STATE(3076), 2, sym_comment, sym_include, - ACTIONS(4822), 3, - anon_sym_COMMA, + ACTIONS(4681), 3, anon_sym_COLON, + aux_sym_repeat_tuning_token1, aux_sym_on_error_phrase_token1, - [133756] = 5, + [135174] = 8, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - STATE(3048), 2, + ACTIONS(3338), 1, + aux_sym_repeat_tuning_token1, + ACTIONS(3366), 1, + anon_sym_COLON, + STATE(3010), 1, + aux_sym_repeat_statement_repeat1, + STATE(3672), 1, + sym_repeat_tuning, + STATE(3077), 2, sym_comment, sym_include, - ACTIONS(4824), 4, - sym__terminator, - anon_sym_COMMA, - anon_sym_COLON, - aux_sym_on_error_phrase_token1, - [133776] = 5, + [135200] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - STATE(3049), 2, + STATE(3078), 2, sym_comment, sym_include, - ACTIONS(4826), 4, - sym__terminator, + ACTIONS(4683), 4, anon_sym_COMMA, anon_sym_COLON, + aux_sym_repeat_tuning_token1, aux_sym_on_error_phrase_token1, - [133796] = 5, + [135220] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - STATE(3050), 2, + STATE(3079), 2, sym_comment, sym_include, - ACTIONS(4828), 4, - sym__terminator, + ACTIONS(4685), 4, anon_sym_COMMA, anon_sym_COLON, + aux_sym_repeat_tuning_token1, aux_sym_on_error_phrase_token1, - [133816] = 6, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - ACTIONS(7), 1, - anon_sym_LBRACE, - ACTIONS(4830), 1, - anon_sym_DQUOTE, - ACTIONS(4832), 2, - aux_sym_double_quoted_string_token1, - aux_sym_double_quoted_string_token2, - STATE(3051), 3, - sym_comment, - sym_include, - aux_sym_double_quoted_string_repeat1, - [133838] = 8, + [135240] = 8, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(4835), 1, + ACTIONS(4687), 1, aux_sym_using_statement_token2, - ACTIONS(4837), 1, + ACTIONS(4689), 1, aux_sym_stream_definition_token1, - ACTIONS(4839), 1, + ACTIONS(4691), 1, aux_sym_input_close_statement_token1, - ACTIONS(4841), 1, + ACTIONS(4693), 1, aux_sym_input_close_statement_token2, - STATE(3052), 2, + STATE(3080), 2, sym_comment, sym_include, - [133864] = 6, + [135266] = 8, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(4628), 1, - aux_sym_procedure_parameter_definition_token1, - STATE(3053), 2, - sym_comment, - sym_include, - ACTIONS(4843), 3, - aux_sym_on_error_phrase_token4, - aux_sym_on_error_phrase_token5, - aux_sym_on_error_phrase_token6, - [133886] = 6, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - ACTIONS(7), 1, - anon_sym_LBRACE, - ACTIONS(4845), 1, - sym_identifier, - STATE(3054), 2, + ACTIONS(3338), 1, + aux_sym_repeat_tuning_token1, + ACTIONS(4553), 1, + anon_sym_COLON, + STATE(3114), 1, + aux_sym_repeat_statement_repeat1, + STATE(3672), 1, + sym_repeat_tuning, + STATE(3081), 2, sym_comment, sym_include, - ACTIONS(4847), 3, - anon_sym_COMMA, - anon_sym_COLON, - aux_sym_on_error_phrase_token1, - [133908] = 8, + [135292] = 7, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(4038), 1, + ACTIONS(4207), 1, + aux_sym_on_error_phrase_token1, + STATE(3971), 1, + sym_on_stop_phrase, + ACTIONS(2614), 2, anon_sym_COMMA, - ACTIONS(4040), 1, - aux_sym_data_relation_token1, - STATE(2576), 1, - aux_sym_data_relation_repeat1, - STATE(4501), 1, - sym_data_relation, - STATE(3055), 2, + anon_sym_COLON, + STATE(3082), 2, sym_comment, sym_include, - [133934] = 5, - ACTIONS(3), 1, + [135316] = 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(3056), 2, + ACTIONS(3338), 1, + aux_sym_repeat_tuning_token1, + ACTIONS(3419), 1, + anon_sym_COLON, + STATE(3159), 1, + aux_sym_repeat_statement_repeat1, + STATE(3672), 1, + sym_repeat_tuning, + STATE(3083), 2, sym_comment, sym_include, - ACTIONS(4021), 4, - sym_identifier, - sym__terminator, - aux_sym_field_definition_token1, - aux_sym_index_definition_token1, - [133954] = 7, - ACTIONS(3), 1, + [135342] = 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(4849), 1, - sym_identifier, - STATE(296), 1, - sym_qualified_name, - ACTIONS(4851), 2, - aux_sym_for_phrase_token2, - aux_sym_for_phrase_token3, - STATE(3057), 2, + ACTIONS(3338), 1, + aux_sym_repeat_tuning_token1, + ACTIONS(4695), 1, + anon_sym_COLON, + STATE(3159), 1, + aux_sym_repeat_statement_repeat1, + STATE(3672), 1, + sym_repeat_tuning, + STATE(3084), 2, sym_comment, sym_include, - [133978] = 5, + [135368] = 8, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - STATE(3058), 2, + ACTIONS(3338), 1, + aux_sym_repeat_tuning_token1, + ACTIONS(3419), 1, + anon_sym_COLON, + STATE(2988), 1, + aux_sym_repeat_statement_repeat1, + STATE(3672), 1, + sym_repeat_tuning, + STATE(3085), 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, - [133997] = 7, - ACTIONS(59), 1, + [135394] = 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(3786), 1, - anon_sym_COLON, - ACTIONS(4153), 1, - aux_sym_on_error_phrase_token1, - STATE(4221), 1, - sym_on_stop_phrase, - STATE(3059), 2, + ACTIONS(4697), 1, + anon_sym_DQUOTE, + STATE(3107), 1, + aux_sym_double_quoted_string_repeat1, + ACTIONS(4565), 2, + aux_sym_double_quoted_string_token1, + aux_sym_double_quoted_string_token2, + STATE(3086), 2, sym_comment, sym_include, - [134020] = 7, + [135418] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(61), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(4853), 1, - sym_file_name, - ACTIONS(4855), 1, + ACTIONS(7), 1, anon_sym_LBRACE, - STATE(3064), 1, - aux_sym_include_repeat1, - STATE(4719), 1, - sym_constant, - STATE(3060), 2, + ACTIONS(4699), 1, + anon_sym_SQUOTE, + STATE(3104), 1, + aux_sym_single_quoted_string_repeat1, + ACTIONS(4567), 2, + aux_sym_double_quoted_string_token2, + aux_sym_single_quoted_string_token1, + STATE(3087), 2, sym_comment, sym_include, - [134043] = 5, - ACTIONS(59), 1, + [135442] = 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(3061), 2, + ACTIONS(4701), 1, + anon_sym_DQUOTE, + STATE(3106), 1, + aux_sym_double_quoted_string_repeat1, + ACTIONS(4565), 2, + aux_sym_double_quoted_string_token1, + aux_sym_double_quoted_string_token2, + STATE(3088), 2, sym_comment, sym_include, - ACTIONS(4857), 3, - aux_sym_for_phrase_token1, - aux_sym_for_phrase_token2, - aux_sym_for_phrase_token3, - [134062] = 5, - ACTIONS(59), 1, + [135466] = 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(3062), 2, + ACTIONS(4703), 1, + anon_sym_SQUOTE, + STATE(3104), 1, + aux_sym_single_quoted_string_repeat1, + ACTIONS(4567), 2, + aux_sym_double_quoted_string_token2, + aux_sym_single_quoted_string_token1, + STATE(3089), 2, sym_comment, sym_include, - ACTIONS(4859), 3, - aux_sym_for_phrase_token1, - aux_sym_for_phrase_token2, - aux_sym_for_phrase_token3, - [134081] = 7, + [135490] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(4861), 1, + ACTIONS(4705), 1, sym_identifier, - ACTIONS(4863), 1, - anon_sym_AMP, - ACTIONS(4865), 1, - sym__integer_literal, - STATE(3063), 2, + STATE(3090), 2, sym_comment, sym_include, - [134104] = 7, + ACTIONS(4707), 3, + anon_sym_COLON, + aux_sym_repeat_tuning_token1, + aux_sym_on_error_phrase_token1, + [135512] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(61), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(4855), 1, + ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(4867), 1, - sym_file_name, - STATE(3081), 1, - aux_sym_include_repeat1, - STATE(4719), 1, - sym_constant, - STATE(3064), 2, + ACTIONS(4709), 1, + anon_sym_DQUOTE, + STATE(3106), 1, + aux_sym_double_quoted_string_repeat1, + ACTIONS(4565), 2, + aux_sym_double_quoted_string_token1, + aux_sym_double_quoted_string_token2, + STATE(3091), 2, sym_comment, sym_include, - [134127] = 5, - ACTIONS(59), 1, + [135536] = 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(3065), 2, + ACTIONS(4711), 1, + anon_sym_DQUOTE, + STATE(3115), 1, + aux_sym_double_quoted_string_repeat1, + ACTIONS(4565), 2, + aux_sym_double_quoted_string_token1, + aux_sym_double_quoted_string_token2, + STATE(3092), 2, sym_comment, sym_include, - ACTIONS(4869), 3, - aux_sym_for_phrase_token1, - aux_sym_for_phrase_token2, - aux_sym_for_phrase_token3, - [134146] = 5, + [135560] = 8, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - STATE(3066), 2, + ACTIONS(3338), 1, + aux_sym_repeat_tuning_token1, + ACTIONS(4713), 1, + anon_sym_COLON, + STATE(3159), 1, + aux_sym_repeat_statement_repeat1, + STATE(3672), 1, + sym_repeat_tuning, + STATE(3093), 2, sym_comment, sym_include, - ACTIONS(4871), 3, - aux_sym_for_phrase_token1, - aux_sym_for_phrase_token2, - aux_sym_for_phrase_token3, - [134165] = 7, + [135586] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(4873), 1, - sym_identifier, - ACTIONS(4875), 1, - aux_sym_input_expression_token2, - STATE(584), 1, - sym_qualified_name, - STATE(3067), 2, + ACTIONS(4715), 1, + anon_sym_SQUOTE, + STATE(3122), 1, + aux_sym_single_quoted_string_repeat1, + ACTIONS(4567), 2, + aux_sym_double_quoted_string_token2, + aux_sym_single_quoted_string_token1, + STATE(3094), 2, sym_comment, sym_include, - [134188] = 7, + [135610] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(901), 1, - anon_sym_LPAREN, - ACTIONS(4877), 1, + ACTIONS(4717), 1, sym_identifier, - STATE(581), 1, - sym_parenthesized_expression, - STATE(3068), 2, + STATE(293), 1, + sym_qualified_name, + ACTIONS(4719), 2, + aux_sym_for_phrase_token2, + aux_sym_for_phrase_token3, + STATE(3095), 2, sym_comment, sym_include, - [134211] = 5, - ACTIONS(59), 1, + [135634] = 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(3069), 2, + ACTIONS(4721), 1, + anon_sym_SQUOTE, + STATE(3108), 1, + aux_sym_single_quoted_string_repeat1, + ACTIONS(4567), 2, + aux_sym_double_quoted_string_token2, + aux_sym_single_quoted_string_token1, + STATE(3096), 2, sym_comment, sym_include, - ACTIONS(4879), 3, - aux_sym_for_phrase_token1, - aux_sym_for_phrase_token2, - aux_sym_for_phrase_token3, - [134230] = 5, + [135658] = 8, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - STATE(3070), 2, + ACTIONS(3338), 1, + aux_sym_repeat_tuning_token1, + ACTIONS(4589), 1, + anon_sym_COLON, + STATE(3143), 1, + aux_sym_repeat_statement_repeat1, + STATE(3672), 1, + sym_repeat_tuning, + STATE(3097), 2, sym_comment, sym_include, - ACTIONS(4881), 3, - aux_sym_for_phrase_token1, - aux_sym_for_phrase_token2, - aux_sym_for_phrase_token3, - [134249] = 5, + [135684] = 8, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - STATE(3071), 2, + ACTIONS(3338), 1, + aux_sym_repeat_tuning_token1, + ACTIONS(3706), 1, + anon_sym_COLON, + STATE(3159), 1, + aux_sym_repeat_statement_repeat1, + STATE(3672), 1, + sym_repeat_tuning, + STATE(3098), 2, sym_comment, sym_include, - ACTIONS(4883), 3, - aux_sym_for_phrase_token1, - aux_sym_for_phrase_token2, - aux_sym_for_phrase_token3, - [134268] = 7, + [135710] = 8, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(4885), 1, - aux_sym_on_error_phrase_token2, - ACTIONS(4887), 1, - aux_sym_on_stop_phrase_token1, - ACTIONS(4889), 1, - aux_sym_on_quit_phrase_token1, - STATE(3072), 2, + ACTIONS(4004), 1, + anon_sym_COMMA, + ACTIONS(4006), 1, + aux_sym_data_relation_token1, + STATE(2676), 1, + aux_sym_data_relation_repeat1, + STATE(4486), 1, + sym_data_relation, + STATE(3099), 2, sym_comment, sym_include, - [134291] = 7, + [135736] = 8, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(3898), 1, + ACTIONS(3338), 1, + aux_sym_repeat_tuning_token1, + ACTIONS(3706), 1, anon_sym_COLON, - ACTIONS(4153), 1, - aux_sym_on_error_phrase_token1, - STATE(4499), 1, - sym_on_stop_phrase, - STATE(3073), 2, + STATE(3068), 1, + aux_sym_repeat_statement_repeat1, + STATE(3672), 1, + sym_repeat_tuning, + STATE(3100), 2, sym_comment, sym_include, - [134314] = 7, + [135762] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2721), 1, - aux_sym_inherits_token1, - ACTIONS(4402), 1, - anon_sym_COLON, - STATE(4519), 1, - sym_inherits, - STATE(3074), 2, + STATE(3101), 2, sym_comment, sym_include, - [134337] = 7, - ACTIONS(3), 1, + ACTIONS(4723), 4, + sym__terminator, + aux_sym_query_definition_tuning_token1, + anon_sym_SCROLLING, + aux_sym_query_definition_tuning_token2, + [135782] = 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(4891), 1, - sym_identifier, - ACTIONS(4893), 1, - aux_sym_primitive_type_token19, - STATE(4540), 1, - sym_qualified_name, - STATE(3075), 2, + ACTIONS(4725), 1, + aux_sym_stream_definition_token1, + ACTIONS(4727), 1, + aux_sym_input_close_statement_token1, + ACTIONS(4729), 1, + aux_sym_input_close_statement_token2, + ACTIONS(4731), 1, + aux_sym_output_stream_statement_token1, + STATE(3102), 2, sym_comment, sym_include, - [134360] = 7, + [135808] = 8, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, @@ -153318,1290 +155032,1644 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, ACTIONS(679), 1, sym__namedot, - ACTIONS(4895), 1, + ACTIONS(4733), 1, sym__terminator, - STATE(329), 1, + ACTIONS(4735), 1, + aux_sym_using_statement_token2, + STATE(336), 1, aux_sym_qualified_name_repeat1, - STATE(3076), 2, + STATE(3103), 2, sym_comment, sym_include, - [134383] = 5, - ACTIONS(59), 1, + [135834] = 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(3077), 2, + ACTIONS(4740), 1, + anon_sym_SQUOTE, + ACTIONS(4737), 2, + aux_sym_double_quoted_string_token2, + aux_sym_single_quoted_string_token1, + STATE(3104), 3, sym_comment, sym_include, - ACTIONS(4897), 3, - aux_sym_for_phrase_token1, - aux_sym_for_phrase_token2, - aux_sym_for_phrase_token3, - [134402] = 5, + aux_sym_single_quoted_string_repeat1, + [135856] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(3078), 2, + ACTIONS(4742), 1, + anon_sym_SQUOTE, + STATE(3087), 1, + aux_sym_single_quoted_string_repeat1, + ACTIONS(4567), 2, + aux_sym_double_quoted_string_token2, + aux_sym_single_quoted_string_token1, + STATE(3105), 2, sym_comment, sym_include, - ACTIONS(4899), 3, - sym_identifier, - sym__terminator, - anon_sym_NO_DASHERROR, - [134421] = 5, + [135880] = 6, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_LBRACE, + ACTIONS(4744), 1, + anon_sym_DQUOTE, + ACTIONS(4746), 2, + aux_sym_double_quoted_string_token1, + aux_sym_double_quoted_string_token2, + STATE(3106), 3, + sym_comment, + sym_include, + aux_sym_double_quoted_string_repeat1, + [135902] = 7, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_LBRACE, + ACTIONS(4749), 1, + anon_sym_DQUOTE, + STATE(3106), 1, + aux_sym_double_quoted_string_repeat1, + ACTIONS(4565), 2, + aux_sym_double_quoted_string_token1, + aux_sym_double_quoted_string_token2, + STATE(3107), 2, + sym_comment, + sym_include, + [135926] = 7, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_LBRACE, + ACTIONS(4751), 1, + anon_sym_SQUOTE, + STATE(3104), 1, + aux_sym_single_quoted_string_repeat1, + ACTIONS(4567), 2, + aux_sym_double_quoted_string_token2, + aux_sym_single_quoted_string_token1, + STATE(3108), 2, + sym_comment, + sym_include, + [135950] = 8, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - STATE(3079), 2, + ACTIONS(4753), 1, + aux_sym_stream_definition_token1, + ACTIONS(4755), 1, + aux_sym_input_close_statement_token1, + ACTIONS(4757), 1, + aux_sym_input_close_statement_token2, + ACTIONS(4759), 1, + aux_sym_output_stream_statement_token1, + STATE(3109), 2, sym_comment, sym_include, - ACTIONS(4901), 3, - aux_sym_for_phrase_token1, - aux_sym_for_phrase_token2, - aux_sym_for_phrase_token3, - [134440] = 5, + [135976] = 8, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - STATE(3080), 2, + ACTIONS(4761), 1, + aux_sym_stream_definition_token1, + ACTIONS(4763), 1, + aux_sym_input_close_statement_token1, + ACTIONS(4765), 1, + aux_sym_input_close_statement_token2, + ACTIONS(4767), 1, + aux_sym_output_stream_statement_token1, + STATE(3110), 2, sym_comment, sym_include, - ACTIONS(4903), 3, - aux_sym_for_phrase_token1, - aux_sym_for_phrase_token2, - aux_sym_for_phrase_token3, - [134459] = 6, - ACTIONS(3), 1, + [136002] = 8, + ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, - ACTIONS(4905), 1, - sym_file_name, - ACTIONS(4907), 1, + ACTIONS(65), 1, anon_sym_LBRACE, - STATE(4719), 1, - sym_constant, - STATE(3081), 3, + ACTIONS(4769), 1, + aux_sym_using_statement_token2, + ACTIONS(4771), 1, + aux_sym_stream_definition_token1, + ACTIONS(4773), 1, + aux_sym_input_close_statement_token1, + ACTIONS(4775), 1, + aux_sym_input_close_statement_token2, + STATE(3111), 2, sym_comment, sym_include, - aux_sym_include_repeat1, - [134480] = 5, + [136028] = 8, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - STATE(3082), 2, + ACTIONS(4777), 1, + aux_sym_using_statement_token2, + ACTIONS(4779), 1, + aux_sym_stream_definition_token1, + ACTIONS(4781), 1, + aux_sym_input_close_statement_token1, + ACTIONS(4783), 1, + aux_sym_input_close_statement_token2, + STATE(3112), 2, sym_comment, sym_include, - ACTIONS(117), 3, - sym__namecolon, - anon_sym_LPAREN, - anon_sym_EQ, - [134499] = 5, + [136054] = 8, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(3083), 2, + ACTIONS(4785), 1, + sym_identifier, + ACTIONS(4787), 1, + sym__terminator, + ACTIONS(4789), 1, + aux_sym_query_definition_token1, + STATE(3433), 1, + sym_qualified_name, + STATE(3113), 2, sym_comment, sym_include, - ACTIONS(4910), 3, - anon_sym_DQUOTE, - aux_sym_double_quoted_string_token1, - aux_sym_double_quoted_string_token2, - [134518] = 7, + [136080] = 8, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2721), 1, - aux_sym_inherits_token1, - ACTIONS(4447), 1, + ACTIONS(3338), 1, + aux_sym_repeat_tuning_token1, + ACTIONS(4791), 1, anon_sym_COLON, - STATE(4632), 1, - sym_inherits, - STATE(3084), 2, + STATE(3159), 1, + aux_sym_repeat_statement_repeat1, + STATE(3672), 1, + sym_repeat_tuning, + STATE(3114), 2, sym_comment, sym_include, - [134541] = 7, + [136106] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(4912), 1, - sym_identifier, - ACTIONS(4914), 1, - aux_sym_input_expression_token2, - STATE(46), 1, - sym_qualified_name, - STATE(3085), 2, + ACTIONS(4793), 1, + anon_sym_DQUOTE, + STATE(3106), 1, + aux_sym_double_quoted_string_repeat1, + ACTIONS(4565), 2, + aux_sym_double_quoted_string_token1, + aux_sym_double_quoted_string_token2, + STATE(3115), 2, sym_comment, sym_include, - [134564] = 7, - ACTIONS(59), 1, + [136130] = 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(4916), 1, - anon_sym_RPAREN, - ACTIONS(4918), 1, - anon_sym_COMMA, - STATE(3126), 1, - aux_sym__function_call_arguments_repeat1, - STATE(3086), 2, + ACTIONS(4795), 1, + anon_sym_SQUOTE, + STATE(3089), 1, + aux_sym_single_quoted_string_repeat1, + ACTIONS(4567), 2, + aux_sym_double_quoted_string_token2, + aux_sym_single_quoted_string_token1, + STATE(3116), 2, sym_comment, sym_include, - [134587] = 7, - ACTIONS(59), 1, + [136154] = 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(679), 1, - sym__namedot, - ACTIONS(4920), 1, - anon_sym_LPAREN, - STATE(329), 1, - aux_sym_qualified_name_repeat1, - STATE(3087), 2, + STATE(3117), 2, sym_comment, sym_include, - [134610] = 7, + ACTIONS(4797), 4, + sym_identifier, + aux_sym_input_expression_token2, + aux_sym_do_block_token1, + aux_sym_field_definition_token1, + [136174] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2721), 1, - aux_sym_inherits_token1, - ACTIONS(4396), 1, - anon_sym_COLON, - STATE(4600), 1, - sym_inherits, - STATE(3088), 2, + ACTIONS(4799), 1, + aux_sym_procedure_parameter_definition_token1, + STATE(3118), 2, sym_comment, sym_include, - [134633] = 7, - ACTIONS(59), 1, + ACTIONS(4801), 3, + aux_sym_on_error_phrase_token4, + aux_sym_on_error_phrase_token5, + aux_sym_on_error_phrase_token6, + [136196] = 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(4922), 1, - aux_sym_buffer_definition_token2, - ACTIONS(4924), 1, - aux_sym_repeat_statement_token1, - ACTIONS(4926), 1, - aux_sym_do_block_token1, - STATE(3089), 2, + ACTIONS(4803), 1, + anon_sym_DQUOTE, + STATE(3091), 1, + aux_sym_double_quoted_string_repeat1, + ACTIONS(4565), 2, + aux_sym_double_quoted_string_token1, + aux_sym_double_quoted_string_token2, + STATE(3119), 2, sym_comment, sym_include, - [134656] = 7, - ACTIONS(59), 1, + [136220] = 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(2721), 1, - aux_sym_inherits_token1, - ACTIONS(4336), 1, - anon_sym_COLON, - STATE(4567), 1, - sym_inherits, - STATE(3090), 2, + ACTIONS(4805), 1, + anon_sym_DQUOTE, + STATE(3106), 1, + aux_sym_double_quoted_string_repeat1, + ACTIONS(4565), 2, + aux_sym_double_quoted_string_token1, + aux_sym_double_quoted_string_token2, + STATE(3120), 2, sym_comment, sym_include, - [134679] = 7, + [136244] = 5, 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(4928), 1, - anon_sym_COLON, - STATE(329), 1, - aux_sym_qualified_name_repeat1, - STATE(3091), 2, + STATE(3121), 2, + sym_comment, + sym_include, + ACTIONS(4807), 4, + sym__terminator, + aux_sym_query_definition_tuning_token1, + anon_sym_SCROLLING, + aux_sym_query_definition_tuning_token2, + [136264] = 7, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_LBRACE, + ACTIONS(4809), 1, + anon_sym_SQUOTE, + STATE(3104), 1, + aux_sym_single_quoted_string_repeat1, + ACTIONS(4567), 2, + aux_sym_double_quoted_string_token2, + aux_sym_single_quoted_string_token1, + STATE(3122), 2, + sym_comment, + sym_include, + [136288] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(4811), 1, + sym_identifier, + STATE(3123), 2, + sym_comment, + sym_include, + ACTIONS(4813), 4, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_DQUOTE, + aux_sym_include_argument_token1, + [136308] = 7, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_LBRACE, + ACTIONS(4815), 1, + sym_identifier, + STATE(290), 1, + sym_qualified_name, + ACTIONS(4817), 2, + aux_sym_for_phrase_token2, + aux_sym_for_phrase_token3, + STATE(3124), 2, sym_comment, sym_include, - [134702] = 7, + [136332] = 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(4930), 1, + ACTIONS(3338), 1, + aux_sym_repeat_tuning_token1, + ACTIONS(3358), 1, anon_sym_COLON, - STATE(329), 1, - aux_sym_qualified_name_repeat1, - STATE(3092), 2, + STATE(3159), 1, + aux_sym_repeat_statement_repeat1, + STATE(3672), 1, + sym_repeat_tuning, + STATE(3125), 2, sym_comment, sym_include, - [134725] = 7, + [136358] = 8, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(4932), 1, - aux_sym_buffer_definition_token2, - ACTIONS(4934), 1, - aux_sym_repeat_statement_token1, - ACTIONS(4936), 1, - aux_sym_do_block_token1, - STATE(3093), 2, + ACTIONS(4819), 1, + aux_sym_using_statement_token2, + ACTIONS(4821), 1, + aux_sym_stream_definition_token1, + ACTIONS(4823), 1, + aux_sym_input_close_statement_token1, + ACTIONS(4825), 1, + aux_sym_input_close_statement_token2, + STATE(3126), 2, sym_comment, sym_include, - [134748] = 5, + [136384] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - STATE(3094), 2, - sym_comment, - sym_include, - ACTIONS(4938), 3, + ACTIONS(4827), 1, + anon_sym_DQUOTE, + STATE(3088), 1, + aux_sym_double_quoted_string_repeat1, + ACTIONS(4565), 2, + aux_sym_double_quoted_string_token1, aux_sym_double_quoted_string_token2, - anon_sym_SQUOTE, - aux_sym_single_quoted_string_token1, - [134767] = 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(4940), 1, - sym__terminator, - STATE(329), 1, - aux_sym_qualified_name_repeat1, - STATE(3095), 2, + STATE(3127), 2, sym_comment, sym_include, - [134790] = 7, + [136408] = 8, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(3794), 1, + ACTIONS(3338), 1, + aux_sym_repeat_tuning_token1, + ACTIONS(4002), 1, anon_sym_COLON, - ACTIONS(4153), 1, - aux_sym_on_error_phrase_token1, - STATE(4394), 1, - sym_on_stop_phrase, - STATE(3096), 2, + STATE(3159), 1, + aux_sym_repeat_statement_repeat1, + STATE(3672), 1, + sym_repeat_tuning, + STATE(3128), 2, sym_comment, sym_include, - [134813] = 7, + [136434] = 8, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2721), 1, - aux_sym_inherits_token1, - ACTIONS(4288), 1, + ACTIONS(3338), 1, + aux_sym_repeat_tuning_token1, + ACTIONS(3364), 1, anon_sym_COLON, - STATE(4527), 1, - sym_inherits, - STATE(3097), 2, - sym_comment, - sym_include, - [134836] = 7, - ACTIONS(59), 1, - anon_sym_SLASH_SLASH, - ACTIONS(61), 1, - anon_sym_SLASH_STAR, - ACTIONS(65), 1, - anon_sym_LBRACE, - ACTIONS(4887), 1, - aux_sym_on_stop_phrase_token1, - ACTIONS(4942), 1, - aux_sym_on_error_phrase_token2, - ACTIONS(4944), 1, - aux_sym_on_quit_phrase_token1, - STATE(3098), 2, + STATE(3159), 1, + aux_sym_repeat_statement_repeat1, + STATE(3672), 1, + sym_repeat_tuning, + STATE(3129), 2, sym_comment, sym_include, - [134859] = 7, + [136460] = 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(4946), 1, - anon_sym_LPAREN, - STATE(329), 1, - aux_sym_qualified_name_repeat1, - STATE(3099), 2, + ACTIONS(4829), 1, + aux_sym_stream_definition_token1, + ACTIONS(4831), 1, + aux_sym_input_close_statement_token1, + ACTIONS(4833), 1, + aux_sym_input_close_statement_token2, + ACTIONS(4835), 1, + aux_sym_output_stream_statement_token1, + STATE(3130), 2, sym_comment, sym_include, - [134882] = 7, + [136486] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(4948), 1, + ACTIONS(4837), 1, sym_identifier, - ACTIONS(4950), 1, - anon_sym_AMP, - ACTIONS(4952), 1, - sym__integer_literal, - STATE(3100), 2, + STATE(303), 1, + sym_qualified_name, + ACTIONS(4839), 2, + aux_sym_for_phrase_token2, + aux_sym_for_phrase_token3, + STATE(3131), 2, sym_comment, sym_include, - [134905] = 7, + [136510] = 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(4954), 1, - sym__terminator, - STATE(329), 1, - aux_sym_qualified_name_repeat1, - STATE(3101), 2, + ACTIONS(3338), 1, + aux_sym_repeat_tuning_token1, + ACTIONS(3358), 1, + anon_sym_COLON, + STATE(2993), 1, + aux_sym_repeat_statement_repeat1, + STATE(3672), 1, + sym_repeat_tuning, + STATE(3132), 2, sym_comment, sym_include, - [134928] = 7, + [136536] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, - anon_sym_LBRACE, - ACTIONS(4956), 1, + ACTIONS(4841), 1, sym_identifier, - ACTIONS(4958), 1, - aux_sym_input_expression_token2, - STATE(1609), 1, - sym_qualified_name, - STATE(3102), 2, + STATE(3133), 2, sym_comment, sym_include, - [134951] = 7, - ACTIONS(59), 1, - anon_sym_SLASH_SLASH, - ACTIONS(61), 1, - anon_sym_SLASH_STAR, - ACTIONS(65), 1, + ACTIONS(4843), 4, anon_sym_LBRACE, - ACTIONS(679), 1, - sym__namedot, - ACTIONS(4960), 1, - anon_sym_LPAREN, - STATE(329), 1, - aux_sym_qualified_name_repeat1, - STATE(3103), 2, - sym_comment, - sym_include, - [134974] = 7, + anon_sym_RBRACE, + anon_sym_DQUOTE, + aux_sym_include_argument_token1, + [136556] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(973), 1, - anon_sym_LPAREN, - ACTIONS(4962), 1, + ACTIONS(4845), 1, sym_identifier, - STATE(1611), 1, - sym_parenthesized_expression, - STATE(3104), 2, + STATE(291), 1, + sym_qualified_name, + ACTIONS(4847), 2, + aux_sym_for_phrase_token2, + aux_sym_for_phrase_token3, + STATE(3134), 2, sym_comment, sym_include, - [134997] = 7, + [136580] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, - anon_sym_LBRACE, - ACTIONS(4964), 1, + ACTIONS(4849), 1, sym_identifier, - ACTIONS(4966), 1, - anon_sym_AMP, - ACTIONS(4968), 1, - sym__integer_literal, - STATE(3105), 2, + STATE(3135), 2, sym_comment, sym_include, - [135020] = 7, - ACTIONS(59), 1, + ACTIONS(4851), 4, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_DQUOTE, + aux_sym_include_argument_token1, + [136600] = 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(679), 1, - sym__namedot, - ACTIONS(4970), 1, - anon_sym_LPAREN, - STATE(329), 1, - aux_sym_qualified_name_repeat1, - STATE(3106), 2, + ACTIONS(4853), 1, + anon_sym_DQUOTE, + STATE(3120), 1, + aux_sym_double_quoted_string_repeat1, + ACTIONS(4565), 2, + aux_sym_double_quoted_string_token1, + aux_sym_double_quoted_string_token2, + STATE(3136), 2, sym_comment, sym_include, - [135043] = 7, + [136624] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(4972), 1, - sym_identifier, - ACTIONS(4974), 1, - anon_sym_AMP, - ACTIONS(4976), 1, - sym__integer_literal, - STATE(3107), 2, + ACTIONS(4855), 1, + anon_sym_DQUOTE, + STATE(3156), 1, + aux_sym_double_quoted_string_repeat1, + ACTIONS(4565), 2, + aux_sym_double_quoted_string_token1, + aux_sym_double_quoted_string_token2, + STATE(3137), 2, sym_comment, sym_include, - [135066] = 7, + [136648] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(4978), 1, - sym_identifier, - ACTIONS(4980), 1, - aux_sym_primitive_type_token19, - STATE(4354), 1, - sym_qualified_name, - STATE(3108), 2, + ACTIONS(4857), 1, + anon_sym_SQUOTE, + STATE(3157), 1, + aux_sym_single_quoted_string_repeat1, + ACTIONS(4567), 2, + aux_sym_double_quoted_string_token2, + aux_sym_single_quoted_string_token1, + STATE(3138), 2, sym_comment, sym_include, - [135089] = 7, + [136672] = 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(4982), 1, - anon_sym_LPAREN, - STATE(329), 1, - aux_sym_qualified_name_repeat1, - STATE(3109), 2, + ACTIONS(3338), 1, + aux_sym_repeat_tuning_token1, + ACTIONS(4695), 1, + anon_sym_COLON, + STATE(3007), 1, + aux_sym_repeat_statement_repeat1, + STATE(3672), 1, + sym_repeat_tuning, + STATE(3139), 2, sym_comment, sym_include, - [135112] = 7, - ACTIONS(3), 1, + [136698] = 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(4984), 1, - sym_identifier, - ACTIONS(4986), 1, - anon_sym_AMP, - ACTIONS(4988), 1, - sym__integer_literal, - STATE(3110), 2, + ACTIONS(4004), 1, + anon_sym_COMMA, + ACTIONS(4006), 1, + aux_sym_data_relation_token1, + STATE(3063), 1, + aux_sym_data_relation_repeat1, + STATE(4274), 1, + sym_data_relation, + STATE(3140), 2, sym_comment, sym_include, - [135135] = 7, + [136724] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2105), 1, + STATE(3141), 2, + sym_comment, + sym_include, + ACTIONS(4859), 4, anon_sym_COMMA, - ACTIONS(4990), 1, anon_sym_COLON, - STATE(3175), 1, - aux_sym_for_statement_repeat1, - STATE(3111), 2, + aux_sym_repeat_tuning_token1, + aux_sym_on_error_phrase_token1, + [136744] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(4861), 1, + sym_identifier, + STATE(3142), 2, sym_comment, sym_include, - [135158] = 7, + ACTIONS(4863), 4, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_DQUOTE, + aux_sym_include_argument_token1, + [136764] = 8, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2105), 1, - anon_sym_COMMA, - ACTIONS(4992), 1, + ACTIONS(3338), 1, + aux_sym_repeat_tuning_token1, + ACTIONS(4865), 1, anon_sym_COLON, - STATE(3111), 1, - aux_sym_for_statement_repeat1, - STATE(3112), 2, + STATE(3159), 1, + aux_sym_repeat_statement_repeat1, + STATE(3672), 1, + sym_repeat_tuning, + STATE(3143), 2, sym_comment, sym_include, - [135181] = 7, + [136790] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2105), 1, - anon_sym_COMMA, - ACTIONS(4992), 1, - anon_sym_COLON, - STATE(3175), 1, - aux_sym_for_statement_repeat1, - STATE(3113), 2, + ACTIONS(4631), 1, + aux_sym_procedure_parameter_definition_token1, + STATE(3144), 2, sym_comment, sym_include, - [135204] = 7, + ACTIONS(4867), 3, + aux_sym_on_error_phrase_token4, + aux_sym_on_error_phrase_token5, + aux_sym_on_error_phrase_token6, + [136812] = 7, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2105), 1, - anon_sym_COMMA, - ACTIONS(4994), 1, - anon_sym_COLON, - STATE(3175), 1, - aux_sym_for_statement_repeat1, - STATE(3114), 2, + ACTIONS(681), 1, + sym__namecolon, + STATE(3070), 1, + aux_sym_object_access_repeat1, + ACTIONS(107), 2, + anon_sym_LPAREN, + anon_sym_EQ, + STATE(3145), 2, sym_comment, sym_include, - [135227] = 7, + [136836] = 8, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2105), 1, - anon_sym_COMMA, - ACTIONS(4151), 1, + ACTIONS(3338), 1, + aux_sym_repeat_tuning_token1, + ACTIONS(3364), 1, anon_sym_COLON, - STATE(3113), 1, - aux_sym_for_statement_repeat1, - STATE(3115), 2, + STATE(3083), 1, + aux_sym_repeat_statement_repeat1, + STATE(3672), 1, + sym_repeat_tuning, + STATE(3146), 2, sym_comment, sym_include, - [135250] = 7, + [136862] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2105), 1, - anon_sym_COMMA, - ACTIONS(4151), 1, - anon_sym_COLON, - STATE(3175), 1, - aux_sym_for_statement_repeat1, - STATE(3116), 2, + ACTIONS(4799), 1, + aux_sym_procedure_parameter_definition_token1, + STATE(3147), 2, sym_comment, sym_include, - [135273] = 7, + ACTIONS(4869), 3, + aux_sym_on_error_phrase_token4, + aux_sym_on_error_phrase_token5, + aux_sym_on_error_phrase_token6, + [136884] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2105), 1, - anon_sym_COMMA, - ACTIONS(4996), 1, - anon_sym_COLON, - STATE(3114), 1, - aux_sym_for_statement_repeat1, - STATE(3117), 2, + ACTIONS(4631), 1, + aux_sym_procedure_parameter_definition_token1, + STATE(3148), 2, + sym_comment, + sym_include, + ACTIONS(4871), 3, + aux_sym_on_error_phrase_token4, + aux_sym_on_error_phrase_token5, + aux_sym_on_error_phrase_token6, + [136906] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_LBRACE, + STATE(3149), 2, sym_comment, sym_include, - [135296] = 7, + ACTIONS(4873), 4, + sym_identifier, + aux_sym_input_expression_token2, + aux_sym_do_block_token1, + aux_sym_field_definition_token1, + [136926] = 8, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2105), 1, + ACTIONS(1480), 1, anon_sym_COMMA, - ACTIONS(4996), 1, - anon_sym_COLON, - STATE(3175), 1, - aux_sym_for_statement_repeat1, - STATE(3118), 2, + ACTIONS(4875), 1, + aux_sym_of_token1, + ACTIONS(4877), 1, + aux_sym_on_statement_token1, + STATE(3051), 1, + aux_sym_on_statement_repeat1, + STATE(3150), 2, + sym_comment, + sym_include, + [136952] = 7, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_LBRACE, + ACTIONS(4879), 1, + anon_sym_SQUOTE, + STATE(3104), 1, + aux_sym_single_quoted_string_repeat1, + ACTIONS(4567), 2, + aux_sym_double_quoted_string_token2, + aux_sym_single_quoted_string_token1, + STATE(3151), 2, sym_comment, sym_include, - [135319] = 7, + [136976] = 8, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2105), 1, - anon_sym_COMMA, - ACTIONS(4118), 1, + ACTIONS(3338), 1, + aux_sym_repeat_tuning_token1, + ACTIONS(4121), 1, anon_sym_COLON, - STATE(3116), 1, - aux_sym_for_statement_repeat1, - STATE(3119), 2, + STATE(3159), 1, + aux_sym_repeat_statement_repeat1, + STATE(3672), 1, + sym_repeat_tuning, + STATE(3152), 2, sym_comment, sym_include, - [135342] = 7, + [137002] = 8, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2105), 1, + ACTIONS(1480), 1, anon_sym_COMMA, - ACTIONS(4118), 1, - anon_sym_COLON, - STATE(3175), 1, - aux_sym_for_statement_repeat1, - STATE(3120), 2, + ACTIONS(4881), 1, + aux_sym_of_token1, + ACTIONS(4883), 1, + aux_sym_on_statement_token1, + STATE(3051), 1, + aux_sym_on_statement_repeat1, + STATE(3153), 2, sym_comment, sym_include, - [135365] = 7, + [137028] = 8, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2105), 1, - anon_sym_COMMA, - ACTIONS(4155), 1, - anon_sym_COLON, - STATE(3118), 1, - aux_sym_for_statement_repeat1, - STATE(3121), 2, + ACTIONS(4885), 1, + aux_sym_using_statement_token2, + ACTIONS(4887), 1, + aux_sym_stream_definition_token1, + ACTIONS(4889), 1, + aux_sym_input_close_statement_token1, + ACTIONS(4891), 1, + aux_sym_input_close_statement_token2, + STATE(3154), 2, sym_comment, sym_include, - [135388] = 7, + [137054] = 8, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2105), 1, - anon_sym_COMMA, - ACTIONS(4155), 1, - anon_sym_COLON, - STATE(3175), 1, - aux_sym_for_statement_repeat1, - STATE(3122), 2, + ACTIONS(4893), 1, + aux_sym_stream_definition_token1, + ACTIONS(4895), 1, + aux_sym_input_close_statement_token1, + ACTIONS(4897), 1, + aux_sym_input_close_statement_token2, + ACTIONS(4899), 1, + aux_sym_output_stream_statement_token1, + STATE(3155), 2, + sym_comment, + sym_include, + [137080] = 7, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_LBRACE, + ACTIONS(4901), 1, + anon_sym_DQUOTE, + STATE(3106), 1, + aux_sym_double_quoted_string_repeat1, + ACTIONS(4565), 2, + aux_sym_double_quoted_string_token1, + aux_sym_double_quoted_string_token2, + STATE(3156), 2, + sym_comment, + sym_include, + [137104] = 7, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_LBRACE, + ACTIONS(4903), 1, + anon_sym_SQUOTE, + STATE(3104), 1, + aux_sym_single_quoted_string_repeat1, + ACTIONS(4567), 2, + aux_sym_double_quoted_string_token2, + aux_sym_single_quoted_string_token1, + STATE(3157), 2, sym_comment, sym_include, - [135411] = 7, + [137128] = 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(4998), 1, - sym__terminator, - STATE(329), 1, - aux_sym_qualified_name_repeat1, - STATE(3123), 2, + ACTIONS(3338), 1, + aux_sym_repeat_tuning_token1, + ACTIONS(4121), 1, + anon_sym_COLON, + STATE(3001), 1, + aux_sym_repeat_statement_repeat1, + STATE(3672), 1, + sym_repeat_tuning, + STATE(3158), 2, sym_comment, sym_include, - [135434] = 7, + [137154] = 7, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2105), 1, - anon_sym_COMMA, - ACTIONS(3216), 1, + ACTIONS(4905), 1, anon_sym_COLON, - STATE(3120), 1, - aux_sym_for_statement_repeat1, - STATE(3124), 2, + ACTIONS(4907), 1, + aux_sym_repeat_tuning_token1, + STATE(3672), 1, + sym_repeat_tuning, + STATE(3159), 3, sym_comment, sym_include, - [135457] = 7, + aux_sym_repeat_statement_repeat1, + [137178] = 8, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2105), 1, - anon_sym_COMMA, - ACTIONS(3216), 1, + ACTIONS(3338), 1, + aux_sym_repeat_tuning_token1, + ACTIONS(4611), 1, anon_sym_COLON, - STATE(3175), 1, - aux_sym_for_statement_repeat1, - STATE(3125), 2, + STATE(3060), 1, + aux_sym_repeat_statement_repeat1, + STATE(3672), 1, + sym_repeat_tuning, + STATE(3160), 2, + sym_comment, + sym_include, + [137204] = 8, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_LBRACE, + ACTIONS(4910), 1, + sym_identifier, + ACTIONS(4912), 1, + sym__terminator, + ACTIONS(4914), 1, + aux_sym_query_definition_token1, + STATE(3407), 1, + sym_qualified_name, + STATE(3161), 2, + sym_comment, + sym_include, + [137230] = 6, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_LBRACE, + ACTIONS(4916), 1, + sym_identifier, + STATE(3162), 2, sym_comment, sym_include, - [135480] = 7, + ACTIONS(4918), 3, + anon_sym_COLON, + aux_sym_repeat_tuning_token1, + aux_sym_on_error_phrase_token1, + [137252] = 8, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(4918), 1, + ACTIONS(1480), 1, anon_sym_COMMA, - ACTIONS(5000), 1, - anon_sym_RPAREN, - STATE(3163), 1, - aux_sym__function_call_arguments_repeat1, - STATE(3126), 2, + ACTIONS(4920), 1, + aux_sym_of_token1, + ACTIONS(4922), 1, + aux_sym_on_statement_token1, + STATE(3051), 1, + aux_sym_on_statement_repeat1, + STATE(3163), 2, sym_comment, sym_include, - [135503] = 7, + [137278] = 8, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2105), 1, - anon_sym_COMMA, - ACTIONS(4098), 1, + ACTIONS(3336), 1, anon_sym_COLON, - STATE(3122), 1, - aux_sym_for_statement_repeat1, - STATE(3127), 2, + ACTIONS(3338), 1, + aux_sym_repeat_tuning_token1, + STATE(3159), 1, + aux_sym_repeat_statement_repeat1, + STATE(3672), 1, + sym_repeat_tuning, + STATE(3164), 2, sym_comment, sym_include, - [135526] = 7, + [137304] = 8, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2105), 1, - anon_sym_COMMA, - ACTIONS(4098), 1, + ACTIONS(3338), 1, + aux_sym_repeat_tuning_token1, + ACTIONS(3414), 1, anon_sym_COLON, - STATE(3175), 1, - aux_sym_for_statement_repeat1, - STATE(3128), 2, + STATE(3159), 1, + aux_sym_repeat_statement_repeat1, + STATE(3672), 1, + sym_repeat_tuning, + STATE(3165), 2, sym_comment, sym_include, - [135549] = 7, + [137330] = 8, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2105), 1, + ACTIONS(4004), 1, anon_sym_COMMA, - ACTIONS(2600), 1, - anon_sym_COLON, - STATE(3125), 1, - aux_sym_for_statement_repeat1, - STATE(3129), 2, + ACTIONS(4006), 1, + aux_sym_data_relation_token1, + STATE(3032), 1, + aux_sym_data_relation_repeat1, + STATE(4338), 1, + sym_data_relation, + STATE(3166), 2, sym_comment, sym_include, - [135572] = 7, + [137356] = 8, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2105), 1, - anon_sym_COMMA, - ACTIONS(2600), 1, + ACTIONS(3338), 1, + aux_sym_repeat_tuning_token1, + ACTIONS(4135), 1, anon_sym_COLON, - STATE(3175), 1, - aux_sym_for_statement_repeat1, - STATE(3130), 2, + STATE(3084), 1, + aux_sym_repeat_statement_repeat1, + STATE(3672), 1, + sym_repeat_tuning, + STATE(3167), 2, sym_comment, sym_include, - [135595] = 7, + [137382] = 8, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2105), 1, - anon_sym_COMMA, - ACTIONS(3212), 1, + ACTIONS(3336), 1, anon_sym_COLON, - STATE(3128), 1, - aux_sym_for_statement_repeat1, - STATE(3131), 2, + ACTIONS(3338), 1, + aux_sym_repeat_tuning_token1, + STATE(3125), 1, + aux_sym_repeat_statement_repeat1, + STATE(3672), 1, + sym_repeat_tuning, + STATE(3168), 2, sym_comment, sym_include, - [135618] = 7, - ACTIONS(59), 1, + [137408] = 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(2105), 1, + ACTIONS(4916), 1, + sym_identifier, + STATE(3169), 2, + sym_comment, + sym_include, + ACTIONS(4918), 3, anon_sym_COMMA, - ACTIONS(3212), 1, anon_sym_COLON, - STATE(3175), 1, - aux_sym_for_statement_repeat1, - STATE(3132), 2, + aux_sym_on_error_phrase_token1, + [137430] = 6, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_LBRACE, + ACTIONS(4705), 1, + sym_identifier, + STATE(3170), 2, sym_comment, sym_include, - [135641] = 7, + ACTIONS(4707), 3, + anon_sym_COMMA, + anon_sym_COLON, + aux_sym_on_error_phrase_token1, + [137452] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(5002), 1, + ACTIONS(4679), 1, sym_identifier, - ACTIONS(5004), 1, - aux_sym_buffer_definition_token3, - STATE(4313), 1, - sym_qualified_name, - STATE(3133), 2, + STATE(3171), 2, sym_comment, sym_include, - [135664] = 7, + ACTIONS(4681), 3, + anon_sym_COMMA, + anon_sym_COLON, + aux_sym_on_error_phrase_token1, + [137474] = 8, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2105), 1, - anon_sym_COMMA, - ACTIONS(2584), 1, + ACTIONS(3338), 1, + aux_sym_repeat_tuning_token1, + ACTIONS(3414), 1, anon_sym_COLON, - STATE(3130), 1, - aux_sym_for_statement_repeat1, - STATE(3134), 2, + STATE(3036), 1, + aux_sym_repeat_statement_repeat1, + STATE(3672), 1, + sym_repeat_tuning, + STATE(3172), 2, sym_comment, sym_include, - [135687] = 7, - ACTIONS(59), 1, + [137500] = 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(2105), 1, + ACTIONS(4924), 1, + sym_identifier, + STATE(302), 1, + sym_qualified_name, + ACTIONS(4926), 2, + aux_sym_for_phrase_token2, + aux_sym_for_phrase_token3, + STATE(3173), 2, + sym_comment, + sym_include, + [137524] = 6, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_LBRACE, + ACTIONS(4660), 1, + sym_identifier, + STATE(3174), 2, + sym_comment, + sym_include, + ACTIONS(4662), 3, anon_sym_COMMA, - ACTIONS(2584), 1, anon_sym_COLON, - STATE(3175), 1, - aux_sym_for_statement_repeat1, - STATE(3135), 2, + aux_sym_on_error_phrase_token1, + [137546] = 6, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_LBRACE, + ACTIONS(4571), 1, + sym_identifier, + STATE(3175), 2, sym_comment, sym_include, - [135710] = 5, + ACTIONS(4573), 3, + anon_sym_COMMA, + anon_sym_COLON, + aux_sym_on_error_phrase_token1, + [137568] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - STATE(3136), 2, + STATE(3176), 2, sym_comment, sym_include, - ACTIONS(5006), 3, - sym__terminator, - aux_sym_field_definition_token1, - aux_sym_index_definition_token1, - [135729] = 7, + ACTIONS(1890), 3, + aux_sym__block_terminator_token1, + aux_sym_case_when_branch_token1, + aux_sym_case_otherwise_branch_token1, + [137587] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2105), 1, - anon_sym_COMMA, - ACTIONS(2582), 1, - anon_sym_COLON, - STATE(3132), 1, - aux_sym_for_statement_repeat1, - STATE(3137), 2, + STATE(3177), 2, sym_comment, sym_include, - [135752] = 7, - ACTIONS(59), 1, + ACTIONS(2022), 3, + aux_sym__block_terminator_token1, + aux_sym_case_when_branch_token1, + aux_sym_case_otherwise_branch_token1, + [137606] = 7, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, - ACTIONS(65), 1, + ACTIONS(4928), 1, + sym_file_name, + ACTIONS(4930), 1, anon_sym_LBRACE, - ACTIONS(2105), 1, - anon_sym_COMMA, - ACTIONS(2582), 1, - anon_sym_COLON, - STATE(3175), 1, - aux_sym_for_statement_repeat1, - STATE(3138), 2, + STATE(3182), 1, + aux_sym_include_repeat1, + STATE(4800), 1, + sym_constant, + STATE(3178), 2, sym_comment, sym_include, - [135775] = 7, + [137629] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(4153), 1, - aux_sym_on_error_phrase_token1, - ACTIONS(5008), 1, - anon_sym_COLON, - STATE(4433), 1, - sym_on_stop_phrase, - STATE(3139), 2, + STATE(3179), 2, sym_comment, sym_include, - [135798] = 7, + ACTIONS(4932), 3, + aux_sym_for_phrase_token1, + aux_sym_for_phrase_token2, + aux_sym_for_phrase_token3, + [137648] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2105), 1, - anon_sym_COMMA, - ACTIONS(2421), 1, - anon_sym_COLON, - STATE(3173), 1, - aux_sym_for_statement_repeat1, - STATE(3140), 2, + STATE(3180), 2, sym_comment, sym_include, - [135821] = 7, - ACTIONS(59), 1, + ACTIONS(4934), 3, + aux_sym_for_phrase_token1, + aux_sym_for_phrase_token2, + aux_sym_for_phrase_token3, + [137667] = 7, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_LBRACE, + ACTIONS(4936), 1, + sym_identifier, + ACTIONS(4938), 1, + anon_sym_AMP, + ACTIONS(4940), 1, + sym__integer_literal, + STATE(3181), 2, + sym_comment, + sym_include, + [137690] = 7, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, - ACTIONS(65), 1, + ACTIONS(4930), 1, anon_sym_LBRACE, - ACTIONS(2105), 1, - anon_sym_COMMA, - ACTIONS(2421), 1, - anon_sym_COLON, - STATE(3175), 1, - aux_sym_for_statement_repeat1, - STATE(3141), 2, + ACTIONS(4942), 1, + sym_file_name, + STATE(3197), 1, + aux_sym_include_repeat1, + STATE(4800), 1, + sym_constant, + STATE(3182), 2, sym_comment, sym_include, - [135844] = 7, + [137713] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2105), 1, - anon_sym_COMMA, - ACTIONS(2459), 1, - anon_sym_COLON, - STATE(3175), 1, - aux_sym_for_statement_repeat1, - STATE(3142), 2, + STATE(3183), 2, sym_comment, sym_include, - [135867] = 7, + ACTIONS(4944), 3, + aux_sym_for_phrase_token1, + aux_sym_for_phrase_token2, + aux_sym_for_phrase_token3, + [137732] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2105), 1, - anon_sym_COMMA, - ACTIONS(2459), 1, - anon_sym_COLON, - STATE(3135), 1, - aux_sym_for_statement_repeat1, - STATE(3143), 2, + STATE(3184), 2, + sym_comment, + sym_include, + ACTIONS(4946), 3, + aux_sym_for_phrase_token1, + aux_sym_for_phrase_token2, + aux_sym_for_phrase_token3, + [137751] = 7, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_LBRACE, + ACTIONS(4948), 1, + sym_identifier, + ACTIONS(4950), 1, + aux_sym_input_expression_token2, + STATE(569), 1, + sym_qualified_name, + STATE(3185), 2, + sym_comment, + sym_include, + [137774] = 7, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_LBRACE, + ACTIONS(839), 1, + anon_sym_LPAREN, + ACTIONS(4952), 1, + sym_identifier, + STATE(586), 1, + sym_parenthesized_expression, + STATE(3186), 2, sym_comment, sym_include, - [135890] = 7, + [137797] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5010), 1, - aux_sym_buffer_definition_token2, - ACTIONS(5012), 1, - aux_sym_repeat_statement_token1, - ACTIONS(5014), 1, - aux_sym_do_block_token1, - STATE(3144), 2, + STATE(3187), 2, sym_comment, sym_include, - [135913] = 7, + ACTIONS(4954), 3, + aux_sym_for_phrase_token1, + aux_sym_for_phrase_token2, + aux_sym_for_phrase_token3, + [137816] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2105), 1, - anon_sym_COMMA, - ACTIONS(2594), 1, - anon_sym_COLON, - STATE(3138), 1, - aux_sym_for_statement_repeat1, - STATE(3145), 2, + STATE(3188), 2, sym_comment, sym_include, - [135936] = 7, + ACTIONS(4956), 3, + aux_sym_for_phrase_token1, + aux_sym_for_phrase_token2, + aux_sym_for_phrase_token3, + [137835] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2105), 1, - anon_sym_COMMA, - ACTIONS(2594), 1, - anon_sym_COLON, - STATE(3175), 1, - aux_sym_for_statement_repeat1, - STATE(3146), 2, + STATE(3189), 2, sym_comment, sym_include, - [135959] = 7, + ACTIONS(4958), 3, + aux_sym_for_phrase_token1, + aux_sym_for_phrase_token2, + aux_sym_for_phrase_token3, + [137854] = 7, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(4153), 1, - aux_sym_on_error_phrase_token1, - ACTIONS(4302), 1, - anon_sym_COLON, - STATE(4274), 1, - sym_on_stop_phrase, - STATE(3147), 2, + ACTIONS(4960), 1, + aux_sym_on_error_phrase_token2, + ACTIONS(4962), 1, + aux_sym_on_stop_phrase_token1, + ACTIONS(4964), 1, + aux_sym_on_quit_phrase_token1, + STATE(3190), 2, sym_comment, sym_include, - [135982] = 7, + [137877] = 7, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2105), 1, - anon_sym_COMMA, - ACTIONS(2431), 1, + ACTIONS(2703), 1, + aux_sym_inherits_token1, + ACTIONS(4431), 1, anon_sym_COLON, - STATE(3175), 1, - aux_sym_for_statement_repeat1, - STATE(3148), 2, + STATE(4598), 1, + sym_inherits, + STATE(3191), 2, sym_comment, sym_include, - [136005] = 6, - ACTIONS(59), 1, + [137900] = 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(5016), 1, - aux_sym__block_terminator_token1, - STATE(1195), 2, - sym__block_terminator, - sym__procedure_terminator, - STATE(3149), 2, + ACTIONS(4966), 1, + sym_identifier, + ACTIONS(4968), 1, + aux_sym_primitive_type_token19, + STATE(4619), 1, + sym_qualified_name, + STATE(3192), 2, sym_comment, sym_include, - [136026] = 7, + [137923] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2105), 1, - anon_sym_COMMA, - ACTIONS(2431), 1, - anon_sym_COLON, - STATE(3142), 1, - aux_sym_for_statement_repeat1, - STATE(3150), 2, + STATE(3193), 2, sym_comment, sym_include, - [136049] = 7, + ACTIONS(4970), 3, + aux_sym_for_phrase_token1, + aux_sym_for_phrase_token2, + aux_sym_for_phrase_token3, + [137942] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(5018), 1, - anon_sym_RPAREN, - ACTIONS(5020), 1, - anon_sym_, - STATE(3243), 1, - aux_sym_accumulate_statement_repeat1, - STATE(3151), 2, + STATE(3194), 2, sym_comment, sym_include, - [136072] = 7, + ACTIONS(4972), 3, + sym_identifier, + sym__terminator, + anon_sym_NO_DASHERROR, + [137961] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(4153), 1, - aux_sym_on_error_phrase_token1, - ACTIONS(4742), 1, - anon_sym_COLON, - STATE(4406), 1, - sym_on_stop_phrase, - STATE(3152), 2, + STATE(3195), 2, sym_comment, sym_include, - [136095] = 7, + ACTIONS(4974), 3, + aux_sym_for_phrase_token1, + aux_sym_for_phrase_token2, + aux_sym_for_phrase_token3, + [137980] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2105), 1, - anon_sym_COMMA, - ACTIONS(2461), 1, - anon_sym_COLON, - STATE(3175), 1, - aux_sym_for_statement_repeat1, - STATE(3153), 2, + STATE(3196), 2, + sym_comment, + sym_include, + ACTIONS(4976), 3, + aux_sym_for_phrase_token1, + aux_sym_for_phrase_token2, + aux_sym_for_phrase_token3, + [137999] = 6, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(61), 1, + anon_sym_SLASH_STAR, + ACTIONS(4978), 1, + sym_file_name, + ACTIONS(4980), 1, + anon_sym_LBRACE, + STATE(4800), 1, + sym_constant, + STATE(3197), 3, sym_comment, sym_include, - [136118] = 7, + aux_sym_include_repeat1, + [138020] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2105), 1, - anon_sym_COMMA, - ACTIONS(2461), 1, - anon_sym_COLON, - STATE(3146), 1, - aux_sym_for_statement_repeat1, - STATE(3154), 2, + STATE(3198), 2, sym_comment, sym_include, - [136141] = 7, + ACTIONS(117), 3, + sym__namecolon, + anon_sym_LPAREN, + anon_sym_EQ, + [138039] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(5022), 1, - sym_identifier, - ACTIONS(5024), 1, - aux_sym_buffer_definition_token3, - STATE(4424), 1, - sym_qualified_name, - STATE(3155), 2, + STATE(3199), 2, sym_comment, sym_include, - [136164] = 5, + ACTIONS(4983), 3, + anon_sym_DQUOTE, + aux_sym_double_quoted_string_token1, + aux_sym_double_quoted_string_token2, + [138058] = 7, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - STATE(3156), 2, + ACTIONS(2703), 1, + aux_sym_inherits_token1, + ACTIONS(4401), 1, + anon_sym_COLON, + STATE(4713), 1, + sym_inherits, + STATE(3200), 2, sym_comment, sym_include, - ACTIONS(5026), 3, - aux_sym__block_terminator_token1, - aux_sym_case_when_branch_token1, - aux_sym_case_otherwise_branch_token1, - [136183] = 7, + [138081] = 7, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_LBRACE, + ACTIONS(4985), 1, + sym_identifier, + ACTIONS(4987), 1, + aux_sym_input_expression_token2, + STATE(46), 1, + sym_qualified_name, + STATE(3201), 2, + sym_comment, + sym_include, + [138104] = 7, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(3900), 1, - aux_sym__block_terminator_token1, - STATE(1348), 1, - sym__case_terminator, - STATE(1392), 1, - sym__block_terminator, - STATE(3157), 2, + ACTIONS(4989), 1, + anon_sym_RPAREN, + ACTIONS(4991), 1, + anon_sym_COMMA, + STATE(3240), 1, + aux_sym__function_call_arguments_repeat1, + STATE(3202), 2, sym_comment, sym_include, - [136206] = 7, + [138127] = 7, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, @@ -154610,189 +156678,204 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, ACTIONS(679), 1, sym__namedot, - ACTIONS(5028), 1, - anon_sym_COLON, - STATE(329), 1, + ACTIONS(4993), 1, + anon_sym_LPAREN, + STATE(336), 1, aux_sym_qualified_name_repeat1, - STATE(3158), 2, + STATE(3203), 2, sym_comment, sym_include, - [136229] = 7, + [138150] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(5020), 1, - anon_sym_, - ACTIONS(5030), 1, - anon_sym_RPAREN, - STATE(3151), 1, - aux_sym_accumulate_statement_repeat1, - STATE(3159), 2, + ACTIONS(1055), 1, + anon_sym_LPAREN, + ACTIONS(4995), 1, + sym_identifier, + STATE(1607), 1, + sym_parenthesized_expression, + STATE(3204), 2, sym_comment, sym_include, - [136252] = 7, + [138173] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(5020), 1, - anon_sym_, - ACTIONS(5032), 1, - anon_sym_RPAREN, - STATE(3204), 1, - aux_sym_accumulate_statement_repeat1, - STATE(3160), 2, + ACTIONS(4997), 1, + sym_identifier, + ACTIONS(4999), 1, + aux_sym_input_expression_token2, + STATE(1606), 1, + sym_qualified_name, + STATE(3205), 2, sym_comment, sym_include, - [136275] = 7, + [138196] = 7, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(4153), 1, - aux_sym_on_error_phrase_token1, - ACTIONS(4290), 1, + ACTIONS(2703), 1, + aux_sym_inherits_token1, + ACTIONS(4209), 1, anon_sym_COLON, - STATE(4376), 1, - sym_on_stop_phrase, - STATE(3161), 2, + STATE(4681), 1, + sym_inherits, + STATE(3206), 2, sym_comment, sym_include, - [136298] = 7, + [138219] = 7, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2105), 1, - anon_sym_COMMA, - ACTIONS(2393), 1, + ACTIONS(5001), 1, + aux_sym_buffer_definition_token2, + ACTIONS(5003), 1, + aux_sym_repeat_statement_token1, + ACTIONS(5005), 1, + aux_sym_do_block_token1, + STATE(3207), 2, + sym_comment, + sym_include, + [138242] = 7, + ACTIONS(59), 1, + anon_sym_SLASH_SLASH, + ACTIONS(61), 1, + anon_sym_SLASH_STAR, + ACTIONS(65), 1, + anon_sym_LBRACE, + ACTIONS(2703), 1, + aux_sym_inherits_token1, + ACTIONS(4223), 1, anon_sym_COLON, - STATE(3175), 1, - aux_sym_for_statement_repeat1, - STATE(3162), 2, + STATE(4648), 1, + sym_inherits, + STATE(3208), 2, sym_comment, sym_include, - [136321] = 6, + [138265] = 7, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5034), 1, - anon_sym_RPAREN, - ACTIONS(5036), 1, - anon_sym_COMMA, - STATE(3163), 3, + ACTIONS(5007), 1, + aux_sym_on_error_phrase_token2, + ACTIONS(5009), 1, + aux_sym_on_stop_phrase_token1, + ACTIONS(5011), 1, + aux_sym_on_quit_phrase_token1, + STATE(3209), 2, sym_comment, sym_include, - aux_sym__function_call_arguments_repeat1, - [136342] = 7, + [138288] = 7, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2105), 1, - anon_sym_COMMA, - ACTIONS(2393), 1, + ACTIONS(679), 1, + sym__namedot, + ACTIONS(5013), 1, anon_sym_COLON, - STATE(3153), 1, - aux_sym_for_statement_repeat1, - STATE(3164), 2, + STATE(336), 1, + aux_sym_qualified_name_repeat1, + STATE(3210), 2, sym_comment, sym_include, - [136365] = 7, + [138311] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(5039), 1, - sym_identifier, - ACTIONS(5041), 1, - aux_sym_buffer_definition_token3, - STATE(4397), 1, - sym_qualified_name, - STATE(3165), 2, + STATE(3211), 2, sym_comment, sym_include, - [136388] = 7, + ACTIONS(5015), 3, + aux_sym_double_quoted_string_token2, + anon_sym_SQUOTE, + aux_sym_single_quoted_string_token1, + [138330] = 7, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5043), 1, - sym__integer_literal, - STATE(801), 1, - sym__decimal_literal, - STATE(1876), 1, - sym_number_literal, - STATE(3166), 2, + ACTIONS(679), 1, + sym__namedot, + ACTIONS(5017), 1, + anon_sym_COLON, + STATE(336), 1, + aux_sym_qualified_name_repeat1, + STATE(3212), 2, sym_comment, sym_include, - [136411] = 7, + [138353] = 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(5045), 1, - sym__terminator, - STATE(329), 1, - aux_sym_qualified_name_repeat1, - STATE(3167), 2, + ACTIONS(5019), 1, + aux_sym_buffer_definition_token2, + ACTIONS(5021), 1, + aux_sym_repeat_statement_token1, + ACTIONS(5023), 1, + aux_sym_do_block_token1, + STATE(3213), 2, sym_comment, sym_include, - [136434] = 7, + [138376] = 7, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(3924), 1, + ACTIONS(2703), 1, + aux_sym_inherits_token1, + ACTIONS(4211), 1, anon_sym_COLON, - ACTIONS(4153), 1, - aux_sym_on_error_phrase_token1, - STATE(4345), 1, - sym_on_stop_phrase, - STATE(3168), 2, + STATE(4606), 1, + sym_inherits, + STATE(3214), 2, sym_comment, sym_include, - [136457] = 7, - ACTIONS(3), 1, + [138399] = 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(5047), 1, - sym_identifier, - ACTIONS(5049), 1, - aux_sym_buffer_definition_token3, - STATE(4177), 1, - sym_qualified_name, - STATE(3169), 2, + ACTIONS(5009), 1, + aux_sym_on_stop_phrase_token1, + ACTIONS(5025), 1, + aux_sym_on_error_phrase_token2, + ACTIONS(5027), 1, + aux_sym_on_quit_phrase_token1, + STATE(3215), 2, sym_comment, sym_include, - [136480] = 7, + [138422] = 7, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, @@ -154801,682 +156884,684 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, ACTIONS(679), 1, sym__namedot, - ACTIONS(5051), 1, + ACTIONS(5029), 1, anon_sym_LPAREN, - STATE(329), 1, + STATE(336), 1, aux_sym_qualified_name_repeat1, - STATE(3170), 2, - sym_comment, - sym_include, - [136503] = 7, - ACTIONS(59), 1, - anon_sym_SLASH_SLASH, - ACTIONS(61), 1, - anon_sym_SLASH_STAR, - ACTIONS(65), 1, - anon_sym_LBRACE, - ACTIONS(2105), 1, - anon_sym_COMMA, - ACTIONS(2451), 1, - anon_sym_COLON, - STATE(3226), 1, - aux_sym_for_statement_repeat1, - STATE(3171), 2, + STATE(3216), 2, sym_comment, sym_include, - [136526] = 7, + [138445] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(935), 1, - anon_sym_LPAREN, - ACTIONS(5053), 1, + ACTIONS(5031), 1, sym_identifier, - STATE(1340), 1, - sym_parenthesized_expression, - STATE(3172), 2, + ACTIONS(5033), 1, + anon_sym_AMP, + ACTIONS(5035), 1, + sym__integer_literal, + STATE(3217), 2, sym_comment, sym_include, - [136549] = 7, + [138468] = 7, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, - anon_sym_SLASH_STAR, - ACTIONS(65), 1, - anon_sym_LBRACE, - ACTIONS(2105), 1, - anon_sym_COMMA, - ACTIONS(2451), 1, - anon_sym_COLON, - STATE(3175), 1, - aux_sym_for_statement_repeat1, - STATE(3173), 2, + anon_sym_SLASH_STAR, + ACTIONS(65), 1, + anon_sym_LBRACE, + ACTIONS(679), 1, + sym__namedot, + ACTIONS(5037), 1, + anon_sym_LPAREN, + STATE(336), 1, + aux_sym_qualified_name_repeat1, + STATE(3218), 2, sym_comment, sym_include, - [136572] = 7, + [138491] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(5055), 1, + ACTIONS(5039), 1, sym_identifier, - ACTIONS(5057), 1, - aux_sym_input_expression_token2, - STATE(1343), 1, - sym_qualified_name, - STATE(3174), 2, + ACTIONS(5041), 1, + anon_sym_AMP, + ACTIONS(5043), 1, + sym__integer_literal, + STATE(3219), 2, sym_comment, sym_include, - [136595] = 6, + [138514] = 7, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5059), 1, - anon_sym_COMMA, - ACTIONS(5062), 1, - anon_sym_COLON, - STATE(3175), 3, + ACTIONS(679), 1, + sym__namedot, + ACTIONS(5045), 1, + anon_sym_LPAREN, + STATE(336), 1, + aux_sym_qualified_name_repeat1, + STATE(3220), 2, sym_comment, sym_include, - aux_sym_for_statement_repeat1, - [136616] = 7, + [138537] = 7, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(3842), 1, - anon_sym_COLON, - ACTIONS(4153), 1, - aux_sym_on_error_phrase_token1, - STATE(4311), 1, - sym_on_stop_phrase, - STATE(3176), 2, + ACTIONS(679), 1, + sym__namedot, + ACTIONS(5047), 1, + sym__terminator, + STATE(336), 1, + aux_sym_qualified_name_repeat1, + STATE(3221), 2, sym_comment, sym_include, - [136639] = 7, - ACTIONS(59), 1, + [138560] = 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(5043), 1, - sym__integer_literal, - STATE(801), 1, - sym__decimal_literal, - STATE(2801), 1, - sym_number_literal, - STATE(3177), 2, + ACTIONS(5049), 1, + sym_identifier, + ACTIONS(5051), 1, + aux_sym_primitive_type_token19, + STATE(4447), 1, + sym_qualified_name, + STATE(3222), 2, sym_comment, sym_include, - [136662] = 7, + [138583] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(5064), 1, + ACTIONS(5053), 1, sym_identifier, - ACTIONS(5066), 1, + ACTIONS(5055), 1, anon_sym_AMP, - ACTIONS(5068), 1, + ACTIONS(5057), 1, sym__integer_literal, - STATE(3178), 2, + STATE(3223), 2, sym_comment, sym_include, - [136685] = 7, + [138606] = 7, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(4153), 1, - aux_sym_on_error_phrase_token1, - ACTIONS(4549), 1, - anon_sym_COLON, - STATE(4155), 1, - sym_on_stop_phrase, - STATE(3179), 2, + ACTIONS(679), 1, + sym__namedot, + ACTIONS(5059), 1, + anon_sym_LPAREN, + STATE(336), 1, + aux_sym_qualified_name_repeat1, + STATE(3224), 2, + sym_comment, + sym_include, + [138629] = 7, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_LBRACE, + ACTIONS(5061), 1, + sym_identifier, + ACTIONS(5063), 1, + anon_sym_AMP, + ACTIONS(5065), 1, + sym__integer_literal, + STATE(3225), 2, sym_comment, sym_include, - [136708] = 6, + [138652] = 7, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5016), 1, - aux_sym__block_terminator_token1, - STATE(1267), 2, - sym__block_terminator, - sym__procedure_terminator, - STATE(3180), 2, + ACTIONS(2109), 1, + anon_sym_COMMA, + ACTIONS(5067), 1, + anon_sym_COLON, + STATE(3286), 1, + aux_sym_for_statement_repeat1, + STATE(3226), 2, sym_comment, sym_include, - [136729] = 7, + [138675] = 7, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2105), 1, + ACTIONS(2109), 1, anon_sym_COMMA, - ACTIONS(5070), 1, + ACTIONS(5069), 1, anon_sym_COLON, - STATE(3175), 1, + STATE(3226), 1, aux_sym_for_statement_repeat1, - STATE(3181), 2, + STATE(3227), 2, sym_comment, sym_include, - [136752] = 7, + [138698] = 7, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2105), 1, + ACTIONS(2109), 1, anon_sym_COMMA, - ACTIONS(5072), 1, + ACTIONS(5069), 1, anon_sym_COLON, - STATE(3181), 1, + STATE(3286), 1, aux_sym_for_statement_repeat1, - STATE(3182), 2, + STATE(3228), 2, sym_comment, sym_include, - [136775] = 7, + [138721] = 7, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2105), 1, + ACTIONS(2109), 1, anon_sym_COMMA, - ACTIONS(5072), 1, + ACTIONS(5071), 1, anon_sym_COLON, - STATE(3175), 1, + STATE(3286), 1, aux_sym_for_statement_repeat1, - STATE(3183), 2, + STATE(3229), 2, sym_comment, sym_include, - [136798] = 7, + [138744] = 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(5074), 1, - sym__terminator, - STATE(329), 1, - aux_sym_qualified_name_repeat1, - STATE(3184), 2, + ACTIONS(2109), 1, + anon_sym_COMMA, + ACTIONS(4250), 1, + anon_sym_COLON, + STATE(3228), 1, + aux_sym_for_statement_repeat1, + STATE(3230), 2, sym_comment, sym_include, - [136821] = 7, + [138767] = 7, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2105), 1, + ACTIONS(2109), 1, anon_sym_COMMA, - ACTIONS(5076), 1, + ACTIONS(4250), 1, anon_sym_COLON, - STATE(3175), 1, + STATE(3286), 1, aux_sym_for_statement_repeat1, - STATE(3185), 2, + STATE(3231), 2, sym_comment, sym_include, - [136844] = 7, + [138790] = 7, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2105), 1, + ACTIONS(2109), 1, anon_sym_COMMA, - ACTIONS(4394), 1, + ACTIONS(5073), 1, anon_sym_COLON, - STATE(3183), 1, + STATE(3229), 1, aux_sym_for_statement_repeat1, - STATE(3186), 2, + STATE(3232), 2, sym_comment, sym_include, - [136867] = 7, + [138813] = 7, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2105), 1, + ACTIONS(2109), 1, anon_sym_COMMA, - ACTIONS(4394), 1, + ACTIONS(5073), 1, anon_sym_COLON, - STATE(3175), 1, + STATE(3286), 1, aux_sym_for_statement_repeat1, - STATE(3187), 2, + STATE(3233), 2, sym_comment, sym_include, - [136890] = 7, + [138836] = 7, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2105), 1, + ACTIONS(2109), 1, anon_sym_COMMA, - ACTIONS(5078), 1, + ACTIONS(4037), 1, anon_sym_COLON, - STATE(3185), 1, + STATE(3231), 1, aux_sym_for_statement_repeat1, - STATE(3188), 2, + STATE(3234), 2, sym_comment, sym_include, - [136913] = 7, + [138859] = 7, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2105), 1, + ACTIONS(2109), 1, anon_sym_COMMA, - ACTIONS(5078), 1, + ACTIONS(4037), 1, anon_sym_COLON, - STATE(3175), 1, + STATE(3286), 1, aux_sym_for_statement_repeat1, - STATE(3189), 2, + STATE(3235), 2, sym_comment, sym_include, - [136936] = 7, + [138882] = 7, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2105), 1, + ACTIONS(2109), 1, anon_sym_COMMA, - ACTIONS(4094), 1, + ACTIONS(4276), 1, anon_sym_COLON, - STATE(3187), 1, + STATE(3233), 1, aux_sym_for_statement_repeat1, - STATE(3190), 2, + STATE(3236), 2, sym_comment, sym_include, - [136959] = 7, + [138905] = 7, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2105), 1, + ACTIONS(2109), 1, anon_sym_COMMA, - ACTIONS(4094), 1, + ACTIONS(4276), 1, anon_sym_COLON, - STATE(3175), 1, + STATE(3286), 1, aux_sym_for_statement_repeat1, - STATE(3191), 2, + STATE(3237), 2, sym_comment, sym_include, - [136982] = 7, + [138928] = 7, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2105), 1, + ACTIONS(2109), 1, anon_sym_COMMA, - ACTIONS(4416), 1, + ACTIONS(3324), 1, anon_sym_COLON, - STATE(3189), 1, + STATE(3235), 1, aux_sym_for_statement_repeat1, - STATE(3192), 2, + STATE(3238), 2, sym_comment, sym_include, - [137005] = 7, + [138951] = 7, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2105), 1, + ACTIONS(2109), 1, anon_sym_COMMA, - ACTIONS(4416), 1, + ACTIONS(3324), 1, anon_sym_COLON, - STATE(3175), 1, + STATE(3286), 1, aux_sym_for_statement_repeat1, - STATE(3193), 2, + STATE(3239), 2, sym_comment, sym_include, - [137028] = 5, - ACTIONS(3), 1, + [138974] = 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(3194), 2, + ACTIONS(4991), 1, + anon_sym_COMMA, + ACTIONS(5075), 1, + anon_sym_RPAREN, + STATE(3276), 1, + aux_sym__function_call_arguments_repeat1, + STATE(3240), 2, sym_comment, sym_include, - ACTIONS(5080), 3, - sym_identifier, - aux_sym_input_expression_token2, - aux_sym_do_block_token1, - [137047] = 7, + [138997] = 7, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2105), 1, + ACTIONS(2109), 1, anon_sym_COMMA, - ACTIONS(3264), 1, + ACTIONS(4051), 1, anon_sym_COLON, - STATE(3191), 1, + STATE(3237), 1, aux_sym_for_statement_repeat1, - STATE(3195), 2, + STATE(3241), 2, sym_comment, sym_include, - [137070] = 7, + [139020] = 7, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2105), 1, + ACTIONS(2109), 1, anon_sym_COMMA, - ACTIONS(3264), 1, + ACTIONS(4051), 1, anon_sym_COLON, - STATE(3175), 1, + STATE(3286), 1, aux_sym_for_statement_repeat1, - STATE(3196), 2, + STATE(3242), 2, sym_comment, sym_include, - [137093] = 7, + [139043] = 7, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2105), 1, + ACTIONS(2109), 1, anon_sym_COMMA, - ACTIONS(4104), 1, + ACTIONS(2586), 1, anon_sym_COLON, - STATE(3193), 1, + STATE(3239), 1, aux_sym_for_statement_repeat1, - STATE(3197), 2, + STATE(3243), 2, sym_comment, sym_include, - [137116] = 7, + [139066] = 7, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2105), 1, + ACTIONS(2109), 1, anon_sym_COMMA, - ACTIONS(4104), 1, + ACTIONS(2586), 1, anon_sym_COLON, - STATE(3175), 1, + STATE(3286), 1, aux_sym_for_statement_repeat1, - STATE(3198), 2, + STATE(3244), 2, sym_comment, sym_include, - [137139] = 7, - ACTIONS(59), 1, + [139089] = 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(679), 1, - sym__namedot, - ACTIONS(5082), 1, - anon_sym_COLON, - STATE(329), 1, - aux_sym_qualified_name_repeat1, - STATE(3199), 2, + ACTIONS(5077), 1, + sym_identifier, + ACTIONS(5079), 1, + aux_sym_buffer_definition_token3, + STATE(4409), 1, + sym_qualified_name, + STATE(3245), 2, sym_comment, sym_include, - [137162] = 7, + [139112] = 7, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2105), 1, + ACTIONS(2109), 1, anon_sym_COMMA, - ACTIONS(2602), 1, + ACTIONS(3232), 1, anon_sym_COLON, - STATE(3196), 1, + STATE(3242), 1, aux_sym_for_statement_repeat1, - STATE(3200), 2, + STATE(3246), 2, sym_comment, sym_include, - [137185] = 7, + [139135] = 7, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2105), 1, + ACTIONS(2109), 1, anon_sym_COMMA, - ACTIONS(2602), 1, + ACTIONS(3232), 1, anon_sym_COLON, - STATE(3175), 1, + STATE(3286), 1, aux_sym_for_statement_repeat1, - STATE(3201), 2, + STATE(3247), 2, sym_comment, sym_include, - [137208] = 7, + [139158] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2105), 1, - anon_sym_COMMA, - ACTIONS(3248), 1, - anon_sym_COLON, - STATE(3198), 1, - aux_sym_for_statement_repeat1, - STATE(3202), 2, + STATE(3248), 2, sym_comment, sym_include, - [137231] = 7, + ACTIONS(5081), 3, + sym__terminator, + aux_sym_field_definition_token1, + aux_sym_index_definition_token1, + [139177] = 7, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2105), 1, + ACTIONS(2109), 1, anon_sym_COMMA, - ACTIONS(3248), 1, + ACTIONS(2592), 1, anon_sym_COLON, - STATE(3175), 1, + STATE(3244), 1, aux_sym_for_statement_repeat1, - STATE(3203), 2, + STATE(3249), 2, sym_comment, sym_include, - [137254] = 7, - ACTIONS(3), 1, + [139200] = 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(5020), 1, - anon_sym_, - ACTIONS(5084), 1, - anon_sym_RPAREN, - STATE(3243), 1, - aux_sym_accumulate_statement_repeat1, - STATE(3204), 2, + ACTIONS(679), 1, + sym__namedot, + ACTIONS(5083), 1, + sym__terminator, + STATE(336), 1, + aux_sym_qualified_name_repeat1, + STATE(3250), 2, sym_comment, sym_include, - [137277] = 7, + [139223] = 7, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2105), 1, + ACTIONS(2109), 1, anon_sym_COMMA, - ACTIONS(2429), 1, + ACTIONS(2592), 1, anon_sym_COLON, - STATE(3245), 1, + STATE(3286), 1, aux_sym_for_statement_repeat1, - STATE(3205), 2, + STATE(3251), 2, sym_comment, sym_include, - [137300] = 7, + [139246] = 7, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2105), 1, + ACTIONS(2109), 1, anon_sym_COMMA, - ACTIONS(2429), 1, + ACTIONS(2417), 1, anon_sym_COLON, - STATE(3175), 1, + STATE(3285), 1, aux_sym_for_statement_repeat1, - STATE(3206), 2, + STATE(3252), 2, sym_comment, sym_include, - [137323] = 7, + [139269] = 7, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2105), 1, + ACTIONS(2109), 1, anon_sym_COMMA, ACTIONS(2596), 1, anon_sym_COLON, - STATE(3201), 1, + STATE(3247), 1, aux_sym_for_statement_repeat1, - STATE(3207), 2, + STATE(3253), 2, sym_comment, sym_include, - [137346] = 7, + [139292] = 7, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2105), 1, + ACTIONS(2109), 1, anon_sym_COMMA, ACTIONS(2596), 1, anon_sym_COLON, - STATE(3175), 1, + STATE(3286), 1, aux_sym_for_statement_repeat1, - STATE(3208), 2, + STATE(3254), 2, sym_comment, sym_include, - [137369] = 7, + [139315] = 7, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2105), 1, + ACTIONS(2109), 1, anon_sym_COMMA, - ACTIONS(2606), 1, + ACTIONS(2417), 1, anon_sym_COLON, - STATE(3203), 1, + STATE(3286), 1, aux_sym_for_statement_repeat1, - STATE(3209), 2, + STATE(3255), 2, sym_comment, sym_include, - [137392] = 7, + [139338] = 7, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2105), 1, - anon_sym_COMMA, - ACTIONS(2606), 1, - anon_sym_COLON, - STATE(3175), 1, - aux_sym_for_statement_repeat1, - STATE(3210), 2, + ACTIONS(5085), 1, + aux_sym_buffer_definition_token2, + ACTIONS(5087), 1, + aux_sym_repeat_statement_token1, + ACTIONS(5089), 1, + aux_sym_do_block_token1, + STATE(3256), 2, sym_comment, sym_include, - [137415] = 7, + [139361] = 7, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(4153), 1, - aux_sym_on_error_phrase_token1, - ACTIONS(5086), 1, + ACTIONS(2109), 1, + anon_sym_COMMA, + ACTIONS(2457), 1, anon_sym_COLON, - STATE(4230), 1, - sym_on_stop_phrase, - STATE(3211), 2, + STATE(3286), 1, + aux_sym_for_statement_repeat1, + STATE(3257), 2, sym_comment, sym_include, - [137438] = 7, + [139384] = 7, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2105), 1, + ACTIONS(2109), 1, anon_sym_COMMA, ACTIONS(2457), 1, anon_sym_COLON, - STATE(3175), 1, + STATE(3251), 1, aux_sym_for_statement_repeat1, - STATE(3212), 2, + STATE(3258), 2, sym_comment, sym_include, - [137461] = 7, + [139407] = 7, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, @@ -155485,140 +157570,109 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, ACTIONS(679), 1, sym__namedot, - ACTIONS(5088), 1, + ACTIONS(5091), 1, sym__terminator, - STATE(329), 1, + STATE(336), 1, aux_sym_qualified_name_repeat1, - STATE(3213), 2, + STATE(3259), 2, sym_comment, sym_include, - [137484] = 7, + [139430] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2105), 1, - anon_sym_COMMA, - ACTIONS(2457), 1, - anon_sym_COLON, - STATE(3208), 1, - aux_sym_for_statement_repeat1, - STATE(3214), 2, + ACTIONS(5093), 1, + aux_sym__block_terminator_token1, + STATE(1401), 2, + sym__block_terminator, + sym__procedure_terminator, + STATE(3260), 2, sym_comment, sym_include, - [137507] = 7, + [139451] = 7, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2105), 1, + ACTIONS(2109), 1, anon_sym_COMMA, - ACTIONS(2576), 1, + ACTIONS(2606), 1, anon_sym_COLON, - STATE(3210), 1, + STATE(3254), 1, aux_sym_for_statement_repeat1, - STATE(3215), 2, + STATE(3261), 2, sym_comment, sym_include, - [137530] = 7, + [139474] = 7, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2105), 1, + ACTIONS(2109), 1, anon_sym_COMMA, - ACTIONS(2576), 1, + ACTIONS(2606), 1, anon_sym_COLON, - STATE(3175), 1, + STATE(3286), 1, aux_sym_for_statement_repeat1, - STATE(3216), 2, - sym_comment, - sym_include, - [137553] = 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(5090), 1, - sym__terminator, - STATE(329), 1, - aux_sym_qualified_name_repeat1, - STATE(3217), 2, + STATE(3262), 2, sym_comment, sym_include, - [137576] = 7, + [139497] = 7, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2105), 1, + ACTIONS(2109), 1, anon_sym_COMMA, - ACTIONS(2437), 1, + ACTIONS(2433), 1, anon_sym_COLON, - STATE(3175), 1, + STATE(3286), 1, aux_sym_for_statement_repeat1, - STATE(3218), 2, - sym_comment, - sym_include, - [137599] = 5, - ACTIONS(59), 1, - anon_sym_SLASH_SLASH, - ACTIONS(61), 1, - anon_sym_SLASH_STAR, - ACTIONS(65), 1, - anon_sym_LBRACE, - STATE(3219), 2, + STATE(3263), 2, sym_comment, sym_include, - ACTIONS(5092), 3, - aux_sym_index_tuning_token2, - aux_sym_index_tuning_token3, - aux_sym_index_tuning_token4, - [137618] = 7, + [139520] = 7, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5043), 1, - sym__integer_literal, - STATE(801), 1, - sym__decimal_literal, - STATE(3035), 1, - sym_number_literal, - STATE(3220), 2, + ACTIONS(679), 1, + sym__namedot, + ACTIONS(5095), 1, + sym__terminator, + STATE(336), 1, + aux_sym_qualified_name_repeat1, + STATE(3264), 2, sym_comment, sym_include, - [137641] = 7, + [139543] = 7, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2105), 1, + ACTIONS(2109), 1, anon_sym_COMMA, - ACTIONS(2437), 1, + ACTIONS(2433), 1, anon_sym_COLON, - STATE(3212), 1, + STATE(3257), 1, aux_sym_for_statement_repeat1, - STATE(3221), 2, + STATE(3265), 2, sym_comment, sym_include, - [137664] = 7, + [139566] = 7, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, @@ -155627,14 +157681,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, ACTIONS(679), 1, sym__namedot, - ACTIONS(5094), 1, + ACTIONS(5097), 1, sym__terminator, - STATE(329), 1, + STATE(336), 1, aux_sym_qualified_name_repeat1, - STATE(3222), 2, + STATE(3266), 2, sym_comment, sym_include, - [137687] = 7, + [139589] = 7, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, @@ -155643,390 +157697,330 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, ACTIONS(679), 1, sym__namedot, - ACTIONS(5096), 1, + ACTIONS(5099), 1, sym__terminator, - STATE(329), 1, + STATE(336), 1, aux_sym_qualified_name_repeat1, - STATE(3223), 2, + STATE(3267), 2, sym_comment, sym_include, - [137710] = 7, + [139612] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(5020), 1, - anon_sym_, - ACTIONS(5098), 1, + ACTIONS(5101), 1, anon_sym_RPAREN, - STATE(3243), 1, + ACTIONS(5103), 1, + anon_sym_, + STATE(3338), 1, aux_sym_accumulate_statement_repeat1, - STATE(3224), 2, + STATE(3268), 2, sym_comment, sym_include, - [137733] = 7, + [139635] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(4153), 1, - aux_sym_on_error_phrase_token1, - ACTIONS(4634), 1, - anon_sym_COLON, - STATE(4203), 1, - sym_on_stop_phrase, - STATE(3225), 2, + STATE(3269), 2, sym_comment, sym_include, - [137756] = 7, + ACTIONS(5105), 3, + aux_sym__block_terminator_token1, + aux_sym_case_when_branch_token1, + aux_sym_case_otherwise_branch_token1, + [139654] = 7, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2105), 1, - anon_sym_COMMA, - ACTIONS(2592), 1, - anon_sym_COLON, - STATE(3175), 1, - aux_sym_for_statement_repeat1, - STATE(3226), 2, + ACTIONS(3932), 1, + aux_sym__block_terminator_token1, + STATE(1245), 1, + sym__block_terminator, + STATE(1363), 1, + sym__case_terminator, + STATE(3270), 2, sym_comment, sym_include, - [137779] = 7, + [139677] = 7, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2105), 1, - anon_sym_COMMA, - ACTIONS(2592), 1, + ACTIONS(679), 1, + sym__namedot, + ACTIONS(5107), 1, anon_sym_COLON, - STATE(3255), 1, - aux_sym_for_statement_repeat1, - STATE(3227), 2, + STATE(336), 1, + aux_sym_qualified_name_repeat1, + STATE(3271), 2, sym_comment, sym_include, - [137802] = 6, + [139700] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(5100), 1, - sym_identifier, - ACTIONS(5102), 2, - anon_sym_COMMA, - anon_sym_COLON, - STATE(3228), 2, + ACTIONS(5103), 1, + anon_sym_, + ACTIONS(5109), 1, + anon_sym_RPAREN, + STATE(3293), 1, + aux_sym_accumulate_statement_repeat1, + STATE(3272), 2, sym_comment, sym_include, - [137823] = 7, + [139723] = 7, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2105), 1, + ACTIONS(2109), 1, anon_sym_COMMA, - ACTIONS(2447), 1, + ACTIONS(2467), 1, anon_sym_COLON, - STATE(3175), 1, + STATE(3286), 1, aux_sym_for_statement_repeat1, - STATE(3229), 2, - sym_comment, - sym_include, - [137846] = 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(5104), 1, - sym__terminator, - STATE(329), 1, - aux_sym_qualified_name_repeat1, - STATE(3230), 2, - sym_comment, - sym_include, - [137869] = 5, - ACTIONS(59), 1, - anon_sym_SLASH_SLASH, - ACTIONS(61), 1, - anon_sym_SLASH_STAR, - ACTIONS(65), 1, - anon_sym_LBRACE, - STATE(3231), 2, + STATE(3273), 2, sym_comment, sym_include, - ACTIONS(5106), 3, - anon_sym_COMMA, - anon_sym_COLON, - aux_sym_on_error_phrase_token1, - [137888] = 7, + [139746] = 7, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2105), 1, + ACTIONS(2109), 1, anon_sym_COMMA, - ACTIONS(2447), 1, + ACTIONS(2467), 1, anon_sym_COLON, - STATE(3216), 1, + STATE(3262), 1, aux_sym_for_statement_repeat1, - STATE(3232), 2, + STATE(3274), 2, sym_comment, sym_include, - [137911] = 7, + [139769] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(5108), 1, + ACTIONS(5111), 1, sym_identifier, - ACTIONS(5110), 1, + ACTIONS(5113), 1, aux_sym_buffer_definition_token3, - STATE(4166), 1, + STATE(4534), 1, sym_qualified_name, - STATE(3233), 2, - sym_comment, - sym_include, - [137934] = 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(5112), 1, - sym__terminator, - STATE(329), 1, - aux_sym_qualified_name_repeat1, - STATE(3234), 2, + STATE(3275), 2, sym_comment, sym_include, - [137957] = 5, + [139792] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - STATE(3235), 2, + ACTIONS(5115), 1, + anon_sym_RPAREN, + ACTIONS(5117), 1, + anon_sym_COMMA, + STATE(3276), 3, sym_comment, sym_include, - ACTIONS(5114), 3, - anon_sym_COMMA, - anon_sym_COLON, - aux_sym_on_error_phrase_token1, - [137976] = 7, + aux_sym__function_call_arguments_repeat1, + [139813] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(5020), 1, + ACTIONS(5103), 1, anon_sym_, - ACTIONS(5116), 1, + ACTIONS(5120), 1, anon_sym_RPAREN, - STATE(3224), 1, + STATE(3268), 1, aux_sym_accumulate_statement_repeat1, - STATE(3236), 2, - sym_comment, - sym_include, - [137999] = 7, - ACTIONS(59), 1, - anon_sym_SLASH_SLASH, - ACTIONS(61), 1, - anon_sym_SLASH_STAR, - ACTIONS(65), 1, - anon_sym_LBRACE, - ACTIONS(5118), 1, - anon_sym_RPAREN, - ACTIONS(5120), 1, - anon_sym_COMMA, - STATE(3278), 1, - aux_sym_function_statement_repeat1, - STATE(3237), 2, + STATE(3277), 2, sym_comment, sym_include, - [138022] = 7, + [139836] = 7, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(4153), 1, - aux_sym_on_error_phrase_token1, - ACTIONS(4282), 1, - anon_sym_COLON, - STATE(4173), 1, - sym_on_stop_phrase, - STATE(3238), 2, + ACTIONS(5122), 1, + sym__integer_literal, + STATE(796), 1, + sym__decimal_literal, + STATE(1878), 1, + sym_number_literal, + STATE(3278), 2, sym_comment, sym_include, - [138045] = 7, + [139859] = 7, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2105), 1, + ACTIONS(2109), 1, anon_sym_COMMA, - ACTIONS(2425), 1, + ACTIONS(2439), 1, anon_sym_COLON, - STATE(3175), 1, + STATE(3286), 1, aux_sym_for_statement_repeat1, - STATE(3239), 2, + STATE(3279), 2, sym_comment, sym_include, - [138068] = 5, + [139882] = 7, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - STATE(3240), 2, + ACTIONS(679), 1, + sym__namedot, + ACTIONS(5124), 1, + sym__terminator, + STATE(336), 1, + aux_sym_qualified_name_repeat1, + STATE(3280), 2, sym_comment, sym_include, - ACTIONS(5122), 3, - aux_sym__block_terminator_token1, - aux_sym_case_when_branch_token1, - aux_sym_case_otherwise_branch_token1, - [138087] = 7, + [139905] = 7, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2105), 1, + ACTIONS(2109), 1, anon_sym_COMMA, - ACTIONS(2425), 1, + ACTIONS(2439), 1, anon_sym_COLON, - STATE(3229), 1, + STATE(3273), 1, aux_sym_for_statement_repeat1, - STATE(3241), 2, + STATE(3281), 2, sym_comment, sym_include, - [138110] = 7, + [139928] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(5124), 1, - sym_identifier, ACTIONS(5126), 1, + sym_identifier, + ACTIONS(5128), 1, aux_sym_buffer_definition_token3, - STATE(4266), 1, + STATE(4431), 1, sym_qualified_name, - STATE(3242), 2, + STATE(3282), 2, sym_comment, sym_include, - [138133] = 6, + [139951] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(5128), 1, - anon_sym_RPAREN, ACTIONS(5130), 1, - anon_sym_, - STATE(3243), 3, + sym_identifier, + ACTIONS(5132), 1, + aux_sym_buffer_definition_token3, + STATE(4289), 1, + sym_qualified_name, + STATE(3283), 2, sym_comment, sym_include, - aux_sym_accumulate_statement_repeat1, - [138154] = 7, + [139974] = 7, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2105), 1, + ACTIONS(2109), 1, anon_sym_COMMA, - ACTIONS(2445), 1, + ACTIONS(2449), 1, anon_sym_COLON, - STATE(3286), 1, + STATE(3324), 1, aux_sym_for_statement_repeat1, - STATE(3244), 2, + STATE(3284), 2, sym_comment, sym_include, - [138177] = 7, + [139997] = 7, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2105), 1, + ACTIONS(2109), 1, anon_sym_COMMA, - ACTIONS(2445), 1, + ACTIONS(2449), 1, anon_sym_COLON, - STATE(3175), 1, + STATE(3286), 1, aux_sym_for_statement_repeat1, - STATE(3245), 2, + STATE(3285), 2, sym_comment, sym_include, - [138200] = 7, + [140020] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(4153), 1, - aux_sym_on_error_phrase_token1, - ACTIONS(5133), 1, + ACTIONS(5134), 1, + anon_sym_COMMA, + ACTIONS(5137), 1, anon_sym_COLON, - STATE(4159), 1, - sym_on_stop_phrase, - STATE(3246), 2, + STATE(3286), 3, sym_comment, sym_include, - [138223] = 7, + aux_sym_for_statement_repeat1, + [140041] = 7, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(3772), 1, - anon_sym_COLON, - ACTIONS(4153), 1, - aux_sym_on_error_phrase_token1, - STATE(4142), 1, - sym_on_stop_phrase, - STATE(3247), 2, + ACTIONS(5122), 1, + sym__integer_literal, + STATE(796), 1, + sym__decimal_literal, + STATE(2783), 1, + sym_number_literal, + STATE(3287), 2, sym_comment, sym_include, - [138246] = 7, + [140064] = 7, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, @@ -156035,62 +158029,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, ACTIONS(679), 1, sym__namedot, - ACTIONS(5135), 1, - anon_sym_LPAREN, - STATE(329), 1, + ACTIONS(5139), 1, + sym__terminator, + STATE(336), 1, aux_sym_qualified_name_repeat1, - STATE(3248), 2, - sym_comment, - sym_include, - [138269] = 7, - ACTIONS(59), 1, - anon_sym_SLASH_SLASH, - ACTIONS(61), 1, - anon_sym_SLASH_STAR, - ACTIONS(65), 1, - anon_sym_LBRACE, - ACTIONS(5120), 1, - anon_sym_COMMA, - ACTIONS(5137), 1, - anon_sym_RPAREN, - STATE(3299), 1, - aux_sym_function_statement_repeat1, - STATE(3249), 2, - sym_comment, - sym_include, - [138292] = 7, - ACTIONS(59), 1, - anon_sym_SLASH_SLASH, - ACTIONS(61), 1, - anon_sym_SLASH_STAR, - ACTIONS(65), 1, - anon_sym_LBRACE, - ACTIONS(3788), 1, - anon_sym_COLON, - ACTIONS(4153), 1, - aux_sym_on_error_phrase_token1, - STATE(4109), 1, - sym_on_stop_phrase, - STATE(3250), 2, + STATE(3288), 2, sym_comment, sym_include, - [138315] = 7, + [140087] = 6, 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(5139), 1, - sym__terminator, - STATE(329), 1, - aux_sym_qualified_name_repeat1, - STATE(3251), 2, + ACTIONS(5093), 1, + aux_sym__block_terminator_token1, + STATE(1539), 2, + sym__block_terminator, + sym__procedure_terminator, + STATE(3289), 2, sym_comment, sym_include, - [138338] = 7, + [140108] = 7, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, @@ -156100,29 +158061,27 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(679), 1, sym__namedot, ACTIONS(5141), 1, - sym__terminator, - STATE(329), 1, + anon_sym_LPAREN, + STATE(336), 1, aux_sym_qualified_name_repeat1, - STATE(3252), 2, + STATE(3290), 2, sym_comment, sym_include, - [138361] = 7, + [140131] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(5143), 1, - sym_identifier, - ACTIONS(5145), 1, - anon_sym_AMP, - ACTIONS(5147), 1, - sym__integer_literal, - STATE(3253), 2, + STATE(3291), 2, sym_comment, sym_include, - [138384] = 7, + ACTIONS(5143), 3, + sym_identifier, + aux_sym_input_expression_token2, + aux_sym_do_block_token1, + [140150] = 7, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, @@ -156131,110 +158090,94 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, ACTIONS(679), 1, sym__namedot, - ACTIONS(5149), 1, - sym__terminator, - STATE(329), 1, - aux_sym_qualified_name_repeat1, - STATE(3254), 2, - sym_comment, - sym_include, - [138407] = 7, - ACTIONS(59), 1, - anon_sym_SLASH_SLASH, - ACTIONS(61), 1, - anon_sym_SLASH_STAR, - ACTIONS(65), 1, - anon_sym_LBRACE, - ACTIONS(2105), 1, - anon_sym_COMMA, - ACTIONS(2588), 1, + ACTIONS(5145), 1, anon_sym_COLON, - STATE(3175), 1, - aux_sym_for_statement_repeat1, - STATE(3255), 2, + STATE(336), 1, + aux_sym_qualified_name_repeat1, + STATE(3292), 2, sym_comment, sym_include, - [138430] = 7, - ACTIONS(59), 1, + [140173] = 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(2105), 1, - anon_sym_COMMA, - ACTIONS(2588), 1, - anon_sym_COLON, - STATE(3305), 1, - aux_sym_for_statement_repeat1, - STATE(3256), 2, + ACTIONS(5103), 1, + anon_sym_, + ACTIONS(5147), 1, + anon_sym_RPAREN, + STATE(3338), 1, + aux_sym_accumulate_statement_repeat1, + STATE(3293), 2, sym_comment, sym_include, - [138453] = 7, - ACTIONS(59), 1, + [140196] = 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(2105), 1, - anon_sym_COMMA, + ACTIONS(5149), 1, + sym_identifier, ACTIONS(5151), 1, - anon_sym_COLON, - STATE(3175), 1, - aux_sym_for_statement_repeat1, - STATE(3257), 2, + anon_sym_AMP, + ACTIONS(5153), 1, + sym__integer_literal, + STATE(3294), 2, sym_comment, sym_include, - [138476] = 7, + [140219] = 7, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2105), 1, + ACTIONS(2109), 1, anon_sym_COMMA, - ACTIONS(5153), 1, + ACTIONS(2431), 1, anon_sym_COLON, - STATE(3257), 1, + STATE(3342), 1, aux_sym_for_statement_repeat1, - STATE(3258), 2, + STATE(3295), 2, sym_comment, sym_include, - [138499] = 7, + [140242] = 7, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2105), 1, + ACTIONS(2109), 1, anon_sym_COMMA, - ACTIONS(5153), 1, + ACTIONS(2431), 1, anon_sym_COLON, - STATE(3175), 1, + STATE(3286), 1, aux_sym_for_statement_repeat1, - STATE(3259), 2, + STATE(3296), 2, sym_comment, sym_include, - [138522] = 7, + [140265] = 7, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2105), 1, + ACTIONS(2109), 1, anon_sym_COMMA, ACTIONS(5155), 1, anon_sym_COLON, - STATE(3175), 1, + STATE(3286), 1, aux_sym_for_statement_repeat1, - STATE(3260), 2, + STATE(3297), 2, sym_comment, sym_include, - [138545] = 7, + [140288] = 7, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, @@ -156245,1024 +158188,1007 @@ static const uint16_t ts_small_parse_table[] = { sym__namedot, ACTIONS(5157), 1, sym__terminator, - STATE(329), 1, + STATE(336), 1, aux_sym_qualified_name_repeat1, - STATE(3261), 2, + STATE(3298), 2, sym_comment, sym_include, - [138568] = 7, + [140311] = 7, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2105), 1, + ACTIONS(2109), 1, anon_sym_COMMA, - ACTIONS(4177), 1, + ACTIONS(5159), 1, anon_sym_COLON, - STATE(3259), 1, + STATE(3297), 1, aux_sym_for_statement_repeat1, - STATE(3262), 2, + STATE(3299), 2, sym_comment, sym_include, - [138591] = 7, + [140334] = 7, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2105), 1, + ACTIONS(2109), 1, anon_sym_COMMA, - ACTIONS(4177), 1, + ACTIONS(5159), 1, anon_sym_COLON, - STATE(3175), 1, + STATE(3286), 1, aux_sym_for_statement_repeat1, - STATE(3263), 2, + STATE(3300), 2, sym_comment, sym_include, - [138614] = 7, + [140357] = 7, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2105), 1, + ACTIONS(2109), 1, anon_sym_COMMA, - ACTIONS(5159), 1, + ACTIONS(5161), 1, anon_sym_COLON, - STATE(3260), 1, + STATE(3286), 1, aux_sym_for_statement_repeat1, - STATE(3264), 2, + STATE(3301), 2, sym_comment, sym_include, - [138637] = 7, + [140380] = 7, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2105), 1, + ACTIONS(2109), 1, anon_sym_COMMA, - ACTIONS(5159), 1, + ACTIONS(4241), 1, anon_sym_COLON, - STATE(3175), 1, + STATE(3300), 1, aux_sym_for_statement_repeat1, - STATE(3265), 2, + STATE(3302), 2, sym_comment, sym_include, - [138660] = 6, - ACTIONS(3), 1, + [140403] = 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(5161), 1, - sym_identifier, - ACTIONS(5163), 2, + ACTIONS(2109), 1, anon_sym_COMMA, + ACTIONS(4241), 1, anon_sym_COLON, - STATE(3266), 2, + STATE(3286), 1, + aux_sym_for_statement_repeat1, + STATE(3303), 2, sym_comment, sym_include, - [138681] = 7, + [140426] = 7, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2105), 1, + ACTIONS(2109), 1, anon_sym_COMMA, - ACTIONS(4001), 1, + ACTIONS(5163), 1, anon_sym_COLON, - STATE(3263), 1, + STATE(3301), 1, aux_sym_for_statement_repeat1, - STATE(3267), 2, + STATE(3304), 2, sym_comment, sym_include, - [138704] = 7, + [140449] = 7, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2105), 1, + ACTIONS(2109), 1, anon_sym_COMMA, - ACTIONS(4001), 1, + ACTIONS(5163), 1, anon_sym_COLON, - STATE(3175), 1, + STATE(3286), 1, aux_sym_for_statement_repeat1, - STATE(3268), 2, + STATE(3305), 2, sym_comment, sym_include, - [138727] = 7, + [140472] = 7, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2105), 1, + ACTIONS(2109), 1, anon_sym_COMMA, - ACTIONS(4175), 1, + ACTIONS(4027), 1, anon_sym_COLON, - STATE(3265), 1, + STATE(3303), 1, aux_sym_for_statement_repeat1, - STATE(3269), 2, + STATE(3306), 2, sym_comment, sym_include, - [138750] = 7, + [140495] = 7, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2105), 1, + ACTIONS(2109), 1, anon_sym_COMMA, - ACTIONS(4175), 1, + ACTIONS(4027), 1, anon_sym_COLON, - STATE(3175), 1, + STATE(3286), 1, aux_sym_for_statement_repeat1, - STATE(3270), 2, + STATE(3307), 2, sym_comment, sym_include, - [138773] = 5, + [140518] = 7, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - STATE(3271), 2, - sym_comment, - sym_include, - ACTIONS(5165), 3, + ACTIONS(2109), 1, anon_sym_COMMA, + ACTIONS(4237), 1, anon_sym_COLON, - aux_sym_on_error_phrase_token1, - [138792] = 5, + STATE(3305), 1, + aux_sym_for_statement_repeat1, + STATE(3308), 2, + sym_comment, + sym_include, + [140541] = 7, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - STATE(3272), 2, - sym_comment, - sym_include, - ACTIONS(5167), 3, + ACTIONS(2109), 1, anon_sym_COMMA, + ACTIONS(4237), 1, anon_sym_COLON, - aux_sym_on_error_phrase_token1, - [138811] = 7, + STATE(3286), 1, + aux_sym_for_statement_repeat1, + STATE(3309), 2, + sym_comment, + sym_include, + [140564] = 7, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2105), 1, + ACTIONS(2109), 1, anon_sym_COMMA, - ACTIONS(3318), 1, + ACTIONS(3279), 1, anon_sym_COLON, - STATE(3268), 1, + STATE(3307), 1, aux_sym_for_statement_repeat1, - STATE(3273), 2, + STATE(3310), 2, sym_comment, sym_include, - [138834] = 7, + [140587] = 7, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2105), 1, + ACTIONS(2109), 1, anon_sym_COMMA, - ACTIONS(3318), 1, + ACTIONS(3279), 1, anon_sym_COLON, - STATE(3175), 1, + STATE(3286), 1, aux_sym_for_statement_repeat1, - STATE(3274), 2, + STATE(3311), 2, sym_comment, sym_include, - [138857] = 7, + [140610] = 7, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2105), 1, + ACTIONS(2109), 1, anon_sym_COMMA, - ACTIONS(4092), 1, + ACTIONS(4023), 1, anon_sym_COLON, - STATE(3270), 1, + STATE(3309), 1, aux_sym_for_statement_repeat1, - STATE(3275), 2, - sym_comment, - sym_include, - [138880] = 7, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - ACTIONS(7), 1, - anon_sym_LBRACE, - ACTIONS(367), 1, - anon_sym_LPAREN, - ACTIONS(5169), 1, - sym_identifier, - STATE(40), 1, - sym_parenthesized_expression, - STATE(3276), 2, + STATE(3312), 2, sym_comment, sym_include, - [138903] = 7, + [140633] = 7, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2105), 1, + ACTIONS(2109), 1, anon_sym_COMMA, - ACTIONS(4092), 1, + ACTIONS(4023), 1, anon_sym_COLON, - STATE(3175), 1, + STATE(3286), 1, aux_sym_for_statement_repeat1, - STATE(3277), 2, + STATE(3313), 2, sym_comment, sym_include, - [138926] = 7, + [140656] = 7, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5120), 1, + ACTIONS(2109), 1, anon_sym_COMMA, - ACTIONS(5171), 1, - anon_sym_RPAREN, - STATE(3314), 1, - aux_sym_function_statement_repeat1, - STATE(3278), 2, + ACTIONS(2610), 1, + anon_sym_COLON, + STATE(3311), 1, + aux_sym_for_statement_repeat1, + STATE(3314), 2, sym_comment, sym_include, - [138949] = 7, + [140679] = 7, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2105), 1, + ACTIONS(2109), 1, anon_sym_COMMA, - ACTIONS(2590), 1, + ACTIONS(2610), 1, anon_sym_COLON, - STATE(3274), 1, + STATE(3286), 1, aux_sym_for_statement_repeat1, - STATE(3279), 2, + STATE(3315), 2, sym_comment, sym_include, - [138972] = 7, + [140702] = 7, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2105), 1, - anon_sym_COMMA, - ACTIONS(2590), 1, - anon_sym_COLON, - STATE(3175), 1, - aux_sym_for_statement_repeat1, - STATE(3280), 2, + ACTIONS(679), 1, + sym__namedot, + ACTIONS(5165), 1, + sym__terminator, + STATE(336), 1, + aux_sym_qualified_name_repeat1, + STATE(3316), 2, sym_comment, sym_include, - [138995] = 7, + [140725] = 7, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2105), 1, + ACTIONS(2109), 1, anon_sym_COMMA, - ACTIONS(3320), 1, + ACTIONS(3277), 1, anon_sym_COLON, - STATE(3277), 1, + STATE(3313), 1, aux_sym_for_statement_repeat1, - STATE(3281), 2, + STATE(3317), 2, sym_comment, sym_include, - [139018] = 7, + [140748] = 7, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2105), 1, + ACTIONS(2109), 1, anon_sym_COMMA, - ACTIONS(3320), 1, + ACTIONS(3277), 1, anon_sym_COLON, - STATE(3175), 1, + STATE(3286), 1, aux_sym_for_statement_repeat1, - STATE(3282), 2, + STATE(3318), 2, sym_comment, sym_include, - [139041] = 5, + [140771] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - STATE(3283), 2, + STATE(3319), 2, sym_comment, sym_include, - ACTIONS(5173), 3, - aux_sym__block_terminator_token1, - aux_sym_case_when_branch_token1, - aux_sym_case_otherwise_branch_token1, - [139060] = 7, + ACTIONS(5167), 3, + aux_sym_index_tuning_token2, + aux_sym_index_tuning_token3, + aux_sym_index_tuning_token4, + [140790] = 7, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2105), 1, - anon_sym_COMMA, - ACTIONS(2598), 1, - anon_sym_COLON, - STATE(3280), 1, - aux_sym_for_statement_repeat1, - STATE(3284), 2, + ACTIONS(5122), 1, + sym__integer_literal, + STATE(796), 1, + sym__decimal_literal, + STATE(3005), 1, + sym_number_literal, + STATE(3320), 2, sym_comment, sym_include, - [139083] = 7, + [140813] = 7, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2105), 1, + ACTIONS(2109), 1, anon_sym_COMMA, - ACTIONS(2598), 1, + ACTIONS(2608), 1, anon_sym_COLON, - STATE(3175), 1, + STATE(3315), 1, aux_sym_for_statement_repeat1, - STATE(3285), 2, + STATE(3321), 2, sym_comment, sym_include, - [139106] = 7, + [140836] = 7, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2105), 1, + ACTIONS(2109), 1, anon_sym_COMMA, - ACTIONS(2580), 1, + ACTIONS(2608), 1, anon_sym_COLON, - STATE(3175), 1, + STATE(3286), 1, aux_sym_for_statement_repeat1, - STATE(3286), 2, + STATE(3322), 2, sym_comment, sym_include, - [139129] = 7, + [140859] = 7, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2105), 1, - anon_sym_COMMA, - ACTIONS(2580), 1, - anon_sym_COLON, - STATE(3317), 1, - aux_sym_for_statement_repeat1, - STATE(3287), 2, + ACTIONS(679), 1, + sym__namedot, + ACTIONS(5169), 1, + sym__terminator, + STATE(336), 1, + aux_sym_qualified_name_repeat1, + STATE(3323), 2, sym_comment, sym_include, - [139152] = 7, + [140882] = 7, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2105), 1, + ACTIONS(2109), 1, anon_sym_COMMA, - ACTIONS(2572), 1, + ACTIONS(2604), 1, anon_sym_COLON, - STATE(3282), 1, + STATE(3286), 1, aux_sym_for_statement_repeat1, - STATE(3288), 2, + STATE(3324), 2, sym_comment, sym_include, - [139175] = 7, + [140905] = 7, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2105), 1, + ACTIONS(2109), 1, anon_sym_COMMA, ACTIONS(2572), 1, anon_sym_COLON, - STATE(3175), 1, + STATE(3318), 1, aux_sym_for_statement_repeat1, - STATE(3289), 2, + STATE(3325), 2, sym_comment, sym_include, - [139198] = 7, + [140928] = 7, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(4153), 1, - aux_sym_on_error_phrase_token1, - ACTIONS(5175), 1, + ACTIONS(2109), 1, + anon_sym_COMMA, + ACTIONS(2572), 1, anon_sym_COLON, - STATE(4151), 1, - sym_on_stop_phrase, - STATE(3290), 2, + STATE(3286), 1, + aux_sym_for_statement_repeat1, + STATE(3326), 2, sym_comment, sym_include, - [139221] = 7, + [140951] = 7, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(4038), 1, + ACTIONS(2109), 1, anon_sym_COMMA, - ACTIONS(4251), 1, - sym__terminator, - STATE(3322), 1, - aux_sym_data_relation_repeat1, - STATE(3291), 2, + ACTIONS(2604), 1, + anon_sym_COLON, + STATE(3351), 1, + aux_sym_for_statement_repeat1, + STATE(3327), 2, sym_comment, sym_include, - [139244] = 7, + [140974] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(5177), 1, + ACTIONS(5171), 1, sym_identifier, - ACTIONS(5179), 1, - anon_sym_RPAREN, - STATE(3303), 1, - aux_sym_query_fields_repeat1, - STATE(3292), 2, - sym_comment, - sym_include, - [139267] = 7, - ACTIONS(59), 1, - anon_sym_SLASH_SLASH, - ACTIONS(61), 1, - anon_sym_SLASH_STAR, - ACTIONS(65), 1, - anon_sym_LBRACE, - ACTIONS(2105), 1, - anon_sym_COMMA, - ACTIONS(2463), 1, + ACTIONS(5173), 2, anon_sym_COLON, - STATE(3175), 1, - aux_sym_for_statement_repeat1, - STATE(3293), 2, + aux_sym_repeat_tuning_token1, + STATE(3328), 2, sym_comment, sym_include, - [139290] = 7, + [140995] = 7, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2105), 1, + ACTIONS(2109), 1, anon_sym_COMMA, - ACTIONS(2463), 1, + ACTIONS(2469), 1, anon_sym_COLON, - STATE(3285), 1, + STATE(3286), 1, aux_sym_for_statement_repeat1, - STATE(3294), 2, + STATE(3329), 2, sym_comment, sym_include, - [139313] = 7, + [141018] = 7, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2105), 1, + ACTIONS(2109), 1, anon_sym_COMMA, - ACTIONS(2568), 1, + ACTIONS(2469), 1, anon_sym_COLON, - STATE(3289), 1, + STATE(3322), 1, aux_sym_for_statement_repeat1, - STATE(3295), 2, + STATE(3330), 2, sym_comment, sym_include, - [139336] = 7, - ACTIONS(59), 1, + [141041] = 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(2105), 1, - anon_sym_COMMA, - ACTIONS(2568), 1, - anon_sym_COLON, - STATE(3175), 1, - aux_sym_for_statement_repeat1, - STATE(3296), 2, + ACTIONS(973), 1, + anon_sym_LPAREN, + ACTIONS(5175), 1, + sym_identifier, + STATE(1196), 1, + sym_parenthesized_expression, + STATE(3331), 2, sym_comment, sym_include, - [139359] = 7, + [141064] = 7, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2105), 1, + ACTIONS(5177), 1, + anon_sym_RPAREN, + ACTIONS(5179), 1, anon_sym_COMMA, - ACTIONS(2415), 1, - anon_sym_COLON, - STATE(3175), 1, - aux_sym_for_statement_repeat1, - STATE(3297), 2, + STATE(3358), 1, + aux_sym_function_statement_repeat1, + STATE(3332), 2, sym_comment, sym_include, - [139382] = 7, - ACTIONS(59), 1, + [141087] = 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, - anon_sym_COMMA, ACTIONS(5181), 1, - anon_sym_RPAREN, - STATE(3327), 1, - aux_sym_function_statement_repeat1, - STATE(3298), 2, + sym_identifier, + ACTIONS(5183), 1, + aux_sym_input_expression_token2, + STATE(1213), 1, + sym_qualified_name, + STATE(3333), 2, sym_comment, sym_include, - [139405] = 7, + [141110] = 7, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5120), 1, + ACTIONS(2109), 1, anon_sym_COMMA, - ACTIONS(5183), 1, - anon_sym_RPAREN, - STATE(3314), 1, - aux_sym_function_statement_repeat1, - STATE(3299), 2, + ACTIONS(2602), 1, + anon_sym_COLON, + STATE(3326), 1, + aux_sym_for_statement_repeat1, + STATE(3334), 2, sym_comment, sym_include, - [139428] = 7, + [141133] = 7, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5120), 1, + ACTIONS(2109), 1, anon_sym_COMMA, - ACTIONS(5183), 1, - anon_sym_RPAREN, - STATE(3329), 1, - aux_sym_function_statement_repeat1, - STATE(3300), 2, + ACTIONS(2602), 1, + anon_sym_COLON, + STATE(3286), 1, + aux_sym_for_statement_repeat1, + STATE(3335), 2, sym_comment, sym_include, - [139451] = 7, + [141156] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2105), 1, - anon_sym_COMMA, - ACTIONS(2415), 1, - anon_sym_COLON, - STATE(3293), 1, - aux_sym_for_statement_repeat1, - STATE(3301), 2, + STATE(3336), 2, sym_comment, sym_include, - [139474] = 7, - ACTIONS(3), 1, + ACTIONS(5185), 3, + aux_sym__block_terminator_token1, + aux_sym_case_when_branch_token1, + aux_sym_case_otherwise_branch_token1, + [141175] = 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(5020), 1, - anon_sym_, - ACTIONS(5185), 1, - anon_sym_RPAREN, - STATE(3243), 1, - aux_sym_accumulate_statement_repeat1, - STATE(3302), 2, + ACTIONS(2109), 1, + anon_sym_COMMA, + ACTIONS(2425), 1, + anon_sym_COLON, + STATE(3286), 1, + aux_sym_for_statement_repeat1, + STATE(3337), 2, sym_comment, sym_include, - [139497] = 7, + [141198] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(5177), 1, - sym_identifier, ACTIONS(5187), 1, anon_sym_RPAREN, - STATE(3330), 1, - aux_sym_query_fields_repeat1, - STATE(3303), 2, + ACTIONS(5189), 1, + anon_sym_, + STATE(3338), 3, sym_comment, sym_include, - [139520] = 7, + aux_sym_accumulate_statement_repeat1, + [141219] = 7, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(4153), 1, - aux_sym_on_error_phrase_token1, - ACTIONS(4697), 1, + ACTIONS(2109), 1, + anon_sym_COMMA, + ACTIONS(2425), 1, anon_sym_COLON, - STATE(4181), 1, - sym_on_stop_phrase, - STATE(3304), 2, + STATE(3329), 1, + aux_sym_for_statement_repeat1, + STATE(3339), 2, sym_comment, sym_include, - [139543] = 7, + [141242] = 7, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2105), 1, + ACTIONS(2109), 1, anon_sym_COMMA, - ACTIONS(3244), 1, + ACTIONS(2465), 1, anon_sym_COLON, - STATE(3175), 1, + STATE(3360), 1, aux_sym_for_statement_repeat1, - STATE(3305), 2, + STATE(3340), 2, sym_comment, sym_include, - [139566] = 7, + [141265] = 7, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_LBRACE, + ACTIONS(5103), 1, + anon_sym_, + ACTIONS(5192), 1, + anon_sym_RPAREN, + STATE(3338), 1, + aux_sym_accumulate_statement_repeat1, + STATE(3341), 2, + sym_comment, + sym_include, + [141288] = 7, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2105), 1, + ACTIONS(2109), 1, anon_sym_COMMA, - ACTIONS(3244), 1, + ACTIONS(2465), 1, anon_sym_COLON, - STATE(3333), 1, + STATE(3286), 1, aux_sym_for_statement_repeat1, - STATE(3306), 2, + STATE(3342), 2, sym_comment, sym_include, - [139589] = 7, + [141311] = 7, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2105), 1, + ACTIONS(2109), 1, anon_sym_COMMA, - ACTIONS(2455), 1, + ACTIONS(2463), 1, anon_sym_COLON, - STATE(3175), 1, + STATE(3286), 1, aux_sym_for_statement_repeat1, - STATE(3307), 2, + STATE(3343), 2, sym_comment, sym_include, - [139612] = 7, + [141334] = 7, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2105), 1, + ACTIONS(2109), 1, anon_sym_COMMA, - ACTIONS(2455), 1, + ACTIONS(2463), 1, anon_sym_COLON, - STATE(3296), 1, + STATE(3335), 1, aux_sym_for_statement_repeat1, - STATE(3308), 2, + STATE(3344), 2, sym_comment, sym_include, - [139635] = 7, + [141357] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(5189), 1, + ACTIONS(5194), 1, sym_identifier, - ACTIONS(5191), 1, + ACTIONS(5196), 1, aux_sym_buffer_definition_token3, - STATE(4531), 1, + STATE(4459), 1, sym_qualified_name, - STATE(3309), 2, + STATE(3345), 2, sym_comment, sym_include, - [139658] = 5, - ACTIONS(59), 1, + [141380] = 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(3310), 2, + ACTIONS(5103), 1, + anon_sym_, + ACTIONS(5198), 1, + anon_sym_RPAREN, + STATE(3341), 1, + aux_sym_accumulate_statement_repeat1, + STATE(3346), 2, sym_comment, sym_include, - ACTIONS(5193), 3, - anon_sym_COMMA, - anon_sym_COLON, - aux_sym_on_error_phrase_token1, - [139677] = 5, + [141403] = 7, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - STATE(3311), 2, + ACTIONS(5179), 1, + anon_sym_COMMA, + ACTIONS(5200), 1, + anon_sym_RPAREN, + STATE(3366), 1, + aux_sym_function_statement_repeat1, + STATE(3347), 2, sym_comment, sym_include, - ACTIONS(5195), 3, - anon_sym_COMMA, - anon_sym_COLON, - aux_sym_on_error_phrase_token1, - [139696] = 7, + [141426] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(5020), 1, - anon_sym_, - ACTIONS(5197), 1, + ACTIONS(5202), 1, + sym_identifier, + ACTIONS(5204), 1, anon_sym_RPAREN, - STATE(3302), 1, - aux_sym_accumulate_statement_repeat1, - STATE(3312), 2, + STATE(3369), 1, + aux_sym_query_fields_repeat1, + STATE(3348), 2, sym_comment, sym_include, - [139719] = 7, + [141449] = 7, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5199), 1, - aux_sym__block_terminator_token1, - STATE(1198), 1, - sym__block_terminator, - STATE(1201), 1, - sym__function_terminator, - STATE(3313), 2, + ACTIONS(679), 1, + sym__namedot, + ACTIONS(5206), 1, + sym__terminator, + STATE(336), 1, + aux_sym_qualified_name_repeat1, + STATE(3349), 2, sym_comment, sym_include, - [139742] = 6, + [141472] = 7, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5201), 1, - anon_sym_RPAREN, - ACTIONS(5203), 1, + ACTIONS(2109), 1, anon_sym_COMMA, - STATE(3314), 3, - sym_comment, - sym_include, - aux_sym_function_statement_repeat1, - [139763] = 7, - ACTIONS(59), 1, - anon_sym_SLASH_SLASH, - ACTIONS(61), 1, - anon_sym_SLASH_STAR, - ACTIONS(65), 1, - anon_sym_LBRACE, - ACTIONS(4153), 1, - aux_sym_on_error_phrase_token1, - ACTIONS(4433), 1, + ACTIONS(2441), 1, anon_sym_COLON, - STATE(4195), 1, - sym_on_stop_phrase, - STATE(3315), 2, + STATE(3286), 1, + aux_sym_for_statement_repeat1, + STATE(3350), 2, sym_comment, sym_include, - [139786] = 7, + [141495] = 7, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2105), 1, + ACTIONS(2109), 1, anon_sym_COMMA, - ACTIONS(2395), 1, + ACTIONS(2590), 1, anon_sym_COLON, - STATE(3175), 1, + STATE(3286), 1, aux_sym_for_statement_repeat1, - STATE(3316), 2, + STATE(3351), 2, sym_comment, sym_include, - [139809] = 7, + [141518] = 7, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2105), 1, + ACTIONS(2109), 1, anon_sym_COMMA, - ACTIONS(2604), 1, + ACTIONS(2590), 1, anon_sym_COLON, - STATE(3175), 1, + STATE(3382), 1, aux_sym_for_statement_repeat1, - STATE(3317), 2, + STATE(3352), 2, sym_comment, sym_include, - [139832] = 7, + [141541] = 7, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2105), 1, + ACTIONS(2109), 1, anon_sym_COMMA, - ACTIONS(2395), 1, + ACTIONS(2441), 1, anon_sym_COLON, - STATE(3307), 1, + STATE(3343), 1, aux_sym_for_statement_repeat1, - STATE(3318), 2, + STATE(3353), 2, sym_comment, sym_include, - [139855] = 7, - ACTIONS(59), 1, + [141564] = 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(2105), 1, - anon_sym_COMMA, - ACTIONS(2604), 1, + ACTIONS(5208), 1, + sym_identifier, + ACTIONS(5210), 2, anon_sym_COLON, - STATE(3415), 1, - aux_sym_for_statement_repeat1, - STATE(3319), 2, + aux_sym_repeat_tuning_token1, + STATE(3354), 2, sym_comment, sym_include, - [139878] = 7, + [141585] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(5206), 1, + ACTIONS(5212), 1, sym_identifier, - ACTIONS(5208), 1, + ACTIONS(5214), 1, aux_sym_buffer_definition_token3, - STATE(4457), 1, + STATE(4563), 1, sym_qualified_name, - STATE(3320), 2, + STATE(3355), 2, sym_comment, sym_include, - [139901] = 7, + [141608] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5120), 1, + STATE(3356), 2, + sym_comment, + sym_include, + ACTIONS(5216), 3, anon_sym_COMMA, - ACTIONS(5210), 1, - anon_sym_RPAREN, - STATE(3370), 1, - aux_sym_function_statement_repeat1, - STATE(3321), 2, + anon_sym_COLON, + aux_sym_repeat_tuning_token1, + [141627] = 5, + ACTIONS(59), 1, + anon_sym_SLASH_SLASH, + ACTIONS(61), 1, + anon_sym_SLASH_STAR, + ACTIONS(65), 1, + anon_sym_LBRACE, + STATE(3357), 2, sym_comment, sym_include, - [139924] = 7, + ACTIONS(5218), 3, + anon_sym_COMMA, + anon_sym_COLON, + aux_sym_repeat_tuning_token1, + [141646] = 7, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(4038), 1, + ACTIONS(5179), 1, anon_sym_COMMA, - ACTIONS(4465), 1, - sym__terminator, - STATE(2576), 1, - aux_sym_data_relation_repeat1, - STATE(3322), 2, + ACTIONS(5220), 1, + anon_sym_RPAREN, + STATE(3395), 1, + aux_sym_function_statement_repeat1, + STATE(3358), 2, sym_comment, sym_include, - [139947] = 7, - ACTIONS(3), 1, + [141669] = 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(4573), 1, - sym__terminator, - ACTIONS(5212), 1, - sym_identifier, - STATE(3378), 1, - sym_qualified_name, - STATE(3323), 2, + STATE(3359), 2, sym_comment, sym_include, - [139970] = 7, + ACTIONS(5222), 3, + aux_sym__block_terminator_token1, + aux_sym_case_when_branch_token1, + aux_sym_case_otherwise_branch_token1, + [141688] = 7, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(4038), 1, + ACTIONS(2109), 1, anon_sym_COMMA, - ACTIONS(4465), 1, - sym__terminator, - STATE(3379), 1, - aux_sym_data_relation_repeat1, - STATE(3324), 2, + ACTIONS(2588), 1, + anon_sym_COLON, + STATE(3286), 1, + aux_sym_for_statement_repeat1, + STATE(3360), 2, sym_comment, sym_include, - [139993] = 7, + [141711] = 7, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5043), 1, - sym__integer_literal, - STATE(801), 1, - sym__decimal_literal, - STATE(2299), 1, - sym_number_literal, - STATE(3325), 2, + ACTIONS(2109), 1, + anon_sym_COMMA, + ACTIONS(2588), 1, + anon_sym_COLON, + STATE(3398), 1, + aux_sym_for_statement_repeat1, + STATE(3361), 2, sym_comment, sym_include, - [140016] = 7, + [141734] = 7, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, @@ -157271,1326 +159197,1448 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, ACTIONS(679), 1, sym__namedot, - ACTIONS(5214), 1, + ACTIONS(5224), 1, anon_sym_LPAREN, - STATE(329), 1, + STATE(336), 1, aux_sym_qualified_name_repeat1, - STATE(3326), 2, + STATE(3362), 2, sym_comment, sym_include, - [140039] = 7, + [141757] = 7, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5120), 1, + ACTIONS(4004), 1, anon_sym_COMMA, - ACTIONS(5216), 1, - anon_sym_RPAREN, - STATE(3314), 1, - aux_sym_function_statement_repeat1, - STATE(3327), 2, + ACTIONS(4362), 1, + sym__terminator, + STATE(3404), 1, + aux_sym_data_relation_repeat1, + STATE(3363), 2, sym_comment, sym_include, - [140062] = 7, + [141780] = 7, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5120), 1, + ACTIONS(5179), 1, anon_sym_COMMA, - ACTIONS(5218), 1, + ACTIONS(5226), 1, anon_sym_RPAREN, - STATE(3393), 1, + STATE(3411), 1, aux_sym_function_statement_repeat1, - STATE(3328), 2, + STATE(3364), 2, + sym_comment, + sym_include, + [141803] = 7, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_LBRACE, + ACTIONS(5228), 1, + sym_identifier, + ACTIONS(5230), 1, + anon_sym_AMP, + ACTIONS(5232), 1, + sym__integer_literal, + STATE(3365), 2, sym_comment, sym_include, - [140085] = 7, + [141826] = 7, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5120), 1, + ACTIONS(5179), 1, anon_sym_COMMA, - ACTIONS(5220), 1, + ACTIONS(5234), 1, anon_sym_RPAREN, - STATE(3314), 1, + STATE(3395), 1, aux_sym_function_statement_repeat1, - STATE(3329), 2, + STATE(3366), 2, sym_comment, sym_include, - [140108] = 6, - ACTIONS(3), 1, + [141849] = 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(5222), 1, - sym_identifier, - ACTIONS(5225), 1, + ACTIONS(5179), 1, + anon_sym_COMMA, + ACTIONS(5234), 1, anon_sym_RPAREN, - STATE(3330), 3, + STATE(3416), 1, + aux_sym_function_statement_repeat1, + STATE(3367), 2, sym_comment, sym_include, - aux_sym_query_fields_repeat1, - [140129] = 7, + [141872] = 7, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(3852), 1, - anon_sym_COLON, - ACTIONS(4153), 1, - aux_sym_on_error_phrase_token1, - STATE(4257), 1, - sym_on_stop_phrase, - STATE(3331), 2, + ACTIONS(5122), 1, + sym__integer_literal, + STATE(796), 1, + sym__decimal_literal, + STATE(2266), 1, + sym_number_literal, + STATE(3368), 2, sym_comment, sym_include, - [140152] = 7, + [141895] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(5227), 1, + ACTIONS(5202), 1, sym_identifier, - ACTIONS(5229), 1, - aux_sym_input_expression_token2, - STATE(747), 1, - sym_qualified_name, - STATE(3332), 2, + ACTIONS(5236), 1, + anon_sym_RPAREN, + STATE(3417), 1, + aux_sym_query_fields_repeat1, + STATE(3369), 2, sym_comment, sym_include, - [140175] = 7, + [141918] = 7, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2105), 1, + ACTIONS(2109), 1, anon_sym_COMMA, - ACTIONS(4023), 1, + ACTIONS(5238), 1, anon_sym_COLON, - STATE(3175), 1, + STATE(3286), 1, aux_sym_for_statement_repeat1, - STATE(3333), 2, + STATE(3370), 2, sym_comment, sym_include, - [140198] = 7, + [141941] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(1087), 1, - anon_sym_LPAREN, - ACTIONS(5231), 1, + ACTIONS(5240), 1, sym_identifier, - STATE(748), 1, - sym_parenthesized_expression, - STATE(3334), 2, + ACTIONS(5242), 1, + aux_sym_input_expression_token2, + STATE(756), 1, + sym_qualified_name, + STATE(3371), 2, sym_comment, sym_include, - [140221] = 7, + [141964] = 7, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2105), 1, + ACTIONS(2109), 1, anon_sym_COMMA, - ACTIONS(4023), 1, + ACTIONS(5244), 1, anon_sym_COLON, - STATE(3424), 1, + STATE(3370), 1, aux_sym_for_statement_repeat1, - STATE(3335), 2, + STATE(3372), 2, sym_comment, sym_include, - [140244] = 7, + [141987] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(5233), 1, + ACTIONS(1015), 1, + anon_sym_LPAREN, + ACTIONS(5246), 1, sym_identifier, - ACTIONS(5235), 1, - anon_sym_AMP, - ACTIONS(5237), 1, - sym__integer_literal, - STATE(3336), 2, + STATE(758), 1, + sym_parenthesized_expression, + STATE(3373), 2, sym_comment, sym_include, - [140267] = 7, + [142010] = 7, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5199), 1, - aux_sym__block_terminator_token1, - STATE(1198), 1, - sym__block_terminator, - STATE(1295), 1, - sym__function_terminator, - STATE(3337), 2, + ACTIONS(2109), 1, + anon_sym_COMMA, + ACTIONS(5244), 1, + anon_sym_COLON, + STATE(3286), 1, + aux_sym_for_statement_repeat1, + STATE(3374), 2, sym_comment, sym_include, - [140290] = 7, + [142033] = 7, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2105), 1, + ACTIONS(2109), 1, anon_sym_COMMA, - ACTIONS(5239), 1, + ACTIONS(5248), 1, anon_sym_COLON, - STATE(3175), 1, + STATE(3286), 1, aux_sym_for_statement_repeat1, - STATE(3338), 2, + STATE(3375), 2, sym_comment, sym_include, - [140313] = 7, + [142056] = 7, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2105), 1, + ACTIONS(2109), 1, anon_sym_COMMA, - ACTIONS(5241), 1, + ACTIONS(4262), 1, anon_sym_COLON, - STATE(3338), 1, + STATE(3374), 1, aux_sym_for_statement_repeat1, - STATE(3339), 2, + STATE(3376), 2, sym_comment, sym_include, - [140336] = 7, + [142079] = 7, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2105), 1, + ACTIONS(2109), 1, anon_sym_COMMA, - ACTIONS(5241), 1, + ACTIONS(4262), 1, anon_sym_COLON, - STATE(3175), 1, + STATE(3286), 1, aux_sym_for_statement_repeat1, - STATE(3340), 2, + STATE(3377), 2, sym_comment, sym_include, - [140359] = 7, - ACTIONS(3), 1, + [142102] = 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(4912), 1, - sym_identifier, - ACTIONS(4914), 1, - aux_sym_input_expression_token2, - STATE(46), 1, - sym_qualified_name, - STATE(3341), 2, + ACTIONS(2109), 1, + anon_sym_COMMA, + ACTIONS(5250), 1, + anon_sym_COLON, + STATE(3375), 1, + aux_sym_for_statement_repeat1, + STATE(3378), 2, sym_comment, sym_include, - [140382] = 7, + [142125] = 7, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2105), 1, + ACTIONS(2109), 1, anon_sym_COMMA, - ACTIONS(5243), 1, + ACTIONS(5250), 1, anon_sym_COLON, - STATE(3175), 1, + STATE(3286), 1, aux_sym_for_statement_repeat1, - STATE(3342), 2, + STATE(3379), 2, sym_comment, sym_include, - [140405] = 7, + [142148] = 7, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2105), 1, + ACTIONS(2109), 1, anon_sym_COMMA, - ACTIONS(4294), 1, + ACTIONS(4043), 1, anon_sym_COLON, - STATE(3340), 1, + STATE(3377), 1, aux_sym_for_statement_repeat1, - STATE(3343), 2, + STATE(3380), 2, sym_comment, sym_include, - [140428] = 7, + [142171] = 7, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2105), 1, + ACTIONS(2109), 1, anon_sym_COMMA, - ACTIONS(4294), 1, + ACTIONS(4043), 1, anon_sym_COLON, - STATE(3175), 1, + STATE(3286), 1, aux_sym_for_statement_repeat1, - STATE(3344), 2, + STATE(3381), 2, sym_comment, sym_include, - [140451] = 7, + [142194] = 7, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2105), 1, + ACTIONS(2109), 1, anon_sym_COMMA, - ACTIONS(5245), 1, + ACTIONS(3244), 1, anon_sym_COLON, - STATE(3342), 1, + STATE(3286), 1, aux_sym_for_statement_repeat1, - STATE(3345), 2, + STATE(3382), 2, sym_comment, sym_include, - [140474] = 7, + [142217] = 7, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2105), 1, + ACTIONS(2109), 1, anon_sym_COMMA, - ACTIONS(5245), 1, + ACTIONS(4521), 1, anon_sym_COLON, - STATE(3175), 1, + STATE(3379), 1, aux_sym_for_statement_repeat1, - STATE(3346), 2, + STATE(3383), 2, sym_comment, sym_include, - [140497] = 7, + [142240] = 7, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2105), 1, + ACTIONS(2109), 1, anon_sym_COMMA, - ACTIONS(4102), 1, + ACTIONS(4521), 1, anon_sym_COLON, - STATE(3344), 1, + STATE(3286), 1, aux_sym_for_statement_repeat1, - STATE(3347), 2, + STATE(3384), 2, sym_comment, sym_include, - [140520] = 7, + [142263] = 7, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2105), 1, + ACTIONS(2109), 1, anon_sym_COMMA, - ACTIONS(4102), 1, + ACTIONS(3244), 1, anon_sym_COLON, - STATE(3175), 1, + STATE(3420), 1, aux_sym_for_statement_repeat1, - STATE(3348), 2, + STATE(3385), 2, sym_comment, sym_include, - [140543] = 7, - ACTIONS(3), 1, + [142286] = 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(93), 1, - sym_identifier, - ACTIONS(5247), 1, - sym__namedot, - STATE(3350), 1, - aux_sym_qualified_name_repeat1, - STATE(3349), 2, + STATE(3386), 2, sym_comment, sym_include, - [140566] = 6, - ACTIONS(3), 1, + ACTIONS(5252), 3, + anon_sym_COMMA, + anon_sym_COLON, + aux_sym_repeat_tuning_token1, + [142305] = 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(104), 1, - sym_identifier, - ACTIONS(5249), 1, - sym__namedot, - STATE(3350), 3, + STATE(3387), 2, sym_comment, sym_include, - aux_sym_qualified_name_repeat1, - [140587] = 7, + ACTIONS(5254), 3, + anon_sym_COMMA, + anon_sym_COLON, + aux_sym_repeat_tuning_token1, + [142324] = 7, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2105), 1, + ACTIONS(2109), 1, anon_sym_COMMA, - ACTIONS(3230), 1, + ACTIONS(3242), 1, anon_sym_COLON, - STATE(3434), 1, + STATE(3381), 1, aux_sym_for_statement_repeat1, - STATE(3351), 2, + STATE(3388), 2, sym_comment, sym_include, - [140610] = 7, + [142347] = 7, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2105), 1, + ACTIONS(2109), 1, anon_sym_COMMA, - ACTIONS(4292), 1, + ACTIONS(3242), 1, anon_sym_COLON, - STATE(3346), 1, + STATE(3286), 1, aux_sym_for_statement_repeat1, - STATE(3352), 2, + STATE(3389), 2, sym_comment, sym_include, - [140633] = 5, + [142370] = 7, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - STATE(3353), 2, + ACTIONS(2109), 1, + anon_sym_COMMA, + ACTIONS(4101), 1, + anon_sym_COLON, + STATE(3384), 1, + aux_sym_for_statement_repeat1, + STATE(3390), 2, sym_comment, sym_include, - ACTIONS(1947), 3, - aux_sym__block_terminator_token1, - aux_sym_case_when_branch_token1, - aux_sym_case_otherwise_branch_token1, - [140652] = 7, + [142393] = 7, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2105), 1, + ACTIONS(2109), 1, anon_sym_COMMA, - ACTIONS(4292), 1, + ACTIONS(4101), 1, anon_sym_COLON, - STATE(3175), 1, + STATE(3286), 1, aux_sym_for_statement_repeat1, - STATE(3354), 2, + STATE(3391), 2, sym_comment, sym_include, - [140675] = 5, + [142416] = 7, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - STATE(3355), 2, - sym_comment, - sym_include, - ACTIONS(2053), 3, + ACTIONS(5256), 1, aux_sym__block_terminator_token1, - aux_sym_case_when_branch_token1, - aux_sym_case_otherwise_branch_token1, - [140694] = 5, - ACTIONS(59), 1, - anon_sym_SLASH_SLASH, - ACTIONS(61), 1, - anon_sym_SLASH_STAR, - ACTIONS(65), 1, - anon_sym_LBRACE, - STATE(3356), 2, + STATE(1214), 1, + sym__function_terminator, + STATE(1220), 1, + sym__block_terminator, + STATE(3392), 2, sym_comment, sym_include, - ACTIONS(2059), 3, - aux_sym__block_terminator_token1, - aux_sym_case_when_branch_token1, - aux_sym_case_otherwise_branch_token1, - [140713] = 7, + [142439] = 7, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2105), 1, + ACTIONS(2109), 1, anon_sym_COMMA, - ACTIONS(3324), 1, + ACTIONS(2578), 1, anon_sym_COLON, - STATE(3348), 1, + STATE(3389), 1, aux_sym_for_statement_repeat1, - STATE(3357), 2, + STATE(3393), 2, sym_comment, sym_include, - [140736] = 7, + [142462] = 7, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2105), 1, + ACTIONS(2109), 1, anon_sym_COMMA, - ACTIONS(3324), 1, + ACTIONS(2578), 1, anon_sym_COLON, - STATE(3175), 1, + STATE(3286), 1, aux_sym_for_statement_repeat1, - STATE(3358), 2, + STATE(3394), 2, sym_comment, sym_include, - [140759] = 5, + [142485] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - STATE(3359), 2, + ACTIONS(5258), 1, + anon_sym_RPAREN, + ACTIONS(5260), 1, + anon_sym_COMMA, + STATE(3395), 3, sym_comment, sym_include, - ACTIONS(2061), 3, - aux_sym__block_terminator_token1, - aux_sym_case_when_branch_token1, - aux_sym_case_otherwise_branch_token1, - [140778] = 7, + aux_sym_function_statement_repeat1, + [142506] = 7, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2105), 1, + ACTIONS(2109), 1, anon_sym_COMMA, - ACTIONS(3986), 1, + ACTIONS(3254), 1, anon_sym_COLON, - STATE(3354), 1, + STATE(3391), 1, aux_sym_for_statement_repeat1, - STATE(3360), 2, + STATE(3396), 2, sym_comment, sym_include, - [140801] = 7, + [142529] = 7, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2105), 1, + ACTIONS(2109), 1, anon_sym_COMMA, - ACTIONS(3986), 1, + ACTIONS(3254), 1, anon_sym_COLON, - STATE(3175), 1, + STATE(3286), 1, aux_sym_for_statement_repeat1, - STATE(3361), 2, + STATE(3397), 2, sym_comment, sym_include, - [140824] = 5, + [142552] = 7, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - STATE(3362), 2, + ACTIONS(2109), 1, + anon_sym_COMMA, + ACTIONS(2598), 1, + anon_sym_COLON, + STATE(3286), 1, + aux_sym_for_statement_repeat1, + STATE(3398), 2, sym_comment, sym_include, - ACTIONS(2063), 3, - aux_sym__block_terminator_token1, - aux_sym_case_when_branch_token1, - aux_sym_case_otherwise_branch_token1, - [140843] = 5, + [142575] = 7, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - STATE(3363), 2, + ACTIONS(2109), 1, + anon_sym_COMMA, + ACTIONS(2598), 1, + anon_sym_COLON, + STATE(3424), 1, + aux_sym_for_statement_repeat1, + STATE(3399), 2, sym_comment, sym_include, - ACTIONS(2067), 3, - aux_sym__block_terminator_token1, - aux_sym_case_when_branch_token1, - aux_sym_case_otherwise_branch_token1, - [140862] = 5, + [142598] = 7, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - STATE(3364), 2, + ACTIONS(2109), 1, + anon_sym_COMMA, + ACTIONS(2576), 1, + anon_sym_COLON, + STATE(3394), 1, + aux_sym_for_statement_repeat1, + STATE(3400), 2, sym_comment, sym_include, - ACTIONS(2071), 3, - aux_sym__block_terminator_token1, - aux_sym_case_when_branch_token1, - aux_sym_case_otherwise_branch_token1, - [140881] = 5, + [142621] = 7, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - STATE(3365), 2, + ACTIONS(2109), 1, + anon_sym_COMMA, + ACTIONS(2576), 1, + anon_sym_COLON, + STATE(3286), 1, + aux_sym_for_statement_repeat1, + STATE(3401), 2, sym_comment, sym_include, - ACTIONS(2073), 3, - aux_sym__block_terminator_token1, - aux_sym_case_when_branch_token1, - aux_sym_case_otherwise_branch_token1, - [140900] = 5, + [142644] = 7, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - STATE(3366), 2, + ACTIONS(2109), 1, + anon_sym_COMMA, + ACTIONS(2600), 1, + anon_sym_COLON, + STATE(3397), 1, + aux_sym_for_statement_repeat1, + STATE(3402), 2, sym_comment, sym_include, - ACTIONS(2075), 3, - aux_sym__block_terminator_token1, - aux_sym_case_when_branch_token1, - aux_sym_case_otherwise_branch_token1, - [140919] = 5, + [142667] = 7, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - STATE(3367), 2, + ACTIONS(2109), 1, + anon_sym_COMMA, + ACTIONS(2600), 1, + anon_sym_COLON, + STATE(3286), 1, + aux_sym_for_statement_repeat1, + STATE(3403), 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, - [140938] = 5, + [142690] = 7, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - STATE(3368), 2, + ACTIONS(4004), 1, + anon_sym_COMMA, + ACTIONS(4201), 1, + sym__terminator, + STATE(2676), 1, + aux_sym_data_relation_repeat1, + STATE(3404), 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, - [140957] = 5, - ACTIONS(59), 1, + [142713] = 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(3369), 2, + ACTIONS(4787), 1, + sym__terminator, + ACTIONS(5263), 1, + sym_identifier, + STATE(3433), 1, + sym_qualified_name, + STATE(3405), 2, sym_comment, sym_include, - ACTIONS(2055), 3, - aux_sym__block_terminator_token1, - aux_sym_case_when_branch_token1, - aux_sym_case_otherwise_branch_token1, - [140976] = 7, + [142736] = 7, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5120), 1, - anon_sym_COMMA, - ACTIONS(5252), 1, - anon_sym_RPAREN, - STATE(3314), 1, - aux_sym_function_statement_repeat1, - STATE(3370), 2, + ACTIONS(679), 1, + sym__namedot, + ACTIONS(5265), 1, + sym__terminator, + STATE(336), 1, + aux_sym_qualified_name_repeat1, + STATE(3406), 2, sym_comment, sym_include, - [140999] = 7, + [142759] = 7, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5120), 1, + ACTIONS(4004), 1, anon_sym_COMMA, - ACTIONS(5252), 1, - anon_sym_RPAREN, - STATE(3463), 1, - aux_sym_function_statement_repeat1, - STATE(3371), 2, + ACTIONS(4201), 1, + sym__terminator, + STATE(3434), 1, + aux_sym_data_relation_repeat1, + STATE(3407), 2, sym_comment, sym_include, - [141022] = 7, + [142782] = 7, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2105), 1, + ACTIONS(2109), 1, anon_sym_COMMA, - ACTIONS(2574), 1, + ACTIONS(2453), 1, anon_sym_COLON, - STATE(3358), 1, + STATE(3286), 1, aux_sym_for_statement_repeat1, - STATE(3372), 2, + STATE(3408), 2, sym_comment, sym_include, - [141045] = 5, + [142805] = 7, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - STATE(3373), 2, + ACTIONS(2109), 1, + anon_sym_COMMA, + ACTIONS(2453), 1, + anon_sym_COLON, + STATE(3401), 1, + aux_sym_for_statement_repeat1, + STATE(3409), 2, sym_comment, sym_include, - ACTIONS(2065), 3, - aux_sym__block_terminator_token1, - aux_sym_case_when_branch_token1, - aux_sym_case_otherwise_branch_token1, - [141064] = 5, + [142828] = 7, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - STATE(3374), 2, + ACTIONS(5179), 1, + anon_sym_COMMA, + ACTIONS(5267), 1, + anon_sym_RPAREN, + STATE(3431), 1, + aux_sym_function_statement_repeat1, + STATE(3410), 2, sym_comment, sym_include, - ACTIONS(2057), 3, - aux_sym__block_terminator_token1, - aux_sym_case_when_branch_token1, - aux_sym_case_otherwise_branch_token1, - [141083] = 5, + [142851] = 7, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - STATE(3375), 2, + ACTIONS(5179), 1, + anon_sym_COMMA, + ACTIONS(5269), 1, + anon_sym_RPAREN, + STATE(3395), 1, + aux_sym_function_statement_repeat1, + STATE(3411), 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, - [141102] = 5, + [142874] = 7, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - STATE(3376), 2, + ACTIONS(2109), 1, + anon_sym_COMMA, + ACTIONS(2574), 1, + anon_sym_COLON, + STATE(3403), 1, + aux_sym_for_statement_repeat1, + STATE(3412), 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, - [141121] = 7, + [142897] = 7, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2105), 1, + ACTIONS(2109), 1, anon_sym_COMMA, ACTIONS(2574), 1, anon_sym_COLON, - STATE(3175), 1, + STATE(3286), 1, aux_sym_for_statement_repeat1, - STATE(3377), 2, + STATE(3413), 2, sym_comment, sym_include, - [141144] = 7, + [142920] = 7, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(4038), 1, + ACTIONS(5179), 1, anon_sym_COMMA, - ACTIONS(4239), 1, - sym__terminator, - STATE(3466), 1, - aux_sym_data_relation_repeat1, - STATE(3378), 2, + ACTIONS(5271), 1, + anon_sym_RPAREN, + STATE(3455), 1, + aux_sym_function_statement_repeat1, + STATE(3414), 2, sym_comment, sym_include, - [141167] = 7, + [142943] = 7, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(4038), 1, + ACTIONS(2109), 1, anon_sym_COMMA, - ACTIONS(4239), 1, - sym__terminator, - STATE(2576), 1, - aux_sym_data_relation_repeat1, - STATE(3379), 2, + ACTIONS(2435), 1, + anon_sym_COLON, + STATE(3286), 1, + aux_sym_for_statement_repeat1, + STATE(3415), 2, sym_comment, sym_include, - [141190] = 5, + [142966] = 7, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - STATE(3380), 2, + ACTIONS(5179), 1, + anon_sym_COMMA, + ACTIONS(5273), 1, + anon_sym_RPAREN, + STATE(3395), 1, + aux_sym_function_statement_repeat1, + STATE(3416), 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, - [141209] = 5, - ACTIONS(59), 1, + [142989] = 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(3381), 2, + ACTIONS(5275), 1, + sym_identifier, + ACTIONS(5278), 1, + anon_sym_RPAREN, + STATE(3417), 3, sym_comment, sym_include, - ACTIONS(2041), 3, - aux_sym__block_terminator_token1, - aux_sym_case_when_branch_token1, - aux_sym_case_otherwise_branch_token1, - [141228] = 5, + aux_sym_query_fields_repeat1, + [143010] = 7, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - STATE(3382), 2, + ACTIONS(2109), 1, + anon_sym_COMMA, + ACTIONS(2435), 1, + anon_sym_COLON, + STATE(3408), 1, + aux_sym_for_statement_repeat1, + STATE(3418), 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, - [141247] = 5, - ACTIONS(59), 1, + [143033] = 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(3383), 2, + ACTIONS(5103), 1, + anon_sym_, + ACTIONS(5280), 1, + anon_sym_RPAREN, + STATE(3338), 1, + aux_sym_accumulate_statement_repeat1, + STATE(3419), 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, - [141266] = 7, - ACTIONS(3), 1, + [143056] = 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(5254), 1, - sym_identifier, - ACTIONS(5256), 1, - sym__terminator, - STATE(3469), 1, - sym_qualified_name, - STATE(3384), 2, + ACTIONS(2109), 1, + anon_sym_COMMA, + ACTIONS(4073), 1, + anon_sym_COLON, + STATE(3286), 1, + aux_sym_for_statement_repeat1, + STATE(3420), 2, sym_comment, sym_include, - [141289] = 7, + [143079] = 7, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2105), 1, + ACTIONS(2109), 1, anon_sym_COMMA, - ACTIONS(3302), 1, + ACTIONS(4073), 1, anon_sym_COLON, - STATE(3361), 1, + STATE(3440), 1, aux_sym_for_statement_repeat1, - STATE(3385), 2, + STATE(3421), 2, sym_comment, sym_include, - [141312] = 5, + [143102] = 7, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - STATE(3386), 2, + ACTIONS(5256), 1, + aux_sym__block_terminator_token1, + STATE(1220), 1, + sym__block_terminator, + STATE(1309), 1, + sym__function_terminator, + STATE(3422), 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, - [141331] = 7, + [143125] = 7, + ACTIONS(59), 1, + anon_sym_SLASH_SLASH, + ACTIONS(61), 1, + anon_sym_SLASH_STAR, + ACTIONS(65), 1, + anon_sym_LBRACE, + ACTIONS(2109), 1, + anon_sym_COMMA, + ACTIONS(2459), 1, + anon_sym_COLON, + STATE(3286), 1, + aux_sym_for_statement_repeat1, + STATE(3423), 2, + sym_comment, + sym_include, + [143148] = 7, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2105), 1, + ACTIONS(2109), 1, anon_sym_COMMA, ACTIONS(3302), 1, anon_sym_COLON, - STATE(3175), 1, + STATE(3286), 1, aux_sym_for_statement_repeat1, - STATE(3387), 2, + STATE(3424), 2, sym_comment, sym_include, - [141354] = 5, + [143171] = 7, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - STATE(3388), 2, + ACTIONS(679), 1, + sym__namedot, + ACTIONS(5282), 1, + sym__terminator, + STATE(336), 1, + aux_sym_qualified_name_repeat1, + STATE(3425), 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, - [141373] = 7, + [143194] = 7, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2105), 1, + ACTIONS(2109), 1, anon_sym_COMMA, - ACTIONS(2578), 1, + ACTIONS(2459), 1, anon_sym_COLON, - STATE(3377), 1, + STATE(3413), 1, aux_sym_for_statement_repeat1, - STATE(3389), 2, + STATE(3426), 2, sym_comment, sym_include, - [141396] = 5, - ACTIONS(59), 1, + [143217] = 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(3390), 2, + ACTIONS(5284), 1, + sym_identifier, + ACTIONS(5286), 1, + aux_sym_buffer_definition_token3, + STATE(4473), 1, + sym_qualified_name, + STATE(3427), 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, - [141415] = 7, + [143240] = 7, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2105), 1, + ACTIONS(2109), 1, anon_sym_COMMA, - ACTIONS(2578), 1, + ACTIONS(3302), 1, anon_sym_COLON, - STATE(3175), 1, + STATE(3443), 1, aux_sym_for_statement_repeat1, - STATE(3391), 2, + STATE(3428), 2, sym_comment, sym_include, - [141438] = 7, + [143263] = 7, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5120), 1, - anon_sym_COMMA, - ACTIONS(5258), 1, + ACTIONS(679), 1, + sym__namedot, + ACTIONS(5288), 1, + sym__terminator, + STATE(336), 1, + aux_sym_qualified_name_repeat1, + STATE(3429), 2, + sym_comment, + sym_include, + [143286] = 7, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_LBRACE, + ACTIONS(5103), 1, + anon_sym_, + ACTIONS(5290), 1, anon_sym_RPAREN, - STATE(3314), 1, - aux_sym_function_statement_repeat1, - STATE(3392), 2, + STATE(3419), 1, + aux_sym_accumulate_statement_repeat1, + STATE(3430), 2, sym_comment, sym_include, - [141461] = 7, + [143309] = 7, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5120), 1, + ACTIONS(5179), 1, anon_sym_COMMA, - ACTIONS(5260), 1, + ACTIONS(5292), 1, anon_sym_RPAREN, - STATE(3314), 1, + STATE(3395), 1, aux_sym_function_statement_repeat1, - STATE(3393), 2, + STATE(3431), 2, sym_comment, sym_include, - [141484] = 7, + [143332] = 7, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5120), 1, + ACTIONS(5179), 1, anon_sym_COMMA, - ACTIONS(5262), 1, + ACTIONS(5292), 1, anon_sym_RPAREN, - STATE(3496), 1, + STATE(3447), 1, aux_sym_function_statement_repeat1, - STATE(3394), 2, + STATE(3432), 2, sym_comment, sym_include, - [141507] = 5, + [143355] = 7, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - STATE(3395), 2, + ACTIONS(4004), 1, + anon_sym_COMMA, + ACTIONS(4487), 1, + sym__terminator, + STATE(3449), 1, + aux_sym_data_relation_repeat1, + STATE(3433), 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, - [141526] = 5, + [143378] = 7, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - STATE(3396), 2, + ACTIONS(4004), 1, + anon_sym_COMMA, + ACTIONS(4487), 1, + sym__terminator, + STATE(2676), 1, + aux_sym_data_relation_repeat1, + STATE(3434), 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, - [141545] = 5, - ACTIONS(59), 1, + [143401] = 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(3397), 2, + ACTIONS(5294), 1, + sym_identifier, + ACTIONS(5296), 1, + sym__terminator, + STATE(3450), 1, + sym_qualified_name, + STATE(3435), 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, - [141564] = 5, + [143424] = 7, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - STATE(3398), 2, + ACTIONS(2109), 1, + anon_sym_COMMA, + ACTIONS(2443), 1, + anon_sym_COLON, + STATE(3286), 1, + aux_sym_for_statement_repeat1, + STATE(3436), 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, - [141583] = 5, + [143447] = 7, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - STATE(3399), 2, + ACTIONS(2109), 1, + anon_sym_COMMA, + ACTIONS(2443), 1, + anon_sym_COLON, + STATE(3423), 1, + aux_sym_for_statement_repeat1, + STATE(3437), 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, - [141602] = 5, - ACTIONS(59), 1, + [143470] = 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(3400), 2, + ACTIONS(5298), 1, + sym_identifier, + ACTIONS(5300), 1, + aux_sym_buffer_definition_token3, + STATE(4392), 1, + sym_qualified_name, + STATE(3438), 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, - [141621] = 5, + [143493] = 7, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - STATE(3401), 2, + ACTIONS(5179), 1, + anon_sym_COMMA, + ACTIONS(5302), 1, + anon_sym_RPAREN, + STATE(3456), 1, + aux_sym_function_statement_repeat1, + STATE(3439), 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, - [141640] = 5, + [143516] = 7, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - STATE(3402), 2, + ACTIONS(2109), 1, + anon_sym_COMMA, + ACTIONS(4372), 1, + anon_sym_COLON, + STATE(3286), 1, + aux_sym_for_statement_repeat1, + STATE(3440), 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, - [141659] = 7, + [143539] = 7, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2105), 1, + ACTIONS(2109), 1, anon_sym_COMMA, - ACTIONS(2586), 1, + ACTIONS(4372), 1, anon_sym_COLON, - STATE(3387), 1, + STATE(3458), 1, aux_sym_for_statement_repeat1, - STATE(3403), 2, + STATE(3441), 2, sym_comment, sym_include, - [141682] = 5, + [143562] = 7, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - STATE(3404), 2, + ACTIONS(5256), 1, + aux_sym__block_terminator_token1, + STATE(1220), 1, + sym__block_terminator, + STATE(1383), 1, + sym__function_terminator, + STATE(3442), 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, - [141701] = 5, + [143585] = 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(2109), 1, + anon_sym_COMMA, + ACTIONS(4137), 1, + anon_sym_COLON, + STATE(3286), 1, + aux_sym_for_statement_repeat1, + STATE(3443), 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, - [141720] = 5, + [143608] = 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(2109), 1, + anon_sym_COMMA, + ACTIONS(4137), 1, + anon_sym_COLON, + STATE(3464), 1, + aux_sym_for_statement_repeat1, + STATE(3444), 2, + sym_comment, + sym_include, + [143631] = 7, + ACTIONS(59), 1, + anon_sym_SLASH_SLASH, + ACTIONS(61), 1, + anon_sym_SLASH_STAR, + ACTIONS(65), 1, + anon_sym_LBRACE, + ACTIONS(4004), 1, + anon_sym_COMMA, + ACTIONS(4338), 1, + aux_sym_data_relation_token2, + STATE(3472), 1, + aux_sym_data_relation_repeat1, + STATE(3445), 2, sym_comment, sym_include, - ACTIONS(2003), 3, - aux_sym__block_terminator_token1, - aux_sym_case_when_branch_token1, - aux_sym_case_otherwise_branch_token1, - [141739] = 5, + [143654] = 7, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - STATE(3407), 2, + ACTIONS(5179), 1, + anon_sym_COMMA, + ACTIONS(5304), 1, + anon_sym_RPAREN, + STATE(3475), 1, + aux_sym_function_statement_repeat1, + STATE(3446), 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, - [141758] = 5, + [143677] = 7, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - STATE(3408), 2, + ACTIONS(5179), 1, + anon_sym_COMMA, + ACTIONS(5306), 1, + anon_sym_RPAREN, + STATE(3395), 1, + aux_sym_function_statement_repeat1, + STATE(3447), 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, - [141777] = 5, + [143700] = 7, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - STATE(3409), 2, + ACTIONS(679), 1, + sym__namedot, + ACTIONS(5308), 1, + anon_sym_LPAREN, + STATE(336), 1, + aux_sym_qualified_name_repeat1, + STATE(3448), 2, sym_comment, sym_include, - ACTIONS(1515), 3, - aux_sym__block_terminator_token1, - aux_sym_case_when_branch_token1, - aux_sym_case_otherwise_branch_token1, - [141796] = 7, + [143723] = 7, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2105), 1, + ACTIONS(4004), 1, anon_sym_COMMA, - ACTIONS(2586), 1, - anon_sym_COLON, - STATE(3175), 1, - aux_sym_for_statement_repeat1, - STATE(3410), 2, + ACTIONS(4300), 1, + sym__terminator, + STATE(2676), 1, + aux_sym_data_relation_repeat1, + STATE(3449), 2, sym_comment, sym_include, - [141819] = 7, + [143746] = 7, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(4153), 1, - aux_sym_on_error_phrase_token1, - ACTIONS(5264), 1, - anon_sym_COLON, - STATE(4370), 1, - sym_on_stop_phrase, - STATE(3411), 2, + ACTIONS(4004), 1, + anon_sym_COMMA, + ACTIONS(4300), 1, + sym__terminator, + STATE(3479), 1, + aux_sym_data_relation_repeat1, + STATE(3450), 2, sym_comment, sym_include, - [141842] = 5, + [143769] = 7, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - STATE(3412), 2, + ACTIONS(679), 1, + sym__namedot, + ACTIONS(5310), 1, + sym__terminator, + STATE(336), 1, + aux_sym_qualified_name_repeat1, + STATE(3451), 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, - [141861] = 5, + [143792] = 7, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - STATE(3413), 2, + ACTIONS(5179), 1, + anon_sym_COMMA, + ACTIONS(5306), 1, + anon_sym_RPAREN, + STATE(3482), 1, + aux_sym_function_statement_repeat1, + STATE(3452), 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, - [141880] = 7, + [143815] = 7, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, @@ -158599,556 +160647,606 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, ACTIONS(679), 1, sym__namedot, - ACTIONS(5266), 1, + ACTIONS(5312), 1, sym__terminator, - STATE(329), 1, + STATE(336), 1, aux_sym_qualified_name_repeat1, - STATE(3414), 2, + STATE(3453), 2, sym_comment, sym_include, - [141903] = 7, - ACTIONS(59), 1, + [143838] = 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(2105), 1, - anon_sym_COMMA, - ACTIONS(3230), 1, - anon_sym_COLON, - STATE(3175), 1, - aux_sym_for_statement_repeat1, - STATE(3415), 2, + ACTIONS(5314), 1, + sym_identifier, + ACTIONS(5316), 1, + sym__terminator, + STATE(3483), 1, + sym_qualified_name, + STATE(3454), 2, sym_comment, sym_include, - [141926] = 5, + [143861] = 7, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - STATE(3416), 2, + ACTIONS(5179), 1, + anon_sym_COMMA, + ACTIONS(5318), 1, + anon_sym_RPAREN, + STATE(3395), 1, + aux_sym_function_statement_repeat1, + STATE(3455), 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, - [141945] = 5, + [143884] = 7, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - STATE(3417), 2, + ACTIONS(5179), 1, + anon_sym_COMMA, + ACTIONS(5320), 1, + anon_sym_RPAREN, + STATE(3395), 1, + aux_sym_function_statement_repeat1, + STATE(3456), 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, - [141964] = 5, - ACTIONS(59), 1, + [143907] = 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(3418), 2, + ACTIONS(5322), 1, + sym_identifier, + ACTIONS(5324), 1, + anon_sym_AMP, + ACTIONS(5326), 1, + sym__integer_literal, + STATE(3457), 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, - [141983] = 5, + [143930] = 7, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - STATE(3419), 2, + ACTIONS(2109), 1, + anon_sym_COMMA, + ACTIONS(5328), 1, + anon_sym_COLON, + STATE(3286), 1, + aux_sym_for_statement_repeat1, + STATE(3458), 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, - [142002] = 5, + [143953] = 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(2109), 1, + anon_sym_COMMA, + ACTIONS(5328), 1, + anon_sym_COLON, + STATE(3492), 1, + aux_sym_for_statement_repeat1, + STATE(3459), 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, - [142021] = 7, + [143976] = 7, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2105), 1, + ACTIONS(2109), 1, anon_sym_COMMA, - ACTIONS(2465), 1, + ACTIONS(5330), 1, anon_sym_COLON, - STATE(3175), 1, + STATE(3286), 1, aux_sym_for_statement_repeat1, - STATE(3421), 2, + STATE(3460), 2, sym_comment, sym_include, - [142044] = 5, + [143999] = 7, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - STATE(3422), 2, + ACTIONS(2109), 1, + anon_sym_COMMA, + ACTIONS(5332), 1, + anon_sym_COLON, + STATE(3460), 1, + aux_sym_for_statement_repeat1, + STATE(3461), 2, sym_comment, sym_include, - ACTIONS(1981), 3, - aux_sym__block_terminator_token1, - aux_sym_case_when_branch_token1, - aux_sym_case_otherwise_branch_token1, - [142063] = 5, + [144022] = 7, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - STATE(3423), 2, + ACTIONS(2109), 1, + anon_sym_COMMA, + ACTIONS(5332), 1, + anon_sym_COLON, + STATE(3286), 1, + aux_sym_for_statement_repeat1, + STATE(3462), 2, sym_comment, sym_include, - ACTIONS(1979), 3, - aux_sym__block_terminator_token1, - aux_sym_case_when_branch_token1, - aux_sym_case_otherwise_branch_token1, - [142082] = 7, + [144045] = 7, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2105), 1, + ACTIONS(2109), 1, anon_sym_COMMA, - ACTIONS(4179), 1, + ACTIONS(5334), 1, anon_sym_COLON, - STATE(3175), 1, + STATE(3286), 1, aux_sym_for_statement_repeat1, - STATE(3424), 2, + STATE(3463), 2, sym_comment, sym_include, - [142105] = 5, + [144068] = 7, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - STATE(3425), 2, + ACTIONS(2109), 1, + anon_sym_COMMA, + ACTIONS(4239), 1, + anon_sym_COLON, + STATE(3286), 1, + aux_sym_for_statement_repeat1, + STATE(3464), 2, sym_comment, sym_include, - ACTIONS(1977), 3, - aux_sym__block_terminator_token1, - aux_sym_case_when_branch_token1, - aux_sym_case_otherwise_branch_token1, - [142124] = 7, + [144091] = 7, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2105), 1, + ACTIONS(2109), 1, anon_sym_COMMA, - ACTIONS(2465), 1, + ACTIONS(4235), 1, anon_sym_COLON, - STATE(3391), 1, + STATE(3462), 1, aux_sym_for_statement_repeat1, - STATE(3426), 2, + STATE(3465), 2, sym_comment, sym_include, - [142147] = 7, + [144114] = 7, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2105), 1, + ACTIONS(2109), 1, anon_sym_COMMA, - ACTIONS(4179), 1, + ACTIONS(4235), 1, anon_sym_COLON, - STATE(3502), 1, + STATE(3286), 1, aux_sym_for_statement_repeat1, - STATE(3427), 2, + STATE(3466), 2, sym_comment, sym_include, - [142170] = 5, + [144137] = 7, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - STATE(3428), 2, + ACTIONS(2109), 1, + anon_sym_COMMA, + ACTIONS(5336), 1, + anon_sym_COLON, + STATE(3463), 1, + aux_sym_for_statement_repeat1, + STATE(3467), 2, sym_comment, sym_include, - ACTIONS(1975), 3, - aux_sym__block_terminator_token1, - aux_sym_case_when_branch_token1, - aux_sym_case_otherwise_branch_token1, - [142189] = 5, + [144160] = 7, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - STATE(3429), 2, + ACTIONS(2109), 1, + anon_sym_COMMA, + ACTIONS(5336), 1, + anon_sym_COLON, + STATE(3286), 1, + aux_sym_for_statement_repeat1, + STATE(3468), 2, sym_comment, sym_include, - ACTIONS(1973), 3, - aux_sym__block_terminator_token1, - aux_sym_case_when_branch_token1, - aux_sym_case_otherwise_branch_token1, - [142208] = 5, + [144183] = 7, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - STATE(3430), 2, + ACTIONS(2109), 1, + anon_sym_COMMA, + ACTIONS(4239), 1, + anon_sym_COLON, + STATE(3495), 1, + aux_sym_for_statement_repeat1, + STATE(3469), 2, sym_comment, sym_include, - ACTIONS(1971), 3, - aux_sym__block_terminator_token1, - aux_sym_case_when_branch_token1, - aux_sym_case_otherwise_branch_token1, - [142227] = 5, + [144206] = 7, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - STATE(3431), 2, + ACTIONS(2109), 1, + anon_sym_COMMA, + ACTIONS(4163), 1, + anon_sym_COLON, + STATE(3466), 1, + aux_sym_for_statement_repeat1, + STATE(3470), 2, sym_comment, sym_include, - ACTIONS(1967), 3, - aux_sym__block_terminator_token1, - aux_sym_case_when_branch_token1, - aux_sym_case_otherwise_branch_token1, - [142246] = 7, + [144229] = 7, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5120), 1, + ACTIONS(2109), 1, anon_sym_COMMA, - ACTIONS(5268), 1, - anon_sym_RPAREN, - STATE(3392), 1, - aux_sym_function_statement_repeat1, - STATE(3432), 2, + ACTIONS(4163), 1, + anon_sym_COLON, + STATE(3286), 1, + aux_sym_for_statement_repeat1, + STATE(3471), 2, sym_comment, sym_include, - [142269] = 7, + [144252] = 7, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5199), 1, - aux_sym__block_terminator_token1, - STATE(1198), 1, - sym__block_terminator, - STATE(1369), 1, - sym__function_terminator, - STATE(3433), 2, + ACTIONS(4004), 1, + anon_sym_COMMA, + ACTIONS(5338), 1, + aux_sym_data_relation_token2, + STATE(2676), 1, + aux_sym_data_relation_repeat1, + STATE(3472), 2, sym_comment, sym_include, - [142292] = 7, + [144275] = 7, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2105), 1, + ACTIONS(2109), 1, anon_sym_COMMA, - ACTIONS(4108), 1, + ACTIONS(4324), 1, anon_sym_COLON, - STATE(3175), 1, + STATE(3468), 1, aux_sym_for_statement_repeat1, - STATE(3434), 2, + STATE(3473), 2, sym_comment, sym_include, - [142315] = 5, + [144298] = 7, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - STATE(3435), 2, + ACTIONS(2109), 1, + anon_sym_COMMA, + ACTIONS(4324), 1, + anon_sym_COLON, + STATE(3286), 1, + aux_sym_for_statement_repeat1, + STATE(3474), 2, sym_comment, sym_include, - ACTIONS(1965), 3, - aux_sym__block_terminator_token1, - aux_sym_case_when_branch_token1, - aux_sym_case_otherwise_branch_token1, - [142334] = 7, + [144321] = 7, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2105), 1, + ACTIONS(5179), 1, anon_sym_COMMA, - ACTIONS(2570), 1, - anon_sym_COLON, - STATE(3410), 1, - aux_sym_for_statement_repeat1, - STATE(3436), 2, + ACTIONS(5340), 1, + anon_sym_RPAREN, + STATE(3395), 1, + aux_sym_function_statement_repeat1, + STATE(3475), 2, sym_comment, sym_include, - [142357] = 5, + [144344] = 7, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - STATE(3437), 2, + ACTIONS(5179), 1, + anon_sym_COMMA, + ACTIONS(5340), 1, + anon_sym_RPAREN, + STATE(3500), 1, + aux_sym_function_statement_repeat1, + STATE(3476), 2, sym_comment, sym_include, - ACTIONS(1963), 3, - aux_sym__block_terminator_token1, - aux_sym_case_when_branch_token1, - aux_sym_case_otherwise_branch_token1, - [142376] = 5, + [144367] = 7, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - STATE(3438), 2, + ACTIONS(2109), 1, + anon_sym_COMMA, + ACTIONS(3330), 1, + anon_sym_COLON, + STATE(3471), 1, + aux_sym_for_statement_repeat1, + STATE(3477), 2, sym_comment, sym_include, - ACTIONS(1961), 3, - aux_sym__block_terminator_token1, - aux_sym_case_when_branch_token1, - aux_sym_case_otherwise_branch_token1, - [142395] = 5, + [144390] = 7, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - STATE(3439), 2, + ACTIONS(2109), 1, + anon_sym_COMMA, + ACTIONS(3330), 1, + anon_sym_COLON, + STATE(3286), 1, + aux_sym_for_statement_repeat1, + STATE(3478), 2, sym_comment, sym_include, - ACTIONS(1959), 3, - aux_sym__block_terminator_token1, - aux_sym_case_when_branch_token1, - aux_sym_case_otherwise_branch_token1, - [142414] = 5, + [144413] = 7, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - STATE(3440), 2, + ACTIONS(4004), 1, + anon_sym_COMMA, + ACTIONS(4310), 1, + sym__terminator, + STATE(2676), 1, + aux_sym_data_relation_repeat1, + STATE(3479), 2, sym_comment, sym_include, - ACTIONS(1957), 3, - aux_sym__block_terminator_token1, - aux_sym_case_when_branch_token1, - aux_sym_case_otherwise_branch_token1, - [142433] = 5, + [144436] = 7, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - STATE(3441), 2, + ACTIONS(2109), 1, + anon_sym_COMMA, + ACTIONS(4157), 1, + anon_sym_COLON, + STATE(3474), 1, + aux_sym_for_statement_repeat1, + STATE(3480), 2, sym_comment, sym_include, - ACTIONS(1953), 3, - aux_sym__block_terminator_token1, - aux_sym_case_when_branch_token1, - aux_sym_case_otherwise_branch_token1, - [142452] = 7, + [144459] = 7, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2105), 1, + ACTIONS(2109), 1, anon_sym_COMMA, - ACTIONS(2570), 1, + ACTIONS(4157), 1, anon_sym_COLON, - STATE(3175), 1, + STATE(3286), 1, aux_sym_for_statement_repeat1, - STATE(3442), 2, + STATE(3481), 2, sym_comment, sym_include, - [142475] = 5, + [144482] = 7, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - STATE(3443), 2, + ACTIONS(5179), 1, + anon_sym_COMMA, + ACTIONS(5342), 1, + anon_sym_RPAREN, + STATE(3395), 1, + aux_sym_function_statement_repeat1, + STATE(3482), 2, sym_comment, sym_include, - ACTIONS(1951), 3, - aux_sym__block_terminator_token1, - aux_sym_case_when_branch_token1, - aux_sym_case_otherwise_branch_token1, - [142494] = 5, + [144505] = 7, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - STATE(3444), 2, + ACTIONS(4004), 1, + anon_sym_COMMA, + ACTIONS(4310), 1, + sym__terminator, + STATE(3503), 1, + aux_sym_data_relation_repeat1, + STATE(3483), 2, sym_comment, sym_include, - ACTIONS(1949), 3, - aux_sym__block_terminator_token1, - aux_sym_case_when_branch_token1, - aux_sym_case_otherwise_branch_token1, - [142513] = 5, + [144528] = 7, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - STATE(3445), 2, + ACTIONS(2109), 1, + anon_sym_COMMA, + ACTIONS(2594), 1, + anon_sym_COLON, + STATE(3478), 1, + aux_sym_for_statement_repeat1, + STATE(3484), 2, sym_comment, sym_include, - ACTIONS(1877), 3, - aux_sym__block_terminator_token1, - aux_sym_case_when_branch_token1, - aux_sym_case_otherwise_branch_token1, - [142532] = 5, + [144551] = 7, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - STATE(3446), 2, + ACTIONS(2109), 1, + anon_sym_COMMA, + ACTIONS(2594), 1, + anon_sym_COLON, + STATE(3286), 1, + aux_sym_for_statement_repeat1, + STATE(3485), 2, sym_comment, sym_include, - ACTIONS(1945), 3, - aux_sym__block_terminator_token1, - aux_sym_case_when_branch_token1, - aux_sym_case_otherwise_branch_token1, - [142551] = 5, + [144574] = 7, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - STATE(3447), 2, + ACTIONS(2109), 1, + anon_sym_COMMA, + ACTIONS(3326), 1, + anon_sym_COLON, + STATE(3481), 1, + aux_sym_for_statement_repeat1, + STATE(3486), 2, sym_comment, sym_include, - ACTIONS(1943), 3, - aux_sym__block_terminator_token1, - aux_sym_case_when_branch_token1, - aux_sym_case_otherwise_branch_token1, - [142570] = 7, + [144597] = 7, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2105), 1, + ACTIONS(2109), 1, anon_sym_COMMA, - ACTIONS(4108), 1, + ACTIONS(3326), 1, anon_sym_COLON, - STATE(3509), 1, + STATE(3286), 1, aux_sym_for_statement_repeat1, - STATE(3448), 2, + STATE(3487), 2, sym_comment, sym_include, - [142593] = 7, + [144620] = 7, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(4038), 1, + ACTIONS(2109), 1, anon_sym_COMMA, - ACTIONS(4165), 1, - aux_sym_data_relation_token2, - STATE(3512), 1, - aux_sym_data_relation_repeat1, - STATE(3449), 2, + ACTIONS(2582), 1, + anon_sym_COLON, + STATE(3485), 1, + aux_sym_for_statement_repeat1, + STATE(3488), 2, sym_comment, sym_include, - [142616] = 5, + [144643] = 7, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - STATE(3450), 2, + ACTIONS(2109), 1, + anon_sym_COMMA, + ACTIONS(2582), 1, + anon_sym_COLON, + STATE(3286), 1, + aux_sym_for_statement_repeat1, + STATE(3489), 2, sym_comment, sym_include, - ACTIONS(1941), 3, - aux_sym__block_terminator_token1, - aux_sym_case_when_branch_token1, - aux_sym_case_otherwise_branch_token1, - [142635] = 5, + [144666] = 7, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - STATE(3451), 2, + ACTIONS(5179), 1, + anon_sym_COMMA, + ACTIONS(5344), 1, + anon_sym_RPAREN, + STATE(3395), 1, + aux_sym_function_statement_repeat1, + STATE(3490), 2, sym_comment, sym_include, - ACTIONS(1935), 3, - aux_sym__block_terminator_token1, - aux_sym_case_when_branch_token1, - aux_sym_case_otherwise_branch_token1, - [142654] = 7, + [144689] = 7, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, @@ -159157,114 +161255,126 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, ACTIONS(679), 1, sym__namedot, - ACTIONS(5270), 1, + ACTIONS(5346), 1, sym__terminator, - STATE(329), 1, + STATE(336), 1, aux_sym_qualified_name_repeat1, - STATE(3452), 2, + STATE(3491), 2, sym_comment, sym_include, - [142677] = 7, + [144712] = 7, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2105), 1, + ACTIONS(2109), 1, anon_sym_COMMA, - ACTIONS(2423), 1, + ACTIONS(5348), 1, anon_sym_COLON, - STATE(3175), 1, + STATE(3286), 1, aux_sym_for_statement_repeat1, - STATE(3453), 2, + STATE(3492), 2, sym_comment, sym_include, - [142700] = 5, + [144735] = 7, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - STATE(3454), 2, + ACTIONS(2109), 1, + anon_sym_COMMA, + ACTIONS(2580), 1, + anon_sym_COLON, + STATE(3487), 1, + aux_sym_for_statement_repeat1, + STATE(3493), 2, sym_comment, sym_include, - ACTIONS(1925), 3, - aux_sym__block_terminator_token1, - aux_sym_case_when_branch_token1, - aux_sym_case_otherwise_branch_token1, - [142719] = 5, + [144758] = 7, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - STATE(3455), 2, + ACTIONS(2109), 1, + anon_sym_COMMA, + ACTIONS(2580), 1, + anon_sym_COLON, + STATE(3286), 1, + aux_sym_for_statement_repeat1, + STATE(3494), 2, sym_comment, sym_include, - ACTIONS(1921), 3, - aux_sym__block_terminator_token1, - aux_sym_case_when_branch_token1, - aux_sym_case_otherwise_branch_token1, - [142738] = 5, + [144781] = 7, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - STATE(3456), 2, + ACTIONS(2109), 1, + anon_sym_COMMA, + ACTIONS(5350), 1, + anon_sym_COLON, + STATE(3286), 1, + aux_sym_for_statement_repeat1, + STATE(3495), 2, sym_comment, sym_include, - ACTIONS(1913), 3, - aux_sym__block_terminator_token1, - aux_sym_case_when_branch_token1, - aux_sym_case_otherwise_branch_token1, - [142757] = 5, + [144804] = 7, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - STATE(3457), 2, + ACTIONS(2109), 1, + anon_sym_COMMA, + ACTIONS(5350), 1, + anon_sym_COLON, + STATE(3511), 1, + aux_sym_for_statement_repeat1, + STATE(3496), 2, sym_comment, sym_include, - ACTIONS(1905), 3, - aux_sym__block_terminator_token1, - aux_sym_case_when_branch_token1, - aux_sym_case_otherwise_branch_token1, - [142776] = 5, - ACTIONS(59), 1, + [144827] = 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(3458), 2, + ACTIONS(5352), 1, + sym_identifier, + ACTIONS(5354), 1, + anon_sym_RPAREN, + STATE(3513), 1, + sym_qualified_name, + STATE(3497), 2, sym_comment, sym_include, - ACTIONS(1901), 3, - aux_sym__block_terminator_token1, - aux_sym_case_when_branch_token1, - aux_sym_case_otherwise_branch_token1, - [142795] = 5, + [144850] = 7, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - STATE(3459), 2, + ACTIONS(2109), 1, + anon_sym_COMMA, + ACTIONS(2451), 1, + anon_sym_COLON, + STATE(3286), 1, + aux_sym_for_statement_repeat1, + STATE(3498), 2, sym_comment, sym_include, - ACTIONS(1897), 3, - aux_sym__block_terminator_token1, - aux_sym_case_when_branch_token1, - aux_sym_case_otherwise_branch_token1, - [142814] = 7, + [144873] = 7, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, @@ -159273,456 +161383,475 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, ACTIONS(679), 1, sym__namedot, - ACTIONS(5272), 1, + ACTIONS(5356), 1, sym__terminator, - STATE(329), 1, + STATE(336), 1, aux_sym_qualified_name_repeat1, - STATE(3460), 2, + STATE(3499), 2, sym_comment, sym_include, - [142837] = 7, + [144896] = 7, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5120), 1, + ACTIONS(5179), 1, anon_sym_COMMA, - ACTIONS(5274), 1, + ACTIONS(5358), 1, anon_sym_RPAREN, - STATE(3513), 1, + STATE(3395), 1, aux_sym_function_statement_repeat1, - STATE(3461), 2, + STATE(3500), 2, sym_comment, sym_include, - [142860] = 5, + [144919] = 7, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - STATE(3462), 2, + ACTIONS(2109), 1, + anon_sym_COMMA, + ACTIONS(2451), 1, + anon_sym_COLON, + STATE(3489), 1, + aux_sym_for_statement_repeat1, + STATE(3501), 2, sym_comment, sym_include, - ACTIONS(1893), 3, - aux_sym__block_terminator_token1, - aux_sym_case_when_branch_token1, - aux_sym_case_otherwise_branch_token1, - [142879] = 7, + [144942] = 7, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5120), 1, + ACTIONS(5179), 1, anon_sym_COMMA, - ACTIONS(5276), 1, + ACTIONS(5360), 1, anon_sym_RPAREN, - STATE(3314), 1, + STATE(3490), 1, aux_sym_function_statement_repeat1, - STATE(3463), 2, + STATE(3502), 2, sym_comment, sym_include, - [142902] = 5, + [144965] = 7, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - STATE(3464), 2, + ACTIONS(4004), 1, + anon_sym_COMMA, + ACTIONS(5362), 1, + sym__terminator, + STATE(2676), 1, + aux_sym_data_relation_repeat1, + STATE(3503), 2, sym_comment, sym_include, - ACTIONS(1588), 3, - aux_sym__block_terminator_token1, - aux_sym_case_when_branch_token1, - aux_sym_case_otherwise_branch_token1, - [142921] = 5, + [144988] = 7, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - STATE(3465), 2, + ACTIONS(5179), 1, + anon_sym_COMMA, + ACTIONS(5364), 1, + anon_sym_RPAREN, + STATE(3395), 1, + aux_sym_function_statement_repeat1, + STATE(3504), 2, sym_comment, sym_include, - ACTIONS(1557), 3, - aux_sym__block_terminator_token1, - aux_sym_case_when_branch_token1, - aux_sym_case_otherwise_branch_token1, - [142940] = 7, + [145011] = 7, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(4038), 1, + ACTIONS(2109), 1, anon_sym_COMMA, - ACTIONS(4167), 1, - sym__terminator, - STATE(2576), 1, - aux_sym_data_relation_repeat1, - STATE(3466), 2, + ACTIONS(2584), 1, + anon_sym_COLON, + STATE(3494), 1, + aux_sym_for_statement_repeat1, + STATE(3505), 2, sym_comment, sym_include, - [142963] = 5, + [145034] = 7, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - STATE(3467), 2, + ACTIONS(2109), 1, + anon_sym_COMMA, + ACTIONS(2584), 1, + anon_sym_COLON, + STATE(3286), 1, + aux_sym_for_statement_repeat1, + STATE(3506), 2, sym_comment, sym_include, - ACTIONS(1740), 3, - aux_sym__block_terminator_token1, - aux_sym_case_when_branch_token1, - aux_sym_case_otherwise_branch_token1, - [142982] = 7, + [145057] = 7, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2105), 1, + ACTIONS(2109), 1, anon_sym_COMMA, ACTIONS(2423), 1, anon_sym_COLON, - STATE(3421), 1, + STATE(3286), 1, aux_sym_for_statement_repeat1, - STATE(3468), 2, + STATE(3507), 2, sym_comment, sym_include, - [143005] = 7, + [145080] = 7, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(4038), 1, + ACTIONS(2109), 1, anon_sym_COMMA, - ACTIONS(4167), 1, - sym__terminator, - STATE(3515), 1, - aux_sym_data_relation_repeat1, - STATE(3469), 2, + ACTIONS(2423), 1, + anon_sym_COLON, + STATE(3498), 1, + aux_sym_for_statement_repeat1, + STATE(3508), 2, sym_comment, sym_include, - [143028] = 5, - ACTIONS(59), 1, + [145103] = 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(3470), 2, + ACTIONS(351), 1, + anon_sym_LPAREN, + ACTIONS(5366), 1, + sym_identifier, + STATE(45), 1, + sym_parenthesized_expression, + STATE(3509), 2, sym_comment, sym_include, - ACTIONS(1584), 3, - aux_sym__block_terminator_token1, - aux_sym_case_when_branch_token1, - aux_sym_case_otherwise_branch_token1, - [143047] = 5, - ACTIONS(59), 1, + [145126] = 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(3471), 2, + ACTIONS(4985), 1, + sym_identifier, + ACTIONS(4987), 1, + aux_sym_input_expression_token2, + STATE(46), 1, + sym_qualified_name, + STATE(3510), 2, sym_comment, sym_include, - ACTIONS(1865), 3, - aux_sym__block_terminator_token1, - aux_sym_case_when_branch_token1, - aux_sym_case_otherwise_branch_token1, - [143066] = 5, + [145149] = 7, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - STATE(3472), 2, + ACTIONS(2109), 1, + anon_sym_COMMA, + ACTIONS(5368), 1, + anon_sym_COLON, + STATE(3286), 1, + aux_sym_for_statement_repeat1, + STATE(3511), 2, sym_comment, sym_include, - ACTIONS(1859), 3, - aux_sym__block_terminator_token1, - aux_sym_case_when_branch_token1, - aux_sym_case_otherwise_branch_token1, - [143085] = 7, + [145172] = 7, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_LBRACE, + ACTIONS(5103), 1, + anon_sym_, + ACTIONS(5370), 1, + anon_sym_RPAREN, + STATE(3338), 1, + aux_sym_accumulate_statement_repeat1, + STATE(3512), 2, + sym_comment, + sym_include, + [145195] = 7, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(3798), 1, - aux_sym__block_terminator_token1, - STATE(3444), 1, - sym__case_terminator, - STATE(3476), 1, - sym__block_terminator, - STATE(3473), 2, + ACTIONS(4004), 1, + anon_sym_COMMA, + ACTIONS(4463), 1, + anon_sym_RPAREN, + STATE(3533), 1, + aux_sym_data_relation_repeat1, + STATE(3513), 2, sym_comment, sym_include, - [143108] = 7, + [145218] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(5020), 1, - anon_sym_, - ACTIONS(5278), 1, + ACTIONS(5372), 1, + sym_identifier, + ACTIONS(5374), 1, anon_sym_RPAREN, - STATE(3243), 1, - aux_sym_accumulate_statement_repeat1, - STATE(3474), 2, + STATE(3535), 1, + sym_qualified_name, + STATE(3514), 2, sym_comment, sym_include, - [143131] = 5, - ACTIONS(59), 1, + [145241] = 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(3475), 2, + ACTIONS(81), 1, + sym_identifier, + ACTIONS(5376), 1, + sym__namedot, + STATE(3516), 1, + aux_sym_qualified_name_repeat1, + STATE(3515), 2, sym_comment, sym_include, - ACTIONS(1855), 3, - aux_sym__block_terminator_token1, - aux_sym_case_when_branch_token1, - aux_sym_case_otherwise_branch_token1, - [143150] = 5, - ACTIONS(59), 1, + [145264] = 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(3476), 2, + ACTIONS(100), 1, + sym_identifier, + ACTIONS(5378), 1, + sym__namedot, + STATE(3516), 3, sym_comment, sym_include, - ACTIONS(1849), 3, - aux_sym__block_terminator_token1, - aux_sym_case_when_branch_token1, - aux_sym_case_otherwise_branch_token1, - [143169] = 7, + aux_sym_qualified_name_repeat1, + [145285] = 7, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5120), 1, + ACTIONS(5179), 1, anon_sym_COMMA, - ACTIONS(5276), 1, + ACTIONS(5342), 1, anon_sym_RPAREN, - STATE(3521), 1, + STATE(3504), 1, aux_sym_function_statement_repeat1, - STATE(3477), 2, + STATE(3517), 2, sym_comment, sym_include, - [143192] = 5, + [145308] = 7, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - STATE(3478), 2, - sym_comment, - sym_include, - ACTIONS(1843), 3, - aux_sym__block_terminator_token1, - aux_sym_case_when_branch_token1, - aux_sym_case_otherwise_branch_token1, - [143211] = 7, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - ACTIONS(7), 1, - anon_sym_LBRACE, - ACTIONS(5280), 1, - sym_identifier, - ACTIONS(5282), 1, - sym__terminator, - STATE(3523), 1, - sym_qualified_name, - STATE(3479), 2, + ACTIONS(2109), 1, + anon_sym_COMMA, + ACTIONS(2461), 1, + anon_sym_COLON, + STATE(3286), 1, + aux_sym_for_statement_repeat1, + STATE(3518), 2, sym_comment, sym_include, - [143234] = 7, + [145331] = 7, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(4153), 1, - aux_sym_on_error_phrase_token1, - ACTIONS(4721), 1, + ACTIONS(2109), 1, + anon_sym_COMMA, + ACTIONS(2461), 1, anon_sym_COLON, - STATE(4403), 1, - sym_on_stop_phrase, - STATE(3480), 2, + STATE(3506), 1, + aux_sym_for_statement_repeat1, + STATE(3519), 2, sym_comment, sym_include, - [143257] = 5, + [145354] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - STATE(3481), 2, + STATE(3520), 2, sym_comment, sym_include, - ACTIONS(1833), 3, + ACTIONS(2018), 3, aux_sym__block_terminator_token1, aux_sym_case_when_branch_token1, aux_sym_case_otherwise_branch_token1, - [143276] = 5, + [145373] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - STATE(3482), 2, + STATE(3521), 2, sym_comment, sym_include, - ACTIONS(1819), 3, + ACTIONS(2012), 3, aux_sym__block_terminator_token1, aux_sym_case_when_branch_token1, aux_sym_case_otherwise_branch_token1, - [143295] = 7, - ACTIONS(59), 1, + [145392] = 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(2105), 1, - anon_sym_COMMA, - ACTIONS(2453), 1, - anon_sym_COLON, - STATE(3175), 1, - aux_sym_for_statement_repeat1, - STATE(3483), 2, + ACTIONS(5381), 1, + sym_identifier, + ACTIONS(5383), 1, + aux_sym_buffer_definition_token3, + STATE(4306), 1, + sym_qualified_name, + STATE(3522), 2, sym_comment, sym_include, - [143318] = 5, + [145415] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - STATE(3484), 2, + STATE(3523), 2, sym_comment, sym_include, - ACTIONS(1809), 3, + ACTIONS(2036), 3, aux_sym__block_terminator_token1, aux_sym_case_when_branch_token1, aux_sym_case_otherwise_branch_token1, - [143337] = 5, + [145434] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - STATE(3485), 2, + STATE(3524), 2, sym_comment, sym_include, - ACTIONS(1805), 3, + ACTIONS(2042), 3, aux_sym__block_terminator_token1, aux_sym_case_when_branch_token1, aux_sym_case_otherwise_branch_token1, - [143356] = 5, + [145453] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - STATE(3486), 2, + STATE(3525), 2, sym_comment, sym_include, - ACTIONS(1801), 3, + ACTIONS(2051), 3, aux_sym__block_terminator_token1, aux_sym_case_when_branch_token1, aux_sym_case_otherwise_branch_token1, - [143375] = 5, + [145472] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - STATE(3487), 2, + STATE(3526), 2, sym_comment, sym_include, - ACTIONS(1797), 3, + ACTIONS(2055), 3, aux_sym__block_terminator_token1, aux_sym_case_when_branch_token1, aux_sym_case_otherwise_branch_token1, - [143394] = 5, + [145491] = 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(3527), 2, sym_comment, sym_include, - ACTIONS(1754), 3, + ACTIONS(2059), 3, aux_sym__block_terminator_token1, aux_sym_case_when_branch_token1, aux_sym_case_otherwise_branch_token1, - [143413] = 5, + [145510] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - STATE(3489), 2, + STATE(3528), 2, sym_comment, sym_include, - ACTIONS(1750), 3, + ACTIONS(2061), 3, aux_sym__block_terminator_token1, aux_sym_case_when_branch_token1, aux_sym_case_otherwise_branch_token1, - [143432] = 5, + [145529] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - STATE(3490), 2, + STATE(3529), 2, sym_comment, sym_include, - ACTIONS(1746), 3, + ACTIONS(2063), 3, aux_sym__block_terminator_token1, aux_sym_case_when_branch_token1, aux_sym_case_otherwise_branch_token1, - [143451] = 7, + [145548] = 7, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, @@ -159731,24327 +161860,25030 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, ACTIONS(679), 1, sym__namedot, - ACTIONS(5284), 1, + ACTIONS(5385), 1, sym__terminator, - STATE(329), 1, + STATE(336), 1, aux_sym_qualified_name_repeat1, - STATE(3491), 2, + STATE(3530), 2, sym_comment, sym_include, - [143474] = 7, - ACTIONS(59), 1, + [145571] = 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(2105), 1, - anon_sym_COMMA, - ACTIONS(2453), 1, - anon_sym_COLON, - STATE(3442), 1, - aux_sym_for_statement_repeat1, - STATE(3492), 2, + ACTIONS(5103), 1, + anon_sym_, + ACTIONS(5387), 1, + anon_sym_RPAREN, + STATE(3512), 1, + aux_sym_accumulate_statement_repeat1, + STATE(3531), 2, sym_comment, sym_include, - [143497] = 5, + [145594] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - STATE(3493), 2, + STATE(3532), 2, sym_comment, sym_include, - ACTIONS(1730), 3, + ACTIONS(2044), 3, aux_sym__block_terminator_token1, aux_sym_case_when_branch_token1, aux_sym_case_otherwise_branch_token1, - [143516] = 7, - ACTIONS(3), 1, + [145613] = 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(5286), 1, - sym_identifier, - ACTIONS(5288), 1, - aux_sym_buffer_definition_token3, - STATE(4103), 1, - sym_qualified_name, - STATE(3494), 2, + ACTIONS(4004), 1, + anon_sym_COMMA, + ACTIONS(4503), 1, + anon_sym_RPAREN, + STATE(2676), 1, + aux_sym_data_relation_repeat1, + STATE(3533), 2, sym_comment, sym_include, - [143539] = 5, + [145636] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - STATE(3495), 2, + STATE(3534), 2, sym_comment, sym_include, - ACTIONS(1724), 3, + ACTIONS(1938), 3, aux_sym__block_terminator_token1, aux_sym_case_when_branch_token1, aux_sym_case_otherwise_branch_token1, - [143558] = 7, + [145655] = 7, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5120), 1, + ACTIONS(4004), 1, anon_sym_COMMA, - ACTIONS(5290), 1, + ACTIONS(4503), 1, anon_sym_RPAREN, - STATE(3314), 1, - aux_sym_function_statement_repeat1, - STATE(3496), 2, + STATE(3541), 1, + aux_sym_data_relation_repeat1, + STATE(3535), 2, sym_comment, sym_include, - [143581] = 5, + [145678] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - STATE(3497), 2, + STATE(3536), 2, sym_comment, sym_include, - ACTIONS(1718), 3, + ACTIONS(1627), 3, aux_sym__block_terminator_token1, aux_sym_case_when_branch_token1, aux_sym_case_otherwise_branch_token1, - [143600] = 7, - ACTIONS(3), 1, + [145697] = 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(5020), 1, - anon_sym_, - ACTIONS(5292), 1, - anon_sym_RPAREN, - STATE(3474), 1, - aux_sym_accumulate_statement_repeat1, - STATE(3498), 2, + ACTIONS(2109), 1, + anon_sym_COMMA, + ACTIONS(2437), 1, + anon_sym_COLON, + STATE(3286), 1, + aux_sym_for_statement_repeat1, + STATE(3537), 2, sym_comment, sym_include, - [143623] = 5, + [145720] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - STATE(3499), 2, + STATE(3538), 2, sym_comment, sym_include, - ACTIONS(1714), 3, + ACTIONS(1595), 3, aux_sym__block_terminator_token1, aux_sym_case_when_branch_token1, aux_sym_case_otherwise_branch_token1, - [143642] = 5, + [145739] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - STATE(3500), 2, + STATE(3539), 2, sym_comment, sym_include, - ACTIONS(1688), 3, + ACTIONS(1836), 3, aux_sym__block_terminator_token1, aux_sym_case_when_branch_token1, aux_sym_case_otherwise_branch_token1, - [143661] = 5, + [145758] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - STATE(3501), 2, + STATE(3540), 2, sym_comment, sym_include, - ACTIONS(1684), 3, + ACTIONS(1904), 3, aux_sym__block_terminator_token1, aux_sym_case_when_branch_token1, aux_sym_case_otherwise_branch_token1, - [143680] = 7, + [145777] = 7, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2105), 1, + ACTIONS(4004), 1, anon_sym_COMMA, - ACTIONS(5294), 1, - anon_sym_COLON, - STATE(3175), 1, - aux_sym_for_statement_repeat1, - STATE(3502), 2, + ACTIONS(5389), 1, + anon_sym_RPAREN, + STATE(2676), 1, + aux_sym_data_relation_repeat1, + STATE(3541), 2, sym_comment, sym_include, - [143703] = 5, + [145800] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - STATE(3503), 2, + STATE(3542), 2, sym_comment, sym_include, - ACTIONS(1658), 3, + ACTIONS(1934), 3, aux_sym__block_terminator_token1, aux_sym_case_when_branch_token1, aux_sym_case_otherwise_branch_token1, - [143722] = 5, + [145819] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - STATE(3504), 2, + STATE(3543), 2, sym_comment, sym_include, - ACTIONS(1636), 3, + ACTIONS(1990), 3, aux_sym__block_terminator_token1, aux_sym_case_when_branch_token1, aux_sym_case_otherwise_branch_token1, - [143741] = 7, + [145838] = 7, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2105), 1, + ACTIONS(2109), 1, anon_sym_COMMA, - ACTIONS(5294), 1, + ACTIONS(2437), 1, anon_sym_COLON, - STATE(3529), 1, + STATE(3518), 1, aux_sym_for_statement_repeat1, - STATE(3505), 2, + STATE(3544), 2, sym_comment, sym_include, - [143764] = 5, + [145861] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - STATE(3506), 2, + STATE(3545), 2, sym_comment, sym_include, - ACTIONS(1628), 3, + ACTIONS(2038), 3, aux_sym__block_terminator_token1, aux_sym_case_when_branch_token1, aux_sym_case_otherwise_branch_token1, - [143783] = 5, + [145880] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - STATE(3507), 2, + STATE(3546), 2, sym_comment, sym_include, - ACTIONS(1624), 3, + ACTIONS(2069), 3, aux_sym__block_terminator_token1, aux_sym_case_when_branch_token1, aux_sym_case_otherwise_branch_token1, - [143802] = 5, + [145899] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - STATE(3508), 2, + STATE(3547), 2, sym_comment, sym_include, - ACTIONS(1889), 3, + ACTIONS(1984), 3, aux_sym__block_terminator_token1, aux_sym_case_when_branch_token1, aux_sym_case_otherwise_branch_token1, - [143821] = 7, + [145918] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2105), 1, - anon_sym_COMMA, - ACTIONS(4304), 1, - anon_sym_COLON, - STATE(3175), 1, - aux_sym_for_statement_repeat1, - STATE(3509), 2, + STATE(3548), 2, sym_comment, sym_include, - [143844] = 7, + ACTIONS(2040), 3, + aux_sym__block_terminator_token1, + aux_sym_case_when_branch_token1, + aux_sym_case_otherwise_branch_token1, + [145937] = 7, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(4153), 1, - aux_sym_on_error_phrase_token1, - ACTIONS(4267), 1, - anon_sym_COLON, - STATE(4445), 1, - sym_on_stop_phrase, - STATE(3510), 2, + ACTIONS(3916), 1, + aux_sym__block_terminator_token1, + STATE(3617), 1, + sym__case_terminator, + STATE(3648), 1, + sym__block_terminator, + STATE(3549), 2, + sym_comment, + sym_include, + [145960] = 7, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_LBRACE, + ACTIONS(5391), 1, + sym_identifier, + ACTIONS(5393), 1, + aux_sym_buffer_definition_token3, + STATE(4415), 1, + sym_qualified_name, + STATE(3550), 2, sym_comment, sym_include, - [143867] = 7, + [145983] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2105), 1, - anon_sym_COMMA, - ACTIONS(2443), 1, - anon_sym_COLON, - STATE(3175), 1, - aux_sym_for_statement_repeat1, - STATE(3511), 2, + STATE(3551), 2, sym_comment, sym_include, - [143890] = 7, + ACTIONS(1609), 3, + aux_sym__block_terminator_token1, + aux_sym_case_when_branch_token1, + aux_sym_case_otherwise_branch_token1, + [146002] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(4038), 1, - anon_sym_COMMA, - ACTIONS(5296), 1, - aux_sym_data_relation_token2, - STATE(2576), 1, - aux_sym_data_relation_repeat1, - STATE(3512), 2, + ACTIONS(5395), 1, + aux_sym__block_terminator_token1, + STATE(1278), 2, + sym__block_terminator, + sym__procedure_terminator, + STATE(3552), 2, sym_comment, sym_include, - [143913] = 7, + [146023] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5120), 1, - anon_sym_COMMA, - ACTIONS(5298), 1, - anon_sym_RPAREN, - STATE(3314), 1, - aux_sym_function_statement_repeat1, - STATE(3513), 2, + STATE(3553), 2, sym_comment, sym_include, - [143936] = 7, + ACTIONS(1517), 3, + aux_sym__block_terminator_token1, + aux_sym_case_when_branch_token1, + aux_sym_case_otherwise_branch_token1, + [146042] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5120), 1, - anon_sym_COMMA, - ACTIONS(5298), 1, - anon_sym_RPAREN, - STATE(3537), 1, - aux_sym_function_statement_repeat1, - STATE(3514), 2, + STATE(3554), 2, sym_comment, sym_include, - [143959] = 7, + ACTIONS(1521), 3, + aux_sym__block_terminator_token1, + aux_sym_case_when_branch_token1, + aux_sym_case_otherwise_branch_token1, + [146061] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(4038), 1, - anon_sym_COMMA, - ACTIONS(4338), 1, - sym__terminator, - STATE(2576), 1, - aux_sym_data_relation_repeat1, - STATE(3515), 2, + STATE(3555), 2, + sym_comment, + sym_include, + ACTIONS(1525), 3, + aux_sym__block_terminator_token1, + aux_sym_case_when_branch_token1, + aux_sym_case_otherwise_branch_token1, + [146080] = 7, + ACTIONS(59), 1, + anon_sym_SLASH_SLASH, + ACTIONS(61), 1, + anon_sym_SLASH_STAR, + ACTIONS(65), 1, + anon_sym_LBRACE, + ACTIONS(3958), 1, + aux_sym__block_terminator_token1, + STATE(1263), 1, + sym__case_terminator, + STATE(1410), 1, + sym__block_terminator, + STATE(3556), 2, + sym_comment, + sym_include, + [146103] = 6, + ACTIONS(59), 1, + anon_sym_SLASH_SLASH, + ACTIONS(61), 1, + anon_sym_SLASH_STAR, + ACTIONS(65), 1, + anon_sym_LBRACE, + ACTIONS(5395), 1, + aux_sym__block_terminator_token1, + STATE(1157), 2, + sym__block_terminator, + sym__procedure_terminator, + STATE(3557), 2, + sym_comment, + sym_include, + [146124] = 5, + ACTIONS(59), 1, + anon_sym_SLASH_SLASH, + ACTIONS(61), 1, + anon_sym_SLASH_STAR, + ACTIONS(65), 1, + anon_sym_LBRACE, + STATE(3558), 2, + sym_comment, + sym_include, + ACTIONS(1529), 3, + aux_sym__block_terminator_token1, + aux_sym_case_when_branch_token1, + aux_sym_case_otherwise_branch_token1, + [146143] = 5, + ACTIONS(59), 1, + anon_sym_SLASH_SLASH, + ACTIONS(61), 1, + anon_sym_SLASH_STAR, + ACTIONS(65), 1, + anon_sym_LBRACE, + STATE(3559), 2, + sym_comment, + sym_include, + ACTIONS(1533), 3, + aux_sym__block_terminator_token1, + aux_sym_case_when_branch_token1, + aux_sym_case_otherwise_branch_token1, + [146162] = 5, + ACTIONS(59), 1, + anon_sym_SLASH_SLASH, + ACTIONS(61), 1, + anon_sym_SLASH_STAR, + ACTIONS(65), 1, + anon_sym_LBRACE, + STATE(3560), 2, sym_comment, sym_include, - [143982] = 7, + ACTIONS(1539), 3, + aux_sym__block_terminator_token1, + aux_sym_case_when_branch_token1, + aux_sym_case_otherwise_branch_token1, + [146181] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2105), 1, - anon_sym_COMMA, - ACTIONS(2443), 1, - anon_sym_COLON, - STATE(3483), 1, - aux_sym_for_statement_repeat1, - STATE(3516), 2, + STATE(3561), 2, sym_comment, sym_include, - [144005] = 7, + ACTIONS(1543), 3, + aux_sym__block_terminator_token1, + aux_sym_case_when_branch_token1, + aux_sym_case_otherwise_branch_token1, + [146200] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(5300), 1, + ACTIONS(2341), 1, sym_identifier, - ACTIONS(5302), 1, - aux_sym_buffer_definition_token3, - STATE(4134), 1, - sym_qualified_name, - STATE(3517), 2, + ACTIONS(5376), 1, + sym__namedot, + STATE(3515), 1, + aux_sym_qualified_name_repeat1, + STATE(3562), 2, sym_comment, sym_include, - [144028] = 7, + [146223] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(3774), 1, - aux_sym__block_terminator_token1, - STATE(1011), 1, - sym__case_terminator, - STATE(1043), 1, - sym__block_terminator, - STATE(3518), 2, + STATE(3563), 2, sym_comment, sym_include, - [144051] = 5, - ACTIONS(59), 1, + ACTIONS(1547), 3, + aux_sym__block_terminator_token1, + aux_sym_case_when_branch_token1, + aux_sym_case_otherwise_branch_token1, + [146242] = 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(3519), 2, + ACTIONS(5397), 1, + sym_identifier, + ACTIONS(4707), 2, + sym__terminator, + anon_sym_COLON, + STATE(3564), 2, sym_comment, sym_include, - ACTIONS(2158), 3, - aux_sym_buffer_definition_token2, - aux_sym_repeat_statement_token1, - aux_sym_do_block_token1, - [144070] = 7, + [146263] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(3796), 1, - aux_sym__block_terminator_token1, - STATE(988), 1, - sym__block_terminator, - STATE(1035), 1, - sym__case_terminator, - STATE(3520), 2, + STATE(3565), 2, sym_comment, sym_include, - [144093] = 7, - ACTIONS(59), 1, + ACTIONS(1551), 3, + aux_sym__block_terminator_token1, + aux_sym_case_when_branch_token1, + aux_sym_case_otherwise_branch_token1, + [146282] = 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(5120), 1, + ACTIONS(5399), 1, + sym_identifier, + ACTIONS(5173), 2, anon_sym_COMMA, - ACTIONS(5304), 1, - anon_sym_RPAREN, - STATE(3314), 1, - aux_sym_function_statement_repeat1, - STATE(3521), 2, + anon_sym_COLON, + STATE(3566), 2, sym_comment, sym_include, - [144116] = 5, + [146303] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - STATE(3522), 2, + STATE(3567), 2, sym_comment, sym_include, - ACTIONS(1563), 3, + ACTIONS(1555), 3, aux_sym__block_terminator_token1, aux_sym_case_when_branch_token1, aux_sym_case_otherwise_branch_token1, - [144135] = 7, - ACTIONS(59), 1, - anon_sym_SLASH_SLASH, - ACTIONS(61), 1, - anon_sym_SLASH_STAR, - ACTIONS(65), 1, - anon_sym_LBRACE, - ACTIONS(4038), 1, - anon_sym_COMMA, - ACTIONS(4338), 1, - sym__terminator, - STATE(3539), 1, - aux_sym_data_relation_repeat1, - STATE(3523), 2, - sym_comment, - sym_include, - [144158] = 7, + [146322] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5120), 1, - anon_sym_COMMA, - ACTIONS(5304), 1, - anon_sym_RPAREN, - STATE(3540), 1, - aux_sym_function_statement_repeat1, - STATE(3524), 2, + STATE(3568), 2, sym_comment, sym_include, - [144181] = 6, + ACTIONS(1559), 3, + aux_sym__block_terminator_token1, + aux_sym_case_when_branch_token1, + aux_sym_case_otherwise_branch_token1, + [146341] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(5306), 1, + ACTIONS(5401), 1, sym_identifier, - ACTIONS(4703), 2, + ACTIONS(4662), 2, sym__terminator, anon_sym_COLON, - STATE(3525), 2, + STATE(3569), 2, sym_comment, sym_include, - [144202] = 7, + [146362] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2105), 1, - anon_sym_COMMA, - ACTIONS(4304), 1, - anon_sym_COLON, - STATE(3533), 1, - aux_sym_for_statement_repeat1, - STATE(3526), 2, + STATE(3570), 2, sym_comment, sym_include, - [144225] = 7, + ACTIONS(1563), 3, + aux_sym__block_terminator_token1, + aux_sym_case_when_branch_token1, + aux_sym_case_otherwise_branch_token1, + [146381] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5308), 1, + STATE(3571), 2, + sym_comment, + sym_include, + ACTIONS(1567), 3, aux_sym__block_terminator_token1, - STATE(1418), 1, - sym__function_terminator, - STATE(1477), 1, - sym__block_terminator, - STATE(3527), 2, + aux_sym_case_when_branch_token1, + aux_sym_case_otherwise_branch_token1, + [146400] = 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, + ACTIONS(5210), 2, + anon_sym_COMMA, + anon_sym_COLON, + STATE(3572), 2, sym_comment, sym_include, - [144248] = 7, + [146421] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(3854), 1, - anon_sym_COLON, - ACTIONS(4153), 1, - aux_sym_on_error_phrase_token1, - STATE(4490), 1, - sym_on_stop_phrase, - STATE(3528), 2, + STATE(3573), 2, sym_comment, sym_include, - [144271] = 7, + ACTIONS(1571), 3, + aux_sym__block_terminator_token1, + aux_sym_case_when_branch_token1, + aux_sym_case_otherwise_branch_token1, + [146440] = 7, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2105), 1, - anon_sym_COMMA, - ACTIONS(5310), 1, - anon_sym_COLON, - STATE(3175), 1, - aux_sym_for_statement_repeat1, - STATE(3529), 2, + ACTIONS(679), 1, + sym__namedot, + ACTIONS(5405), 1, + anon_sym_LPAREN, + STATE(336), 1, + aux_sym_qualified_name_repeat1, + STATE(3574), 2, sym_comment, sym_include, - [144294] = 7, + [146463] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5308), 1, - aux_sym__block_terminator_token1, - STATE(1432), 1, - sym__function_terminator, - STATE(1477), 1, - sym__block_terminator, - STATE(3530), 2, + STATE(3575), 2, sym_comment, sym_include, - [144317] = 7, + ACTIONS(1575), 3, + aux_sym__block_terminator_token1, + aux_sym_case_when_branch_token1, + aux_sym_case_otherwise_branch_token1, + [146482] = 7, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5308), 1, + ACTIONS(5407), 1, aux_sym__block_terminator_token1, - STATE(1449), 1, - sym__function_terminator, - STATE(1477), 1, + STATE(1414), 1, sym__block_terminator, - STATE(3531), 2, + STATE(1503), 1, + sym__function_terminator, + STATE(3576), 2, sym_comment, sym_include, - [144340] = 7, + [146505] = 5, 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(5312), 1, - anon_sym_LPAREN, - STATE(329), 1, - aux_sym_qualified_name_repeat1, - STATE(3532), 2, + STATE(3577), 2, sym_comment, sym_include, - [144363] = 7, + ACTIONS(1583), 3, + aux_sym__block_terminator_token1, + aux_sym_case_when_branch_token1, + aux_sym_case_otherwise_branch_token1, + [146524] = 7, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2105), 1, - anon_sym_COMMA, - ACTIONS(5314), 1, - anon_sym_COLON, - STATE(3175), 1, - aux_sym_for_statement_repeat1, - STATE(3533), 2, + ACTIONS(5407), 1, + aux_sym__block_terminator_token1, + STATE(1414), 1, + sym__block_terminator, + STATE(1467), 1, + sym__function_terminator, + STATE(3578), 2, sym_comment, sym_include, - [144386] = 7, + [146547] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2105), 1, - anon_sym_COMMA, - ACTIONS(5314), 1, - anon_sym_COLON, - STATE(3542), 1, - aux_sym_for_statement_repeat1, - STATE(3534), 2, + STATE(3579), 2, sym_comment, sym_include, - [144409] = 7, - ACTIONS(3), 1, + ACTIONS(1591), 3, + aux_sym__block_terminator_token1, + aux_sym_case_when_branch_token1, + aux_sym_case_otherwise_branch_token1, + [146566] = 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(5316), 1, - sym_identifier, - ACTIONS(5318), 1, - anon_sym_RPAREN, - STATE(3543), 1, - sym_qualified_name, - STATE(3535), 2, + STATE(3580), 2, sym_comment, sym_include, - [144432] = 6, - ACTIONS(3), 1, + ACTIONS(2139), 3, + aux_sym_buffer_definition_token2, + aux_sym_repeat_statement_token1, + aux_sym_do_block_token1, + [146585] = 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(5320), 1, - sym_identifier, - ACTIONS(4822), 2, - sym__terminator, - anon_sym_COLON, - STATE(3536), 2, + STATE(3581), 2, sym_comment, sym_include, - [144453] = 7, + ACTIONS(1599), 3, + aux_sym__block_terminator_token1, + aux_sym_case_when_branch_token1, + aux_sym_case_otherwise_branch_token1, + [146604] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5120), 1, - anon_sym_COMMA, - ACTIONS(5322), 1, - anon_sym_RPAREN, - STATE(3314), 1, - aux_sym_function_statement_repeat1, - STATE(3537), 2, + STATE(3582), 2, sym_comment, sym_include, - [144476] = 7, + ACTIONS(1832), 3, + aux_sym__block_terminator_token1, + aux_sym_case_when_branch_token1, + aux_sym_case_otherwise_branch_token1, + [146623] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(3806), 1, - anon_sym_COLON, - ACTIONS(4153), 1, - aux_sym_on_error_phrase_token1, - STATE(4541), 1, - sym_on_stop_phrase, - STATE(3538), 2, + STATE(3583), 2, sym_comment, sym_include, - [144499] = 7, + ACTIONS(1603), 3, + aux_sym__block_terminator_token1, + aux_sym_case_when_branch_token1, + aux_sym_case_otherwise_branch_token1, + [146642] = 7, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(4038), 1, - anon_sym_COMMA, - ACTIONS(5324), 1, - sym__terminator, - STATE(2576), 1, - aux_sym_data_relation_repeat1, - STATE(3539), 2, + ACTIONS(3864), 1, + aux_sym__block_terminator_token1, + STATE(938), 1, + sym__case_terminator, + STATE(1102), 1, + sym__block_terminator, + STATE(3584), 2, sym_comment, sym_include, - [144522] = 7, + [146665] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5120), 1, - anon_sym_COMMA, - ACTIONS(5326), 1, - anon_sym_RPAREN, - STATE(3314), 1, - aux_sym_function_statement_repeat1, - STATE(3540), 2, + STATE(3585), 2, sym_comment, sym_include, - [144545] = 7, - ACTIONS(3), 1, + ACTIONS(1615), 3, + aux_sym__block_terminator_token1, + aux_sym_case_when_branch_token1, + aux_sym_case_otherwise_branch_token1, + [146684] = 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(5328), 1, - sym_identifier, - ACTIONS(5330), 1, - anon_sym_AMP, - ACTIONS(5332), 1, - sym__integer_literal, - STATE(3541), 2, + ACTIONS(5407), 1, + aux_sym__block_terminator_token1, + STATE(1414), 1, + sym__block_terminator, + STATE(1466), 1, + sym__function_terminator, + STATE(3586), 2, sym_comment, sym_include, - [144568] = 7, + [146707] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2105), 1, - anon_sym_COMMA, - ACTIONS(5334), 1, - anon_sym_COLON, - STATE(3175), 1, - aux_sym_for_statement_repeat1, - STATE(3542), 2, + STATE(3587), 2, sym_comment, sym_include, - [144591] = 7, + ACTIONS(1619), 3, + aux_sym__block_terminator_token1, + aux_sym_case_when_branch_token1, + aux_sym_case_otherwise_branch_token1, + [146726] = 7, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(4038), 1, - anon_sym_COMMA, - ACTIONS(4501), 1, - anon_sym_RPAREN, - STATE(3547), 1, - aux_sym_data_relation_repeat1, - STATE(3543), 2, + ACTIONS(3970), 1, + aux_sym__block_terminator_token1, + STATE(914), 1, + sym__block_terminator, + STATE(944), 1, + sym__case_terminator, + STATE(3588), 2, sym_comment, sym_include, - [144614] = 7, - ACTIONS(3), 1, + [146749] = 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(2333), 1, - sym_identifier, - ACTIONS(5247), 1, - sym__namedot, - STATE(3349), 1, - aux_sym_qualified_name_repeat1, - STATE(3544), 2, + STATE(3589), 2, sym_comment, sym_include, - [144637] = 7, - ACTIONS(3), 1, + ACTIONS(1623), 3, + aux_sym__block_terminator_token1, + aux_sym_case_when_branch_token1, + aux_sym_case_otherwise_branch_token1, + [146768] = 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(5336), 1, - sym_identifier, - ACTIONS(5338), 1, - anon_sym_RPAREN, - STATE(3548), 1, - sym_qualified_name, - STATE(3545), 2, + STATE(3590), 2, sym_comment, sym_include, - [144660] = 6, + ACTIONS(1822), 3, + aux_sym__block_terminator_token1, + aux_sym_case_when_branch_token1, + aux_sym_case_otherwise_branch_token1, + [146787] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5340), 1, - aux_sym__block_terminator_token1, - STATE(1145), 2, - sym__block_terminator, - sym__procedure_terminator, - STATE(3546), 2, + STATE(3591), 2, sym_comment, sym_include, - [144681] = 7, + ACTIONS(1942), 3, + aux_sym__block_terminator_token1, + aux_sym_case_when_branch_token1, + aux_sym_case_otherwise_branch_token1, + [146806] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(4038), 1, - anon_sym_COMMA, - ACTIONS(4406), 1, - anon_sym_RPAREN, - STATE(2576), 1, - aux_sym_data_relation_repeat1, - STATE(3547), 2, + STATE(3592), 2, sym_comment, sym_include, - [144704] = 7, + ACTIONS(1631), 3, + aux_sym__block_terminator_token1, + aux_sym_case_when_branch_token1, + aux_sym_case_otherwise_branch_token1, + [146825] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(4038), 1, - anon_sym_COMMA, - ACTIONS(4406), 1, - anon_sym_RPAREN, - STATE(3552), 1, - aux_sym_data_relation_repeat1, - STATE(3548), 2, + STATE(3593), 2, sym_comment, sym_include, - [144727] = 7, + ACTIONS(1944), 3, + aux_sym__block_terminator_token1, + aux_sym_case_when_branch_token1, + aux_sym_case_otherwise_branch_token1, + [146844] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(1049), 1, - anon_sym_LPAREN, - ACTIONS(5342), 1, + ACTIONS(5409), 1, sym_identifier, - STATE(677), 1, - sym_parenthesized_expression, - STATE(3549), 2, + ACTIONS(5411), 1, + anon_sym_AMP, + ACTIONS(5413), 1, + sym__integer_literal, + STATE(3594), 2, sym_comment, sym_include, - [144750] = 7, - ACTIONS(3), 1, + [146867] = 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(5344), 1, - sym_identifier, - ACTIONS(5346), 1, - aux_sym_input_expression_token2, - STATE(674), 1, - sym_qualified_name, - STATE(3550), 2, + STATE(3595), 2, sym_comment, sym_include, - [144773] = 7, + ACTIONS(1948), 3, + aux_sym__block_terminator_token1, + aux_sym_case_when_branch_token1, + aux_sym_case_otherwise_branch_token1, + [146886] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(3870), 1, - aux_sym__block_terminator_token1, - STATE(1186), 1, - sym__case_terminator, - STATE(1303), 1, - sym__block_terminator, - STATE(3551), 2, + STATE(3596), 2, sym_comment, sym_include, - [144796] = 7, + ACTIONS(1635), 3, + aux_sym__block_terminator_token1, + aux_sym_case_when_branch_token1, + aux_sym_case_otherwise_branch_token1, + [146905] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(4038), 1, - anon_sym_COMMA, - ACTIONS(5348), 1, - anon_sym_RPAREN, - STATE(2576), 1, - aux_sym_data_relation_repeat1, - STATE(3552), 2, + STATE(3597), 2, sym_comment, sym_include, - [144819] = 7, + ACTIONS(1663), 3, + aux_sym__block_terminator_token1, + aux_sym_case_when_branch_token1, + aux_sym_case_otherwise_branch_token1, + [146924] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(1011), 1, - anon_sym_LPAREN, - ACTIONS(5350), 1, + ACTIONS(5415), 1, sym_identifier, - STATE(1564), 1, - sym_parenthesized_expression, - STATE(3553), 2, + ACTIONS(5417), 1, + aux_sym_input_expression_token2, + STATE(1586), 1, + sym_qualified_name, + STATE(3598), 2, sym_comment, sym_include, - [144842] = 6, + [146947] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5340), 1, - aux_sym__block_terminator_token1, - STATE(1216), 2, - sym__block_terminator, - sym__procedure_terminator, - STATE(3554), 2, + STATE(3599), 2, sym_comment, sym_include, - [144863] = 7, + ACTIONS(1667), 3, + aux_sym__block_terminator_token1, + aux_sym_case_when_branch_token1, + aux_sym_case_otherwise_branch_token1, + [146966] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(5352), 1, + ACTIONS(935), 1, + anon_sym_LPAREN, + ACTIONS(5419), 1, sym_identifier, - ACTIONS(5354), 1, - aux_sym_input_expression_token2, - STATE(1565), 1, - sym_qualified_name, - STATE(3555), 2, + STATE(1589), 1, + sym_parenthesized_expression, + STATE(3600), 2, sym_comment, sym_include, - [144886] = 5, + [146989] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5356), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - STATE(3556), 2, + STATE(3601), 2, sym_comment, sym_include, - [144904] = 6, + ACTIONS(1671), 3, + aux_sym__block_terminator_token1, + aux_sym_case_when_branch_token1, + aux_sym_case_otherwise_branch_token1, + [147008] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5358), 1, - aux_sym_input_close_statement_token2, - ACTIONS(5360), 1, - aux_sym_output_stream_statement_token1, - STATE(3557), 2, + STATE(3602), 2, sym_comment, sym_include, - [144924] = 6, + ACTIONS(1962), 3, + aux_sym__block_terminator_token1, + aux_sym_case_when_branch_token1, + aux_sym_case_otherwise_branch_token1, + [147027] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5362), 1, - aux_sym_procedure_parameter_definition_token1, - ACTIONS(5364), 1, - aux_sym_function_statement_token1, - STATE(3558), 2, + STATE(3603), 2, sym_comment, sym_include, - [144944] = 6, - ACTIONS(3), 1, + ACTIONS(2053), 3, + aux_sym__block_terminator_token1, + aux_sym_case_when_branch_token1, + aux_sym_case_otherwise_branch_token1, + [147046] = 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(5366), 1, - sym_identifier, - ACTIONS(5368), 1, - anon_sym_STAR, - STATE(3559), 2, + STATE(3604), 2, sym_comment, sym_include, - [144964] = 6, + ACTIONS(1677), 3, + aux_sym__block_terminator_token1, + aux_sym_case_when_branch_token1, + aux_sym_case_otherwise_branch_token1, + [147065] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5370), 1, - anon_sym_DOT, - ACTIONS(5372), 1, - aux_sym__procedure_terminator_token1, - STATE(3560), 2, + STATE(3605), 2, sym_comment, sym_include, - [144984] = 6, + ACTIONS(1681), 3, + aux_sym__block_terminator_token1, + aux_sym_case_when_branch_token1, + aux_sym_case_otherwise_branch_token1, + [147084] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5374), 1, - aux_sym__block_terminator_token1, - STATE(1094), 1, - sym__block_terminator, - STATE(3561), 2, + STATE(3606), 2, sym_comment, sym_include, - [145004] = 6, + ACTIONS(2057), 3, + aux_sym__block_terminator_token1, + aux_sym_case_when_branch_token1, + aux_sym_case_otherwise_branch_token1, + [147103] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5374), 1, - aux_sym__block_terminator_token1, - STATE(1095), 1, - sym__block_terminator, - STATE(3562), 2, + STATE(3607), 2, sym_comment, sym_include, - [145024] = 6, + ACTIONS(1685), 3, + aux_sym__block_terminator_token1, + aux_sym_case_when_branch_token1, + aux_sym_case_otherwise_branch_token1, + [147122] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5376), 1, - aux_sym__block_terminator_token1, - STATE(1514), 1, - sym__block_terminator, - STATE(3563), 2, + STATE(3608), 2, sym_comment, sym_include, - [145044] = 6, - ACTIONS(3), 1, + ACTIONS(1818), 3, + aux_sym__block_terminator_token1, + aux_sym_case_when_branch_token1, + aux_sym_case_otherwise_branch_token1, + [147141] = 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(5378), 1, - sym_identifier, - STATE(3594), 1, - sym_qualified_name, - STATE(3564), 2, + STATE(3609), 2, sym_comment, sym_include, - [145064] = 6, - ACTIONS(3), 1, + ACTIONS(2071), 3, + aux_sym__block_terminator_token1, + aux_sym_case_when_branch_token1, + aux_sym_case_otherwise_branch_token1, + [147160] = 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(5380), 1, - sym_identifier, - ACTIONS(5382), 1, - anon_sym_COMMA, - STATE(3565), 2, + STATE(3610), 2, sym_comment, sym_include, - [145084] = 6, + ACTIONS(1707), 3, + aux_sym__block_terminator_token1, + aux_sym_case_when_branch_token1, + aux_sym_case_otherwise_branch_token1, + [147179] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5384), 1, - aux_sym_on_error_phrase_token1, - STATE(4653), 1, - sym_on_error_phrase, - STATE(3566), 2, + STATE(3611), 2, sym_comment, sym_include, - [145104] = 6, + ACTIONS(1689), 3, + aux_sym__block_terminator_token1, + aux_sym_case_when_branch_token1, + aux_sym_case_otherwise_branch_token1, + [147198] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(4382), 1, - anon_sym_EQ, - ACTIONS(5386), 1, - anon_sym_LPAREN, - STATE(3567), 2, + STATE(3612), 2, sym_comment, sym_include, - [145124] = 6, - ACTIONS(3), 1, + ACTIONS(1693), 3, + aux_sym__block_terminator_token1, + aux_sym_case_when_branch_token1, + aux_sym_case_otherwise_branch_token1, + [147217] = 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(5388), 1, - sym_identifier, - STATE(1573), 1, - sym_qualified_name, - STATE(3568), 2, + STATE(3613), 2, sym_comment, sym_include, - [145144] = 6, + ACTIONS(2079), 3, + aux_sym__block_terminator_token1, + aux_sym_case_when_branch_token1, + aux_sym_case_otherwise_branch_token1, + [147236] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5374), 1, - aux_sym__block_terminator_token1, - STATE(1100), 1, - sym__block_terminator, - STATE(3569), 2, + STATE(3614), 2, sym_comment, sym_include, - [145164] = 6, + ACTIONS(1697), 3, + aux_sym__block_terminator_token1, + aux_sym_case_when_branch_token1, + aux_sym_case_otherwise_branch_token1, + [147255] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5374), 1, - aux_sym__block_terminator_token1, - STATE(1102), 1, - sym__block_terminator, - STATE(3570), 2, + STATE(3615), 2, sym_comment, sym_include, - [145184] = 6, + ACTIONS(1741), 3, + aux_sym__block_terminator_token1, + aux_sym_case_when_branch_token1, + aux_sym_case_otherwise_branch_token1, + [147274] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5374), 1, - aux_sym__block_terminator_token1, - STATE(1103), 1, - sym__block_terminator, - STATE(3571), 2, + STATE(3616), 2, sym_comment, sym_include, - [145204] = 6, - ACTIONS(3), 1, + ACTIONS(1747), 3, + aux_sym__block_terminator_token1, + aux_sym_case_when_branch_token1, + aux_sym_case_otherwise_branch_token1, + [147293] = 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(5390), 1, - sym_identifier, - ACTIONS(5392), 1, - anon_sym_STAR, - STATE(3572), 2, + STATE(3617), 2, sym_comment, sym_include, - [145224] = 6, + ACTIONS(1776), 3, + aux_sym__block_terminator_token1, + aux_sym_case_when_branch_token1, + aux_sym_case_otherwise_branch_token1, + [147312] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5374), 1, - aux_sym__block_terminator_token1, - STATE(1104), 1, - sym__block_terminator, - STATE(3573), 2, + STATE(3618), 2, sym_comment, sym_include, - [145244] = 6, + ACTIONS(1786), 3, + aux_sym__block_terminator_token1, + aux_sym_case_when_branch_token1, + aux_sym_case_otherwise_branch_token1, + [147331] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5374), 1, - aux_sym__block_terminator_token1, - STATE(1107), 1, - sym__block_terminator, - STATE(3574), 2, + STATE(3619), 2, sym_comment, sym_include, - [145264] = 6, - ACTIONS(3), 1, + ACTIONS(1788), 3, + aux_sym__block_terminator_token1, + aux_sym_case_when_branch_token1, + aux_sym_case_otherwise_branch_token1, + [147350] = 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(5394), 1, - sym_identifier, - STATE(4593), 1, - sym_qualified_name, - STATE(3575), 2, + STATE(3620), 2, sym_comment, sym_include, - [145284] = 6, + ACTIONS(1790), 3, + aux_sym__block_terminator_token1, + aux_sym_case_when_branch_token1, + aux_sym_case_otherwise_branch_token1, + [147369] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5396), 1, - aux_sym__block_terminator_token1, - STATE(3355), 1, - sym__block_terminator, - STATE(3576), 2, + STATE(3621), 2, sym_comment, sym_include, - [145304] = 6, + ACTIONS(1792), 3, + aux_sym__block_terminator_token1, + aux_sym_case_when_branch_token1, + aux_sym_case_otherwise_branch_token1, + [147388] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5374), 1, - aux_sym__block_terminator_token1, - STATE(1108), 1, - sym__block_terminator, - STATE(3577), 2, + STATE(3622), 2, sym_comment, sym_include, - [145324] = 6, + ACTIONS(1794), 3, + aux_sym__block_terminator_token1, + aux_sym_case_when_branch_token1, + aux_sym_case_otherwise_branch_token1, + [147407] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5376), 1, - aux_sym__block_terminator_token1, - STATE(1526), 1, - sym__block_terminator, - STATE(3578), 2, + STATE(3623), 2, sym_comment, sym_include, - [145344] = 6, + ACTIONS(2024), 3, + aux_sym__block_terminator_token1, + aux_sym_case_when_branch_token1, + aux_sym_case_otherwise_branch_token1, + [147426] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5398), 1, - sym__terminator, - ACTIONS(5400), 1, - anon_sym_METHOD, - STATE(3579), 2, + STATE(3624), 2, sym_comment, sym_include, - [145364] = 6, + ACTIONS(2026), 3, + aux_sym__block_terminator_token1, + aux_sym_case_when_branch_token1, + aux_sym_case_otherwise_branch_token1, + [147445] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5374), 1, - aux_sym__block_terminator_token1, - STATE(1109), 1, - sym__block_terminator, - STATE(3580), 2, + STATE(3625), 2, sym_comment, sym_include, - [145384] = 6, + ACTIONS(1816), 3, + aux_sym__block_terminator_token1, + aux_sym_case_when_branch_token1, + aux_sym_case_otherwise_branch_token1, + [147464] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5374), 1, - aux_sym__block_terminator_token1, - STATE(1111), 1, - sym__block_terminator, - STATE(3581), 2, + STATE(3626), 2, sym_comment, sym_include, - [145404] = 6, + ACTIONS(1826), 3, + aux_sym__block_terminator_token1, + aux_sym_case_when_branch_token1, + aux_sym_case_otherwise_branch_token1, + [147483] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(5402), 1, + ACTIONS(5421), 1, sym_identifier, - ACTIONS(5404), 1, - anon_sym_STAR, - STATE(3582), 2, + ACTIONS(5423), 1, + aux_sym_input_expression_token2, + STATE(680), 1, + sym_qualified_name, + STATE(3627), 2, sym_comment, sym_include, - [145424] = 6, + [147506] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5374), 1, - aux_sym__block_terminator_token1, - STATE(1122), 1, - sym__block_terminator, - STATE(3583), 2, + STATE(3628), 2, sym_comment, sym_include, - [145444] = 6, + ACTIONS(1828), 3, + aux_sym__block_terminator_token1, + aux_sym_case_when_branch_token1, + aux_sym_case_otherwise_branch_token1, + [147525] = 7, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(5406), 1, + ACTIONS(1095), 1, + anon_sym_LPAREN, + ACTIONS(5425), 1, sym_identifier, - STATE(1632), 1, - sym_qualified_name, - STATE(3584), 2, + STATE(694), 1, + sym_parenthesized_expression, + STATE(3629), 2, sym_comment, sym_include, - [145464] = 6, + [147548] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5374), 1, - aux_sym__block_terminator_token1, - STATE(1126), 1, - sym__block_terminator, - STATE(3585), 2, + STATE(3630), 2, sym_comment, sym_include, - [145484] = 6, + ACTIONS(1834), 3, + aux_sym__block_terminator_token1, + aux_sym_case_when_branch_token1, + aux_sym_case_otherwise_branch_token1, + [147567] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5396), 1, - aux_sym__block_terminator_token1, - STATE(3356), 1, - sym__block_terminator, - STATE(3586), 2, + STATE(3631), 2, sym_comment, sym_include, - [145504] = 6, + ACTIONS(2032), 3, + aux_sym__block_terminator_token1, + aux_sym_case_when_branch_token1, + aux_sym_case_otherwise_branch_token1, + [147586] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5374), 1, - aux_sym__block_terminator_token1, - STATE(1121), 1, - sym__block_terminator, - STATE(3587), 2, + STATE(3632), 2, sym_comment, sym_include, - [145524] = 6, + ACTIONS(2075), 3, + aux_sym__block_terminator_token1, + aux_sym_case_when_branch_token1, + aux_sym_case_otherwise_branch_token1, + [147605] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5396), 1, - aux_sym__block_terminator_token1, - STATE(3359), 1, - sym__block_terminator, - STATE(3588), 2, + STATE(3633), 2, sym_comment, sym_include, - [145544] = 6, - ACTIONS(3), 1, + ACTIONS(1840), 3, + aux_sym__block_terminator_token1, + aux_sym_case_when_branch_token1, + aux_sym_case_otherwise_branch_token1, + [147624] = 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(4638), 1, - anon_sym_COLON, - ACTIONS(5408), 1, - sym_identifier, - STATE(3589), 2, + STATE(3634), 2, sym_comment, sym_include, - [145564] = 6, + ACTIONS(1842), 3, + aux_sym__block_terminator_token1, + aux_sym_case_when_branch_token1, + aux_sym_case_otherwise_branch_token1, + [147643] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5410), 1, - aux_sym_access_tuning_token1, - ACTIONS(5412), 1, - anon_sym_COLON, - STATE(3590), 2, + STATE(3635), 2, sym_comment, sym_include, - [145584] = 6, + ACTIONS(2073), 3, + aux_sym__block_terminator_token1, + aux_sym_case_when_branch_token1, + aux_sym_case_otherwise_branch_token1, + [147662] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5414), 1, - aux_sym_procedure_parameter_definition_token1, - ACTIONS(5416), 1, - aux_sym_function_statement_token1, - STATE(3591), 2, + STATE(3636), 2, sym_comment, sym_include, - [145604] = 6, + ACTIONS(1844), 3, + aux_sym__block_terminator_token1, + aux_sym_case_when_branch_token1, + aux_sym_case_otherwise_branch_token1, + [147681] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5396), 1, - aux_sym__block_terminator_token1, - STATE(3362), 1, - sym__block_terminator, - STATE(3592), 2, + STATE(3637), 2, sym_comment, sym_include, - [145624] = 6, + ACTIONS(2034), 3, + aux_sym__block_terminator_token1, + aux_sym_case_when_branch_token1, + aux_sym_case_otherwise_branch_token1, + [147700] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5374), 1, - aux_sym__block_terminator_token1, - STATE(1119), 1, - sym__block_terminator, - STATE(3593), 2, + STATE(3638), 2, sym_comment, sym_include, - [145644] = 6, + ACTIONS(2046), 3, + aux_sym__block_terminator_token1, + aux_sym_case_when_branch_token1, + aux_sym_case_otherwise_branch_token1, + [147719] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(4589), 1, - sym__terminator, - ACTIONS(4591), 1, - aux_sym_using_statement_token2, - STATE(3594), 2, + STATE(3639), 2, sym_comment, sym_include, - [145664] = 6, + ACTIONS(1870), 3, + aux_sym__block_terminator_token1, + aux_sym_case_when_branch_token1, + aux_sym_case_otherwise_branch_token1, + [147738] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5376), 1, - aux_sym__block_terminator_token1, - STATE(1515), 1, - sym__block_terminator, - STATE(3595), 2, + STATE(3640), 2, sym_comment, sym_include, - [145684] = 6, - ACTIONS(3), 1, + ACTIONS(2028), 3, + aux_sym__block_terminator_token1, + aux_sym_case_when_branch_token1, + aux_sym_case_otherwise_branch_token1, + [147757] = 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(5418), 1, - sym_identifier, - STATE(1917), 1, - sym_qualified_name, - STATE(3596), 2, + STATE(3641), 2, sym_comment, sym_include, - [145704] = 6, - ACTIONS(3), 1, + ACTIONS(1946), 3, + aux_sym__block_terminator_token1, + aux_sym_case_when_branch_token1, + aux_sym_case_otherwise_branch_token1, + [147776] = 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(5420), 1, - sym_identifier, - STATE(709), 1, - sym_qualified_name, - STATE(3597), 2, + STATE(3642), 2, sym_comment, sym_include, - [145724] = 6, + ACTIONS(2077), 3, + aux_sym__block_terminator_token1, + aux_sym_case_when_branch_token1, + aux_sym_case_otherwise_branch_token1, + [147795] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5422), 1, - sym__terminator, - ACTIONS(5424), 1, - anon_sym_COLON, - STATE(3598), 2, + STATE(3643), 2, sym_comment, sym_include, - [145744] = 5, + ACTIONS(1980), 3, + aux_sym__block_terminator_token1, + aux_sym_case_when_branch_token1, + aux_sym_case_otherwise_branch_token1, + [147814] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5426), 2, - anon_sym_COMMA, - anon_sym_COLON, - STATE(3599), 2, + STATE(3644), 2, sym_comment, sym_include, - [145762] = 6, - ACTIONS(3), 1, + ACTIONS(1986), 3, + aux_sym__block_terminator_token1, + aux_sym_case_when_branch_token1, + aux_sym_case_otherwise_branch_token1, + [147833] = 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(5428), 1, - sym_identifier, - STATE(4543), 1, - sym_qualified_name, - STATE(3600), 2, + STATE(3645), 2, sym_comment, sym_include, - [145782] = 6, + ACTIONS(1992), 3, + aux_sym__block_terminator_token1, + aux_sym_case_when_branch_token1, + aux_sym_case_otherwise_branch_token1, + [147852] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5374), 1, - aux_sym__block_terminator_token1, - STATE(1086), 1, - sym__block_terminator, - STATE(3601), 2, + STATE(3646), 2, sym_comment, sym_include, - [145802] = 6, + ACTIONS(2065), 3, + aux_sym__block_terminator_token1, + aux_sym_case_when_branch_token1, + aux_sym_case_otherwise_branch_token1, + [147871] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5374), 1, - aux_sym__block_terminator_token1, - STATE(1117), 1, - sym__block_terminator, - STATE(3602), 2, + STATE(3647), 2, sym_comment, sym_include, - [145822] = 6, + ACTIONS(2014), 3, + aux_sym__block_terminator_token1, + aux_sym_case_when_branch_token1, + aux_sym_case_otherwise_branch_token1, + [147890] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5430), 1, - sym__terminator, - ACTIONS(5432), 1, - anon_sym_METHOD, - STATE(3603), 2, + STATE(3648), 2, sym_comment, sym_include, - [145842] = 6, + ACTIONS(2016), 3, + aux_sym__block_terminator_token1, + aux_sym_case_when_branch_token1, + aux_sym_case_otherwise_branch_token1, + [147909] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5374), 1, + STATE(3649), 2, + sym_comment, + sym_include, + ACTIONS(2067), 3, aux_sym__block_terminator_token1, - STATE(1131), 1, - sym__block_terminator, - STATE(3604), 2, + aux_sym_case_when_branch_token1, + aux_sym_case_otherwise_branch_token1, + [147928] = 5, + ACTIONS(59), 1, + anon_sym_SLASH_SLASH, + ACTIONS(61), 1, + anon_sym_SLASH_STAR, + ACTIONS(65), 1, + anon_sym_LBRACE, + STATE(3650), 2, sym_comment, sym_include, - [145862] = 6, + ACTIONS(2020), 3, + aux_sym__block_terminator_token1, + aux_sym_case_when_branch_token1, + aux_sym_case_otherwise_branch_token1, + [147947] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5434), 1, - sym__terminator, - ACTIONS(5436), 1, - anon_sym_METHOD, - STATE(3605), 2, + ACTIONS(5427), 1, + aux_sym_scope_tuning_token1, + STATE(4422), 1, + sym_new_expression, + STATE(3651), 2, sym_comment, sym_include, - [145882] = 6, + [147967] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5374), 1, + ACTIONS(5429), 1, aux_sym__block_terminator_token1, - STATE(1091), 1, + STATE(1545), 1, sym__block_terminator, - STATE(3606), 2, + STATE(3652), 2, sym_comment, sym_include, - [145902] = 6, - ACTIONS(3), 1, + [147987] = 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(5438), 1, - sym_identifier, - STATE(4498), 1, - sym_qualified_name, - STATE(3607), 2, + ACTIONS(5431), 1, + aux_sym_procedure_parameter_definition_token1, + ACTIONS(5433), 1, + aux_sym_function_statement_token1, + STATE(3653), 2, sym_comment, sym_include, - [145922] = 6, + [148007] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(5440), 1, + ACTIONS(5435), 1, sym_identifier, - STATE(4494), 1, - sym_qualified_name, - STATE(3608), 2, + ACTIONS(5437), 1, + anon_sym_STAR, + STATE(3654), 2, + sym_comment, + sym_include, + [148027] = 6, + ACTIONS(59), 1, + anon_sym_SLASH_SLASH, + ACTIONS(61), 1, + anon_sym_SLASH_STAR, + ACTIONS(65), 1, + anon_sym_LBRACE, + ACTIONS(5439), 1, + aux_sym__block_terminator_token1, + STATE(911), 1, + sym__block_terminator, + STATE(3655), 2, sym_comment, sym_include, - [145942] = 6, + [148047] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(5442), 1, + ACTIONS(5441), 1, sym_identifier, - STATE(4487), 1, - sym_qualified_name, - STATE(3609), 2, + ACTIONS(5443), 1, + sym__terminator, + STATE(3656), 2, sym_comment, sym_include, - [145962] = 6, + [148067] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(5444), 1, + ACTIONS(5445), 1, sym_identifier, - STATE(4478), 1, + STATE(3676), 1, sym_qualified_name, - STATE(3610), 2, + STATE(3657), 2, sym_comment, sym_include, - [145982] = 6, + [148087] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(5446), 1, + ACTIONS(5447), 1, sym_identifier, - ACTIONS(5448), 1, - anon_sym_STAR, - STATE(3611), 2, + ACTIONS(5449), 1, + anon_sym_COMMA, + STATE(3658), 2, sym_comment, sym_include, - [146002] = 6, + [148107] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5450), 1, - aux_sym_variable_definition_token5, - ACTIONS(5452), 1, - aux_sym_variable_definition_token6, - STATE(3612), 2, + ACTIONS(5451), 1, + aux_sym_on_error_phrase_token1, + STATE(4734), 1, + sym_on_error_phrase, + STATE(3659), 2, sym_comment, sym_include, - [146022] = 6, + [148127] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(5454), 1, + ACTIONS(5453), 1, sym_identifier, - STATE(1599), 1, + STATE(689), 1, sym_qualified_name, - STATE(3613), 2, - sym_comment, - sym_include, - [146042] = 6, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - ACTIONS(7), 1, - anon_sym_LBRACE, - ACTIONS(5456), 1, - sym_identifier, - ACTIONS(5458), 1, - sym__integer_literal, - STATE(3614), 2, + STATE(3660), 2, sym_comment, sym_include, - [146062] = 6, + [148147] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5396), 1, - aux_sym__block_terminator_token1, - STATE(3363), 1, - sym__block_terminator, - STATE(3615), 2, + ACTIONS(4415), 1, + anon_sym_EQ, + ACTIONS(5455), 1, + anon_sym_LPAREN, + STATE(3661), 2, sym_comment, sym_include, - [146082] = 6, + [148167] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5374), 1, - aux_sym__block_terminator_token1, - STATE(1130), 1, - sym__block_terminator, - STATE(3616), 2, + ACTIONS(5457), 1, + anon_sym_DOT, + ACTIONS(5459), 1, + aux_sym__case_terminator_token1, + STATE(3662), 2, sym_comment, sym_include, - [146102] = 6, - ACTIONS(59), 1, + [148187] = 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(5460), 1, - aux_sym_variable_definition_token5, - ACTIONS(5462), 1, - aux_sym_variable_definition_token6, - STATE(3617), 2, + ACTIONS(5461), 1, + sym_identifier, + ACTIONS(5463), 1, + anon_sym_STAR, + STATE(3663), 2, sym_comment, sym_include, - [146122] = 6, + [148207] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5396), 1, + ACTIONS(5465), 1, aux_sym__block_terminator_token1, - STATE(3364), 1, + STATE(851), 1, sym__block_terminator, - STATE(3618), 2, + STATE(3664), 2, sym_comment, sym_include, - [146142] = 6, + [148227] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5374), 1, - aux_sym__block_terminator_token1, - STATE(1129), 1, - sym__block_terminator, - STATE(3619), 2, + ACTIONS(5467), 1, + sym__terminator, + ACTIONS(5469), 1, + aux_sym_primitive_type_token19, + STATE(3665), 2, sym_comment, sym_include, - [146162] = 6, - ACTIONS(3), 1, + [148247] = 6, + ACTIONS(59), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(61), 1, anon_sym_SLASH_STAR, - ACTIONS(7), 1, - anon_sym_LBRACE, - ACTIONS(5464), 1, - sym_identifier, - STATE(1613), 1, - sym_qualified_name, - STATE(3620), 2, + ACTIONS(65), 1, + anon_sym_LBRACE, + ACTIONS(5439), 1, + aux_sym__block_terminator_token1, + STATE(932), 1, + sym__block_terminator, + STATE(3666), 2, sym_comment, sym_include, - [146182] = 6, + [148267] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(133), 1, + ACTIONS(5471), 1, sym__terminator, - ACTIONS(5466), 1, - aux_sym_function_call_token1, - STATE(3621), 2, + ACTIONS(5473), 1, + aux_sym_interface_statement_token1, + STATE(3667), 2, sym_comment, sym_include, - [146202] = 6, - ACTIONS(59), 1, + [148287] = 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(5374), 1, - aux_sym__block_terminator_token1, - STATE(1127), 1, - sym__block_terminator, - STATE(3622), 2, + ACTIONS(5475), 1, + sym_identifier, + ACTIONS(5477), 1, + anon_sym_STAR, + STATE(3668), 2, sym_comment, sym_include, - [146222] = 6, + [148307] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(5468), 1, + ACTIONS(5479), 1, sym_identifier, - STATE(4300), 1, + STATE(4674), 1, sym_qualified_name, - STATE(3623), 2, + STATE(3669), 2, sym_comment, sym_include, - [146242] = 6, + [148327] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(5470), 1, + ACTIONS(5481), 1, sym_identifier, - ACTIONS(5472), 1, + ACTIONS(5483), 1, anon_sym_STAR, - STATE(3624), 2, + STATE(3670), 2, sym_comment, sym_include, - [146262] = 6, - ACTIONS(59), 1, + [148347] = 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(5376), 1, - aux_sym__block_terminator_token1, - STATE(1494), 1, - sym__block_terminator, - STATE(3625), 2, + ACTIONS(5485), 1, + sym_identifier, + STATE(1597), 1, + sym_qualified_name, + STATE(3671), 2, sym_comment, sym_include, - [146282] = 6, + [148367] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5376), 1, - aux_sym__block_terminator_token1, - STATE(1492), 1, - sym__block_terminator, - STATE(3626), 2, - sym_comment, - sym_include, - [146302] = 6, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - ACTIONS(7), 1, - anon_sym_LBRACE, - ACTIONS(5474), 1, - sym_identifier, - ACTIONS(5476), 1, - anon_sym_COMMA, - STATE(3627), 2, + ACTIONS(5487), 2, + anon_sym_COLON, + aux_sym_repeat_tuning_token1, + STATE(3672), 2, sym_comment, sym_include, - [146322] = 5, + [148385] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(4511), 2, - anon_sym_COMMA, + ACTIONS(5489), 1, + aux_sym_access_tuning_token1, + ACTIONS(5491), 1, anon_sym_COLON, - STATE(3628), 2, + STATE(3673), 2, sym_comment, sym_include, - [146340] = 6, + [148405] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5478), 1, - aux_sym_variable_definition_token5, - ACTIONS(5480), 1, - aux_sym_variable_definition_token6, - STATE(3629), 2, + ACTIONS(5493), 1, + aux_sym_procedure_parameter_definition_token1, + ACTIONS(5495), 1, + aux_sym_function_statement_token1, + STATE(3674), 2, sym_comment, sym_include, - [146360] = 6, + [148425] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(5482), 1, + ACTIONS(5497), 1, sym_identifier, - STATE(1630), 1, - sym_qualified_name, - STATE(3630), 2, + ACTIONS(5499), 1, + anon_sym_STAR, + STATE(3675), 2, sym_comment, sym_include, - [146380] = 6, + [148445] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5484), 1, + ACTIONS(4585), 1, sym__terminator, - ACTIONS(5486), 1, - aux_sym_constructor_definition_token1, - STATE(3631), 2, + ACTIONS(4587), 1, + aux_sym_using_statement_token2, + STATE(3676), 2, sym_comment, sym_include, - [146400] = 5, - ACTIONS(59), 1, + [148465] = 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(1533), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - STATE(3632), 2, + ACTIONS(5501), 1, + sym_identifier, + ACTIONS(5503), 1, + anon_sym_STAR, + STATE(3677), 2, sym_comment, sym_include, - [146418] = 6, + [148485] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(5488), 1, + ACTIONS(5505), 1, sym_identifier, - ACTIONS(5490), 1, + ACTIONS(5507), 1, anon_sym_STAR, - STATE(3633), 2, + STATE(3678), 2, sym_comment, sym_include, - [146438] = 6, + [148505] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5492), 1, - sym__terminator, - ACTIONS(5494), 1, - aux_sym_interface_statement_token1, - STATE(3634), 2, + ACTIONS(5509), 1, + aux_sym__block_terminator_token1, + STATE(3543), 1, + sym__block_terminator, + STATE(3679), 2, sym_comment, sym_include, - [146458] = 6, - ACTIONS(59), 1, + [148525] = 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(5496), 1, - aux_sym_variable_definition_token5, - ACTIONS(5498), 1, - aux_sym_variable_definition_token6, - STATE(3635), 2, + ACTIONS(5511), 1, + sym_identifier, + STATE(1949), 1, + sym_qualified_name, + STATE(3680), 2, sym_comment, sym_include, - [146478] = 6, + [148545] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(5500), 1, + ACTIONS(5513), 1, sym_identifier, - ACTIONS(5502), 1, - anon_sym_STAR, - STATE(3636), 2, + STATE(4622), 1, + sym_qualified_name, + STATE(3681), 2, sym_comment, sym_include, - [146498] = 6, + [148565] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(5504), 1, + ACTIONS(5515), 1, sym_identifier, - ACTIONS(5506), 1, - anon_sym_STAR, - STATE(3637), 2, + STATE(3841), 1, + sym_qualified_name, + STATE(3682), 2, sym_comment, sym_include, - [146518] = 6, - ACTIONS(59), 1, + [148585] = 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(5374), 1, - aux_sym__block_terminator_token1, - STATE(1125), 1, - sym__block_terminator, - STATE(3638), 2, + ACTIONS(5517), 1, + sym_identifier, + STATE(4575), 1, + sym_qualified_name, + STATE(3683), 2, sym_comment, sym_include, - [146538] = 6, - ACTIONS(59), 1, + [148605] = 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(5508), 1, - sym__terminator, - ACTIONS(5510), 1, - anon_sym_METHOD, - STATE(3639), 2, + ACTIONS(5519), 1, + sym_identifier, + STATE(4571), 1, + sym_qualified_name, + STATE(3684), 2, sym_comment, sym_include, - [146558] = 6, + [148625] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5512), 1, - aux_sym_using_statement_token2, - ACTIONS(5514), 1, - aux_sym_input_close_statement_token2, - STATE(3640), 2, + ACTIONS(5451), 1, + aux_sym_on_error_phrase_token1, + STATE(4526), 1, + sym_on_error_phrase, + STATE(3685), 2, sym_comment, sym_include, - [146578] = 6, + [148645] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(5516), 1, + ACTIONS(5521), 1, sym_identifier, - STATE(3871), 1, + STATE(4564), 1, sym_qualified_name, - STATE(3641), 2, + STATE(3686), 2, sym_comment, sym_include, - [146598] = 6, + [148665] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(5518), 1, + ACTIONS(5523), 1, sym_identifier, - STATE(1595), 1, + STATE(4555), 1, sym_qualified_name, - STATE(3642), 2, + STATE(3687), 2, sym_comment, sym_include, - [146618] = 6, - ACTIONS(59), 1, + [148685] = 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(5520), 1, - sym__terminator, - ACTIONS(5522), 1, - anon_sym_METHOD, - STATE(3643), 2, + ACTIONS(5525), 1, + sym_identifier, + ACTIONS(5527), 1, + anon_sym_STAR, + STATE(3688), 2, sym_comment, sym_include, - [146638] = 6, + [148705] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5384), 1, - aux_sym_on_error_phrase_token1, - STATE(4285), 1, - sym_on_error_phrase, - STATE(3644), 2, + ACTIONS(5529), 1, + aux_sym_variable_definition_token5, + ACTIONS(5531), 1, + aux_sym_variable_definition_token6, + STATE(3689), 2, + sym_comment, + sym_include, + [148725] = 6, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_LBRACE, + ACTIONS(5533), 1, + sym_identifier, + STATE(1602), 1, + sym_qualified_name, + STATE(3690), 2, sym_comment, sym_include, - [146658] = 6, + [148745] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5512), 1, - aux_sym_using_statement_token2, - ACTIONS(5524), 1, - aux_sym_input_close_statement_token2, - STATE(3645), 2, + ACTIONS(5509), 1, + aux_sym__block_terminator_token1, + STATE(3521), 1, + sym__block_terminator, + STATE(3691), 2, sym_comment, sym_include, - [146678] = 6, + [148765] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5396), 1, + ACTIONS(5509), 1, aux_sym__block_terminator_token1, - STATE(3365), 1, + STATE(3523), 1, sym__block_terminator, - STATE(3646), 2, + STATE(3692), 2, sym_comment, sym_include, - [146698] = 6, + [148785] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5526), 1, - aux_sym_variable_definition_token5, - ACTIONS(5528), 1, - aux_sym_variable_definition_token6, - STATE(3647), 2, + ACTIONS(5535), 1, + anon_sym_DOT, + ACTIONS(5537), 1, + aux_sym__case_terminator_token1, + STATE(3693), 2, sym_comment, sym_include, - [146718] = 6, + [148805] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(5530), 1, + ACTIONS(5539), 1, sym_identifier, - STATE(4104), 1, - sym_qualified_name, - STATE(3648), 2, + ACTIONS(5541), 1, + sym__integer_literal, + STATE(3694), 2, + sym_comment, + sym_include, + [148825] = 6, + ACTIONS(59), 1, + anon_sym_SLASH_SLASH, + ACTIONS(61), 1, + anon_sym_SLASH_STAR, + ACTIONS(65), 1, + anon_sym_LBRACE, + ACTIONS(197), 1, + sym__terminator, + ACTIONS(5543), 1, + anon_sym_NO_DASHERROR, + STATE(3695), 2, sym_comment, sym_include, - [146738] = 6, + [148845] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(5532), 1, + ACTIONS(5545), 1, sym_identifier, - ACTIONS(5534), 1, - anon_sym_COMMA, - STATE(3649), 2, + ACTIONS(5547), 1, + sym__terminator, + STATE(3696), 2, sym_comment, sym_include, - [146758] = 6, + [148865] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5536), 1, + ACTIONS(529), 1, sym__terminator, - ACTIONS(5538), 1, - anon_sym_METHOD, - STATE(3650), 2, + ACTIONS(5549), 1, + anon_sym_NO_DASHERROR, + STATE(3697), 2, sym_comment, sym_include, - [146778] = 6, + [148885] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5374), 1, + ACTIONS(5509), 1, aux_sym__block_terminator_token1, - STATE(1124), 1, + STATE(3524), 1, sym__block_terminator, - STATE(3651), 2, - sym_comment, - sym_include, - [146798] = 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(5540), 1, - anon_sym_, - STATE(3652), 2, + STATE(3698), 2, sym_comment, sym_include, - [146818] = 6, + [148905] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5396), 1, + ACTIONS(5509), 1, aux_sym__block_terminator_token1, - STATE(3366), 1, + STATE(3525), 1, sym__block_terminator, - STATE(3653), 2, + STATE(3699), 2, sym_comment, sym_include, - [146838] = 6, + [148925] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5542), 1, - aux_sym_variable_definition_token5, - ACTIONS(5544), 1, - aux_sym_variable_definition_token6, - STATE(3654), 2, - sym_comment, - sym_include, - [146858] = 6, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - ACTIONS(7), 1, - anon_sym_LBRACE, - ACTIONS(5546), 1, - sym_identifier, - STATE(1616), 1, - sym_qualified_name, - STATE(3655), 2, - sym_comment, - sym_include, - [146878] = 6, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - ACTIONS(7), 1, - anon_sym_LBRACE, - ACTIONS(4719), 1, + ACTIONS(5551), 1, + aux_sym_access_tuning_token1, + ACTIONS(5553), 1, anon_sym_COLON, - ACTIONS(5548), 1, - sym_identifier, - STATE(3656), 2, + STATE(3700), 2, sym_comment, sym_include, - [146898] = 6, + [148945] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5396), 1, + ACTIONS(5509), 1, aux_sym__block_terminator_token1, - STATE(3367), 1, + STATE(3526), 1, sym__block_terminator, - STATE(3657), 2, + STATE(3701), 2, sym_comment, sym_include, - [146918] = 6, + [148965] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5550), 1, - aux_sym_access_tuning_token1, - ACTIONS(5552), 1, - anon_sym_COLON, - STATE(3658), 2, + ACTIONS(5555), 1, + anon_sym_DOT, + ACTIONS(5557), 1, + aux_sym__case_terminator_token1, + STATE(3702), 2, sym_comment, sym_include, - [146938] = 6, + [148985] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5554), 1, + ACTIONS(5559), 1, aux_sym_variable_definition_token5, - ACTIONS(5556), 1, + ACTIONS(5561), 1, aux_sym_variable_definition_token6, - STATE(3659), 2, + STATE(3703), 2, sym_comment, sym_include, - [146958] = 6, + [149005] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5374), 1, + ACTIONS(5509), 1, aux_sym__block_terminator_token1, - STATE(1123), 1, + STATE(3527), 1, sym__block_terminator, - STATE(3660), 2, + STATE(3704), 2, sym_comment, sym_include, - [146978] = 6, + [149025] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5558), 1, - aux_sym_input_close_statement_token2, - ACTIONS(5560), 1, - aux_sym_output_stream_statement_token1, - STATE(3661), 2, - sym_comment, - sym_include, - [146998] = 6, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - ACTIONS(7), 1, - anon_sym_LBRACE, - ACTIONS(5562), 1, - sym_identifier, - STATE(1605), 1, - sym_qualified_name, - STATE(3662), 2, + ACTIONS(5439), 1, + aux_sym__block_terminator_token1, + STATE(913), 1, + sym__block_terminator, + STATE(3705), 2, sym_comment, sym_include, - [147018] = 6, + [149045] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5560), 1, - aux_sym_output_stream_statement_token1, - ACTIONS(5564), 1, - aux_sym_input_close_statement_token2, - STATE(3663), 2, + ACTIONS(5509), 1, + aux_sym__block_terminator_token1, + STATE(3528), 1, + sym__block_terminator, + STATE(3706), 2, sym_comment, sym_include, - [147038] = 6, + [149065] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(4847), 1, - anon_sym_COLON, - ACTIONS(5566), 1, + ACTIONS(5563), 1, sym_identifier, - STATE(3664), 2, + STATE(1609), 1, + sym_qualified_name, + STATE(3707), 2, sym_comment, sym_include, - [147058] = 6, - ACTIONS(59), 1, + [149085] = 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(5376), 1, - aux_sym__block_terminator_token1, - STATE(1481), 1, - sym__block_terminator, - STATE(3665), 2, + ACTIONS(5565), 1, + sym_identifier, + STATE(1957), 1, + sym_qualified_name, + STATE(3708), 2, sym_comment, sym_include, - [147078] = 6, + [149105] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(5568), 1, + ACTIONS(4573), 1, + anon_sym_COLON, + ACTIONS(5567), 1, sym_identifier, - STATE(1932), 1, - sym_qualified_name, - STATE(3666), 2, + STATE(3709), 2, sym_comment, sym_include, - [147098] = 6, + [149125] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5396), 1, + ACTIONS(5509), 1, aux_sym__block_terminator_token1, - STATE(3368), 1, + STATE(3529), 1, sym__block_terminator, - STATE(3667), 2, - sym_comment, - sym_include, - [147118] = 6, - ACTIONS(59), 1, - anon_sym_SLASH_SLASH, - ACTIONS(61), 1, - anon_sym_SLASH_STAR, - ACTIONS(65), 1, - anon_sym_LBRACE, - ACTIONS(5370), 1, - anon_sym_DOT, - ACTIONS(5570), 1, - aux_sym__function_terminator_token1, - STATE(3668), 2, + STATE(3710), 2, sym_comment, sym_include, - [147138] = 6, + [149145] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5376), 1, + ACTIONS(5509), 1, aux_sym__block_terminator_token1, - STATE(1464), 1, + STATE(3532), 1, sym__block_terminator, - STATE(3669), 2, + STATE(3711), 2, sym_comment, sym_include, - [147158] = 6, + [149165] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(5572), 1, + ACTIONS(5569), 1, sym_identifier, - ACTIONS(5574), 1, + ACTIONS(5571), 1, sym__integer_literal, - STATE(3670), 2, + STATE(3712), 2, sym_comment, sym_include, - [147178] = 6, - ACTIONS(3), 1, + [149185] = 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(5576), 1, - sym_identifier, - STATE(4263), 1, - sym_qualified_name, - STATE(3671), 2, + ACTIONS(129), 1, + sym__terminator, + ACTIONS(5573), 1, + aux_sym_function_call_token1, + STATE(3713), 2, sym_comment, sym_include, - [147198] = 6, + [149205] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5396), 1, + ACTIONS(5509), 1, aux_sym__block_terminator_token1, - STATE(3369), 1, + STATE(3534), 1, sym__block_terminator, - STATE(3672), 2, + STATE(3714), 2, sym_comment, sym_include, - [147218] = 6, + [149225] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(5578), 1, + ACTIONS(5575), 1, sym_identifier, - ACTIONS(5580), 1, - anon_sym_COMMA, - STATE(3673), 2, + STATE(4371), 1, + sym_qualified_name, + STATE(3715), 2, sym_comment, sym_include, - [147238] = 6, + [149245] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5396), 1, - aux_sym__block_terminator_token1, - STATE(3373), 1, - sym__block_terminator, - STATE(3674), 2, + ACTIONS(5577), 1, + anon_sym_DOT, + ACTIONS(5579), 1, + aux_sym__function_terminator_token1, + STATE(3716), 2, sym_comment, sym_include, - [147258] = 6, + [149265] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5582), 1, + ACTIONS(5581), 1, aux_sym_using_statement_token2, - ACTIONS(5584), 1, + ACTIONS(5583), 1, aux_sym_input_close_statement_token2, - STATE(3675), 2, + STATE(3717), 2, sym_comment, sym_include, - [147278] = 6, + [149285] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5582), 1, + ACTIONS(5581), 1, aux_sym_using_statement_token2, - ACTIONS(5586), 1, + ACTIONS(5585), 1, aux_sym_input_close_statement_token2, - STATE(3676), 2, + STATE(3718), 2, sym_comment, sym_include, - [147298] = 6, - ACTIONS(59), 1, + [149305] = 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(5376), 1, - aux_sym__block_terminator_token1, - STATE(1461), 1, - sym__block_terminator, - STATE(3677), 2, + ACTIONS(4681), 1, + anon_sym_COLON, + ACTIONS(5587), 1, + sym_identifier, + STATE(3719), 2, sym_comment, sym_include, - [147318] = 6, - ACTIONS(59), 1, + [149325] = 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(5374), 1, - aux_sym__block_terminator_token1, - STATE(843), 1, - sym__block_terminator, - STATE(3678), 2, + ACTIONS(5589), 1, + sym_identifier, + ACTIONS(5591), 1, + anon_sym_COMMA, + STATE(3720), 2, sym_comment, sym_include, - [147338] = 5, + [149345] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(4414), 2, - anon_sym_COMMA, - anon_sym_COLON, - STATE(3679), 2, + ACTIONS(5509), 1, + aux_sym__block_terminator_token1, + STATE(3536), 1, + sym__block_terminator, + STATE(3721), 2, sym_comment, sym_include, - [147356] = 6, + [149365] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5588), 1, - anon_sym_COMMA, - ACTIONS(5590), 1, - aux_sym_on_error_phrase_token3, - STATE(3680), 2, + ACTIONS(5509), 1, + aux_sym__block_terminator_token1, + STATE(3538), 1, + sym__block_terminator, + STATE(3722), 2, sym_comment, sym_include, - [147376] = 6, + [149385] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5592), 1, + ACTIONS(5593), 1, aux_sym_input_close_statement_token2, - ACTIONS(5594), 1, + ACTIONS(5595), 1, aux_sym_output_stream_statement_token1, - STATE(3681), 2, + STATE(3723), 2, sym_comment, sym_include, - [147396] = 6, + [149405] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5594), 1, + ACTIONS(5595), 1, aux_sym_output_stream_statement_token1, - ACTIONS(5596), 1, + ACTIONS(5597), 1, aux_sym_input_close_statement_token2, - STATE(3682), 2, + STATE(3724), 2, sym_comment, sym_include, - [147416] = 6, + [149425] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5598), 1, + ACTIONS(5599), 1, anon_sym_COMMA, - ACTIONS(5600), 1, + ACTIONS(5601), 1, aux_sym_on_error_phrase_token3, - STATE(3683), 2, + STATE(3725), 2, sym_comment, sym_include, - [147436] = 6, - ACTIONS(59), 1, + [149445] = 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(5602), 1, - sym__terminator, - ACTIONS(5604), 1, - aux_sym_constructor_definition_token1, - STATE(3684), 2, + ACTIONS(4918), 1, + anon_sym_COLON, + ACTIONS(5603), 1, + sym_identifier, + STATE(3726), 2, sym_comment, sym_include, - [147456] = 6, + [149465] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5374), 1, + ACTIONS(5509), 1, aux_sym__block_terminator_token1, - STATE(1120), 1, + STATE(3539), 1, sym__block_terminator, - STATE(3685), 2, + STATE(3727), 2, sym_comment, sym_include, - [147476] = 6, + [149485] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5396), 1, + ACTIONS(5509), 1, aux_sym__block_terminator_token1, - STATE(3374), 1, + STATE(3176), 1, sym__block_terminator, - STATE(3686), 2, + STATE(3728), 2, sym_comment, sym_include, - [147496] = 6, + [149505] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5374), 1, - aux_sym__block_terminator_token1, - STATE(1073), 1, - sym__block_terminator, - STATE(3687), 2, + ACTIONS(5605), 1, + aux_sym_variable_definition_token5, + ACTIONS(5607), 1, + aux_sym_variable_definition_token6, + STATE(3729), 2, sym_comment, sym_include, - [147516] = 6, + [149525] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5606), 1, - aux_sym_variable_definition_token5, - ACTIONS(5608), 1, - aux_sym_variable_definition_token6, - STATE(3688), 2, + ACTIONS(5009), 1, + aux_sym_on_stop_phrase_token1, + ACTIONS(5011), 1, + aux_sym_on_quit_phrase_token1, + STATE(3730), 2, sym_comment, sym_include, - [147536] = 6, + [149545] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5396), 1, + ACTIONS(5509), 1, aux_sym__block_terminator_token1, - STATE(3375), 1, + STATE(3542), 1, sym__block_terminator, - STATE(3689), 2, + STATE(3731), 2, + sym_comment, + sym_include, + [149565] = 6, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_LBRACE, + ACTIONS(5609), 1, + sym_identifier, + STATE(1613), 1, + sym_qualified_name, + STATE(3732), 2, + sym_comment, + sym_include, + [149585] = 5, + ACTIONS(59), 1, + anon_sym_SLASH_SLASH, + ACTIONS(61), 1, + anon_sym_SLASH_STAR, + ACTIONS(65), 1, + anon_sym_LBRACE, + ACTIONS(1613), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + STATE(3733), 2, sym_comment, sym_include, - [147556] = 5, + [149603] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5610), 2, + ACTIONS(5611), 2, aux_sym_using_statement_token3, aux_sym_using_statement_token4, - STATE(3690), 2, + STATE(3734), 2, sym_comment, sym_include, - [147574] = 6, - ACTIONS(3), 1, + [149621] = 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(5612), 1, - sym_identifier, - STATE(1604), 1, - sym_qualified_name, - STATE(3691), 2, + ACTIONS(5613), 1, + aux_sym_variable_definition_token5, + ACTIONS(5615), 1, + aux_sym_variable_definition_token6, + STATE(3735), 2, sym_comment, sym_include, - [147594] = 6, + [149641] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5422), 1, - sym__terminator, - ACTIONS(5614), 1, - anon_sym_METHOD, - STATE(3692), 2, + ACTIONS(5509), 1, + aux_sym__block_terminator_token1, + STATE(3545), 1, + sym__block_terminator, + STATE(3736), 2, sym_comment, sym_include, - [147614] = 5, + [149661] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5616), 2, + ACTIONS(5617), 2, aux_sym_on_error_phrase_token2, aux_sym_on_error_phrase_token7, - STATE(3693), 2, + STATE(3737), 2, sym_comment, sym_include, - [147632] = 6, + [149679] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5618), 1, + ACTIONS(5427), 1, aux_sym_scope_tuning_token1, - STATE(4160), 1, + STATE(4301), 1, sym_new_expression, - STATE(3694), 2, + STATE(3738), 2, sym_comment, sym_include, - [147652] = 6, - ACTIONS(59), 1, + [149699] = 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(4887), 1, - aux_sym_on_stop_phrase_token1, - ACTIONS(4889), 1, - aux_sym_on_quit_phrase_token1, - STATE(3695), 2, + ACTIONS(5619), 1, + sym_identifier, + ACTIONS(5621), 1, + anon_sym_STAR, + STATE(3739), 2, sym_comment, sym_include, - [147672] = 6, + [149719] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5620), 1, - aux_sym_variable_definition_token5, - ACTIONS(5622), 1, - aux_sym_variable_definition_token6, - STATE(3696), 2, + ACTIONS(5577), 1, + anon_sym_DOT, + ACTIONS(5623), 1, + aux_sym__case_terminator_token1, + STATE(3740), 2, sym_comment, sym_include, - [147692] = 6, + [149739] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5624), 1, - sym__terminator, - ACTIONS(5626), 1, - anon_sym_METHOD, - STATE(3697), 2, + ACTIONS(5625), 1, + aux_sym_using_statement_token2, + ACTIONS(5627), 1, + aux_sym_input_close_statement_token2, + STATE(3741), 2, sym_comment, sym_include, - [147712] = 5, + [149759] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5628), 2, - aux_sym_using_statement_token3, - aux_sym_using_statement_token4, - STATE(3698), 2, + ACTIONS(5509), 1, + aux_sym__block_terminator_token1, + STATE(3546), 1, + sym__block_terminator, + STATE(3742), 2, sym_comment, sym_include, - [147730] = 6, + [149779] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(5630), 1, + ACTIONS(5629), 1, sym_identifier, - ACTIONS(5632), 1, - anon_sym_STAR, - STATE(3699), 2, + STATE(1622), 1, + sym_qualified_name, + STATE(3743), 2, sym_comment, sym_include, - [147750] = 6, - ACTIONS(3), 1, + [149799] = 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(5634), 1, - sym_identifier, - STATE(1593), 1, - sym_qualified_name, - STATE(3700), 2, + ACTIONS(5577), 1, + anon_sym_DOT, + ACTIONS(5631), 1, + aux_sym__procedure_terminator_token1, + STATE(3744), 2, sym_comment, sym_include, - [147770] = 6, - ACTIONS(59), 1, + [149819] = 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(5636), 1, - sym__terminator, - ACTIONS(5638), 1, - anon_sym_METHOD, - STATE(3701), 2, + ACTIONS(2415), 1, + anon_sym_RPAREN, + ACTIONS(5633), 1, + anon_sym_, + STATE(3745), 2, sym_comment, sym_include, - [147790] = 5, + [149839] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5640), 2, - aux_sym_on_error_phrase_token2, - aux_sym_on_error_phrase_token7, - STATE(3702), 2, + ACTIONS(5625), 1, + aux_sym_using_statement_token2, + ACTIONS(5635), 1, + aux_sym_input_close_statement_token2, + STATE(3746), 2, sym_comment, sym_include, - [147808] = 6, + [149859] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(5642), 1, + ACTIONS(5637), 1, sym_identifier, - STATE(285), 1, + STATE(298), 1, sym_qualified_name, - STATE(3703), 2, + STATE(3747), 2, sym_comment, sym_include, - [147828] = 6, - ACTIONS(3), 1, + [149879] = 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(5644), 1, - sym_identifier, - ACTIONS(5646), 1, - sym__terminator, - STATE(3704), 2, + ACTIONS(5639), 1, + aux_sym_variable_definition_token5, + ACTIONS(5641), 1, + aux_sym_variable_definition_token6, + STATE(3748), 2, sym_comment, sym_include, - [147848] = 6, + [149899] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(5648), 1, + ACTIONS(5643), 1, sym_identifier, - STATE(4548), 1, + STATE(4204), 1, sym_qualified_name, - STATE(3705), 2, + STATE(3749), 2, sym_comment, sym_include, - [147868] = 6, - ACTIONS(59), 1, + [149919] = 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(5396), 1, - aux_sym__block_terminator_token1, - STATE(3380), 1, - sym__block_terminator, - STATE(3706), 2, + ACTIONS(5645), 1, + sym_identifier, + ACTIONS(5647), 1, + anon_sym_COMMA, + STATE(3750), 2, sym_comment, sym_include, - [147888] = 6, + [149939] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5650), 1, - anon_sym_DOT, - ACTIONS(5652), 1, - aux_sym__case_terminator_token1, - STATE(3707), 2, + ACTIONS(5649), 1, + aux_sym_variable_definition_token5, + ACTIONS(5651), 1, + aux_sym_variable_definition_token6, + STATE(3751), 2, sym_comment, sym_include, - [147908] = 6, + [149959] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(5654), 1, + ACTIONS(5653), 1, sym_identifier, - ACTIONS(5656), 1, - anon_sym_COMMA, - STATE(3708), 2, + STATE(1640), 1, + sym_qualified_name, + STATE(3752), 2, sym_comment, sym_include, - [147928] = 6, + [149979] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5396), 1, + ACTIONS(5509), 1, aux_sym__block_terminator_token1, - STATE(3381), 1, + STATE(3548), 1, sym__block_terminator, - STATE(3709), 2, + STATE(3753), 2, sym_comment, sym_include, - [147948] = 6, + [149999] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(5658), 1, + ACTIONS(5655), 1, sym_identifier, - STATE(2687), 1, + STATE(2719), 1, sym_qualified_name, - STATE(3710), 2, + STATE(3754), 2, sym_comment, sym_include, - [147968] = 6, + [150019] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5618), 1, - aux_sym_scope_tuning_token1, - STATE(4372), 1, - sym_new_expression, - STATE(3711), 2, + ACTIONS(5657), 1, + aux_sym_variable_definition_token5, + ACTIONS(5659), 1, + aux_sym_variable_definition_token6, + STATE(3755), 2, sym_comment, sym_include, - [147988] = 6, + [150039] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5376), 1, - aux_sym__block_terminator_token1, - STATE(1406), 1, - sym__block_terminator, - STATE(3712), 2, + ACTIONS(5661), 1, + aux_sym_input_close_statement_token2, + ACTIONS(5663), 1, + aux_sym_output_stream_statement_token1, + STATE(3756), 2, sym_comment, sym_include, - [148008] = 6, + [150059] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5396), 1, + ACTIONS(5509), 1, aux_sym__block_terminator_token1, - STATE(3382), 1, + STATE(3520), 1, sym__block_terminator, - STATE(3713), 2, + STATE(3757), 2, sym_comment, sym_include, - [148028] = 6, - ACTIONS(59), 1, + [150079] = 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(631), 1, - sym__terminator, - ACTIONS(5660), 1, - anon_sym_NO_DASHERROR, - STATE(3714), 2, + ACTIONS(5665), 1, + sym_identifier, + STATE(1619), 1, + sym_qualified_name, + STATE(3758), 2, sym_comment, sym_include, - [148048] = 6, - ACTIONS(3), 1, + [150099] = 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(5662), 1, - sym_identifier, - ACTIONS(5664), 1, - sym__integer_literal, - STATE(3715), 2, + ACTIONS(5663), 1, + aux_sym_output_stream_statement_token1, + ACTIONS(5667), 1, + aux_sym_input_close_statement_token2, + STATE(3759), 2, sym_comment, sym_include, - [148068] = 6, + [150119] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5666), 1, - sym__terminator, - ACTIONS(5668), 1, - aux_sym_primitive_type_token19, - STATE(3716), 2, + ACTIONS(5669), 1, + aux_sym__block_terminator_token1, + STATE(1370), 1, + sym__block_terminator, + STATE(3760), 2, sym_comment, sym_include, - [148088] = 6, + [150139] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5396), 1, + ACTIONS(5509), 1, aux_sym__block_terminator_token1, - STATE(3386), 1, + STATE(3551), 1, sym__block_terminator, - STATE(3717), 2, + STATE(3761), 2, sym_comment, sym_include, - [148108] = 6, + [150159] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(5670), 1, + ACTIONS(5671), 1, sym_identifier, - ACTIONS(5672), 1, - sym__integer_literal, - STATE(3718), 2, + STATE(4189), 1, + sym_qualified_name, + STATE(3762), 2, sym_comment, sym_include, - [148128] = 6, + [150179] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(207), 1, - sym__terminator, - ACTIONS(5674), 1, - anon_sym_NO_DASHERROR, - STATE(3719), 2, + ACTIONS(5669), 1, + aux_sym__block_terminator_token1, + STATE(1541), 1, + sym__block_terminator, + STATE(3763), 2, sym_comment, sym_include, - [148148] = 6, + [150199] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5396), 1, + ACTIONS(5509), 1, aux_sym__block_terminator_token1, - STATE(3388), 1, + STATE(3554), 1, sym__block_terminator, - STATE(3720), 2, + STATE(3764), 2, sym_comment, sym_include, - [148168] = 6, - ACTIONS(3), 1, + [150219] = 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(5676), 1, - sym_identifier, - STATE(292), 1, - sym_qualified_name, - STATE(3721), 2, + ACTIONS(5673), 1, + sym__terminator, + ACTIONS(5675), 1, + anon_sym_METHOD, + STATE(3765), 2, sym_comment, sym_include, - [148188] = 6, + [150239] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(5678), 1, + ACTIONS(5677), 1, sym_identifier, - ACTIONS(5680), 1, + ACTIONS(5679), 1, anon_sym_COMMA, - STATE(3722), 2, + STATE(3766), 2, sym_comment, sym_include, - [148208] = 6, + [150259] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(5682), 1, + ACTIONS(5681), 1, sym_identifier, - ACTIONS(5684), 1, + ACTIONS(5683), 1, anon_sym_COMMA, - STATE(3723), 2, + STATE(3767), 2, sym_comment, sym_include, - [148228] = 6, + [150279] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(5686), 1, + ACTIONS(5685), 1, sym_identifier, - STATE(1862), 1, - sym_qualified_name, - STATE(3724), 2, + ACTIONS(5687), 1, + anon_sym_COMMA, + STATE(3768), 2, sym_comment, sym_include, - [148248] = 6, + [150299] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(5688), 1, + ACTIONS(5689), 1, sym_identifier, - ACTIONS(5690), 1, - sym__integer_literal, - STATE(3725), 2, + ACTIONS(5691), 1, + anon_sym_COMMA, + STATE(3769), 2, sym_comment, sym_include, - [148268] = 5, + [150319] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2612), 2, - anon_sym_COMMA, - anon_sym_COLON, - STATE(3726), 2, + ACTIONS(5465), 1, + aux_sym__block_terminator_token1, + STATE(1100), 1, + sym__block_terminator, + STATE(3770), 2, sym_comment, sym_include, - [148286] = 6, - ACTIONS(3), 1, + [150339] = 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(5692), 1, - sym_identifier, - STATE(286), 1, - sym_qualified_name, - STATE(3727), 2, + ACTIONS(5465), 1, + aux_sym__block_terminator_token1, + STATE(1115), 1, + sym__block_terminator, + STATE(3771), 2, sym_comment, sym_include, - [148306] = 6, + [150359] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5694), 1, - anon_sym_DOT, - ACTIONS(5696), 1, - aux_sym__case_terminator_token1, - STATE(3728), 2, + ACTIONS(5465), 1, + aux_sym__block_terminator_token1, + STATE(1118), 1, + sym__block_terminator, + STATE(3772), 2, sym_comment, sym_include, - [148326] = 6, + [150379] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5376), 1, + ACTIONS(5465), 1, aux_sym__block_terminator_token1, - STATE(1424), 1, + STATE(1123), 1, sym__block_terminator, - STATE(3729), 2, + STATE(3773), 2, + sym_comment, + sym_include, + [150399] = 6, + ACTIONS(59), 1, + anon_sym_SLASH_SLASH, + ACTIONS(61), 1, + anon_sym_SLASH_STAR, + ACTIONS(65), 1, + anon_sym_LBRACE, + ACTIONS(5693), 1, + aux_sym_variable_definition_token5, + ACTIONS(5695), 1, + aux_sym_variable_definition_token6, + STATE(3774), 2, sym_comment, sym_include, - [148346] = 5, + [150419] = 6, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_LBRACE, + ACTIONS(5697), 1, + sym_identifier, + STATE(1608), 1, + sym_qualified_name, + STATE(3775), 2, + sym_comment, + sym_include, + [150439] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5698), 2, + ACTIONS(5699), 2, aux_sym_on_error_phrase_token2, aux_sym_on_error_phrase_token7, - STATE(3730), 2, + STATE(3776), 2, sym_comment, sym_include, - [148364] = 6, + [150457] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5618), 1, + ACTIONS(5427), 1, aux_sym_scope_tuning_token1, - STATE(4127), 1, + STATE(4398), 1, sym_new_expression, - STATE(3731), 2, + STATE(3777), 2, sym_comment, sym_include, - [148384] = 6, + [150477] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5700), 1, - aux_sym_variable_definition_token5, - ACTIONS(5702), 1, - aux_sym_function_parameter_token2, - STATE(3732), 2, + ACTIONS(5701), 1, + anon_sym_COMMA, + ACTIONS(5703), 1, + aux_sym_on_error_phrase_token3, + STATE(3778), 2, sym_comment, sym_include, - [148404] = 6, + [150497] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5396), 1, + ACTIONS(5509), 1, aux_sym__block_terminator_token1, - STATE(3390), 1, + STATE(3559), 1, sym__block_terminator, - STATE(3733), 2, + STATE(3779), 2, sym_comment, sym_include, - [148424] = 6, + [150517] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5396), 1, - aux_sym__block_terminator_token1, - STATE(3058), 1, - sym__block_terminator, - STATE(3734), 2, + ACTIONS(4962), 1, + aux_sym_on_stop_phrase_token1, + ACTIONS(4964), 1, + aux_sym_on_quit_phrase_token1, + STATE(3780), 2, sym_comment, sym_include, - [148444] = 6, - ACTIONS(3), 1, + [150537] = 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(5704), 1, - sym_identifier, - ACTIONS(5706), 1, - sym__integer_literal, - STATE(3735), 2, + ACTIONS(5509), 1, + aux_sym__block_terminator_token1, + STATE(3560), 1, + sym__block_terminator, + STATE(3781), 2, sym_comment, sym_include, - [148464] = 6, + [150557] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5376), 1, + ACTIONS(5669), 1, aux_sym__block_terminator_token1, - STATE(1420), 1, + STATE(1530), 1, sym__block_terminator, - STATE(3736), 2, + STATE(3782), 2, sym_comment, sym_include, - [148484] = 5, + [150577] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(3369), 2, - anon_sym_COMMA, - anon_sym_COLON, - STATE(3737), 2, + ACTIONS(5669), 1, + aux_sym__block_terminator_token1, + STATE(1529), 1, + sym__block_terminator, + STATE(3783), 2, sym_comment, sym_include, - [148502] = 6, + [150597] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5374), 1, - aux_sym__block_terminator_token1, - STATE(1063), 1, - sym__block_terminator, - STATE(3738), 2, + ACTIONS(5705), 2, + anon_sym_COMMA, + anon_sym_COLON, + STATE(3784), 2, sym_comment, sym_include, - [148522] = 6, + [150615] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5708), 1, - sym__terminator, - ACTIONS(5710), 1, - aux_sym_constructor_definition_token1, - STATE(3739), 2, + ACTIONS(5707), 1, + aux_sym_variable_definition_token5, + ACTIONS(5709), 1, + aux_sym_variable_definition_token6, + STATE(3785), 2, sym_comment, sym_include, - [148542] = 6, + [150635] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5712), 1, - sym__terminator, - ACTIONS(5714), 1, - aux_sym_interface_statement_token1, - STATE(3740), 2, + ACTIONS(5711), 2, + aux_sym_using_statement_token3, + aux_sym_using_statement_token4, + STATE(3786), 2, sym_comment, sym_include, - [148562] = 6, - ACTIONS(3), 1, + [150653] = 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(5716), 1, - sym_identifier, - STATE(1608), 1, - sym_qualified_name, - STATE(3741), 2, + ACTIONS(5465), 1, + aux_sym__block_terminator_token1, + STATE(1126), 1, + sym__block_terminator, + STATE(3787), 2, sym_comment, sym_include, - [148582] = 6, + [150673] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(5718), 1, + ACTIONS(5713), 1, sym_identifier, - STATE(4088), 1, + STATE(4331), 1, sym_qualified_name, - STATE(3742), 2, + STATE(3788), 2, sym_comment, sym_include, - [148602] = 6, + [150693] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(5720), 1, + ACTIONS(5715), 1, sym_identifier, - STATE(2654), 1, + STATE(2766), 1, sym_qualified_name, - STATE(3743), 2, + STATE(3789), 2, sym_comment, sym_include, - [148622] = 6, + [150713] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5396), 1, - aux_sym__block_terminator_token1, - STATE(3398), 1, - sym__block_terminator, - STATE(3744), 2, + ACTIONS(5717), 1, + sym__terminator, + ACTIONS(5719), 1, + anon_sym_METHOD, + STATE(3790), 2, sym_comment, sym_include, - [148642] = 6, + [150733] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5374), 1, + ACTIONS(5465), 1, aux_sym__block_terminator_token1, - STATE(1055), 1, + STATE(1128), 1, sym__block_terminator, - STATE(3745), 2, + STATE(3791), 2, sym_comment, sym_include, - [148662] = 6, - ACTIONS(59), 1, + [150753] = 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(5396), 1, - aux_sym__block_terminator_token1, - STATE(3399), 1, - sym__block_terminator, - STATE(3746), 2, + ACTIONS(5721), 1, + sym_identifier, + STATE(1605), 1, + sym_qualified_name, + STATE(3792), 2, sym_comment, sym_include, - [148682] = 6, + [150773] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5374), 1, - aux_sym__block_terminator_token1, - STATE(1047), 1, - sym__block_terminator, - STATE(3747), 2, + ACTIONS(5723), 2, + aux_sym_on_error_phrase_token2, + aux_sym_on_error_phrase_token7, + STATE(3793), 2, sym_comment, sym_include, - [148702] = 6, - ACTIONS(59), 1, + [150791] = 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(215), 1, + ACTIONS(5725), 1, + sym_identifier, + ACTIONS(5727), 1, sym__terminator, - ACTIONS(5722), 1, - aux_sym_function_call_token1, - STATE(3748), 2, + STATE(3794), 2, sym_comment, sym_include, - [148722] = 6, + [150811] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5724), 1, - sym__terminator, - ACTIONS(5726), 1, - aux_sym_primitive_type_token19, - STATE(3749), 2, + ACTIONS(5427), 1, + aux_sym_scope_tuning_token1, + STATE(4461), 1, + sym_new_expression, + STATE(3795), 2, sym_comment, sym_include, - [148742] = 6, - ACTIONS(59), 1, + [150831] = 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(5728), 1, - sym__terminator, - ACTIONS(5730), 1, - anon_sym_COLON, - STATE(3750), 2, + ACTIONS(5729), 1, + sym_identifier, + STATE(4700), 1, + sym_qualified_name, + STATE(3796), 2, sym_comment, sym_include, - [148762] = 6, + [150851] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5732), 1, + ACTIONS(5509), 1, aux_sym__block_terminator_token1, - STATE(1435), 1, + STATE(3563), 1, sym__block_terminator, - STATE(3751), 2, + STATE(3797), 2, sym_comment, sym_include, - [148782] = 6, + [150871] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5734), 1, + ACTIONS(5731), 1, sym__terminator, - ACTIONS(5736), 1, - anon_sym_COLON, - STATE(3752), 2, + ACTIONS(5733), 1, + anon_sym_METHOD, + STATE(3798), 2, + sym_comment, + sym_include, + [150891] = 6, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_LBRACE, + ACTIONS(5735), 1, + sym_identifier, + ACTIONS(5737), 1, + anon_sym_COMMA, + STATE(3799), 2, sym_comment, sym_include, - [148802] = 6, + [150911] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5738), 1, + ACTIONS(5669), 1, aux_sym__block_terminator_token1, - STATE(1050), 1, + STATE(1252), 1, sym__block_terminator, - STATE(3753), 2, + STATE(3800), 2, sym_comment, sym_include, - [148822] = 6, - ACTIONS(59), 1, + [150931] = 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(5734), 1, - sym__terminator, - ACTIONS(5740), 1, - anon_sym_METHOD, - STATE(3754), 2, + ACTIONS(5739), 1, + sym_identifier, + ACTIONS(5741), 1, + sym__integer_literal, + STATE(3801), 2, sym_comment, sym_include, - [148842] = 6, + [150951] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5742), 1, - anon_sym_LPAREN, - STATE(2704), 1, - sym_query_fields, - STATE(3755), 2, + ACTIONS(5439), 1, + aux_sym__block_terminator_token1, + STATE(941), 1, + sym__block_terminator, + STATE(3802), 2, sym_comment, sym_include, - [148862] = 6, + [150971] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5744), 1, - sym__terminator, - ACTIONS(5746), 1, - anon_sym_METHOD, - STATE(3756), 2, + ACTIONS(5465), 1, + aux_sym__block_terminator_token1, + STATE(1129), 1, + sym__block_terminator, + STATE(3803), 2, sym_comment, sym_include, - [148882] = 6, + [150991] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(5748), 1, + ACTIONS(5743), 1, sym_identifier, - STATE(583), 1, - sym_qualified_name, - STATE(3757), 2, + ACTIONS(5745), 1, + sym__integer_literal, + STATE(3804), 2, sym_comment, sym_include, - [148902] = 6, - ACTIONS(3), 1, + [151011] = 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(5750), 1, - sym_identifier, - STATE(294), 1, - sym_qualified_name, - STATE(3758), 2, + ACTIONS(5465), 1, + aux_sym__block_terminator_token1, + STATE(1130), 1, + sym__block_terminator, + STATE(3805), 2, sym_comment, sym_include, - [148922] = 6, + [151031] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(5752), 1, + ACTIONS(5747), 1, sym_identifier, - ACTIONS(5754), 1, - sym__terminator, - STATE(3759), 2, + STATE(297), 1, + sym_qualified_name, + STATE(3806), 2, sym_comment, sym_include, - [148942] = 6, - ACTIONS(59), 1, + [151051] = 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(5396), 1, - aux_sym__block_terminator_token1, - STATE(3401), 1, - sym__block_terminator, - STATE(3760), 2, + ACTIONS(5749), 1, + sym_identifier, + STATE(1867), 1, + sym_qualified_name, + STATE(3807), 2, sym_comment, sym_include, - [148962] = 6, - ACTIONS(59), 1, + [151071] = 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(5756), 1, - sym__terminator, - ACTIONS(5758), 1, - aux_sym_primitive_type_token19, - STATE(3761), 2, + ACTIONS(5751), 1, + sym_identifier, + ACTIONS(5753), 1, + sym__integer_literal, + STATE(3808), 2, sym_comment, sym_include, - [148982] = 6, + [151091] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5738), 1, + ACTIONS(5465), 1, aux_sym__block_terminator_token1, - STATE(1048), 1, + STATE(1120), 1, sym__block_terminator, - STATE(3762), 2, + STATE(3809), 2, sym_comment, sym_include, - [149002] = 6, + [151111] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5374), 1, + ACTIONS(5465), 1, aux_sym__block_terminator_token1, - STATE(1034), 1, + STATE(1046), 1, sym__block_terminator, - STATE(3763), 2, + STATE(3810), 2, sym_comment, sym_include, - [149022] = 6, - ACTIONS(59), 1, + [151131] = 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(5742), 1, - anon_sym_LPAREN, - STATE(2660), 1, - sym_query_fields, - STATE(3764), 2, + ACTIONS(100), 2, + sym__namedot, + sym_identifier, + STATE(3811), 2, sym_comment, sym_include, - [149042] = 6, + [151149] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(5760), 1, + ACTIONS(5755), 1, sym_identifier, - STATE(2622), 1, + STATE(294), 1, sym_qualified_name, - STATE(3765), 2, + STATE(3812), 2, sym_comment, sym_include, - [149062] = 6, + [151169] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5762), 1, - anon_sym_DOT, - ACTIONS(5764), 1, - aux_sym__case_terminator_token1, - STATE(3766), 2, + ACTIONS(5757), 1, + sym__terminator, + ACTIONS(5759), 1, + aux_sym_finally_statement_token1, + STATE(3813), 2, sym_comment, sym_include, - [149082] = 6, + [151189] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5396), 1, + ACTIONS(5465), 1, aux_sym__block_terminator_token1, - STATE(3406), 1, + STATE(881), 1, sym__block_terminator, - STATE(3767), 2, + STATE(3814), 2, sym_comment, sym_include, - [149102] = 6, + [151209] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5766), 1, - sym__terminator, - ACTIONS(5768), 1, - aux_sym_interface_statement_token1, - STATE(3768), 2, + ACTIONS(5509), 1, + aux_sym__block_terminator_token1, + STATE(3570), 1, + sym__block_terminator, + STATE(3815), 2, sym_comment, sym_include, - [149122] = 6, + [151229] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(5770), 1, + ACTIONS(5761), 1, sym_identifier, - STATE(2477), 1, - sym_qualified_name, - STATE(3769), 2, + ACTIONS(5763), 1, + anon_sym_STAR, + STATE(3816), 2, sym_comment, sym_include, - [149142] = 6, + [151249] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(5772), 1, + ACTIONS(5765), 1, sym_identifier, - ACTIONS(5774), 1, - sym__terminator, - STATE(3770), 2, + ACTIONS(5767), 1, + sym__integer_literal, + STATE(3817), 2, sym_comment, sym_include, - [149162] = 6, + [151269] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5396), 1, + ACTIONS(5669), 1, aux_sym__block_terminator_token1, - STATE(3409), 1, + STATE(1509), 1, sym__block_terminator, - STATE(3771), 2, + STATE(3818), 2, sym_comment, sym_include, - [149182] = 6, + [151289] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5396), 1, + ACTIONS(5669), 1, aux_sym__block_terminator_token1, - STATE(3413), 1, + STATE(1507), 1, sym__block_terminator, - STATE(3772), 2, + STATE(3819), 2, sym_comment, sym_include, - [149202] = 6, + [151309] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5776), 1, - sym__terminator, - ACTIONS(5778), 1, - aux_sym_interface_statement_token1, - STATE(3773), 2, + ACTIONS(4599), 2, + anon_sym_COMMA, + anon_sym_COLON, + STATE(3820), 2, sym_comment, sym_include, - [149222] = 6, + [151327] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5780), 1, - aux_sym_variable_definition_token5, - ACTIONS(5782), 1, - aux_sym_variable_definition_token6, - STATE(3774), 2, + ACTIONS(5769), 1, + sym__terminator, + ACTIONS(5771), 1, + aux_sym_constructor_definition_token1, + STATE(3821), 2, + sym_comment, + sym_include, + [151347] = 6, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_LBRACE, + ACTIONS(5773), 1, + sym_identifier, + STATE(1600), 1, + sym_qualified_name, + STATE(3822), 2, sym_comment, sym_include, - [149242] = 6, + [151367] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5374), 1, + ACTIONS(5465), 1, aux_sym__block_terminator_token1, - STATE(1013), 1, + STATE(872), 1, sym__block_terminator, - STATE(3775), 2, + STATE(3823), 2, sym_comment, sym_include, - [149262] = 6, + [151387] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5742), 1, - anon_sym_LPAREN, - STATE(2715), 1, - sym_query_fields, - STATE(3776), 2, + ACTIONS(5775), 1, + sym__terminator, + ACTIONS(5777), 1, + aux_sym_interface_statement_token1, + STATE(3824), 2, sym_comment, sym_include, - [149282] = 6, + [151407] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5784), 1, + ACTIONS(5779), 1, sym__terminator, - ACTIONS(5786), 1, - aux_sym_primitive_type_token19, - STATE(3777), 2, + ACTIONS(5781), 1, + anon_sym_METHOD, + STATE(3825), 2, sym_comment, sym_include, - [149302] = 6, + [151427] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5742), 1, - anon_sym_LPAREN, - STATE(2408), 1, - sym_query_fields, - STATE(3778), 2, + ACTIONS(5465), 1, + aux_sym__block_terminator_token1, + STATE(980), 1, + sym__block_terminator, + STATE(3826), 2, sym_comment, sym_include, - [149322] = 6, + [151447] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5742), 1, + ACTIONS(5783), 1, anon_sym_LPAREN, - STATE(2492), 1, + STATE(2522), 1, sym_query_fields, - STATE(3779), 2, + STATE(3827), 2, sym_comment, sym_include, - [149342] = 6, + [151467] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5742), 1, + ACTIONS(5783), 1, anon_sym_LPAREN, - STATE(2601), 1, + STATE(2779), 1, sym_query_fields, - STATE(3780), 2, - sym_comment, - sym_include, - [149362] = 6, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - ACTIONS(7), 1, - anon_sym_LBRACE, - ACTIONS(5788), 1, - sym_identifier, - STATE(2590), 1, - sym_qualified_name, - STATE(3781), 2, + STATE(3828), 2, sym_comment, sym_include, - [149382] = 6, + [151487] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(5790), 1, + ACTIONS(5785), 1, sym_identifier, - STATE(4165), 1, + STATE(2776), 1, sym_qualified_name, - STATE(3782), 2, + STATE(3829), 2, sym_comment, sym_include, - [149402] = 6, + [151507] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(5792), 1, + ACTIONS(5787), 1, sym_identifier, - STATE(1624), 1, + STATE(4278), 1, sym_qualified_name, - STATE(3783), 2, + STATE(3830), 2, sym_comment, sym_include, - [149422] = 6, + [151527] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5794), 1, - sym__terminator, - ACTIONS(5796), 1, - aux_sym_primitive_type_token19, - STATE(3784), 2, + ACTIONS(5439), 1, + aux_sym__block_terminator_token1, + STATE(957), 1, + sym__block_terminator, + STATE(3831), 2, sym_comment, sym_include, - [149442] = 6, + [151547] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5396), 1, + ACTIONS(5465), 1, aux_sym__block_terminator_token1, - STATE(3425), 1, + STATE(1000), 1, sym__block_terminator, - STATE(3785), 2, + STATE(3832), 2, sym_comment, sym_include, - [149462] = 6, + [151567] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5376), 1, + ACTIONS(5465), 1, aux_sym__block_terminator_token1, - STATE(1371), 1, + STATE(1034), 1, sym__block_terminator, - STATE(3786), 2, - sym_comment, - sym_include, - [149482] = 6, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - ACTIONS(7), 1, - anon_sym_LBRACE, - ACTIONS(5798), 1, - sym_identifier, - ACTIONS(5800), 1, - anon_sym_COMMA, - STATE(3787), 2, - sym_comment, - sym_include, - [149502] = 6, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - ACTIONS(7), 1, - anon_sym_LBRACE, - ACTIONS(5802), 1, - sym_identifier, - ACTIONS(5804), 1, - anon_sym_COMMA, - STATE(3788), 2, + STATE(3833), 2, sym_comment, sym_include, - [149522] = 5, + [151587] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5806), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - STATE(3789), 2, + ACTIONS(5789), 1, + sym__terminator, + ACTIONS(5791), 1, + anon_sym_METHOD, + STATE(3834), 2, sym_comment, sym_include, - [149540] = 6, - ACTIONS(3), 1, + [151607] = 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(5808), 1, - sym_identifier, - ACTIONS(5810), 1, - anon_sym_COMMA, - STATE(3790), 2, + ACTIONS(5439), 1, + aux_sym__block_terminator_token1, + STATE(959), 1, + sym__block_terminator, + STATE(3835), 2, sym_comment, sym_include, - [149560] = 5, + [151627] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5812), 2, + ACTIONS(5793), 1, sym__terminator, - anon_sym_COLON, - STATE(3791), 2, + ACTIONS(5795), 1, + anon_sym_METHOD, + STATE(3836), 2, sym_comment, sym_include, - [149578] = 6, + [151647] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5376), 1, + ACTIONS(5465), 1, aux_sym__block_terminator_token1, - STATE(1194), 1, + STATE(1085), 1, sym__block_terminator, - STATE(3792), 2, - sym_comment, - sym_include, - [149598] = 6, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - ACTIONS(7), 1, - anon_sym_LBRACE, - ACTIONS(5814), 1, - sym_identifier, - STATE(1275), 1, - sym_qualified_name, - STATE(3793), 2, + STATE(3837), 2, sym_comment, sym_include, - [149618] = 6, - ACTIONS(3), 1, + [151667] = 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(5816), 1, - sym_identifier, - STATE(4454), 1, - sym_qualified_name, - STATE(3794), 2, + ACTIONS(5509), 1, + aux_sym__block_terminator_token1, + STATE(3575), 1, + sym__block_terminator, + STATE(3838), 2, sym_comment, sym_include, - [149638] = 6, + [151687] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5818), 1, + ACTIONS(5797), 1, sym__terminator, - ACTIONS(5820), 1, + ACTIONS(5799), 1, aux_sym_interface_statement_token1, - STATE(3795), 2, + STATE(3839), 2, sym_comment, sym_include, - [149658] = 6, - ACTIONS(3), 1, + [151707] = 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(5822), 1, - sym_identifier, - STATE(2649), 1, - sym_qualified_name, - STATE(3796), 2, + ACTIONS(5801), 2, + sym__terminator, + anon_sym_COLON, + STATE(3840), 2, sym_comment, sym_include, - [149678] = 6, + [151725] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5396), 1, - aux_sym__block_terminator_token1, - STATE(3435), 1, - sym__block_terminator, - STATE(3797), 2, + ACTIONS(4733), 1, + sym__terminator, + ACTIONS(4735), 1, + aux_sym_using_statement_token2, + STATE(3841), 2, sym_comment, sym_include, - [149698] = 6, + [151745] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5396), 1, + ACTIONS(5465), 1, aux_sym__block_terminator_token1, - STATE(3438), 1, + STATE(1116), 1, sym__block_terminator, - STATE(3798), 2, + STATE(3842), 2, sym_comment, sym_include, - [149718] = 6, + [151765] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5376), 1, + ACTIONS(5465), 1, aux_sym__block_terminator_token1, - STATE(1364), 1, + STATE(1133), 1, sym__block_terminator, - STATE(3799), 2, + STATE(3843), 2, sym_comment, sym_include, - [149738] = 6, + [151785] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5742), 1, - anon_sym_LPAREN, - STATE(2630), 1, - sym_query_fields, - STATE(3800), 2, + ACTIONS(5465), 1, + aux_sym__block_terminator_token1, + STATE(1117), 1, + sym__block_terminator, + STATE(3844), 2, sym_comment, sym_include, - [149758] = 6, + [151805] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5742), 1, - anon_sym_LPAREN, - STATE(2481), 1, - sym_query_fields, - STATE(3801), 2, + ACTIONS(5509), 1, + aux_sym__block_terminator_token1, + STATE(3579), 1, + sym__block_terminator, + STATE(3845), 2, sym_comment, sym_include, - [149778] = 6, + [151825] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5824), 1, - anon_sym_DOT, - ACTIONS(5826), 1, - aux_sym__procedure_terminator_token1, - STATE(3802), 2, + ACTIONS(5465), 1, + aux_sym__block_terminator_token1, + STATE(1103), 1, + sym__block_terminator, + STATE(3846), 2, sym_comment, sym_include, - [149798] = 6, + [151845] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5828), 1, + ACTIONS(155), 1, sym__terminator, - ACTIONS(5830), 1, - aux_sym_constructor_definition_token1, - STATE(3803), 2, + ACTIONS(5803), 1, + aux_sym_function_call_token1, + STATE(3847), 2, sym_comment, sym_include, - [149818] = 6, + [151865] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5832), 1, - sym__terminator, - ACTIONS(5834), 1, - aux_sym_primitive_type_token19, - STATE(3804), 2, + ACTIONS(5805), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + STATE(3848), 2, sym_comment, sym_include, - [149838] = 6, + [151883] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5836), 1, - sym__terminator, - ACTIONS(5838), 1, - aux_sym_primitive_type_token19, - STATE(3805), 2, + ACTIONS(5439), 1, + aux_sym__block_terminator_token1, + STATE(966), 1, + sym__block_terminator, + STATE(3849), 2, sym_comment, sym_include, - [149858] = 6, - ACTIONS(59), 1, + [151903] = 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(5742), 1, - anon_sym_LPAREN, - STATE(2534), 1, - sym_query_fields, - STATE(3806), 2, + ACTIONS(5807), 1, + sym_identifier, + STATE(589), 1, + sym_qualified_name, + STATE(3850), 2, sym_comment, sym_include, - [149878] = 6, + [151923] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5742), 1, - anon_sym_LPAREN, - STATE(2570), 1, - sym_query_fields, - STATE(3807), 2, + ACTIONS(5465), 1, + aux_sym__block_terminator_token1, + STATE(876), 1, + sym__block_terminator, + STATE(3851), 2, sym_comment, sym_include, - [149898] = 6, + [151943] = 6, 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(329), 1, - aux_sym_qualified_name_repeat1, - STATE(3808), 2, + ACTIONS(5783), 1, + anon_sym_LPAREN, + STATE(2602), 1, + sym_query_fields, + STATE(3852), 2, sym_comment, sym_include, - [149918] = 6, + [151963] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(5840), 1, + ACTIONS(5809), 1, sym_identifier, - STATE(1634), 1, + STATE(299), 1, sym_qualified_name, - STATE(3809), 2, + STATE(3853), 2, sym_comment, sym_include, - [149938] = 6, + [151983] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5396), 1, - aux_sym__block_terminator_token1, - STATE(3353), 1, - sym__block_terminator, - STATE(3810), 2, + ACTIONS(5811), 1, + sym__terminator, + ACTIONS(5813), 1, + aux_sym_primitive_type_token19, + STATE(3854), 2, sym_comment, sym_include, - [149958] = 6, + [152003] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5842), 1, - sym__terminator, - ACTIONS(5844), 1, - anon_sym_COLON, - STATE(3811), 2, + ACTIONS(5783), 1, + anon_sym_LPAREN, + STATE(2515), 1, + sym_query_fields, + STATE(3855), 2, sym_comment, sym_include, - [149978] = 6, + [152023] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5846), 1, - sym__terminator, - ACTIONS(5848), 1, - aux_sym_interface_statement_token1, - STATE(3812), 2, + ACTIONS(5783), 1, + anon_sym_LPAREN, + STATE(2763), 1, + sym_query_fields, + STATE(3856), 2, sym_comment, sym_include, - [149998] = 6, + [152043] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5850), 1, - sym__terminator, - ACTIONS(5852), 1, - anon_sym_COLON, - STATE(3813), 2, + ACTIONS(5465), 1, + aux_sym__block_terminator_token1, + STATE(942), 1, + sym__block_terminator, + STATE(3857), 2, sym_comment, sym_include, - [150018] = 6, + [152063] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5854), 1, - sym__terminator, - ACTIONS(5856), 1, - anon_sym_COLON, - STATE(3814), 2, + ACTIONS(5465), 1, + aux_sym__block_terminator_token1, + STATE(854), 1, + sym__block_terminator, + STATE(3858), 2, sym_comment, sym_include, - [150038] = 6, + [152083] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5374), 1, + ACTIONS(5669), 1, aux_sym__block_terminator_token1, - STATE(986), 1, + STATE(1479), 1, sym__block_terminator, - STATE(3815), 2, + STATE(3859), 2, sym_comment, sym_include, - [150058] = 5, + [152103] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5858), 2, - aux_sym_on_error_phrase_token2, - aux_sym_on_error_phrase_token7, - STATE(3816), 2, - sym_comment, - sym_include, - [150076] = 6, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - ACTIONS(7), 1, - anon_sym_LBRACE, - ACTIONS(5860), 1, - sym_identifier, - ACTIONS(5862), 1, - sym__terminator, - STATE(3817), 2, + ACTIONS(5465), 1, + aux_sym__block_terminator_token1, + STATE(856), 1, + sym__block_terminator, + STATE(3860), 2, sym_comment, sym_include, - [150096] = 6, + [152123] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5864), 1, - sym__terminator, - ACTIONS(5866), 1, - aux_sym_interface_statement_token1, - STATE(3818), 2, + ACTIONS(5669), 1, + aux_sym__block_terminator_token1, + STATE(1476), 1, + sym__block_terminator, + STATE(3861), 2, sym_comment, sym_include, - [150116] = 6, - ACTIONS(3), 1, + [152143] = 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(5868), 1, - sym_identifier, - ACTIONS(5870), 1, - sym__terminator, - STATE(3819), 2, + ACTIONS(4326), 2, + anon_sym_COMMA, + anon_sym_COLON, + STATE(3862), 2, sym_comment, sym_include, - [150136] = 6, + [152161] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5854), 1, - sym__terminator, - ACTIONS(5872), 1, - anon_sym_METHOD, - STATE(3820), 2, + ACTIONS(5783), 1, + anon_sym_LPAREN, + STATE(2607), 1, + sym_query_fields, + STATE(3863), 2, sym_comment, sym_include, - [150156] = 6, + [152181] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5618), 1, - aux_sym_scope_tuning_token1, - STATE(4236), 1, - sym_new_expression, - STATE(3821), 2, + ACTIONS(5815), 1, + sym__terminator, + ACTIONS(5817), 1, + aux_sym_constructor_definition_token1, + STATE(3864), 2, sym_comment, sym_include, - [150176] = 6, + [152201] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(5874), 1, + ACTIONS(5819), 1, sym_identifier, - STATE(1708), 1, + STATE(2781), 1, sym_qualified_name, - STATE(3822), 2, + STATE(3865), 2, sym_comment, sym_include, - [150196] = 6, + [152221] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(5876), 1, + ACTIONS(5821), 1, sym_identifier, - ACTIONS(5878), 1, - sym__terminator, - STATE(3823), 2, + STATE(2557), 1, + sym_qualified_name, + STATE(3866), 2, sym_comment, sym_include, - [150216] = 6, + [152241] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5376), 1, + ACTIONS(5429), 1, aux_sym__block_terminator_token1, - STATE(1297), 1, + STATE(1444), 1, sym__block_terminator, - STATE(3824), 2, + STATE(3867), 2, sym_comment, sym_include, - [150236] = 6, + [152261] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(5880), 1, + ACTIONS(5823), 1, sym_identifier, - STATE(2555), 1, - sym_qualified_name, - STATE(3825), 2, + ACTIONS(5825), 1, + sym__terminator, + STATE(3868), 2, sym_comment, sym_include, - [150256] = 6, + [152281] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5742), 1, - anon_sym_LPAREN, - STATE(2585), 1, - sym_query_fields, - STATE(3826), 2, + ACTIONS(5465), 1, + aux_sym__block_terminator_token1, + STATE(858), 1, + sym__block_terminator, + STATE(3869), 2, sym_comment, sym_include, - [150276] = 6, + [152301] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5396), 1, - aux_sym__block_terminator_token1, - STATE(3455), 1, - sym__block_terminator, - STATE(3827), 2, - sym_comment, - sym_include, - [150296] = 6, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - ACTIONS(7), 1, - anon_sym_LBRACE, - ACTIONS(5882), 1, - sym_identifier, - STATE(4421), 1, - sym_qualified_name, - STATE(3828), 2, + ACTIONS(5827), 1, + sym__terminator, + ACTIONS(5829), 1, + anon_sym_COLON, + STATE(3870), 2, sym_comment, sym_include, - [150316] = 6, + [152321] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5824), 1, - anon_sym_DOT, - ACTIONS(5884), 1, - aux_sym__case_terminator_token1, - STATE(3829), 2, + ACTIONS(5831), 1, + aux_sym_variable_definition_token5, + ACTIONS(5833), 1, + aux_sym_variable_definition_token6, + STATE(3871), 2, sym_comment, sym_include, - [150336] = 6, + [152341] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5886), 1, + ACTIONS(5827), 1, sym__terminator, - ACTIONS(5888), 1, - aux_sym_primitive_type_token19, - STATE(3830), 2, + ACTIONS(5835), 1, + anon_sym_METHOD, + STATE(3872), 2, sym_comment, sym_include, - [150356] = 6, + [152361] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5374), 1, + ACTIONS(5465), 1, aux_sym__block_terminator_token1, - STATE(976), 1, + STATE(862), 1, sym__block_terminator, - STATE(3831), 2, + STATE(3873), 2, sym_comment, sym_include, - [150376] = 6, + [152381] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5738), 1, - aux_sym__block_terminator_token1, - STATE(1021), 1, - sym__block_terminator, - STATE(3832), 2, - sym_comment, - sym_include, - [150396] = 6, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - ACTIONS(7), 1, - anon_sym_LBRACE, - ACTIONS(5890), 1, - sym_identifier, - STATE(766), 1, - sym_qualified_name, - STATE(3833), 2, + ACTIONS(5837), 1, + sym__terminator, + ACTIONS(5839), 1, + anon_sym_METHOD, + STATE(3874), 2, sym_comment, sym_include, - [150416] = 6, + [152401] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5892), 1, - sym__terminator, - ACTIONS(5894), 1, - aux_sym_interface_statement_token1, - STATE(3834), 2, - sym_comment, - sym_include, - [150436] = 6, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - ACTIONS(7), 1, - anon_sym_LBRACE, - ACTIONS(5896), 1, - sym_identifier, - STATE(4237), 1, - sym_qualified_name, - STATE(3835), 2, + ACTIONS(5783), 1, + anon_sym_LPAREN, + STATE(2610), 1, + sym_query_fields, + STATE(3875), 2, sym_comment, sym_include, - [150456] = 6, + [152421] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5618), 1, - aux_sym_scope_tuning_token1, - STATE(4402), 1, - sym_new_expression, - STATE(3836), 2, + ACTIONS(5783), 1, + anon_sym_LPAREN, + STATE(2759), 1, + sym_query_fields, + STATE(3876), 2, sym_comment, sym_include, - [150476] = 6, + [152441] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5898), 1, + ACTIONS(5841), 1, sym__terminator, - ACTIONS(5900), 1, - anon_sym_LPAREN, - STATE(3837), 2, + ACTIONS(5843), 1, + aux_sym_primitive_type_token19, + STATE(3877), 2, sym_comment, sym_include, - [150496] = 6, + [152461] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5742), 1, + ACTIONS(5783), 1, anon_sym_LPAREN, - STATE(2616), 1, + STATE(2477), 1, sym_query_fields, - STATE(3838), 2, + STATE(3878), 2, sym_comment, sym_include, - [150516] = 6, + [152481] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5396), 1, - aux_sym__block_terminator_token1, - STATE(3478), 1, - sym__block_terminator, - STATE(3839), 2, - sym_comment, - sym_include, - [150536] = 6, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - ACTIONS(7), 1, - anon_sym_LBRACE, - ACTIONS(5902), 1, - sym_identifier, - ACTIONS(5904), 1, + ACTIONS(5845), 1, sym__terminator, - STATE(3840), 2, + ACTIONS(5847), 1, + aux_sym_primitive_type_token19, + STATE(3879), 2, sym_comment, sym_include, - [150556] = 5, + [152501] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5906), 2, - aux_sym_on_error_phrase_token2, - aux_sym_on_error_phrase_token7, - STATE(3841), 2, + ACTIONS(5849), 1, + sym__terminator, + ACTIONS(5851), 1, + aux_sym_interface_statement_token1, + STATE(3880), 2, sym_comment, sym_include, - [150574] = 6, + [152521] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5908), 1, + ACTIONS(5853), 1, sym__terminator, - ACTIONS(5910), 1, - aux_sym_finally_statement_token1, - STATE(3842), 2, + ACTIONS(5855), 1, + anon_sym_METHOD, + STATE(3881), 2, sym_comment, sym_include, - [150594] = 6, + [152541] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5396), 1, + ACTIONS(5429), 1, aux_sym__block_terminator_token1, - STATE(3482), 1, + STATE(1412), 1, sym__block_terminator, - STATE(3843), 2, + STATE(3882), 2, sym_comment, sym_include, - [150614] = 6, - ACTIONS(3), 1, + [152561] = 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(5912), 1, - sym_identifier, - ACTIONS(5914), 1, - sym__terminator, - STATE(3844), 2, + ACTIONS(5857), 2, + anon_sym_COLON, + aux_sym_repeat_tuning_token1, + STATE(3883), 2, sym_comment, sym_include, - [150634] = 6, + [152579] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(5916), 1, + ACTIONS(5859), 1, sym_identifier, - STATE(3449), 1, - sym_qualified_name, - STATE(3845), 2, - sym_comment, - sym_include, - [150654] = 6, - ACTIONS(59), 1, - anon_sym_SLASH_SLASH, - ACTIONS(61), 1, - anon_sym_SLASH_STAR, - ACTIONS(65), 1, - anon_sym_LBRACE, - ACTIONS(5376), 1, - aux_sym__block_terminator_token1, - STATE(1309), 1, - sym__block_terminator, - STATE(3846), 2, + ACTIONS(5861), 1, + anon_sym_COMMA, + STATE(3884), 2, sym_comment, sym_include, - [150674] = 6, + [152599] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5376), 1, - aux_sym__block_terminator_token1, - STATE(1308), 1, - sym__block_terminator, - STATE(3847), 2, + ACTIONS(5863), 1, + sym__terminator, + ACTIONS(5865), 1, + anon_sym_METHOD, + STATE(3885), 2, sym_comment, sym_include, - [150694] = 5, + [152619] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5034), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - STATE(3848), 2, + ACTIONS(5867), 1, + sym__terminator, + ACTIONS(5869), 1, + aux_sym_finally_statement_token1, + STATE(3886), 2, sym_comment, sym_include, - [150712] = 5, + [152639] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(104), 2, - sym__namedot, + ACTIONS(5871), 1, sym_identifier, - STATE(3849), 2, + ACTIONS(5873), 1, + anon_sym_COMMA, + STATE(3887), 2, sym_comment, sym_include, - [150730] = 6, + [152659] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(5918), 1, + ACTIONS(5875), 1, sym_identifier, - ACTIONS(5920), 1, - aux_sym_input_expression_token2, - STATE(3850), 2, + ACTIONS(5877), 1, + anon_sym_COMMA, + STATE(3888), 2, sym_comment, sym_include, - [150750] = 6, + [152679] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5738), 1, - aux_sym__block_terminator_token1, - STATE(1012), 1, - sym__block_terminator, - STATE(3851), 2, + ACTIONS(5783), 1, + anon_sym_LPAREN, + STATE(2752), 1, + sym_query_fields, + STATE(3889), 2, sym_comment, sym_include, - [150770] = 6, + [152699] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(5922), 1, + ACTIONS(5879), 1, sym_identifier, - STATE(2612), 1, + STATE(36), 1, sym_qualified_name, - STATE(3852), 2, + STATE(3890), 2, sym_comment, sym_include, - [150790] = 6, - ACTIONS(3), 1, + [152719] = 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(5924), 1, - sym_identifier, - STATE(298), 1, - sym_qualified_name, - STATE(3853), 2, + ACTIONS(5669), 1, + aux_sym__block_terminator_token1, + STATE(1281), 1, + sym__block_terminator, + STATE(3891), 2, sym_comment, sym_include, - [150810] = 6, + [152739] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5376), 1, + ACTIONS(5881), 1, + anon_sym_DOT, + ACTIONS(5883), 1, + aux_sym__procedure_terminator_token1, + STATE(3892), 2, + sym_comment, + sym_include, + [152759] = 6, + ACTIONS(59), 1, + anon_sym_SLASH_SLASH, + ACTIONS(61), 1, + anon_sym_SLASH_STAR, + ACTIONS(65), 1, + anon_sym_LBRACE, + ACTIONS(5465), 1, aux_sym__block_terminator_token1, - STATE(1301), 1, + STATE(865), 1, sym__block_terminator, - STATE(3854), 2, + STATE(3893), 2, sym_comment, sym_include, - [150830] = 6, + [152779] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5370), 1, - anon_sym_DOT, - ACTIONS(5926), 1, - aux_sym__case_terminator_token1, - STATE(3855), 2, + ACTIONS(679), 1, + sym__namedot, + STATE(336), 1, + aux_sym_qualified_name_repeat1, + STATE(3894), 2, sym_comment, sym_include, - [150850] = 6, + [152799] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5928), 1, + ACTIONS(5885), 1, sym__terminator, - ACTIONS(5930), 1, + ACTIONS(5887), 1, aux_sym_primitive_type_token19, - STATE(3856), 2, + STATE(3895), 2, sym_comment, sym_include, - [150870] = 6, + [152819] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(5932), 1, + ACTIONS(5889), 1, sym_identifier, - ACTIONS(5934), 1, - anon_sym_STAR, - STATE(3857), 2, + STATE(1643), 1, + sym_qualified_name, + STATE(3896), 2, sym_comment, sym_include, - [150890] = 6, + [152839] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5618), 1, - aux_sym_scope_tuning_token1, - STATE(4369), 1, - sym_new_expression, - STATE(3858), 2, + ACTIONS(5891), 1, + sym__terminator, + ACTIONS(5893), 1, + aux_sym_interface_statement_token1, + STATE(3897), 2, sym_comment, sym_include, - [150910] = 5, + [152859] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5936), 2, - aux_sym_on_error_phrase_token2, - aux_sym_on_error_phrase_token7, - STATE(3859), 2, + ACTIONS(5465), 1, + aux_sym__block_terminator_token1, + STATE(871), 1, + sym__block_terminator, + STATE(3898), 2, sym_comment, sym_include, - [150928] = 6, + [152879] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(5938), 1, + ACTIONS(5895), 1, sym_identifier, - STATE(4190), 1, + STATE(4593), 1, sym_qualified_name, - STATE(3860), 2, - sym_comment, - sym_include, - [150948] = 6, - ACTIONS(59), 1, - anon_sym_SLASH_SLASH, - ACTIONS(61), 1, - anon_sym_SLASH_STAR, - ACTIONS(65), 1, - anon_sym_LBRACE, - ACTIONS(5940), 1, - aux_sym_variable_definition_token5, - ACTIONS(5942), 1, - aux_sym_variable_definition_token6, - STATE(3861), 2, + STATE(3899), 2, sym_comment, sym_include, - [150968] = 6, + [152899] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5944), 1, - aux_sym_input_close_statement_token2, - ACTIONS(5946), 1, - aux_sym_output_stream_statement_token1, - STATE(3862), 2, + ACTIONS(5429), 1, + aux_sym__block_terminator_token1, + STATE(1284), 1, + sym__block_terminator, + STATE(3900), 2, sym_comment, sym_include, - [150988] = 6, + [152919] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5946), 1, - aux_sym_output_stream_statement_token1, - ACTIONS(5948), 1, - aux_sym_input_close_statement_token2, - STATE(3863), 2, + ACTIONS(5509), 1, + aux_sym__block_terminator_token1, + STATE(3597), 1, + sym__block_terminator, + STATE(3901), 2, sym_comment, sym_include, - [151008] = 6, + [152939] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(5950), 1, + ACTIONS(5897), 1, sym_identifier, - STATE(2565), 1, + STATE(2620), 1, sym_qualified_name, - STATE(3864), 2, + STATE(3902), 2, sym_comment, sym_include, - [151028] = 6, + [152959] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5952), 1, - aux_sym_using_statement_token2, - ACTIONS(5954), 1, - aux_sym_input_close_statement_token2, - STATE(3865), 2, + ACTIONS(5783), 1, + anon_sym_LPAREN, + STATE(2626), 1, + sym_query_fields, + STATE(3903), 2, sym_comment, sym_include, - [151048] = 6, + [152979] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5952), 1, - aux_sym_using_statement_token2, - ACTIONS(5956), 1, - aux_sym_input_close_statement_token2, - STATE(3866), 2, + ACTIONS(5783), 1, + anon_sym_LPAREN, + STATE(2428), 1, + sym_query_fields, + STATE(3904), 2, sym_comment, sym_include, - [151068] = 5, + [152999] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5958), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - STATE(3867), 2, + ACTIONS(5376), 1, + sym__namedot, + STATE(3515), 1, + aux_sym_qualified_name_repeat1, + STATE(3905), 2, sym_comment, sym_include, - [151086] = 6, + [153019] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(5960), 1, + ACTIONS(5899), 1, sym_identifier, - ACTIONS(5962), 1, - sym__integer_literal, - STATE(3868), 2, + STATE(4692), 1, + sym_qualified_name, + STATE(3906), 2, sym_comment, sym_include, - [151106] = 6, + [153039] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5384), 1, - aux_sym_on_error_phrase_token1, - STATE(4312), 1, - sym_on_error_phrase, - STATE(3869), 2, + ACTIONS(5901), 1, + sym__terminator, + ACTIONS(5903), 1, + aux_sym_interface_statement_token1, + STATE(3907), 2, sym_comment, sym_include, - [151126] = 6, - ACTIONS(3), 1, + [153059] = 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(5964), 1, - sym_identifier, - STATE(1633), 1, - sym_qualified_name, - STATE(3870), 2, + ACTIONS(5905), 2, + aux_sym_on_error_phrase_token2, + aux_sym_on_error_phrase_token7, + STATE(3908), 2, sym_comment, sym_include, - [151146] = 6, + [153077] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(4752), 1, + ACTIONS(5907), 1, sym__terminator, - ACTIONS(4754), 1, - aux_sym_using_statement_token2, - STATE(3871), 2, + ACTIONS(5909), 1, + aux_sym_interface_statement_token1, + STATE(3909), 2, sym_comment, sym_include, - [151166] = 5, - ACTIONS(59), 1, + [153097] = 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(5062), 2, - anon_sym_COMMA, - anon_sym_COLON, - STATE(3872), 2, + ACTIONS(5911), 1, + sym_identifier, + ACTIONS(5913), 1, + sym__terminator, + STATE(3910), 2, sym_comment, sym_include, - [151184] = 6, + [153117] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(5966), 1, + ACTIONS(5915), 1, sym_identifier, - STATE(1910), 1, - sym_qualified_name, - STATE(3873), 2, + ACTIONS(5917), 1, + sym__terminator, + STATE(3911), 2, sym_comment, sym_include, - [151204] = 6, + [153137] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5376), 1, + ACTIONS(5509), 1, aux_sym__block_terminator_token1, - STATE(1378), 1, + STATE(3607), 1, sym__block_terminator, - STATE(3874), 2, + STATE(3912), 2, sym_comment, sym_include, - [151224] = 6, + [153157] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5376), 1, - aux_sym__block_terminator_token1, - STATE(1287), 1, - sym__block_terminator, - STATE(3875), 2, + ACTIONS(5427), 1, + aux_sym_scope_tuning_token1, + STATE(4359), 1, + sym_new_expression, + STATE(3913), 2, sym_comment, sym_include, - [151244] = 5, + [153177] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2614), 2, - anon_sym_COMMA, - anon_sym_COLON, - STATE(3876), 2, + ACTIONS(5669), 1, + aux_sym__block_terminator_token1, + STATE(1358), 1, + sym__block_terminator, + STATE(3914), 2, sym_comment, sym_include, - [151262] = 6, + [153197] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5742), 1, - anon_sym_LPAREN, - STATE(2639), 1, - sym_query_fields, - STATE(3877), 2, + ACTIONS(5669), 1, + aux_sym__block_terminator_token1, + STATE(1439), 1, + sym__block_terminator, + STATE(3915), 2, sym_comment, sym_include, - [151282] = 6, - ACTIONS(3), 1, + [153217] = 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(5968), 1, - sym_identifier, - ACTIONS(5970), 1, - anon_sym_STAR, - STATE(3878), 2, + ACTIONS(5509), 1, + aux_sym__block_terminator_token1, + STATE(3611), 1, + sym__block_terminator, + STATE(3916), 2, sym_comment, sym_include, - [151302] = 5, + [153237] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5972), 2, - aux_sym_on_error_phrase_token2, - aux_sym_on_error_phrase_token7, - STATE(3879), 2, + ACTIONS(5429), 1, + aux_sym__block_terminator_token1, + STATE(1264), 1, + sym__block_terminator, + STATE(3917), 2, sym_comment, sym_include, - [151320] = 6, + [153257] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5376), 1, + ACTIONS(5669), 1, aux_sym__block_terminator_token1, - STATE(1285), 1, + STATE(1435), 1, sym__block_terminator, - STATE(3880), 2, + STATE(3918), 2, sym_comment, sym_include, - [151340] = 6, + [153277] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5384), 1, - aux_sym_on_error_phrase_token1, - STATE(4326), 1, - sym_on_error_phrase, - STATE(3881), 2, + ACTIONS(3362), 2, + anon_sym_COMMA, + anon_sym_COLON, + STATE(3919), 2, sym_comment, sym_include, - [151360] = 6, + [153295] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5732), 1, - aux_sym__block_terminator_token1, - STATE(1401), 1, - sym__block_terminator, - STATE(3882), 2, + ACTIONS(5451), 1, + aux_sym_on_error_phrase_token1, + STATE(4286), 1, + sym_on_error_phrase, + STATE(3920), 2, sym_comment, sym_include, - [151380] = 6, + [153315] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5974), 1, + ACTIONS(5919), 1, sym__terminator, - ACTIONS(5976), 1, + ACTIONS(5921), 1, aux_sym_primitive_type_token19, - STATE(3883), 2, + STATE(3921), 2, sym_comment, sym_include, - [151400] = 6, + [153335] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5732), 1, - aux_sym__block_terminator_token1, - STATE(1402), 1, - sym__block_terminator, - STATE(3884), 2, + ACTIONS(5881), 1, + anon_sym_DOT, + ACTIONS(5923), 1, + aux_sym__case_terminator_token1, + STATE(3922), 2, sym_comment, sym_include, - [151420] = 6, + [153355] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5978), 1, - sym__terminator, - ACTIONS(5980), 1, - aux_sym_constructor_definition_token1, - STATE(3885), 2, + ACTIONS(5439), 1, + aux_sym__block_terminator_token1, + STATE(1002), 1, + sym__block_terminator, + STATE(3923), 2, sym_comment, sym_include, - [151440] = 6, + [153375] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(5982), 1, + ACTIONS(5925), 1, sym_identifier, - ACTIONS(5984), 1, - anon_sym_STAR, - STATE(3886), 2, + STATE(4352), 1, + sym_qualified_name, + STATE(3924), 2, sym_comment, sym_include, - [151460] = 6, + [153395] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5732), 1, - aux_sym__block_terminator_token1, - STATE(1403), 1, - sym__block_terminator, - STATE(3887), 2, + ACTIONS(5927), 1, + sym__terminator, + ACTIONS(5929), 1, + aux_sym_constructor_definition_token1, + STATE(3925), 2, sym_comment, sym_include, - [151480] = 6, - ACTIONS(3), 1, + [153415] = 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(5986), 1, - sym_identifier, - STATE(1901), 1, - sym_qualified_name, - STATE(3888), 2, + ACTIONS(5931), 1, + sym__terminator, + ACTIONS(5933), 1, + aux_sym_primitive_type_token19, + STATE(3926), 2, sym_comment, sym_include, - [151500] = 6, + [153435] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5988), 1, + ACTIONS(5935), 1, sym__terminator, - ACTIONS(5990), 1, - anon_sym_COLON, - STATE(3889), 2, + ACTIONS(5937), 1, + aux_sym_finally_statement_token1, + STATE(3927), 2, sym_comment, sym_include, - [151520] = 6, + [153455] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5992), 1, + ACTIONS(5939), 1, sym__terminator, - ACTIONS(5994), 1, - aux_sym_interface_statement_token1, - STATE(3890), 2, + ACTIONS(5941), 1, + anon_sym_COLON, + STATE(3928), 2, sym_comment, sym_include, - [151540] = 6, - ACTIONS(3), 1, + [153475] = 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(5996), 1, - sym_identifier, - ACTIONS(5998), 1, - sym__integer_literal, - STATE(3891), 2, + ACTIONS(5943), 1, + sym__terminator, + ACTIONS(5945), 1, + anon_sym_COLON, + STATE(3929), 2, sym_comment, sym_include, - [151560] = 6, + [153495] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5732), 1, - aux_sym__block_terminator_token1, - STATE(1404), 1, - sym__block_terminator, - STATE(3892), 2, + ACTIONS(5947), 1, + sym__terminator, + ACTIONS(5949), 1, + aux_sym_interface_statement_token1, + STATE(3930), 2, sym_comment, sym_include, - [151580] = 6, + [153515] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5732), 1, - aux_sym__block_terminator_token1, - STATE(1405), 1, - sym__block_terminator, - STATE(3893), 2, + ACTIONS(5943), 1, + sym__terminator, + ACTIONS(5951), 1, + anon_sym_METHOD, + STATE(3931), 2, sym_comment, sym_include, - [151600] = 6, - ACTIONS(59), 1, + [153535] = 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(5732), 1, - aux_sym__block_terminator_token1, - STATE(1408), 1, - sym__block_terminator, - STATE(3894), 2, + ACTIONS(5953), 1, + sym_identifier, + STATE(2636), 1, + sym_qualified_name, + STATE(3932), 2, sym_comment, sym_include, - [151620] = 6, + [153555] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(6000), 1, + ACTIONS(5955), 1, sym__terminator, - ACTIONS(6002), 1, - anon_sym_COLON, - STATE(3895), 2, + ACTIONS(5957), 1, + aux_sym_primitive_type_token19, + STATE(3933), 2, sym_comment, sym_include, - [151640] = 6, - ACTIONS(59), 1, + [153575] = 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(6004), 1, - aux_sym_using_statement_token2, - ACTIONS(6006), 1, - aux_sym_input_close_statement_token2, - STATE(3896), 2, + ACTIONS(5959), 1, + sym_identifier, + STATE(4511), 1, + sym_qualified_name, + STATE(3934), 2, sym_comment, sym_include, - [151660] = 6, + [153595] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(6004), 1, - aux_sym_using_statement_token2, - ACTIONS(6008), 1, - aux_sym_input_close_statement_token2, - STATE(3897), 2, + ACTIONS(5115), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + STATE(3935), 2, sym_comment, sym_include, - [151680] = 6, + [153613] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5732), 1, + ACTIONS(5465), 1, aux_sym__block_terminator_token1, - STATE(1409), 1, + STATE(895), 1, sym__block_terminator, - STATE(3898), 2, + STATE(3936), 2, + sym_comment, + sym_include, + [153633] = 6, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_LBRACE, + ACTIONS(5961), 1, + sym_identifier, + ACTIONS(5963), 1, + aux_sym_input_expression_token2, + STATE(3937), 2, sym_comment, sym_include, - [151700] = 6, + [153653] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5732), 1, - aux_sym__block_terminator_token1, - STATE(1411), 1, - sym__block_terminator, - STATE(3899), 2, + ACTIONS(5965), 1, + sym__terminator, + ACTIONS(5967), 1, + aux_sym_primitive_type_token19, + STATE(3938), 2, sym_comment, sym_include, - [151720] = 6, + [153673] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(6010), 1, - aux_sym_variable_definition_token5, - ACTIONS(6012), 1, - aux_sym_variable_definition_token6, - STATE(3900), 2, + ACTIONS(5969), 1, + sym__terminator, + ACTIONS(5971), 1, + aux_sym_finally_statement_token1, + STATE(3939), 2, sym_comment, sym_include, - [151740] = 6, + [153693] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(6014), 1, + ACTIONS(5973), 1, sym_identifier, - STATE(1728), 1, + STATE(1932), 1, sym_qualified_name, - STATE(3901), 2, + STATE(3940), 2, sym_comment, sym_include, - [151760] = 6, + [153713] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(6016), 1, - aux_sym_input_close_statement_token2, - ACTIONS(6018), 1, - aux_sym_output_stream_statement_token1, - STATE(3902), 2, + ACTIONS(5427), 1, + aux_sym_scope_tuning_token1, + STATE(4471), 1, + sym_new_expression, + STATE(3941), 2, sym_comment, sym_include, - [151780] = 6, + [153733] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(6018), 1, - aux_sym_output_stream_statement_token1, - ACTIONS(6020), 1, - aux_sym_input_close_statement_token2, - STATE(3903), 2, + ACTIONS(5975), 1, + sym__terminator, + ACTIONS(5977), 1, + aux_sym_primitive_type_token19, + STATE(3942), 2, sym_comment, sym_include, - [151800] = 6, - ACTIONS(59), 1, + [153753] = 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(5738), 1, - aux_sym__block_terminator_token1, - STATE(989), 1, - sym__block_terminator, - STATE(3904), 2, + ACTIONS(5979), 1, + sym_identifier, + ACTIONS(5981), 1, + sym__integer_literal, + STATE(3943), 2, sym_comment, sym_include, - [151820] = 6, + [153773] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5732), 1, - aux_sym__block_terminator_token1, - STATE(1412), 1, - sym__block_terminator, - STATE(3905), 2, + ACTIONS(5983), 2, + aux_sym_on_error_phrase_token2, + aux_sym_on_error_phrase_token7, + STATE(3944), 2, sym_comment, sym_include, - [151840] = 6, + [153791] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5732), 1, - aux_sym__block_terminator_token1, - STATE(1417), 1, - sym__block_terminator, - STATE(3906), 2, + ACTIONS(5985), 1, + sym__terminator, + ACTIONS(5987), 1, + aux_sym_interface_statement_token1, + STATE(3945), 2, sym_comment, sym_include, - [151860] = 6, + [153811] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(6022), 1, + ACTIONS(5989), 1, sym_identifier, - STATE(3030), 1, + STATE(1573), 1, sym_qualified_name, - STATE(3907), 2, + STATE(3946), 2, sym_comment, sym_include, - [151880] = 6, + [153831] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5738), 1, - aux_sym__block_terminator_token1, - STATE(985), 1, - sym__block_terminator, - STATE(3908), 2, + ACTIONS(5991), 1, + sym__terminator, + ACTIONS(5993), 1, + aux_sym_primitive_type_token19, + STATE(3947), 2, + sym_comment, + sym_include, + [153851] = 6, + ACTIONS(59), 1, + anon_sym_SLASH_SLASH, + ACTIONS(61), 1, + anon_sym_SLASH_STAR, + ACTIONS(65), 1, + anon_sym_LBRACE, + ACTIONS(5995), 1, + aux_sym_using_statement_token2, + ACTIONS(5997), 1, + aux_sym_input_close_statement_token2, + STATE(3948), 2, + sym_comment, + sym_include, + [153871] = 6, + ACTIONS(59), 1, + anon_sym_SLASH_SLASH, + ACTIONS(61), 1, + anon_sym_SLASH_STAR, + ACTIONS(65), 1, + anon_sym_LBRACE, + ACTIONS(5995), 1, + aux_sym_using_statement_token2, + ACTIONS(5999), 1, + aux_sym_input_close_statement_token2, + STATE(3949), 2, sym_comment, sym_include, - [151900] = 6, + [153891] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5732), 1, + ACTIONS(5439), 1, aux_sym__block_terminator_token1, - STATE(1419), 1, + STATE(1010), 1, sym__block_terminator, - STATE(3909), 2, + STATE(3950), 2, + sym_comment, + sym_include, + [153911] = 6, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_LBRACE, + ACTIONS(6001), 1, + sym_identifier, + STATE(4304), 1, + sym_qualified_name, + STATE(3951), 2, sym_comment, sym_include, - [151920] = 6, + [153931] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5376), 1, + ACTIONS(5429), 1, aux_sym__block_terminator_token1, - STATE(1190), 1, + STATE(1185), 1, sym__block_terminator, - STATE(3910), 2, + STATE(3952), 2, sym_comment, sym_include, - [151940] = 5, + [153951] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(6024), 2, - aux_sym_on_error_phrase_token2, - aux_sym_on_error_phrase_token7, - STATE(3911), 2, + ACTIONS(6003), 1, + aux_sym_variable_definition_token5, + ACTIONS(6005), 1, + aux_sym_variable_definition_token6, + STATE(3953), 2, sym_comment, sym_include, - [151958] = 6, + [153971] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5618), 1, - aux_sym_scope_tuning_token1, - STATE(4427), 1, - sym_new_expression, - STATE(3912), 2, + ACTIONS(6007), 1, + aux_sym_input_close_statement_token2, + ACTIONS(6009), 1, + aux_sym_output_stream_statement_token1, + STATE(3954), 2, sym_comment, sym_include, - [151978] = 6, + [153991] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(6026), 1, - sym__terminator, - ACTIONS(6028), 1, - aux_sym_interface_statement_token1, - STATE(3913), 2, + ACTIONS(6009), 1, + aux_sym_output_stream_statement_token1, + ACTIONS(6011), 1, + aux_sym_input_close_statement_token2, + STATE(3955), 2, sym_comment, sym_include, - [151998] = 6, + [154011] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5738), 1, - aux_sym__block_terminator_token1, - STATE(877), 1, - sym__block_terminator, - STATE(3914), 2, + ACTIONS(6013), 1, + anon_sym_COMMA, + ACTIONS(6015), 1, + aux_sym_on_error_phrase_token3, + STATE(3956), 2, sym_comment, sym_include, - [152018] = 6, + [154031] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5732), 1, + ACTIONS(5429), 1, aux_sym__block_terminator_token1, - STATE(1425), 1, + STATE(1520), 1, sym__block_terminator, - STATE(3915), 2, + STATE(3957), 2, sym_comment, sym_include, - [152038] = 6, + [154051] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5738), 1, + ACTIONS(5669), 1, aux_sym__block_terminator_token1, - STATE(948), 1, + STATE(1391), 1, sym__block_terminator, - STATE(3916), 2, + STATE(3958), 2, sym_comment, sym_include, - [152058] = 6, - ACTIONS(59), 1, + [154071] = 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(6030), 1, - aux_sym_getter_token1, - ACTIONS(6032), 1, - aux_sym_setter_token1, - STATE(3917), 2, + ACTIONS(6017), 1, + sym_identifier, + STATE(2703), 1, + sym_qualified_name, + STATE(3959), 2, sym_comment, sym_include, - [152078] = 6, + [154091] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(6034), 1, - sym__terminator, - ACTIONS(6036), 1, - anon_sym_LPAREN, - STATE(3918), 2, + ACTIONS(5465), 1, + aux_sym__block_terminator_token1, + STATE(901), 1, + sym__block_terminator, + STATE(3960), 2, sym_comment, sym_include, - [152098] = 6, + [154111] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5742), 1, - anon_sym_LPAREN, - STATE(2645), 1, - sym_query_fields, - STATE(3919), 2, + ACTIONS(5669), 1, + aux_sym__block_terminator_token1, + STATE(1385), 1, + sym__block_terminator, + STATE(3961), 2, sym_comment, sym_include, - [152118] = 6, + [154131] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(6038), 1, + ACTIONS(6019), 1, sym_identifier, - STATE(291), 1, + STATE(2640), 1, sym_qualified_name, - STATE(3920), 2, + STATE(3962), 2, sym_comment, sym_include, - [152138] = 6, + [154151] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5732), 1, - aux_sym__block_terminator_token1, - STATE(1428), 1, - sym__block_terminator, - STATE(3921), 2, + ACTIONS(6021), 1, + sym__terminator, + ACTIONS(6023), 1, + aux_sym_interface_statement_token1, + STATE(3963), 2, sym_comment, sym_include, - [152158] = 6, + [154171] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5732), 1, - aux_sym__block_terminator_token1, - STATE(1429), 1, - sym__block_terminator, - STATE(3922), 2, + ACTIONS(6025), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + STATE(3964), 2, sym_comment, sym_include, - [152178] = 6, + [154189] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5742), 1, - anon_sym_LPAREN, - STATE(2659), 1, - sym_query_fields, - STATE(3923), 2, - sym_comment, - sym_include, - [152198] = 6, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - ACTIONS(7), 1, - anon_sym_LBRACE, - ACTIONS(6040), 1, - sym_identifier, - STATE(2788), 1, - sym_qualified_name, - STATE(3924), 2, + ACTIONS(6027), 2, + aux_sym_on_error_phrase_token2, + aux_sym_on_error_phrase_token7, + STATE(3965), 2, sym_comment, sym_include, - [152218] = 6, + [154207] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5738), 1, - aux_sym__block_terminator_token1, - STATE(979), 1, - sym__block_terminator, - STATE(3925), 2, + ACTIONS(5427), 1, + aux_sym_scope_tuning_token1, + STATE(4346), 1, + sym_new_expression, + STATE(3966), 2, sym_comment, sym_include, - [152238] = 6, + [154227] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5738), 1, + ACTIONS(5465), 1, aux_sym__block_terminator_token1, - STATE(878), 1, + STATE(902), 1, sym__block_terminator, - STATE(3926), 2, + STATE(3967), 2, sym_comment, sym_include, - [152258] = 6, + [154247] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(6042), 1, + ACTIONS(6029), 1, sym_identifier, - STATE(2589), 1, + STATE(296), 1, sym_qualified_name, - STATE(3927), 2, + STATE(3968), 2, sym_comment, sym_include, - [152278] = 6, + [154267] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(6044), 1, + ACTIONS(6031), 1, sym_identifier, - ACTIONS(6046), 1, - aux_sym_input_expression_token2, - STATE(3928), 2, + STATE(1644), 1, + sym_qualified_name, + STATE(3969), 2, sym_comment, sym_include, - [152298] = 6, + [154287] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5738), 1, + ACTIONS(5669), 1, aux_sym__block_terminator_token1, - STATE(879), 1, + STATE(1378), 1, sym__block_terminator, - STATE(3929), 2, + STATE(3970), 2, sym_comment, sym_include, - [152318] = 6, + [154307] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5732), 1, - aux_sym__block_terminator_token1, - STATE(1316), 1, - sym__block_terminator, - STATE(3930), 2, + ACTIONS(2618), 2, + anon_sym_COMMA, + anon_sym_COLON, + STATE(3971), 2, sym_comment, sym_include, - [152338] = 6, + [154325] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5738), 1, - aux_sym__block_terminator_token1, - STATE(880), 1, - sym__block_terminator, - STATE(3931), 2, + ACTIONS(5137), 2, + anon_sym_COMMA, + anon_sym_COLON, + STATE(3972), 2, sym_comment, sym_include, - [152358] = 6, + [154343] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5376), 1, + ACTIONS(5669), 1, aux_sym__block_terminator_token1, - STATE(1214), 1, + STATE(1475), 1, sym__block_terminator, - STATE(3932), 2, + STATE(3973), 2, + sym_comment, + sym_include, + [154363] = 6, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_LBRACE, + ACTIONS(6033), 1, + sym_identifier, + STATE(301), 1, + sym_qualified_name, + STATE(3974), 2, sym_comment, sym_include, - [152378] = 6, + [154383] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(6048), 1, + ACTIONS(6035), 1, sym__terminator, - ACTIONS(6050), 1, - aux_sym_catch_statement_token1, - STATE(3933), 2, + ACTIONS(6037), 1, + aux_sym_constructor_definition_token1, + STATE(3975), 2, sym_comment, sym_include, - [152398] = 6, + [154403] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5732), 1, - aux_sym__block_terminator_token1, - STATE(1442), 1, - sym__block_terminator, - STATE(3934), 2, + ACTIONS(5427), 1, + aux_sym_scope_tuning_token1, + STATE(4343), 1, + sym_new_expression, + STATE(3976), 2, + sym_comment, + sym_include, + [154423] = 5, + ACTIONS(59), 1, + anon_sym_SLASH_SLASH, + ACTIONS(61), 1, + anon_sym_SLASH_STAR, + ACTIONS(65), 1, + anon_sym_LBRACE, + ACTIONS(6039), 2, + aux_sym_on_error_phrase_token2, + aux_sym_on_error_phrase_token7, + STATE(3977), 2, sym_comment, sym_include, - [152418] = 6, + [154441] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5732), 1, + ACTIONS(5439), 1, aux_sym__block_terminator_token1, - STATE(1438), 1, + STATE(1014), 1, sym__block_terminator, - STATE(3935), 2, + STATE(3978), 2, sym_comment, sym_include, - [152438] = 6, + [154461] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5376), 1, + ACTIONS(6041), 2, + aux_sym_on_error_phrase_token2, + aux_sym_on_error_phrase_token7, + STATE(3979), 2, + sym_comment, + sym_include, + [154479] = 6, + ACTIONS(59), 1, + anon_sym_SLASH_SLASH, + ACTIONS(61), 1, + anon_sym_SLASH_STAR, + ACTIONS(65), 1, + anon_sym_LBRACE, + ACTIONS(5429), 1, aux_sym__block_terminator_token1, - STATE(1210), 1, + STATE(1149), 1, sym__block_terminator, - STATE(3936), 2, + STATE(3980), 2, sym_comment, sym_include, - [152458] = 6, + [154499] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(6052), 1, + ACTIONS(6043), 1, sym_identifier, - ACTIONS(6054), 1, - sym__terminator, - STATE(3937), 2, + STATE(2691), 1, + sym_qualified_name, + STATE(3981), 2, sym_comment, sym_include, - [152478] = 6, + [154519] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(6056), 1, - aux_sym_variable_definition_token5, - ACTIONS(6058), 1, - aux_sym_variable_definition_token6, - STATE(3938), 2, + ACTIONS(6045), 1, + sym__terminator, + ACTIONS(6047), 1, + aux_sym_primitive_type_token19, + STATE(3982), 2, sym_comment, sym_include, - [152498] = 6, + [154539] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(6060), 1, - aux_sym_primitive_type_token1, - ACTIONS(6062), 1, - aux_sym_event_definition_token2, - STATE(3939), 2, + ACTIONS(6049), 1, + sym__terminator, + ACTIONS(6051), 1, + anon_sym_COLON, + STATE(3983), 2, sym_comment, sym_include, - [152518] = 6, + [154559] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5738), 1, + ACTIONS(5669), 1, aux_sym__block_terminator_token1, - STATE(883), 1, + STATE(1515), 1, sym__block_terminator, - STATE(3940), 2, + STATE(3984), 2, sym_comment, sym_include, - [152538] = 6, + [154579] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5732), 1, - aux_sym__block_terminator_token1, - STATE(1305), 1, - sym__block_terminator, - STATE(3941), 2, + ACTIONS(6053), 1, + aux_sym_input_close_statement_token2, + ACTIONS(6055), 1, + aux_sym_output_stream_statement_token1, + STATE(3985), 2, sym_comment, sym_include, - [152558] = 6, + [154599] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(6064), 1, + ACTIONS(6057), 1, sym__terminator, - ACTIONS(6066), 1, - aux_sym_catch_statement_token1, - STATE(3942), 2, + ACTIONS(6059), 1, + anon_sym_COLON, + STATE(3986), 2, sym_comment, sym_include, - [152578] = 5, + [154619] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(6068), 2, + ACTIONS(6061), 1, sym__terminator, + ACTIONS(6063), 1, anon_sym_COLON, - STATE(3943), 2, + STATE(3987), 2, sym_comment, sym_include, - [152596] = 5, + [154639] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5201), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - STATE(3944), 2, + ACTIONS(6055), 1, + aux_sym_output_stream_statement_token1, + ACTIONS(6065), 1, + aux_sym_input_close_statement_token2, + STATE(3988), 2, sym_comment, sym_include, - [152614] = 5, + [154659] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(6070), 2, - aux_sym_on_error_phrase_token2, - aux_sym_on_error_phrase_token7, - STATE(3945), 2, + ACTIONS(6061), 1, + sym__terminator, + ACTIONS(6067), 1, + anon_sym_METHOD, + STATE(3989), 2, sym_comment, sym_include, - [152632] = 6, + [154679] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5618), 1, - aux_sym_scope_tuning_token1, - STATE(4471), 1, - sym_new_expression, - STATE(3946), 2, + ACTIONS(6069), 1, + aux_sym_using_statement_token2, + ACTIONS(6071), 1, + aux_sym_input_close_statement_token2, + STATE(3990), 2, sym_comment, sym_include, - [152652] = 6, + [154699] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5742), 1, - anon_sym_LPAREN, - STATE(2675), 1, - sym_query_fields, - STATE(3947), 2, + ACTIONS(6069), 1, + aux_sym_using_statement_token2, + ACTIONS(6073), 1, + aux_sym_input_close_statement_token2, + STATE(3991), 2, sym_comment, sym_include, - [152672] = 6, - ACTIONS(59), 1, + [154719] = 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(6072), 1, - aux_sym_variable_definition_token5, - ACTIONS(6074), 1, - aux_sym_function_parameter_token2, - STATE(3948), 2, + ACTIONS(6075), 1, + sym_identifier, + STATE(1726), 1, + sym_qualified_name, + STATE(3992), 2, sym_comment, sym_include, - [152692] = 6, - ACTIONS(59), 1, + [154739] = 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(5738), 1, - aux_sym__block_terminator_token1, - STATE(884), 1, - sym__block_terminator, - STATE(3949), 2, + ACTIONS(6077), 1, + sym_identifier, + ACTIONS(6079), 1, + anon_sym_COMMA, + STATE(3993), 2, sym_comment, sym_include, - [152712] = 6, - ACTIONS(59), 1, + [154759] = 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(5742), 1, - anon_sym_LPAREN, - STATE(2423), 1, - sym_query_fields, - STATE(3950), 2, + ACTIONS(6081), 1, + sym_identifier, + ACTIONS(6083), 1, + anon_sym_COMMA, + STATE(3994), 2, sym_comment, sym_include, - [152732] = 6, + [154779] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5824), 1, - anon_sym_DOT, - ACTIONS(6076), 1, - aux_sym__function_terminator_token1, - STATE(3951), 2, + ACTIONS(6085), 1, + sym__terminator, + ACTIONS(6087), 1, + aux_sym_interface_statement_token1, + STATE(3995), 2, sym_comment, sym_include, - [152752] = 5, + [154799] = 6, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_LBRACE, + ACTIONS(6089), 1, + sym_identifier, + ACTIONS(6091), 1, + sym__integer_literal, + STATE(3996), 2, + sym_comment, + sym_include, + [154819] = 6, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_LBRACE, + ACTIONS(6093), 1, + sym_identifier, + STATE(1959), 1, + sym_qualified_name, + STATE(3997), 2, + sym_comment, + sym_include, + [154839] = 6, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_LBRACE, + ACTIONS(6095), 1, + sym_identifier, + STATE(759), 1, + sym_qualified_name, + STATE(3998), 2, + sym_comment, + sym_include, + [154859] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(6078), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - STATE(3952), 2, + ACTIONS(5669), 1, + aux_sym__block_terminator_token1, + STATE(1198), 1, + sym__block_terminator, + STATE(3999), 2, sym_comment, sym_include, - [152770] = 6, + [154879] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5376), 1, + ACTIONS(5509), 1, aux_sym__block_terminator_token1, - STATE(1199), 1, + STATE(3618), 1, sym__block_terminator, - STATE(3953), 2, + STATE(4000), 2, sym_comment, sym_include, - [152790] = 6, + [154899] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5738), 1, - aux_sym__block_terminator_token1, - STATE(885), 1, - sym__block_terminator, - STATE(3954), 2, + ACTIONS(5451), 1, + aux_sym_on_error_phrase_token1, + STATE(4253), 1, + sym_on_error_phrase, + STATE(4001), 2, sym_comment, sym_include, - [152810] = 5, + [154919] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(6080), 2, - sym__terminator, - anon_sym_COLON, - STATE(3955), 2, + ACTIONS(6097), 2, + aux_sym_on_error_phrase_token2, + aux_sym_on_error_phrase_token7, + STATE(4002), 2, sym_comment, sym_include, - [152828] = 6, + [154937] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(6082), 1, + ACTIONS(6099), 1, sym_identifier, - STATE(4495), 1, + STATE(1627), 1, sym_qualified_name, - STATE(3956), 2, + STATE(4003), 2, sym_comment, sym_include, - [152848] = 6, + [154957] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(6084), 1, + ACTIONS(6101), 1, sym_identifier, - STATE(2644), 1, - sym_qualified_name, - STATE(3957), 2, + ACTIONS(6103), 1, + sym__terminator, + STATE(4004), 2, sym_comment, sym_include, - [152868] = 6, + [154977] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(6086), 1, + ACTIONS(6105), 1, sym__terminator, - ACTIONS(6088), 1, - aux_sym_finally_statement_token1, - STATE(3958), 2, + ACTIONS(6107), 1, + aux_sym_interface_statement_token1, + STATE(4005), 2, sym_comment, sym_include, - [152888] = 6, + [154997] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(6090), 1, + ACTIONS(6109), 1, sym__terminator, - ACTIONS(6092), 1, - aux_sym_primitive_type_token19, - STATE(3959), 2, + ACTIONS(6111), 1, + anon_sym_LPAREN, + STATE(4006), 2, sym_comment, sym_include, - [152908] = 6, - ACTIONS(59), 1, + [155017] = 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(5738), 1, - aux_sym__block_terminator_token1, - STATE(886), 1, - sym__block_terminator, - STATE(3960), 2, + ACTIONS(6113), 1, + sym_identifier, + ACTIONS(6115), 1, + aux_sym_input_expression_token2, + STATE(4007), 2, sym_comment, sym_include, - [152928] = 6, + [155037] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5732), 1, + ACTIONS(5465), 1, aux_sym__block_terminator_token1, - STATE(1450), 1, + STATE(975), 1, sym__block_terminator, - STATE(3961), 2, + STATE(4008), 2, sym_comment, sym_include, - [152948] = 6, + [155057] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5732), 1, + ACTIONS(5439), 1, aux_sym__block_terminator_token1, - STATE(1452), 1, + STATE(1029), 1, sym__block_terminator, - STATE(3962), 2, + STATE(4009), 2, sym_comment, sym_include, - [152968] = 5, - ACTIONS(59), 1, + [155077] = 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(6094), 2, - anon_sym_COMMA, - anon_sym_COLON, - STATE(3963), 2, + ACTIONS(6117), 1, + sym_identifier, + STATE(3445), 1, + sym_qualified_name, + STATE(4010), 2, sym_comment, sym_include, - [152986] = 6, + [155097] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5738), 1, + ACTIONS(5669), 1, aux_sym__block_terminator_token1, - STATE(887), 1, + STATE(1323), 1, sym__block_terminator, - STATE(3964), 2, + STATE(4011), 2, sym_comment, sym_include, - [153006] = 5, + [155117] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(6096), 2, - anon_sym_COMMA, - anon_sym_COLON, - STATE(3965), 2, + ACTIONS(6119), 1, + aux_sym_variable_definition_token5, + ACTIONS(6121), 1, + aux_sym_variable_definition_token6, + STATE(4012), 2, sym_comment, sym_include, - [153024] = 6, + [155137] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(6098), 1, + ACTIONS(6123), 1, sym_identifier, - STATE(22), 1, + STATE(4466), 1, sym_qualified_name, - STATE(3966), 2, + STATE(4013), 2, sym_comment, sym_include, - [153044] = 6, + [155157] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(6100), 1, + ACTIONS(6125), 1, sym_identifier, - STATE(4123), 1, + STATE(2672), 1, sym_qualified_name, - STATE(3967), 2, + STATE(4014), 2, + sym_comment, + sym_include, + [155177] = 6, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_LBRACE, + ACTIONS(6127), 1, + sym_identifier, + ACTIONS(6129), 1, + sym__terminator, + STATE(4015), 2, sym_comment, sym_include, - [153064] = 6, + [155197] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5376), 1, + ACTIONS(5439), 1, aux_sym__block_terminator_token1, - STATE(1191), 1, + STATE(1030), 1, sym__block_terminator, - STATE(3968), 2, + STATE(4016), 2, sym_comment, sym_include, - [153084] = 5, + [155217] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2495), 2, - anon_sym_COMMA, - anon_sym_COLON, - STATE(3969), 2, + ACTIONS(6131), 1, + sym__terminator, + ACTIONS(6133), 1, + aux_sym_interface_statement_token1, + STATE(4017), 2, sym_comment, sym_include, - [153102] = 6, - ACTIONS(3), 1, + [155237] = 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(6102), 1, - sym_identifier, - STATE(2701), 1, - sym_qualified_name, - STATE(3970), 2, + ACTIONS(5439), 1, + aux_sym__block_terminator_token1, + STATE(1007), 1, + sym__block_terminator, + STATE(4018), 2, sym_comment, sym_include, - [153122] = 6, + [155257] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5738), 1, - aux_sym__block_terminator_token1, - STATE(889), 1, - sym__block_terminator, - STATE(3971), 2, + ACTIONS(6135), 1, + aux_sym_primitive_type_token1, + ACTIONS(6137), 1, + aux_sym_event_definition_token2, + STATE(4019), 2, sym_comment, sym_include, - [153142] = 6, + [155277] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5742), 1, - anon_sym_LPAREN, - STATE(2711), 1, - sym_query_fields, - STATE(3972), 2, + ACTIONS(5509), 1, + aux_sym__block_terminator_token1, + STATE(3626), 1, + sym__block_terminator, + STATE(4020), 2, sym_comment, sym_include, - [153162] = 6, + [155297] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5742), 1, - anon_sym_LPAREN, - STATE(2393), 1, - sym_query_fields, - STATE(3973), 2, + ACTIONS(5429), 1, + aux_sym__block_terminator_token1, + STATE(1423), 1, + sym__block_terminator, + STATE(4021), 2, sym_comment, sym_include, - [153182] = 6, + [155317] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5742), 1, - anon_sym_LPAREN, - STATE(2633), 1, - sym_query_fields, - STATE(3974), 2, + ACTIONS(5669), 1, + aux_sym__block_terminator_token1, + STATE(1315), 1, + sym__block_terminator, + STATE(4022), 2, sym_comment, sym_include, - [153202] = 6, + [155337] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5732), 1, + ACTIONS(5439), 1, aux_sym__block_terminator_token1, - STATE(1460), 1, + STATE(1040), 1, sym__block_terminator, - STATE(3975), 2, + STATE(4023), 2, sym_comment, sym_include, - [153222] = 6, + [155357] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(6104), 1, + ACTIONS(6139), 1, sym_identifier, - STATE(2125), 1, + STATE(1286), 1, sym_qualified_name, - STATE(3976), 2, + STATE(4024), 2, sym_comment, sym_include, - [153242] = 6, + [155377] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5738), 1, + ACTIONS(5439), 1, aux_sym__block_terminator_token1, - STATE(890), 1, + STATE(1052), 1, sym__block_terminator, - STATE(3977), 2, + STATE(4025), 2, sym_comment, sym_include, - [153262] = 6, - ACTIONS(3), 1, + [155397] = 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(6106), 1, - sym_identifier, - ACTIONS(6108), 1, - anon_sym_RPAREN, - STATE(3978), 2, + ACTIONS(6141), 1, + sym__terminator, + ACTIONS(6143), 1, + aux_sym_primitive_type_token19, + STATE(4026), 2, sym_comment, sym_include, - [153282] = 6, + [155417] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(6110), 1, - sym__terminator, - ACTIONS(6112), 1, - aux_sym_primitive_type_token19, - STATE(3979), 2, + ACTIONS(5465), 1, + aux_sym__block_terminator_token1, + STATE(1104), 1, + sym__block_terminator, + STATE(4027), 2, sym_comment, sym_include, - [153302] = 6, - ACTIONS(3), 1, + [155437] = 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(6114), 1, - sym_identifier, - STATE(2998), 1, - sym_qualified_name, - STATE(3980), 2, + ACTIONS(5783), 1, + anon_sym_LPAREN, + STATE(2741), 1, + sym_query_fields, + STATE(4028), 2, sym_comment, sym_include, - [153322] = 6, + [155457] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(6116), 1, + ACTIONS(6145), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + STATE(4029), 2, + sym_comment, + sym_include, + [155475] = 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, sym__terminator, - ACTIONS(6118), 1, - aux_sym_primitive_type_token19, - STATE(3981), 2, + STATE(4030), 2, sym_comment, sym_include, - [153342] = 6, + [155495] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5738), 1, + ACTIONS(5669), 1, aux_sym__block_terminator_token1, - STATE(893), 1, + STATE(1306), 1, sym__block_terminator, - STATE(3982), 2, + STATE(4031), 2, sym_comment, sym_include, - [153362] = 6, + [155515] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(6120), 1, - sym__terminator, - ACTIONS(6122), 1, - aux_sym_catch_statement_token1, - STATE(3983), 2, + ACTIONS(5465), 1, + aux_sym__block_terminator_token1, + STATE(1106), 1, + sym__block_terminator, + STATE(4032), 2, sym_comment, sym_include, - [153382] = 6, + [155535] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5742), 1, - anon_sym_LPAREN, - STATE(2450), 1, - sym_query_fields, - STATE(3984), 2, + ACTIONS(6151), 1, + sym__terminator, + ACTIONS(6153), 1, + aux_sym_primitive_type_token19, + STATE(4033), 2, sym_comment, sym_include, - [153402] = 6, + [155555] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5738), 1, + ACTIONS(5439), 1, aux_sym__block_terminator_token1, - STATE(894), 1, + STATE(1057), 1, sym__block_terminator, - STATE(3985), 2, + STATE(4034), 2, sym_comment, sym_include, - [153422] = 6, + [155575] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5742), 1, + ACTIONS(5783), 1, anon_sym_LPAREN, - STATE(2664), 1, + STATE(2729), 1, sym_query_fields, - STATE(3986), 2, + STATE(4035), 2, + sym_comment, + sym_include, + [155595] = 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, + STATE(2049), 1, + sym_qualified_name, + STATE(4036), 2, sym_comment, sym_include, - [153442] = 6, + [155615] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(6124), 1, - sym__terminator, - ACTIONS(6126), 1, - anon_sym_COLON, - STATE(3987), 2, + ACTIONS(5429), 1, + aux_sym__block_terminator_token1, + STATE(1311), 1, + sym__block_terminator, + STATE(4037), 2, sym_comment, sym_include, - [153462] = 6, + [155635] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(6128), 1, - aux_sym_primitive_type_token1, - ACTIONS(6130), 1, - aux_sym_event_definition_token2, - STATE(3988), 2, + ACTIONS(5669), 1, + aux_sym__block_terminator_token1, + STATE(1300), 1, + sym__block_terminator, + STATE(4038), 2, sym_comment, sym_include, - [153482] = 6, + [155655] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5742), 1, - anon_sym_LPAREN, - STATE(2496), 1, - sym_query_fields, - STATE(3989), 2, + ACTIONS(5439), 1, + aux_sym__block_terminator_token1, + STATE(1058), 1, + sym__block_terminator, + STATE(4039), 2, + sym_comment, + sym_include, + [155675] = 5, + ACTIONS(59), 1, + anon_sym_SLASH_SLASH, + ACTIONS(61), 1, + anon_sym_SLASH_STAR, + ACTIONS(65), 1, + anon_sym_LBRACE, + ACTIONS(2614), 2, + anon_sym_COMMA, + anon_sym_COLON, + STATE(4040), 2, sym_comment, sym_include, - [153502] = 6, + [155693] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5742), 1, + ACTIONS(5783), 1, anon_sym_LPAREN, - STATE(2609), 1, + STATE(2730), 1, sym_query_fields, - STATE(3990), 2, + STATE(4041), 2, sym_comment, sym_include, - [153522] = 6, - ACTIONS(3), 1, + [155713] = 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(6132), 1, - sym_identifier, - STATE(2709), 1, - sym_qualified_name, - STATE(3991), 2, + ACTIONS(6157), 1, + sym__terminator, + ACTIONS(6159), 1, + aux_sym_primitive_type_token19, + STATE(4042), 2, sym_comment, sym_include, - [153542] = 6, - ACTIONS(3), 1, + [155733] = 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(6134), 1, - sym_identifier, - STATE(4255), 1, - sym_qualified_name, - STATE(3992), 2, + ACTIONS(5783), 1, + anon_sym_LPAREN, + STATE(2468), 1, + sym_query_fields, + STATE(4043), 2, sym_comment, sym_include, - [153562] = 6, + [155753] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5738), 1, - aux_sym__block_terminator_token1, - STATE(895), 1, - sym__block_terminator, - STATE(3993), 2, + ACTIONS(5783), 1, + anon_sym_LPAREN, + STATE(2682), 1, + sym_query_fields, + STATE(4044), 2, sym_comment, sym_include, - [153582] = 6, + [155773] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5732), 1, + ACTIONS(5439), 1, aux_sym__block_terminator_token1, - STATE(1220), 1, + STATE(1062), 1, sym__block_terminator, - STATE(3994), 2, + STATE(4045), 2, sym_comment, sym_include, - [153602] = 6, + [155793] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(6136), 1, + ACTIONS(6161), 1, sym_identifier, - STATE(2602), 1, + STATE(4207), 1, sym_qualified_name, - STATE(3995), 2, + STATE(4046), 2, sym_comment, sym_include, - [153622] = 6, + [155813] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(6138), 1, - aux_sym_variable_definition_token5, - ACTIONS(6140), 1, - aux_sym_variable_definition_token6, - STATE(3996), 2, + ACTIONS(6163), 1, + sym__terminator, + ACTIONS(6165), 1, + aux_sym_constructor_definition_token1, + STATE(4047), 2, sym_comment, sym_include, - [153642] = 6, + [155833] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(6142), 1, + ACTIONS(6167), 1, sym__terminator, - ACTIONS(6144), 1, - aux_sym_catch_statement_token1, - STATE(3997), 2, + ACTIONS(6169), 1, + aux_sym_interface_statement_token1, + STATE(4048), 2, sym_comment, sym_include, - [153662] = 5, + [155853] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(6146), 2, - sym__terminator, - anon_sym_COLON, - STATE(3998), 2, + ACTIONS(5783), 1, + anon_sym_LPAREN, + STATE(2451), 1, + sym_query_fields, + STATE(4049), 2, + sym_comment, + sym_include, + [155873] = 6, + ACTIONS(59), 1, + anon_sym_SLASH_SLASH, + ACTIONS(61), 1, + anon_sym_SLASH_STAR, + ACTIONS(65), 1, + anon_sym_LBRACE, + ACTIONS(5783), 1, + anon_sym_LPAREN, + STATE(2655), 1, + sym_query_fields, + STATE(4050), 2, sym_comment, sym_include, - [153680] = 6, + [155893] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(6148), 1, + ACTIONS(6171), 1, sym_identifier, - STATE(1699), 1, + STATE(2651), 1, sym_qualified_name, - STATE(3999), 2, + STATE(4051), 2, sym_comment, sym_include, - [153700] = 6, + [155913] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(6150), 1, + ACTIONS(6173), 1, sym_identifier, - STATE(4419), 1, + STATE(4512), 1, sym_qualified_name, - STATE(4000), 2, + STATE(4052), 2, sym_comment, sym_include, - [153720] = 6, + [155933] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5732), 1, + ACTIONS(5429), 1, aux_sym__block_terminator_token1, - STATE(1469), 1, + STATE(1320), 1, sym__block_terminator, - STATE(4001), 2, + STATE(4053), 2, sym_comment, sym_include, - [153740] = 6, + [155953] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5247), 1, - sym__namedot, - STATE(3349), 1, - aux_sym_qualified_name_repeat1, - STATE(4002), 2, + ACTIONS(6175), 1, + sym__terminator, + ACTIONS(6177), 1, + aux_sym_catch_statement_token1, + STATE(4054), 2, sym_comment, sym_include, - [153760] = 5, + [155973] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(6152), 2, + ACTIONS(6179), 1, sym__terminator, + ACTIONS(6181), 1, anon_sym_COLON, - STATE(4003), 2, + STATE(4055), 2, sym_comment, sym_include, - [153778] = 6, + [155993] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5738), 1, + ACTIONS(5669), 1, aux_sym__block_terminator_token1, - STATE(899), 1, + STATE(1406), 1, sym__block_terminator, - STATE(4004), 2, - sym_comment, - sym_include, - [153798] = 6, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - ACTIONS(7), 1, - anon_sym_LBRACE, - ACTIONS(6154), 1, - sym_identifier, - STATE(4619), 1, - sym_qualified_name, - STATE(4005), 2, + STATE(4056), 2, sym_comment, sym_include, - [153818] = 6, + [156013] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(6156), 1, + ACTIONS(6183), 1, sym__terminator, - ACTIONS(6158), 1, - aux_sym_interface_statement_token1, - STATE(4006), 2, - sym_comment, - sym_include, - [153838] = 5, - ACTIONS(59), 1, - anon_sym_SLASH_SLASH, - ACTIONS(61), 1, - anon_sym_SLASH_STAR, - ACTIONS(65), 1, - anon_sym_LBRACE, - ACTIONS(6160), 2, - aux_sym_on_error_phrase_token2, - aux_sym_on_error_phrase_token7, - STATE(4007), 2, - sym_comment, - sym_include, - [153856] = 6, - ACTIONS(59), 1, - anon_sym_SLASH_SLASH, - ACTIONS(61), 1, - anon_sym_SLASH_STAR, - ACTIONS(65), 1, - anon_sym_LBRACE, - ACTIONS(5732), 1, - aux_sym__block_terminator_token1, - STATE(1478), 1, - sym__block_terminator, - STATE(4008), 2, + ACTIONS(6185), 1, + anon_sym_COLON, + STATE(4057), 2, sym_comment, sym_include, - [153876] = 6, + [156033] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5732), 1, + ACTIONS(5439), 1, aux_sym__block_terminator_token1, - STATE(1479), 1, + STATE(1063), 1, sym__block_terminator, - STATE(4009), 2, + STATE(4058), 2, sym_comment, sym_include, - [153896] = 6, + [156053] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5738), 1, - aux_sym__block_terminator_token1, - STATE(953), 1, - sym__block_terminator, - STATE(4010), 2, + ACTIONS(6187), 1, + aux_sym_variable_definition_token5, + ACTIONS(6189), 1, + aux_sym_variable_definition_token6, + STATE(4059), 2, sym_comment, sym_include, - [153916] = 6, + [156073] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(6162), 1, + ACTIONS(6191), 1, sym_identifier, - STATE(2574), 1, + STATE(1716), 1, sym_qualified_name, - STATE(4011), 2, + STATE(4060), 2, sym_comment, sym_include, - [153936] = 6, + [156093] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5742), 1, - anon_sym_LPAREN, - STATE(2545), 1, - sym_query_fields, - STATE(4012), 2, + ACTIONS(5439), 1, + aux_sym__block_terminator_token1, + STATE(1096), 1, + sym__block_terminator, + STATE(4061), 2, sym_comment, sym_include, - [153956] = 6, + [156113] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5742), 1, + ACTIONS(5783), 1, anon_sym_LPAREN, - STATE(2607), 1, + STATE(2724), 1, sym_query_fields, - STATE(4013), 2, + STATE(4062), 2, sym_comment, sym_include, - [153976] = 6, - ACTIONS(3), 1, + [156133] = 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(6164), 1, - sym_identifier, - ACTIONS(6166), 1, - sym__terminator, - STATE(4014), 2, + ACTIONS(5783), 1, + anon_sym_LPAREN, + STATE(2486), 1, + sym_query_fields, + STATE(4063), 2, sym_comment, sym_include, - [153996] = 6, + [156153] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(6168), 1, + ACTIONS(6193), 1, sym_identifier, - STATE(4152), 1, + STATE(3027), 1, sym_qualified_name, - STATE(4015), 2, + STATE(4064), 2, sym_comment, sym_include, - [154016] = 5, + [156173] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(6170), 2, + ACTIONS(6195), 2, aux_sym_on_error_phrase_token2, aux_sym_on_error_phrase_token7, - STATE(4016), 2, + STATE(4065), 2, sym_comment, sym_include, - [154034] = 6, + [156191] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5738), 1, + ACTIONS(5429), 1, aux_sym__block_terminator_token1, - STATE(907), 1, + STATE(1366), 1, sym__block_terminator, - STATE(4017), 2, + STATE(4066), 2, sym_comment, sym_include, - [154054] = 6, + [156211] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5738), 1, - aux_sym__block_terminator_token1, - STATE(908), 1, - sym__block_terminator, - STATE(4018), 2, + ACTIONS(6197), 2, + aux_sym_on_error_phrase_token2, + aux_sym_on_error_phrase_token7, + STATE(4067), 2, sym_comment, sym_include, - [154074] = 6, + [156229] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5376), 1, + ACTIONS(5669), 1, aux_sym__block_terminator_token1, - STATE(1138), 1, + STATE(1380), 1, sym__block_terminator, - STATE(4019), 2, + STATE(4068), 2, sym_comment, sym_include, - [154094] = 6, + [156249] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5376), 1, - aux_sym__block_terminator_token1, - STATE(1321), 1, - sym__block_terminator, - STATE(4020), 2, + ACTIONS(6199), 1, + aux_sym_variable_definition_token5, + ACTIONS(6201), 1, + aux_sym_function_parameter_token2, + STATE(4069), 2, sym_comment, sym_include, - [154114] = 6, + [156269] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5732), 1, - aux_sym__block_terminator_token1, - STATE(1193), 1, - sym__block_terminator, - STATE(4021), 2, + ACTIONS(6203), 2, + sym__terminator, + anon_sym_COLON, + STATE(4070), 2, sym_comment, sym_include, - [154134] = 6, + [156287] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(6172), 1, - sym__terminator, - ACTIONS(6174), 1, - aux_sym_finally_statement_token1, - STATE(4022), 2, + ACTIONS(5439), 1, + aux_sym__block_terminator_token1, + STATE(1067), 1, + sym__block_terminator, + STATE(4071), 2, sym_comment, sym_include, - [154154] = 6, + [156307] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(6176), 1, - sym__terminator, - ACTIONS(6178), 1, - aux_sym_catch_statement_token1, - STATE(4023), 2, + ACTIONS(6205), 1, + aux_sym_getter_token1, + ACTIONS(6207), 1, + aux_sym_setter_token1, + STATE(4072), 2, sym_comment, sym_include, - [154174] = 6, + [156327] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(6180), 1, - sym__terminator, - ACTIONS(6182), 1, - aux_sym_catch_statement_token1, - STATE(4024), 2, + ACTIONS(5783), 1, + anon_sym_LPAREN, + STATE(2438), 1, + sym_query_fields, + STATE(4073), 2, sym_comment, sym_include, - [154194] = 5, - ACTIONS(3), 1, + [156347] = 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(6184), 2, - sym_identifier, - aux_sym_function_parameter_token1, - STATE(4025), 2, + ACTIONS(5783), 1, + anon_sym_LPAREN, + STATE(2641), 1, + sym_query_fields, + STATE(4074), 2, sym_comment, sym_include, - [154212] = 6, + [156367] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5738), 1, + ACTIONS(5429), 1, aux_sym__block_terminator_token1, - STATE(910), 1, + STATE(1404), 1, sym__block_terminator, - STATE(4026), 2, + STATE(4075), 2, sym_comment, sym_include, - [154232] = 6, + [156387] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5618), 1, - aux_sym_scope_tuning_token1, - STATE(4234), 1, - sym_new_expression, - STATE(4027), 2, + ACTIONS(5429), 1, + aux_sym__block_terminator_token1, + STATE(1405), 1, + sym__block_terminator, + STATE(4076), 2, sym_comment, sym_include, - [154252] = 5, + [156407] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(6186), 2, - aux_sym_on_error_phrase_token2, - aux_sym_on_error_phrase_token7, - STATE(4028), 2, + ACTIONS(6209), 1, + sym__terminator, + ACTIONS(6211), 1, + anon_sym_LPAREN, + STATE(4077), 2, + sym_comment, + sym_include, + [156427] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_LBRACE, + ACTIONS(6213), 2, + sym_identifier, + aux_sym_function_parameter_token1, + STATE(4078), 2, sym_comment, sym_include, - [154270] = 6, + [156445] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5742), 1, - anon_sym_LPAREN, - STATE(2559), 1, - sym_query_fields, - STATE(4029), 2, + ACTIONS(5439), 1, + aux_sym__block_terminator_token1, + STATE(1069), 1, + sym__block_terminator, + STATE(4079), 2, sym_comment, sym_include, - [154290] = 6, + [156465] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(6188), 1, + ACTIONS(6215), 1, sym_identifier, - ACTIONS(6190), 1, + ACTIONS(6217), 1, aux_sym_function_parameter_token1, - STATE(4030), 2, + STATE(4080), 2, + sym_comment, + sym_include, + [156485] = 6, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_LBRACE, + ACTIONS(6219), 1, + sym_identifier, + STATE(2974), 1, + sym_qualified_name, + STATE(4081), 2, sym_comment, sym_include, - [154310] = 6, + [156505] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5738), 1, - aux_sym__block_terminator_token1, - STATE(911), 1, - sym__block_terminator, - STATE(4031), 2, + ACTIONS(6221), 2, + sym__terminator, + anon_sym_COLON, + STATE(4082), 2, sym_comment, sym_include, - [154330] = 6, + [156523] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5376), 1, + ACTIONS(5439), 1, aux_sym__block_terminator_token1, - STATE(1178), 1, + STATE(1072), 1, sym__block_terminator, - STATE(4032), 2, + STATE(4083), 2, sym_comment, sym_include, - [154350] = 6, + [156543] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5732), 1, + ACTIONS(5509), 1, aux_sym__block_terminator_token1, - STATE(1501), 1, + STATE(3650), 1, sym__block_terminator, - STATE(4033), 2, + STATE(4084), 2, + sym_comment, + sym_include, + [156563] = 6, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_LBRACE, + ACTIONS(6223), 1, + sym_identifier, + ACTIONS(6225), 1, + sym__terminator, + STATE(4085), 2, sym_comment, sym_include, - [154370] = 6, + [156583] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(6192), 1, - sym__terminator, - ACTIONS(6194), 1, - aux_sym_interface_statement_token1, - STATE(4034), 2, + ACTIONS(5669), 1, + aux_sym__block_terminator_token1, + STATE(1227), 1, + sym__block_terminator, + STATE(4086), 2, sym_comment, sym_include, - [154390] = 6, + [156603] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(6196), 1, + ACTIONS(6227), 1, sym__terminator, - ACTIONS(6198), 1, - aux_sym_finally_statement_token1, - STATE(4035), 2, + ACTIONS(6229), 1, + aux_sym_catch_statement_token1, + STATE(4087), 2, sym_comment, sym_include, - [154410] = 6, + [156623] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(6200), 1, + ACTIONS(6231), 1, sym__terminator, - ACTIONS(6202), 1, + ACTIONS(6233), 1, aux_sym_interface_statement_token1, - STATE(4036), 2, + STATE(4088), 2, sym_comment, sym_include, - [154430] = 6, + [156643] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5376), 1, + ACTIONS(5669), 1, aux_sym__block_terminator_token1, - STATE(1294), 1, + STATE(1353), 1, sym__block_terminator, - STATE(4037), 2, + STATE(4089), 2, sym_comment, sym_include, - [154450] = 5, - ACTIONS(59), 1, + [156663] = 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(6204), 2, - sym__terminator, - anon_sym_COLON, - STATE(4038), 2, + ACTIONS(6235), 1, + sym_identifier, + ACTIONS(6237), 1, + anon_sym_STAR, + STATE(4090), 2, sym_comment, sym_include, - [154468] = 6, + [156683] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(6206), 1, - sym__terminator, - ACTIONS(6208), 1, - aux_sym_catch_statement_token1, - STATE(4039), 2, + ACTIONS(5783), 1, + anon_sym_LPAREN, + STATE(2631), 1, + sym_query_fields, + STATE(4091), 2, sym_comment, sym_include, - [154488] = 6, + [156703] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(6210), 1, - aux_sym_variable_definition_token5, - ACTIONS(6212), 1, - aux_sym_function_parameter_token2, - STATE(4040), 2, + ACTIONS(5429), 1, + aux_sym__block_terminator_token1, + STATE(1141), 1, + sym__block_terminator, + STATE(4092), 2, sym_comment, sym_include, - [154508] = 6, + [156723] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5742), 1, - anon_sym_LPAREN, - STATE(2691), 1, - sym_query_fields, - STATE(4041), 2, + ACTIONS(5509), 1, + aux_sym__block_terminator_token1, + STATE(3623), 1, + sym__block_terminator, + STATE(4093), 2, sym_comment, sym_include, - [154528] = 6, + [156743] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(6214), 1, - sym__terminator, - ACTIONS(6216), 1, - aux_sym_primitive_type_token19, - STATE(4042), 2, + ACTIONS(5669), 1, + aux_sym__block_terminator_token1, + STATE(1223), 1, + sym__block_terminator, + STATE(4094), 2, sym_comment, sym_include, - [154548] = 6, - ACTIONS(59), 1, + [156763] = 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(5738), 1, - aux_sym__block_terminator_token1, - STATE(916), 1, - sym__block_terminator, - STATE(4043), 2, + ACTIONS(6239), 1, + sym_identifier, + STATE(4339), 1, + sym_qualified_name, + STATE(4095), 2, + sym_comment, + sym_include, + [156783] = 6, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_LBRACE, + ACTIONS(6241), 1, + sym_identifier, + STATE(2709), 1, + sym_qualified_name, + STATE(4096), 2, sym_comment, sym_include, - [154568] = 5, + [156803] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(6218), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - STATE(4044), 2, + ACTIONS(5783), 1, + anon_sym_LPAREN, + STATE(2705), 1, + sym_query_fields, + STATE(4097), 2, sym_comment, sym_include, - [154586] = 6, + [156823] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5376), 1, - aux_sym__block_terminator_token1, - STATE(1209), 1, - sym__block_terminator, - STATE(4045), 2, + ACTIONS(6243), 1, + sym__terminator, + ACTIONS(6245), 1, + aux_sym_catch_statement_token1, + STATE(4098), 2, sym_comment, sym_include, - [154606] = 6, + [156843] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(6220), 1, + ACTIONS(6247), 2, sym__terminator, - ACTIONS(6222), 1, - aux_sym_catch_statement_token1, - STATE(4046), 2, + anon_sym_COLON, + STATE(4099), 2, sym_comment, sym_include, - [154626] = 6, + [156861] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5732), 1, - aux_sym__block_terminator_token1, - STATE(1156), 1, - sym__block_terminator, - STATE(4047), 2, + ACTIONS(5258), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + STATE(4100), 2, sym_comment, sym_include, - [154646] = 6, + [156879] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5738), 1, - aux_sym__block_terminator_token1, - STATE(920), 1, - sym__block_terminator, - STATE(4048), 2, + ACTIONS(6249), 1, + aux_sym_variable_definition_token5, + ACTIONS(6251), 1, + aux_sym_function_parameter_token2, + STATE(4101), 2, sym_comment, sym_include, - [154666] = 6, + [156899] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5732), 1, - aux_sym__block_terminator_token1, - STATE(1151), 1, - sym__block_terminator, - STATE(4049), 2, + ACTIONS(5783), 1, + anon_sym_LPAREN, + STATE(2478), 1, + sym_query_fields, + STATE(4102), 2, sym_comment, sym_include, - [154686] = 5, + [156919] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(6224), 2, - aux_sym_on_error_phrase_token2, - aux_sym_on_error_phrase_token7, - STATE(4050), 2, + ACTIONS(5881), 1, + anon_sym_DOT, + ACTIONS(6253), 1, + aux_sym__function_terminator_token1, + STATE(4103), 2, sym_comment, sym_include, - [154704] = 6, - ACTIONS(3), 1, + [156939] = 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(6226), 1, - sym_identifier, - STATE(2629), 1, - sym_qualified_name, - STATE(4051), 2, + ACTIONS(5783), 1, + anon_sym_LPAREN, + STATE(2624), 1, + sym_query_fields, + STATE(4104), 2, sym_comment, sym_include, - [154724] = 6, + [156959] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5732), 1, - aux_sym__block_terminator_token1, - STATE(1507), 1, - sym__block_terminator, - STATE(4052), 2, + ACTIONS(6255), 1, + sym__terminator, + ACTIONS(6257), 1, + aux_sym_catch_statement_token1, + STATE(4105), 2, sym_comment, sym_include, - [154744] = 5, + [156979] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(6228), 2, - anon_sym_COMMA, - anon_sym_COLON, - STATE(4053), 2, + ACTIONS(5429), 1, + aux_sym__block_terminator_token1, + STATE(1480), 1, + sym__block_terminator, + STATE(4106), 2, sym_comment, sym_include, - [154762] = 6, - ACTIONS(3), 1, + [156999] = 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(5128), 1, + ACTIONS(6259), 2, anon_sym_RPAREN, - ACTIONS(6230), 1, - anon_sym_, - STATE(4054), 2, + anon_sym_COMMA, + STATE(4107), 2, sym_comment, sym_include, - [154782] = 6, + [157017] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(6232), 1, - sym__terminator, - ACTIONS(6234), 1, - aux_sym_interface_statement_token1, - STATE(4055), 2, + ACTIONS(5669), 1, + aux_sym__block_terminator_token1, + STATE(1211), 1, + sym__block_terminator, + STATE(4108), 2, sym_comment, sym_include, - [154802] = 5, + [157037] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(6236), 2, - anon_sym_COMMA, - anon_sym_COLON, - STATE(4056), 2, + ACTIONS(5439), 1, + aux_sym__block_terminator_token1, + STATE(1073), 1, + sym__block_terminator, + STATE(4109), 2, sym_comment, sym_include, - [154820] = 6, + [157057] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5738), 1, + ACTIONS(5429), 1, aux_sym__block_terminator_token1, - STATE(924), 1, + STATE(1495), 1, sym__block_terminator, - STATE(4057), 2, + STATE(4110), 2, sym_comment, sym_include, - [154840] = 6, + [157077] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(6238), 1, - sym__terminator, - ACTIONS(6240), 1, - aux_sym_interface_statement_token1, - STATE(4058), 2, + ACTIONS(5429), 1, + aux_sym__block_terminator_token1, + STATE(1500), 1, + sym__block_terminator, + STATE(4111), 2, sym_comment, sym_include, - [154860] = 6, + [157097] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5738), 1, - aux_sym__block_terminator_token1, - STATE(929), 1, - sym__block_terminator, - STATE(4059), 2, + ACTIONS(6261), 1, + sym__terminator, + ACTIONS(6263), 1, + aux_sym_catch_statement_token1, + STATE(4112), 2, sym_comment, sym_include, - [154880] = 6, + [157117] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(6242), 1, - sym_identifier, - STATE(293), 1, - sym_qualified_name, - STATE(4060), 2, + ACTIONS(5187), 1, + anon_sym_RPAREN, + ACTIONS(6265), 1, + anon_sym_, + STATE(4113), 2, sym_comment, sym_include, - [154900] = 6, + [157137] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5376), 1, + ACTIONS(6267), 2, + sym__terminator, + anon_sym_COLON, + STATE(4114), 2, + sym_comment, + sym_include, + [157155] = 6, + ACTIONS(59), 1, + anon_sym_SLASH_SLASH, + ACTIONS(61), 1, + anon_sym_SLASH_STAR, + ACTIONS(65), 1, + anon_sym_LBRACE, + ACTIONS(5669), 1, aux_sym__block_terminator_token1, - STATE(1282), 1, + STATE(1338), 1, sym__block_terminator, - STATE(4061), 2, + STATE(4115), 2, sym_comment, sym_include, - [154920] = 5, + [157175] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(6244), 2, - aux_sym_on_error_phrase_token2, - aux_sym_on_error_phrase_token7, - STATE(4062), 2, + ACTIONS(5429), 1, + aux_sym__block_terminator_token1, + STATE(1548), 1, + sym__block_terminator, + STATE(4116), 2, sym_comment, sym_include, - [154938] = 6, + [157195] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5732), 1, + ACTIONS(5439), 1, aux_sym__block_terminator_token1, - STATE(1137), 1, + STATE(1087), 1, sym__block_terminator, - STATE(4063), 2, + STATE(4117), 2, sym_comment, sym_include, - [154958] = 6, + [157215] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5738), 1, + ACTIONS(5429), 1, aux_sym__block_terminator_token1, - STATE(945), 1, + STATE(1390), 1, sym__block_terminator, - STATE(4064), 2, + STATE(4118), 2, sym_comment, sym_include, - [154978] = 6, + [157235] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5732), 1, + ACTIONS(5669), 1, aux_sym__block_terminator_token1, - STATE(1510), 1, + STATE(1203), 1, sym__block_terminator, - STATE(4065), 2, + STATE(4119), 2, sym_comment, sym_include, - [154998] = 6, + [157255] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5618), 1, - aux_sym_scope_tuning_token1, - STATE(4343), 1, - sym_new_expression, - STATE(4066), 2, + ACTIONS(2558), 2, + anon_sym_COMMA, + anon_sym_COLON, + STATE(4120), 2, sym_comment, sym_include, - [155018] = 5, + [157273] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(6246), 2, - aux_sym_on_error_phrase_token2, - aux_sym_on_error_phrase_token7, - STATE(4067), 2, + ACTIONS(5439), 1, + aux_sym__block_terminator_token1, + STATE(1088), 1, + sym__block_terminator, + STATE(4121), 2, sym_comment, sym_include, - [155036] = 6, + [157293] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(6248), 1, + ACTIONS(6269), 1, sym__terminator, - ACTIONS(6250), 1, - aux_sym_primitive_type_token19, - STATE(4068), 2, + ACTIONS(6271), 1, + aux_sym_catch_statement_token1, + STATE(4122), 2, sym_comment, sym_include, - [155056] = 6, + [157313] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5376), 1, + ACTIONS(5429), 1, aux_sym__block_terminator_token1, - STATE(1221), 1, + STATE(1451), 1, sym__block_terminator, - STATE(4069), 2, + STATE(4123), 2, sym_comment, sym_include, - [155076] = 5, + [157333] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2449), 2, - anon_sym_COMMA, - anon_sym_COLON, - STATE(4070), 2, + ACTIONS(5429), 1, + aux_sym__block_terminator_token1, + STATE(1187), 1, + sym__block_terminator, + STATE(4124), 2, sym_comment, sym_include, - [155094] = 6, + [157353] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5742), 1, + ACTIONS(5783), 1, anon_sym_LPAREN, - STATE(2549), 1, + STATE(2643), 1, sym_query_fields, - STATE(4071), 2, + STATE(4125), 2, sym_comment, sym_include, - [155114] = 6, + [157373] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5384), 1, - aux_sym_on_error_phrase_token1, - STATE(4467), 1, - sym_on_error_phrase, - STATE(4072), 2, + ACTIONS(5429), 1, + aux_sym__block_terminator_token1, + STATE(1395), 1, + sym__block_terminator, + STATE(4126), 2, sym_comment, sym_include, - [155134] = 6, + [157393] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(6252), 1, + ACTIONS(6273), 1, sym_identifier, - STATE(3018), 1, + STATE(3140), 1, sym_qualified_name, - STATE(4073), 2, + STATE(4127), 2, sym_comment, sym_include, - [155154] = 6, + [157413] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5742), 1, - anon_sym_LPAREN, - STATE(2533), 1, - sym_query_fields, - STATE(4074), 2, + ACTIONS(5429), 1, + aux_sym__block_terminator_token1, + STATE(1180), 1, + sym__block_terminator, + STATE(4128), 2, sym_comment, sym_include, - [155174] = 6, + [157433] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(6254), 1, + ACTIONS(6275), 1, sym_identifier, - STATE(1727), 1, + STATE(1729), 1, sym_qualified_name, - STATE(4075), 2, + STATE(4129), 2, sym_comment, sym_include, - [155194] = 6, + [157453] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5376), 1, + ACTIONS(5439), 1, aux_sym__block_terminator_token1, - STATE(1327), 1, + STATE(1089), 1, sym__block_terminator, - STATE(4076), 2, + STATE(4130), 2, sym_comment, sym_include, - [155214] = 6, - ACTIONS(59), 1, + [157473] = 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(5360), 1, - aux_sym_output_stream_statement_token1, - ACTIONS(6256), 1, - aux_sym_input_close_statement_token2, - STATE(4077), 2, + ACTIONS(6277), 1, + sym_identifier, + ACTIONS(6279), 1, + anon_sym_RPAREN, + STATE(4131), 2, sym_comment, sym_include, - [155234] = 6, + [157493] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5732), 1, + ACTIONS(5429), 1, aux_sym__block_terminator_token1, - STATE(1519), 1, + STATE(1499), 1, sym__block_terminator, - STATE(4078), 2, + STATE(4132), 2, sym_comment, sym_include, - [155254] = 6, + [157513] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(6258), 1, - aux_sym_primitive_type_token1, - ACTIONS(6260), 1, - aux_sym_event_definition_token2, - STATE(4079), 2, + ACTIONS(6281), 1, + aux_sym_variable_definition_token5, + ACTIONS(6283), 1, + aux_sym_variable_definition_token6, + STATE(4133), 2, sym_comment, sym_include, - [155274] = 6, - ACTIONS(59), 1, + [157533] = 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(6262), 1, - aux_sym_using_statement_token2, - ACTIONS(6264), 1, - aux_sym_input_close_statement_token2, - STATE(4080), 2, + ACTIONS(6285), 1, + sym_identifier, + ACTIONS(6287), 1, + anon_sym_STAR, + STATE(4134), 2, sym_comment, sym_include, - [155294] = 6, - ACTIONS(3), 1, + [157553] = 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(6266), 1, - sym_identifier, - STATE(1926), 1, - sym_qualified_name, - STATE(4081), 2, + ACTIONS(5451), 1, + aux_sym_on_error_phrase_token1, + STATE(4733), 1, + sym_on_error_phrase, + STATE(4135), 2, sym_comment, sym_include, - [155314] = 6, + [157573] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5738), 1, + ACTIONS(5429), 1, aux_sym__block_terminator_token1, - STATE(939), 1, + STATE(1399), 1, sym__block_terminator, - STATE(4082), 2, + STATE(4136), 2, sym_comment, sym_include, - [155334] = 6, + [157593] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(6262), 1, - aux_sym_using_statement_token2, - ACTIONS(6268), 1, - aux_sym_input_close_statement_token2, - STATE(4083), 2, + ACTIONS(5439), 1, + aux_sym__block_terminator_token1, + STATE(1091), 1, + sym__block_terminator, + STATE(4137), 2, sym_comment, sym_include, - [155354] = 6, + [157613] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(6270), 1, - aux_sym_variable_definition_token5, - ACTIONS(6272), 1, - aux_sym_variable_definition_token6, - STATE(4084), 2, + ACTIONS(6289), 1, + aux_sym_primitive_type_token1, + ACTIONS(6291), 1, + aux_sym_event_definition_token2, + STATE(4138), 2, sym_comment, sym_include, - [155374] = 6, + [157633] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(6274), 1, + ACTIONS(6293), 1, sym_identifier, - ACTIONS(6276), 1, - sym__integer_literal, - STATE(4085), 2, + STATE(2671), 1, + sym_qualified_name, + STATE(4139), 2, sym_comment, sym_include, - [155394] = 5, - ACTIONS(59), 1, + [157653] = 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(6278), 1, - sym__terminator, - STATE(4086), 2, + ACTIONS(6295), 1, + sym_identifier, + STATE(4483), 1, + sym_qualified_name, + STATE(4140), 2, sym_comment, sym_include, - [155411] = 5, - ACTIONS(59), 1, + [157673] = 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(5784), 1, - sym__terminator, - STATE(4087), 2, + ACTIONS(6297), 1, + sym_identifier, + STATE(2677), 1, + sym_qualified_name, + STATE(4141), 2, sym_comment, sym_include, - [155428] = 5, + [157693] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5149), 1, + ACTIONS(6299), 1, sym__terminator, - STATE(4088), 2, + ACTIONS(6301), 1, + anon_sym_COLON, + STATE(4142), 2, sym_comment, sym_include, - [155445] = 5, + [157713] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(6258), 1, + ACTIONS(6303), 1, aux_sym_primitive_type_token1, - STATE(4089), 2, + ACTIONS(6305), 1, + aux_sym_event_definition_token2, + STATE(4143), 2, sym_comment, sym_include, - [155462] = 5, + [157733] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(6280), 1, - sym__terminator, - STATE(4090), 2, + ACTIONS(5429), 1, + aux_sym__block_terminator_token1, + STATE(1400), 1, + sym__block_terminator, + STATE(4144), 2, sym_comment, sym_include, - [155479] = 5, + [157753] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(3788), 1, - anon_sym_COLON, - STATE(4091), 2, + ACTIONS(6307), 1, + aux_sym_variable_definition_token5, + ACTIONS(6309), 1, + aux_sym_variable_definition_token6, + STATE(4145), 2, sym_comment, sym_include, - [155496] = 5, + [157773] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(6282), 1, - sym__terminator, - STATE(4092), 2, + ACTIONS(5427), 1, + aux_sym_scope_tuning_token1, + STATE(4530), 1, + sym_new_expression, + STATE(4146), 2, sym_comment, sym_include, - [155513] = 5, + [157793] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(6284), 1, - anon_sym_COLON, - STATE(4093), 2, + ACTIONS(6311), 2, + aux_sym_on_error_phrase_token2, + aux_sym_on_error_phrase_token7, + STATE(4147), 2, sym_comment, sym_include, - [155530] = 5, + [157811] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(6286), 1, + ACTIONS(6313), 1, sym_identifier, - STATE(4094), 2, + STATE(1710), 1, + sym_qualified_name, + STATE(4148), 2, sym_comment, sym_include, - [155547] = 5, + [157831] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(3052), 1, - anon_sym_COLON, - STATE(4095), 2, + ACTIONS(5439), 1, + aux_sym__block_terminator_token1, + STATE(1092), 1, + sym__block_terminator, + STATE(4149), 2, sym_comment, sym_include, - [155564] = 5, + [157851] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(6288), 1, - anon_sym_LPAREN, - STATE(4096), 2, + ACTIONS(5429), 1, + aux_sym__block_terminator_token1, + STATE(1443), 1, + sym__block_terminator, + STATE(4150), 2, sym_comment, sym_include, - [155581] = 5, + [157871] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(6290), 1, + ACTIONS(6315), 1, sym_identifier, - STATE(4097), 2, + STATE(3166), 1, + sym_qualified_name, + STATE(4151), 2, sym_comment, sym_include, - [155598] = 5, + [157891] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(6292), 1, - aux_sym_property_definition_token1, - STATE(4098), 2, + ACTIONS(5429), 1, + aux_sym__block_terminator_token1, + STATE(1497), 1, + sym__block_terminator, + STATE(4152), 2, sym_comment, sym_include, - [155615] = 5, + [157911] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(6294), 1, - anon_sym_COLON, - STATE(4099), 2, - sym_comment, - sym_include, - [155632] = 5, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - ACTIONS(7), 1, - anon_sym_LBRACE, - ACTIONS(6296), 1, - sym_identifier, - STATE(4100), 2, + ACTIONS(5439), 1, + aux_sym__block_terminator_token1, + STATE(1093), 1, + sym__block_terminator, + STATE(4153), 2, sym_comment, sym_include, - [155649] = 5, - ACTIONS(3), 1, + [157931] = 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(6298), 1, - sym_identifier, - STATE(4101), 2, + ACTIONS(5783), 1, + anon_sym_LPAREN, + STATE(2441), 1, + sym_query_fields, + STATE(4154), 2, sym_comment, sym_include, - [155666] = 5, + [157951] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(6300), 1, + ACTIONS(6317), 1, sym_identifier, - STATE(4102), 2, + STATE(1945), 1, + sym_qualified_name, + STATE(4155), 2, sym_comment, sym_include, - [155683] = 5, + [157971] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5139), 1, - sym__terminator, - STATE(4103), 2, + ACTIONS(6319), 2, + aux_sym_on_error_phrase_token2, + aux_sym_on_error_phrase_token7, + STATE(4156), 2, sym_comment, sym_include, - [155700] = 5, + [157989] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5135), 1, - anon_sym_LPAREN, - STATE(4104), 2, + ACTIONS(5429), 1, + aux_sym__block_terminator_token1, + STATE(1408), 1, + sym__block_terminator, + STATE(4157), 2, sym_comment, sym_include, - [155717] = 5, + [158009] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(6302), 1, + ACTIONS(6321), 1, sym_identifier, - STATE(4105), 2, + ACTIONS(6323), 1, + sym__integer_literal, + STATE(4158), 2, sym_comment, sym_include, - [155734] = 5, - ACTIONS(3), 1, + [158029] = 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(6304), 1, - sym_identifier, - STATE(4106), 2, + ACTIONS(5783), 1, + anon_sym_LPAREN, + STATE(2652), 1, + sym_query_fields, + STATE(4159), 2, sym_comment, sym_include, - [155751] = 5, + [158049] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(6306), 1, - aux_sym_buffer_definition_token2, - STATE(4107), 2, + ACTIONS(5429), 1, + aux_sym__block_terminator_token1, + STATE(1469), 1, + sym__block_terminator, + STATE(4160), 2, sym_comment, sym_include, - [155768] = 5, + [158069] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(6308), 1, - aux_sym_buffer_definition_token2, - STATE(4108), 2, + ACTIONS(2455), 2, + anon_sym_COMMA, + anon_sym_COLON, + STATE(4161), 2, sym_comment, sym_include, - [155785] = 5, + [158087] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(3772), 1, - anon_sym_COLON, - STATE(4109), 2, + ACTIONS(5669), 1, + aux_sym__block_terminator_token1, + STATE(1272), 1, + sym__block_terminator, + STATE(4162), 2, sym_comment, sym_include, - [155802] = 5, + [158107] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(6310), 1, - sym__terminator, - STATE(4110), 2, + ACTIONS(6325), 1, + aux_sym_using_statement_token2, + ACTIONS(6327), 1, + aux_sym_input_close_statement_token2, + STATE(4163), 2, sym_comment, sym_include, - [155819] = 5, + [158127] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(6312), 1, - anon_sym_LPAREN, - STATE(4111), 2, + ACTIONS(6325), 1, + aux_sym_using_statement_token2, + ACTIONS(6329), 1, + aux_sym_input_close_statement_token2, + STATE(4164), 2, sym_comment, sym_include, - [155836] = 5, - ACTIONS(3), 1, + [158147] = 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(6314), 1, - sym_identifier, - STATE(4112), 2, + ACTIONS(5429), 1, + aux_sym__block_terminator_token1, + STATE(1459), 1, + sym__block_terminator, + STATE(4165), 2, sym_comment, sym_include, - [155853] = 5, - ACTIONS(3), 1, + [158167] = 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(6316), 1, - sym_identifier, - STATE(4113), 2, + ACTIONS(5439), 1, + aux_sym__block_terminator_token1, + STATE(848), 1, + sym__block_terminator, + STATE(4166), 2, sym_comment, sym_include, - [155870] = 5, + [158187] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(3232), 1, + ACTIONS(5439), 1, aux_sym__block_terminator_token1, - STATE(4114), 2, + STATE(1099), 1, + sym__block_terminator, + STATE(4167), 2, sym_comment, sym_include, - [155887] = 5, + [158207] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(6248), 1, - sym__terminator, - STATE(4115), 2, + ACTIONS(5669), 1, + aux_sym__block_terminator_token1, + STATE(1159), 1, + sym__block_terminator, + STATE(4168), 2, sym_comment, sym_include, - [155904] = 5, + [158227] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(3084), 1, - anon_sym_COLON, - STATE(4116), 2, + ACTIONS(6331), 1, + aux_sym_input_close_statement_token2, + ACTIONS(6333), 1, + aux_sym_output_stream_statement_token1, + STATE(4169), 2, sym_comment, sym_include, - [155921] = 5, - ACTIONS(3), 1, + [158247] = 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(6318), 1, - sym_identifier, - STATE(4117), 2, + ACTIONS(6333), 1, + aux_sym_output_stream_statement_token1, + ACTIONS(6335), 1, + aux_sym_input_close_statement_token2, + STATE(4170), 2, sym_comment, sym_include, - [155938] = 5, - ACTIONS(3), 1, + [158267] = 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(6320), 1, - sym_identifier, - STATE(4118), 2, + ACTIONS(5429), 1, + aux_sym__block_terminator_token1, + STATE(1421), 1, + sym__block_terminator, + STATE(4171), 2, sym_comment, sym_include, - [155955] = 5, + [158287] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(6322), 1, + ACTIONS(6337), 1, sym__terminator, - STATE(4119), 2, + ACTIONS(6339), 1, + aux_sym_catch_statement_token1, + STATE(4172), 2, sym_comment, sym_include, - [155972] = 5, + [158307] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(6238), 1, + ACTIONS(6341), 1, sym__terminator, - STATE(4120), 2, + ACTIONS(6343), 1, + aux_sym_catch_statement_token1, + STATE(4173), 2, sym_comment, sym_include, - [155989] = 5, + [158327] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(6324), 1, - sym__terminator, - STATE(4121), 2, + ACTIONS(6345), 2, + aux_sym_on_error_phrase_token2, + aux_sym_on_error_phrase_token7, + STATE(4174), 2, sym_comment, sym_include, - [156006] = 5, + [158345] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(6326), 1, - sym__terminator, - STATE(4122), 2, + ACTIONS(5429), 1, + aux_sym__block_terminator_token1, + STATE(1454), 1, + sym__block_terminator, + STATE(4175), 2, sym_comment, sym_include, - [156023] = 5, + [158365] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5157), 1, - sym__terminator, - STATE(4123), 2, + ACTIONS(5669), 1, + aux_sym__block_terminator_token1, + STATE(1179), 1, + sym__block_terminator, + STATE(4176), 2, sym_comment, sym_include, - [156040] = 5, + [158385] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(6328), 1, - sym__terminator, - STATE(4124), 2, + ACTIONS(5439), 1, + aux_sym__block_terminator_token1, + STATE(1094), 1, + sym__block_terminator, + STATE(4177), 2, sym_comment, sym_include, - [156057] = 5, + [158405] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2662), 1, + ACTIONS(5429), 1, aux_sym__block_terminator_token1, - STATE(4125), 2, + STATE(1422), 1, + sym__block_terminator, + STATE(4178), 2, sym_comment, sym_include, - [156074] = 5, + [158425] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(6330), 1, - sym__terminator, - STATE(4126), 2, + ACTIONS(6347), 2, + aux_sym_on_error_phrase_token2, + aux_sym_on_error_phrase_token7, + STATE(4179), 2, sym_comment, sym_include, - [156091] = 5, + [158443] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(6332), 1, - sym__terminator, - STATE(4127), 2, + ACTIONS(5427), 1, + aux_sym_scope_tuning_token1, + STATE(4709), 1, + sym_new_expression, + STATE(4180), 2, sym_comment, sym_include, - [156108] = 5, + [158463] = 6, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(6334), 1, + ACTIONS(6349), 1, sym_identifier, - STATE(4128), 2, + STATE(2621), 1, + sym_qualified_name, + STATE(4181), 2, sym_comment, sym_include, - [156125] = 5, + [158483] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(6336), 1, - sym__terminator, - STATE(4129), 2, + ACTIONS(5439), 1, + aux_sym__block_terminator_token1, + STATE(1097), 1, + sym__block_terminator, + STATE(4182), 2, sym_comment, sym_include, - [156142] = 5, + [158503] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(6232), 1, + ACTIONS(6351), 2, sym__terminator, - STATE(4130), 2, + anon_sym_COLON, + STATE(4183), 2, sym_comment, sym_include, - [156159] = 5, - ACTIONS(3), 1, + [158521] = 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(6338), 1, - sym_identifier, - STATE(4131), 2, + ACTIONS(5439), 1, + aux_sym__block_terminator_token1, + STATE(1095), 1, + sym__block_terminator, + STATE(4184), 2, sym_comment, sym_include, - [156176] = 5, + [158541] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(6340), 1, - aux_sym__block_terminator_token1, - STATE(4132), 2, + ACTIONS(6353), 1, + aux_sym_variable_definition_token5, + ACTIONS(6355), 1, + aux_sym_function_parameter_token2, + STATE(4185), 2, sym_comment, sym_include, - [156193] = 5, + [158561] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(6342), 1, - anon_sym_DOT, - STATE(4133), 2, + ACTIONS(6357), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + STATE(4186), 2, sym_comment, sym_include, - [156210] = 5, + [158579] = 6, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5088), 1, - sym__terminator, - STATE(4134), 2, + ACTIONS(5669), 1, + aux_sym__block_terminator_token1, + STATE(1239), 1, + sym__block_terminator, + STATE(4187), 2, + sym_comment, + sym_include, + [158599] = 6, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_LBRACE, + ACTIONS(6359), 1, + sym_identifier, + STATE(295), 1, + sym_qualified_name, + STATE(4188), 2, sym_comment, sym_include, - [156227] = 5, + [158619] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(6344), 1, - aux_sym__block_terminator_token1, - STATE(4135), 2, + ACTIONS(5308), 1, + anon_sym_LPAREN, + STATE(4189), 2, + sym_comment, + sym_include, + [158636] = 5, + ACTIONS(59), 1, + anon_sym_SLASH_SLASH, + ACTIONS(61), 1, + anon_sym_SLASH_STAR, + ACTIONS(65), 1, + anon_sym_LBRACE, + ACTIONS(6361), 1, + anon_sym_COLON, + STATE(4190), 2, sym_comment, sym_include, - [156244] = 5, + [158653] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(6346), 1, + ACTIONS(6363), 1, sym__terminator, - STATE(4136), 2, + STATE(4191), 2, + sym_comment, + sym_include, + [158670] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_LBRACE, + ACTIONS(6365), 1, + sym_identifier, + STATE(4192), 2, sym_comment, sym_include, - [156261] = 5, + [158687] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_LBRACE, + ACTIONS(6367), 1, + sym_identifier, + STATE(4193), 2, + sym_comment, + sym_include, + [158704] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(4249), 1, - anon_sym_COLON, - STATE(4137), 2, + ACTIONS(6369), 1, + aux_sym_property_definition_token1, + STATE(4194), 2, sym_comment, sym_include, - [156278] = 5, + [158721] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(6348), 1, + ACTIONS(6371), 1, sym_identifier, - STATE(4138), 2, + STATE(4195), 2, sym_comment, sym_include, - [156295] = 5, + [158738] = 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(4196), 2, + sym_comment, + sym_include, + [158755] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(6214), 1, - sym__terminator, - STATE(4139), 2, + ACTIONS(3027), 1, + anon_sym_COLON, + STATE(4197), 2, sym_comment, sym_include, - [156312] = 5, + [158772] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(6350), 1, - anon_sym_RPAREN, - STATE(4140), 2, + ACTIONS(6375), 1, + sym__terminator, + STATE(4198), 2, + sym_comment, + sym_include, + [158789] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_LBRACE, + ACTIONS(6377), 1, + sym_identifier, + STATE(4199), 2, sym_comment, sym_include, - [156329] = 5, + [158806] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(6200), 1, + ACTIONS(6341), 1, sym__terminator, - STATE(4141), 2, + STATE(4200), 2, sym_comment, sym_include, - [156346] = 5, + [158823] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(4282), 1, - anon_sym_COLON, - STATE(4142), 2, + ACTIONS(6379), 1, + aux_sym__block_terminator_token1, + STATE(4201), 2, sym_comment, sym_include, - [156363] = 5, + [158840] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(6192), 1, + ACTIONS(6167), 1, sym__terminator, - STATE(4143), 2, + STATE(4202), 2, sym_comment, sym_include, - [156380] = 5, + [158857] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(6352), 1, - sym__terminator, - STATE(4144), 2, + ACTIONS(6381), 1, + anon_sym_COLON, + STATE(4203), 2, sym_comment, sym_include, - [156397] = 5, + [158874] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(3290), 1, - aux_sym__block_terminator_token1, - STATE(4145), 2, + ACTIONS(5224), 1, + anon_sym_LPAREN, + STATE(4204), 2, sym_comment, sym_include, - [156414] = 5, + [158891] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(6354), 1, + ACTIONS(6383), 1, sym_identifier, - STATE(4146), 2, + STATE(4205), 2, sym_comment, sym_include, - [156431] = 5, + [158908] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(6356), 1, + ACTIONS(6385), 1, sym_identifier, - STATE(4147), 2, + STATE(4206), 2, sym_comment, sym_include, - [156448] = 5, + [158925] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(6196), 1, + ACTIONS(5206), 1, sym__terminator, - STATE(4148), 2, + STATE(4207), 2, sym_comment, sym_include, - [156465] = 5, + [158942] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(6358), 1, + ACTIONS(6387), 1, anon_sym_COLON, - STATE(4149), 2, + STATE(4208), 2, sym_comment, sym_include, - [156482] = 5, - ACTIONS(59), 1, + [158959] = 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(3328), 1, - anon_sym_COLON, - STATE(4150), 2, + ACTIONS(6389), 1, + sym_identifier, + STATE(4209), 2, sym_comment, sym_include, - [156499] = 5, + [158976] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(6360), 1, - anon_sym_COLON, - STATE(4151), 2, + ACTIONS(6391), 1, + sym__terminator, + STATE(4210), 2, sym_comment, sym_include, - [156516] = 5, + [158993] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5094), 1, - sym__terminator, - STATE(4152), 2, + ACTIONS(3250), 1, + aux_sym__block_terminator_token1, + STATE(4211), 2, sym_comment, sym_include, - [156533] = 5, + [159010] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(6362), 1, - sym__terminator, - STATE(4153), 2, + ACTIONS(3039), 1, + anon_sym_COLON, + STATE(4212), 2, sym_comment, sym_include, - [156550] = 5, + [159027] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(6180), 1, - sym__terminator, - STATE(4154), 2, + ACTIONS(6393), 1, + anon_sym_COLON, + STATE(4213), 2, sym_comment, sym_include, - [156567] = 5, + [159044] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5133), 1, - anon_sym_COLON, - STATE(4155), 2, + ACTIONS(6395), 1, + aux_sym_buffer_definition_token2, + STATE(4214), 2, sym_comment, sym_include, - [156584] = 5, + [159061] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(6364), 1, - aux_sym__block_terminator_token1, - STATE(4156), 2, + ACTIONS(6303), 1, + aux_sym_primitive_type_token1, + STATE(4215), 2, sym_comment, sym_include, - [156601] = 5, + [159078] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(6366), 1, - sym__terminator, - STATE(4157), 2, + ACTIONS(3342), 1, + anon_sym_COLON, + STATE(4216), 2, sym_comment, sym_include, - [156618] = 5, - ACTIONS(59), 1, + [159095] = 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(6368), 1, - aux_sym__block_terminator_token1, - STATE(4158), 2, + ACTIONS(6397), 1, + sym_identifier, + STATE(4217), 2, sym_comment, sym_include, - [156635] = 5, + [159112] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(6370), 1, - anon_sym_COLON, - STATE(4159), 2, + ACTIONS(6399), 1, + anon_sym_LPAREN, + STATE(4218), 2, sym_comment, sym_include, - [156652] = 5, + [159129] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(6372), 1, - sym__terminator, - STATE(4160), 2, + ACTIONS(6401), 1, + aux_sym_buffer_definition_token2, + STATE(4219), 2, sym_comment, sym_include, - [156669] = 5, - ACTIONS(59), 1, + [159146] = 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(6374), 1, - sym__terminator, - STATE(4161), 2, + ACTIONS(6403), 1, + sym_identifier, + STATE(4220), 2, sym_comment, sym_include, - [156686] = 5, + [159163] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(6376), 1, + ACTIONS(6405), 1, sym_identifier, - STATE(4162), 2, + STATE(4221), 2, sym_comment, sym_include, - [156703] = 5, - ACTIONS(59), 1, + [159180] = 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(6378), 1, - anon_sym_COLON, - STATE(4163), 2, + ACTIONS(6407), 1, + sym_identifier, + STATE(4222), 2, sym_comment, sym_include, - [156720] = 5, + [159197] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(6380), 1, + ACTIONS(6409), 1, sym_identifier, - STATE(4164), 2, + STATE(4223), 2, sym_comment, sym_include, - [156737] = 5, + [159214] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5112), 1, - sym__terminator, - STATE(4165), 2, + ACTIONS(6411), 1, + aux_sym__block_terminator_token1, + STATE(4224), 2, sym_comment, sym_include, - [156754] = 5, + [159231] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5104), 1, + ACTIONS(6413), 1, sym__terminator, - STATE(4166), 2, + STATE(4225), 2, sym_comment, sym_include, - [156771] = 5, + [159248] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(6382), 1, - sym__terminator, - STATE(4167), 2, + ACTIONS(6415), 1, + anon_sym_LPAREN, + STATE(4226), 2, sym_comment, sym_include, - [156788] = 5, + [159265] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(6384), 1, + ACTIONS(6417), 1, sym_identifier, - STATE(4168), 2, + STATE(4227), 2, sym_comment, sym_include, - [156805] = 5, - ACTIONS(59), 1, + [159282] = 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(6386), 1, - anon_sym_LPAREN, - STATE(4169), 2, + ACTIONS(6419), 1, + sym_identifier, + STATE(4228), 2, sym_comment, sym_include, - [156822] = 5, + [159299] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(6388), 1, + ACTIONS(6421), 1, sym_identifier, - STATE(4170), 2, + STATE(4229), 2, + sym_comment, + sym_include, + [159316] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_LBRACE, + ACTIONS(6423), 1, + sym_identifier, + STATE(4230), 2, sym_comment, sym_include, - [156839] = 5, + [159333] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(6390), 1, - sym__terminator, - STATE(4171), 2, + ACTIONS(6425), 1, + anon_sym_COLON, + STATE(4231), 2, sym_comment, sym_include, - [156856] = 5, + [159350] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(6392), 1, + ACTIONS(6427), 1, sym__terminator, - STATE(4172), 2, + STATE(4232), 2, + sym_comment, + sym_include, + [159367] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_LBRACE, + ACTIONS(6429), 1, + sym_identifier, + STATE(4233), 2, + sym_comment, + sym_include, + [159384] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_LBRACE, + ACTIONS(6431), 1, + sym_identifier, + STATE(4234), 2, sym_comment, sym_include, - [156873] = 5, + [159401] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(4634), 1, - anon_sym_COLON, - STATE(4173), 2, + ACTIONS(6433), 1, + aux_sym_buffer_definition_token2, + STATE(4235), 2, sym_comment, sym_include, - [156890] = 5, + [159418] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(6394), 1, + ACTIONS(6435), 1, aux_sym_buffer_definition_token2, - STATE(4174), 2, + STATE(4236), 2, sym_comment, sym_include, - [156907] = 5, + [159435] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(6396), 1, - aux_sym__block_terminator_token1, - STATE(4175), 2, + ACTIONS(6289), 1, + aux_sym_primitive_type_token1, + STATE(4237), 2, sym_comment, sym_include, - [156924] = 5, + [159452] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(4936), 1, - aux_sym_do_block_token1, - STATE(4176), 2, + ACTIONS(6437), 1, + anon_sym_LPAREN, + STATE(4238), 2, sym_comment, sym_include, - [156941] = 5, + [159469] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5096), 1, + ACTIONS(6439), 1, sym__terminator, - STATE(4177), 2, + STATE(4239), 2, sym_comment, sym_include, - [156958] = 5, + [159486] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(3408), 1, - anon_sym_COLON, - STATE(4178), 2, + ACTIONS(6441), 1, + sym__terminator, + STATE(4240), 2, + sym_comment, + sym_include, + [159503] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_LBRACE, + ACTIONS(6443), 1, + sym_identifier, + STATE(4241), 2, sym_comment, sym_include, - [156975] = 5, + [159520] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(4231), 1, - anon_sym_COLON, - STATE(4179), 2, + ACTIONS(6445), 1, + aux_sym__block_terminator_token1, + STATE(4242), 2, sym_comment, sym_include, - [156992] = 5, + [159537] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(6142), 1, - sym__terminator, - STATE(4180), 2, + ACTIONS(5023), 1, + aux_sym_do_block_token1, + STATE(4243), 2, + sym_comment, + sym_include, + [159554] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_LBRACE, + ACTIONS(6447), 1, + sym_identifier, + STATE(4244), 2, sym_comment, sym_include, - [157009] = 5, + [159571] = 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(3392), 1, anon_sym_COLON, - STATE(4181), 2, + STATE(4245), 2, sym_comment, sym_include, - [157026] = 5, + [159588] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(6128), 1, - aux_sym_primitive_type_token1, - STATE(4182), 2, + ACTIONS(6449), 1, + sym__terminator, + STATE(4246), 2, sym_comment, sym_include, - [157043] = 5, + [159605] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(6398), 1, - aux_sym_buffer_definition_token2, - STATE(4183), 2, + ACTIONS(6451), 1, + sym__terminator, + STATE(4247), 2, sym_comment, sym_include, - [157060] = 5, - ACTIONS(3), 1, + [159622] = 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(6400), 1, - sym_identifier, - STATE(4184), 2, + ACTIONS(6269), 1, + sym__terminator, + STATE(4248), 2, sym_comment, sym_include, - [157077] = 5, + [159639] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(6402), 1, + ACTIONS(6453), 1, sym__terminator, - STATE(4185), 2, + STATE(4249), 2, sym_comment, sym_include, - [157094] = 5, + [159656] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(6404), 1, - anon_sym_LPAREN, - STATE(4186), 2, + ACTIONS(6455), 1, + sym__terminator, + STATE(4250), 2, sym_comment, sym_include, - [157111] = 5, + [159673] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(6406), 1, - anon_sym_COLON, - STATE(4187), 2, + ACTIONS(6457), 1, + sym__terminator, + STATE(4251), 2, sym_comment, sym_include, - [157128] = 5, + [159690] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(6408), 1, + ACTIONS(6459), 1, sym__terminator, - STATE(4188), 2, + STATE(4252), 2, sym_comment, sym_include, - [157145] = 5, + [159707] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(6116), 1, + ACTIONS(6461), 1, sym__terminator, - STATE(4189), 2, + STATE(4253), 2, sym_comment, sym_include, - [157162] = 5, + [159724] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5090), 1, - sym__terminator, - STATE(4190), 2, + ACTIONS(6463), 1, + aux_sym__block_terminator_token1, + STATE(4254), 2, sym_comment, sym_include, - [157179] = 5, + [159741] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(6410), 1, + ACTIONS(6465), 1, + anon_sym_RBRACE, + STATE(4255), 2, + sym_comment, + sym_include, + [159758] = 5, + ACTIONS(59), 1, + anon_sym_SLASH_SLASH, + ACTIONS(61), 1, + anon_sym_SLASH_STAR, + ACTIONS(65), 1, + anon_sym_LBRACE, + ACTIONS(6467), 1, sym__terminator, - STATE(4191), 2, + STATE(4256), 2, sym_comment, sym_include, - [157196] = 5, + [159775] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(3420), 1, - anon_sym_COLON, - STATE(4192), 2, + ACTIONS(6469), 1, + aux_sym__block_terminator_token1, + STATE(4257), 2, sym_comment, sym_include, - [157213] = 5, + [159792] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5014), 1, - aux_sym_do_block_token1, - STATE(4193), 2, + ACTIONS(6471), 1, + sym__integer_literal, + STATE(4258), 2, sym_comment, sym_include, - [157230] = 5, + [159809] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(6412), 1, - aux_sym__block_terminator_token1, - STATE(4194), 2, + ACTIONS(6473), 1, + anon_sym_RPAREN, + STATE(4259), 2, sym_comment, sym_include, - [157247] = 5, + [159826] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(4697), 1, - anon_sym_COLON, - STATE(4195), 2, + ACTIONS(6475), 1, + sym__terminator, + STATE(4260), 2, sym_comment, sym_include, - [157264] = 5, + [159843] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(6414), 1, + ACTIONS(6243), 1, sym__terminator, - STATE(4196), 2, + STATE(4261), 2, sym_comment, sym_include, - [157281] = 5, + [159860] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(6416), 1, - anon_sym_RBRACE, - STATE(4197), 2, + ACTIONS(5457), 1, + anon_sym_DOT, + STATE(4262), 2, + sym_comment, + sym_include, + [159877] = 5, + ACTIONS(59), 1, + anon_sym_SLASH_SLASH, + ACTIONS(61), 1, + anon_sym_SLASH_STAR, + ACTIONS(65), 1, + anon_sym_LBRACE, + ACTIONS(6477), 1, + aux_sym_input_expression_token2, + STATE(4263), 2, sym_comment, sym_include, - [157298] = 5, + [159894] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(6418), 1, + ACTIONS(6479), 1, sym_identifier, - STATE(4198), 2, + STATE(4264), 2, sym_comment, sym_include, - [157315] = 5, + [159911] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(6090), 1, - sym__terminator, - STATE(4199), 2, + ACTIONS(4199), 1, + anon_sym_COLON, + STATE(4265), 2, sym_comment, sym_include, - [157332] = 5, + [159928] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(6420), 1, - anon_sym_LPAREN, - STATE(4200), 2, + ACTIONS(6481), 1, + anon_sym_COLON, + STATE(4266), 2, sym_comment, sym_include, - [157349] = 5, - ACTIONS(3), 1, + [159945] = 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(6422), 1, - sym_identifier, - STATE(4201), 2, + ACTIONS(6483), 1, + sym__terminator, + STATE(4267), 2, sym_comment, sym_include, - [157366] = 5, + [159962] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(6424), 1, - anon_sym_LPAREN, - STATE(4202), 2, + ACTIONS(6231), 1, + sym__terminator, + STATE(4268), 2, sym_comment, sym_include, - [157383] = 5, + [159979] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5086), 1, - anon_sym_COLON, - STATE(4203), 2, + ACTIONS(6227), 1, + sym__terminator, + STATE(4269), 2, sym_comment, sym_include, - [157400] = 5, + [159996] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(4404), 1, - anon_sym_COLON, - STATE(4204), 2, + ACTIONS(6485), 1, + sym__terminator, + STATE(4270), 2, sym_comment, sym_include, - [157417] = 5, + [160013] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(6426), 1, + ACTIONS(6487), 1, sym_identifier, - STATE(4205), 2, + STATE(4271), 2, sym_comment, sym_include, - [157434] = 5, + [160030] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(3604), 1, - aux_sym_property_definition_token1, - STATE(4206), 2, + ACTIONS(4423), 1, + anon_sym_COLON, + STATE(4272), 2, sym_comment, sym_include, - [157451] = 5, + [160047] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(6428), 1, - sym__terminator, - STATE(4207), 2, + ACTIONS(6489), 1, + aux_sym_buffer_definition_token2, + STATE(4273), 2, sym_comment, sym_include, - [157468] = 5, + [160064] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(6430), 1, - aux_sym_data_source_definition_token1, - STATE(4208), 2, + ACTIONS(6491), 1, + sym__terminator, + STATE(4274), 2, sym_comment, sym_include, - [157485] = 5, - ACTIONS(3), 1, + [160081] = 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(6432), 1, - sym_identifier, - STATE(4209), 2, + ACTIONS(6493), 1, + sym__terminator, + STATE(4275), 2, sym_comment, sym_include, - [157502] = 5, - ACTIONS(3), 1, + [160098] = 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(6434), 1, - sym_identifier, - STATE(4210), 2, + ACTIONS(6495), 1, + sym__terminator, + STATE(4276), 2, sym_comment, sym_include, - [157519] = 5, + [160115] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(6436), 1, - aux_sym_function_parameter_token1, - STATE(4211), 2, + ACTIONS(6497), 1, + anon_sym_LPAREN, + STATE(4277), 2, sym_comment, sym_include, - [157536] = 5, - ACTIONS(3), 1, + [160132] = 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(6438), 1, - sym_identifier, - STATE(4212), 2, + ACTIONS(5265), 1, + sym__terminator, + STATE(4278), 2, sym_comment, sym_include, - [157553] = 5, + [160149] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(6440), 1, + ACTIONS(6499), 1, sym__terminator, - STATE(4213), 2, + STATE(4279), 2, sym_comment, sym_include, - [157570] = 5, - ACTIONS(3), 1, + [160166] = 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(6442), 1, - sym_identifier, - STATE(4214), 2, + ACTIONS(6501), 1, + sym__terminator, + STATE(4280), 2, sym_comment, sym_include, - [157587] = 5, - ACTIONS(59), 1, + [160183] = 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(6444), 1, - aux_sym__block_terminator_token1, - STATE(4215), 2, + ACTIONS(6503), 1, + sym_identifier, + STATE(4281), 2, sym_comment, sym_include, - [157604] = 5, + [160200] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(6446), 1, + ACTIONS(6505), 1, sym__terminator, - STATE(4216), 2, + STATE(4282), 2, sym_comment, sym_include, - [157621] = 5, + [160217] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(6064), 1, + ACTIONS(6507), 1, sym__terminator, - STATE(4217), 2, + STATE(4283), 2, sym_comment, sym_include, - [157638] = 5, + [160234] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(3400), 1, - anon_sym_COLON, - STATE(4218), 2, + ACTIONS(6509), 1, + anon_sym_RBRACE, + STATE(4284), 2, sym_comment, sym_include, - [157655] = 5, + [160251] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(6448), 1, - aux_sym_buffer_definition_token2, - STATE(4219), 2, + ACTIONS(6511), 1, + sym__terminator, + STATE(4285), 2, sym_comment, sym_include, - [157672] = 5, + [160268] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(6450), 1, - aux_sym_buffer_definition_token2, - STATE(4220), 2, + ACTIONS(6513), 1, + sym__terminator, + STATE(4286), 2, sym_comment, sym_include, - [157689] = 5, + [160285] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(4433), 1, + ACTIONS(4302), 1, anon_sym_COLON, - STATE(4221), 2, + STATE(4287), 2, sym_comment, sym_include, - [157706] = 5, + [160302] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(6452), 1, - aux_sym_buffer_definition_token2, - STATE(4222), 2, + ACTIONS(6515), 1, + aux_sym_primitive_type_token1, + STATE(4288), 2, sym_comment, sym_include, - [157723] = 5, + [160319] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(6454), 1, - aux_sym_input_expression_token2, - STATE(4223), 2, + ACTIONS(5169), 1, + sym__terminator, + STATE(4289), 2, sym_comment, sym_include, - [157740] = 5, + [160336] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(6456), 1, + ACTIONS(6517), 1, sym__terminator, - STATE(4224), 2, + STATE(4290), 2, sym_comment, sym_include, - [157757] = 5, + [160353] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(6048), 1, + ACTIONS(6519), 1, sym__terminator, - STATE(4225), 2, + STATE(4291), 2, sym_comment, sym_include, - [157774] = 5, - ACTIONS(3), 1, + [160370] = 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(6458), 1, - sym_identifier, - STATE(4226), 2, + ACTIONS(6521), 1, + anon_sym_RBRACE, + STATE(4292), 2, sym_comment, sym_include, - [157791] = 5, + [160387] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(6460), 1, - sym__terminator, - STATE(4227), 2, + ACTIONS(6523), 1, + sym__integer_literal, + STATE(4293), 2, sym_comment, sym_include, - [157808] = 5, + [160404] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(6462), 1, - sym__terminator, - STATE(4228), 2, + ACTIONS(6525), 1, + aux_sym_data_source_definition_token1, + STATE(4294), 2, sym_comment, sym_include, - [157825] = 5, - ACTIONS(3), 1, + [160421] = 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(6464), 1, - sym_identifier, - STATE(4229), 2, + ACTIONS(6527), 1, + aux_sym__block_terminator_token1, + STATE(4295), 2, sym_comment, sym_include, - [157842] = 5, + [160438] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(6466), 1, + ACTIONS(6529), 1, anon_sym_COLON, - STATE(4230), 2, + STATE(4296), 2, sym_comment, sym_include, - [157859] = 5, + [160455] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(6468), 1, - anon_sym_COLON, - STATE(4231), 2, + ACTIONS(6531), 1, + anon_sym_RPAREN, + STATE(4297), 2, sym_comment, sym_include, - [157876] = 5, - ACTIONS(3), 1, + [160472] = 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(6470), 1, - sym_identifier, - STATE(4232), 2, + ACTIONS(6533), 1, + sym__terminator, + STATE(4298), 2, sym_comment, sym_include, - [157893] = 5, + [160489] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(6472), 1, + ACTIONS(6535), 1, sym__terminator, - STATE(4233), 2, + STATE(4299), 2, sym_comment, sym_include, - [157910] = 5, + [160506] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(6474), 1, - sym__terminator, - STATE(4234), 2, + ACTIONS(6537), 1, + anon_sym_COLON, + STATE(4300), 2, sym_comment, sym_include, - [157927] = 5, + [160523] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(6476), 1, + ACTIONS(6539), 1, sym__terminator, - STATE(4235), 2, + STATE(4301), 2, sym_comment, sym_include, - [157944] = 5, + [160540] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(6478), 1, + ACTIONS(6541), 1, sym__terminator, - STATE(4236), 2, + STATE(4302), 2, sym_comment, sym_include, - [157961] = 5, + [160557] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5082), 1, + ACTIONS(3425), 1, anon_sym_COLON, - STATE(4237), 2, + STATE(4303), 2, sym_comment, sym_include, - [157978] = 5, + [160574] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(6480), 1, + ACTIONS(5165), 1, sym__terminator, - STATE(4238), 2, + STATE(4304), 2, sym_comment, sym_include, - [157995] = 5, + [160591] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(6482), 1, - anon_sym_COLON, - STATE(4239), 2, + ACTIONS(5555), 1, + anon_sym_DOT, + STATE(4305), 2, sym_comment, sym_include, - [158012] = 5, + [160608] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2648), 1, - aux_sym__block_terminator_token1, - STATE(4240), 2, + ACTIONS(5282), 1, + sym__terminator, + STATE(4306), 2, sym_comment, sym_include, - [158029] = 5, + [160625] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(6484), 1, - aux_sym__block_terminator_token1, - STATE(4241), 2, + ACTIONS(5089), 1, + aux_sym_do_block_token1, + STATE(4307), 2, sym_comment, sym_include, - [158046] = 5, + [160642] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(6486), 1, - sym__terminator, - STATE(4242), 2, + ACTIONS(6543), 1, + aux_sym__block_terminator_token1, + STATE(4308), 2, sym_comment, sym_include, - [158063] = 5, + [160659] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(3326), 1, - anon_sym_COLON, - STATE(4243), 2, + ACTIONS(6151), 1, + sym__terminator, + STATE(4309), 2, sym_comment, sym_include, - [158080] = 5, + [160676] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(6488), 1, - sym__terminator, - STATE(4244), 2, + ACTIONS(6545), 1, + anon_sym_LPAREN, + STATE(4310), 2, sym_comment, sym_include, - [158097] = 5, - ACTIONS(59), 1, + [160693] = 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(6490), 1, - sym__terminator, - STATE(4245), 2, + ACTIONS(6547), 1, + sym_identifier, + STATE(4311), 2, sym_comment, sym_include, - [158114] = 5, + [160710] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5370), 1, - anon_sym_DOT, - STATE(4246), 2, + ACTIONS(6549), 1, + anon_sym_LPAREN, + STATE(4312), 2, sym_comment, sym_include, - [158131] = 5, + [160727] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2999), 1, - anon_sym_COLON, - STATE(4247), 2, + ACTIONS(3636), 1, + aux_sym_property_definition_token1, + STATE(4313), 2, sym_comment, sym_include, - [158148] = 5, + [160744] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(6492), 1, + ACTIONS(6551), 1, sym__terminator, - STATE(4248), 2, + STATE(4314), 2, sym_comment, sym_include, - [158165] = 5, + [160761] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(6026), 1, - sym__terminator, - STATE(4249), 2, + ACTIONS(6553), 1, + anon_sym_COMMA, + STATE(4315), 2, sym_comment, sym_include, - [158182] = 5, + [160778] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(6494), 1, - sym__terminator, - STATE(4250), 2, + ACTIONS(6555), 1, + anon_sym_COMMA, + STATE(4316), 2, sym_comment, sym_include, - [158199] = 5, - ACTIONS(59), 1, + [160795] = 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(5928), 1, - sym__terminator, - STATE(4251), 2, + ACTIONS(6557), 1, + sym_identifier, + STATE(4317), 2, sym_comment, sym_include, - [158216] = 5, + [160812] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(6496), 1, + ACTIONS(6559), 1, sym_identifier, - STATE(4252), 2, + STATE(4318), 2, sym_comment, sym_include, - [158233] = 5, + [160829] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(6498), 1, - aux_sym_do_block_token1, - STATE(4253), 2, + ACTIONS(5927), 1, + sym__terminator, + STATE(4319), 2, sym_comment, sym_include, - [158250] = 5, + [160846] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(6500), 1, - anon_sym_RPAREN, - STATE(4254), 2, + ACTIONS(6561), 1, + anon_sym_RBRACE, + STATE(4320), 2, + sym_comment, + sym_include, + [160863] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_LBRACE, + ACTIONS(6563), 1, + sym_identifier, + STATE(4321), 2, sym_comment, sym_include, - [158267] = 5, + [160880] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(4895), 1, - sym__terminator, - STATE(4255), 2, + ACTIONS(6565), 1, + aux_sym_function_parameter_token1, + STATE(4322), 2, sym_comment, sym_include, - [158284] = 5, + [160897] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(6502), 1, + ACTIONS(6567), 1, sym_identifier, - STATE(4256), 2, + STATE(4323), 2, + sym_comment, + sym_include, + [160914] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_LBRACE, + ACTIONS(6569), 1, + sym_identifier, + STATE(4324), 2, sym_comment, sym_include, - [158301] = 5, + [160931] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(3786), 1, - anon_sym_COLON, - STATE(4257), 2, + ACTIONS(6571), 1, + aux_sym_input_expression_token2, + STATE(4325), 2, + sym_comment, + sym_include, + [160948] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_LBRACE, + ACTIONS(6573), 1, + sym_identifier, + STATE(4326), 2, sym_comment, sym_include, - [158318] = 5, + [160965] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(6504), 1, - sym__integer_literal, - STATE(4258), 2, + ACTIONS(6575), 1, + sym__terminator, + STATE(4327), 2, sym_comment, sym_include, - [158335] = 5, + [160982] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(6506), 1, - anon_sym_COLON, - STATE(4259), 2, + ACTIONS(6577), 1, + sym__terminator, + STATE(4328), 2, sym_comment, sym_include, - [158352] = 5, + [160999] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(6508), 1, - aux_sym__block_terminator_token1, - STATE(4260), 2, + ACTIONS(6579), 1, + aux_sym_buffer_definition_token2, + STATE(4329), 2, sym_comment, sym_include, - [158369] = 5, - ACTIONS(3), 1, + [161016] = 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(6510), 1, - sym_identifier, - STATE(4261), 2, + ACTIONS(6581), 1, + sym__terminator, + STATE(4330), 2, sym_comment, sym_include, - [158386] = 5, + [161033] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(6512), 1, - aux_sym_primitive_type_token1, - STATE(4262), 2, + ACTIONS(5288), 1, + sym__terminator, + STATE(4331), 2, sym_comment, sym_include, - [158403] = 5, + [161050] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5214), 1, - anon_sym_LPAREN, - STATE(4263), 2, + ACTIONS(6583), 1, + sym__terminator, + STATE(4332), 2, sym_comment, sym_include, - [158420] = 5, + [161067] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(6514), 1, + ACTIONS(6585), 1, sym__terminator, - STATE(4264), 2, + STATE(4333), 2, sym_comment, sym_include, - [158437] = 5, + [161084] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(6516), 1, + ACTIONS(6587), 1, sym_identifier, - STATE(4265), 2, + STATE(4334), 2, + sym_comment, + sym_include, + [161101] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_LBRACE, + ACTIONS(6589), 1, + sym_identifier, + STATE(4335), 2, sym_comment, sym_include, - [158454] = 5, + [161118] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5074), 1, + ACTIONS(6591), 1, sym__terminator, - STATE(4266), 2, + STATE(4336), 2, sym_comment, sym_include, - [158471] = 5, + [161135] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(6518), 1, - sym__terminator, - STATE(4267), 2, + ACTIONS(6593), 1, + aux_sym__block_terminator_token1, + STATE(4337), 2, sym_comment, sym_include, - [158488] = 5, + [161152] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(6520), 1, - anon_sym_COLON, - STATE(4268), 2, + ACTIONS(6595), 1, + sym__terminator, + STATE(4338), 2, sym_comment, sym_include, - [158505] = 5, + [161169] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(6522), 1, - aux_sym__block_terminator_token1, - STATE(4269), 2, + ACTIONS(5157), 1, + sym__terminator, + STATE(4339), 2, sym_comment, sym_include, - [158522] = 5, + [161186] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5992), 1, - sym__terminator, - STATE(4270), 2, + ACTIONS(6597), 1, + aux_sym_buffer_definition_token2, + STATE(4340), 2, sym_comment, sym_include, - [158539] = 5, + [161203] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(6524), 1, - anon_sym_DOT, - STATE(4271), 2, + ACTIONS(6599), 1, + sym__terminator, + STATE(4341), 2, + sym_comment, + sym_include, + [161220] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_LBRACE, + ACTIONS(6601), 1, + sym_identifier, + STATE(4342), 2, sym_comment, sym_include, - [158556] = 5, + [161237] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5974), 1, + ACTIONS(6603), 1, sym__terminator, - STATE(4272), 2, + STATE(4343), 2, sym_comment, sym_include, - [158573] = 5, + [161254] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(3131), 1, - anon_sym_COLON, - STATE(4273), 2, + ACTIONS(6605), 1, + sym__terminator, + STATE(4344), 2, sym_comment, sym_include, - [158590] = 5, + [161271] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(4549), 1, + ACTIONS(3334), 1, anon_sym_COLON, - STATE(4274), 2, + STATE(4345), 2, sym_comment, sym_include, - [158607] = 5, + [161288] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(6526), 1, - anon_sym_COLON, - STATE(4275), 2, + ACTIONS(6607), 1, + sym__terminator, + STATE(4346), 2, sym_comment, sym_include, - [158624] = 5, + [161305] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(6528), 1, + ACTIONS(6609), 1, sym__terminator, - STATE(4276), 2, + STATE(4347), 2, sym_comment, sym_include, - [158641] = 5, + [161322] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(6530), 1, + ACTIONS(6611), 1, sym_identifier, - STATE(4277), 2, + STATE(4348), 2, sym_comment, sym_include, - [158658] = 5, + [161339] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(6532), 1, + ACTIONS(6613), 1, sym_identifier, - STATE(4278), 2, + STATE(4349), 2, sym_comment, sym_include, - [158675] = 5, - ACTIONS(3), 1, + [161356] = 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(6534), 1, - sym_identifier, - STATE(4279), 2, + ACTIONS(6615), 1, + sym__terminator, + STATE(4350), 2, sym_comment, sym_include, - [158692] = 5, + [161373] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(6536), 1, + ACTIONS(6617), 1, sym__terminator, - STATE(4280), 2, + STATE(4351), 2, sym_comment, sym_include, - [158709] = 5, + [161390] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(6538), 1, - anon_sym_COMMA, - STATE(4281), 2, + ACTIONS(5145), 1, + anon_sym_COLON, + STATE(4352), 2, sym_comment, sym_include, - [158726] = 5, + [161407] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(6540), 1, - anon_sym_RBRACE, - STATE(4282), 2, + ACTIONS(6619), 1, + sym__terminator, + STATE(4353), 2, sym_comment, sym_include, - [158743] = 5, + [161424] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(6542), 1, - anon_sym_COMMA, - STATE(4283), 2, + ACTIONS(6621), 1, + aux_sym__block_terminator_token1, + STATE(4354), 2, sym_comment, sym_include, - [158760] = 5, + [161441] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(3842), 1, + ACTIONS(6623), 1, + sym__terminator, + STATE(4355), 2, + sym_comment, + sym_include, + [161458] = 5, + ACTIONS(59), 1, + anon_sym_SLASH_SLASH, + ACTIONS(61), 1, + anon_sym_SLASH_STAR, + ACTIONS(65), 1, + anon_sym_LBRACE, + ACTIONS(3423), 1, anon_sym_COLON, - STATE(4284), 2, + STATE(4356), 2, sym_comment, sym_include, - [158777] = 5, + [161475] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(6544), 1, + ACTIONS(6625), 1, sym__terminator, - STATE(4285), 2, + STATE(4357), 2, sym_comment, sym_include, - [158794] = 5, + [161492] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(6546), 1, - anon_sym_COMMA, - STATE(4286), 2, + ACTIONS(6627), 1, + sym__terminator, + STATE(4358), 2, sym_comment, sym_include, - [158811] = 5, - ACTIONS(3), 1, + [161509] = 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(6548), 1, - sym_identifier, - STATE(4287), 2, + ACTIONS(6629), 1, + sym__terminator, + STATE(4359), 2, + sym_comment, + sym_include, + [161526] = 5, + ACTIONS(59), 1, + anon_sym_SLASH_SLASH, + ACTIONS(61), 1, + anon_sym_SLASH_STAR, + ACTIONS(65), 1, + anon_sym_LBRACE, + ACTIONS(3092), 1, + anon_sym_COLON, + STATE(4360), 2, sym_comment, sym_include, - [158828] = 5, + [161543] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(6550), 1, + ACTIONS(6631), 1, anon_sym_RPAREN, - STATE(4288), 2, + STATE(4361), 2, sym_comment, sym_include, - [158845] = 5, + [161560] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(3098), 1, - anon_sym_COLON, - STATE(4289), 2, + ACTIONS(6633), 1, + aux_sym_do_block_token1, + STATE(4362), 2, sym_comment, sym_include, - [158862] = 5, + [161577] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(6552), 1, + ACTIONS(5991), 1, sym__terminator, - STATE(4290), 2, + STATE(4363), 2, sym_comment, sym_include, - [158879] = 5, + [161594] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(6554), 1, - anon_sym_LPAREN, - STATE(4291), 2, + ACTIONS(6635), 1, + anon_sym_COLON, + STATE(4364), 2, sym_comment, sym_include, - [158896] = 5, + [161611] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(3852), 1, - anon_sym_COLON, - STATE(4292), 2, + ACTIONS(3306), 1, + aux_sym__block_terminator_token1, + STATE(4365), 2, sym_comment, sym_include, - [158913] = 5, + [161628] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(6556), 1, + ACTIONS(6637), 1, anon_sym_COLON, - STATE(4293), 2, + STATE(4366), 2, + sym_comment, + sym_include, + [161645] = 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(4367), 2, sym_comment, sym_include, - [158930] = 5, + [161662] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(6558), 1, + ACTIONS(5955), 1, sym__terminator, - STATE(4294), 2, + STATE(4368), 2, sym_comment, sym_include, - [158947] = 5, + [161679] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(6560), 1, + ACTIONS(6641), 1, sym_identifier, - STATE(4295), 2, + STATE(4369), 2, sym_comment, sym_include, - [158964] = 5, - ACTIONS(3), 1, + [161696] = 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(6562), 1, - sym_identifier, - STATE(4296), 2, + ACTIONS(6045), 1, + sym__terminator, + STATE(4370), 2, + sym_comment, + sym_include, + [161713] = 5, + ACTIONS(59), 1, + anon_sym_SLASH_SLASH, + ACTIONS(61), 1, + anon_sym_SLASH_STAR, + ACTIONS(65), 1, + anon_sym_LBRACE, + ACTIONS(5141), 1, + anon_sym_LPAREN, + STATE(4371), 2, sym_comment, sym_include, - [158981] = 5, + [161730] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(6564), 1, + ACTIONS(6643), 1, sym__terminator, - STATE(4297), 2, + STATE(4372), 2, sym_comment, sym_include, - [158998] = 5, + [161747] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(6566), 1, + ACTIONS(6645), 1, sym_identifier, - STATE(4298), 2, + STATE(4373), 2, sym_comment, sym_include, - [159015] = 5, + [161764] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(6568), 1, + ACTIONS(6647), 1, sym__terminator, - STATE(4299), 2, + STATE(4374), 2, sym_comment, sym_include, - [159032] = 5, + [161781] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5051), 1, - anon_sym_LPAREN, - STATE(4300), 2, + ACTIONS(6085), 1, + sym__terminator, + STATE(4375), 2, sym_comment, sym_include, - [159049] = 5, + [161798] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(6570), 1, + ACTIONS(6649), 1, sym_identifier, - STATE(4301), 2, + STATE(4376), 2, sym_comment, sym_include, - [159066] = 5, + [161815] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(6572), 1, - sym__terminator, - STATE(4302), 2, + ACTIONS(6651), 1, + anon_sym_DOT, + STATE(4377), 2, sym_comment, sym_include, - [159083] = 5, + [161832] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(6574), 1, + ACTIONS(6653), 1, sym__terminator, - STATE(4303), 2, + STATE(4378), 2, + sym_comment, + sym_include, + [161849] = 5, + ACTIONS(59), 1, + anon_sym_SLASH_SLASH, + ACTIONS(61), 1, + anon_sym_SLASH_STAR, + ACTIONS(65), 1, + anon_sym_LBRACE, + ACTIONS(6655), 1, + anon_sym_LPAREN, + STATE(4379), 2, + sym_comment, + sym_include, + [161866] = 5, + ACTIONS(59), 1, + anon_sym_SLASH_SLASH, + ACTIONS(61), 1, + anon_sym_SLASH_STAR, + ACTIONS(65), 1, + anon_sym_LBRACE, + ACTIONS(6657), 1, + aux_sym__block_terminator_token1, + STATE(4380), 2, + sym_comment, + sym_include, + [161883] = 5, + ACTIONS(59), 1, + anon_sym_SLASH_SLASH, + ACTIONS(61), 1, + anon_sym_SLASH_STAR, + ACTIONS(65), 1, + anon_sym_LBRACE, + ACTIONS(6659), 1, + anon_sym_LPAREN, + STATE(4381), 2, sym_comment, sym_include, - [159100] = 5, + [161900] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(6576), 1, + ACTIONS(6661), 1, sym__terminator, - STATE(4304), 2, + STATE(4382), 2, sym_comment, sym_include, - [159117] = 5, - ACTIONS(3), 1, + [161917] = 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(6578), 1, - sym_identifier, - STATE(4305), 2, + ACTIONS(6663), 1, + anon_sym_COMMA, + STATE(4383), 2, sym_comment, sym_include, - [159134] = 5, + [161934] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(6580), 1, + ACTIONS(6665), 1, sym_identifier, - STATE(4306), 2, + STATE(4384), 2, + sym_comment, + sym_include, + [161951] = 5, + ACTIONS(59), 1, + anon_sym_SLASH_SLASH, + ACTIONS(61), 1, + anon_sym_SLASH_STAR, + ACTIONS(65), 1, + anon_sym_LBRACE, + ACTIONS(6667), 1, + anon_sym_COMMA, + STATE(4385), 2, + sym_comment, + sym_include, + [161968] = 5, + ACTIONS(59), 1, + anon_sym_SLASH_SLASH, + ACTIONS(61), 1, + anon_sym_SLASH_STAR, + ACTIONS(65), 1, + anon_sym_LBRACE, + ACTIONS(6669), 1, + anon_sym_COMMA, + STATE(4386), 2, sym_comment, sym_include, - [159151] = 5, + [161985] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(6582), 1, + ACTIONS(6671), 1, sym_identifier, - STATE(4307), 2, + STATE(4387), 2, sym_comment, sym_include, - [159168] = 5, + [162002] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(6584), 1, - aux_sym_input_expression_token2, - STATE(4308), 2, + ACTIONS(6673), 1, + sym__terminator, + STATE(4388), 2, sym_comment, sym_include, - [159185] = 5, + [162019] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(6586), 1, + ACTIONS(6675), 1, sym__terminator, - STATE(4309), 2, + STATE(4389), 2, sym_comment, sym_include, - [159202] = 5, + [162036] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(6588), 1, + ACTIONS(6035), 1, sym__terminator, - STATE(4310), 2, + STATE(4390), 2, sym_comment, sym_include, - [159219] = 5, + [162053] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(3924), 1, + ACTIONS(3125), 1, anon_sym_COLON, - STATE(4311), 2, + STATE(4391), 2, sym_comment, sym_include, - [159236] = 5, + [162070] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(6590), 1, + ACTIONS(5139), 1, sym__terminator, - STATE(4312), 2, + STATE(4392), 2, sym_comment, sym_include, - [159253] = 5, + [162087] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5045), 1, - sym__terminator, - STATE(4313), 2, + ACTIONS(6677), 1, + anon_sym_LPAREN, + STATE(4393), 2, sym_comment, sym_include, - [159270] = 5, + [162104] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(6592), 1, - sym__terminator, - STATE(4314), 2, + ACTIONS(2648), 1, + aux_sym__block_terminator_token1, + STATE(4394), 2, sym_comment, sym_include, - [159287] = 5, + [162121] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(6594), 1, - anon_sym_RBRACE, - STATE(4315), 2, + ACTIONS(6679), 1, + aux_sym__block_terminator_token1, + STATE(4395), 2, sym_comment, sym_include, - [159304] = 5, + [162138] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(6596), 1, - aux_sym__block_terminator_token1, - STATE(4316), 2, + ACTIONS(6681), 1, + anon_sym_COLON, + STATE(4396), 2, sym_comment, sym_include, - [159321] = 5, + [162155] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(6598), 1, + ACTIONS(6683), 1, sym_identifier, - STATE(4317), 2, + STATE(4397), 2, sym_comment, sym_include, - [159338] = 5, + [162172] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(6600), 1, + ACTIONS(6685), 1, sym__terminator, - STATE(4318), 2, + STATE(4398), 2, sym_comment, sym_include, - [159355] = 5, + [162189] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(3068), 1, - anon_sym_COLON, - STATE(4319), 2, + ACTIONS(6687), 1, + anon_sym_RPAREN, + STATE(4399), 2, sym_comment, sym_include, - [159372] = 5, + [162206] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(6602), 1, - sym__terminator, - STATE(4320), 2, + ACTIONS(2672), 1, + aux_sym__block_terminator_token1, + STATE(4400), 2, sym_comment, sym_include, - [159389] = 5, + [162223] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(6604), 1, + ACTIONS(6689), 1, sym_identifier, - STATE(4321), 2, + STATE(4401), 2, sym_comment, sym_include, - [159406] = 5, + [162240] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(6606), 1, - anon_sym_LPAREN, - STATE(4322), 2, - sym_comment, - sym_include, - [159423] = 5, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - ACTIONS(7), 1, - anon_sym_LBRACE, - ACTIONS(6608), 1, - sym_identifier, - STATE(4323), 2, + ACTIONS(3111), 1, + anon_sym_COLON, + STATE(4402), 2, sym_comment, sym_include, - [159440] = 5, + [162257] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(6610), 1, + ACTIONS(6691), 1, sym_identifier, - STATE(4324), 2, + STATE(4403), 2, sym_comment, sym_include, - [159457] = 5, + [162274] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(6612), 1, + ACTIONS(6693), 1, sym_identifier, - STATE(4325), 2, + STATE(4404), 2, sym_comment, sym_include, - [159474] = 5, + [162291] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(6614), 1, + ACTIONS(6021), 1, sym__terminator, - STATE(4326), 2, + STATE(4405), 2, sym_comment, sym_include, - [159491] = 5, + [162308] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(6616), 1, + ACTIONS(6695), 1, sym_identifier, - STATE(4327), 2, + STATE(4406), 2, sym_comment, sym_include, - [159508] = 5, + [162325] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2652), 1, - aux_sym__block_terminator_token1, - STATE(4328), 2, + ACTIONS(6697), 1, + anon_sym_DOT, + STATE(4407), 2, sym_comment, sym_include, - [159525] = 5, + [162342] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(6618), 1, - sym__integer_literal, - STATE(4329), 2, + ACTIONS(5985), 1, + sym__terminator, + STATE(4408), 2, sym_comment, sym_include, - [159542] = 5, - ACTIONS(3), 1, + [162359] = 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(6620), 1, - sym_identifier, - STATE(4330), 2, + ACTIONS(5124), 1, + sym__terminator, + STATE(4409), 2, + sym_comment, + sym_include, + [162376] = 5, + ACTIONS(59), 1, + anon_sym_SLASH_SLASH, + ACTIONS(61), 1, + anon_sym_SLASH_STAR, + ACTIONS(65), 1, + anon_sym_LBRACE, + ACTIONS(6699), 1, + anon_sym_COLON, + STATE(4410), 2, sym_comment, sym_include, - [159559] = 5, + [162393] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(6622), 1, + ACTIONS(6701), 1, sym_identifier, - STATE(4331), 2, + STATE(4411), 2, sym_comment, sym_include, - [159576] = 5, + [162410] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(6624), 1, - anon_sym_RPAREN, - STATE(4332), 2, + ACTIONS(6703), 1, + aux_sym__block_terminator_token1, + STATE(4412), 2, sym_comment, sym_include, - [159593] = 5, + [162427] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(6626), 1, - anon_sym_LPAREN, - STATE(4333), 2, + ACTIONS(6705), 1, + sym__terminator, + STATE(4413), 2, sym_comment, sym_include, - [159610] = 5, + [162444] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(6628), 1, + ACTIONS(6707), 1, sym_identifier, - STATE(4334), 2, + STATE(4414), 2, sym_comment, sym_include, - [159627] = 5, + [162461] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(3371), 1, - anon_sym_COLON, - STATE(4335), 2, + ACTIONS(5310), 1, + sym__terminator, + STATE(4415), 2, sym_comment, sym_include, - [159644] = 5, + [162478] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(6630), 1, - anon_sym_RBRACE, - STATE(4336), 2, + ACTIONS(6709), 1, + anon_sym_LPAREN, + STATE(4416), 2, sym_comment, sym_include, - [159661] = 5, - ACTIONS(59), 1, + [162495] = 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(6632), 1, - sym__integer_literal, - STATE(4337), 2, + ACTIONS(6711), 1, + sym_identifier, + STATE(4417), 2, sym_comment, sym_include, - [159678] = 5, - ACTIONS(59), 1, + [162512] = 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(6634), 1, - anon_sym_RPAREN, - STATE(4338), 2, + ACTIONS(6713), 1, + sym_identifier, + STATE(4418), 2, sym_comment, sym_include, - [159695] = 5, - ACTIONS(59), 1, + [162529] = 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(6636), 1, - sym__terminator, - STATE(4339), 2, + ACTIONS(6715), 1, + sym_identifier, + STATE(4419), 2, + sym_comment, + sym_include, + [162546] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_LBRACE, + ACTIONS(6717), 1, + sym_identifier, + STATE(4420), 2, sym_comment, sym_include, - [159712] = 5, + [162563] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(6638), 1, - anon_sym_RPAREN, - STATE(4340), 2, + ACTIONS(3328), 1, + aux_sym__block_terminator_token1, + STATE(4421), 2, sym_comment, sym_include, - [159729] = 5, + [162580] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(129), 1, + ACTIONS(6719), 1, sym__terminator, - STATE(4341), 2, + STATE(4422), 2, sym_comment, sym_include, - [159746] = 5, + [162597] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(6640), 1, + ACTIONS(6721), 1, sym_identifier, - STATE(4342), 2, + STATE(4423), 2, sym_comment, sym_include, - [159763] = 5, + [162614] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(6642), 1, + ACTIONS(5975), 1, sym__terminator, - STATE(4343), 2, + STATE(4424), 2, sym_comment, sym_include, - [159780] = 4, + [162631] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(61), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(191), 2, - sym_file_name, + ACTIONS(7), 1, anon_sym_LBRACE, - STATE(4344), 2, + ACTIONS(6723), 1, + sym_identifier, + STATE(4425), 2, sym_comment, sym_include, - [159795] = 5, + [162648] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(4290), 1, + ACTIONS(3374), 1, anon_sym_COLON, - STATE(4345), 2, + STATE(4426), 2, sym_comment, sym_include, - [159812] = 5, + [162665] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(6644), 1, + ACTIONS(6725), 1, sym__terminator, - STATE(4346), 2, + STATE(4427), 2, sym_comment, sym_include, - [159829] = 5, + [162682] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(6646), 1, - sym__terminator, - STATE(4347), 2, + ACTIONS(6727), 1, + anon_sym_COLON, + STATE(4428), 2, sym_comment, sym_include, - [159846] = 5, + [162699] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(3316), 1, - aux_sym__block_terminator_token1, - STATE(4348), 2, + ACTIONS(6729), 1, + sym__terminator, + STATE(4429), 2, sym_comment, sym_include, - [159863] = 5, + [162716] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5762), 1, - anon_sym_DOT, - STATE(4349), 2, + ACTIONS(6731), 1, + anon_sym_RPAREN, + STATE(4430), 2, sym_comment, sym_include, - [159880] = 5, + [162733] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5908), 1, + ACTIONS(5312), 1, sym__terminator, - STATE(4350), 2, + STATE(4431), 2, sym_comment, sym_include, - [159897] = 5, + [162750] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(6648), 1, + ACTIONS(5965), 1, sym__terminator, - STATE(4351), 2, + STATE(4432), 2, sym_comment, sym_include, - [159914] = 5, + [162767] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(6650), 1, + ACTIONS(189), 1, sym__terminator, - STATE(4352), 2, + STATE(4433), 2, sym_comment, sym_include, - [159931] = 5, + [162784] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(3363), 1, - anon_sym_COLON, - STATE(4353), 2, + ACTIONS(6733), 1, + aux_sym__block_terminator_token1, + STATE(4434), 2, sym_comment, sym_include, - [159948] = 5, + [162801] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5028), 1, + ACTIONS(3123), 1, anon_sym_COLON, - STATE(4354), 2, + STATE(4435), 2, sym_comment, sym_include, - [159965] = 5, + [162818] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(6652), 1, + ACTIONS(5863), 1, sym__terminator, - STATE(4355), 2, + STATE(4436), 2, sym_comment, sym_include, - [159982] = 5, - ACTIONS(59), 1, + [162835] = 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(6654), 1, - sym__terminator, - STATE(4356), 2, + ACTIONS(6735), 1, + sym_identifier, + STATE(4437), 2, sym_comment, sym_include, - [159999] = 5, - ACTIONS(59), 1, + [162852] = 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(5650), 1, - anon_sym_DOT, - STATE(4357), 2, + ACTIONS(6737), 1, + sym_identifier, + STATE(4438), 2, sym_comment, sym_include, - [160016] = 5, + [162869] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(6656), 1, - anon_sym_RBRACE, - STATE(4358), 2, + ACTIONS(6739), 1, + aux_sym__block_terminator_token1, + STATE(4439), 2, sym_comment, sym_include, - [160033] = 5, - ACTIONS(59), 1, + [162886] = 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(6658), 1, - sym__terminator, - STATE(4359), 2, + ACTIONS(6741), 1, + sym_identifier, + STATE(4440), 2, sym_comment, sym_include, - [160050] = 5, + [162903] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(6660), 1, + ACTIONS(5947), 1, sym__terminator, - STATE(4360), 2, - sym_comment, - sym_include, - [160067] = 5, - ACTIONS(59), 1, - anon_sym_SLASH_SLASH, - ACTIONS(61), 1, - anon_sym_SLASH_STAR, - ACTIONS(65), 1, - anon_sym_LBRACE, - ACTIONS(6662), 1, - aux_sym__block_terminator_token1, - STATE(4361), 2, + STATE(4441), 2, sym_comment, sym_include, - [160084] = 5, - ACTIONS(59), 1, + [162920] = 4, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, - ACTIONS(65), 1, + ACTIONS(147), 2, + sym_file_name, anon_sym_LBRACE, - ACTIONS(6664), 1, - sym__terminator, - STATE(4362), 2, + STATE(4442), 2, sym_comment, sym_include, - [160101] = 5, + [162935] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(6666), 1, + ACTIONS(6743), 1, sym__terminator, - STATE(4363), 2, + STATE(4443), 2, sym_comment, sym_include, - [160118] = 5, + [162952] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(6668), 1, - aux_sym_sort_clause_token2, - STATE(4364), 2, + ACTIONS(6745), 1, + aux_sym__block_terminator_token1, + STATE(4444), 2, sym_comment, sym_include, - [160135] = 5, + [162969] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(6670), 1, + ACTIONS(6747), 1, sym_identifier, - STATE(4365), 2, + STATE(4445), 2, sym_comment, sym_include, - [160152] = 5, + [162986] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(6672), 1, + ACTIONS(5969), 1, sym__terminator, - STATE(4366), 2, + STATE(4446), 2, sym_comment, sym_include, - [160169] = 5, - ACTIONS(3), 1, + [163003] = 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(6674), 1, - sym_identifier, - STATE(4367), 2, + ACTIONS(5107), 1, + anon_sym_COLON, + STATE(4447), 2, sym_comment, sym_include, - [160186] = 5, + [163020] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(6676), 1, + ACTIONS(5907), 1, sym__terminator, - STATE(4368), 2, + STATE(4448), 2, sym_comment, sym_include, - [160203] = 5, + [163037] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(6678), 1, + ACTIONS(6749), 1, sym__terminator, - STATE(4369), 2, + STATE(4449), 2, sym_comment, sym_include, - [160220] = 5, + [163054] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(6680), 1, - anon_sym_COLON, - STATE(4370), 2, + ACTIONS(5919), 1, + sym__terminator, + STATE(4450), 2, + sym_comment, + sym_include, + [163071] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_LBRACE, + ACTIONS(6751), 1, + sym_identifier, + STATE(4451), 2, sym_comment, sym_include, - [160237] = 5, + [163088] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(6682), 1, - sym__terminator, - STATE(4371), 2, + ACTIONS(6753), 1, + aux_sym__block_terminator_token1, + STATE(4452), 2, sym_comment, sym_include, - [160254] = 5, + [163105] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(6684), 1, - sym__terminator, - STATE(4372), 2, + ACTIONS(5005), 1, + aux_sym_do_block_token1, + STATE(4453), 2, sym_comment, sym_include, - [160271] = 5, + [163122] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(6686), 1, + ACTIONS(6755), 1, sym_identifier, - STATE(4373), 2, + STATE(4454), 2, sym_comment, sym_include, - [160288] = 5, + [163139] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(6688), 1, - anon_sym_LPAREN, - STATE(4374), 2, + ACTIONS(3450), 1, + anon_sym_COLON, + STATE(4455), 2, sym_comment, sym_include, - [160305] = 5, + [163156] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(6690), 1, - aux_sym__block_terminator_token1, - STATE(4375), 2, + ACTIONS(3394), 1, + anon_sym_COLON, + STATE(4456), 2, sym_comment, sym_include, - [160322] = 5, + [163173] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(4742), 1, - anon_sym_COLON, - STATE(4376), 2, + ACTIONS(6757), 1, + aux_sym__block_terminator_token1, + STATE(4457), 2, sym_comment, sym_include, - [160339] = 5, + [163190] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(6692), 1, - aux_sym__block_terminator_token1, - STATE(4377), 2, + ACTIONS(5935), 1, + sym__terminator, + STATE(4458), 2, sym_comment, sym_include, - [160356] = 5, + [163207] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(6694), 1, - aux_sym__block_terminator_token1, - STATE(4378), 2, + ACTIONS(5099), 1, + sym__terminator, + STATE(4459), 2, sym_comment, sym_include, - [160373] = 5, + [163224] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(4926), 1, - aux_sym_do_block_token1, - STATE(4379), 2, + ACTIONS(6759), 1, + sym__terminator, + STATE(4460), 2, sym_comment, sym_include, - [160390] = 5, + [163241] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(6696), 1, - aux_sym_of_token1, - STATE(4380), 2, + ACTIONS(6761), 1, + sym__terminator, + STATE(4461), 2, sym_comment, sym_include, - [160407] = 5, + [163258] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(3357), 1, - anon_sym_COLON, - STATE(4381), 2, + ACTIONS(6763), 1, + sym__terminator, + STATE(4462), 2, sym_comment, sym_include, - [160424] = 5, + [163275] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(6698), 1, + ACTIONS(6765), 1, sym__terminator, - STATE(4382), 2, + STATE(4463), 2, sym_comment, sym_include, - [160441] = 5, + [163292] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(6700), 1, + ACTIONS(6767), 1, sym__terminator, - STATE(4383), 2, + STATE(4464), 2, sym_comment, sym_include, - [160458] = 5, + [163309] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(3308), 1, - aux_sym__block_terminator_token1, - STATE(4384), 2, + ACTIONS(6769), 1, + aux_sym_of_token1, + STATE(4465), 2, sym_comment, sym_include, - [160475] = 5, + [163326] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(6702), 1, - anon_sym_RBRACE, - STATE(4385), 2, + ACTIONS(5097), 1, + sym__terminator, + STATE(4466), 2, sym_comment, sym_include, - [160492] = 5, + [163343] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(207), 1, + ACTIONS(6771), 1, sym__terminator, - STATE(4386), 2, + STATE(4467), 2, sym_comment, sym_include, - [160509] = 5, + [163360] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(6704), 1, - anon_sym_LPAREN, - STATE(4387), 2, + ACTIONS(3308), 1, + aux_sym__block_terminator_token1, + STATE(4468), 2, sym_comment, sym_include, - [160526] = 5, + [163377] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(6706), 1, + ACTIONS(6773), 1, sym__terminator, - STATE(4388), 2, + STATE(4469), 2, sym_comment, sym_include, - [160543] = 5, + [163394] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(6708), 1, - anon_sym_RPAREN, - STATE(4389), 2, + ACTIONS(6775), 1, + anon_sym_LPAREN, + STATE(4470), 2, sym_comment, sym_include, - [160560] = 5, + [163411] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5832), 1, + ACTIONS(6777), 1, sym__terminator, - STATE(4390), 2, + STATE(4471), 2, sym_comment, sym_include, - [160577] = 5, + [163428] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5828), 1, + ACTIONS(6779), 1, sym__terminator, - STATE(4391), 2, + STATE(4472), 2, sym_comment, sym_include, - [160594] = 5, + [163445] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(6710), 1, + ACTIONS(5095), 1, sym__terminator, - STATE(4392), 2, + STATE(4473), 2, sym_comment, sym_include, - [160611] = 5, + [163462] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(6712), 1, + ACTIONS(6781), 1, sym__terminator, - STATE(4393), 2, + STATE(4474), 2, sym_comment, sym_include, - [160628] = 5, + [163479] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(4302), 1, + ACTIONS(6783), 1, anon_sym_COLON, - STATE(4394), 2, + STATE(4475), 2, sym_comment, sym_include, - [160645] = 5, + [163496] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(6714), 1, - aux_sym__block_terminator_token1, - STATE(4395), 2, + ACTIONS(6785), 1, + anon_sym_LPAREN, + STATE(4476), 2, sym_comment, sym_include, - [160662] = 5, + [163513] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(6716), 1, - anon_sym_COLON, - STATE(4396), 2, + ACTIONS(6787), 1, + sym__terminator, + STATE(4477), 2, sym_comment, sym_include, - [160679] = 5, + [163530] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5266), 1, + ACTIONS(6789), 1, sym__terminator, - STATE(4397), 2, + STATE(4478), 2, sym_comment, sym_include, - [160696] = 5, + [163547] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5818), 1, + ACTIONS(6791), 1, sym__terminator, - STATE(4398), 2, + STATE(4479), 2, sym_comment, sym_include, - [160713] = 5, + [163564] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(6718), 1, - aux_sym__block_terminator_token1, - STATE(4399), 2, + ACTIONS(6793), 1, + sym__terminator, + STATE(4480), 2, sym_comment, sym_include, - [160730] = 5, + [163581] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(6720), 1, + ACTIONS(6795), 1, sym__terminator, - STATE(4400), 2, + STATE(4481), 2, sym_comment, sym_include, - [160747] = 5, + [163598] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(4213), 1, + ACTIONS(4473), 1, anon_sym_COLON, - STATE(4401), 2, + STATE(4482), 2, sym_comment, sym_include, - [160764] = 5, + [163615] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(6722), 1, + ACTIONS(5091), 1, sym__terminator, - STATE(4402), 2, + STATE(4483), 2, sym_comment, sym_include, - [160781] = 5, + [163632] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5264), 1, - anon_sym_COLON, - STATE(4403), 2, + ACTIONS(6797), 1, + sym__terminator, + STATE(4484), 2, sym_comment, sym_include, - [160798] = 5, + [163649] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(6724), 1, + ACTIONS(5849), 1, sym__terminator, - STATE(4404), 2, + STATE(4485), 2, sym_comment, sym_include, - [160815] = 5, + [163666] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(6726), 1, + ACTIONS(6799), 1, sym__terminator, - STATE(4405), 2, + STATE(4486), 2, sym_comment, sym_include, - [160832] = 5, + [163683] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5008), 1, - anon_sym_COLON, - STATE(4406), 2, + ACTIONS(6801), 1, + anon_sym_RBRACE, + STATE(4487), 2, sym_comment, sym_include, - [160849] = 5, + [163700] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(4241), 1, - anon_sym_COLON, - STATE(4407), 2, + ACTIONS(5853), 1, + sym__terminator, + STATE(4488), 2, sym_comment, sym_include, - [160866] = 5, - ACTIONS(3), 1, + [163717] = 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(6728), 1, - sym_identifier, - STATE(4408), 2, + ACTIONS(6803), 1, + sym__terminator, + STATE(4489), 2, sym_comment, sym_include, - [160883] = 5, + [163734] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(6730), 1, + ACTIONS(6805), 1, sym__terminator, - STATE(4409), 2, + STATE(4490), 2, sym_comment, sym_include, - [160900] = 5, + [163751] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(6732), 1, + ACTIONS(6807), 1, sym__terminator, - STATE(4410), 2, + STATE(4491), 2, sym_comment, sym_include, - [160917] = 5, + [163768] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(6734), 1, - sym__terminator, - STATE(4411), 2, + ACTIONS(6809), 1, + aux_sym__block_terminator_token1, + STATE(4492), 2, sym_comment, sym_include, - [160934] = 5, + [163785] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(6736), 1, - anon_sym_RBRACE, - STATE(4412), 2, + ACTIONS(5837), 1, + sym__terminator, + STATE(4493), 2, sym_comment, sym_include, - [160951] = 5, + [163802] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(6738), 1, + ACTIONS(5841), 1, sym__terminator, - STATE(4413), 2, + STATE(4494), 2, sym_comment, sym_include, - [160968] = 5, + [163819] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(3206), 1, - anon_sym_COLON, - STATE(4414), 2, + ACTIONS(5845), 1, + sym__terminator, + STATE(4495), 2, sym_comment, sym_include, - [160985] = 5, + [163836] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(6740), 1, - aux_sym_buffer_definition_token2, - STATE(4415), 2, + ACTIONS(6811), 1, + anon_sym_COLON, + STATE(4496), 2, sym_comment, sym_include, - [161002] = 5, + [163853] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(6742), 1, + ACTIONS(6813), 1, sym__terminator, - STATE(4416), 2, + STATE(4497), 2, sym_comment, sym_include, - [161019] = 5, + [163870] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(6744), 1, - aux_sym_buffer_definition_token2, - STATE(4417), 2, + ACTIONS(6815), 1, + aux_sym_sort_clause_token2, + STATE(4498), 2, sym_comment, sym_include, - [161036] = 5, + [163887] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(6746), 1, - sym__terminator, - STATE(4418), 2, + ACTIONS(6817), 1, + aux_sym_buffer_definition_token2, + STATE(4499), 2, sym_comment, sym_include, - [161053] = 5, + [163904] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5141), 1, - sym__terminator, - STATE(4419), 2, + ACTIONS(6819), 1, + aux_sym_buffer_definition_token2, + STATE(4500), 2, sym_comment, sym_include, - [161070] = 5, + [163921] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(6748), 1, - sym__terminator, - STATE(4420), 2, + ACTIONS(6821), 1, + aux_sym__block_terminator_token1, + STATE(4501), 2, sym_comment, sym_include, - [161087] = 5, + [163938] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5270), 1, - sym__terminator, - STATE(4421), 2, + ACTIONS(6823), 1, + aux_sym__block_terminator_token1, + STATE(4502), 2, sym_comment, sym_include, - [161104] = 5, + [163955] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(6750), 1, - anon_sym_COLON, - STATE(4422), 2, + ACTIONS(6825), 1, + sym__terminator, + STATE(4503), 2, sym_comment, sym_include, - [161121] = 5, + [163972] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(6752), 1, + ACTIONS(6827), 1, sym_identifier, - STATE(4423), 2, + STATE(4504), 2, sym_comment, sym_include, - [161138] = 5, + [163989] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5272), 1, + ACTIONS(6829), 1, sym__terminator, - STATE(4424), 2, + STATE(4505), 2, sym_comment, sym_include, - [161155] = 5, + [164006] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(6754), 1, + ACTIONS(6831), 1, sym_identifier, - STATE(4425), 2, + STATE(4506), 2, sym_comment, sym_include, - [161172] = 5, - ACTIONS(59), 1, + [164023] = 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(6756), 1, - sym__terminator, - STATE(4426), 2, + ACTIONS(6833), 1, + sym_identifier, + STATE(4507), 2, sym_comment, sym_include, - [161189] = 5, + [164040] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(6758), 1, + ACTIONS(5815), 1, sym__terminator, - STATE(4427), 2, + STATE(4508), 2, sym_comment, sym_include, - [161206] = 5, - ACTIONS(3), 1, + [164057] = 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(6760), 1, - sym_identifier, - STATE(4428), 2, + ACTIONS(6835), 1, + aux_sym__block_terminator_token1, + STATE(4509), 2, sym_comment, sym_include, - [161223] = 5, + [164074] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(6762), 1, - sym__terminator, - STATE(4429), 2, + ACTIONS(2662), 1, + aux_sym__block_terminator_token1, + STATE(4510), 2, sym_comment, sym_include, - [161240] = 5, + [164091] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5766), 1, + ACTIONS(5346), 1, sym__terminator, - STATE(4430), 2, + STATE(4511), 2, sym_comment, sym_include, - [161257] = 5, + [164108] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(6764), 1, + ACTIONS(5083), 1, sym__terminator, - STATE(4431), 2, + STATE(4512), 2, sym_comment, sym_include, - [161274] = 5, - ACTIONS(3), 1, + [164125] = 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(6766), 1, - sym_identifier, - STATE(4432), 2, + ACTIONS(6837), 1, + aux_sym__block_terminator_token1, + STATE(4513), 2, sym_comment, sym_include, - [161291] = 5, + [164142] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(6768), 1, - anon_sym_COLON, - STATE(4433), 2, + ACTIONS(5577), 1, + anon_sym_DOT, + STATE(4514), 2, sym_comment, sym_include, - [161308] = 5, - ACTIONS(59), 1, + [164159] = 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(6770), 1, - anon_sym_COLON, - STATE(4434), 2, + ACTIONS(6839), 1, + sym_identifier, + STATE(4515), 2, sym_comment, sym_include, - [161325] = 5, + [164176] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(6772), 1, - sym__terminator, - STATE(4435), 2, + ACTIONS(6841), 1, + aux_sym_variable_definition_token5, + STATE(4516), 2, sym_comment, sym_include, - [161342] = 5, + [164193] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(3340), 1, - anon_sym_COLON, - STATE(4436), 2, + ACTIONS(6843), 1, + sym__terminator, + STATE(4517), 2, sym_comment, sym_include, - [161359] = 5, + [164210] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5744), 1, + ACTIONS(6845), 1, sym__terminator, - STATE(4437), 2, + STATE(4518), 2, sym_comment, sym_include, - [161376] = 5, + [164227] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(6774), 1, - aux_sym_variable_definition_token5, - STATE(4438), 2, + ACTIONS(2664), 1, + aux_sym__block_terminator_token1, + STATE(4519), 2, sym_comment, sym_include, - [161393] = 5, + [164244] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2656), 1, - aux_sym__block_terminator_token1, - STATE(4439), 2, + ACTIONS(6847), 1, + anon_sym_RPAREN, + STATE(4520), 2, sym_comment, sym_include, - [161410] = 5, + [164261] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(6776), 1, - aux_sym_do_block_token1, - STATE(4440), 2, + ACTIONS(6849), 1, + sym__terminator, + STATE(4521), 2, sym_comment, sym_include, - [161427] = 5, + [164278] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(6778), 1, - aux_sym__block_terminator_token1, - STATE(4441), 2, + ACTIONS(6851), 1, + sym__terminator, + STATE(4522), 2, sym_comment, sym_include, - [161444] = 5, + [164295] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(6780), 1, - anon_sym_RPAREN, - STATE(4442), 2, + ACTIONS(6853), 1, + sym__integer_literal, + STATE(4523), 2, sym_comment, sym_include, - [161461] = 5, + [164312] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(6782), 1, - sym__terminator, - STATE(4443), 2, + ACTIONS(6855), 1, + anon_sym_RBRACE, + STATE(4524), 2, sym_comment, sym_include, - [161478] = 5, + [164329] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(6784), 1, + ACTIONS(6857), 1, sym__terminator, - STATE(4444), 2, + STATE(4525), 2, sym_comment, sym_include, - [161495] = 5, + [164346] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(4721), 1, - anon_sym_COLON, - STATE(4445), 2, + ACTIONS(6859), 1, + sym__terminator, + STATE(4526), 2, sym_comment, sym_include, - [161512] = 5, + [164363] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(6786), 1, - anon_sym_COMMA, - STATE(4446), 2, + ACTIONS(6861), 1, + anon_sym_LPAREN, + STATE(4527), 2, sym_comment, sym_include, - [161529] = 5, + [164380] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(6788), 1, - anon_sym_COMMA, - STATE(4447), 2, + ACTIONS(6863), 1, + aux_sym_setter_token1, + STATE(4528), 2, sym_comment, sym_include, - [161546] = 5, + [164397] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(6790), 1, - aux_sym__block_terminator_token1, - STATE(4448), 2, + ACTIONS(6865), 1, + sym__terminator, + STATE(4529), 2, sym_comment, sym_include, - [161563] = 5, + [164414] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5694), 1, - anon_sym_DOT, - STATE(4449), 2, + ACTIONS(6867), 1, + sym__terminator, + STATE(4530), 2, sym_comment, sym_include, - [161580] = 5, + [164431] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(6792), 1, + ACTIONS(6869), 1, aux_sym__block_terminator_token1, - STATE(4450), 2, - sym_comment, - sym_include, - [161597] = 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(4451), 2, + STATE(4531), 2, sym_comment, sym_include, - [161614] = 5, + [164448] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(6794), 1, - sym__terminator, - STATE(4452), 2, + ACTIONS(6871), 1, + anon_sym_COLON, + STATE(4532), 2, sym_comment, sym_include, - [161631] = 5, + [164465] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(6796), 1, + ACTIONS(155), 1, sym__terminator, - STATE(4453), 2, + STATE(4533), 2, sym_comment, sym_include, - [161648] = 5, + [164482] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5284), 1, + ACTIONS(5356), 1, sym__terminator, - STATE(4454), 2, + STATE(4534), 2, sym_comment, sym_include, - [161665] = 5, + [164499] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(215), 1, + ACTIONS(6873), 1, sym__terminator, - STATE(4455), 2, + STATE(4535), 2, sym_comment, sym_include, - [161682] = 4, + [164516] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, - ACTIONS(125), 2, + ACTIONS(209), 2, sym_file_name, anon_sym_LBRACE, - STATE(4456), 2, + STATE(4536), 2, sym_comment, sym_include, - [161697] = 5, + [164531] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(4998), 1, + ACTIONS(6875), 1, sym__terminator, - STATE(4457), 2, + STATE(4537), 2, sym_comment, sym_include, - [161714] = 5, + [164548] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(6798), 1, - anon_sym_RPAREN, - STATE(4458), 2, + ACTIONS(6877), 1, + aux_sym__block_terminator_token1, + STATE(4538), 2, sym_comment, sym_include, - [161731] = 5, + [164565] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(6800), 1, + ACTIONS(6879), 1, anon_sym_RBRACE, - STATE(4459), 2, - sym_comment, - sym_include, - [161748] = 5, - ACTIONS(59), 1, - anon_sym_SLASH_SLASH, - ACTIONS(61), 1, - anon_sym_SLASH_STAR, - ACTIONS(65), 1, - anon_sym_LBRACE, - ACTIONS(6802), 1, - anon_sym_LPAREN, - STATE(4460), 2, + STATE(4539), 2, sym_comment, sym_include, - [161765] = 5, + [164582] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(6804), 1, + ACTIONS(6881), 1, sym_identifier, - STATE(4461), 2, + STATE(4540), 2, sym_comment, sym_include, - [161782] = 5, + [164599] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(6806), 1, - anon_sym_RBRACE, - STATE(4462), 2, + ACTIONS(4385), 1, + anon_sym_COLON, + STATE(4541), 2, sym_comment, sym_include, - [161799] = 5, + [164616] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(6808), 1, - anon_sym_EQ, - STATE(4463), 2, + ACTIONS(5797), 1, + sym__terminator, + STATE(4542), 2, sym_comment, sym_include, - [161816] = 5, + [164633] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(6810), 1, - sym__integer_literal, - STATE(4464), 2, + ACTIONS(6883), 1, + sym__terminator, + STATE(4543), 2, sym_comment, sym_include, - [161833] = 5, + [164650] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(6812), 1, - anon_sym_RBRACE, - STATE(4465), 2, + ACTIONS(5793), 1, + sym__terminator, + STATE(4544), 2, sym_comment, sym_include, - [161850] = 5, + [164667] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5712), 1, - sym__terminator, - STATE(4466), 2, + ACTIONS(6885), 1, + anon_sym_EQ, + STATE(4545), 2, sym_comment, sym_include, - [161867] = 5, + [164684] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(6814), 1, + ACTIONS(5789), 1, sym__terminator, - STATE(4467), 2, - sym_comment, - sym_include, - [161884] = 5, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - ACTIONS(7), 1, - anon_sym_LBRACE, - ACTIONS(6816), 1, - sym_identifier, - STATE(4468), 2, + STATE(4546), 2, sym_comment, sym_include, - [161901] = 5, + [164701] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5708), 1, - sym__terminator, - STATE(4469), 2, + ACTIONS(6887), 1, + aux_sym__block_terminator_token1, + STATE(4547), 2, sym_comment, sym_include, - [161918] = 5, + [164718] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(6818), 1, + ACTIONS(6889), 1, sym__terminator, - STATE(4470), 2, + STATE(4548), 2, sym_comment, sym_include, - [161935] = 5, + [164735] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(6820), 1, + ACTIONS(5775), 1, sym__terminator, - STATE(4471), 2, + STATE(4549), 2, sym_comment, sym_include, - [161952] = 5, + [164752] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(6822), 1, + ACTIONS(5779), 1, sym__terminator, - STATE(4472), 2, + STATE(4550), 2, sym_comment, sym_include, - [161969] = 5, + [164769] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(6824), 1, + ACTIONS(6891), 1, aux_sym__block_terminator_token1, - STATE(4473), 2, + STATE(4551), 2, sym_comment, sym_include, - [161986] = 5, + [164786] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(6826), 1, - aux_sym__block_terminator_token1, - STATE(4474), 2, + ACTIONS(5769), 1, + sym__terminator, + STATE(4552), 2, sym_comment, sym_include, - [162003] = 5, - ACTIONS(59), 1, + [164803] = 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(6828), 1, - aux_sym__block_terminator_token1, - STATE(4475), 2, + ACTIONS(6893), 1, + sym_identifier, + STATE(4553), 2, sym_comment, sym_include, - [162020] = 5, + [164820] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(6830), 1, + ACTIONS(6895), 1, sym_identifier, - STATE(4476), 2, + STATE(4554), 2, sym_comment, sym_include, - [162037] = 5, + [164837] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(6832), 1, - sym__terminator, - STATE(4477), 2, + ACTIONS(5059), 1, + anon_sym_LPAREN, + STATE(4555), 2, sym_comment, sym_include, - [162054] = 5, + [164854] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(4982), 1, - anon_sym_LPAREN, - STATE(4478), 2, + ACTIONS(6897), 1, + aux_sym__block_terminator_token1, + STATE(4556), 2, sym_comment, sym_include, - [162071] = 5, + [164871] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(6834), 1, + ACTIONS(6899), 1, sym__terminator, - STATE(4479), 2, + STATE(4557), 2, sym_comment, sym_include, - [162088] = 5, + [164888] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(6836), 1, + ACTIONS(6901), 1, sym__terminator, - STATE(4480), 2, + STATE(4558), 2, sym_comment, sym_include, - [162105] = 5, + [164905] = 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(3429), 1, anon_sym_COLON, - STATE(4481), 2, - sym_comment, - sym_include, - [162122] = 5, - ACTIONS(59), 1, - anon_sym_SLASH_SLASH, - ACTIONS(61), 1, - anon_sym_SLASH_STAR, - ACTIONS(65), 1, - anon_sym_LBRACE, - ACTIONS(6838), 1, - sym__terminator, - STATE(4482), 2, + STATE(4559), 2, sym_comment, sym_include, - [162139] = 5, + [164922] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(6840), 1, - sym__terminator, - STATE(4483), 2, + ACTIONS(6903), 1, + aux_sym_do_block_token1, + STATE(4560), 2, sym_comment, sym_include, - [162156] = 5, + [164939] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(3242), 1, + ACTIONS(6905), 1, aux_sym__block_terminator_token1, - STATE(4484), 2, + STATE(4561), 2, sym_comment, sym_include, - [162173] = 5, + [164956] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(6842), 1, + ACTIONS(6907), 1, sym_identifier, - STATE(4485), 2, + STATE(4562), 2, sym_comment, sym_include, - [162190] = 5, + [164973] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(6844), 1, + ACTIONS(5047), 1, sym__terminator, - STATE(4486), 2, + STATE(4563), 2, sym_comment, sym_include, - [162207] = 5, + [164990] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(4970), 1, + ACTIONS(5045), 1, anon_sym_LPAREN, - STATE(4487), 2, + STATE(4564), 2, sym_comment, sym_include, - [162224] = 5, + [165007] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(151), 1, + ACTIONS(6909), 1, sym__terminator, - STATE(4488), 2, + STATE(4565), 2, sym_comment, sym_include, - [162241] = 5, - ACTIONS(3), 1, + [165024] = 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(6846), 1, - sym_identifier, - STATE(4489), 2, + ACTIONS(6911), 1, + sym__terminator, + STATE(4566), 2, sym_comment, sym_include, - [162258] = 5, + [165041] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(4267), 1, - anon_sym_COLON, - STATE(4490), 2, + ACTIONS(6913), 1, + aux_sym_setter_token1, + STATE(4567), 2, sym_comment, sym_include, - [162275] = 5, + [165058] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5666), 1, - sym__terminator, - STATE(4491), 2, + ACTIONS(6915), 1, + anon_sym_RPAREN, + STATE(4568), 2, sym_comment, sym_include, - [162292] = 5, + [165075] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(6848), 1, - anon_sym_LPAREN, - STATE(4492), 2, + ACTIONS(6917), 1, + anon_sym_COMMA, + STATE(4569), 2, sym_comment, sym_include, - [162309] = 5, + [165092] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(6850), 1, - anon_sym_COLON, - STATE(4493), 2, + ACTIONS(6919), 1, + anon_sym_COMMA, + STATE(4570), 2, sym_comment, sym_include, - [162326] = 5, + [165109] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(4960), 1, + ACTIONS(5037), 1, anon_sym_LPAREN, - STATE(4494), 2, + STATE(4571), 2, sym_comment, sym_include, - [162343] = 5, + [165126] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(4954), 1, - sym__terminator, - STATE(4495), 2, + ACTIONS(6921), 1, + anon_sym_COMMA, + STATE(4572), 2, sym_comment, sym_include, - [162360] = 5, + [165143] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5602), 1, - sym__terminator, - STATE(4496), 2, + ACTIONS(6923), 1, + anon_sym_COLON, + STATE(4573), 2, sym_comment, sym_include, - [162377] = 5, - ACTIONS(3), 1, + [165160] = 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(6852), 1, - sym_identifier, - STATE(4497), 2, + ACTIONS(5931), 1, + sym__terminator, + STATE(4574), 2, sym_comment, sym_include, - [162394] = 5, + [165177] = 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(5029), 1, anon_sym_LPAREN, - STATE(4498), 2, + STATE(4575), 2, sym_comment, sym_include, - [162411] = 5, + [165194] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(3794), 1, - anon_sym_COLON, - STATE(4499), 2, + ACTIONS(6925), 1, + aux_sym_on_error_phrase_token3, + STATE(4576), 2, sym_comment, sym_include, - [162428] = 5, + [165211] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(6854), 1, - sym__terminator, - STATE(4500), 2, + ACTIONS(3119), 1, + anon_sym_COLON, + STATE(4577), 2, sym_comment, sym_include, - [162445] = 5, + [165228] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(6856), 1, + ACTIONS(6927), 1, sym__terminator, - STATE(4501), 2, + STATE(4578), 2, sym_comment, sym_include, - [162462] = 5, + [165245] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(6858), 1, + ACTIONS(6929), 1, sym_identifier, - STATE(4502), 2, + STATE(4579), 2, sym_comment, sym_include, - [162479] = 5, - ACTIONS(3), 1, + [165262] = 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(6860), 1, - sym_identifier, - STATE(4503), 2, + ACTIONS(6931), 1, + sym__terminator, + STATE(4580), 2, sym_comment, sym_include, - [162496] = 5, + [165279] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(6862), 1, + ACTIONS(6933), 1, sym_identifier, - STATE(4504), 2, + STATE(4581), 2, sym_comment, sym_include, - [162513] = 5, + [165296] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(6864), 1, + ACTIONS(6935), 1, anon_sym_COLON, - STATE(4505), 2, + STATE(4582), 2, sym_comment, sym_include, - [162530] = 5, - ACTIONS(3), 1, + [165313] = 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(6866), 1, - sym_identifier, - STATE(4506), 2, + ACTIONS(5731), 1, + sym__terminator, + STATE(4583), 2, sym_comment, sym_include, - [162547] = 5, + [165330] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(6868), 1, + ACTIONS(6937), 1, anon_sym_LPAREN, - STATE(4507), 2, + STATE(4584), 2, sym_comment, sym_include, - [162564] = 5, + [165347] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(6870), 1, + ACTIONS(6939), 1, sym_identifier, - STATE(4508), 2, + STATE(4585), 2, sym_comment, sym_include, - [162581] = 5, + [165364] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(6872), 1, + ACTIONS(6941), 1, sym_identifier, - STATE(4509), 2, + STATE(4586), 2, sym_comment, sym_include, - [162598] = 5, + [165381] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(2672), 1, - aux_sym__block_terminator_token1, - STATE(4510), 2, + ACTIONS(5717), 1, + sym__terminator, + STATE(4587), 2, sym_comment, sym_include, - [162615] = 5, - ACTIONS(3), 1, + [165398] = 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(2185), 1, - sym_identifier, - STATE(4511), 2, + ACTIONS(6943), 1, + sym__terminator, + STATE(4588), 2, sym_comment, sym_include, - [162632] = 5, + [165415] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(4816), 1, - aux_sym_of_token1, - STATE(4512), 2, + ACTIONS(6945), 1, + anon_sym_LPAREN, + STATE(4589), 2, sym_comment, sym_include, - [162649] = 5, - ACTIONS(59), 1, + [165432] = 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(5636), 1, - sym__terminator, - STATE(4513), 2, + ACTIONS(6947), 1, + sym_identifier, + STATE(4590), 2, sym_comment, sym_include, - [162666] = 5, + [165449] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(6874), 1, + ACTIONS(6949), 1, sym_identifier, - STATE(4514), 2, + STATE(4591), 2, sym_comment, sym_include, - [162683] = 5, + [165466] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(6876), 1, + ACTIONS(6951), 1, sym_identifier, - STATE(4515), 2, + STATE(4592), 2, sym_comment, sym_include, - [162700] = 5, + [165483] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(6878), 1, - aux_sym__block_terminator_token1, - STATE(4516), 2, + ACTIONS(5385), 1, + sym__terminator, + STATE(4593), 2, sym_comment, sym_include, - [162717] = 5, + [165500] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(6880), 1, - aux_sym__block_terminator_token1, - STATE(4517), 2, + ACTIONS(4875), 1, + aux_sym_of_token1, + STATE(4594), 2, + sym_comment, + sym_include, + [165517] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(7), 1, + anon_sym_LBRACE, + ACTIONS(6953), 1, + sym_identifier, + STATE(4595), 2, sym_comment, sym_include, - [162734] = 5, + [165534] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(6882), 1, - sym__terminator, - STATE(4518), 2, + ACTIONS(6955), 1, + aux_sym__block_terminator_token1, + STATE(4596), 2, sym_comment, sym_include, - [162751] = 5, + [165551] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(6884), 1, - anon_sym_COLON, - STATE(4519), 2, + ACTIONS(6957), 1, + anon_sym_COMMA, + STATE(4597), 2, sym_comment, sym_include, - [162768] = 5, + [165568] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(6886), 1, - anon_sym_COMMA, - STATE(4520), 2, + ACTIONS(6959), 1, + anon_sym_COLON, + STATE(4598), 2, sym_comment, sym_include, - [162785] = 5, + [165585] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(6888), 1, + ACTIONS(6961), 1, anon_sym_COLON, - STATE(4521), 2, + STATE(4599), 2, sym_comment, sym_include, - [162802] = 5, + [165602] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(4887), 1, - aux_sym_on_stop_phrase_token1, - STATE(4522), 2, + ACTIONS(6963), 1, + aux_sym__block_terminator_token1, + STATE(4600), 2, sym_comment, sym_include, - [162819] = 5, + [165619] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5624), 1, - sym__terminator, - STATE(4523), 2, + ACTIONS(6965), 1, + aux_sym_buffer_definition_token2, + STATE(4601), 2, sym_comment, sym_include, - [162836] = 5, + [165636] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(6890), 1, + ACTIONS(6967), 1, aux_sym_buffer_definition_token2, - STATE(4524), 2, + STATE(4602), 2, sym_comment, sym_include, - [162853] = 5, + [165653] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(6892), 1, - aux_sym_buffer_definition_token2, - STATE(4525), 2, + ACTIONS(6969), 1, + aux_sym_on_error_phrase_token3, + STATE(4603), 2, sym_comment, sym_include, - [162870] = 5, + [165670] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(6894), 1, + ACTIONS(6971), 1, aux_sym_on_error_phrase_token3, - STATE(4526), 2, + STATE(4604), 2, + sym_comment, + sym_include, + [165687] = 5, + ACTIONS(59), 1, + anon_sym_SLASH_SLASH, + ACTIONS(61), 1, + anon_sym_SLASH_STAR, + ACTIONS(65), 1, + anon_sym_LBRACE, + ACTIONS(5009), 1, + aux_sym_on_stop_phrase_token1, + STATE(4605), 2, sym_comment, sym_include, - [162887] = 5, + [165704] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(6896), 1, + ACTIONS(6973), 1, anon_sym_COLON, - STATE(4527), 2, + STATE(4606), 2, sym_comment, sym_include, - [162904] = 5, + [165721] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(4679), 1, + ACTIONS(4920), 1, aux_sym_of_token1, - STATE(4528), 2, + STATE(4607), 2, sym_comment, sym_include, - [162921] = 5, + [165738] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(6898), 1, - aux_sym__block_terminator_token1, - STATE(4529), 2, + ACTIONS(4962), 1, + aux_sym_on_stop_phrase_token1, + STATE(4608), 2, sym_comment, sym_include, - [162938] = 5, + [165755] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(6900), 1, - sym__terminator, - STATE(4530), 2, + ACTIONS(6975), 1, + anon_sym_COLON, + STATE(4609), 2, sym_comment, sym_include, - [162955] = 5, + [165772] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(4940), 1, + ACTIONS(6977), 1, sym__terminator, - STATE(4531), 2, + STATE(4610), 2, sym_comment, sym_include, - [162972] = 5, + [165789] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(3139), 1, + ACTIONS(3408), 1, anon_sym_COLON, - STATE(4532), 2, + STATE(4611), 2, sym_comment, sym_include, - [162989] = 5, + [165806] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(6902), 1, + ACTIONS(6979), 1, aux_sym_variable_definition_token5, - STATE(4533), 2, + STATE(4612), 2, sym_comment, sym_include, - [163006] = 5, + [165823] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(6904), 1, - aux_sym__block_terminator_token1, - STATE(4534), 2, + ACTIONS(6981), 1, + sym__terminator, + STATE(4613), 2, sym_comment, sym_include, - [163023] = 5, + [165840] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(6906), 1, + ACTIONS(6983), 1, aux_sym_buffer_definition_token2, - STATE(4535), 2, + STATE(4614), 2, sym_comment, sym_include, - [163040] = 5, + [165857] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(6908), 1, + ACTIONS(6985), 1, aux_sym_buffer_definition_token2, - STATE(4536), 2, + STATE(4615), 2, sym_comment, sym_include, - [163057] = 5, + [165874] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(6910), 1, - anon_sym_COLON, - STATE(4537), 2, + ACTIONS(6987), 1, + sym__terminator, + STATE(4616), 2, sym_comment, sym_include, - [163074] = 5, + [165891] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(6912), 1, + ACTIONS(6989), 1, aux_sym_of_token1, - STATE(4538), 2, + STATE(4617), 2, sym_comment, sym_include, - [163091] = 5, + [165908] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(6914), 1, - anon_sym_RPAREN, - STATE(4539), 2, + ACTIONS(3216), 1, + aux_sym__block_terminator_token1, + STATE(4618), 2, sym_comment, sym_include, - [163108] = 5, + [165925] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(4930), 1, + ACTIONS(5017), 1, anon_sym_COLON, - STATE(4540), 2, + STATE(4619), 2, sym_comment, sym_include, - [163125] = 5, + [165942] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(3854), 1, - anon_sym_COLON, - STATE(4541), 2, + ACTIONS(6991), 1, + aux_sym_setter_token1, + STATE(4620), 2, sym_comment, sym_include, - [163142] = 5, + [165959] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(6916), 1, + ACTIONS(6993), 1, aux_sym__block_terminator_token1, - STATE(4542), 2, + STATE(4621), 2, sym_comment, sym_include, - [163159] = 5, + [165976] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(4928), 1, + ACTIONS(5013), 1, anon_sym_COLON, - STATE(4543), 2, + STATE(4622), 2, sym_comment, sym_include, - [163176] = 5, + [165993] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(6918), 1, + ACTIONS(6995), 1, aux_sym_on_error_phrase_token3, - STATE(4544), 2, + STATE(4623), 2, sym_comment, sym_include, - [163193] = 5, - ACTIONS(59), 1, + [166010] = 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(6920), 1, - aux_sym_on_error_phrase_token3, - STATE(4545), 2, + ACTIONS(6997), 1, + sym_identifier, + STATE(4624), 2, sym_comment, sym_include, - [163210] = 5, - ACTIONS(3), 1, + [166027] = 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(6922), 1, - sym_identifier, - STATE(4546), 2, + ACTIONS(6999), 1, + sym__terminator, + STATE(4625), 2, sym_comment, sym_include, - [163227] = 5, + [166044] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(6924), 1, + ACTIONS(7001), 1, sym_identifier, - STATE(4547), 2, + STATE(4626), 2, sym_comment, sym_include, - [163244] = 5, + [166061] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5312), 1, - anon_sym_LPAREN, - STATE(4548), 2, + ACTIONS(5673), 1, + sym__terminator, + STATE(4627), 2, sym_comment, sym_include, - [163261] = 5, + [166078] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(6926), 1, + ACTIONS(7003), 1, anon_sym_LPAREN, - STATE(4549), 2, + STATE(4628), 2, sym_comment, sym_include, - [163278] = 5, + [166095] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(6928), 1, + ACTIONS(7005), 1, sym_identifier, - STATE(4550), 2, + STATE(4629), 2, sym_comment, sym_include, - [163295] = 5, + [166112] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(6930), 1, + ACTIONS(7007), 1, sym_identifier, - STATE(4551), 2, + STATE(4630), 2, sym_comment, sym_include, - [163312] = 5, - ACTIONS(3), 1, + [166129] = 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(6932), 1, - sym_identifier, - STATE(4552), 2, + ACTIONS(7009), 1, + sym__terminator, + STATE(4631), 2, sym_comment, sym_include, - [163329] = 5, + [166146] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5824), 1, + ACTIONS(5881), 1, anon_sym_DOT, - STATE(4553), 2, + STATE(4632), 2, sym_comment, sym_include, - [163346] = 5, + [166163] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(6934), 1, - anon_sym_COLON, - STATE(4554), 2, + ACTIONS(7011), 1, + sym__terminator, + STATE(4633), 2, sym_comment, sym_include, - [163363] = 5, + [166180] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(6936), 1, - anon_sym_LPAREN, - STATE(4555), 2, + ACTIONS(7013), 1, + aux_sym_setter_token1, + STATE(4634), 2, sym_comment, sym_include, - [163380] = 5, + [166197] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(6938), 1, + ACTIONS(7015), 1, sym_identifier, - STATE(4556), 2, + STATE(4635), 2, sym_comment, sym_include, - [163397] = 5, + [166214] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(6940), 1, + ACTIONS(7017), 1, sym_identifier, - STATE(4557), 2, + STATE(4636), 2, sym_comment, sym_include, - [163414] = 5, + [166231] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(6942), 1, - aux_sym_setter_token1, - STATE(4558), 2, + ACTIONS(7019), 1, + anon_sym_RPAREN, + STATE(4637), 2, sym_comment, sym_include, - [163431] = 5, + [166248] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(3116), 1, - anon_sym_COLON, - STATE(4559), 2, + ACTIONS(7021), 1, + aux_sym__block_terminator_token1, + STATE(4638), 2, sym_comment, sym_include, - [163448] = 5, + [166265] = 5, + ACTIONS(59), 1, + anon_sym_SLASH_SLASH, + ACTIONS(61), 1, + anon_sym_SLASH_STAR, + ACTIONS(65), 1, + anon_sym_LBRACE, + ACTIONS(7023), 1, + sym__terminator, + STATE(4639), 2, + sym_comment, + sym_include, + [166282] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(6944), 1, + ACTIONS(7025), 1, sym_identifier, - STATE(4560), 2, + STATE(4640), 2, sym_comment, sym_include, - [163465] = 5, + [166299] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(6946), 1, + ACTIONS(7027), 1, anon_sym_COMMA, - STATE(4561), 2, + STATE(4641), 2, sym_comment, sym_include, - [163482] = 5, + [166316] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(6948), 1, + ACTIONS(7029), 1, sym_identifier, - STATE(4562), 2, + STATE(4642), 2, sym_comment, sym_include, - [163499] = 5, + [166333] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(6950), 1, + ACTIONS(7031), 1, sym_identifier, - STATE(4563), 2, + STATE(4643), 2, sym_comment, sym_include, - [163516] = 5, + [166350] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(6952), 1, + ACTIONS(7033), 1, aux_sym__block_terminator_token1, - STATE(4564), 2, + STATE(4644), 2, sym_comment, sym_include, - [163533] = 5, + [166367] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(6954), 1, + ACTIONS(7035), 1, aux_sym_buffer_definition_token2, - STATE(4565), 2, + STATE(4645), 2, sym_comment, sym_include, - [163550] = 5, + [166384] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(6956), 1, + ACTIONS(7037), 1, aux_sym_buffer_definition_token2, - STATE(4566), 2, + STATE(4646), 2, + sym_comment, + sym_include, + [166401] = 5, + ACTIONS(59), 1, + anon_sym_SLASH_SLASH, + ACTIONS(61), 1, + anon_sym_SLASH_STAR, + ACTIONS(65), 1, + anon_sym_LBRACE, + ACTIONS(7039), 1, + aux_sym_on_error_phrase_token3, + STATE(4647), 2, sym_comment, sym_include, - [163567] = 5, + [166418] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(6958), 1, + ACTIONS(7041), 1, anon_sym_COLON, - STATE(4567), 2, + STATE(4648), 2, sym_comment, sym_include, - [163584] = 5, + [166435] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(4651), 1, + ACTIONS(4603), 1, aux_sym_of_token1, - STATE(4568), 2, + STATE(4649), 2, sym_comment, sym_include, - [163601] = 5, + [166452] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(6960), 1, + ACTIONS(7043), 1, sym_identifier, - STATE(4569), 2, + STATE(4650), 2, sym_comment, sym_include, - [163618] = 5, + [166469] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(6962), 1, + ACTIONS(7045), 1, sym__terminator, - STATE(4570), 2, + STATE(4651), 2, sym_comment, sym_include, - [163635] = 5, + [166486] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(6964), 1, + ACTIONS(7047), 1, aux_sym_buffer_definition_token2, - STATE(4571), 2, + STATE(4652), 2, sym_comment, sym_include, - [163652] = 5, - ACTIONS(59), 1, + [166503] = 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(6966), 1, - anon_sym_COLON, - STATE(4572), 2, + ACTIONS(7049), 1, + sym_identifier, + STATE(4653), 2, sym_comment, sym_include, - [163669] = 5, - ACTIONS(59), 1, + [166520] = 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(3806), 1, - anon_sym_COLON, - STATE(4573), 2, + ACTIONS(7051), 1, + sym_identifier, + STATE(4654), 2, sym_comment, sym_include, - [163686] = 5, + [166537] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(6968), 1, + ACTIONS(7053), 1, aux_sym_buffer_definition_token2, - STATE(4574), 2, + STATE(4655), 2, sym_comment, sym_include, - [163703] = 5, + [166554] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(6970), 1, + ACTIONS(7055), 1, aux_sym_buffer_definition_token2, - STATE(4575), 2, + STATE(4656), 2, sym_comment, sym_include, - [163720] = 5, + [166571] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(6972), 1, + ACTIONS(7057), 1, sym__terminator, - STATE(4576), 2, + STATE(4657), 2, sym_comment, sym_include, - [163737] = 5, + [166588] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(6974), 1, + ACTIONS(7059), 1, aux_sym_of_token1, - STATE(4577), 2, + STATE(4658), 2, sym_comment, sym_include, - [163754] = 5, + [166605] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(6976), 1, + ACTIONS(7061), 1, aux_sym_buffer_definition_token2, - STATE(4578), 2, + STATE(4659), 2, sym_comment, sym_include, - [163771] = 5, + [166622] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5536), 1, + ACTIONS(7063), 1, sym__terminator, - STATE(4579), 2, + STATE(4660), 2, sym_comment, sym_include, - [163788] = 5, + [166639] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(6978), 1, + ACTIONS(7065), 1, sym_identifier, - STATE(4580), 2, + STATE(4661), 2, sym_comment, sym_include, - [163805] = 5, - ACTIONS(3), 1, + [166656] = 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(6980), 1, - sym_identifier, - STATE(4581), 2, + ACTIONS(7067), 1, + sym__terminator, + STATE(4662), 2, sym_comment, sym_include, - [163822] = 5, + [166673] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(6982), 1, + ACTIONS(7069), 1, anon_sym_LPAREN, - STATE(4582), 2, + STATE(4663), 2, sym_comment, sym_include, - [163839] = 5, + [166690] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(6984), 1, + ACTIONS(7071), 1, sym_identifier, - STATE(4583), 2, + STATE(4664), 2, sym_comment, sym_include, - [163856] = 5, + [166707] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(6986), 1, + ACTIONS(7073), 1, sym_identifier, - STATE(4584), 2, + STATE(4665), 2, sym_comment, sym_include, - [163873] = 5, - ACTIONS(3), 1, + [166724] = 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(6988), 1, - sym_identifier, - STATE(4585), 2, + ACTIONS(2676), 1, + aux_sym__block_terminator_token1, + STATE(4666), 2, sym_comment, sym_include, - [163890] = 5, + [166741] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(6990), 1, + ACTIONS(7075), 1, sym_identifier, - STATE(4586), 2, + STATE(4667), 2, sym_comment, sym_include, - [163907] = 5, + [166758] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5520), 1, - sym__terminator, - STATE(4587), 2, + ACTIONS(7077), 1, + aux_sym_setter_token1, + STATE(4668), 2, sym_comment, sym_include, - [163924] = 5, + [166775] = 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_EQ, - STATE(4588), 2, + ACTIONS(7079), 1, + sym__terminator, + STATE(4669), 2, sym_comment, sym_include, - [163941] = 5, + [166792] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(6992), 1, + ACTIONS(7081), 1, sym_identifier, - STATE(4589), 2, + STATE(4670), 2, sym_comment, sym_include, - [163958] = 5, + [166809] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(6994), 1, + ACTIONS(7083), 1, sym_identifier, - STATE(4590), 2, + STATE(4671), 2, sym_comment, sym_include, - [163975] = 5, + [166826] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(6996), 1, + ACTIONS(7085), 1, aux_sym__block_terminator_token1, - STATE(4591), 2, + STATE(4672), 2, sym_comment, sym_include, - [163992] = 5, - ACTIONS(59), 1, + [166843] = 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(5492), 1, - sym__terminator, - STATE(4592), 2, + ACTIONS(2387), 1, + sym_identifier, + STATE(4673), 2, sym_comment, sym_include, - [164009] = 5, + [166860] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(4920), 1, + ACTIONS(4993), 1, anon_sym_LPAREN, - STATE(4593), 2, + STATE(4674), 2, sym_comment, sym_include, - [164026] = 5, + [166877] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(6998), 1, + ACTIONS(7087), 1, anon_sym_COMMA, - STATE(4594), 2, + STATE(4675), 2, sym_comment, sym_include, - [164043] = 5, - ACTIONS(59), 1, + [166894] = 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(5508), 1, - sym__terminator, - STATE(4595), 2, + ACTIONS(7089), 1, + sym_identifier, + STATE(4676), 2, sym_comment, sym_include, - [164060] = 5, + [166911] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(7000), 1, + ACTIONS(7091), 1, sym_identifier, - STATE(4596), 2, + STATE(4677), 2, sym_comment, sym_include, - [164077] = 5, + [166928] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(7002), 1, - aux_sym__block_terminator_token1, - STATE(4597), 2, + ACTIONS(3214), 1, + anon_sym_COLON, + STATE(4678), 2, sym_comment, sym_include, - [164094] = 5, + [166945] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(7004), 1, + ACTIONS(7093), 1, aux_sym_buffer_definition_token2, - STATE(4598), 2, + STATE(4679), 2, sym_comment, sym_include, - [164111] = 5, + [166962] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(7006), 1, + ACTIONS(7095), 1, aux_sym_buffer_definition_token2, - STATE(4599), 2, + STATE(4680), 2, sym_comment, sym_include, - [164128] = 5, + [166979] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(7008), 1, + ACTIONS(7097), 1, anon_sym_COLON, - STATE(4600), 2, + STATE(4681), 2, sym_comment, sym_include, - [164145] = 5, + [166996] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(4585), 1, + ACTIONS(4675), 1, aux_sym_of_token1, - STATE(4601), 2, + STATE(4682), 2, sym_comment, sym_include, - [164162] = 5, + [167013] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(7010), 1, - anon_sym_RPAREN, - STATE(4602), 2, + ACTIONS(7099), 1, + sym__terminator, + STATE(4683), 2, sym_comment, sym_include, - [164179] = 5, + [167030] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5484), 1, + ACTIONS(7101), 1, sym__terminator, - STATE(4603), 2, + STATE(4684), 2, sym_comment, sym_include, - [164196] = 5, + [167047] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(7012), 1, + ACTIONS(7103), 1, sym_identifier, - STATE(4604), 2, + STATE(4685), 2, sym_comment, sym_include, - [164213] = 5, + [167064] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(7014), 1, - anon_sym_RPAREN, - STATE(4605), 2, + ACTIONS(7105), 1, + sym__terminator, + STATE(4686), 2, sym_comment, sym_include, - [164230] = 5, + [167081] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(7016), 1, - anon_sym_RBRACE, - STATE(4606), 2, + ACTIONS(7107), 1, + anon_sym_COLON, + STATE(4687), 2, sym_comment, sym_include, - [164247] = 5, + [167098] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(7018), 1, + ACTIONS(7109), 1, aux_sym_buffer_definition_token2, - STATE(4607), 2, + STATE(4688), 2, sym_comment, sym_include, - [164264] = 5, + [167115] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(7020), 1, + ACTIONS(7111), 1, aux_sym_buffer_definition_token2, - STATE(4608), 2, + STATE(4689), 2, sym_comment, sym_include, - [164281] = 5, + [167132] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(7022), 1, + ACTIONS(7113), 1, aux_sym_of_token1, - STATE(4609), 2, + STATE(4690), 2, sym_comment, sym_include, - [164298] = 5, + [167149] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(7024), 1, + ACTIONS(7115), 1, anon_sym_RPAREN, - STATE(4610), 2, + STATE(4691), 2, sym_comment, sym_include, - [164315] = 5, - ACTIONS(59), 1, + [167166] = 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(7026), 1, - anon_sym_RPAREN, - STATE(4611), 2, + ACTIONS(2341), 1, + sym_identifier, + STATE(4692), 2, sym_comment, sym_include, - [164332] = 5, + [167183] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(7028), 1, + ACTIONS(7117), 1, sym_identifier, - STATE(4612), 2, + STATE(4693), 2, sym_comment, sym_include, - [164349] = 5, - ACTIONS(59), 1, + [167200] = 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(7030), 1, - anon_sym_RBRACE, - STATE(4613), 2, + ACTIONS(7119), 1, + sym_identifier, + STATE(4694), 2, sym_comment, sym_include, - [164366] = 5, + [167217] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(7032), 1, + ACTIONS(7121), 1, anon_sym_LPAREN, - STATE(4614), 2, + STATE(4695), 2, sym_comment, sym_include, - [164383] = 5, + [167234] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(7034), 1, + ACTIONS(7123), 1, sym_identifier, - STATE(4615), 2, + STATE(4696), 2, sym_comment, sym_include, - [164400] = 5, + [167251] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(7036), 1, + ACTIONS(7125), 1, sym_identifier, - STATE(4616), 2, + STATE(4697), 2, sym_comment, sym_include, - [164417] = 5, + [167268] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(7038), 1, + ACTIONS(7127), 1, sym_identifier, - STATE(4617), 2, + STATE(4698), 2, sym_comment, sym_include, - [164434] = 5, + [167285] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(7040), 1, - anon_sym_RPAREN, - STATE(4618), 2, + ACTIONS(7129), 1, + sym__terminator, + STATE(4699), 2, sym_comment, sym_include, - [164451] = 5, - ACTIONS(3), 1, + [167302] = 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(2333), 1, - sym_identifier, - STATE(4619), 2, + ACTIONS(5405), 1, + anon_sym_LPAREN, + STATE(4700), 2, sym_comment, sym_include, - [164468] = 5, - ACTIONS(59), 1, + [167319] = 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(7042), 1, - anon_sym_RBRACE, - STATE(4620), 2, + ACTIONS(7131), 1, + sym_identifier, + STATE(4701), 2, sym_comment, sym_include, - [164485] = 5, + [167336] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(7044), 1, + ACTIONS(7133), 1, sym_identifier, - STATE(4621), 2, + STATE(4702), 2, sym_comment, sym_include, - [164502] = 5, + [167353] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(7046), 1, + ACTIONS(7135), 1, sym_identifier, - STATE(4622), 2, + STATE(4703), 2, sym_comment, sym_include, - [164519] = 5, + [167370] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(7048), 1, + ACTIONS(3180), 1, anon_sym_COLON, - STATE(4623), 2, + STATE(4704), 2, sym_comment, sym_include, - [164536] = 5, + [167387] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5724), 1, - sym__terminator, - STATE(4624), 2, + ACTIONS(7137), 1, + anon_sym_RPAREN, + STATE(4705), 2, sym_comment, sym_include, - [164553] = 5, - ACTIONS(3), 1, + [167404] = 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(7050), 1, - sym_identifier, - STATE(4625), 2, + ACTIONS(7139), 1, + sym__terminator, + STATE(4706), 2, sym_comment, sym_include, - [164570] = 5, + [167421] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(7052), 1, + ACTIONS(7141), 1, anon_sym_COMMA, - STATE(4626), 2, + STATE(4707), 2, sym_comment, sym_include, - [164587] = 5, + [167438] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(7054), 1, + ACTIONS(7143), 1, sym__integer_literal, - STATE(4627), 2, + STATE(4708), 2, sym_comment, sym_include, - [164604] = 5, + [167455] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(7056), 1, + ACTIONS(7145), 1, sym__terminator, - STATE(4628), 2, + STATE(4709), 2, sym_comment, sym_include, - [164621] = 5, - ACTIONS(59), 1, + [167472] = 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(7058), 1, - sym__terminator, - STATE(4629), 2, + ACTIONS(2311), 1, + sym_identifier, + STATE(4710), 2, sym_comment, sym_include, - [164638] = 5, + [167489] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(7060), 1, + ACTIONS(7147), 1, aux_sym_buffer_definition_token2, - STATE(4630), 2, + STATE(4711), 2, sym_comment, sym_include, - [164655] = 5, + [167506] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(7062), 1, + ACTIONS(7149), 1, aux_sym_buffer_definition_token2, - STATE(4631), 2, + STATE(4712), 2, sym_comment, sym_include, - [164672] = 5, + [167523] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(7064), 1, + ACTIONS(7151), 1, anon_sym_COLON, - STATE(4632), 2, + STATE(4713), 2, sym_comment, sym_include, - [164689] = 5, + [167540] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(4555), 1, + ACTIONS(4881), 1, aux_sym_of_token1, - STATE(4633), 2, + STATE(4714), 2, sym_comment, sym_include, - [164706] = 5, + [167557] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(7066), 1, - sym__integer_literal, - STATE(4634), 2, + ACTIONS(3166), 1, + anon_sym_COLON, + STATE(4715), 2, sym_comment, sym_include, - [164723] = 5, + [167574] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(7068), 1, + ACTIONS(7153), 1, anon_sym_RBRACE, - STATE(4635), 2, + STATE(4716), 2, sym_comment, sym_include, - [164740] = 5, + [167591] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(7070), 1, - anon_sym_RBRACE, - STATE(4636), 2, + ACTIONS(197), 1, + sym__terminator, + STATE(4717), 2, sym_comment, sym_include, - [164757] = 5, + [167608] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(7072), 1, + ACTIONS(181), 1, sym__terminator, - STATE(4637), 2, + STATE(4718), 2, sym_comment, sym_include, - [164774] = 5, - ACTIONS(59), 1, + [167625] = 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(7074), 1, - aux_sym_setter_token1, - STATE(4638), 2, + ACTIONS(7155), 1, + sym_identifier, + STATE(4719), 2, sym_comment, sym_include, - [164791] = 5, + [167642] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(7076), 1, + ACTIONS(7157), 1, aux_sym_buffer_definition_token2, - STATE(4639), 2, + STATE(4720), 2, sym_comment, sym_include, - [164808] = 5, + [167659] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(7078), 1, + ACTIONS(7159), 1, aux_sym_buffer_definition_token2, - STATE(4640), 2, + STATE(4721), 2, sym_comment, sym_include, - [164825] = 5, + [167676] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(7080), 1, + ACTIONS(7161), 1, aux_sym_of_token1, - STATE(4641), 2, + STATE(4722), 2, sym_comment, sym_include, - [164842] = 5, + [167693] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(7082), 1, + ACTIONS(7163), 1, sym_identifier, - STATE(4642), 2, + STATE(4723), 2, sym_comment, sym_include, - [164859] = 5, + [167710] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(7084), 1, + ACTIONS(7165), 1, anon_sym_LPAREN, - STATE(4643), 2, + STATE(4724), 2, sym_comment, sym_include, - [164876] = 5, + [167727] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(7086), 1, + ACTIONS(7167), 1, sym_identifier, - STATE(4644), 2, + STATE(4725), 2, sym_comment, sym_include, - [164893] = 5, - ACTIONS(59), 1, + [167744] = 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(7088), 1, - aux_sym__block_terminator_token1, - STATE(4645), 2, + ACTIONS(7169), 1, + sym_identifier, + STATE(4726), 2, sym_comment, sym_include, - [164910] = 5, + [167761] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(7090), 1, + ACTIONS(7171), 1, anon_sym_LPAREN, - STATE(4646), 2, + STATE(4727), 2, sym_comment, sym_include, - [164927] = 5, + [167778] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(7092), 1, + ACTIONS(7173), 1, sym_identifier, - STATE(4647), 2, + STATE(4728), 2, sym_comment, sym_include, - [164944] = 5, + [167795] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(7094), 1, - anon_sym_COLON, - STATE(4648), 2, + ACTIONS(4292), 1, + anon_sym_EQ, + STATE(4729), 2, sym_comment, sym_include, - [164961] = 5, + [167812] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(7096), 1, - sym__terminator, - STATE(4649), 2, + ACTIONS(7175), 1, + anon_sym_RBRACE, + STATE(4730), 2, sym_comment, sym_include, - [164978] = 5, + [167829] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(7098), 1, + ACTIONS(7177), 1, aux_sym_comment_token2, - STATE(4650), 2, + STATE(4731), 2, sym_comment, sym_include, - [164995] = 5, + [167846] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(7100), 1, + ACTIONS(7179), 1, sym__terminator, - STATE(4651), 2, + STATE(4732), 2, sym_comment, sym_include, - [165012] = 5, + [167863] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5434), 1, + ACTIONS(7181), 1, sym__terminator, - STATE(4652), 2, + STATE(4733), 2, sym_comment, sym_include, - [165029] = 5, + [167880] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(7102), 1, + ACTIONS(7183), 1, sym__terminator, - STATE(4653), 2, + STATE(4734), 2, sym_comment, sym_include, - [165046] = 5, + [167897] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(4942), 1, + ACTIONS(5025), 1, aux_sym_on_error_phrase_token2, - STATE(4654), 2, + STATE(4735), 2, sym_comment, sym_include, - [165063] = 5, + [167914] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(7104), 1, + ACTIONS(7185), 1, sym_identifier, - STATE(4655), 2, + STATE(4736), 2, sym_comment, sym_include, - [165080] = 5, + [167931] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(7106), 1, + ACTIONS(7187), 1, sym_identifier, - STATE(4656), 2, + STATE(4737), 2, sym_comment, sym_include, - [165097] = 5, + [167948] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(7108), 1, + ACTIONS(7189), 1, sym_identifier, - STATE(4657), 2, + STATE(4738), 2, sym_comment, sym_include, - [165114] = 5, + [167965] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(7110), 1, + ACTIONS(7191), 1, aux_sym_variable_definition_token5, - STATE(4658), 2, + STATE(4739), 2, sym_comment, sym_include, - [165131] = 5, + [167982] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(7112), 1, - sym__terminator, - STATE(4659), 2, + ACTIONS(7193), 1, + anon_sym_RBRACE, + STATE(4740), 2, sym_comment, sym_include, - [165148] = 5, + [167999] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5430), 1, + ACTIONS(7195), 1, sym__terminator, - STATE(4660), 2, + STATE(4741), 2, sym_comment, sym_include, - [165165] = 5, + [168016] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(7114), 1, + ACTIONS(7197), 1, sym_identifier, - STATE(4661), 2, + STATE(4742), 2, sym_comment, sym_include, - [165182] = 5, + [168033] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(7116), 1, + ACTIONS(7199), 1, sym_identifier, - STATE(4662), 2, + STATE(4743), 2, sym_comment, sym_include, - [165199] = 5, + [168050] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(7118), 1, + ACTIONS(7201), 1, sym_identifier, - STATE(4663), 2, + STATE(4744), 2, sym_comment, sym_include, - [165216] = 5, + [168067] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(7120), 1, + ACTIONS(7203), 1, sym_identifier, - STATE(4664), 2, + STATE(4745), 2, sym_comment, sym_include, - [165233] = 5, + [168084] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(7122), 1, - aux_sym__block_terminator_token1, - STATE(4665), 2, + ACTIONS(7205), 1, + sym__terminator, + STATE(4746), 2, sym_comment, sym_include, - [165250] = 5, + [168101] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(7124), 1, + ACTIONS(7207), 1, anon_sym_LPAREN, - STATE(4666), 2, + STATE(4747), 2, sym_comment, sym_include, - [165267] = 5, + [168118] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(7126), 1, - anon_sym_RPAREN, - STATE(4667), 2, + ACTIONS(7209), 1, + sym__integer_literal, + STATE(4748), 2, sym_comment, sym_include, - [165284] = 5, + [168135] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(7128), 1, + ACTIONS(7211), 1, sym__terminator, - STATE(4668), 2, + STATE(4749), 2, sym_comment, sym_include, - [165301] = 5, + [168152] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(7130), 1, - sym__terminator, - STATE(4669), 2, + ACTIONS(7213), 1, + anon_sym_RPAREN, + STATE(4750), 2, sym_comment, sym_include, - [165318] = 5, + [168169] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(7132), 1, + ACTIONS(7215), 1, sym_identifier, - STATE(4670), 2, + STATE(4751), 2, sym_comment, sym_include, - [165335] = 5, - ACTIONS(3), 1, + [168186] = 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(7134), 1, - aux_sym_comment_token1, - STATE(4671), 2, + ACTIONS(7217), 1, + anon_sym_COLON, + STATE(4752), 2, sym_comment, sym_include, - [165352] = 5, - ACTIONS(59), 1, + [168203] = 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(3072), 1, - anon_sym_COLON, - STATE(4672), 2, + ACTIONS(7219), 1, + aux_sym_comment_token1, + STATE(4753), 2, sym_comment, sym_include, - [165369] = 5, + [168220] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(7136), 1, + ACTIONS(7221), 1, anon_sym_COMMA, - STATE(4673), 2, + STATE(4754), 2, sym_comment, sym_include, - [165386] = 5, + [168237] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(7138), 1, + ACTIONS(7223), 1, anon_sym_RBRACE, - STATE(4674), 2, + STATE(4755), 2, sym_comment, sym_include, - [165403] = 5, + [168254] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(7140), 1, - anon_sym_RPAREN, - STATE(4675), 2, + ACTIONS(7225), 1, + sym__integer_literal, + STATE(4756), 2, sym_comment, sym_include, - [165420] = 5, + [168271] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(7142), 1, - sym__terminator, - STATE(4676), 2, + ACTIONS(7227), 1, + anon_sym_RPAREN, + STATE(4757), 2, sym_comment, sym_include, - [165437] = 5, + [168288] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(7144), 1, - sym__integer_literal, - STATE(4677), 2, + ACTIONS(7229), 1, + anon_sym_RPAREN, + STATE(4758), 2, sym_comment, sym_include, - [165454] = 5, + [168305] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(7146), 1, + ACTIONS(7231), 1, anon_sym_RBRACE, - STATE(4678), 2, + STATE(4759), 2, sym_comment, sym_include, - [165471] = 5, + [168322] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(3898), 1, - anon_sym_COLON, - STATE(4679), 2, + ACTIONS(7233), 1, + aux_sym_output_stream_statement_token1, + STATE(4760), 2, sym_comment, sym_include, - [165488] = 5, + [168339] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(7148), 1, - aux_sym_output_stream_statement_token1, - STATE(4680), 2, + ACTIONS(7235), 1, + anon_sym_RPAREN, + STATE(4761), 2, sym_comment, sym_include, - [165505] = 5, + [168356] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(7150), 1, - sym__terminator, - STATE(4681), 2, + ACTIONS(7237), 1, + aux_sym_input_expression_token2, + STATE(4762), 2, sym_comment, sym_include, - [165522] = 5, + [168373] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(7152), 1, + ACTIONS(7239), 1, sym__terminator, - STATE(4682), 2, + STATE(4763), 2, sym_comment, sym_include, - [165539] = 5, + [168390] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(7154), 1, + ACTIONS(7241), 1, sym_identifier, - STATE(4683), 2, + STATE(4764), 2, sym_comment, sym_include, - [165556] = 5, + [168407] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(7156), 1, + ACTIONS(7243), 1, sym_identifier, - STATE(4684), 2, + STATE(4765), 2, sym_comment, sym_include, - [165573] = 5, + [168424] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(7158), 1, - aux_sym_setter_token1, - STATE(4685), 2, + ACTIONS(7245), 1, + anon_sym_RPAREN, + STATE(4766), 2, sym_comment, sym_include, - [165590] = 5, + [168441] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(7160), 1, + ACTIONS(7247), 1, sym_identifier, - STATE(4686), 2, + STATE(4767), 2, sym_comment, sym_include, - [165607] = 5, + [168458] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(7162), 1, + ACTIONS(7249), 1, sym_identifier, - STATE(4687), 2, + STATE(4768), 2, sym_comment, sym_include, - [165624] = 5, + [168475] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(7164), 1, + ACTIONS(7251), 1, sym_identifier, - STATE(4688), 2, + STATE(4769), 2, sym_comment, sym_include, - [165641] = 5, + [168492] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(7166), 1, - aux_sym__block_terminator_token1, - STATE(4689), 2, + ACTIONS(7253), 1, + sym__terminator, + STATE(4770), 2, sym_comment, sym_include, - [165658] = 5, + [168509] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(7168), 1, + ACTIONS(7255), 1, sym_identifier, - STATE(4690), 2, + STATE(4771), 2, sym_comment, sym_include, - [165675] = 5, + [168526] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(7170), 1, + ACTIONS(7257), 1, sym_identifier, - STATE(4691), 2, + STATE(4772), 2, sym_comment, sym_include, - [165692] = 5, + [168543] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(7172), 1, + ACTIONS(7259), 1, aux_sym_procedure_parameter_definition_token2, - STATE(4692), 2, + STATE(4773), 2, sym_comment, sym_include, - [165709] = 5, + [168560] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(7174), 1, + ACTIONS(7261), 1, sym_identifier, - STATE(4693), 2, + STATE(4774), 2, sym_comment, sym_include, - [165726] = 5, + [168577] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(7176), 1, + ACTIONS(7263), 1, sym_identifier, - STATE(4694), 2, + STATE(4775), 2, sym_comment, sym_include, - [165743] = 5, + [168594] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(7178), 1, + ACTIONS(7265), 1, sym_identifier, - STATE(4695), 2, + STATE(4776), 2, sym_comment, sym_include, - [165760] = 5, + [168611] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(7180), 1, + ACTIONS(7267), 1, sym__terminator, - STATE(4696), 2, + STATE(4777), 2, sym_comment, sym_include, - [165777] = 5, + [168628] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(7182), 1, + ACTIONS(7269), 1, sym_identifier, - STATE(4697), 2, + STATE(4778), 2, sym_comment, sym_include, - [165794] = 5, - ACTIONS(3), 1, + [168645] = 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(7184), 1, - sym_identifier, - STATE(4698), 2, + ACTIONS(5535), 1, + anon_sym_DOT, + STATE(4779), 2, sym_comment, sym_include, - [165811] = 5, + [168662] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(7186), 1, + ACTIONS(7271), 1, sym_identifier, - STATE(4699), 2, + STATE(4780), 2, sym_comment, sym_include, - [165828] = 5, + [168679] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(7188), 1, + ACTIONS(7273), 1, sym_identifier, - STATE(4700), 2, + STATE(4781), 2, sym_comment, sym_include, - [165845] = 5, + [168696] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(7190), 1, + ACTIONS(7275), 1, sym_identifier, - STATE(4701), 2, + STATE(4782), 2, sym_comment, sym_include, - [165862] = 5, + [168713] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(7192), 1, + ACTIONS(7277), 1, sym_identifier, - STATE(4702), 2, + STATE(4783), 2, sym_comment, sym_include, - [165879] = 5, + [168730] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(7194), 1, + ACTIONS(7279), 1, sym__terminator, - STATE(4703), 2, + STATE(4784), 2, sym_comment, sym_include, - [165896] = 5, + [168747] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(5398), 1, + ACTIONS(7281), 1, sym__terminator, - STATE(4704), 2, + STATE(4785), 2, sym_comment, sym_include, - [165913] = 5, + [168764] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(7196), 1, + ACTIONS(7283), 1, anon_sym_LPAREN, - STATE(4705), 2, + STATE(4786), 2, sym_comment, sym_include, - [165930] = 5, + [168781] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(7198), 1, - sym__terminator, - STATE(4706), 2, + ACTIONS(7285), 1, + anon_sym_RBRACE, + STATE(4787), 2, sym_comment, sym_include, - [165947] = 5, + [168798] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(7200), 1, + ACTIONS(7287), 1, sym_identifier, - STATE(4707), 2, + STATE(4788), 2, sym_comment, sym_include, - [165964] = 5, + [168815] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(7202), 1, + ACTIONS(7289), 1, sym_identifier, - STATE(4708), 2, + STATE(4789), 2, sym_comment, sym_include, - [165981] = 5, + [168832] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(7204), 1, + ACTIONS(7291), 1, sym_identifier, - STATE(4709), 2, + STATE(4790), 2, sym_comment, sym_include, - [165998] = 5, + [168849] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(7206), 1, - sym__terminator, - STATE(4710), 2, + ACTIONS(7293), 1, + anon_sym_RBRACE, + STATE(4791), 2, sym_comment, sym_include, - [166015] = 5, + [168866] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(7208), 1, + ACTIONS(7295), 1, sym_identifier, - STATE(4711), 2, + STATE(4792), 2, sym_comment, sym_include, - [166032] = 5, + [168883] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(7210), 1, - aux_sym_setter_token1, - STATE(4712), 2, + ACTIONS(7297), 1, + sym__terminator, + STATE(4793), 2, sym_comment, sym_include, - [166049] = 5, + [168900] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(7212), 1, + ACTIONS(7299), 1, sym_identifier, - STATE(4713), 2, + STATE(4794), 2, sym_comment, sym_include, - [166066] = 5, + [168917] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(7214), 1, + ACTIONS(7301), 1, sym_identifier, - STATE(4714), 2, + STATE(4795), 2, sym_comment, sym_include, - [166083] = 5, + [168934] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(7216), 1, + ACTIONS(7303), 1, sym_identifier, - STATE(4715), 2, + STATE(4796), 2, sym_comment, sym_include, - [166100] = 5, + [168951] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(7218), 1, - aux_sym__block_terminator_token1, - STATE(4716), 2, + ACTIONS(7305), 1, + anon_sym_RPAREN, + STATE(4797), 2, sym_comment, sym_include, - [166117] = 5, + [168968] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(7220), 1, - anon_sym_RPAREN, - STATE(4717), 2, + ACTIONS(7307), 1, + anon_sym_RBRACE, + STATE(4798), 2, sym_comment, sym_include, - [166134] = 5, + [168985] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(7222), 1, - sym__terminator, - STATE(4718), 2, + ACTIONS(7309), 1, + anon_sym_RPAREN, + STATE(4799), 2, sym_comment, sym_include, - [166151] = 4, + [169002] = 4, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, - ACTIONS(7224), 2, + ACTIONS(7311), 2, sym_file_name, anon_sym_LBRACE, - STATE(4719), 2, + STATE(4800), 2, sym_comment, sym_include, - [166166] = 5, + [169017] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(7226), 1, - sym__terminator, - STATE(4720), 2, + ACTIONS(7313), 1, + sym__integer_literal, + STATE(4801), 2, sym_comment, sym_include, - [166183] = 5, + [169034] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(7228), 1, + ACTIONS(7315), 1, sym_identifier, - STATE(4721), 2, + STATE(4802), 2, sym_comment, sym_include, - [166200] = 5, + [169051] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(7230), 1, + ACTIONS(7317), 1, sym_identifier, - STATE(4722), 2, + STATE(4803), 2, sym_comment, sym_include, - [166217] = 5, + [169068] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(7232), 1, + ACTIONS(7319), 1, sym_identifier, - STATE(4723), 2, + STATE(4804), 2, sym_comment, sym_include, - [166234] = 5, + [169085] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(7234), 1, + ACTIONS(7321), 1, anon_sym_SLASH, - STATE(4724), 2, + STATE(4805), 2, sym_comment, sym_include, - [166251] = 5, + [169102] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(7236), 1, - sym__integer_literal, - STATE(4725), 2, + ACTIONS(7323), 1, + anon_sym_RBRACE, + STATE(4806), 2, sym_comment, sym_include, - [166268] = 5, + [169119] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(7238), 1, - sym__terminator, - STATE(4726), 2, + ACTIONS(7325), 1, + anon_sym_RBRACE, + STATE(4807), 2, sym_comment, sym_include, - [166285] = 5, + [169136] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(7240), 1, + ACTIONS(7327), 1, sym_identifier, - STATE(4727), 2, + STATE(4808), 2, sym_comment, sym_include, - [166302] = 5, + [169153] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(7242), 1, + ACTIONS(7329), 1, sym_identifier, - STATE(4728), 2, + STATE(4809), 2, sym_comment, sym_include, - [166319] = 5, + [169170] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(7244), 1, + ACTIONS(7331), 1, sym_identifier, - STATE(4729), 2, + STATE(4810), 2, sym_comment, sym_include, - [166336] = 5, - ACTIONS(59), 1, + [169187] = 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(7246), 1, - sym__terminator, - STATE(4730), 2, + ACTIONS(7333), 1, + sym_identifier, + STATE(4811), 2, sym_comment, sym_include, - [166353] = 5, + [169204] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(7248), 1, + ACTIONS(7335), 1, sym__terminator, - STATE(4731), 2, + STATE(4812), 2, sym_comment, sym_include, - [166370] = 5, + [169221] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(7250), 1, + ACTIONS(7337), 1, sym__terminator, - STATE(4732), 2, + STATE(4813), 2, sym_comment, sym_include, - [166387] = 5, + [169238] = 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(4415), 1, anon_sym_EQ, - STATE(4733), 2, + STATE(4814), 2, sym_comment, sym_include, - [166404] = 5, + [169255] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(7252), 1, + ACTIONS(7339), 1, aux_sym_procedure_parameter_definition_token2, - STATE(4734), 2, + STATE(4815), 2, sym_comment, sym_include, - [166421] = 5, + [169272] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(7254), 1, + ACTIONS(7341), 1, ts_builtin_sym_end, - STATE(4735), 2, + STATE(4816), 2, sym_comment, sym_include, - [166438] = 5, + [169289] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(7256), 1, + ACTIONS(7343), 1, aux_sym_variable_definition_token5, - STATE(4736), 2, + STATE(4817), 2, sym_comment, sym_include, - [166455] = 5, + [169306] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(7258), 1, - anon_sym_RBRACE, - STATE(4737), 2, + ACTIONS(7345), 1, + anon_sym_RPAREN, + STATE(4818), 2, sym_comment, sym_include, - [166472] = 5, + [169323] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(7260), 1, + ACTIONS(7347), 1, anon_sym_COLON, - STATE(4738), 2, + STATE(4819), 2, sym_comment, sym_include, - [166489] = 5, + [169340] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(7262), 1, + ACTIONS(7349), 1, sym_identifier, - STATE(4739), 2, + STATE(4820), 2, sym_comment, sym_include, - [166506] = 5, + [169357] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(7264), 1, + ACTIONS(7351), 1, sym_identifier, - STATE(4740), 2, + STATE(4821), 2, sym_comment, sym_include, - [166523] = 5, + [169374] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(7266), 1, - aux_sym_setter_token1, - STATE(4741), 2, + ACTIONS(7353), 1, + anon_sym_RBRACE, + STATE(4822), 2, sym_comment, sym_include, - [166540] = 5, + [169391] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(7268), 1, + ACTIONS(7355), 1, anon_sym_RPAREN, - STATE(4742), 2, + STATE(4823), 2, sym_comment, sym_include, - [166557] = 5, + [169408] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(7270), 1, + ACTIONS(7357), 1, sym_identifier, - STATE(4743), 2, + STATE(4824), 2, sym_comment, sym_include, - [166574] = 5, + [169425] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, ACTIONS(7), 1, anon_sym_LBRACE, - ACTIONS(7272), 1, + ACTIONS(7359), 1, sym_identifier, - STATE(4744), 2, + STATE(4825), 2, sym_comment, sym_include, - [166591] = 5, + [169442] = 5, ACTIONS(59), 1, anon_sym_SLASH_SLASH, ACTIONS(61), 1, anon_sym_SLASH_STAR, ACTIONS(65), 1, anon_sym_LBRACE, - ACTIONS(7274), 1, - sym__terminator, - STATE(4745), 2, + ACTIONS(7361), 1, + sym__integer_literal, + STATE(4826), 2, sym_comment, sym_include, - [166608] = 1, - ACTIONS(7276), 1, + [169459] = 1, + ACTIONS(7363), 1, ts_builtin_sym_end, - [166612] = 1, - ACTIONS(7278), 1, + [169463] = 1, + ACTIONS(7365), 1, ts_builtin_sym_end, - [166616] = 1, - ACTIONS(7280), 1, + [169467] = 1, + ACTIONS(7367), 1, ts_builtin_sym_end, - [166620] = 1, - ACTIONS(7282), 1, + [169471] = 1, + ACTIONS(7369), 1, ts_builtin_sym_end, - [166624] = 1, - ACTIONS(7284), 1, + [169475] = 1, + ACTIONS(7371), 1, ts_builtin_sym_end, }; static const uint32_t ts_small_parse_table_map[] = { - [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)] = 3944, - [SMALL_STATE(331)] = 4059, - [SMALL_STATE(332)] = 4130, - [SMALL_STATE(333)] = 4245, - [SMALL_STATE(334)] = 4362, - [SMALL_STATE(335)] = 4479, - [SMALL_STATE(336)] = 4596, - [SMALL_STATE(337)] = 4711, - [SMALL_STATE(338)] = 4826, - [SMALL_STATE(339)] = 4943, - [SMALL_STATE(340)] = 5060, - [SMALL_STATE(341)] = 5175, - [SMALL_STATE(342)] = 5289, - [SMALL_STATE(343)] = 5403, - [SMALL_STATE(344)] = 5517, - [SMALL_STATE(345)] = 5631, - [SMALL_STATE(346)] = 5745, - [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)] = 25316, - [SMALL_STATE(524)] = 25394, - [SMALL_STATE(525)] = 25472, - [SMALL_STATE(526)] = 25546, - [SMALL_STATE(527)] = 25618, - [SMALL_STATE(528)] = 25694, - [SMALL_STATE(529)] = 25768, - [SMALL_STATE(530)] = 25846, - [SMALL_STATE(531)] = 25920, - [SMALL_STATE(532)] = 25998, - [SMALL_STATE(533)] = 26076, - [SMALL_STATE(534)] = 26154, - [SMALL_STATE(535)] = 26232, - [SMALL_STATE(536)] = 26298, - [SMALL_STATE(537)] = 26364, - [SMALL_STATE(538)] = 26428, - [SMALL_STATE(539)] = 26492, - [SMALL_STATE(540)] = 26558, - [SMALL_STATE(541)] = 26624, - [SMALL_STATE(542)] = 26685, - [SMALL_STATE(543)] = 26776, - [SMALL_STATE(544)] = 26867, - [SMALL_STATE(545)] = 26930, - [SMALL_STATE(546)] = 27021, - [SMALL_STATE(547)] = 27084, - [SMALL_STATE(548)] = 27175, - [SMALL_STATE(549)] = 27266, - [SMALL_STATE(550)] = 27329, - [SMALL_STATE(551)] = 27420, - [SMALL_STATE(552)] = 27511, - [SMALL_STATE(553)] = 27574, - [SMALL_STATE(554)] = 27637, - [SMALL_STATE(555)] = 27728, - [SMALL_STATE(556)] = 27819, - [SMALL_STATE(557)] = 27880, - [SMALL_STATE(558)] = 27971, - [SMALL_STATE(559)] = 28031, - [SMALL_STATE(560)] = 28091, - [SMALL_STATE(561)] = 28151, - [SMALL_STATE(562)] = 28211, - [SMALL_STATE(563)] = 28271, - [SMALL_STATE(564)] = 28331, - [SMALL_STATE(565)] = 28391, - [SMALL_STATE(566)] = 28451, - [SMALL_STATE(567)] = 28511, - [SMALL_STATE(568)] = 28571, - [SMALL_STATE(569)] = 28631, - [SMALL_STATE(570)] = 28693, - [SMALL_STATE(571)] = 28753, - [SMALL_STATE(572)] = 28813, - [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)] = 29737, - [SMALL_STATE(588)] = 29797, - [SMALL_STATE(589)] = 29857, - [SMALL_STATE(590)] = 29917, - [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)] = 30742, - [SMALL_STATE(601)] = 30834, - [SMALL_STATE(602)] = 30926, - [SMALL_STATE(603)] = 31018, - [SMALL_STATE(604)] = 31110, - [SMALL_STATE(605)] = 31178, - [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)] = 32092, - [SMALL_STATE(617)] = 32157, - [SMALL_STATE(618)] = 32232, - [SMALL_STATE(619)] = 32303, - [SMALL_STATE(620)] = 32380, - [SMALL_STATE(621)] = 32457, - [SMALL_STATE(622)] = 32515, - [SMALL_STATE(623)] = 32575, - [SMALL_STATE(624)] = 32640, - [SMALL_STATE(625)] = 32723, - [SMALL_STATE(626)] = 32778, - [SMALL_STATE(627)] = 32861, - [SMALL_STATE(628)] = 32920, - [SMALL_STATE(629)] = 33003, - [SMALL_STATE(630)] = 33086, - [SMALL_STATE(631)] = 33169, - [SMALL_STATE(632)] = 33228, - [SMALL_STATE(633)] = 33311, - [SMALL_STATE(634)] = 33394, - [SMALL_STATE(635)] = 33477, - [SMALL_STATE(636)] = 33534, - [SMALL_STATE(637)] = 33617, - [SMALL_STATE(638)] = 33682, - [SMALL_STATE(639)] = 33741, - [SMALL_STATE(640)] = 33824, - [SMALL_STATE(641)] = 33896, - [SMALL_STATE(642)] = 33958, - [SMALL_STATE(643)] = 34014, - [SMALL_STATE(644)] = 34086, - [SMALL_STATE(645)] = 34142, - [SMALL_STATE(646)] = 34214, - [SMALL_STATE(647)] = 34270, - [SMALL_STATE(648)] = 34340, - [SMALL_STATE(649)] = 34396, - [SMALL_STATE(650)] = 34452, - [SMALL_STATE(651)] = 34524, - [SMALL_STATE(652)] = 34596, - [SMALL_STATE(653)] = 34668, - [SMALL_STATE(654)] = 34736, - [SMALL_STATE(655)] = 34802, - [SMALL_STATE(656)] = 34874, - [SMALL_STATE(657)] = 34946, - [SMALL_STATE(658)] = 35018, - [SMALL_STATE(659)] = 35092, - [SMALL_STATE(660)] = 35148, - [SMALL_STATE(661)] = 35218, - [SMALL_STATE(662)] = 35290, - [SMALL_STATE(663)] = 35362, - [SMALL_STATE(664)] = 35428, - [SMALL_STATE(665)] = 35490, - [SMALL_STATE(666)] = 35558, - [SMALL_STATE(667)] = 35612, - [SMALL_STATE(668)] = 35684, - [SMALL_STATE(669)] = 35740, - [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)] = 36266, - [SMALL_STATE(678)] = 36319, - [SMALL_STATE(679)] = 36372, - [SMALL_STATE(680)] = 36457, - [SMALL_STATE(681)] = 36542, - [SMALL_STATE(682)] = 36595, - [SMALL_STATE(683)] = 36680, - [SMALL_STATE(684)] = 36733, - [SMALL_STATE(685)] = 36818, - [SMALL_STATE(686)] = 36871, - [SMALL_STATE(687)] = 36956, - [SMALL_STATE(688)] = 37009, - [SMALL_STATE(689)] = 37066, - [SMALL_STATE(690)] = 37119, - [SMALL_STATE(691)] = 37204, - [SMALL_STATE(692)] = 37257, - [SMALL_STATE(693)] = 37328, - [SMALL_STATE(694)] = 37413, - [SMALL_STATE(695)] = 37466, - [SMALL_STATE(696)] = 37519, - [SMALL_STATE(697)] = 37572, - [SMALL_STATE(698)] = 37625, - [SMALL_STATE(699)] = 37680, - [SMALL_STATE(700)] = 37733, - [SMALL_STATE(701)] = 37786, - [SMALL_STATE(702)] = 37839, - [SMALL_STATE(703)] = 37910, - [SMALL_STATE(704)] = 37995, - [SMALL_STATE(705)] = 38048, - [SMALL_STATE(706)] = 38133, - [SMALL_STATE(707)] = 38186, - [SMALL_STATE(708)] = 38257, - [SMALL_STATE(709)] = 38342, - [SMALL_STATE(710)] = 38395, - [SMALL_STATE(711)] = 38448, - [SMALL_STATE(712)] = 38501, - [SMALL_STATE(713)] = 38586, - [SMALL_STATE(714)] = 38639, - [SMALL_STATE(715)] = 38692, - [SMALL_STATE(716)] = 38745, - [SMALL_STATE(717)] = 38798, - [SMALL_STATE(718)] = 38883, - [SMALL_STATE(719)] = 38968, - [SMALL_STATE(720)] = 39021, - [SMALL_STATE(721)] = 39074, - [SMALL_STATE(722)] = 39126, - [SMALL_STATE(723)] = 39182, - [SMALL_STATE(724)] = 39238, - [SMALL_STATE(725)] = 39290, - [SMALL_STATE(726)] = 39360, - [SMALL_STATE(727)] = 39410, - [SMALL_STATE(728)] = 39464, - [SMALL_STATE(729)] = 39520, - [SMALL_STATE(730)] = 39573, - [SMALL_STATE(731)] = 39622, - [SMALL_STATE(732)] = 39675, - [SMALL_STATE(733)] = 39728, - [SMALL_STATE(734)] = 39779, - [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)] = 40256, - [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)] = 40606, - [SMALL_STATE(750)] = 40656, - [SMALL_STATE(751)] = 40706, - [SMALL_STATE(752)] = 40772, - [SMALL_STATE(753)] = 40822, - [SMALL_STATE(754)] = 40872, - [SMALL_STATE(755)] = 40924, - [SMALL_STATE(756)] = 40974, - [SMALL_STATE(757)] = 41026, - [SMALL_STATE(758)] = 41076, - [SMALL_STATE(759)] = 41126, - [SMALL_STATE(760)] = 41176, - [SMALL_STATE(761)] = 41226, - [SMALL_STATE(762)] = 41276, - [SMALL_STATE(763)] = 41326, - [SMALL_STATE(764)] = 41376, - [SMALL_STATE(765)] = 41426, - [SMALL_STATE(766)] = 41476, - [SMALL_STATE(767)] = 41526, - [SMALL_STATE(768)] = 41576, - [SMALL_STATE(769)] = 41626, - [SMALL_STATE(770)] = 41676, - [SMALL_STATE(771)] = 41726, - [SMALL_STATE(772)] = 41776, - [SMALL_STATE(773)] = 41826, - [SMALL_STATE(774)] = 41885, - [SMALL_STATE(775)] = 41944, - [SMALL_STATE(776)] = 42013, - [SMALL_STATE(777)] = 42075, - [SMALL_STATE(778)] = 42131, - [SMALL_STATE(779)] = 42187, - [SMALL_STATE(780)] = 42241, - [SMALL_STATE(781)] = 42303, - [SMALL_STATE(782)] = 42353, - [SMALL_STATE(783)] = 42409, - [SMALL_STATE(784)] = 42463, - [SMALL_STATE(785)] = 42529, - [SMALL_STATE(786)] = 42581, - [SMALL_STATE(787)] = 42641, - [SMALL_STATE(788)] = 42725, - [SMALL_STATE(789)] = 42787, - [SMALL_STATE(790)] = 42849, - [SMALL_STATE(791)] = 42899, - [SMALL_STATE(792)] = 42951, - [SMALL_STATE(793)] = 43013, - [SMALL_STATE(794)] = 43075, - [SMALL_STATE(795)] = 43127, - [SMALL_STATE(796)] = 43189, - [SMALL_STATE(797)] = 43251, - [SMALL_STATE(798)] = 43309, - [SMALL_STATE(799)] = 43368, - [SMALL_STATE(800)] = 43433, - [SMALL_STATE(801)] = 43492, - [SMALL_STATE(802)] = 43539, - [SMALL_STATE(803)] = 43596, - [SMALL_STATE(804)] = 43667, - [SMALL_STATE(805)] = 43738, - [SMALL_STATE(806)] = 43787, - [SMALL_STATE(807)] = 43840, - [SMALL_STATE(808)] = 43887, - [SMALL_STATE(809)] = 43958, - [SMALL_STATE(810)] = 44017, - [SMALL_STATE(811)] = 44088, - [SMALL_STATE(812)] = 44147, - [SMALL_STATE(813)] = 44218, - [SMALL_STATE(814)] = 44273, - [SMALL_STATE(815)] = 44330, - [SMALL_STATE(816)] = 44381, - [SMALL_STATE(817)] = 44440, - [SMALL_STATE(818)] = 44497, - [SMALL_STATE(819)] = 44556, - [SMALL_STATE(820)] = 44615, - [SMALL_STATE(821)] = 44674, - [SMALL_STATE(822)] = 44734, - [SMALL_STATE(823)] = 44784, - [SMALL_STATE(824)] = 44830, - [SMALL_STATE(825)] = 44890, - [SMALL_STATE(826)] = 44950, - [SMALL_STATE(827)] = 45010, - [SMALL_STATE(828)] = 45060, - [SMALL_STATE(829)] = 45106, - [SMALL_STATE(830)] = 45164, - [SMALL_STATE(831)] = 45224, - [SMALL_STATE(832)] = 45284, - [SMALL_STATE(833)] = 45340, - [SMALL_STATE(834)] = 45394, - [SMALL_STATE(835)] = 45452, - [SMALL_STATE(836)] = 45510, - [SMALL_STATE(837)] = 45558, - [SMALL_STATE(838)] = 45618, - [SMALL_STATE(839)] = 45666, - [SMALL_STATE(840)] = 45730, - [SMALL_STATE(841)] = 45790, - [SMALL_STATE(842)] = 45848, - [SMALL_STATE(843)] = 45898, - [SMALL_STATE(844)] = 45943, - [SMALL_STATE(845)] = 45990, - [SMALL_STATE(846)] = 46033, - [SMALL_STATE(847)] = 46076, - [SMALL_STATE(848)] = 46119, - [SMALL_STATE(849)] = 46162, - [SMALL_STATE(850)] = 46205, - [SMALL_STATE(851)] = 46248, - [SMALL_STATE(852)] = 46291, - [SMALL_STATE(853)] = 46354, - [SMALL_STATE(854)] = 46397, - [SMALL_STATE(855)] = 46446, - [SMALL_STATE(856)] = 46509, - [SMALL_STATE(857)] = 46552, - [SMALL_STATE(858)] = 46595, - [SMALL_STATE(859)] = 46638, - [SMALL_STATE(860)] = 46681, - [SMALL_STATE(861)] = 46744, - [SMALL_STATE(862)] = 46787, - [SMALL_STATE(863)] = 46850, - [SMALL_STATE(864)] = 46893, - [SMALL_STATE(865)] = 46936, - [SMALL_STATE(866)] = 46979, - [SMALL_STATE(867)] = 47024, - [SMALL_STATE(868)] = 47067, - [SMALL_STATE(869)] = 47112, - [SMALL_STATE(870)] = 47155, - [SMALL_STATE(871)] = 47198, - [SMALL_STATE(872)] = 47243, - [SMALL_STATE(873)] = 47286, - [SMALL_STATE(874)] = 47365, - [SMALL_STATE(875)] = 47412, - [SMALL_STATE(876)] = 47455, - [SMALL_STATE(877)] = 47502, - [SMALL_STATE(878)] = 47545, - [SMALL_STATE(879)] = 47588, - [SMALL_STATE(880)] = 47631, - [SMALL_STATE(881)] = 47674, - [SMALL_STATE(882)] = 47719, - [SMALL_STATE(883)] = 47764, - [SMALL_STATE(884)] = 47807, - [SMALL_STATE(885)] = 47850, - [SMALL_STATE(886)] = 47893, - [SMALL_STATE(887)] = 47936, - [SMALL_STATE(888)] = 47979, - [SMALL_STATE(889)] = 48024, - [SMALL_STATE(890)] = 48067, - [SMALL_STATE(891)] = 48110, - [SMALL_STATE(892)] = 48155, - [SMALL_STATE(893)] = 48200, - [SMALL_STATE(894)] = 48243, - [SMALL_STATE(895)] = 48286, - [SMALL_STATE(896)] = 48329, - [SMALL_STATE(897)] = 48376, - [SMALL_STATE(898)] = 48419, - [SMALL_STATE(899)] = 48466, - [SMALL_STATE(900)] = 48509, - [SMALL_STATE(901)] = 48554, - [SMALL_STATE(902)] = 48599, - [SMALL_STATE(903)] = 48644, - [SMALL_STATE(904)] = 48687, - [SMALL_STATE(905)] = 48732, - [SMALL_STATE(906)] = 48775, - [SMALL_STATE(907)] = 48820, - [SMALL_STATE(908)] = 48863, - [SMALL_STATE(909)] = 48906, - [SMALL_STATE(910)] = 48949, - [SMALL_STATE(911)] = 48992, - [SMALL_STATE(912)] = 49035, - [SMALL_STATE(913)] = 49080, - [SMALL_STATE(914)] = 49125, - [SMALL_STATE(915)] = 49170, - [SMALL_STATE(916)] = 49215, - [SMALL_STATE(917)] = 49258, - [SMALL_STATE(918)] = 49301, - [SMALL_STATE(919)] = 49344, - [SMALL_STATE(920)] = 49387, - [SMALL_STATE(921)] = 49430, - [SMALL_STATE(922)] = 49477, - [SMALL_STATE(923)] = 49520, - [SMALL_STATE(924)] = 49563, - [SMALL_STATE(925)] = 49606, - [SMALL_STATE(926)] = 49649, - [SMALL_STATE(927)] = 49694, - [SMALL_STATE(928)] = 49739, - [SMALL_STATE(929)] = 49784, - [SMALL_STATE(930)] = 49827, - [SMALL_STATE(931)] = 49872, - [SMALL_STATE(932)] = 49917, - [SMALL_STATE(933)] = 49962, - [SMALL_STATE(934)] = 50007, - [SMALL_STATE(935)] = 50052, - [SMALL_STATE(936)] = 50097, - [SMALL_STATE(937)] = 50140, - [SMALL_STATE(938)] = 50185, - [SMALL_STATE(939)] = 50230, - [SMALL_STATE(940)] = 50273, - [SMALL_STATE(941)] = 50318, - [SMALL_STATE(942)] = 50361, - [SMALL_STATE(943)] = 50406, - [SMALL_STATE(944)] = 50449, - [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)] = 50756, - [SMALL_STATE(952)] = 50801, - [SMALL_STATE(953)] = 50844, - [SMALL_STATE(954)] = 50887, - [SMALL_STATE(955)] = 50932, - [SMALL_STATE(956)] = 50977, - [SMALL_STATE(957)] = 51022, - [SMALL_STATE(958)] = 51067, - [SMALL_STATE(959)] = 51112, - [SMALL_STATE(960)] = 51157, - [SMALL_STATE(961)] = 51202, - [SMALL_STATE(962)] = 51247, - [SMALL_STATE(963)] = 51292, - [SMALL_STATE(964)] = 51335, - [SMALL_STATE(965)] = 51378, - [SMALL_STATE(966)] = 51421, - [SMALL_STATE(967)] = 51468, - [SMALL_STATE(968)] = 51511, - [SMALL_STATE(969)] = 51556, - [SMALL_STATE(970)] = 51599, - [SMALL_STATE(971)] = 51644, - [SMALL_STATE(972)] = 51689, - [SMALL_STATE(973)] = 51734, - [SMALL_STATE(974)] = 51777, - [SMALL_STATE(975)] = 51820, - [SMALL_STATE(976)] = 51863, - [SMALL_STATE(977)] = 51908, - [SMALL_STATE(978)] = 51951, - [SMALL_STATE(979)] = 51994, - [SMALL_STATE(980)] = 52037, - [SMALL_STATE(981)] = 52080, - [SMALL_STATE(982)] = 52123, - [SMALL_STATE(983)] = 52168, - [SMALL_STATE(984)] = 52211, - [SMALL_STATE(985)] = 52254, - [SMALL_STATE(986)] = 52297, - [SMALL_STATE(987)] = 52342, - [SMALL_STATE(988)] = 52385, - [SMALL_STATE(989)] = 52430, - [SMALL_STATE(990)] = 52473, - [SMALL_STATE(991)] = 52518, - [SMALL_STATE(992)] = 52563, - [SMALL_STATE(993)] = 52608, - [SMALL_STATE(994)] = 52653, - [SMALL_STATE(995)] = 52698, - [SMALL_STATE(996)] = 52743, - [SMALL_STATE(997)] = 52788, - [SMALL_STATE(998)] = 52833, - [SMALL_STATE(999)] = 52878, - [SMALL_STATE(1000)] = 52925, - [SMALL_STATE(1001)] = 52968, - [SMALL_STATE(1002)] = 53011, - [SMALL_STATE(1003)] = 53054, - [SMALL_STATE(1004)] = 53099, - [SMALL_STATE(1005)] = 53144, - [SMALL_STATE(1006)] = 53189, - [SMALL_STATE(1007)] = 53234, - [SMALL_STATE(1008)] = 53279, - [SMALL_STATE(1009)] = 53322, - [SMALL_STATE(1010)] = 53365, - [SMALL_STATE(1011)] = 53410, - [SMALL_STATE(1012)] = 53453, - [SMALL_STATE(1013)] = 53496, - [SMALL_STATE(1014)] = 53541, - [SMALL_STATE(1015)] = 53586, - [SMALL_STATE(1016)] = 53629, - [SMALL_STATE(1017)] = 53672, - [SMALL_STATE(1018)] = 53715, - [SMALL_STATE(1019)] = 53760, - [SMALL_STATE(1020)] = 53803, - [SMALL_STATE(1021)] = 53846, - [SMALL_STATE(1022)] = 53889, - [SMALL_STATE(1023)] = 53932, - [SMALL_STATE(1024)] = 53975, - [SMALL_STATE(1025)] = 54018, - [SMALL_STATE(1026)] = 54061, - [SMALL_STATE(1027)] = 54106, - [SMALL_STATE(1028)] = 54149, - [SMALL_STATE(1029)] = 54192, - [SMALL_STATE(1030)] = 54237, - [SMALL_STATE(1031)] = 54280, - [SMALL_STATE(1032)] = 54323, - [SMALL_STATE(1033)] = 54368, - [SMALL_STATE(1034)] = 54413, - [SMALL_STATE(1035)] = 54458, - [SMALL_STATE(1036)] = 54503, - [SMALL_STATE(1037)] = 54546, - [SMALL_STATE(1038)] = 54589, - [SMALL_STATE(1039)] = 54632, - [SMALL_STATE(1040)] = 54677, - [SMALL_STATE(1041)] = 54722, - [SMALL_STATE(1042)] = 54769, - [SMALL_STATE(1043)] = 54812, - [SMALL_STATE(1044)] = 54855, - [SMALL_STATE(1045)] = 54900, - [SMALL_STATE(1046)] = 54945, - [SMALL_STATE(1047)] = 54988, - [SMALL_STATE(1048)] = 55033, - [SMALL_STATE(1049)] = 55076, - [SMALL_STATE(1050)] = 55119, - [SMALL_STATE(1051)] = 55162, - [SMALL_STATE(1052)] = 55205, - [SMALL_STATE(1053)] = 55250, - [SMALL_STATE(1054)] = 55293, - [SMALL_STATE(1055)] = 55336, - [SMALL_STATE(1056)] = 55381, - [SMALL_STATE(1057)] = 55426, - [SMALL_STATE(1058)] = 55471, - [SMALL_STATE(1059)] = 55516, - [SMALL_STATE(1060)] = 55561, - [SMALL_STATE(1061)] = 55606, - [SMALL_STATE(1062)] = 55649, - [SMALL_STATE(1063)] = 55694, - [SMALL_STATE(1064)] = 55739, - [SMALL_STATE(1065)] = 55782, - [SMALL_STATE(1066)] = 55827, - [SMALL_STATE(1067)] = 55872, - [SMALL_STATE(1068)] = 55917, - [SMALL_STATE(1069)] = 55962, - [SMALL_STATE(1070)] = 56007, - [SMALL_STATE(1071)] = 56054, - [SMALL_STATE(1072)] = 56099, - [SMALL_STATE(1073)] = 56144, - [SMALL_STATE(1074)] = 56189, - [SMALL_STATE(1075)] = 56234, - [SMALL_STATE(1076)] = 56277, - [SMALL_STATE(1077)] = 56320, - [SMALL_STATE(1078)] = 56363, - [SMALL_STATE(1079)] = 56406, - [SMALL_STATE(1080)] = 56449, - [SMALL_STATE(1081)] = 56492, - [SMALL_STATE(1082)] = 56537, - [SMALL_STATE(1083)] = 56582, - [SMALL_STATE(1084)] = 56625, - [SMALL_STATE(1085)] = 56668, - [SMALL_STATE(1086)] = 56711, - [SMALL_STATE(1087)] = 56756, - [SMALL_STATE(1088)] = 56799, - [SMALL_STATE(1089)] = 56844, - [SMALL_STATE(1090)] = 56889, - [SMALL_STATE(1091)] = 56934, - [SMALL_STATE(1092)] = 56979, - [SMALL_STATE(1093)] = 57024, - [SMALL_STATE(1094)] = 57069, - [SMALL_STATE(1095)] = 57114, - [SMALL_STATE(1096)] = 57159, - [SMALL_STATE(1097)] = 57204, - [SMALL_STATE(1098)] = 57247, - [SMALL_STATE(1099)] = 57290, - [SMALL_STATE(1100)] = 57335, - [SMALL_STATE(1101)] = 57380, - [SMALL_STATE(1102)] = 57425, - [SMALL_STATE(1103)] = 57470, - [SMALL_STATE(1104)] = 57515, - [SMALL_STATE(1105)] = 57560, - [SMALL_STATE(1106)] = 57605, - [SMALL_STATE(1107)] = 57650, - [SMALL_STATE(1108)] = 57695, - [SMALL_STATE(1109)] = 57740, - [SMALL_STATE(1110)] = 57785, - [SMALL_STATE(1111)] = 57830, - [SMALL_STATE(1112)] = 57875, - [SMALL_STATE(1113)] = 57918, - [SMALL_STATE(1114)] = 57961, - [SMALL_STATE(1115)] = 58004, - [SMALL_STATE(1116)] = 58047, - [SMALL_STATE(1117)] = 58090, - [SMALL_STATE(1118)] = 58135, - [SMALL_STATE(1119)] = 58178, - [SMALL_STATE(1120)] = 58223, - [SMALL_STATE(1121)] = 58268, - [SMALL_STATE(1122)] = 58313, - [SMALL_STATE(1123)] = 58358, - [SMALL_STATE(1124)] = 58403, - [SMALL_STATE(1125)] = 58448, - [SMALL_STATE(1126)] = 58493, - [SMALL_STATE(1127)] = 58538, - [SMALL_STATE(1128)] = 58583, - [SMALL_STATE(1129)] = 58630, - [SMALL_STATE(1130)] = 58675, - [SMALL_STATE(1131)] = 58720, - [SMALL_STATE(1132)] = 58765, - [SMALL_STATE(1133)] = 58808, - [SMALL_STATE(1134)] = 58852, - [SMALL_STATE(1135)] = 58896, - [SMALL_STATE(1136)] = 58938, - [SMALL_STATE(1137)] = 58982, - [SMALL_STATE(1138)] = 59024, - [SMALL_STATE(1139)] = 59068, - [SMALL_STATE(1140)] = 59110, - [SMALL_STATE(1141)] = 59152, - [SMALL_STATE(1142)] = 59196, - [SMALL_STATE(1143)] = 59238, - [SMALL_STATE(1144)] = 59280, - [SMALL_STATE(1145)] = 59322, - [SMALL_STATE(1146)] = 59364, - [SMALL_STATE(1147)] = 59408, - [SMALL_STATE(1148)] = 59452, - [SMALL_STATE(1149)] = 59496, - [SMALL_STATE(1150)] = 59540, - [SMALL_STATE(1151)] = 59584, - [SMALL_STATE(1152)] = 59626, - [SMALL_STATE(1153)] = 59670, - [SMALL_STATE(1154)] = 59714, - [SMALL_STATE(1155)] = 59758, - [SMALL_STATE(1156)] = 59800, - [SMALL_STATE(1157)] = 59842, - [SMALL_STATE(1158)] = 59884, - [SMALL_STATE(1159)] = 59928, - [SMALL_STATE(1160)] = 59970, - [SMALL_STATE(1161)] = 60012, - [SMALL_STATE(1162)] = 60054, - [SMALL_STATE(1163)] = 60096, - [SMALL_STATE(1164)] = 60140, - [SMALL_STATE(1165)] = 60184, - [SMALL_STATE(1166)] = 60226, - [SMALL_STATE(1167)] = 60268, - [SMALL_STATE(1168)] = 60318, - [SMALL_STATE(1169)] = 60380, - [SMALL_STATE(1170)] = 60424, - [SMALL_STATE(1171)] = 60468, - [SMALL_STATE(1172)] = 60552, - [SMALL_STATE(1173)] = 60606, - [SMALL_STATE(1174)] = 60668, - [SMALL_STATE(1175)] = 60752, - [SMALL_STATE(1176)] = 60794, - [SMALL_STATE(1177)] = 60838, - [SMALL_STATE(1178)] = 60882, - [SMALL_STATE(1179)] = 60926, - [SMALL_STATE(1180)] = 60974, - [SMALL_STATE(1181)] = 61018, - [SMALL_STATE(1182)] = 61062, - [SMALL_STATE(1183)] = 61106, - [SMALL_STATE(1184)] = 61148, - [SMALL_STATE(1185)] = 61192, - [SMALL_STATE(1186)] = 61234, - [SMALL_STATE(1187)] = 61276, - [SMALL_STATE(1188)] = 61320, - [SMALL_STATE(1189)] = 61364, - [SMALL_STATE(1190)] = 61408, - [SMALL_STATE(1191)] = 61452, - [SMALL_STATE(1192)] = 61496, - [SMALL_STATE(1193)] = 61542, - [SMALL_STATE(1194)] = 61584, - [SMALL_STATE(1195)] = 61628, - [SMALL_STATE(1196)] = 61672, - [SMALL_STATE(1197)] = 61714, - [SMALL_STATE(1198)] = 61758, - [SMALL_STATE(1199)] = 61802, - [SMALL_STATE(1200)] = 61846, - [SMALL_STATE(1201)] = 61888, - [SMALL_STATE(1202)] = 61932, - [SMALL_STATE(1203)] = 61976, - [SMALL_STATE(1204)] = 62018, - [SMALL_STATE(1205)] = 62060, - [SMALL_STATE(1206)] = 62102, - [SMALL_STATE(1207)] = 62186, - [SMALL_STATE(1208)] = 62228, - [SMALL_STATE(1209)] = 62272, - [SMALL_STATE(1210)] = 62316, - [SMALL_STATE(1211)] = 62360, - [SMALL_STATE(1212)] = 62404, - [SMALL_STATE(1213)] = 62448, - [SMALL_STATE(1214)] = 62502, - [SMALL_STATE(1215)] = 62546, - [SMALL_STATE(1216)] = 62590, - [SMALL_STATE(1217)] = 62632, - [SMALL_STATE(1218)] = 62676, - [SMALL_STATE(1219)] = 62720, - [SMALL_STATE(1220)] = 62764, - [SMALL_STATE(1221)] = 62806, - [SMALL_STATE(1222)] = 62850, - [SMALL_STATE(1223)] = 62894, - [SMALL_STATE(1224)] = 62938, - [SMALL_STATE(1225)] = 62982, - [SMALL_STATE(1226)] = 63026, - [SMALL_STATE(1227)] = 63070, - [SMALL_STATE(1228)] = 63114, - [SMALL_STATE(1229)] = 63158, - [SMALL_STATE(1230)] = 63220, - [SMALL_STATE(1231)] = 63264, - [SMALL_STATE(1232)] = 63310, - [SMALL_STATE(1233)] = 63354, - [SMALL_STATE(1234)] = 63398, - [SMALL_STATE(1235)] = 63442, - [SMALL_STATE(1236)] = 63486, - [SMALL_STATE(1237)] = 63530, - [SMALL_STATE(1238)] = 63574, - [SMALL_STATE(1239)] = 63616, - [SMALL_STATE(1240)] = 63660, - [SMALL_STATE(1241)] = 63704, - [SMALL_STATE(1242)] = 63746, - [SMALL_STATE(1243)] = 63790, - [SMALL_STATE(1244)] = 63834, - [SMALL_STATE(1245)] = 63878, - [SMALL_STATE(1246)] = 63922, - [SMALL_STATE(1247)] = 63964, - [SMALL_STATE(1248)] = 64008, - [SMALL_STATE(1249)] = 64052, - [SMALL_STATE(1250)] = 64094, - [SMALL_STATE(1251)] = 64138, - [SMALL_STATE(1252)] = 64180, - [SMALL_STATE(1253)] = 64224, - [SMALL_STATE(1254)] = 64272, - [SMALL_STATE(1255)] = 64314, - [SMALL_STATE(1256)] = 64356, - [SMALL_STATE(1257)] = 64398, - [SMALL_STATE(1258)] = 64440, - [SMALL_STATE(1259)] = 64482, - [SMALL_STATE(1260)] = 64524, - [SMALL_STATE(1261)] = 64566, - [SMALL_STATE(1262)] = 64610, - [SMALL_STATE(1263)] = 64672, - [SMALL_STATE(1264)] = 64726, - [SMALL_STATE(1265)] = 64770, - [SMALL_STATE(1266)] = 64818, - [SMALL_STATE(1267)] = 64862, - [SMALL_STATE(1268)] = 64906, - [SMALL_STATE(1269)] = 64950, - [SMALL_STATE(1270)] = 65012, - [SMALL_STATE(1271)] = 65054, - [SMALL_STATE(1272)] = 65116, - [SMALL_STATE(1273)] = 65160, - [SMALL_STATE(1274)] = 65222, - [SMALL_STATE(1275)] = 65266, - [SMALL_STATE(1276)] = 65310, - [SMALL_STATE(1277)] = 65394, - [SMALL_STATE(1278)] = 65456, - [SMALL_STATE(1279)] = 65500, - [SMALL_STATE(1280)] = 65542, - [SMALL_STATE(1281)] = 65584, - [SMALL_STATE(1282)] = 65628, - [SMALL_STATE(1283)] = 65672, - [SMALL_STATE(1284)] = 65716, - [SMALL_STATE(1285)] = 65760, - [SMALL_STATE(1286)] = 65804, - [SMALL_STATE(1287)] = 65848, - [SMALL_STATE(1288)] = 65892, - [SMALL_STATE(1289)] = 65936, - [SMALL_STATE(1290)] = 65978, - [SMALL_STATE(1291)] = 66040, - [SMALL_STATE(1292)] = 66082, - [SMALL_STATE(1293)] = 66126, - [SMALL_STATE(1294)] = 66170, - [SMALL_STATE(1295)] = 66214, - [SMALL_STATE(1296)] = 66258, - [SMALL_STATE(1297)] = 66302, - [SMALL_STATE(1298)] = 66346, - [SMALL_STATE(1299)] = 66390, - [SMALL_STATE(1300)] = 66434, - [SMALL_STATE(1301)] = 66478, - [SMALL_STATE(1302)] = 66522, - [SMALL_STATE(1303)] = 66564, - [SMALL_STATE(1304)] = 66606, - [SMALL_STATE(1305)] = 66668, - [SMALL_STATE(1306)] = 66710, - [SMALL_STATE(1307)] = 66752, - [SMALL_STATE(1308)] = 66794, - [SMALL_STATE(1309)] = 66838, - [SMALL_STATE(1310)] = 66882, - [SMALL_STATE(1311)] = 66924, - [SMALL_STATE(1312)] = 66968, - [SMALL_STATE(1313)] = 67012, - [SMALL_STATE(1314)] = 67074, - [SMALL_STATE(1315)] = 67136, - [SMALL_STATE(1316)] = 67180, - [SMALL_STATE(1317)] = 67222, - [SMALL_STATE(1318)] = 67266, - [SMALL_STATE(1319)] = 67310, - [SMALL_STATE(1320)] = 67352, - [SMALL_STATE(1321)] = 67396, - [SMALL_STATE(1322)] = 67440, - [SMALL_STATE(1323)] = 67502, - [SMALL_STATE(1324)] = 67546, - [SMALL_STATE(1325)] = 67590, - [SMALL_STATE(1326)] = 67634, - [SMALL_STATE(1327)] = 67696, - [SMALL_STATE(1328)] = 67740, - [SMALL_STATE(1329)] = 67782, - [SMALL_STATE(1330)] = 67824, - [SMALL_STATE(1331)] = 67866, - [SMALL_STATE(1332)] = 67910, - [SMALL_STATE(1333)] = 67954, - [SMALL_STATE(1334)] = 67998, - [SMALL_STATE(1335)] = 68042, - [SMALL_STATE(1336)] = 68084, - [SMALL_STATE(1337)] = 68146, - [SMALL_STATE(1338)] = 68208, - [SMALL_STATE(1339)] = 68262, - [SMALL_STATE(1340)] = 68316, - [SMALL_STATE(1341)] = 68360, - [SMALL_STATE(1342)] = 68422, - [SMALL_STATE(1343)] = 68466, - [SMALL_STATE(1344)] = 68510, - [SMALL_STATE(1345)] = 68554, - [SMALL_STATE(1346)] = 68598, - [SMALL_STATE(1347)] = 68660, - [SMALL_STATE(1348)] = 68722, - [SMALL_STATE(1349)] = 68766, - [SMALL_STATE(1350)] = 68850, - [SMALL_STATE(1351)] = 68912, - [SMALL_STATE(1352)] = 68974, - [SMALL_STATE(1353)] = 69018, - [SMALL_STATE(1354)] = 69062, - [SMALL_STATE(1355)] = 69106, - [SMALL_STATE(1356)] = 69148, - [SMALL_STATE(1357)] = 69192, - [SMALL_STATE(1358)] = 69236, - [SMALL_STATE(1359)] = 69280, - [SMALL_STATE(1360)] = 69324, - [SMALL_STATE(1361)] = 69408, - [SMALL_STATE(1362)] = 69452, - [SMALL_STATE(1363)] = 69496, - [SMALL_STATE(1364)] = 69538, - [SMALL_STATE(1365)] = 69582, - [SMALL_STATE(1366)] = 69626, - [SMALL_STATE(1367)] = 69670, - [SMALL_STATE(1368)] = 69712, - [SMALL_STATE(1369)] = 69754, - [SMALL_STATE(1370)] = 69798, - [SMALL_STATE(1371)] = 69842, - [SMALL_STATE(1372)] = 69886, - [SMALL_STATE(1373)] = 69930, - [SMALL_STATE(1374)] = 69974, - [SMALL_STATE(1375)] = 70018, - [SMALL_STATE(1376)] = 70062, - [SMALL_STATE(1377)] = 70106, - [SMALL_STATE(1378)] = 70150, - [SMALL_STATE(1379)] = 70194, - [SMALL_STATE(1380)] = 70238, - [SMALL_STATE(1381)] = 70280, - [SMALL_STATE(1382)] = 70322, - [SMALL_STATE(1383)] = 70364, - [SMALL_STATE(1384)] = 70408, - [SMALL_STATE(1385)] = 70452, - [SMALL_STATE(1386)] = 70494, - [SMALL_STATE(1387)] = 70538, - [SMALL_STATE(1388)] = 70582, - [SMALL_STATE(1389)] = 70624, - [SMALL_STATE(1390)] = 70708, - [SMALL_STATE(1391)] = 70750, - [SMALL_STATE(1392)] = 70794, - [SMALL_STATE(1393)] = 70838, - [SMALL_STATE(1394)] = 70900, - [SMALL_STATE(1395)] = 70944, - [SMALL_STATE(1396)] = 70988, - [SMALL_STATE(1397)] = 71032, - [SMALL_STATE(1398)] = 71094, - [SMALL_STATE(1399)] = 71138, - [SMALL_STATE(1400)] = 71182, - [SMALL_STATE(1401)] = 71266, - [SMALL_STATE(1402)] = 71308, - [SMALL_STATE(1403)] = 71350, - [SMALL_STATE(1404)] = 71392, - [SMALL_STATE(1405)] = 71434, - [SMALL_STATE(1406)] = 71476, - [SMALL_STATE(1407)] = 71520, - [SMALL_STATE(1408)] = 71564, - [SMALL_STATE(1409)] = 71606, - [SMALL_STATE(1410)] = 71648, - [SMALL_STATE(1411)] = 71710, - [SMALL_STATE(1412)] = 71752, - [SMALL_STATE(1413)] = 71794, - [SMALL_STATE(1414)] = 71836, - [SMALL_STATE(1415)] = 71898, - [SMALL_STATE(1416)] = 71982, - [SMALL_STATE(1417)] = 72026, - [SMALL_STATE(1418)] = 72068, - [SMALL_STATE(1419)] = 72110, - [SMALL_STATE(1420)] = 72152, - [SMALL_STATE(1421)] = 72196, - [SMALL_STATE(1422)] = 72238, - [SMALL_STATE(1423)] = 72282, - [SMALL_STATE(1424)] = 72324, - [SMALL_STATE(1425)] = 72368, - [SMALL_STATE(1426)] = 72410, - [SMALL_STATE(1427)] = 72454, - [SMALL_STATE(1428)] = 72516, - [SMALL_STATE(1429)] = 72558, - [SMALL_STATE(1430)] = 72600, - [SMALL_STATE(1431)] = 72642, - [SMALL_STATE(1432)] = 72684, - [SMALL_STATE(1433)] = 72726, - [SMALL_STATE(1434)] = 72770, - [SMALL_STATE(1435)] = 72812, - [SMALL_STATE(1436)] = 72854, - [SMALL_STATE(1437)] = 72896, - [SMALL_STATE(1438)] = 72938, - [SMALL_STATE(1439)] = 72980, - [SMALL_STATE(1440)] = 73022, - [SMALL_STATE(1441)] = 73084, - [SMALL_STATE(1442)] = 73126, - [SMALL_STATE(1443)] = 73168, - [SMALL_STATE(1444)] = 73252, - [SMALL_STATE(1445)] = 73294, - [SMALL_STATE(1446)] = 73338, - [SMALL_STATE(1447)] = 73382, - [SMALL_STATE(1448)] = 73426, - [SMALL_STATE(1449)] = 73470, - [SMALL_STATE(1450)] = 73512, - [SMALL_STATE(1451)] = 73554, - [SMALL_STATE(1452)] = 73616, - [SMALL_STATE(1453)] = 73658, - [SMALL_STATE(1454)] = 73700, - [SMALL_STATE(1455)] = 73742, - [SMALL_STATE(1456)] = 73786, - [SMALL_STATE(1457)] = 73828, - [SMALL_STATE(1458)] = 73890, - [SMALL_STATE(1459)] = 73932, - [SMALL_STATE(1460)] = 73974, - [SMALL_STATE(1461)] = 74016, - [SMALL_STATE(1462)] = 74060, - [SMALL_STATE(1463)] = 74102, - [SMALL_STATE(1464)] = 74146, - [SMALL_STATE(1465)] = 74190, - [SMALL_STATE(1466)] = 74232, - [SMALL_STATE(1467)] = 74276, - [SMALL_STATE(1468)] = 74318, - [SMALL_STATE(1469)] = 74360, - [SMALL_STATE(1470)] = 74402, - [SMALL_STATE(1471)] = 74444, - [SMALL_STATE(1472)] = 74486, - [SMALL_STATE(1473)] = 74528, - [SMALL_STATE(1474)] = 74572, - [SMALL_STATE(1475)] = 74614, - [SMALL_STATE(1476)] = 74658, - [SMALL_STATE(1477)] = 74700, - [SMALL_STATE(1478)] = 74742, - [SMALL_STATE(1479)] = 74784, - [SMALL_STATE(1480)] = 74826, - [SMALL_STATE(1481)] = 74868, - [SMALL_STATE(1482)] = 74912, - [SMALL_STATE(1483)] = 74954, - [SMALL_STATE(1484)] = 74998, - [SMALL_STATE(1485)] = 75040, - [SMALL_STATE(1486)] = 75082, - [SMALL_STATE(1487)] = 75124, - [SMALL_STATE(1488)] = 75186, - [SMALL_STATE(1489)] = 75228, - [SMALL_STATE(1490)] = 75270, - [SMALL_STATE(1491)] = 75314, - [SMALL_STATE(1492)] = 75356, - [SMALL_STATE(1493)] = 75400, - [SMALL_STATE(1494)] = 75462, - [SMALL_STATE(1495)] = 75506, - [SMALL_STATE(1496)] = 75548, - [SMALL_STATE(1497)] = 75592, - [SMALL_STATE(1498)] = 75634, - [SMALL_STATE(1499)] = 75696, - [SMALL_STATE(1500)] = 75738, - [SMALL_STATE(1501)] = 75782, - [SMALL_STATE(1502)] = 75824, - [SMALL_STATE(1503)] = 75866, - [SMALL_STATE(1504)] = 75908, - [SMALL_STATE(1505)] = 75952, - [SMALL_STATE(1506)] = 75996, - [SMALL_STATE(1507)] = 76038, - [SMALL_STATE(1508)] = 76080, - [SMALL_STATE(1509)] = 76122, - [SMALL_STATE(1510)] = 76164, - [SMALL_STATE(1511)] = 76206, - [SMALL_STATE(1512)] = 76250, - [SMALL_STATE(1513)] = 76312, - [SMALL_STATE(1514)] = 76354, - [SMALL_STATE(1515)] = 76398, - [SMALL_STATE(1516)] = 76442, - [SMALL_STATE(1517)] = 76504, - [SMALL_STATE(1518)] = 76548, - [SMALL_STATE(1519)] = 76590, - [SMALL_STATE(1520)] = 76632, - [SMALL_STATE(1521)] = 76694, - [SMALL_STATE(1522)] = 76756, - [SMALL_STATE(1523)] = 76800, - [SMALL_STATE(1524)] = 76842, - [SMALL_STATE(1525)] = 76884, - [SMALL_STATE(1526)] = 76926, - [SMALL_STATE(1527)] = 76970, - [SMALL_STATE(1528)] = 77014, - [SMALL_STATE(1529)] = 77056, - [SMALL_STATE(1530)] = 77118, - [SMALL_STATE(1531)] = 77160, - [SMALL_STATE(1532)] = 77202, - [SMALL_STATE(1533)] = 77244, - [SMALL_STATE(1534)] = 77286, - [SMALL_STATE(1535)] = 77328, - [SMALL_STATE(1536)] = 77370, - [SMALL_STATE(1537)] = 77418, - [SMALL_STATE(1538)] = 77460, - [SMALL_STATE(1539)] = 77502, - [SMALL_STATE(1540)] = 77546, - [SMALL_STATE(1541)] = 77588, - [SMALL_STATE(1542)] = 77650, - [SMALL_STATE(1543)] = 77694, - [SMALL_STATE(1544)] = 77738, - [SMALL_STATE(1545)] = 77780, - [SMALL_STATE(1546)] = 77824, - [SMALL_STATE(1547)] = 77868, - [SMALL_STATE(1548)] = 77909, - [SMALL_STATE(1549)] = 77950, - [SMALL_STATE(1550)] = 77991, - [SMALL_STATE(1551)] = 78036, - [SMALL_STATE(1552)] = 78077, - [SMALL_STATE(1553)] = 78118, - [SMALL_STATE(1554)] = 78163, - [SMALL_STATE(1555)] = 78204, - [SMALL_STATE(1556)] = 78245, - [SMALL_STATE(1557)] = 78286, - [SMALL_STATE(1558)] = 78327, - [SMALL_STATE(1559)] = 78372, - [SMALL_STATE(1560)] = 78413, - [SMALL_STATE(1561)] = 78454, - [SMALL_STATE(1562)] = 78495, - [SMALL_STATE(1563)] = 78536, - [SMALL_STATE(1564)] = 78583, - [SMALL_STATE(1565)] = 78624, - [SMALL_STATE(1566)] = 78665, - [SMALL_STATE(1567)] = 78706, - [SMALL_STATE(1568)] = 78749, - [SMALL_STATE(1569)] = 78790, - [SMALL_STATE(1570)] = 78831, - [SMALL_STATE(1571)] = 78872, - [SMALL_STATE(1572)] = 78913, - [SMALL_STATE(1573)] = 78954, - [SMALL_STATE(1574)] = 78995, - [SMALL_STATE(1575)] = 79040, - [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)] = 79369, - [SMALL_STATE(1583)] = 79410, - [SMALL_STATE(1584)] = 79451, - [SMALL_STATE(1585)] = 79492, - [SMALL_STATE(1586)] = 79534, - [SMALL_STATE(1587)] = 79576, - [SMALL_STATE(1588)] = 79644, - [SMALL_STATE(1589)] = 79686, - [SMALL_STATE(1590)] = 79728, - [SMALL_STATE(1591)] = 79770, - [SMALL_STATE(1592)] = 79810, - [SMALL_STATE(1593)] = 79852, - [SMALL_STATE(1594)] = 79930, - [SMALL_STATE(1595)] = 79972, - [SMALL_STATE(1596)] = 80050, - [SMALL_STATE(1597)] = 80092, - [SMALL_STATE(1598)] = 80134, - [SMALL_STATE(1599)] = 80178, - [SMALL_STATE(1600)] = 80256, - [SMALL_STATE(1601)] = 80300, - [SMALL_STATE(1602)] = 80342, - [SMALL_STATE(1603)] = 80384, - [SMALL_STATE(1604)] = 80426, - [SMALL_STATE(1605)] = 80504, - [SMALL_STATE(1606)] = 80582, - [SMALL_STATE(1607)] = 80624, - [SMALL_STATE(1608)] = 80666, - [SMALL_STATE(1609)] = 80744, - [SMALL_STATE(1610)] = 80786, - [SMALL_STATE(1611)] = 80828, - [SMALL_STATE(1612)] = 80870, - [SMALL_STATE(1613)] = 80938, - [SMALL_STATE(1614)] = 81016, - [SMALL_STATE(1615)] = 81058, - [SMALL_STATE(1616)] = 81100, - [SMALL_STATE(1617)] = 81178, - [SMALL_STATE(1618)] = 81244, - [SMALL_STATE(1619)] = 81286, - [SMALL_STATE(1620)] = 81328, - [SMALL_STATE(1621)] = 81370, - [SMALL_STATE(1622)] = 81412, - [SMALL_STATE(1623)] = 81454, - [SMALL_STATE(1624)] = 81496, - [SMALL_STATE(1625)] = 81538, - [SMALL_STATE(1626)] = 81580, - [SMALL_STATE(1627)] = 81622, - [SMALL_STATE(1628)] = 81664, - [SMALL_STATE(1629)] = 81704, - [SMALL_STATE(1630)] = 81744, - [SMALL_STATE(1631)] = 81822, - [SMALL_STATE(1632)] = 81864, - [SMALL_STATE(1633)] = 81942, - [SMALL_STATE(1634)] = 82015, - [SMALL_STATE(1635)] = 82056, - [SMALL_STATE(1636)] = 82097, - [SMALL_STATE(1637)] = 82143, - [SMALL_STATE(1638)] = 82215, - [SMALL_STATE(1639)] = 82287, - [SMALL_STATE(1640)] = 82333, - [SMALL_STATE(1641)] = 82399, - [SMALL_STATE(1642)] = 82445, - [SMALL_STATE(1643)] = 82481, - [SMALL_STATE(1644)] = 82547, - [SMALL_STATE(1645)] = 82593, - [SMALL_STATE(1646)] = 82629, - [SMALL_STATE(1647)] = 82701, - [SMALL_STATE(1648)] = 82737, - [SMALL_STATE(1649)] = 82773, - [SMALL_STATE(1650)] = 82819, - [SMALL_STATE(1651)] = 82865, - [SMALL_STATE(1652)] = 82911, - [SMALL_STATE(1653)] = 82983, - [SMALL_STATE(1654)] = 83029, - [SMALL_STATE(1655)] = 83075, - [SMALL_STATE(1656)] = 83147, - [SMALL_STATE(1657)] = 83193, - [SMALL_STATE(1658)] = 83239, - [SMALL_STATE(1659)] = 83311, - [SMALL_STATE(1660)] = 83357, - [SMALL_STATE(1661)] = 83393, - [SMALL_STATE(1662)] = 83465, - [SMALL_STATE(1663)] = 83511, - [SMALL_STATE(1664)] = 83583, - [SMALL_STATE(1665)] = 83629, - [SMALL_STATE(1666)] = 83675, - [SMALL_STATE(1667)] = 83741, - [SMALL_STATE(1668)] = 83787, - [SMALL_STATE(1669)] = 83833, - [SMALL_STATE(1670)] = 83905, - [SMALL_STATE(1671)] = 83951, - [SMALL_STATE(1672)] = 83997, - [SMALL_STATE(1673)] = 84043, - [SMALL_STATE(1674)] = 84089, - [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)] = 84549, - [SMALL_STATE(1682)] = 84618, - [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)] = 85946, - [SMALL_STATE(1703)] = 86006, - [SMALL_STATE(1704)] = 86052, - [SMALL_STATE(1705)] = 86098, - [SMALL_STATE(1706)] = 86158, - [SMALL_STATE(1707)] = 86218, - [SMALL_STATE(1708)] = 86282, - [SMALL_STATE(1709)] = 86342, - [SMALL_STATE(1710)] = 86388, - [SMALL_STATE(1711)] = 86452, - [SMALL_STATE(1712)] = 86512, - [SMALL_STATE(1713)] = 86572, - [SMALL_STATE(1714)] = 86632, - [SMALL_STATE(1715)] = 86692, - [SMALL_STATE(1716)] = 86738, - [SMALL_STATE(1717)] = 86798, - [SMALL_STATE(1718)] = 86858, - [SMALL_STATE(1719)] = 86918, - [SMALL_STATE(1720)] = 86964, - [SMALL_STATE(1721)] = 87010, - [SMALL_STATE(1722)] = 87070, - [SMALL_STATE(1723)] = 87116, - [SMALL_STATE(1724)] = 87162, - [SMALL_STATE(1725)] = 87202, - [SMALL_STATE(1726)] = 87246, - [SMALL_STATE(1727)] = 87306, - [SMALL_STATE(1728)] = 87366, - [SMALL_STATE(1729)] = 87426, - [SMALL_STATE(1730)] = 87472, - [SMALL_STATE(1731)] = 87532, - [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)] = 89851, - [SMALL_STATE(1769)] = 89914, - [SMALL_STATE(1770)] = 89977, - [SMALL_STATE(1771)] = 90040, - [SMALL_STATE(1772)] = 90103, - [SMALL_STATE(1773)] = 90166, - [SMALL_STATE(1774)] = 90229, - [SMALL_STATE(1775)] = 90292, - [SMALL_STATE(1776)] = 90355, - [SMALL_STATE(1777)] = 90418, - [SMALL_STATE(1778)] = 90481, - [SMALL_STATE(1779)] = 90544, - [SMALL_STATE(1780)] = 90607, - [SMALL_STATE(1781)] = 90670, - [SMALL_STATE(1782)] = 90733, - [SMALL_STATE(1783)] = 90796, - [SMALL_STATE(1784)] = 90859, - [SMALL_STATE(1785)] = 90922, - [SMALL_STATE(1786)] = 90985, - [SMALL_STATE(1787)] = 91048, - [SMALL_STATE(1788)] = 91111, - [SMALL_STATE(1789)] = 91174, - [SMALL_STATE(1790)] = 91237, - [SMALL_STATE(1791)] = 91300, - [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)] = 92153, - [SMALL_STATE(1806)] = 92211, - [SMALL_STATE(1807)] = 92269, - [SMALL_STATE(1808)] = 92327, - [SMALL_STATE(1809)] = 92361, - [SMALL_STATE(1810)] = 92395, - [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)] = 92685, - [SMALL_STATE(1818)] = 92743, - [SMALL_STATE(1819)] = 92801, - [SMALL_STATE(1820)] = 92860, - [SMALL_STATE(1821)] = 92907, - [SMALL_STATE(1822)] = 92966, - [SMALL_STATE(1823)] = 93013, - [SMALL_STATE(1824)] = 93060, - [SMALL_STATE(1825)] = 93119, - [SMALL_STATE(1826)] = 93178, - [SMALL_STATE(1827)] = 93225, - [SMALL_STATE(1828)] = 93284, - [SMALL_STATE(1829)] = 93331, - [SMALL_STATE(1830)] = 93390, - [SMALL_STATE(1831)] = 93437, - [SMALL_STATE(1832)] = 93496, - [SMALL_STATE(1833)] = 93555, - [SMALL_STATE(1834)] = 93602, - [SMALL_STATE(1835)] = 93649, - [SMALL_STATE(1836)] = 93708, - [SMALL_STATE(1837)] = 93755, - [SMALL_STATE(1838)] = 93802, - [SMALL_STATE(1839)] = 93861, - [SMALL_STATE(1840)] = 93908, - [SMALL_STATE(1841)] = 93962, - [SMALL_STATE(1842)] = 94004, - [SMALL_STATE(1843)] = 94058, - [SMALL_STATE(1844)] = 94100, - [SMALL_STATE(1845)] = 94144, - [SMALL_STATE(1846)] = 94198, - [SMALL_STATE(1847)] = 94250, - [SMALL_STATE(1848)] = 94304, - [SMALL_STATE(1849)] = 94346, - [SMALL_STATE(1850)] = 94392, - [SMALL_STATE(1851)] = 94446, - [SMALL_STATE(1852)] = 94478, - [SMALL_STATE(1853)] = 94524, - [SMALL_STATE(1854)] = 94578, - [SMALL_STATE(1855)] = 94630, - [SMALL_STATE(1856)] = 94676, - [SMALL_STATE(1857)] = 94710, - [SMALL_STATE(1858)] = 94764, - [SMALL_STATE(1859)] = 94810, - [SMALL_STATE(1860)] = 94864, - [SMALL_STATE(1861)] = 94910, - [SMALL_STATE(1862)] = 94962, - [SMALL_STATE(1863)] = 94994, - [SMALL_STATE(1864)] = 95046, - [SMALL_STATE(1865)] = 95092, - [SMALL_STATE(1866)] = 95146, - [SMALL_STATE(1867)] = 95178, - [SMALL_STATE(1868)] = 95230, - [SMALL_STATE(1869)] = 95284, - [SMALL_STATE(1870)] = 95331, - [SMALL_STATE(1871)] = 95378, - [SMALL_STATE(1872)] = 95425, - [SMALL_STATE(1873)] = 95472, - [SMALL_STATE(1874)] = 95519, - [SMALL_STATE(1875)] = 95566, - [SMALL_STATE(1876)] = 95613, - [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)] = 95914, - [SMALL_STATE(1884)] = 95961, - [SMALL_STATE(1885)] = 96008, - [SMALL_STATE(1886)] = 96055, - [SMALL_STATE(1887)] = 96102, - [SMALL_STATE(1888)] = 96149, - [SMALL_STATE(1889)] = 96194, - [SMALL_STATE(1890)] = 96241, - [SMALL_STATE(1891)] = 96288, - [SMALL_STATE(1892)] = 96335, - [SMALL_STATE(1893)] = 96382, - [SMALL_STATE(1894)] = 96415, - [SMALL_STATE(1895)] = 96462, - [SMALL_STATE(1896)] = 96509, - [SMALL_STATE(1897)] = 96556, - [SMALL_STATE(1898)] = 96603, - [SMALL_STATE(1899)] = 96650, - [SMALL_STATE(1900)] = 96697, - [SMALL_STATE(1901)] = 96744, - [SMALL_STATE(1902)] = 96792, - [SMALL_STATE(1903)] = 96834, - [SMALL_STATE(1904)] = 96878, - [SMALL_STATE(1905)] = 96922, - [SMALL_STATE(1906)] = 96966, - [SMALL_STATE(1907)] = 97014, - [SMALL_STATE(1908)] = 97060, - [SMALL_STATE(1909)] = 97104, - [SMALL_STATE(1910)] = 97148, - [SMALL_STATE(1911)] = 97196, - [SMALL_STATE(1912)] = 97242, - [SMALL_STATE(1913)] = 97290, - [SMALL_STATE(1914)] = 97334, - [SMALL_STATE(1915)] = 97378, - [SMALL_STATE(1916)] = 97426, - [SMALL_STATE(1917)] = 97472, - [SMALL_STATE(1918)] = 97520, - [SMALL_STATE(1919)] = 97568, - [SMALL_STATE(1920)] = 97612, - [SMALL_STATE(1921)] = 97658, - [SMALL_STATE(1922)] = 97702, - [SMALL_STATE(1923)] = 97750, - [SMALL_STATE(1924)] = 97794, - [SMALL_STATE(1925)] = 97840, - [SMALL_STATE(1926)] = 97884, - [SMALL_STATE(1927)] = 97932, - [SMALL_STATE(1928)] = 97976, - [SMALL_STATE(1929)] = 98022, - [SMALL_STATE(1930)] = 98068, - [SMALL_STATE(1931)] = 98108, - [SMALL_STATE(1932)] = 98154, - [SMALL_STATE(1933)] = 98202, - [SMALL_STATE(1934)] = 98238, - [SMALL_STATE(1935)] = 98284, - [SMALL_STATE(1936)] = 98320, - [SMALL_STATE(1937)] = 98360, - [SMALL_STATE(1938)] = 98404, - [SMALL_STATE(1939)] = 98448, - [SMALL_STATE(1940)] = 98492, - [SMALL_STATE(1941)] = 98538, - [SMALL_STATE(1942)] = 98569, - [SMALL_STATE(1943)] = 98612, - [SMALL_STATE(1944)] = 98647, - [SMALL_STATE(1945)] = 98682, - [SMALL_STATE(1946)] = 98727, - [SMALL_STATE(1947)] = 98756, - [SMALL_STATE(1948)] = 98789, - [SMALL_STATE(1949)] = 98834, - [SMALL_STATE(1950)] = 98867, - [SMALL_STATE(1951)] = 98913, - [SMALL_STATE(1952)] = 98955, - [SMALL_STATE(1953)] = 99003, - [SMALL_STATE(1954)] = 99031, - [SMALL_STATE(1955)] = 99069, - [SMALL_STATE(1956)] = 99107, - [SMALL_STATE(1957)] = 99155, - [SMALL_STATE(1958)] = 99197, - [SMALL_STATE(1959)] = 99235, - [SMALL_STATE(1960)] = 99265, - [SMALL_STATE(1961)] = 99311, - [SMALL_STATE(1962)] = 99359, - [SMALL_STATE(1963)] = 99397, - [SMALL_STATE(1964)] = 99427, - [SMALL_STATE(1965)] = 99473, - [SMALL_STATE(1966)] = 99521, - [SMALL_STATE(1967)] = 99567, - [SMALL_STATE(1968)] = 99613, - [SMALL_STATE(1969)] = 99651, - [SMALL_STATE(1970)] = 99697, - [SMALL_STATE(1971)] = 99739, - [SMALL_STATE(1972)] = 99785, - [SMALL_STATE(1973)] = 99827, - [SMALL_STATE(1974)] = 99873, - [SMALL_STATE(1975)] = 99919, - [SMALL_STATE(1976)] = 99965, - [SMALL_STATE(1977)] = 100011, - [SMALL_STATE(1978)] = 100057, - [SMALL_STATE(1979)] = 100103, - [SMALL_STATE(1980)] = 100149, - [SMALL_STATE(1981)] = 100197, - [SMALL_STATE(1982)] = 100245, - [SMALL_STATE(1983)] = 100291, - [SMALL_STATE(1984)] = 100329, - [SMALL_STATE(1985)] = 100367, - [SMALL_STATE(1986)] = 100413, - [SMALL_STATE(1987)] = 100461, - [SMALL_STATE(1988)] = 100503, - [SMALL_STATE(1989)] = 100549, - [SMALL_STATE(1990)] = 100595, - [SMALL_STATE(1991)] = 100641, - [SMALL_STATE(1992)] = 100679, - [SMALL_STATE(1993)] = 100727, - [SMALL_STATE(1994)] = 100775, - [SMALL_STATE(1995)] = 100809, - [SMALL_STATE(1996)] = 100851, - [SMALL_STATE(1997)] = 100893, - [SMALL_STATE(1998)] = 100939, - [SMALL_STATE(1999)] = 100985, - [SMALL_STATE(2000)] = 101033, - [SMALL_STATE(2001)] = 101079, - [SMALL_STATE(2002)] = 101115, - [SMALL_STATE(2003)] = 101161, - [SMALL_STATE(2004)] = 101207, - [SMALL_STATE(2005)] = 101241, - [SMALL_STATE(2006)] = 101287, - [SMALL_STATE(2007)] = 101325, - [SMALL_STATE(2008)] = 101367, - [SMALL_STATE(2009)] = 101405, - [SMALL_STATE(2010)] = 101443, - [SMALL_STATE(2011)] = 101481, - [SMALL_STATE(2012)] = 101523, - [SMALL_STATE(2013)] = 101569, - [SMALL_STATE(2014)] = 101615, - [SMALL_STATE(2015)] = 101661, - [SMALL_STATE(2016)] = 101693, - [SMALL_STATE(2017)] = 101739, - [SMALL_STATE(2018)] = 101777, - [SMALL_STATE(2019)] = 101815, - [SMALL_STATE(2020)] = 101847, - [SMALL_STATE(2021)] = 101889, - [SMALL_STATE(2022)] = 101935, - [SMALL_STATE(2023)] = 101973, - [SMALL_STATE(2024)] = 102012, - [SMALL_STATE(2025)] = 102041, - [SMALL_STATE(2026)] = 102088, - [SMALL_STATE(2027)] = 102135, - [SMALL_STATE(2028)] = 102182, - [SMALL_STATE(2029)] = 102229, - [SMALL_STATE(2030)] = 102268, - [SMALL_STATE(2031)] = 102307, - [SMALL_STATE(2032)] = 102354, - [SMALL_STATE(2033)] = 102401, - [SMALL_STATE(2034)] = 102448, - [SMALL_STATE(2035)] = 102495, - [SMALL_STATE(2036)] = 102522, - [SMALL_STATE(2037)] = 102569, - [SMALL_STATE(2038)] = 102596, - [SMALL_STATE(2039)] = 102623, - [SMALL_STATE(2040)] = 102652, - [SMALL_STATE(2041)] = 102691, - [SMALL_STATE(2042)] = 102730, - [SMALL_STATE(2043)] = 102777, - [SMALL_STATE(2044)] = 102824, - [SMALL_STATE(2045)] = 102871, - [SMALL_STATE(2046)] = 102910, - [SMALL_STATE(2047)] = 102957, - [SMALL_STATE(2048)] = 102996, - [SMALL_STATE(2049)] = 103035, - [SMALL_STATE(2050)] = 103074, - [SMALL_STATE(2051)] = 103113, - [SMALL_STATE(2052)] = 103152, - [SMALL_STATE(2053)] = 103199, - [SMALL_STATE(2054)] = 103246, - [SMALL_STATE(2055)] = 103285, - [SMALL_STATE(2056)] = 103332, - [SMALL_STATE(2057)] = 103361, - [SMALL_STATE(2058)] = 103408, - [SMALL_STATE(2059)] = 103455, - [SMALL_STATE(2060)] = 103494, - [SMALL_STATE(2061)] = 103541, - [SMALL_STATE(2062)] = 103576, - [SMALL_STATE(2063)] = 103623, - [SMALL_STATE(2064)] = 103670, - [SMALL_STATE(2065)] = 103717, - [SMALL_STATE(2066)] = 103746, - [SMALL_STATE(2067)] = 103785, - [SMALL_STATE(2068)] = 103814, - [SMALL_STATE(2069)] = 103853, - [SMALL_STATE(2070)] = 103882, - [SMALL_STATE(2071)] = 103921, - [SMALL_STATE(2072)] = 103968, - [SMALL_STATE(2073)] = 104007, - [SMALL_STATE(2074)] = 104036, - [SMALL_STATE(2075)] = 104073, - [SMALL_STATE(2076)] = 104110, - [SMALL_STATE(2077)] = 104145, - [SMALL_STATE(2078)] = 104180, - [SMALL_STATE(2079)] = 104219, - [SMALL_STATE(2080)] = 104266, - [SMALL_STATE(2081)] = 104295, - [SMALL_STATE(2082)] = 104342, - [SMALL_STATE(2083)] = 104389, - [SMALL_STATE(2084)] = 104428, - [SMALL_STATE(2085)] = 104475, - [SMALL_STATE(2086)] = 104522, - [SMALL_STATE(2087)] = 104557, - [SMALL_STATE(2088)] = 104604, - [SMALL_STATE(2089)] = 104643, - [SMALL_STATE(2090)] = 104690, - [SMALL_STATE(2091)] = 104727, - [SMALL_STATE(2092)] = 104774, - [SMALL_STATE(2093)] = 104803, - [SMALL_STATE(2094)] = 104834, - [SMALL_STATE(2095)] = 104881, - [SMALL_STATE(2096)] = 104928, - [SMALL_STATE(2097)] = 104967, - [SMALL_STATE(2098)] = 104996, - [SMALL_STATE(2099)] = 105043, - [SMALL_STATE(2100)] = 105090, - [SMALL_STATE(2101)] = 105137, - [SMALL_STATE(2102)] = 105176, - [SMALL_STATE(2103)] = 105205, - [SMALL_STATE(2104)] = 105244, - [SMALL_STATE(2105)] = 105271, - [SMALL_STATE(2106)] = 105310, - [SMALL_STATE(2107)] = 105357, - [SMALL_STATE(2108)] = 105384, - [SMALL_STATE(2109)] = 105431, - [SMALL_STATE(2110)] = 105460, - [SMALL_STATE(2111)] = 105499, - [SMALL_STATE(2112)] = 105546, - [SMALL_STATE(2113)] = 105593, - [SMALL_STATE(2114)] = 105640, - [SMALL_STATE(2115)] = 105669, - [SMALL_STATE(2116)] = 105716, - [SMALL_STATE(2117)] = 105755, - [SMALL_STATE(2118)] = 105802, - [SMALL_STATE(2119)] = 105849, - [SMALL_STATE(2120)] = 105886, - [SMALL_STATE(2121)] = 105923, - [SMALL_STATE(2122)] = 105970, - [SMALL_STATE(2123)] = 105999, - [SMALL_STATE(2124)] = 106038, - [SMALL_STATE(2125)] = 106085, - [SMALL_STATE(2126)] = 106122, - [SMALL_STATE(2127)] = 106151, - [SMALL_STATE(2128)] = 106190, - [SMALL_STATE(2129)] = 106219, - [SMALL_STATE(2130)] = 106248, - [SMALL_STATE(2131)] = 106287, - [SMALL_STATE(2132)] = 106334, - [SMALL_STATE(2133)] = 106381, - [SMALL_STATE(2134)] = 106428, - [SMALL_STATE(2135)] = 106467, - [SMALL_STATE(2136)] = 106514, - [SMALL_STATE(2137)] = 106554, - [SMALL_STATE(2138)] = 106594, - [SMALL_STATE(2139)] = 106638, - [SMALL_STATE(2140)] = 106666, - [SMALL_STATE(2141)] = 106694, - [SMALL_STATE(2142)] = 106738, - [SMALL_STATE(2143)] = 106778, - [SMALL_STATE(2144)] = 106804, - [SMALL_STATE(2145)] = 106830, - [SMALL_STATE(2146)] = 106872, - [SMALL_STATE(2147)] = 106916, - [SMALL_STATE(2148)] = 106960, - [SMALL_STATE(2149)] = 107000, - [SMALL_STATE(2150)] = 107040, - [SMALL_STATE(2151)] = 107068, - [SMALL_STATE(2152)] = 107096, - [SMALL_STATE(2153)] = 107136, - [SMALL_STATE(2154)] = 107164, - [SMALL_STATE(2155)] = 107194, - [SMALL_STATE(2156)] = 107234, - [SMALL_STATE(2157)] = 107278, - [SMALL_STATE(2158)] = 107314, - [SMALL_STATE(2159)] = 107354, - [SMALL_STATE(2160)] = 107392, - [SMALL_STATE(2161)] = 107436, - [SMALL_STATE(2162)] = 107478, - [SMALL_STATE(2163)] = 107518, - [SMALL_STATE(2164)] = 107558, - [SMALL_STATE(2165)] = 107598, - [SMALL_STATE(2166)] = 107638, - [SMALL_STATE(2167)] = 107664, - [SMALL_STATE(2168)] = 107708, - [SMALL_STATE(2169)] = 107750, - [SMALL_STATE(2170)] = 107790, - [SMALL_STATE(2171)] = 107830, - [SMALL_STATE(2172)] = 107870, - [SMALL_STATE(2173)] = 107908, - [SMALL_STATE(2174)] = 107948, - [SMALL_STATE(2175)] = 107974, - [SMALL_STATE(2176)] = 108000, - [SMALL_STATE(2177)] = 108040, - [SMALL_STATE(2178)] = 108078, - [SMALL_STATE(2179)] = 108118, - [SMALL_STATE(2180)] = 108158, - [SMALL_STATE(2181)] = 108192, - [SMALL_STATE(2182)] = 108232, - [SMALL_STATE(2183)] = 108272, - [SMALL_STATE(2184)] = 108316, - [SMALL_STATE(2185)] = 108360, - [SMALL_STATE(2186)] = 108400, - [SMALL_STATE(2187)] = 108438, - [SMALL_STATE(2188)] = 108476, - [SMALL_STATE(2189)] = 108516, - [SMALL_STATE(2190)] = 108544, - [SMALL_STATE(2191)] = 108584, - [SMALL_STATE(2192)] = 108624, - [SMALL_STATE(2193)] = 108664, - [SMALL_STATE(2194)] = 108704, - [SMALL_STATE(2195)] = 108744, - [SMALL_STATE(2196)] = 108784, - [SMALL_STATE(2197)] = 108812, - [SMALL_STATE(2198)] = 108852, - [SMALL_STATE(2199)] = 108882, - [SMALL_STATE(2200)] = 108924, - [SMALL_STATE(2201)] = 108964, - [SMALL_STATE(2202)] = 109008, - [SMALL_STATE(2203)] = 109052, - [SMALL_STATE(2204)] = 109080, - [SMALL_STATE(2205)] = 109124, - [SMALL_STATE(2206)] = 109152, - [SMALL_STATE(2207)] = 109190, - [SMALL_STATE(2208)] = 109230, - [SMALL_STATE(2209)] = 109270, - [SMALL_STATE(2210)] = 109312, - [SMALL_STATE(2211)] = 109356, - [SMALL_STATE(2212)] = 109394, - [SMALL_STATE(2213)] = 109438, - [SMALL_STATE(2214)] = 109482, - [SMALL_STATE(2215)] = 109510, - [SMALL_STATE(2216)] = 109550, - [SMALL_STATE(2217)] = 109590, - [SMALL_STATE(2218)] = 109618, - [SMALL_STATE(2219)] = 109645, - [SMALL_STATE(2220)] = 109672, - [SMALL_STATE(2221)] = 109705, - [SMALL_STATE(2222)] = 109738, - [SMALL_STATE(2223)] = 109771, - [SMALL_STATE(2224)] = 109804, - [SMALL_STATE(2225)] = 109837, - [SMALL_STATE(2226)] = 109870, - [SMALL_STATE(2227)] = 109903, - [SMALL_STATE(2228)] = 109936, - [SMALL_STATE(2229)] = 109969, - [SMALL_STATE(2230)] = 110002, - [SMALL_STATE(2231)] = 110035, - [SMALL_STATE(2232)] = 110068, - [SMALL_STATE(2233)] = 110101, - [SMALL_STATE(2234)] = 110134, - [SMALL_STATE(2235)] = 110167, - [SMALL_STATE(2236)] = 110200, - [SMALL_STATE(2237)] = 110233, - [SMALL_STATE(2238)] = 110266, - [SMALL_STATE(2239)] = 110299, - [SMALL_STATE(2240)] = 110332, - [SMALL_STATE(2241)] = 110365, - [SMALL_STATE(2242)] = 110398, - [SMALL_STATE(2243)] = 110431, - [SMALL_STATE(2244)] = 110464, - [SMALL_STATE(2245)] = 110497, - [SMALL_STATE(2246)] = 110530, - [SMALL_STATE(2247)] = 110563, - [SMALL_STATE(2248)] = 110596, - [SMALL_STATE(2249)] = 110629, - [SMALL_STATE(2250)] = 110662, - [SMALL_STATE(2251)] = 110695, - [SMALL_STATE(2252)] = 110728, - [SMALL_STATE(2253)] = 110761, - [SMALL_STATE(2254)] = 110794, - [SMALL_STATE(2255)] = 110827, - [SMALL_STATE(2256)] = 110860, - [SMALL_STATE(2257)] = 110893, - [SMALL_STATE(2258)] = 110926, - [SMALL_STATE(2259)] = 110959, - [SMALL_STATE(2260)] = 110992, - [SMALL_STATE(2261)] = 111021, - [SMALL_STATE(2262)] = 111054, - [SMALL_STATE(2263)] = 111087, - [SMALL_STATE(2264)] = 111116, - [SMALL_STATE(2265)] = 111149, - [SMALL_STATE(2266)] = 111182, - [SMALL_STATE(2267)] = 111207, - [SMALL_STATE(2268)] = 111240, - [SMALL_STATE(2269)] = 111273, - [SMALL_STATE(2270)] = 111306, - [SMALL_STATE(2271)] = 111335, - [SMALL_STATE(2272)] = 111368, - [SMALL_STATE(2273)] = 111401, - [SMALL_STATE(2274)] = 111434, - [SMALL_STATE(2275)] = 111467, - [SMALL_STATE(2276)] = 111500, - [SMALL_STATE(2277)] = 111533, - [SMALL_STATE(2278)] = 111566, - [SMALL_STATE(2279)] = 111599, - [SMALL_STATE(2280)] = 111632, - [SMALL_STATE(2281)] = 111665, - [SMALL_STATE(2282)] = 111698, - [SMALL_STATE(2283)] = 111731, - [SMALL_STATE(2284)] = 111764, - [SMALL_STATE(2285)] = 111797, - [SMALL_STATE(2286)] = 111830, - [SMALL_STATE(2287)] = 111863, - [SMALL_STATE(2288)] = 111896, - [SMALL_STATE(2289)] = 111929, - [SMALL_STATE(2290)] = 111962, - [SMALL_STATE(2291)] = 111995, - [SMALL_STATE(2292)] = 112028, - [SMALL_STATE(2293)] = 112061, - [SMALL_STATE(2294)] = 112094, - [SMALL_STATE(2295)] = 112127, - [SMALL_STATE(2296)] = 112160, - [SMALL_STATE(2297)] = 112193, - [SMALL_STATE(2298)] = 112226, - [SMALL_STATE(2299)] = 112259, - [SMALL_STATE(2300)] = 112284, - [SMALL_STATE(2301)] = 112317, - [SMALL_STATE(2302)] = 112350, - [SMALL_STATE(2303)] = 112383, - [SMALL_STATE(2304)] = 112416, - [SMALL_STATE(2305)] = 112449, - [SMALL_STATE(2306)] = 112482, - [SMALL_STATE(2307)] = 112515, - [SMALL_STATE(2308)] = 112548, - [SMALL_STATE(2309)] = 112575, - [SMALL_STATE(2310)] = 112608, - [SMALL_STATE(2311)] = 112641, - [SMALL_STATE(2312)] = 112672, - [SMALL_STATE(2313)] = 112705, - [SMALL_STATE(2314)] = 112740, - [SMALL_STATE(2315)] = 112773, - [SMALL_STATE(2316)] = 112806, - [SMALL_STATE(2317)] = 112839, - [SMALL_STATE(2318)] = 112872, - [SMALL_STATE(2319)] = 112905, - [SMALL_STATE(2320)] = 112938, - [SMALL_STATE(2321)] = 112971, - [SMALL_STATE(2322)] = 113004, - [SMALL_STATE(2323)] = 113037, - [SMALL_STATE(2324)] = 113070, - [SMALL_STATE(2325)] = 113103, - [SMALL_STATE(2326)] = 113136, - [SMALL_STATE(2327)] = 113169, - [SMALL_STATE(2328)] = 113204, - [SMALL_STATE(2329)] = 113233, - [SMALL_STATE(2330)] = 113266, - [SMALL_STATE(2331)] = 113295, - [SMALL_STATE(2332)] = 113322, - [SMALL_STATE(2333)] = 113355, - [SMALL_STATE(2334)] = 113388, - [SMALL_STATE(2335)] = 113421, - [SMALL_STATE(2336)] = 113454, - [SMALL_STATE(2337)] = 113487, - [SMALL_STATE(2338)] = 113520, - [SMALL_STATE(2339)] = 113553, - [SMALL_STATE(2340)] = 113584, - [SMALL_STATE(2341)] = 113609, - [SMALL_STATE(2342)] = 113642, - [SMALL_STATE(2343)] = 113675, - [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)] = 113974, - [SMALL_STATE(2353)] = 114010, - [SMALL_STATE(2354)] = 114046, - [SMALL_STATE(2355)] = 114082, - [SMALL_STATE(2356)] = 114118, - [SMALL_STATE(2357)] = 114154, - [SMALL_STATE(2358)] = 114190, - [SMALL_STATE(2359)] = 114226, - [SMALL_STATE(2360)] = 114262, - [SMALL_STATE(2361)] = 114286, - [SMALL_STATE(2362)] = 114322, - [SMALL_STATE(2363)] = 114352, - [SMALL_STATE(2364)] = 114386, - [SMALL_STATE(2365)] = 114416, - [SMALL_STATE(2366)] = 114452, - [SMALL_STATE(2367)] = 114476, - [SMALL_STATE(2368)] = 114500, - [SMALL_STATE(2369)] = 114536, - [SMALL_STATE(2370)] = 114572, - [SMALL_STATE(2371)] = 114600, - [SMALL_STATE(2372)] = 114636, - [SMALL_STATE(2373)] = 114672, - [SMALL_STATE(2374)] = 114708, - [SMALL_STATE(2375)] = 114746, - [SMALL_STATE(2376)] = 114776, - [SMALL_STATE(2377)] = 114814, - [SMALL_STATE(2378)] = 114850, - [SMALL_STATE(2379)] = 114886, - [SMALL_STATE(2380)] = 114922, - [SMALL_STATE(2381)] = 114958, - [SMALL_STATE(2382)] = 114994, - [SMALL_STATE(2383)] = 115030, - [SMALL_STATE(2384)] = 115068, - [SMALL_STATE(2385)] = 115104, - [SMALL_STATE(2386)] = 115140, - [SMALL_STATE(2387)] = 115176, - [SMALL_STATE(2388)] = 115206, - [SMALL_STATE(2389)] = 115242, - [SMALL_STATE(2390)] = 115280, - [SMALL_STATE(2391)] = 115310, - [SMALL_STATE(2392)] = 115335, - [SMALL_STATE(2393)] = 115368, - [SMALL_STATE(2394)] = 115401, - [SMALL_STATE(2395)] = 115434, - [SMALL_STATE(2396)] = 115465, - [SMALL_STATE(2397)] = 115498, - [SMALL_STATE(2398)] = 115531, - [SMALL_STATE(2399)] = 115564, - [SMALL_STATE(2400)] = 115595, - [SMALL_STATE(2401)] = 115630, - [SMALL_STATE(2402)] = 115665, - [SMALL_STATE(2403)] = 115694, - [SMALL_STATE(2404)] = 115729, - [SMALL_STATE(2405)] = 115764, - [SMALL_STATE(2406)] = 115799, - [SMALL_STATE(2407)] = 115834, - [SMALL_STATE(2408)] = 115865, - [SMALL_STATE(2409)] = 115898, - [SMALL_STATE(2410)] = 115933, - [SMALL_STATE(2411)] = 115964, - [SMALL_STATE(2412)] = 115999, - [SMALL_STATE(2413)] = 116034, - [SMALL_STATE(2414)] = 116067, - [SMALL_STATE(2415)] = 116102, - [SMALL_STATE(2416)] = 116135, - [SMALL_STATE(2417)] = 116170, - [SMALL_STATE(2418)] = 116205, - [SMALL_STATE(2419)] = 116240, - [SMALL_STATE(2420)] = 116275, - [SMALL_STATE(2421)] = 116310, - [SMALL_STATE(2422)] = 116345, - [SMALL_STATE(2423)] = 116380, - [SMALL_STATE(2424)] = 116413, - [SMALL_STATE(2425)] = 116444, - [SMALL_STATE(2426)] = 116479, - [SMALL_STATE(2427)] = 116510, - [SMALL_STATE(2428)] = 116543, - [SMALL_STATE(2429)] = 116578, - [SMALL_STATE(2430)] = 116603, - [SMALL_STATE(2431)] = 116638, - [SMALL_STATE(2432)] = 116673, - [SMALL_STATE(2433)] = 116708, - [SMALL_STATE(2434)] = 116743, - [SMALL_STATE(2435)] = 116778, - [SMALL_STATE(2436)] = 116813, - [SMALL_STATE(2437)] = 116848, - [SMALL_STATE(2438)] = 116883, - [SMALL_STATE(2439)] = 116916, - [SMALL_STATE(2440)] = 116949, - [SMALL_STATE(2441)] = 116972, - [SMALL_STATE(2442)] = 117005, - [SMALL_STATE(2443)] = 117028, - [SMALL_STATE(2444)] = 117051, - [SMALL_STATE(2445)] = 117076, - [SMALL_STATE(2446)] = 117107, - [SMALL_STATE(2447)] = 117138, - [SMALL_STATE(2448)] = 117161, - [SMALL_STATE(2449)] = 117184, - [SMALL_STATE(2450)] = 117215, - [SMALL_STATE(2451)] = 117248, - [SMALL_STATE(2452)] = 117283, - [SMALL_STATE(2453)] = 117318, - [SMALL_STATE(2454)] = 117343, - [SMALL_STATE(2455)] = 117372, - [SMALL_STATE(2456)] = 117397, - [SMALL_STATE(2457)] = 117432, - [SMALL_STATE(2458)] = 117467, - [SMALL_STATE(2459)] = 117502, - [SMALL_STATE(2460)] = 117533, - [SMALL_STATE(2461)] = 117566, - [SMALL_STATE(2462)] = 117599, - [SMALL_STATE(2463)] = 117634, - [SMALL_STATE(2464)] = 117659, - [SMALL_STATE(2465)] = 117692, - [SMALL_STATE(2466)] = 117717, - [SMALL_STATE(2467)] = 117752, - [SMALL_STATE(2468)] = 117777, - [SMALL_STATE(2469)] = 117812, - [SMALL_STATE(2470)] = 117847, - [SMALL_STATE(2471)] = 117882, - [SMALL_STATE(2472)] = 117915, - [SMALL_STATE(2473)] = 117942, - [SMALL_STATE(2474)] = 117977, - [SMALL_STATE(2475)] = 118012, - [SMALL_STATE(2476)] = 118043, - [SMALL_STATE(2477)] = 118076, - [SMALL_STATE(2478)] = 118101, - [SMALL_STATE(2479)] = 118134, - [SMALL_STATE(2480)] = 118159, - [SMALL_STATE(2481)] = 118194, - [SMALL_STATE(2482)] = 118227, - [SMALL_STATE(2483)] = 118252, - [SMALL_STATE(2484)] = 118277, - [SMALL_STATE(2485)] = 118312, - [SMALL_STATE(2486)] = 118347, - [SMALL_STATE(2487)] = 118382, - [SMALL_STATE(2488)] = 118415, - [SMALL_STATE(2489)] = 118448, - [SMALL_STATE(2490)] = 118479, - [SMALL_STATE(2491)] = 118504, - [SMALL_STATE(2492)] = 118535, - [SMALL_STATE(2493)] = 118568, - [SMALL_STATE(2494)] = 118593, - [SMALL_STATE(2495)] = 118628, - [SMALL_STATE(2496)] = 118661, - [SMALL_STATE(2497)] = 118694, - [SMALL_STATE(2498)] = 118719, - [SMALL_STATE(2499)] = 118754, - [SMALL_STATE(2500)] = 118789, - [SMALL_STATE(2501)] = 118822, - [SMALL_STATE(2502)] = 118857, - [SMALL_STATE(2503)] = 118892, - [SMALL_STATE(2504)] = 118917, - [SMALL_STATE(2505)] = 118952, - [SMALL_STATE(2506)] = 118977, - [SMALL_STATE(2507)] = 119002, - [SMALL_STATE(2508)] = 119027, - [SMALL_STATE(2509)] = 119052, - [SMALL_STATE(2510)] = 119077, - [SMALL_STATE(2511)] = 119108, - [SMALL_STATE(2512)] = 119133, - [SMALL_STATE(2513)] = 119168, - [SMALL_STATE(2514)] = 119193, - [SMALL_STATE(2515)] = 119218, - [SMALL_STATE(2516)] = 119251, - [SMALL_STATE(2517)] = 119286, - [SMALL_STATE(2518)] = 119319, - [SMALL_STATE(2519)] = 119352, - [SMALL_STATE(2520)] = 119375, - [SMALL_STATE(2521)] = 119398, - [SMALL_STATE(2522)] = 119431, - [SMALL_STATE(2523)] = 119466, - [SMALL_STATE(2524)] = 119501, - [SMALL_STATE(2525)] = 119526, - [SMALL_STATE(2526)] = 119561, - [SMALL_STATE(2527)] = 119596, - [SMALL_STATE(2528)] = 119621, - [SMALL_STATE(2529)] = 119646, - [SMALL_STATE(2530)] = 119671, - [SMALL_STATE(2531)] = 119706, - [SMALL_STATE(2532)] = 119741, - [SMALL_STATE(2533)] = 119766, - [SMALL_STATE(2534)] = 119799, - [SMALL_STATE(2535)] = 119832, - [SMALL_STATE(2536)] = 119867, - [SMALL_STATE(2537)] = 119892, - [SMALL_STATE(2538)] = 119917, - [SMALL_STATE(2539)] = 119942, - [SMALL_STATE(2540)] = 119967, - [SMALL_STATE(2541)] = 120002, - [SMALL_STATE(2542)] = 120037, - [SMALL_STATE(2543)] = 120068, - [SMALL_STATE(2544)] = 120095, - [SMALL_STATE(2545)] = 120126, - [SMALL_STATE(2546)] = 120159, - [SMALL_STATE(2547)] = 120189, - [SMALL_STATE(2548)] = 120221, - [SMALL_STATE(2549)] = 120251, - [SMALL_STATE(2550)] = 120281, - [SMALL_STATE(2551)] = 120311, - [SMALL_STATE(2552)] = 120341, - [SMALL_STATE(2553)] = 120371, - [SMALL_STATE(2554)] = 120401, - [SMALL_STATE(2555)] = 120433, - [SMALL_STATE(2556)] = 120463, - [SMALL_STATE(2557)] = 120493, - [SMALL_STATE(2558)] = 120525, - [SMALL_STATE(2559)] = 120555, - [SMALL_STATE(2560)] = 120585, - [SMALL_STATE(2561)] = 120617, - [SMALL_STATE(2562)] = 120647, - [SMALL_STATE(2563)] = 120677, - [SMALL_STATE(2564)] = 120707, - [SMALL_STATE(2565)] = 120739, - [SMALL_STATE(2566)] = 120769, - [SMALL_STATE(2567)] = 120801, - [SMALL_STATE(2568)] = 120833, - [SMALL_STATE(2569)] = 120863, - [SMALL_STATE(2570)] = 120895, - [SMALL_STATE(2571)] = 120925, - [SMALL_STATE(2572)] = 120957, - [SMALL_STATE(2573)] = 120989, - [SMALL_STATE(2574)] = 121021, - [SMALL_STATE(2575)] = 121051, - [SMALL_STATE(2576)] = 121081, - [SMALL_STATE(2577)] = 121105, - [SMALL_STATE(2578)] = 121135, - [SMALL_STATE(2579)] = 121165, - [SMALL_STATE(2580)] = 121197, - [SMALL_STATE(2581)] = 121219, - [SMALL_STATE(2582)] = 121249, - [SMALL_STATE(2583)] = 121281, - [SMALL_STATE(2584)] = 121311, - [SMALL_STATE(2585)] = 121333, - [SMALL_STATE(2586)] = 121363, - [SMALL_STATE(2587)] = 121395, - [SMALL_STATE(2588)] = 121425, - [SMALL_STATE(2589)] = 121455, - [SMALL_STATE(2590)] = 121485, - [SMALL_STATE(2591)] = 121515, - [SMALL_STATE(2592)] = 121543, - [SMALL_STATE(2593)] = 121575, - [SMALL_STATE(2594)] = 121607, - [SMALL_STATE(2595)] = 121637, - [SMALL_STATE(2596)] = 121669, - [SMALL_STATE(2597)] = 121699, - [SMALL_STATE(2598)] = 121721, - [SMALL_STATE(2599)] = 121753, - [SMALL_STATE(2600)] = 121783, - [SMALL_STATE(2601)] = 121815, - [SMALL_STATE(2602)] = 121845, - [SMALL_STATE(2603)] = 121875, - [SMALL_STATE(2604)] = 121905, - [SMALL_STATE(2605)] = 121937, - [SMALL_STATE(2606)] = 121967, - [SMALL_STATE(2607)] = 121997, - [SMALL_STATE(2608)] = 122027, - [SMALL_STATE(2609)] = 122053, - [SMALL_STATE(2610)] = 122083, - [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)] = 122295, - [SMALL_STATE(2618)] = 122327, - [SMALL_STATE(2619)] = 122357, - [SMALL_STATE(2620)] = 122389, - [SMALL_STATE(2621)] = 122421, - [SMALL_STATE(2622)] = 122453, - [SMALL_STATE(2623)] = 122483, - [SMALL_STATE(2624)] = 122515, - [SMALL_STATE(2625)] = 122547, - [SMALL_STATE(2626)] = 122577, - [SMALL_STATE(2627)] = 122605, - [SMALL_STATE(2628)] = 122635, - [SMALL_STATE(2629)] = 122665, - [SMALL_STATE(2630)] = 122695, - [SMALL_STATE(2631)] = 122725, - [SMALL_STATE(2632)] = 122757, - [SMALL_STATE(2633)] = 122789, - [SMALL_STATE(2634)] = 122819, - [SMALL_STATE(2635)] = 122851, - [SMALL_STATE(2636)] = 122883, - [SMALL_STATE(2637)] = 122913, - [SMALL_STATE(2638)] = 122943, - [SMALL_STATE(2639)] = 122973, - [SMALL_STATE(2640)] = 123003, - [SMALL_STATE(2641)] = 123033, - [SMALL_STATE(2642)] = 123065, - [SMALL_STATE(2643)] = 123087, - [SMALL_STATE(2644)] = 123117, - [SMALL_STATE(2645)] = 123147, - [SMALL_STATE(2646)] = 123177, - [SMALL_STATE(2647)] = 123207, - [SMALL_STATE(2648)] = 123237, - [SMALL_STATE(2649)] = 123267, - [SMALL_STATE(2650)] = 123297, - [SMALL_STATE(2651)] = 123329, - [SMALL_STATE(2652)] = 123359, - [SMALL_STATE(2653)] = 123387, - [SMALL_STATE(2654)] = 123417, - [SMALL_STATE(2655)] = 123447, - [SMALL_STATE(2656)] = 123479, - [SMALL_STATE(2657)] = 123511, - [SMALL_STATE(2658)] = 123543, - [SMALL_STATE(2659)] = 123573, - [SMALL_STATE(2660)] = 123603, - [SMALL_STATE(2661)] = 123633, - [SMALL_STATE(2662)] = 123665, - [SMALL_STATE(2663)] = 123697, - [SMALL_STATE(2664)] = 123727, - [SMALL_STATE(2665)] = 123757, - [SMALL_STATE(2666)] = 123789, - [SMALL_STATE(2667)] = 123821, - [SMALL_STATE(2668)] = 123851, - [SMALL_STATE(2669)] = 123883, - [SMALL_STATE(2670)] = 123905, - [SMALL_STATE(2671)] = 123937, - [SMALL_STATE(2672)] = 123969, - [SMALL_STATE(2673)] = 124001, - [SMALL_STATE(2674)] = 124033, - [SMALL_STATE(2675)] = 124065, - [SMALL_STATE(2676)] = 124095, - [SMALL_STATE(2677)] = 124127, - [SMALL_STATE(2678)] = 124157, - [SMALL_STATE(2679)] = 124189, - [SMALL_STATE(2680)] = 124217, - [SMALL_STATE(2681)] = 124249, - [SMALL_STATE(2682)] = 124279, - [SMALL_STATE(2683)] = 124311, - [SMALL_STATE(2684)] = 124343, - [SMALL_STATE(2685)] = 124373, - [SMALL_STATE(2686)] = 124403, - [SMALL_STATE(2687)] = 124435, - [SMALL_STATE(2688)] = 124465, - [SMALL_STATE(2689)] = 124495, - [SMALL_STATE(2690)] = 124527, - [SMALL_STATE(2691)] = 124559, - [SMALL_STATE(2692)] = 124589, - [SMALL_STATE(2693)] = 124621, - [SMALL_STATE(2694)] = 124653, - [SMALL_STATE(2695)] = 124685, - [SMALL_STATE(2696)] = 124715, - [SMALL_STATE(2697)] = 124745, - [SMALL_STATE(2698)] = 124777, - [SMALL_STATE(2699)] = 124807, - [SMALL_STATE(2700)] = 124837, - [SMALL_STATE(2701)] = 124867, - [SMALL_STATE(2702)] = 124897, - [SMALL_STATE(2703)] = 124927, - [SMALL_STATE(2704)] = 124959, - [SMALL_STATE(2705)] = 124989, - [SMALL_STATE(2706)] = 125021, - [SMALL_STATE(2707)] = 125049, - [SMALL_STATE(2708)] = 125081, - [SMALL_STATE(2709)] = 125113, - [SMALL_STATE(2710)] = 125143, - [SMALL_STATE(2711)] = 125167, - [SMALL_STATE(2712)] = 125197, - [SMALL_STATE(2713)] = 125229, - [SMALL_STATE(2714)] = 125261, - [SMALL_STATE(2715)] = 125291, - [SMALL_STATE(2716)] = 125321, - [SMALL_STATE(2717)] = 125344, - [SMALL_STATE(2718)] = 125367, - [SMALL_STATE(2719)] = 125390, - [SMALL_STATE(2720)] = 125419, - [SMALL_STATE(2721)] = 125448, - [SMALL_STATE(2722)] = 125477, - [SMALL_STATE(2723)] = 125506, - [SMALL_STATE(2724)] = 125535, - [SMALL_STATE(2725)] = 125558, - [SMALL_STATE(2726)] = 125581, - [SMALL_STATE(2727)] = 125610, - [SMALL_STATE(2728)] = 125639, - [SMALL_STATE(2729)] = 125668, - [SMALL_STATE(2730)] = 125697, - [SMALL_STATE(2731)] = 125722, - [SMALL_STATE(2732)] = 125751, - [SMALL_STATE(2733)] = 125780, - [SMALL_STATE(2734)] = 125809, - [SMALL_STATE(2735)] = 125838, - [SMALL_STATE(2736)] = 125863, - [SMALL_STATE(2737)] = 125890, - [SMALL_STATE(2738)] = 125919, - [SMALL_STATE(2739)] = 125948, - [SMALL_STATE(2740)] = 125977, - [SMALL_STATE(2741)] = 126006, - [SMALL_STATE(2742)] = 126033, - [SMALL_STATE(2743)] = 126062, - [SMALL_STATE(2744)] = 126091, - [SMALL_STATE(2745)] = 126118, - [SMALL_STATE(2746)] = 126147, - [SMALL_STATE(2747)] = 126172, - [SMALL_STATE(2748)] = 126195, - [SMALL_STATE(2749)] = 126218, - [SMALL_STATE(2750)] = 126243, - [SMALL_STATE(2751)] = 126268, - [SMALL_STATE(2752)] = 126297, - [SMALL_STATE(2753)] = 126320, - [SMALL_STATE(2754)] = 126343, - [SMALL_STATE(2755)] = 126368, - [SMALL_STATE(2756)] = 126397, - [SMALL_STATE(2757)] = 126420, - [SMALL_STATE(2758)] = 126443, - [SMALL_STATE(2759)] = 126468, - [SMALL_STATE(2760)] = 126497, - [SMALL_STATE(2761)] = 126526, - [SMALL_STATE(2762)] = 126555, - [SMALL_STATE(2763)] = 126584, - [SMALL_STATE(2764)] = 126613, - [SMALL_STATE(2765)] = 126642, - [SMALL_STATE(2766)] = 126671, - [SMALL_STATE(2767)] = 126694, - [SMALL_STATE(2768)] = 126723, - [SMALL_STATE(2769)] = 126746, - [SMALL_STATE(2770)] = 126775, - [SMALL_STATE(2771)] = 126800, - [SMALL_STATE(2772)] = 126825, - [SMALL_STATE(2773)] = 126854, - [SMALL_STATE(2774)] = 126879, - [SMALL_STATE(2775)] = 126902, - [SMALL_STATE(2776)] = 126927, - [SMALL_STATE(2777)] = 126956, - [SMALL_STATE(2778)] = 126985, - [SMALL_STATE(2779)] = 127014, - [SMALL_STATE(2780)] = 127039, - [SMALL_STATE(2781)] = 127068, - [SMALL_STATE(2782)] = 127097, - [SMALL_STATE(2783)] = 127120, - [SMALL_STATE(2784)] = 127141, - [SMALL_STATE(2785)] = 127166, - [SMALL_STATE(2786)] = 127195, - [SMALL_STATE(2787)] = 127224, - [SMALL_STATE(2788)] = 127247, - [SMALL_STATE(2789)] = 127268, - [SMALL_STATE(2790)] = 127297, - [SMALL_STATE(2791)] = 127326, - [SMALL_STATE(2792)] = 127349, - [SMALL_STATE(2793)] = 127378, - [SMALL_STATE(2794)] = 127407, - [SMALL_STATE(2795)] = 127436, - [SMALL_STATE(2796)] = 127465, - [SMALL_STATE(2797)] = 127490, - [SMALL_STATE(2798)] = 127515, - [SMALL_STATE(2799)] = 127540, - [SMALL_STATE(2800)] = 127569, - [SMALL_STATE(2801)] = 127594, - [SMALL_STATE(2802)] = 127615, - [SMALL_STATE(2803)] = 127644, - [SMALL_STATE(2804)] = 127673, - [SMALL_STATE(2805)] = 127696, - [SMALL_STATE(2806)] = 127725, - [SMALL_STATE(2807)] = 127750, - [SMALL_STATE(2808)] = 127779, - [SMALL_STATE(2809)] = 127808, - [SMALL_STATE(2810)] = 127837, - [SMALL_STATE(2811)] = 127862, - [SMALL_STATE(2812)] = 127891, - [SMALL_STATE(2813)] = 127920, - [SMALL_STATE(2814)] = 127949, - [SMALL_STATE(2815)] = 127974, - [SMALL_STATE(2816)] = 127999, - [SMALL_STATE(2817)] = 128028, - [SMALL_STATE(2818)] = 128057, - [SMALL_STATE(2819)] = 128086, - [SMALL_STATE(2820)] = 128109, - [SMALL_STATE(2821)] = 128136, - [SMALL_STATE(2822)] = 128165, - [SMALL_STATE(2823)] = 128194, - [SMALL_STATE(2824)] = 128217, - [SMALL_STATE(2825)] = 128246, - [SMALL_STATE(2826)] = 128267, - [SMALL_STATE(2827)] = 128296, - [SMALL_STATE(2828)] = 128319, - [SMALL_STATE(2829)] = 128340, - [SMALL_STATE(2830)] = 128365, - [SMALL_STATE(2831)] = 128390, - [SMALL_STATE(2832)] = 128413, - [SMALL_STATE(2833)] = 128442, - [SMALL_STATE(2834)] = 128465, - [SMALL_STATE(2835)] = 128488, - [SMALL_STATE(2836)] = 128513, - [SMALL_STATE(2837)] = 128542, - [SMALL_STATE(2838)] = 128571, - [SMALL_STATE(2839)] = 128598, - [SMALL_STATE(2840)] = 128627, - [SMALL_STATE(2841)] = 128652, - [SMALL_STATE(2842)] = 128681, - [SMALL_STATE(2843)] = 128702, - [SMALL_STATE(2844)] = 128731, - [SMALL_STATE(2845)] = 128754, - [SMALL_STATE(2846)] = 128777, - [SMALL_STATE(2847)] = 128802, - [SMALL_STATE(2848)] = 128825, - [SMALL_STATE(2849)] = 128846, - [SMALL_STATE(2850)] = 128875, - [SMALL_STATE(2851)] = 128900, - [SMALL_STATE(2852)] = 128923, - [SMALL_STATE(2853)] = 128948, - [SMALL_STATE(2854)] = 128971, - [SMALL_STATE(2855)] = 128996, - [SMALL_STATE(2856)] = 129025, - [SMALL_STATE(2857)] = 129048, - [SMALL_STATE(2858)] = 129075, - [SMALL_STATE(2859)] = 129104, - [SMALL_STATE(2860)] = 129133, - [SMALL_STATE(2861)] = 129158, - [SMALL_STATE(2862)] = 129187, - [SMALL_STATE(2863)] = 129212, - [SMALL_STATE(2864)] = 129235, - [SMALL_STATE(2865)] = 129264, - [SMALL_STATE(2866)] = 129293, - [SMALL_STATE(2867)] = 129322, - [SMALL_STATE(2868)] = 129347, - [SMALL_STATE(2869)] = 129376, - [SMALL_STATE(2870)] = 129399, - [SMALL_STATE(2871)] = 129428, - [SMALL_STATE(2872)] = 129453, - [SMALL_STATE(2873)] = 129482, - [SMALL_STATE(2874)] = 129511, - [SMALL_STATE(2875)] = 129540, - [SMALL_STATE(2876)] = 129565, - [SMALL_STATE(2877)] = 129592, - [SMALL_STATE(2878)] = 129621, - [SMALL_STATE(2879)] = 129650, - [SMALL_STATE(2880)] = 129673, - [SMALL_STATE(2881)] = 129698, - [SMALL_STATE(2882)] = 129727, - [SMALL_STATE(2883)] = 129752, - [SMALL_STATE(2884)] = 129781, - [SMALL_STATE(2885)] = 129806, - [SMALL_STATE(2886)] = 129831, - [SMALL_STATE(2887)] = 129860, - [SMALL_STATE(2888)] = 129885, - [SMALL_STATE(2889)] = 129914, - [SMALL_STATE(2890)] = 129937, - [SMALL_STATE(2891)] = 129960, - [SMALL_STATE(2892)] = 129989, - [SMALL_STATE(2893)] = 130014, - [SMALL_STATE(2894)] = 130037, - [SMALL_STATE(2895)] = 130066, - [SMALL_STATE(2896)] = 130089, - [SMALL_STATE(2897)] = 130112, - [SMALL_STATE(2898)] = 130135, - [SMALL_STATE(2899)] = 130158, - [SMALL_STATE(2900)] = 130187, - [SMALL_STATE(2901)] = 130216, - [SMALL_STATE(2902)] = 130245, - [SMALL_STATE(2903)] = 130274, - [SMALL_STATE(2904)] = 130303, - [SMALL_STATE(2905)] = 130326, - [SMALL_STATE(2906)] = 130349, - [SMALL_STATE(2907)] = 130372, - [SMALL_STATE(2908)] = 130397, - [SMALL_STATE(2909)] = 130420, - [SMALL_STATE(2910)] = 130443, - [SMALL_STATE(2911)] = 130472, - [SMALL_STATE(2912)] = 130501, - [SMALL_STATE(2913)] = 130530, - [SMALL_STATE(2914)] = 130559, - [SMALL_STATE(2915)] = 130582, - [SMALL_STATE(2916)] = 130605, - [SMALL_STATE(2917)] = 130634, - [SMALL_STATE(2918)] = 130659, - [SMALL_STATE(2919)] = 130688, - [SMALL_STATE(2920)] = 130712, - [SMALL_STATE(2921)] = 130736, - [SMALL_STATE(2922)] = 130760, - [SMALL_STATE(2923)] = 130784, - [SMALL_STATE(2924)] = 130808, - [SMALL_STATE(2925)] = 130832, - [SMALL_STATE(2926)] = 130852, - [SMALL_STATE(2927)] = 130876, - [SMALL_STATE(2928)] = 130896, - [SMALL_STATE(2929)] = 130922, - [SMALL_STATE(2930)] = 130942, - [SMALL_STATE(2931)] = 130962, - [SMALL_STATE(2932)] = 130982, - [SMALL_STATE(2933)] = 131008, - [SMALL_STATE(2934)] = 131034, - [SMALL_STATE(2935)] = 131060, - [SMALL_STATE(2936)] = 131080, - [SMALL_STATE(2937)] = 131106, - [SMALL_STATE(2938)] = 131132, - [SMALL_STATE(2939)] = 131158, - [SMALL_STATE(2940)] = 131182, - [SMALL_STATE(2941)] = 131206, - [SMALL_STATE(2942)] = 131230, - [SMALL_STATE(2943)] = 131254, - [SMALL_STATE(2944)] = 131278, - [SMALL_STATE(2945)] = 131298, - [SMALL_STATE(2946)] = 131324, - [SMALL_STATE(2947)] = 131348, - [SMALL_STATE(2948)] = 131372, - [SMALL_STATE(2949)] = 131392, - [SMALL_STATE(2950)] = 131418, - [SMALL_STATE(2951)] = 131444, - [SMALL_STATE(2952)] = 131468, - [SMALL_STATE(2953)] = 131494, - [SMALL_STATE(2954)] = 131518, - [SMALL_STATE(2955)] = 131542, - [SMALL_STATE(2956)] = 131566, - [SMALL_STATE(2957)] = 131586, - [SMALL_STATE(2958)] = 131606, - [SMALL_STATE(2959)] = 131630, - [SMALL_STATE(2960)] = 131652, - [SMALL_STATE(2961)] = 131672, - [SMALL_STATE(2962)] = 131696, - [SMALL_STATE(2963)] = 131716, - [SMALL_STATE(2964)] = 131742, - [SMALL_STATE(2965)] = 131768, - [SMALL_STATE(2966)] = 131794, - [SMALL_STATE(2967)] = 131816, - [SMALL_STATE(2968)] = 131840, - [SMALL_STATE(2969)] = 131866, - [SMALL_STATE(2970)] = 131888, - [SMALL_STATE(2971)] = 131912, - [SMALL_STATE(2972)] = 131936, - [SMALL_STATE(2973)] = 131958, - [SMALL_STATE(2974)] = 131980, - [SMALL_STATE(2975)] = 132006, - [SMALL_STATE(2976)] = 132032, - [SMALL_STATE(2977)] = 132058, - [SMALL_STATE(2978)] = 132078, - [SMALL_STATE(2979)] = 132102, - [SMALL_STATE(2980)] = 132126, - [SMALL_STATE(2981)] = 132152, - [SMALL_STATE(2982)] = 132172, - [SMALL_STATE(2983)] = 132196, - [SMALL_STATE(2984)] = 132220, - [SMALL_STATE(2985)] = 132244, - [SMALL_STATE(2986)] = 132270, - [SMALL_STATE(2987)] = 132296, - [SMALL_STATE(2988)] = 132320, - [SMALL_STATE(2989)] = 132346, - [SMALL_STATE(2990)] = 132370, - [SMALL_STATE(2991)] = 132396, - [SMALL_STATE(2992)] = 132422, - [SMALL_STATE(2993)] = 132446, - [SMALL_STATE(2994)] = 132472, - [SMALL_STATE(2995)] = 132492, - [SMALL_STATE(2996)] = 132514, - [SMALL_STATE(2997)] = 132534, - [SMALL_STATE(2998)] = 132556, - [SMALL_STATE(2999)] = 132582, - [SMALL_STATE(3000)] = 132604, - [SMALL_STATE(3001)] = 132630, - [SMALL_STATE(3002)] = 132654, - [SMALL_STATE(3003)] = 132676, - [SMALL_STATE(3004)] = 132702, - [SMALL_STATE(3005)] = 132726, - [SMALL_STATE(3006)] = 132752, - [SMALL_STATE(3007)] = 132774, - [SMALL_STATE(3008)] = 132798, - [SMALL_STATE(3009)] = 132820, - [SMALL_STATE(3010)] = 132846, - [SMALL_STATE(3011)] = 132872, - [SMALL_STATE(3012)] = 132896, - [SMALL_STATE(3013)] = 132922, - [SMALL_STATE(3014)] = 132946, - [SMALL_STATE(3015)] = 132970, - [SMALL_STATE(3016)] = 132996, - [SMALL_STATE(3017)] = 133018, - [SMALL_STATE(3018)] = 133042, - [SMALL_STATE(3019)] = 133068, - [SMALL_STATE(3020)] = 133092, - [SMALL_STATE(3021)] = 133118, - [SMALL_STATE(3022)] = 133142, - [SMALL_STATE(3023)] = 133166, - [SMALL_STATE(3024)] = 133190, - [SMALL_STATE(3025)] = 133214, - [SMALL_STATE(3026)] = 133240, - [SMALL_STATE(3027)] = 133266, - [SMALL_STATE(3028)] = 133290, - [SMALL_STATE(3029)] = 133314, - [SMALL_STATE(3030)] = 133340, - [SMALL_STATE(3031)] = 133366, - [SMALL_STATE(3032)] = 133390, - [SMALL_STATE(3033)] = 133412, - [SMALL_STATE(3034)] = 133438, - [SMALL_STATE(3035)] = 133462, - [SMALL_STATE(3036)] = 133482, - [SMALL_STATE(3037)] = 133504, - [SMALL_STATE(3038)] = 133524, - [SMALL_STATE(3039)] = 133548, - [SMALL_STATE(3040)] = 133568, - [SMALL_STATE(3041)] = 133590, - [SMALL_STATE(3042)] = 133610, - [SMALL_STATE(3043)] = 133636, - [SMALL_STATE(3044)] = 133662, - [SMALL_STATE(3045)] = 133688, - [SMALL_STATE(3046)] = 133708, - [SMALL_STATE(3047)] = 133734, - [SMALL_STATE(3048)] = 133756, - [SMALL_STATE(3049)] = 133776, - [SMALL_STATE(3050)] = 133796, - [SMALL_STATE(3051)] = 133816, - [SMALL_STATE(3052)] = 133838, - [SMALL_STATE(3053)] = 133864, - [SMALL_STATE(3054)] = 133886, - [SMALL_STATE(3055)] = 133908, - [SMALL_STATE(3056)] = 133934, - [SMALL_STATE(3057)] = 133954, - [SMALL_STATE(3058)] = 133978, - [SMALL_STATE(3059)] = 133997, - [SMALL_STATE(3060)] = 134020, - [SMALL_STATE(3061)] = 134043, - [SMALL_STATE(3062)] = 134062, - [SMALL_STATE(3063)] = 134081, - [SMALL_STATE(3064)] = 134104, - [SMALL_STATE(3065)] = 134127, - [SMALL_STATE(3066)] = 134146, - [SMALL_STATE(3067)] = 134165, - [SMALL_STATE(3068)] = 134188, - [SMALL_STATE(3069)] = 134211, - [SMALL_STATE(3070)] = 134230, - [SMALL_STATE(3071)] = 134249, - [SMALL_STATE(3072)] = 134268, - [SMALL_STATE(3073)] = 134291, - [SMALL_STATE(3074)] = 134314, - [SMALL_STATE(3075)] = 134337, - [SMALL_STATE(3076)] = 134360, - [SMALL_STATE(3077)] = 134383, - [SMALL_STATE(3078)] = 134402, - [SMALL_STATE(3079)] = 134421, - [SMALL_STATE(3080)] = 134440, - [SMALL_STATE(3081)] = 134459, - [SMALL_STATE(3082)] = 134480, - [SMALL_STATE(3083)] = 134499, - [SMALL_STATE(3084)] = 134518, - [SMALL_STATE(3085)] = 134541, - [SMALL_STATE(3086)] = 134564, - [SMALL_STATE(3087)] = 134587, - [SMALL_STATE(3088)] = 134610, - [SMALL_STATE(3089)] = 134633, - [SMALL_STATE(3090)] = 134656, - [SMALL_STATE(3091)] = 134679, - [SMALL_STATE(3092)] = 134702, - [SMALL_STATE(3093)] = 134725, - [SMALL_STATE(3094)] = 134748, - [SMALL_STATE(3095)] = 134767, - [SMALL_STATE(3096)] = 134790, - [SMALL_STATE(3097)] = 134813, - [SMALL_STATE(3098)] = 134836, - [SMALL_STATE(3099)] = 134859, - [SMALL_STATE(3100)] = 134882, - [SMALL_STATE(3101)] = 134905, - [SMALL_STATE(3102)] = 134928, - [SMALL_STATE(3103)] = 134951, - [SMALL_STATE(3104)] = 134974, - [SMALL_STATE(3105)] = 134997, - [SMALL_STATE(3106)] = 135020, - [SMALL_STATE(3107)] = 135043, - [SMALL_STATE(3108)] = 135066, - [SMALL_STATE(3109)] = 135089, - [SMALL_STATE(3110)] = 135112, - [SMALL_STATE(3111)] = 135135, - [SMALL_STATE(3112)] = 135158, - [SMALL_STATE(3113)] = 135181, - [SMALL_STATE(3114)] = 135204, - [SMALL_STATE(3115)] = 135227, - [SMALL_STATE(3116)] = 135250, - [SMALL_STATE(3117)] = 135273, - [SMALL_STATE(3118)] = 135296, - [SMALL_STATE(3119)] = 135319, - [SMALL_STATE(3120)] = 135342, - [SMALL_STATE(3121)] = 135365, - [SMALL_STATE(3122)] = 135388, - [SMALL_STATE(3123)] = 135411, - [SMALL_STATE(3124)] = 135434, - [SMALL_STATE(3125)] = 135457, - [SMALL_STATE(3126)] = 135480, - [SMALL_STATE(3127)] = 135503, - [SMALL_STATE(3128)] = 135526, - [SMALL_STATE(3129)] = 135549, - [SMALL_STATE(3130)] = 135572, - [SMALL_STATE(3131)] = 135595, - [SMALL_STATE(3132)] = 135618, - [SMALL_STATE(3133)] = 135641, - [SMALL_STATE(3134)] = 135664, - [SMALL_STATE(3135)] = 135687, - [SMALL_STATE(3136)] = 135710, - [SMALL_STATE(3137)] = 135729, - [SMALL_STATE(3138)] = 135752, - [SMALL_STATE(3139)] = 135775, - [SMALL_STATE(3140)] = 135798, - [SMALL_STATE(3141)] = 135821, - [SMALL_STATE(3142)] = 135844, - [SMALL_STATE(3143)] = 135867, - [SMALL_STATE(3144)] = 135890, - [SMALL_STATE(3145)] = 135913, - [SMALL_STATE(3146)] = 135936, - [SMALL_STATE(3147)] = 135959, - [SMALL_STATE(3148)] = 135982, - [SMALL_STATE(3149)] = 136005, - [SMALL_STATE(3150)] = 136026, - [SMALL_STATE(3151)] = 136049, - [SMALL_STATE(3152)] = 136072, - [SMALL_STATE(3153)] = 136095, - [SMALL_STATE(3154)] = 136118, - [SMALL_STATE(3155)] = 136141, - [SMALL_STATE(3156)] = 136164, - [SMALL_STATE(3157)] = 136183, - [SMALL_STATE(3158)] = 136206, - [SMALL_STATE(3159)] = 136229, - [SMALL_STATE(3160)] = 136252, - [SMALL_STATE(3161)] = 136275, - [SMALL_STATE(3162)] = 136298, - [SMALL_STATE(3163)] = 136321, - [SMALL_STATE(3164)] = 136342, - [SMALL_STATE(3165)] = 136365, - [SMALL_STATE(3166)] = 136388, - [SMALL_STATE(3167)] = 136411, - [SMALL_STATE(3168)] = 136434, - [SMALL_STATE(3169)] = 136457, - [SMALL_STATE(3170)] = 136480, - [SMALL_STATE(3171)] = 136503, - [SMALL_STATE(3172)] = 136526, - [SMALL_STATE(3173)] = 136549, - [SMALL_STATE(3174)] = 136572, - [SMALL_STATE(3175)] = 136595, - [SMALL_STATE(3176)] = 136616, - [SMALL_STATE(3177)] = 136639, - [SMALL_STATE(3178)] = 136662, - [SMALL_STATE(3179)] = 136685, - [SMALL_STATE(3180)] = 136708, - [SMALL_STATE(3181)] = 136729, - [SMALL_STATE(3182)] = 136752, - [SMALL_STATE(3183)] = 136775, - [SMALL_STATE(3184)] = 136798, - [SMALL_STATE(3185)] = 136821, - [SMALL_STATE(3186)] = 136844, - [SMALL_STATE(3187)] = 136867, - [SMALL_STATE(3188)] = 136890, - [SMALL_STATE(3189)] = 136913, - [SMALL_STATE(3190)] = 136936, - [SMALL_STATE(3191)] = 136959, - [SMALL_STATE(3192)] = 136982, - [SMALL_STATE(3193)] = 137005, - [SMALL_STATE(3194)] = 137028, - [SMALL_STATE(3195)] = 137047, - [SMALL_STATE(3196)] = 137070, - [SMALL_STATE(3197)] = 137093, - [SMALL_STATE(3198)] = 137116, - [SMALL_STATE(3199)] = 137139, - [SMALL_STATE(3200)] = 137162, - [SMALL_STATE(3201)] = 137185, - [SMALL_STATE(3202)] = 137208, - [SMALL_STATE(3203)] = 137231, - [SMALL_STATE(3204)] = 137254, - [SMALL_STATE(3205)] = 137277, - [SMALL_STATE(3206)] = 137300, - [SMALL_STATE(3207)] = 137323, - [SMALL_STATE(3208)] = 137346, - [SMALL_STATE(3209)] = 137369, - [SMALL_STATE(3210)] = 137392, - [SMALL_STATE(3211)] = 137415, - [SMALL_STATE(3212)] = 137438, - [SMALL_STATE(3213)] = 137461, - [SMALL_STATE(3214)] = 137484, - [SMALL_STATE(3215)] = 137507, - [SMALL_STATE(3216)] = 137530, - [SMALL_STATE(3217)] = 137553, - [SMALL_STATE(3218)] = 137576, - [SMALL_STATE(3219)] = 137599, - [SMALL_STATE(3220)] = 137618, - [SMALL_STATE(3221)] = 137641, - [SMALL_STATE(3222)] = 137664, - [SMALL_STATE(3223)] = 137687, - [SMALL_STATE(3224)] = 137710, - [SMALL_STATE(3225)] = 137733, - [SMALL_STATE(3226)] = 137756, - [SMALL_STATE(3227)] = 137779, - [SMALL_STATE(3228)] = 137802, - [SMALL_STATE(3229)] = 137823, - [SMALL_STATE(3230)] = 137846, - [SMALL_STATE(3231)] = 137869, - [SMALL_STATE(3232)] = 137888, - [SMALL_STATE(3233)] = 137911, - [SMALL_STATE(3234)] = 137934, - [SMALL_STATE(3235)] = 137957, - [SMALL_STATE(3236)] = 137976, - [SMALL_STATE(3237)] = 137999, - [SMALL_STATE(3238)] = 138022, - [SMALL_STATE(3239)] = 138045, - [SMALL_STATE(3240)] = 138068, - [SMALL_STATE(3241)] = 138087, - [SMALL_STATE(3242)] = 138110, - [SMALL_STATE(3243)] = 138133, - [SMALL_STATE(3244)] = 138154, - [SMALL_STATE(3245)] = 138177, - [SMALL_STATE(3246)] = 138200, - [SMALL_STATE(3247)] = 138223, - [SMALL_STATE(3248)] = 138246, - [SMALL_STATE(3249)] = 138269, - [SMALL_STATE(3250)] = 138292, - [SMALL_STATE(3251)] = 138315, - [SMALL_STATE(3252)] = 138338, - [SMALL_STATE(3253)] = 138361, - [SMALL_STATE(3254)] = 138384, - [SMALL_STATE(3255)] = 138407, - [SMALL_STATE(3256)] = 138430, - [SMALL_STATE(3257)] = 138453, - [SMALL_STATE(3258)] = 138476, - [SMALL_STATE(3259)] = 138499, - [SMALL_STATE(3260)] = 138522, - [SMALL_STATE(3261)] = 138545, - [SMALL_STATE(3262)] = 138568, - [SMALL_STATE(3263)] = 138591, - [SMALL_STATE(3264)] = 138614, - [SMALL_STATE(3265)] = 138637, - [SMALL_STATE(3266)] = 138660, - [SMALL_STATE(3267)] = 138681, - [SMALL_STATE(3268)] = 138704, - [SMALL_STATE(3269)] = 138727, - [SMALL_STATE(3270)] = 138750, - [SMALL_STATE(3271)] = 138773, - [SMALL_STATE(3272)] = 138792, - [SMALL_STATE(3273)] = 138811, - [SMALL_STATE(3274)] = 138834, - [SMALL_STATE(3275)] = 138857, - [SMALL_STATE(3276)] = 138880, - [SMALL_STATE(3277)] = 138903, - [SMALL_STATE(3278)] = 138926, - [SMALL_STATE(3279)] = 138949, - [SMALL_STATE(3280)] = 138972, - [SMALL_STATE(3281)] = 138995, - [SMALL_STATE(3282)] = 139018, - [SMALL_STATE(3283)] = 139041, - [SMALL_STATE(3284)] = 139060, - [SMALL_STATE(3285)] = 139083, - [SMALL_STATE(3286)] = 139106, - [SMALL_STATE(3287)] = 139129, - [SMALL_STATE(3288)] = 139152, - [SMALL_STATE(3289)] = 139175, - [SMALL_STATE(3290)] = 139198, - [SMALL_STATE(3291)] = 139221, - [SMALL_STATE(3292)] = 139244, - [SMALL_STATE(3293)] = 139267, - [SMALL_STATE(3294)] = 139290, - [SMALL_STATE(3295)] = 139313, - [SMALL_STATE(3296)] = 139336, - [SMALL_STATE(3297)] = 139359, - [SMALL_STATE(3298)] = 139382, - [SMALL_STATE(3299)] = 139405, - [SMALL_STATE(3300)] = 139428, - [SMALL_STATE(3301)] = 139451, - [SMALL_STATE(3302)] = 139474, - [SMALL_STATE(3303)] = 139497, - [SMALL_STATE(3304)] = 139520, - [SMALL_STATE(3305)] = 139543, - [SMALL_STATE(3306)] = 139566, - [SMALL_STATE(3307)] = 139589, - [SMALL_STATE(3308)] = 139612, - [SMALL_STATE(3309)] = 139635, - [SMALL_STATE(3310)] = 139658, - [SMALL_STATE(3311)] = 139677, - [SMALL_STATE(3312)] = 139696, - [SMALL_STATE(3313)] = 139719, - [SMALL_STATE(3314)] = 139742, - [SMALL_STATE(3315)] = 139763, - [SMALL_STATE(3316)] = 139786, - [SMALL_STATE(3317)] = 139809, - [SMALL_STATE(3318)] = 139832, - [SMALL_STATE(3319)] = 139855, - [SMALL_STATE(3320)] = 139878, - [SMALL_STATE(3321)] = 139901, - [SMALL_STATE(3322)] = 139924, - [SMALL_STATE(3323)] = 139947, - [SMALL_STATE(3324)] = 139970, - [SMALL_STATE(3325)] = 139993, - [SMALL_STATE(3326)] = 140016, - [SMALL_STATE(3327)] = 140039, - [SMALL_STATE(3328)] = 140062, - [SMALL_STATE(3329)] = 140085, - [SMALL_STATE(3330)] = 140108, - [SMALL_STATE(3331)] = 140129, - [SMALL_STATE(3332)] = 140152, - [SMALL_STATE(3333)] = 140175, - [SMALL_STATE(3334)] = 140198, - [SMALL_STATE(3335)] = 140221, - [SMALL_STATE(3336)] = 140244, - [SMALL_STATE(3337)] = 140267, - [SMALL_STATE(3338)] = 140290, - [SMALL_STATE(3339)] = 140313, - [SMALL_STATE(3340)] = 140336, - [SMALL_STATE(3341)] = 140359, - [SMALL_STATE(3342)] = 140382, - [SMALL_STATE(3343)] = 140405, - [SMALL_STATE(3344)] = 140428, - [SMALL_STATE(3345)] = 140451, - [SMALL_STATE(3346)] = 140474, - [SMALL_STATE(3347)] = 140497, - [SMALL_STATE(3348)] = 140520, - [SMALL_STATE(3349)] = 140543, - [SMALL_STATE(3350)] = 140566, - [SMALL_STATE(3351)] = 140587, - [SMALL_STATE(3352)] = 140610, - [SMALL_STATE(3353)] = 140633, - [SMALL_STATE(3354)] = 140652, - [SMALL_STATE(3355)] = 140675, - [SMALL_STATE(3356)] = 140694, - [SMALL_STATE(3357)] = 140713, - [SMALL_STATE(3358)] = 140736, - [SMALL_STATE(3359)] = 140759, - [SMALL_STATE(3360)] = 140778, - [SMALL_STATE(3361)] = 140801, - [SMALL_STATE(3362)] = 140824, - [SMALL_STATE(3363)] = 140843, - [SMALL_STATE(3364)] = 140862, - [SMALL_STATE(3365)] = 140881, - [SMALL_STATE(3366)] = 140900, - [SMALL_STATE(3367)] = 140919, - [SMALL_STATE(3368)] = 140938, - [SMALL_STATE(3369)] = 140957, - [SMALL_STATE(3370)] = 140976, - [SMALL_STATE(3371)] = 140999, - [SMALL_STATE(3372)] = 141022, - [SMALL_STATE(3373)] = 141045, - [SMALL_STATE(3374)] = 141064, - [SMALL_STATE(3375)] = 141083, - [SMALL_STATE(3376)] = 141102, - [SMALL_STATE(3377)] = 141121, - [SMALL_STATE(3378)] = 141144, - [SMALL_STATE(3379)] = 141167, - [SMALL_STATE(3380)] = 141190, - [SMALL_STATE(3381)] = 141209, - [SMALL_STATE(3382)] = 141228, - [SMALL_STATE(3383)] = 141247, - [SMALL_STATE(3384)] = 141266, - [SMALL_STATE(3385)] = 141289, - [SMALL_STATE(3386)] = 141312, - [SMALL_STATE(3387)] = 141331, - [SMALL_STATE(3388)] = 141354, - [SMALL_STATE(3389)] = 141373, - [SMALL_STATE(3390)] = 141396, - [SMALL_STATE(3391)] = 141415, - [SMALL_STATE(3392)] = 141438, - [SMALL_STATE(3393)] = 141461, - [SMALL_STATE(3394)] = 141484, - [SMALL_STATE(3395)] = 141507, - [SMALL_STATE(3396)] = 141526, - [SMALL_STATE(3397)] = 141545, - [SMALL_STATE(3398)] = 141564, - [SMALL_STATE(3399)] = 141583, - [SMALL_STATE(3400)] = 141602, - [SMALL_STATE(3401)] = 141621, - [SMALL_STATE(3402)] = 141640, - [SMALL_STATE(3403)] = 141659, - [SMALL_STATE(3404)] = 141682, - [SMALL_STATE(3405)] = 141701, - [SMALL_STATE(3406)] = 141720, - [SMALL_STATE(3407)] = 141739, - [SMALL_STATE(3408)] = 141758, - [SMALL_STATE(3409)] = 141777, - [SMALL_STATE(3410)] = 141796, - [SMALL_STATE(3411)] = 141819, - [SMALL_STATE(3412)] = 141842, - [SMALL_STATE(3413)] = 141861, - [SMALL_STATE(3414)] = 141880, - [SMALL_STATE(3415)] = 141903, - [SMALL_STATE(3416)] = 141926, - [SMALL_STATE(3417)] = 141945, - [SMALL_STATE(3418)] = 141964, - [SMALL_STATE(3419)] = 141983, - [SMALL_STATE(3420)] = 142002, - [SMALL_STATE(3421)] = 142021, - [SMALL_STATE(3422)] = 142044, - [SMALL_STATE(3423)] = 142063, - [SMALL_STATE(3424)] = 142082, - [SMALL_STATE(3425)] = 142105, - [SMALL_STATE(3426)] = 142124, - [SMALL_STATE(3427)] = 142147, - [SMALL_STATE(3428)] = 142170, - [SMALL_STATE(3429)] = 142189, - [SMALL_STATE(3430)] = 142208, - [SMALL_STATE(3431)] = 142227, - [SMALL_STATE(3432)] = 142246, - [SMALL_STATE(3433)] = 142269, - [SMALL_STATE(3434)] = 142292, - [SMALL_STATE(3435)] = 142315, - [SMALL_STATE(3436)] = 142334, - [SMALL_STATE(3437)] = 142357, - [SMALL_STATE(3438)] = 142376, - [SMALL_STATE(3439)] = 142395, - [SMALL_STATE(3440)] = 142414, - [SMALL_STATE(3441)] = 142433, - [SMALL_STATE(3442)] = 142452, - [SMALL_STATE(3443)] = 142475, - [SMALL_STATE(3444)] = 142494, - [SMALL_STATE(3445)] = 142513, - [SMALL_STATE(3446)] = 142532, - [SMALL_STATE(3447)] = 142551, - [SMALL_STATE(3448)] = 142570, - [SMALL_STATE(3449)] = 142593, - [SMALL_STATE(3450)] = 142616, - [SMALL_STATE(3451)] = 142635, - [SMALL_STATE(3452)] = 142654, - [SMALL_STATE(3453)] = 142677, - [SMALL_STATE(3454)] = 142700, - [SMALL_STATE(3455)] = 142719, - [SMALL_STATE(3456)] = 142738, - [SMALL_STATE(3457)] = 142757, - [SMALL_STATE(3458)] = 142776, - [SMALL_STATE(3459)] = 142795, - [SMALL_STATE(3460)] = 142814, - [SMALL_STATE(3461)] = 142837, - [SMALL_STATE(3462)] = 142860, - [SMALL_STATE(3463)] = 142879, - [SMALL_STATE(3464)] = 142902, - [SMALL_STATE(3465)] = 142921, - [SMALL_STATE(3466)] = 142940, - [SMALL_STATE(3467)] = 142963, - [SMALL_STATE(3468)] = 142982, - [SMALL_STATE(3469)] = 143005, - [SMALL_STATE(3470)] = 143028, - [SMALL_STATE(3471)] = 143047, - [SMALL_STATE(3472)] = 143066, - [SMALL_STATE(3473)] = 143085, - [SMALL_STATE(3474)] = 143108, - [SMALL_STATE(3475)] = 143131, - [SMALL_STATE(3476)] = 143150, - [SMALL_STATE(3477)] = 143169, - [SMALL_STATE(3478)] = 143192, - [SMALL_STATE(3479)] = 143211, - [SMALL_STATE(3480)] = 143234, - [SMALL_STATE(3481)] = 143257, - [SMALL_STATE(3482)] = 143276, - [SMALL_STATE(3483)] = 143295, - [SMALL_STATE(3484)] = 143318, - [SMALL_STATE(3485)] = 143337, - [SMALL_STATE(3486)] = 143356, - [SMALL_STATE(3487)] = 143375, - [SMALL_STATE(3488)] = 143394, - [SMALL_STATE(3489)] = 143413, - [SMALL_STATE(3490)] = 143432, - [SMALL_STATE(3491)] = 143451, - [SMALL_STATE(3492)] = 143474, - [SMALL_STATE(3493)] = 143497, - [SMALL_STATE(3494)] = 143516, - [SMALL_STATE(3495)] = 143539, - [SMALL_STATE(3496)] = 143558, - [SMALL_STATE(3497)] = 143581, - [SMALL_STATE(3498)] = 143600, - [SMALL_STATE(3499)] = 143623, - [SMALL_STATE(3500)] = 143642, - [SMALL_STATE(3501)] = 143661, - [SMALL_STATE(3502)] = 143680, - [SMALL_STATE(3503)] = 143703, - [SMALL_STATE(3504)] = 143722, - [SMALL_STATE(3505)] = 143741, - [SMALL_STATE(3506)] = 143764, - [SMALL_STATE(3507)] = 143783, - [SMALL_STATE(3508)] = 143802, - [SMALL_STATE(3509)] = 143821, - [SMALL_STATE(3510)] = 143844, - [SMALL_STATE(3511)] = 143867, - [SMALL_STATE(3512)] = 143890, - [SMALL_STATE(3513)] = 143913, - [SMALL_STATE(3514)] = 143936, - [SMALL_STATE(3515)] = 143959, - [SMALL_STATE(3516)] = 143982, - [SMALL_STATE(3517)] = 144005, - [SMALL_STATE(3518)] = 144028, - [SMALL_STATE(3519)] = 144051, - [SMALL_STATE(3520)] = 144070, - [SMALL_STATE(3521)] = 144093, - [SMALL_STATE(3522)] = 144116, - [SMALL_STATE(3523)] = 144135, - [SMALL_STATE(3524)] = 144158, - [SMALL_STATE(3525)] = 144181, - [SMALL_STATE(3526)] = 144202, - [SMALL_STATE(3527)] = 144225, - [SMALL_STATE(3528)] = 144248, - [SMALL_STATE(3529)] = 144271, - [SMALL_STATE(3530)] = 144294, - [SMALL_STATE(3531)] = 144317, - [SMALL_STATE(3532)] = 144340, - [SMALL_STATE(3533)] = 144363, - [SMALL_STATE(3534)] = 144386, - [SMALL_STATE(3535)] = 144409, - [SMALL_STATE(3536)] = 144432, - [SMALL_STATE(3537)] = 144453, - [SMALL_STATE(3538)] = 144476, - [SMALL_STATE(3539)] = 144499, - [SMALL_STATE(3540)] = 144522, - [SMALL_STATE(3541)] = 144545, - [SMALL_STATE(3542)] = 144568, - [SMALL_STATE(3543)] = 144591, - [SMALL_STATE(3544)] = 144614, - [SMALL_STATE(3545)] = 144637, - [SMALL_STATE(3546)] = 144660, - [SMALL_STATE(3547)] = 144681, - [SMALL_STATE(3548)] = 144704, - [SMALL_STATE(3549)] = 144727, - [SMALL_STATE(3550)] = 144750, - [SMALL_STATE(3551)] = 144773, - [SMALL_STATE(3552)] = 144796, - [SMALL_STATE(3553)] = 144819, - [SMALL_STATE(3554)] = 144842, - [SMALL_STATE(3555)] = 144863, - [SMALL_STATE(3556)] = 144886, - [SMALL_STATE(3557)] = 144904, - [SMALL_STATE(3558)] = 144924, - [SMALL_STATE(3559)] = 144944, - [SMALL_STATE(3560)] = 144964, - [SMALL_STATE(3561)] = 144984, - [SMALL_STATE(3562)] = 145004, - [SMALL_STATE(3563)] = 145024, - [SMALL_STATE(3564)] = 145044, - [SMALL_STATE(3565)] = 145064, - [SMALL_STATE(3566)] = 145084, - [SMALL_STATE(3567)] = 145104, - [SMALL_STATE(3568)] = 145124, - [SMALL_STATE(3569)] = 145144, - [SMALL_STATE(3570)] = 145164, - [SMALL_STATE(3571)] = 145184, - [SMALL_STATE(3572)] = 145204, - [SMALL_STATE(3573)] = 145224, - [SMALL_STATE(3574)] = 145244, - [SMALL_STATE(3575)] = 145264, - [SMALL_STATE(3576)] = 145284, - [SMALL_STATE(3577)] = 145304, - [SMALL_STATE(3578)] = 145324, - [SMALL_STATE(3579)] = 145344, - [SMALL_STATE(3580)] = 145364, - [SMALL_STATE(3581)] = 145384, - [SMALL_STATE(3582)] = 145404, - [SMALL_STATE(3583)] = 145424, - [SMALL_STATE(3584)] = 145444, - [SMALL_STATE(3585)] = 145464, - [SMALL_STATE(3586)] = 145484, - [SMALL_STATE(3587)] = 145504, - [SMALL_STATE(3588)] = 145524, - [SMALL_STATE(3589)] = 145544, - [SMALL_STATE(3590)] = 145564, - [SMALL_STATE(3591)] = 145584, - [SMALL_STATE(3592)] = 145604, - [SMALL_STATE(3593)] = 145624, - [SMALL_STATE(3594)] = 145644, - [SMALL_STATE(3595)] = 145664, - [SMALL_STATE(3596)] = 145684, - [SMALL_STATE(3597)] = 145704, - [SMALL_STATE(3598)] = 145724, - [SMALL_STATE(3599)] = 145744, - [SMALL_STATE(3600)] = 145762, - [SMALL_STATE(3601)] = 145782, - [SMALL_STATE(3602)] = 145802, - [SMALL_STATE(3603)] = 145822, - [SMALL_STATE(3604)] = 145842, - [SMALL_STATE(3605)] = 145862, - [SMALL_STATE(3606)] = 145882, - [SMALL_STATE(3607)] = 145902, - [SMALL_STATE(3608)] = 145922, - [SMALL_STATE(3609)] = 145942, - [SMALL_STATE(3610)] = 145962, - [SMALL_STATE(3611)] = 145982, - [SMALL_STATE(3612)] = 146002, - [SMALL_STATE(3613)] = 146022, - [SMALL_STATE(3614)] = 146042, - [SMALL_STATE(3615)] = 146062, - [SMALL_STATE(3616)] = 146082, - [SMALL_STATE(3617)] = 146102, - [SMALL_STATE(3618)] = 146122, - [SMALL_STATE(3619)] = 146142, - [SMALL_STATE(3620)] = 146162, - [SMALL_STATE(3621)] = 146182, - [SMALL_STATE(3622)] = 146202, - [SMALL_STATE(3623)] = 146222, - [SMALL_STATE(3624)] = 146242, - [SMALL_STATE(3625)] = 146262, - [SMALL_STATE(3626)] = 146282, - [SMALL_STATE(3627)] = 146302, - [SMALL_STATE(3628)] = 146322, - [SMALL_STATE(3629)] = 146340, - [SMALL_STATE(3630)] = 146360, - [SMALL_STATE(3631)] = 146380, - [SMALL_STATE(3632)] = 146400, - [SMALL_STATE(3633)] = 146418, - [SMALL_STATE(3634)] = 146438, - [SMALL_STATE(3635)] = 146458, - [SMALL_STATE(3636)] = 146478, - [SMALL_STATE(3637)] = 146498, - [SMALL_STATE(3638)] = 146518, - [SMALL_STATE(3639)] = 146538, - [SMALL_STATE(3640)] = 146558, - [SMALL_STATE(3641)] = 146578, - [SMALL_STATE(3642)] = 146598, - [SMALL_STATE(3643)] = 146618, - [SMALL_STATE(3644)] = 146638, - [SMALL_STATE(3645)] = 146658, - [SMALL_STATE(3646)] = 146678, - [SMALL_STATE(3647)] = 146698, - [SMALL_STATE(3648)] = 146718, - [SMALL_STATE(3649)] = 146738, - [SMALL_STATE(3650)] = 146758, - [SMALL_STATE(3651)] = 146778, - [SMALL_STATE(3652)] = 146798, - [SMALL_STATE(3653)] = 146818, - [SMALL_STATE(3654)] = 146838, - [SMALL_STATE(3655)] = 146858, - [SMALL_STATE(3656)] = 146878, - [SMALL_STATE(3657)] = 146898, - [SMALL_STATE(3658)] = 146918, - [SMALL_STATE(3659)] = 146938, - [SMALL_STATE(3660)] = 146958, - [SMALL_STATE(3661)] = 146978, - [SMALL_STATE(3662)] = 146998, - [SMALL_STATE(3663)] = 147018, - [SMALL_STATE(3664)] = 147038, - [SMALL_STATE(3665)] = 147058, - [SMALL_STATE(3666)] = 147078, - [SMALL_STATE(3667)] = 147098, - [SMALL_STATE(3668)] = 147118, - [SMALL_STATE(3669)] = 147138, - [SMALL_STATE(3670)] = 147158, - [SMALL_STATE(3671)] = 147178, - [SMALL_STATE(3672)] = 147198, - [SMALL_STATE(3673)] = 147218, - [SMALL_STATE(3674)] = 147238, - [SMALL_STATE(3675)] = 147258, - [SMALL_STATE(3676)] = 147278, - [SMALL_STATE(3677)] = 147298, - [SMALL_STATE(3678)] = 147318, - [SMALL_STATE(3679)] = 147338, - [SMALL_STATE(3680)] = 147356, - [SMALL_STATE(3681)] = 147376, - [SMALL_STATE(3682)] = 147396, - [SMALL_STATE(3683)] = 147416, - [SMALL_STATE(3684)] = 147436, - [SMALL_STATE(3685)] = 147456, - [SMALL_STATE(3686)] = 147476, - [SMALL_STATE(3687)] = 147496, - [SMALL_STATE(3688)] = 147516, - [SMALL_STATE(3689)] = 147536, - [SMALL_STATE(3690)] = 147556, - [SMALL_STATE(3691)] = 147574, - [SMALL_STATE(3692)] = 147594, - [SMALL_STATE(3693)] = 147614, - [SMALL_STATE(3694)] = 147632, - [SMALL_STATE(3695)] = 147652, - [SMALL_STATE(3696)] = 147672, - [SMALL_STATE(3697)] = 147692, - [SMALL_STATE(3698)] = 147712, - [SMALL_STATE(3699)] = 147730, - [SMALL_STATE(3700)] = 147750, - [SMALL_STATE(3701)] = 147770, - [SMALL_STATE(3702)] = 147790, - [SMALL_STATE(3703)] = 147808, - [SMALL_STATE(3704)] = 147828, - [SMALL_STATE(3705)] = 147848, - [SMALL_STATE(3706)] = 147868, - [SMALL_STATE(3707)] = 147888, - [SMALL_STATE(3708)] = 147908, - [SMALL_STATE(3709)] = 147928, - [SMALL_STATE(3710)] = 147948, - [SMALL_STATE(3711)] = 147968, - [SMALL_STATE(3712)] = 147988, - [SMALL_STATE(3713)] = 148008, - [SMALL_STATE(3714)] = 148028, - [SMALL_STATE(3715)] = 148048, - [SMALL_STATE(3716)] = 148068, - [SMALL_STATE(3717)] = 148088, - [SMALL_STATE(3718)] = 148108, - [SMALL_STATE(3719)] = 148128, - [SMALL_STATE(3720)] = 148148, - [SMALL_STATE(3721)] = 148168, - [SMALL_STATE(3722)] = 148188, - [SMALL_STATE(3723)] = 148208, - [SMALL_STATE(3724)] = 148228, - [SMALL_STATE(3725)] = 148248, - [SMALL_STATE(3726)] = 148268, - [SMALL_STATE(3727)] = 148286, - [SMALL_STATE(3728)] = 148306, - [SMALL_STATE(3729)] = 148326, - [SMALL_STATE(3730)] = 148346, - [SMALL_STATE(3731)] = 148364, - [SMALL_STATE(3732)] = 148384, - [SMALL_STATE(3733)] = 148404, - [SMALL_STATE(3734)] = 148424, - [SMALL_STATE(3735)] = 148444, - [SMALL_STATE(3736)] = 148464, - [SMALL_STATE(3737)] = 148484, - [SMALL_STATE(3738)] = 148502, - [SMALL_STATE(3739)] = 148522, - [SMALL_STATE(3740)] = 148542, - [SMALL_STATE(3741)] = 148562, - [SMALL_STATE(3742)] = 148582, - [SMALL_STATE(3743)] = 148602, - [SMALL_STATE(3744)] = 148622, - [SMALL_STATE(3745)] = 148642, - [SMALL_STATE(3746)] = 148662, - [SMALL_STATE(3747)] = 148682, - [SMALL_STATE(3748)] = 148702, - [SMALL_STATE(3749)] = 148722, - [SMALL_STATE(3750)] = 148742, - [SMALL_STATE(3751)] = 148762, - [SMALL_STATE(3752)] = 148782, - [SMALL_STATE(3753)] = 148802, - [SMALL_STATE(3754)] = 148822, - [SMALL_STATE(3755)] = 148842, - [SMALL_STATE(3756)] = 148862, - [SMALL_STATE(3757)] = 148882, - [SMALL_STATE(3758)] = 148902, - [SMALL_STATE(3759)] = 148922, - [SMALL_STATE(3760)] = 148942, - [SMALL_STATE(3761)] = 148962, - [SMALL_STATE(3762)] = 148982, - [SMALL_STATE(3763)] = 149002, - [SMALL_STATE(3764)] = 149022, - [SMALL_STATE(3765)] = 149042, - [SMALL_STATE(3766)] = 149062, - [SMALL_STATE(3767)] = 149082, - [SMALL_STATE(3768)] = 149102, - [SMALL_STATE(3769)] = 149122, - [SMALL_STATE(3770)] = 149142, - [SMALL_STATE(3771)] = 149162, - [SMALL_STATE(3772)] = 149182, - [SMALL_STATE(3773)] = 149202, - [SMALL_STATE(3774)] = 149222, - [SMALL_STATE(3775)] = 149242, - [SMALL_STATE(3776)] = 149262, - [SMALL_STATE(3777)] = 149282, - [SMALL_STATE(3778)] = 149302, - [SMALL_STATE(3779)] = 149322, - [SMALL_STATE(3780)] = 149342, - [SMALL_STATE(3781)] = 149362, - [SMALL_STATE(3782)] = 149382, - [SMALL_STATE(3783)] = 149402, - [SMALL_STATE(3784)] = 149422, - [SMALL_STATE(3785)] = 149442, - [SMALL_STATE(3786)] = 149462, - [SMALL_STATE(3787)] = 149482, - [SMALL_STATE(3788)] = 149502, - [SMALL_STATE(3789)] = 149522, - [SMALL_STATE(3790)] = 149540, - [SMALL_STATE(3791)] = 149560, - [SMALL_STATE(3792)] = 149578, - [SMALL_STATE(3793)] = 149598, - [SMALL_STATE(3794)] = 149618, - [SMALL_STATE(3795)] = 149638, - [SMALL_STATE(3796)] = 149658, - [SMALL_STATE(3797)] = 149678, - [SMALL_STATE(3798)] = 149698, - [SMALL_STATE(3799)] = 149718, - [SMALL_STATE(3800)] = 149738, - [SMALL_STATE(3801)] = 149758, - [SMALL_STATE(3802)] = 149778, - [SMALL_STATE(3803)] = 149798, - [SMALL_STATE(3804)] = 149818, - [SMALL_STATE(3805)] = 149838, - [SMALL_STATE(3806)] = 149858, - [SMALL_STATE(3807)] = 149878, - [SMALL_STATE(3808)] = 149898, - [SMALL_STATE(3809)] = 149918, - [SMALL_STATE(3810)] = 149938, - [SMALL_STATE(3811)] = 149958, - [SMALL_STATE(3812)] = 149978, - [SMALL_STATE(3813)] = 149998, - [SMALL_STATE(3814)] = 150018, - [SMALL_STATE(3815)] = 150038, - [SMALL_STATE(3816)] = 150058, - [SMALL_STATE(3817)] = 150076, - [SMALL_STATE(3818)] = 150096, - [SMALL_STATE(3819)] = 150116, - [SMALL_STATE(3820)] = 150136, - [SMALL_STATE(3821)] = 150156, - [SMALL_STATE(3822)] = 150176, - [SMALL_STATE(3823)] = 150196, - [SMALL_STATE(3824)] = 150216, - [SMALL_STATE(3825)] = 150236, - [SMALL_STATE(3826)] = 150256, - [SMALL_STATE(3827)] = 150276, - [SMALL_STATE(3828)] = 150296, - [SMALL_STATE(3829)] = 150316, - [SMALL_STATE(3830)] = 150336, - [SMALL_STATE(3831)] = 150356, - [SMALL_STATE(3832)] = 150376, - [SMALL_STATE(3833)] = 150396, - [SMALL_STATE(3834)] = 150416, - [SMALL_STATE(3835)] = 150436, - [SMALL_STATE(3836)] = 150456, - [SMALL_STATE(3837)] = 150476, - [SMALL_STATE(3838)] = 150496, - [SMALL_STATE(3839)] = 150516, - [SMALL_STATE(3840)] = 150536, - [SMALL_STATE(3841)] = 150556, - [SMALL_STATE(3842)] = 150574, - [SMALL_STATE(3843)] = 150594, - [SMALL_STATE(3844)] = 150614, - [SMALL_STATE(3845)] = 150634, - [SMALL_STATE(3846)] = 150654, - [SMALL_STATE(3847)] = 150674, - [SMALL_STATE(3848)] = 150694, - [SMALL_STATE(3849)] = 150712, - [SMALL_STATE(3850)] = 150730, - [SMALL_STATE(3851)] = 150750, - [SMALL_STATE(3852)] = 150770, - [SMALL_STATE(3853)] = 150790, - [SMALL_STATE(3854)] = 150810, - [SMALL_STATE(3855)] = 150830, - [SMALL_STATE(3856)] = 150850, - [SMALL_STATE(3857)] = 150870, - [SMALL_STATE(3858)] = 150890, - [SMALL_STATE(3859)] = 150910, - [SMALL_STATE(3860)] = 150928, - [SMALL_STATE(3861)] = 150948, - [SMALL_STATE(3862)] = 150968, - [SMALL_STATE(3863)] = 150988, - [SMALL_STATE(3864)] = 151008, - [SMALL_STATE(3865)] = 151028, - [SMALL_STATE(3866)] = 151048, - [SMALL_STATE(3867)] = 151068, - [SMALL_STATE(3868)] = 151086, - [SMALL_STATE(3869)] = 151106, - [SMALL_STATE(3870)] = 151126, - [SMALL_STATE(3871)] = 151146, - [SMALL_STATE(3872)] = 151166, - [SMALL_STATE(3873)] = 151184, - [SMALL_STATE(3874)] = 151204, - [SMALL_STATE(3875)] = 151224, - [SMALL_STATE(3876)] = 151244, - [SMALL_STATE(3877)] = 151262, - [SMALL_STATE(3878)] = 151282, - [SMALL_STATE(3879)] = 151302, - [SMALL_STATE(3880)] = 151320, - [SMALL_STATE(3881)] = 151340, - [SMALL_STATE(3882)] = 151360, - [SMALL_STATE(3883)] = 151380, - [SMALL_STATE(3884)] = 151400, - [SMALL_STATE(3885)] = 151420, - [SMALL_STATE(3886)] = 151440, - [SMALL_STATE(3887)] = 151460, - [SMALL_STATE(3888)] = 151480, - [SMALL_STATE(3889)] = 151500, - [SMALL_STATE(3890)] = 151520, - [SMALL_STATE(3891)] = 151540, - [SMALL_STATE(3892)] = 151560, - [SMALL_STATE(3893)] = 151580, - [SMALL_STATE(3894)] = 151600, - [SMALL_STATE(3895)] = 151620, - [SMALL_STATE(3896)] = 151640, - [SMALL_STATE(3897)] = 151660, - [SMALL_STATE(3898)] = 151680, - [SMALL_STATE(3899)] = 151700, - [SMALL_STATE(3900)] = 151720, - [SMALL_STATE(3901)] = 151740, - [SMALL_STATE(3902)] = 151760, - [SMALL_STATE(3903)] = 151780, - [SMALL_STATE(3904)] = 151800, - [SMALL_STATE(3905)] = 151820, - [SMALL_STATE(3906)] = 151840, - [SMALL_STATE(3907)] = 151860, - [SMALL_STATE(3908)] = 151880, - [SMALL_STATE(3909)] = 151900, - [SMALL_STATE(3910)] = 151920, - [SMALL_STATE(3911)] = 151940, - [SMALL_STATE(3912)] = 151958, - [SMALL_STATE(3913)] = 151978, - [SMALL_STATE(3914)] = 151998, - [SMALL_STATE(3915)] = 152018, - [SMALL_STATE(3916)] = 152038, - [SMALL_STATE(3917)] = 152058, - [SMALL_STATE(3918)] = 152078, - [SMALL_STATE(3919)] = 152098, - [SMALL_STATE(3920)] = 152118, - [SMALL_STATE(3921)] = 152138, - [SMALL_STATE(3922)] = 152158, - [SMALL_STATE(3923)] = 152178, - [SMALL_STATE(3924)] = 152198, - [SMALL_STATE(3925)] = 152218, - [SMALL_STATE(3926)] = 152238, - [SMALL_STATE(3927)] = 152258, - [SMALL_STATE(3928)] = 152278, - [SMALL_STATE(3929)] = 152298, - [SMALL_STATE(3930)] = 152318, - [SMALL_STATE(3931)] = 152338, - [SMALL_STATE(3932)] = 152358, - [SMALL_STATE(3933)] = 152378, - [SMALL_STATE(3934)] = 152398, - [SMALL_STATE(3935)] = 152418, - [SMALL_STATE(3936)] = 152438, - [SMALL_STATE(3937)] = 152458, - [SMALL_STATE(3938)] = 152478, - [SMALL_STATE(3939)] = 152498, - [SMALL_STATE(3940)] = 152518, - [SMALL_STATE(3941)] = 152538, - [SMALL_STATE(3942)] = 152558, - [SMALL_STATE(3943)] = 152578, - [SMALL_STATE(3944)] = 152596, - [SMALL_STATE(3945)] = 152614, - [SMALL_STATE(3946)] = 152632, - [SMALL_STATE(3947)] = 152652, - [SMALL_STATE(3948)] = 152672, - [SMALL_STATE(3949)] = 152692, - [SMALL_STATE(3950)] = 152712, - [SMALL_STATE(3951)] = 152732, - [SMALL_STATE(3952)] = 152752, - [SMALL_STATE(3953)] = 152770, - [SMALL_STATE(3954)] = 152790, - [SMALL_STATE(3955)] = 152810, - [SMALL_STATE(3956)] = 152828, - [SMALL_STATE(3957)] = 152848, - [SMALL_STATE(3958)] = 152868, - [SMALL_STATE(3959)] = 152888, - [SMALL_STATE(3960)] = 152908, - [SMALL_STATE(3961)] = 152928, - [SMALL_STATE(3962)] = 152948, - [SMALL_STATE(3963)] = 152968, - [SMALL_STATE(3964)] = 152986, - [SMALL_STATE(3965)] = 153006, - [SMALL_STATE(3966)] = 153024, - [SMALL_STATE(3967)] = 153044, - [SMALL_STATE(3968)] = 153064, - [SMALL_STATE(3969)] = 153084, - [SMALL_STATE(3970)] = 153102, - [SMALL_STATE(3971)] = 153122, - [SMALL_STATE(3972)] = 153142, - [SMALL_STATE(3973)] = 153162, - [SMALL_STATE(3974)] = 153182, - [SMALL_STATE(3975)] = 153202, - [SMALL_STATE(3976)] = 153222, - [SMALL_STATE(3977)] = 153242, - [SMALL_STATE(3978)] = 153262, - [SMALL_STATE(3979)] = 153282, - [SMALL_STATE(3980)] = 153302, - [SMALL_STATE(3981)] = 153322, - [SMALL_STATE(3982)] = 153342, - [SMALL_STATE(3983)] = 153362, - [SMALL_STATE(3984)] = 153382, - [SMALL_STATE(3985)] = 153402, - [SMALL_STATE(3986)] = 153422, - [SMALL_STATE(3987)] = 153442, - [SMALL_STATE(3988)] = 153462, - [SMALL_STATE(3989)] = 153482, - [SMALL_STATE(3990)] = 153502, - [SMALL_STATE(3991)] = 153522, - [SMALL_STATE(3992)] = 153542, - [SMALL_STATE(3993)] = 153562, - [SMALL_STATE(3994)] = 153582, - [SMALL_STATE(3995)] = 153602, - [SMALL_STATE(3996)] = 153622, - [SMALL_STATE(3997)] = 153642, - [SMALL_STATE(3998)] = 153662, - [SMALL_STATE(3999)] = 153680, - [SMALL_STATE(4000)] = 153700, - [SMALL_STATE(4001)] = 153720, - [SMALL_STATE(4002)] = 153740, - [SMALL_STATE(4003)] = 153760, - [SMALL_STATE(4004)] = 153778, - [SMALL_STATE(4005)] = 153798, - [SMALL_STATE(4006)] = 153818, - [SMALL_STATE(4007)] = 153838, - [SMALL_STATE(4008)] = 153856, - [SMALL_STATE(4009)] = 153876, - [SMALL_STATE(4010)] = 153896, - [SMALL_STATE(4011)] = 153916, - [SMALL_STATE(4012)] = 153936, - [SMALL_STATE(4013)] = 153956, - [SMALL_STATE(4014)] = 153976, - [SMALL_STATE(4015)] = 153996, - [SMALL_STATE(4016)] = 154016, - [SMALL_STATE(4017)] = 154034, - [SMALL_STATE(4018)] = 154054, - [SMALL_STATE(4019)] = 154074, - [SMALL_STATE(4020)] = 154094, - [SMALL_STATE(4021)] = 154114, - [SMALL_STATE(4022)] = 154134, - [SMALL_STATE(4023)] = 154154, - [SMALL_STATE(4024)] = 154174, - [SMALL_STATE(4025)] = 154194, - [SMALL_STATE(4026)] = 154212, - [SMALL_STATE(4027)] = 154232, - [SMALL_STATE(4028)] = 154252, - [SMALL_STATE(4029)] = 154270, - [SMALL_STATE(4030)] = 154290, - [SMALL_STATE(4031)] = 154310, - [SMALL_STATE(4032)] = 154330, - [SMALL_STATE(4033)] = 154350, - [SMALL_STATE(4034)] = 154370, - [SMALL_STATE(4035)] = 154390, - [SMALL_STATE(4036)] = 154410, - [SMALL_STATE(4037)] = 154430, - [SMALL_STATE(4038)] = 154450, - [SMALL_STATE(4039)] = 154468, - [SMALL_STATE(4040)] = 154488, - [SMALL_STATE(4041)] = 154508, - [SMALL_STATE(4042)] = 154528, - [SMALL_STATE(4043)] = 154548, - [SMALL_STATE(4044)] = 154568, - [SMALL_STATE(4045)] = 154586, - [SMALL_STATE(4046)] = 154606, - [SMALL_STATE(4047)] = 154626, - [SMALL_STATE(4048)] = 154646, - [SMALL_STATE(4049)] = 154666, - [SMALL_STATE(4050)] = 154686, - [SMALL_STATE(4051)] = 154704, - [SMALL_STATE(4052)] = 154724, - [SMALL_STATE(4053)] = 154744, - [SMALL_STATE(4054)] = 154762, - [SMALL_STATE(4055)] = 154782, - [SMALL_STATE(4056)] = 154802, - [SMALL_STATE(4057)] = 154820, - [SMALL_STATE(4058)] = 154840, - [SMALL_STATE(4059)] = 154860, - [SMALL_STATE(4060)] = 154880, - [SMALL_STATE(4061)] = 154900, - [SMALL_STATE(4062)] = 154920, - [SMALL_STATE(4063)] = 154938, - [SMALL_STATE(4064)] = 154958, - [SMALL_STATE(4065)] = 154978, - [SMALL_STATE(4066)] = 154998, - [SMALL_STATE(4067)] = 155018, - [SMALL_STATE(4068)] = 155036, - [SMALL_STATE(4069)] = 155056, - [SMALL_STATE(4070)] = 155076, - [SMALL_STATE(4071)] = 155094, - [SMALL_STATE(4072)] = 155114, - [SMALL_STATE(4073)] = 155134, - [SMALL_STATE(4074)] = 155154, - [SMALL_STATE(4075)] = 155174, - [SMALL_STATE(4076)] = 155194, - [SMALL_STATE(4077)] = 155214, - [SMALL_STATE(4078)] = 155234, - [SMALL_STATE(4079)] = 155254, - [SMALL_STATE(4080)] = 155274, - [SMALL_STATE(4081)] = 155294, - [SMALL_STATE(4082)] = 155314, - [SMALL_STATE(4083)] = 155334, - [SMALL_STATE(4084)] = 155354, - [SMALL_STATE(4085)] = 155374, - [SMALL_STATE(4086)] = 155394, - [SMALL_STATE(4087)] = 155411, - [SMALL_STATE(4088)] = 155428, - [SMALL_STATE(4089)] = 155445, - [SMALL_STATE(4090)] = 155462, - [SMALL_STATE(4091)] = 155479, - [SMALL_STATE(4092)] = 155496, - [SMALL_STATE(4093)] = 155513, - [SMALL_STATE(4094)] = 155530, - [SMALL_STATE(4095)] = 155547, - [SMALL_STATE(4096)] = 155564, - [SMALL_STATE(4097)] = 155581, - [SMALL_STATE(4098)] = 155598, - [SMALL_STATE(4099)] = 155615, - [SMALL_STATE(4100)] = 155632, - [SMALL_STATE(4101)] = 155649, - [SMALL_STATE(4102)] = 155666, - [SMALL_STATE(4103)] = 155683, - [SMALL_STATE(4104)] = 155700, - [SMALL_STATE(4105)] = 155717, - [SMALL_STATE(4106)] = 155734, - [SMALL_STATE(4107)] = 155751, - [SMALL_STATE(4108)] = 155768, - [SMALL_STATE(4109)] = 155785, - [SMALL_STATE(4110)] = 155802, - [SMALL_STATE(4111)] = 155819, - [SMALL_STATE(4112)] = 155836, - [SMALL_STATE(4113)] = 155853, - [SMALL_STATE(4114)] = 155870, - [SMALL_STATE(4115)] = 155887, - [SMALL_STATE(4116)] = 155904, - [SMALL_STATE(4117)] = 155921, - [SMALL_STATE(4118)] = 155938, - [SMALL_STATE(4119)] = 155955, - [SMALL_STATE(4120)] = 155972, - [SMALL_STATE(4121)] = 155989, - [SMALL_STATE(4122)] = 156006, - [SMALL_STATE(4123)] = 156023, - [SMALL_STATE(4124)] = 156040, - [SMALL_STATE(4125)] = 156057, - [SMALL_STATE(4126)] = 156074, - [SMALL_STATE(4127)] = 156091, - [SMALL_STATE(4128)] = 156108, - [SMALL_STATE(4129)] = 156125, - [SMALL_STATE(4130)] = 156142, - [SMALL_STATE(4131)] = 156159, - [SMALL_STATE(4132)] = 156176, - [SMALL_STATE(4133)] = 156193, - [SMALL_STATE(4134)] = 156210, - [SMALL_STATE(4135)] = 156227, - [SMALL_STATE(4136)] = 156244, - [SMALL_STATE(4137)] = 156261, - [SMALL_STATE(4138)] = 156278, - [SMALL_STATE(4139)] = 156295, - [SMALL_STATE(4140)] = 156312, - [SMALL_STATE(4141)] = 156329, - [SMALL_STATE(4142)] = 156346, - [SMALL_STATE(4143)] = 156363, - [SMALL_STATE(4144)] = 156380, - [SMALL_STATE(4145)] = 156397, - [SMALL_STATE(4146)] = 156414, - [SMALL_STATE(4147)] = 156431, - [SMALL_STATE(4148)] = 156448, - [SMALL_STATE(4149)] = 156465, - [SMALL_STATE(4150)] = 156482, - [SMALL_STATE(4151)] = 156499, - [SMALL_STATE(4152)] = 156516, - [SMALL_STATE(4153)] = 156533, - [SMALL_STATE(4154)] = 156550, - [SMALL_STATE(4155)] = 156567, - [SMALL_STATE(4156)] = 156584, - [SMALL_STATE(4157)] = 156601, - [SMALL_STATE(4158)] = 156618, - [SMALL_STATE(4159)] = 156635, - [SMALL_STATE(4160)] = 156652, - [SMALL_STATE(4161)] = 156669, - [SMALL_STATE(4162)] = 156686, - [SMALL_STATE(4163)] = 156703, - [SMALL_STATE(4164)] = 156720, - [SMALL_STATE(4165)] = 156737, - [SMALL_STATE(4166)] = 156754, - [SMALL_STATE(4167)] = 156771, - [SMALL_STATE(4168)] = 156788, - [SMALL_STATE(4169)] = 156805, - [SMALL_STATE(4170)] = 156822, - [SMALL_STATE(4171)] = 156839, - [SMALL_STATE(4172)] = 156856, - [SMALL_STATE(4173)] = 156873, - [SMALL_STATE(4174)] = 156890, - [SMALL_STATE(4175)] = 156907, - [SMALL_STATE(4176)] = 156924, - [SMALL_STATE(4177)] = 156941, - [SMALL_STATE(4178)] = 156958, - [SMALL_STATE(4179)] = 156975, - [SMALL_STATE(4180)] = 156992, - [SMALL_STATE(4181)] = 157009, - [SMALL_STATE(4182)] = 157026, - [SMALL_STATE(4183)] = 157043, - [SMALL_STATE(4184)] = 157060, - [SMALL_STATE(4185)] = 157077, - [SMALL_STATE(4186)] = 157094, - [SMALL_STATE(4187)] = 157111, - [SMALL_STATE(4188)] = 157128, - [SMALL_STATE(4189)] = 157145, - [SMALL_STATE(4190)] = 157162, - [SMALL_STATE(4191)] = 157179, - [SMALL_STATE(4192)] = 157196, - [SMALL_STATE(4193)] = 157213, - [SMALL_STATE(4194)] = 157230, - [SMALL_STATE(4195)] = 157247, - [SMALL_STATE(4196)] = 157264, - [SMALL_STATE(4197)] = 157281, - [SMALL_STATE(4198)] = 157298, - [SMALL_STATE(4199)] = 157315, - [SMALL_STATE(4200)] = 157332, - [SMALL_STATE(4201)] = 157349, - [SMALL_STATE(4202)] = 157366, - [SMALL_STATE(4203)] = 157383, - [SMALL_STATE(4204)] = 157400, - [SMALL_STATE(4205)] = 157417, - [SMALL_STATE(4206)] = 157434, - [SMALL_STATE(4207)] = 157451, - [SMALL_STATE(4208)] = 157468, - [SMALL_STATE(4209)] = 157485, - [SMALL_STATE(4210)] = 157502, - [SMALL_STATE(4211)] = 157519, - [SMALL_STATE(4212)] = 157536, - [SMALL_STATE(4213)] = 157553, - [SMALL_STATE(4214)] = 157570, - [SMALL_STATE(4215)] = 157587, - [SMALL_STATE(4216)] = 157604, - [SMALL_STATE(4217)] = 157621, - [SMALL_STATE(4218)] = 157638, - [SMALL_STATE(4219)] = 157655, - [SMALL_STATE(4220)] = 157672, - [SMALL_STATE(4221)] = 157689, - [SMALL_STATE(4222)] = 157706, - [SMALL_STATE(4223)] = 157723, - [SMALL_STATE(4224)] = 157740, - [SMALL_STATE(4225)] = 157757, - [SMALL_STATE(4226)] = 157774, - [SMALL_STATE(4227)] = 157791, - [SMALL_STATE(4228)] = 157808, - [SMALL_STATE(4229)] = 157825, - [SMALL_STATE(4230)] = 157842, - [SMALL_STATE(4231)] = 157859, - [SMALL_STATE(4232)] = 157876, - [SMALL_STATE(4233)] = 157893, - [SMALL_STATE(4234)] = 157910, - [SMALL_STATE(4235)] = 157927, - [SMALL_STATE(4236)] = 157944, - [SMALL_STATE(4237)] = 157961, - [SMALL_STATE(4238)] = 157978, - [SMALL_STATE(4239)] = 157995, - [SMALL_STATE(4240)] = 158012, - [SMALL_STATE(4241)] = 158029, - [SMALL_STATE(4242)] = 158046, - [SMALL_STATE(4243)] = 158063, - [SMALL_STATE(4244)] = 158080, - [SMALL_STATE(4245)] = 158097, - [SMALL_STATE(4246)] = 158114, - [SMALL_STATE(4247)] = 158131, - [SMALL_STATE(4248)] = 158148, - [SMALL_STATE(4249)] = 158165, - [SMALL_STATE(4250)] = 158182, - [SMALL_STATE(4251)] = 158199, - [SMALL_STATE(4252)] = 158216, - [SMALL_STATE(4253)] = 158233, - [SMALL_STATE(4254)] = 158250, - [SMALL_STATE(4255)] = 158267, - [SMALL_STATE(4256)] = 158284, - [SMALL_STATE(4257)] = 158301, - [SMALL_STATE(4258)] = 158318, - [SMALL_STATE(4259)] = 158335, - [SMALL_STATE(4260)] = 158352, - [SMALL_STATE(4261)] = 158369, - [SMALL_STATE(4262)] = 158386, - [SMALL_STATE(4263)] = 158403, - [SMALL_STATE(4264)] = 158420, - [SMALL_STATE(4265)] = 158437, - [SMALL_STATE(4266)] = 158454, - [SMALL_STATE(4267)] = 158471, - [SMALL_STATE(4268)] = 158488, - [SMALL_STATE(4269)] = 158505, - [SMALL_STATE(4270)] = 158522, - [SMALL_STATE(4271)] = 158539, - [SMALL_STATE(4272)] = 158556, - [SMALL_STATE(4273)] = 158573, - [SMALL_STATE(4274)] = 158590, - [SMALL_STATE(4275)] = 158607, - [SMALL_STATE(4276)] = 158624, - [SMALL_STATE(4277)] = 158641, - [SMALL_STATE(4278)] = 158658, - [SMALL_STATE(4279)] = 158675, - [SMALL_STATE(4280)] = 158692, - [SMALL_STATE(4281)] = 158709, - [SMALL_STATE(4282)] = 158726, - [SMALL_STATE(4283)] = 158743, - [SMALL_STATE(4284)] = 158760, - [SMALL_STATE(4285)] = 158777, - [SMALL_STATE(4286)] = 158794, - [SMALL_STATE(4287)] = 158811, - [SMALL_STATE(4288)] = 158828, - [SMALL_STATE(4289)] = 158845, - [SMALL_STATE(4290)] = 158862, - [SMALL_STATE(4291)] = 158879, - [SMALL_STATE(4292)] = 158896, - [SMALL_STATE(4293)] = 158913, - [SMALL_STATE(4294)] = 158930, - [SMALL_STATE(4295)] = 158947, - [SMALL_STATE(4296)] = 158964, - [SMALL_STATE(4297)] = 158981, - [SMALL_STATE(4298)] = 158998, - [SMALL_STATE(4299)] = 159015, - [SMALL_STATE(4300)] = 159032, - [SMALL_STATE(4301)] = 159049, - [SMALL_STATE(4302)] = 159066, - [SMALL_STATE(4303)] = 159083, - [SMALL_STATE(4304)] = 159100, - [SMALL_STATE(4305)] = 159117, - [SMALL_STATE(4306)] = 159134, - [SMALL_STATE(4307)] = 159151, - [SMALL_STATE(4308)] = 159168, - [SMALL_STATE(4309)] = 159185, - [SMALL_STATE(4310)] = 159202, - [SMALL_STATE(4311)] = 159219, - [SMALL_STATE(4312)] = 159236, - [SMALL_STATE(4313)] = 159253, - [SMALL_STATE(4314)] = 159270, - [SMALL_STATE(4315)] = 159287, - [SMALL_STATE(4316)] = 159304, - [SMALL_STATE(4317)] = 159321, - [SMALL_STATE(4318)] = 159338, - [SMALL_STATE(4319)] = 159355, - [SMALL_STATE(4320)] = 159372, - [SMALL_STATE(4321)] = 159389, - [SMALL_STATE(4322)] = 159406, - [SMALL_STATE(4323)] = 159423, - [SMALL_STATE(4324)] = 159440, - [SMALL_STATE(4325)] = 159457, - [SMALL_STATE(4326)] = 159474, - [SMALL_STATE(4327)] = 159491, - [SMALL_STATE(4328)] = 159508, - [SMALL_STATE(4329)] = 159525, - [SMALL_STATE(4330)] = 159542, - [SMALL_STATE(4331)] = 159559, - [SMALL_STATE(4332)] = 159576, - [SMALL_STATE(4333)] = 159593, - [SMALL_STATE(4334)] = 159610, - [SMALL_STATE(4335)] = 159627, - [SMALL_STATE(4336)] = 159644, - [SMALL_STATE(4337)] = 159661, - [SMALL_STATE(4338)] = 159678, - [SMALL_STATE(4339)] = 159695, - [SMALL_STATE(4340)] = 159712, - [SMALL_STATE(4341)] = 159729, - [SMALL_STATE(4342)] = 159746, - [SMALL_STATE(4343)] = 159763, - [SMALL_STATE(4344)] = 159780, - [SMALL_STATE(4345)] = 159795, - [SMALL_STATE(4346)] = 159812, - [SMALL_STATE(4347)] = 159829, - [SMALL_STATE(4348)] = 159846, - [SMALL_STATE(4349)] = 159863, - [SMALL_STATE(4350)] = 159880, - [SMALL_STATE(4351)] = 159897, - [SMALL_STATE(4352)] = 159914, - [SMALL_STATE(4353)] = 159931, - [SMALL_STATE(4354)] = 159948, - [SMALL_STATE(4355)] = 159965, - [SMALL_STATE(4356)] = 159982, - [SMALL_STATE(4357)] = 159999, - [SMALL_STATE(4358)] = 160016, - [SMALL_STATE(4359)] = 160033, - [SMALL_STATE(4360)] = 160050, - [SMALL_STATE(4361)] = 160067, - [SMALL_STATE(4362)] = 160084, - [SMALL_STATE(4363)] = 160101, - [SMALL_STATE(4364)] = 160118, - [SMALL_STATE(4365)] = 160135, - [SMALL_STATE(4366)] = 160152, - [SMALL_STATE(4367)] = 160169, - [SMALL_STATE(4368)] = 160186, - [SMALL_STATE(4369)] = 160203, - [SMALL_STATE(4370)] = 160220, - [SMALL_STATE(4371)] = 160237, - [SMALL_STATE(4372)] = 160254, - [SMALL_STATE(4373)] = 160271, - [SMALL_STATE(4374)] = 160288, - [SMALL_STATE(4375)] = 160305, - [SMALL_STATE(4376)] = 160322, - [SMALL_STATE(4377)] = 160339, - [SMALL_STATE(4378)] = 160356, - [SMALL_STATE(4379)] = 160373, - [SMALL_STATE(4380)] = 160390, - [SMALL_STATE(4381)] = 160407, - [SMALL_STATE(4382)] = 160424, - [SMALL_STATE(4383)] = 160441, - [SMALL_STATE(4384)] = 160458, - [SMALL_STATE(4385)] = 160475, - [SMALL_STATE(4386)] = 160492, - [SMALL_STATE(4387)] = 160509, - [SMALL_STATE(4388)] = 160526, - [SMALL_STATE(4389)] = 160543, - [SMALL_STATE(4390)] = 160560, - [SMALL_STATE(4391)] = 160577, - [SMALL_STATE(4392)] = 160594, - [SMALL_STATE(4393)] = 160611, - [SMALL_STATE(4394)] = 160628, - [SMALL_STATE(4395)] = 160645, - [SMALL_STATE(4396)] = 160662, - [SMALL_STATE(4397)] = 160679, - [SMALL_STATE(4398)] = 160696, - [SMALL_STATE(4399)] = 160713, - [SMALL_STATE(4400)] = 160730, - [SMALL_STATE(4401)] = 160747, - [SMALL_STATE(4402)] = 160764, - [SMALL_STATE(4403)] = 160781, - [SMALL_STATE(4404)] = 160798, - [SMALL_STATE(4405)] = 160815, - [SMALL_STATE(4406)] = 160832, - [SMALL_STATE(4407)] = 160849, - [SMALL_STATE(4408)] = 160866, - [SMALL_STATE(4409)] = 160883, - [SMALL_STATE(4410)] = 160900, - [SMALL_STATE(4411)] = 160917, - [SMALL_STATE(4412)] = 160934, - [SMALL_STATE(4413)] = 160951, - [SMALL_STATE(4414)] = 160968, - [SMALL_STATE(4415)] = 160985, - [SMALL_STATE(4416)] = 161002, - [SMALL_STATE(4417)] = 161019, - [SMALL_STATE(4418)] = 161036, - [SMALL_STATE(4419)] = 161053, - [SMALL_STATE(4420)] = 161070, - [SMALL_STATE(4421)] = 161087, - [SMALL_STATE(4422)] = 161104, - [SMALL_STATE(4423)] = 161121, - [SMALL_STATE(4424)] = 161138, - [SMALL_STATE(4425)] = 161155, - [SMALL_STATE(4426)] = 161172, - [SMALL_STATE(4427)] = 161189, - [SMALL_STATE(4428)] = 161206, - [SMALL_STATE(4429)] = 161223, - [SMALL_STATE(4430)] = 161240, - [SMALL_STATE(4431)] = 161257, - [SMALL_STATE(4432)] = 161274, - [SMALL_STATE(4433)] = 161291, - [SMALL_STATE(4434)] = 161308, - [SMALL_STATE(4435)] = 161325, - [SMALL_STATE(4436)] = 161342, - [SMALL_STATE(4437)] = 161359, - [SMALL_STATE(4438)] = 161376, - [SMALL_STATE(4439)] = 161393, - [SMALL_STATE(4440)] = 161410, - [SMALL_STATE(4441)] = 161427, - [SMALL_STATE(4442)] = 161444, - [SMALL_STATE(4443)] = 161461, - [SMALL_STATE(4444)] = 161478, - [SMALL_STATE(4445)] = 161495, - [SMALL_STATE(4446)] = 161512, - [SMALL_STATE(4447)] = 161529, - [SMALL_STATE(4448)] = 161546, - [SMALL_STATE(4449)] = 161563, - [SMALL_STATE(4450)] = 161580, - [SMALL_STATE(4451)] = 161597, - [SMALL_STATE(4452)] = 161614, - [SMALL_STATE(4453)] = 161631, - [SMALL_STATE(4454)] = 161648, - [SMALL_STATE(4455)] = 161665, - [SMALL_STATE(4456)] = 161682, - [SMALL_STATE(4457)] = 161697, - [SMALL_STATE(4458)] = 161714, - [SMALL_STATE(4459)] = 161731, - [SMALL_STATE(4460)] = 161748, - [SMALL_STATE(4461)] = 161765, - [SMALL_STATE(4462)] = 161782, - [SMALL_STATE(4463)] = 161799, - [SMALL_STATE(4464)] = 161816, - [SMALL_STATE(4465)] = 161833, - [SMALL_STATE(4466)] = 161850, - [SMALL_STATE(4467)] = 161867, - [SMALL_STATE(4468)] = 161884, - [SMALL_STATE(4469)] = 161901, - [SMALL_STATE(4470)] = 161918, - [SMALL_STATE(4471)] = 161935, - [SMALL_STATE(4472)] = 161952, - [SMALL_STATE(4473)] = 161969, - [SMALL_STATE(4474)] = 161986, - [SMALL_STATE(4475)] = 162003, - [SMALL_STATE(4476)] = 162020, - [SMALL_STATE(4477)] = 162037, - [SMALL_STATE(4478)] = 162054, - [SMALL_STATE(4479)] = 162071, - [SMALL_STATE(4480)] = 162088, - [SMALL_STATE(4481)] = 162105, - [SMALL_STATE(4482)] = 162122, - [SMALL_STATE(4483)] = 162139, - [SMALL_STATE(4484)] = 162156, - [SMALL_STATE(4485)] = 162173, - [SMALL_STATE(4486)] = 162190, - [SMALL_STATE(4487)] = 162207, - [SMALL_STATE(4488)] = 162224, - [SMALL_STATE(4489)] = 162241, - [SMALL_STATE(4490)] = 162258, - [SMALL_STATE(4491)] = 162275, - [SMALL_STATE(4492)] = 162292, - [SMALL_STATE(4493)] = 162309, - [SMALL_STATE(4494)] = 162326, - [SMALL_STATE(4495)] = 162343, - [SMALL_STATE(4496)] = 162360, - [SMALL_STATE(4497)] = 162377, - [SMALL_STATE(4498)] = 162394, - [SMALL_STATE(4499)] = 162411, - [SMALL_STATE(4500)] = 162428, - [SMALL_STATE(4501)] = 162445, - [SMALL_STATE(4502)] = 162462, - [SMALL_STATE(4503)] = 162479, - [SMALL_STATE(4504)] = 162496, - [SMALL_STATE(4505)] = 162513, - [SMALL_STATE(4506)] = 162530, - [SMALL_STATE(4507)] = 162547, - [SMALL_STATE(4508)] = 162564, - [SMALL_STATE(4509)] = 162581, - [SMALL_STATE(4510)] = 162598, - [SMALL_STATE(4511)] = 162615, - [SMALL_STATE(4512)] = 162632, - [SMALL_STATE(4513)] = 162649, - [SMALL_STATE(4514)] = 162666, - [SMALL_STATE(4515)] = 162683, - [SMALL_STATE(4516)] = 162700, - [SMALL_STATE(4517)] = 162717, - [SMALL_STATE(4518)] = 162734, - [SMALL_STATE(4519)] = 162751, - [SMALL_STATE(4520)] = 162768, - [SMALL_STATE(4521)] = 162785, - [SMALL_STATE(4522)] = 162802, - [SMALL_STATE(4523)] = 162819, - [SMALL_STATE(4524)] = 162836, - [SMALL_STATE(4525)] = 162853, - [SMALL_STATE(4526)] = 162870, - [SMALL_STATE(4527)] = 162887, - [SMALL_STATE(4528)] = 162904, - [SMALL_STATE(4529)] = 162921, - [SMALL_STATE(4530)] = 162938, - [SMALL_STATE(4531)] = 162955, - [SMALL_STATE(4532)] = 162972, - [SMALL_STATE(4533)] = 162989, - [SMALL_STATE(4534)] = 163006, - [SMALL_STATE(4535)] = 163023, - [SMALL_STATE(4536)] = 163040, - [SMALL_STATE(4537)] = 163057, - [SMALL_STATE(4538)] = 163074, - [SMALL_STATE(4539)] = 163091, - [SMALL_STATE(4540)] = 163108, - [SMALL_STATE(4541)] = 163125, - [SMALL_STATE(4542)] = 163142, - [SMALL_STATE(4543)] = 163159, - [SMALL_STATE(4544)] = 163176, - [SMALL_STATE(4545)] = 163193, - [SMALL_STATE(4546)] = 163210, - [SMALL_STATE(4547)] = 163227, - [SMALL_STATE(4548)] = 163244, - [SMALL_STATE(4549)] = 163261, - [SMALL_STATE(4550)] = 163278, - [SMALL_STATE(4551)] = 163295, - [SMALL_STATE(4552)] = 163312, - [SMALL_STATE(4553)] = 163329, - [SMALL_STATE(4554)] = 163346, - [SMALL_STATE(4555)] = 163363, - [SMALL_STATE(4556)] = 163380, - [SMALL_STATE(4557)] = 163397, - [SMALL_STATE(4558)] = 163414, - [SMALL_STATE(4559)] = 163431, - [SMALL_STATE(4560)] = 163448, - [SMALL_STATE(4561)] = 163465, - [SMALL_STATE(4562)] = 163482, - [SMALL_STATE(4563)] = 163499, - [SMALL_STATE(4564)] = 163516, - [SMALL_STATE(4565)] = 163533, - [SMALL_STATE(4566)] = 163550, - [SMALL_STATE(4567)] = 163567, - [SMALL_STATE(4568)] = 163584, - [SMALL_STATE(4569)] = 163601, - [SMALL_STATE(4570)] = 163618, - [SMALL_STATE(4571)] = 163635, - [SMALL_STATE(4572)] = 163652, - [SMALL_STATE(4573)] = 163669, - [SMALL_STATE(4574)] = 163686, - [SMALL_STATE(4575)] = 163703, - [SMALL_STATE(4576)] = 163720, - [SMALL_STATE(4577)] = 163737, - [SMALL_STATE(4578)] = 163754, - [SMALL_STATE(4579)] = 163771, - [SMALL_STATE(4580)] = 163788, - [SMALL_STATE(4581)] = 163805, - [SMALL_STATE(4582)] = 163822, - [SMALL_STATE(4583)] = 163839, - [SMALL_STATE(4584)] = 163856, - [SMALL_STATE(4585)] = 163873, - [SMALL_STATE(4586)] = 163890, - [SMALL_STATE(4587)] = 163907, - [SMALL_STATE(4588)] = 163924, - [SMALL_STATE(4589)] = 163941, - [SMALL_STATE(4590)] = 163958, - [SMALL_STATE(4591)] = 163975, - [SMALL_STATE(4592)] = 163992, - [SMALL_STATE(4593)] = 164009, - [SMALL_STATE(4594)] = 164026, - [SMALL_STATE(4595)] = 164043, - [SMALL_STATE(4596)] = 164060, - [SMALL_STATE(4597)] = 164077, - [SMALL_STATE(4598)] = 164094, - [SMALL_STATE(4599)] = 164111, - [SMALL_STATE(4600)] = 164128, - [SMALL_STATE(4601)] = 164145, - [SMALL_STATE(4602)] = 164162, - [SMALL_STATE(4603)] = 164179, - [SMALL_STATE(4604)] = 164196, - [SMALL_STATE(4605)] = 164213, - [SMALL_STATE(4606)] = 164230, - [SMALL_STATE(4607)] = 164247, - [SMALL_STATE(4608)] = 164264, - [SMALL_STATE(4609)] = 164281, - [SMALL_STATE(4610)] = 164298, - [SMALL_STATE(4611)] = 164315, - [SMALL_STATE(4612)] = 164332, - [SMALL_STATE(4613)] = 164349, - [SMALL_STATE(4614)] = 164366, - [SMALL_STATE(4615)] = 164383, - [SMALL_STATE(4616)] = 164400, - [SMALL_STATE(4617)] = 164417, - [SMALL_STATE(4618)] = 164434, - [SMALL_STATE(4619)] = 164451, - [SMALL_STATE(4620)] = 164468, - [SMALL_STATE(4621)] = 164485, - [SMALL_STATE(4622)] = 164502, - [SMALL_STATE(4623)] = 164519, - [SMALL_STATE(4624)] = 164536, - [SMALL_STATE(4625)] = 164553, - [SMALL_STATE(4626)] = 164570, - [SMALL_STATE(4627)] = 164587, - [SMALL_STATE(4628)] = 164604, - [SMALL_STATE(4629)] = 164621, - [SMALL_STATE(4630)] = 164638, - [SMALL_STATE(4631)] = 164655, - [SMALL_STATE(4632)] = 164672, - [SMALL_STATE(4633)] = 164689, - [SMALL_STATE(4634)] = 164706, - [SMALL_STATE(4635)] = 164723, - [SMALL_STATE(4636)] = 164740, - [SMALL_STATE(4637)] = 164757, - [SMALL_STATE(4638)] = 164774, - [SMALL_STATE(4639)] = 164791, - [SMALL_STATE(4640)] = 164808, - [SMALL_STATE(4641)] = 164825, - [SMALL_STATE(4642)] = 164842, - [SMALL_STATE(4643)] = 164859, - [SMALL_STATE(4644)] = 164876, - [SMALL_STATE(4645)] = 164893, - [SMALL_STATE(4646)] = 164910, - [SMALL_STATE(4647)] = 164927, - [SMALL_STATE(4648)] = 164944, - [SMALL_STATE(4649)] = 164961, - [SMALL_STATE(4650)] = 164978, - [SMALL_STATE(4651)] = 164995, - [SMALL_STATE(4652)] = 165012, - [SMALL_STATE(4653)] = 165029, - [SMALL_STATE(4654)] = 165046, - [SMALL_STATE(4655)] = 165063, - [SMALL_STATE(4656)] = 165080, - [SMALL_STATE(4657)] = 165097, - [SMALL_STATE(4658)] = 165114, - [SMALL_STATE(4659)] = 165131, - [SMALL_STATE(4660)] = 165148, - [SMALL_STATE(4661)] = 165165, - [SMALL_STATE(4662)] = 165182, - [SMALL_STATE(4663)] = 165199, - [SMALL_STATE(4664)] = 165216, - [SMALL_STATE(4665)] = 165233, - [SMALL_STATE(4666)] = 165250, - [SMALL_STATE(4667)] = 165267, - [SMALL_STATE(4668)] = 165284, - [SMALL_STATE(4669)] = 165301, - [SMALL_STATE(4670)] = 165318, - [SMALL_STATE(4671)] = 165335, - [SMALL_STATE(4672)] = 165352, - [SMALL_STATE(4673)] = 165369, - [SMALL_STATE(4674)] = 165386, - [SMALL_STATE(4675)] = 165403, - [SMALL_STATE(4676)] = 165420, - [SMALL_STATE(4677)] = 165437, - [SMALL_STATE(4678)] = 165454, - [SMALL_STATE(4679)] = 165471, - [SMALL_STATE(4680)] = 165488, - [SMALL_STATE(4681)] = 165505, - [SMALL_STATE(4682)] = 165522, - [SMALL_STATE(4683)] = 165539, - [SMALL_STATE(4684)] = 165556, - [SMALL_STATE(4685)] = 165573, - [SMALL_STATE(4686)] = 165590, - [SMALL_STATE(4687)] = 165607, - [SMALL_STATE(4688)] = 165624, - [SMALL_STATE(4689)] = 165641, - [SMALL_STATE(4690)] = 165658, - [SMALL_STATE(4691)] = 165675, - [SMALL_STATE(4692)] = 165692, - [SMALL_STATE(4693)] = 165709, - [SMALL_STATE(4694)] = 165726, - [SMALL_STATE(4695)] = 165743, - [SMALL_STATE(4696)] = 165760, - [SMALL_STATE(4697)] = 165777, - [SMALL_STATE(4698)] = 165794, - [SMALL_STATE(4699)] = 165811, - [SMALL_STATE(4700)] = 165828, - [SMALL_STATE(4701)] = 165845, - [SMALL_STATE(4702)] = 165862, - [SMALL_STATE(4703)] = 165879, - [SMALL_STATE(4704)] = 165896, - [SMALL_STATE(4705)] = 165913, - [SMALL_STATE(4706)] = 165930, - [SMALL_STATE(4707)] = 165947, - [SMALL_STATE(4708)] = 165964, - [SMALL_STATE(4709)] = 165981, - [SMALL_STATE(4710)] = 165998, - [SMALL_STATE(4711)] = 166015, - [SMALL_STATE(4712)] = 166032, - [SMALL_STATE(4713)] = 166049, - [SMALL_STATE(4714)] = 166066, - [SMALL_STATE(4715)] = 166083, - [SMALL_STATE(4716)] = 166100, - [SMALL_STATE(4717)] = 166117, - [SMALL_STATE(4718)] = 166134, - [SMALL_STATE(4719)] = 166151, - [SMALL_STATE(4720)] = 166166, - [SMALL_STATE(4721)] = 166183, - [SMALL_STATE(4722)] = 166200, - [SMALL_STATE(4723)] = 166217, - [SMALL_STATE(4724)] = 166234, - [SMALL_STATE(4725)] = 166251, - [SMALL_STATE(4726)] = 166268, - [SMALL_STATE(4727)] = 166285, - [SMALL_STATE(4728)] = 166302, - [SMALL_STATE(4729)] = 166319, - [SMALL_STATE(4730)] = 166336, - [SMALL_STATE(4731)] = 166353, - [SMALL_STATE(4732)] = 166370, - [SMALL_STATE(4733)] = 166387, - [SMALL_STATE(4734)] = 166404, - [SMALL_STATE(4735)] = 166421, - [SMALL_STATE(4736)] = 166438, - [SMALL_STATE(4737)] = 166455, - [SMALL_STATE(4738)] = 166472, - [SMALL_STATE(4739)] = 166489, - [SMALL_STATE(4740)] = 166506, - [SMALL_STATE(4741)] = 166523, - [SMALL_STATE(4742)] = 166540, - [SMALL_STATE(4743)] = 166557, - [SMALL_STATE(4744)] = 166574, - [SMALL_STATE(4745)] = 166591, - [SMALL_STATE(4746)] = 166608, - [SMALL_STATE(4747)] = 166612, - [SMALL_STATE(4748)] = 166616, - [SMALL_STATE(4749)] = 166620, - [SMALL_STATE(4750)] = 166624, + [SMALL_STATE(304)] = 0, + [SMALL_STATE(305)] = 135, + [SMALL_STATE(306)] = 270, + [SMALL_STATE(307)] = 405, + [SMALL_STATE(308)] = 540, + [SMALL_STATE(309)] = 675, + [SMALL_STATE(310)] = 805, + [SMALL_STATE(311)] = 935, + [SMALL_STATE(312)] = 1065, + [SMALL_STATE(313)] = 1195, + [SMALL_STATE(314)] = 1325, + [SMALL_STATE(315)] = 1455, + [SMALL_STATE(316)] = 1585, + [SMALL_STATE(317)] = 1715, + [SMALL_STATE(318)] = 1845, + [SMALL_STATE(319)] = 1975, + [SMALL_STATE(320)] = 2105, + [SMALL_STATE(321)] = 2235, + [SMALL_STATE(322)] = 2365, + [SMALL_STATE(323)] = 2495, + [SMALL_STATE(324)] = 2625, + [SMALL_STATE(325)] = 2755, + [SMALL_STATE(326)] = 2885, + [SMALL_STATE(327)] = 3015, + [SMALL_STATE(328)] = 3145, + [SMALL_STATE(329)] = 3275, + [SMALL_STATE(330)] = 3399, + [SMALL_STATE(331)] = 3517, + [SMALL_STATE(332)] = 3635, + [SMALL_STATE(333)] = 3753, + [SMALL_STATE(334)] = 3871, + [SMALL_STATE(335)] = 3988, + [SMALL_STATE(336)] = 4059, + [SMALL_STATE(337)] = 4132, + [SMALL_STATE(338)] = 4247, + [SMALL_STATE(339)] = 4362, + [SMALL_STATE(340)] = 4479, + [SMALL_STATE(341)] = 4594, + [SMALL_STATE(342)] = 4711, + [SMALL_STATE(343)] = 4828, + [SMALL_STATE(344)] = 4945, + [SMALL_STATE(345)] = 5060, + [SMALL_STATE(346)] = 5175, + [SMALL_STATE(347)] = 5289, + [SMALL_STATE(348)] = 5403, + [SMALL_STATE(349)] = 5517, + [SMALL_STATE(350)] = 5631, + [SMALL_STATE(351)] = 5699, + [SMALL_STATE(352)] = 5813, + [SMALL_STATE(353)] = 5924, + [SMALL_STATE(354)] = 6035, + [SMALL_STATE(355)] = 6146, + [SMALL_STATE(356)] = 6257, + [SMALL_STATE(357)] = 6368, + [SMALL_STATE(358)] = 6479, + [SMALL_STATE(359)] = 6590, + [SMALL_STATE(360)] = 6701, + [SMALL_STATE(361)] = 6812, + [SMALL_STATE(362)] = 6923, + [SMALL_STATE(363)] = 7034, + [SMALL_STATE(364)] = 7145, + [SMALL_STATE(365)] = 7256, + [SMALL_STATE(366)] = 7367, + [SMALL_STATE(367)] = 7478, + [SMALL_STATE(368)] = 7589, + [SMALL_STATE(369)] = 7700, + [SMALL_STATE(370)] = 7811, + [SMALL_STATE(371)] = 7922, + [SMALL_STATE(372)] = 8033, + [SMALL_STATE(373)] = 8144, + [SMALL_STATE(374)] = 8255, + [SMALL_STATE(375)] = 8366, + [SMALL_STATE(376)] = 8477, + [SMALL_STATE(377)] = 8588, + [SMALL_STATE(378)] = 8699, + [SMALL_STATE(379)] = 8810, + [SMALL_STATE(380)] = 8921, + [SMALL_STATE(381)] = 9032, + [SMALL_STATE(382)] = 9143, + [SMALL_STATE(383)] = 9254, + [SMALL_STATE(384)] = 9365, + [SMALL_STATE(385)] = 9476, + [SMALL_STATE(386)] = 9587, + [SMALL_STATE(387)] = 9698, + [SMALL_STATE(388)] = 9809, + [SMALL_STATE(389)] = 9920, + [SMALL_STATE(390)] = 10031, + [SMALL_STATE(391)] = 10142, + [SMALL_STATE(392)] = 10253, + [SMALL_STATE(393)] = 10364, + [SMALL_STATE(394)] = 10475, + [SMALL_STATE(395)] = 10586, + [SMALL_STATE(396)] = 10697, + [SMALL_STATE(397)] = 10808, + [SMALL_STATE(398)] = 10919, + [SMALL_STATE(399)] = 11030, + [SMALL_STATE(400)] = 11141, + [SMALL_STATE(401)] = 11252, + [SMALL_STATE(402)] = 11363, + [SMALL_STATE(403)] = 11474, + [SMALL_STATE(404)] = 11585, + [SMALL_STATE(405)] = 11696, + [SMALL_STATE(406)] = 11807, + [SMALL_STATE(407)] = 11918, + [SMALL_STATE(408)] = 12029, + [SMALL_STATE(409)] = 12140, + [SMALL_STATE(410)] = 12251, + [SMALL_STATE(411)] = 12362, + [SMALL_STATE(412)] = 12473, + [SMALL_STATE(413)] = 12584, + [SMALL_STATE(414)] = 12695, + [SMALL_STATE(415)] = 12806, + [SMALL_STATE(416)] = 12917, + [SMALL_STATE(417)] = 13028, + [SMALL_STATE(418)] = 13139, + [SMALL_STATE(419)] = 13250, + [SMALL_STATE(420)] = 13361, + [SMALL_STATE(421)] = 13472, + [SMALL_STATE(422)] = 13583, + [SMALL_STATE(423)] = 13694, + [SMALL_STATE(424)] = 13805, + [SMALL_STATE(425)] = 13916, + [SMALL_STATE(426)] = 14027, + [SMALL_STATE(427)] = 14138, + [SMALL_STATE(428)] = 14249, + [SMALL_STATE(429)] = 14360, + [SMALL_STATE(430)] = 14471, + [SMALL_STATE(431)] = 14582, + [SMALL_STATE(432)] = 14693, + [SMALL_STATE(433)] = 14804, + [SMALL_STATE(434)] = 14915, + [SMALL_STATE(435)] = 15026, + [SMALL_STATE(436)] = 15137, + [SMALL_STATE(437)] = 15248, + [SMALL_STATE(438)] = 15359, + [SMALL_STATE(439)] = 15470, + [SMALL_STATE(440)] = 15581, + [SMALL_STATE(441)] = 15692, + [SMALL_STATE(442)] = 15803, + [SMALL_STATE(443)] = 15914, + [SMALL_STATE(444)] = 16025, + [SMALL_STATE(445)] = 16136, + [SMALL_STATE(446)] = 16247, + [SMALL_STATE(447)] = 16358, + [SMALL_STATE(448)] = 16469, + [SMALL_STATE(449)] = 16580, + [SMALL_STATE(450)] = 16691, + [SMALL_STATE(451)] = 16802, + [SMALL_STATE(452)] = 16913, + [SMALL_STATE(453)] = 17024, + [SMALL_STATE(454)] = 17135, + [SMALL_STATE(455)] = 17246, + [SMALL_STATE(456)] = 17357, + [SMALL_STATE(457)] = 17468, + [SMALL_STATE(458)] = 17579, + [SMALL_STATE(459)] = 17690, + [SMALL_STATE(460)] = 17801, + [SMALL_STATE(461)] = 17912, + [SMALL_STATE(462)] = 18023, + [SMALL_STATE(463)] = 18134, + [SMALL_STATE(464)] = 18245, + [SMALL_STATE(465)] = 18356, + [SMALL_STATE(466)] = 18467, + [SMALL_STATE(467)] = 18578, + [SMALL_STATE(468)] = 18689, + [SMALL_STATE(469)] = 18800, + [SMALL_STATE(470)] = 18911, + [SMALL_STATE(471)] = 19022, + [SMALL_STATE(472)] = 19133, + [SMALL_STATE(473)] = 19244, + [SMALL_STATE(474)] = 19355, + [SMALL_STATE(475)] = 19466, + [SMALL_STATE(476)] = 19577, + [SMALL_STATE(477)] = 19688, + [SMALL_STATE(478)] = 19799, + [SMALL_STATE(479)] = 19910, + [SMALL_STATE(480)] = 20021, + [SMALL_STATE(481)] = 20132, + [SMALL_STATE(482)] = 20243, + [SMALL_STATE(483)] = 20354, + [SMALL_STATE(484)] = 20465, + [SMALL_STATE(485)] = 20576, + [SMALL_STATE(486)] = 20687, + [SMALL_STATE(487)] = 20798, + [SMALL_STATE(488)] = 20909, + [SMALL_STATE(489)] = 21020, + [SMALL_STATE(490)] = 21131, + [SMALL_STATE(491)] = 21242, + [SMALL_STATE(492)] = 21353, + [SMALL_STATE(493)] = 21464, + [SMALL_STATE(494)] = 21575, + [SMALL_STATE(495)] = 21686, + [SMALL_STATE(496)] = 21797, + [SMALL_STATE(497)] = 21908, + [SMALL_STATE(498)] = 22019, + [SMALL_STATE(499)] = 22130, + [SMALL_STATE(500)] = 22241, + [SMALL_STATE(501)] = 22352, + [SMALL_STATE(502)] = 22463, + [SMALL_STATE(503)] = 22574, + [SMALL_STATE(504)] = 22685, + [SMALL_STATE(505)] = 22796, + [SMALL_STATE(506)] = 22907, + [SMALL_STATE(507)] = 23018, + [SMALL_STATE(508)] = 23129, + [SMALL_STATE(509)] = 23240, + [SMALL_STATE(510)] = 23351, + [SMALL_STATE(511)] = 23462, + [SMALL_STATE(512)] = 23573, + [SMALL_STATE(513)] = 23684, + [SMALL_STATE(514)] = 23795, + [SMALL_STATE(515)] = 23906, + [SMALL_STATE(516)] = 24017, + [SMALL_STATE(517)] = 24128, + [SMALL_STATE(518)] = 24239, + [SMALL_STATE(519)] = 24350, + [SMALL_STATE(520)] = 24461, + [SMALL_STATE(521)] = 24572, + [SMALL_STATE(522)] = 24683, + [SMALL_STATE(523)] = 24794, + [SMALL_STATE(524)] = 24905, + [SMALL_STATE(525)] = 25016, + [SMALL_STATE(526)] = 25127, + [SMALL_STATE(527)] = 25238, + [SMALL_STATE(528)] = 25316, + [SMALL_STATE(529)] = 25390, + [SMALL_STATE(530)] = 25468, + [SMALL_STATE(531)] = 25544, + [SMALL_STATE(532)] = 25622, + [SMALL_STATE(533)] = 25694, + [SMALL_STATE(534)] = 25768, + [SMALL_STATE(535)] = 25846, + [SMALL_STATE(536)] = 25924, + [SMALL_STATE(537)] = 26002, + [SMALL_STATE(538)] = 26076, + [SMALL_STATE(539)] = 26154, + [SMALL_STATE(540)] = 26232, + [SMALL_STATE(541)] = 26298, + [SMALL_STATE(542)] = 26364, + [SMALL_STATE(543)] = 26430, + [SMALL_STATE(544)] = 26494, + [SMALL_STATE(545)] = 26558, + [SMALL_STATE(546)] = 26624, + [SMALL_STATE(547)] = 26715, + [SMALL_STATE(548)] = 26806, + [SMALL_STATE(549)] = 26869, + [SMALL_STATE(550)] = 26960, + [SMALL_STATE(551)] = 27051, + [SMALL_STATE(552)] = 27112, + [SMALL_STATE(553)] = 27203, + [SMALL_STATE(554)] = 27266, + [SMALL_STATE(555)] = 27357, + [SMALL_STATE(556)] = 27418, + [SMALL_STATE(557)] = 27509, + [SMALL_STATE(558)] = 27600, + [SMALL_STATE(559)] = 27691, + [SMALL_STATE(560)] = 27754, + [SMALL_STATE(561)] = 27845, + [SMALL_STATE(562)] = 27908, + [SMALL_STATE(563)] = 27971, + [SMALL_STATE(564)] = 28031, + [SMALL_STATE(565)] = 28091, + [SMALL_STATE(566)] = 28151, + [SMALL_STATE(567)] = 28211, + [SMALL_STATE(568)] = 28271, + [SMALL_STATE(569)] = 28331, + [SMALL_STATE(570)] = 28391, + [SMALL_STATE(571)] = 28451, + [SMALL_STATE(572)] = 28511, + [SMALL_STATE(573)] = 28571, + [SMALL_STATE(574)] = 28631, + [SMALL_STATE(575)] = 28691, + [SMALL_STATE(576)] = 28751, + [SMALL_STATE(577)] = 28813, + [SMALL_STATE(578)] = 28873, + [SMALL_STATE(579)] = 28933, + [SMALL_STATE(580)] = 28993, + [SMALL_STATE(581)] = 29053, + [SMALL_STATE(582)] = 29113, + [SMALL_STATE(583)] = 29173, + [SMALL_STATE(584)] = 29233, + [SMALL_STATE(585)] = 29315, + [SMALL_STATE(586)] = 29375, + [SMALL_STATE(587)] = 29435, + [SMALL_STATE(588)] = 29497, + [SMALL_STATE(589)] = 29557, + [SMALL_STATE(590)] = 29617, + [SMALL_STATE(591)] = 29677, + [SMALL_STATE(592)] = 29737, + [SMALL_STATE(593)] = 29797, + [SMALL_STATE(594)] = 29857, + [SMALL_STATE(595)] = 29917, + [SMALL_STATE(596)] = 29977, + [SMALL_STATE(597)] = 30056, + [SMALL_STATE(598)] = 30135, + [SMALL_STATE(599)] = 30214, + [SMALL_STATE(600)] = 30306, + [SMALL_STATE(601)] = 30398, + [SMALL_STATE(602)] = 30490, + [SMALL_STATE(603)] = 30582, + [SMALL_STATE(604)] = 30674, + [SMALL_STATE(605)] = 30766, + [SMALL_STATE(606)] = 30858, + [SMALL_STATE(607)] = 30950, + [SMALL_STATE(608)] = 31018, + [SMALL_STATE(609)] = 31110, + [SMALL_STATE(610)] = 31202, + [SMALL_STATE(611)] = 31294, + [SMALL_STATE(612)] = 31362, + [SMALL_STATE(613)] = 31454, + [SMALL_STATE(614)] = 31546, + [SMALL_STATE(615)] = 31638, + [SMALL_STATE(616)] = 31709, + [SMALL_STATE(617)] = 31786, + [SMALL_STATE(618)] = 31863, + [SMALL_STATE(619)] = 31928, + [SMALL_STATE(620)] = 31997, + [SMALL_STATE(621)] = 32074, + [SMALL_STATE(622)] = 32151, + [SMALL_STATE(623)] = 32228, + [SMALL_STATE(624)] = 32303, + [SMALL_STATE(625)] = 32380, + [SMALL_STATE(626)] = 32457, + [SMALL_STATE(627)] = 32517, + [SMALL_STATE(628)] = 32575, + [SMALL_STATE(629)] = 32634, + [SMALL_STATE(630)] = 32717, + [SMALL_STATE(631)] = 32774, + [SMALL_STATE(632)] = 32857, + [SMALL_STATE(633)] = 32922, + [SMALL_STATE(634)] = 33005, + [SMALL_STATE(635)] = 33088, + [SMALL_STATE(636)] = 33171, + [SMALL_STATE(637)] = 33254, + [SMALL_STATE(638)] = 33313, + [SMALL_STATE(639)] = 33396, + [SMALL_STATE(640)] = 33479, + [SMALL_STATE(641)] = 33538, + [SMALL_STATE(642)] = 33621, + [SMALL_STATE(643)] = 33686, + [SMALL_STATE(644)] = 33741, + [SMALL_STATE(645)] = 33824, + [SMALL_STATE(646)] = 33896, + [SMALL_STATE(647)] = 33958, + [SMALL_STATE(648)] = 34030, + [SMALL_STATE(649)] = 34086, + [SMALL_STATE(650)] = 34142, + [SMALL_STATE(651)] = 34198, + [SMALL_STATE(652)] = 34254, + [SMALL_STATE(653)] = 34310, + [SMALL_STATE(654)] = 34364, + [SMALL_STATE(655)] = 34438, + [SMALL_STATE(656)] = 34508, + [SMALL_STATE(657)] = 34580, + [SMALL_STATE(658)] = 34636, + [SMALL_STATE(659)] = 34708, + [SMALL_STATE(660)] = 34780, + [SMALL_STATE(661)] = 34848, + [SMALL_STATE(662)] = 34918, + [SMALL_STATE(663)] = 34990, + [SMALL_STATE(664)] = 35056, + [SMALL_STATE(665)] = 35128, + [SMALL_STATE(666)] = 35200, + [SMALL_STATE(667)] = 35272, + [SMALL_STATE(668)] = 35344, + [SMALL_STATE(669)] = 35400, + [SMALL_STATE(670)] = 35472, + [SMALL_STATE(671)] = 35538, + [SMALL_STATE(672)] = 35600, + [SMALL_STATE(673)] = 35672, + [SMALL_STATE(674)] = 35744, + [SMALL_STATE(675)] = 35816, + [SMALL_STATE(676)] = 35884, + [SMALL_STATE(677)] = 35955, + [SMALL_STATE(678)] = 36008, + [SMALL_STATE(679)] = 36061, + [SMALL_STATE(680)] = 36146, + [SMALL_STATE(681)] = 36199, + [SMALL_STATE(682)] = 36252, + [SMALL_STATE(683)] = 36305, + [SMALL_STATE(684)] = 36358, + [SMALL_STATE(685)] = 36411, + [SMALL_STATE(686)] = 36496, + [SMALL_STATE(687)] = 36581, + [SMALL_STATE(688)] = 36666, + [SMALL_STATE(689)] = 36719, + [SMALL_STATE(690)] = 36772, + [SMALL_STATE(691)] = 36857, + [SMALL_STATE(692)] = 36942, + [SMALL_STATE(693)] = 37027, + [SMALL_STATE(694)] = 37112, + [SMALL_STATE(695)] = 37165, + [SMALL_STATE(696)] = 37218, + [SMALL_STATE(697)] = 37303, + [SMALL_STATE(698)] = 37388, + [SMALL_STATE(699)] = 37441, + [SMALL_STATE(700)] = 37494, + [SMALL_STATE(701)] = 37547, + [SMALL_STATE(702)] = 37632, + [SMALL_STATE(703)] = 37685, + [SMALL_STATE(704)] = 37770, + [SMALL_STATE(705)] = 37823, + [SMALL_STATE(706)] = 37908, + [SMALL_STATE(707)] = 37979, + [SMALL_STATE(708)] = 38032, + [SMALL_STATE(709)] = 38085, + [SMALL_STATE(710)] = 38138, + [SMALL_STATE(711)] = 38191, + [SMALL_STATE(712)] = 38244, + [SMALL_STATE(713)] = 38297, + [SMALL_STATE(714)] = 38350, + [SMALL_STATE(715)] = 38403, + [SMALL_STATE(716)] = 38456, + [SMALL_STATE(717)] = 38509, + [SMALL_STATE(718)] = 38594, + [SMALL_STATE(719)] = 38647, + [SMALL_STATE(720)] = 38700, + [SMALL_STATE(721)] = 38771, + [SMALL_STATE(722)] = 38824, + [SMALL_STATE(723)] = 38881, + [SMALL_STATE(724)] = 38966, + [SMALL_STATE(725)] = 39021, + [SMALL_STATE(726)] = 39074, + [SMALL_STATE(727)] = 39126, + [SMALL_STATE(728)] = 39196, + [SMALL_STATE(729)] = 39252, + [SMALL_STATE(730)] = 39306, + [SMALL_STATE(731)] = 39358, + [SMALL_STATE(732)] = 39414, + [SMALL_STATE(733)] = 39464, + [SMALL_STATE(734)] = 39520, + [SMALL_STATE(735)] = 39571, + [SMALL_STATE(736)] = 39624, + [SMALL_STATE(737)] = 39677, + [SMALL_STATE(738)] = 39730, + [SMALL_STATE(739)] = 39783, + [SMALL_STATE(740)] = 39836, + [SMALL_STATE(741)] = 39889, + [SMALL_STATE(742)] = 39938, + [SMALL_STATE(743)] = 40035, + [SMALL_STATE(744)] = 40088, + [SMALL_STATE(745)] = 40138, + [SMALL_STATE(746)] = 40188, + [SMALL_STATE(747)] = 40238, + [SMALL_STATE(748)] = 40288, + [SMALL_STATE(749)] = 40338, + [SMALL_STATE(750)] = 40388, + [SMALL_STATE(751)] = 40438, + [SMALL_STATE(752)] = 40508, + [SMALL_STATE(753)] = 40558, + [SMALL_STATE(754)] = 40608, + [SMALL_STATE(755)] = 40658, + [SMALL_STATE(756)] = 40708, + [SMALL_STATE(757)] = 40758, + [SMALL_STATE(758)] = 40808, + [SMALL_STATE(759)] = 40858, + [SMALL_STATE(760)] = 40908, + [SMALL_STATE(761)] = 40958, + [SMALL_STATE(762)] = 41008, + [SMALL_STATE(763)] = 41060, + [SMALL_STATE(764)] = 41110, + [SMALL_STATE(765)] = 41178, + [SMALL_STATE(766)] = 41228, + [SMALL_STATE(767)] = 41294, + [SMALL_STATE(768)] = 41346, + [SMALL_STATE(769)] = 41396, + [SMALL_STATE(770)] = 41446, + [SMALL_STATE(771)] = 41496, + [SMALL_STATE(772)] = 41546, + [SMALL_STATE(773)] = 41596, + [SMALL_STATE(774)] = 41646, + [SMALL_STATE(775)] = 41696, + [SMALL_STATE(776)] = 41746, + [SMALL_STATE(777)] = 41796, + [SMALL_STATE(778)] = 41846, + [SMALL_STATE(779)] = 41896, + [SMALL_STATE(780)] = 41955, + [SMALL_STATE(781)] = 42014, + [SMALL_STATE(782)] = 42065, + [SMALL_STATE(783)] = 42127, + [SMALL_STATE(784)] = 42189, + [SMALL_STATE(785)] = 42239, + [SMALL_STATE(786)] = 42293, + [SMALL_STATE(787)] = 42341, + [SMALL_STATE(788)] = 42403, + [SMALL_STATE(789)] = 42469, + [SMALL_STATE(790)] = 42523, + [SMALL_STATE(791)] = 42585, + [SMALL_STATE(792)] = 42637, + [SMALL_STATE(793)] = 42695, + [SMALL_STATE(794)] = 42751, + [SMALL_STATE(795)] = 42813, + [SMALL_STATE(796)] = 42875, + [SMALL_STATE(797)] = 42923, + [SMALL_STATE(798)] = 42985, + [SMALL_STATE(799)] = 43047, + [SMALL_STATE(800)] = 43107, + [SMALL_STATE(801)] = 43159, + [SMALL_STATE(802)] = 43215, + [SMALL_STATE(803)] = 43299, + [SMALL_STATE(804)] = 43355, + [SMALL_STATE(805)] = 43421, + [SMALL_STATE(806)] = 43473, + [SMALL_STATE(807)] = 43532, + [SMALL_STATE(808)] = 43591, + [SMALL_STATE(809)] = 43650, + [SMALL_STATE(810)] = 43707, + [SMALL_STATE(811)] = 43778, + [SMALL_STATE(812)] = 43835, + [SMALL_STATE(813)] = 43884, + [SMALL_STATE(814)] = 43943, + [SMALL_STATE(815)] = 44014, + [SMALL_STATE(816)] = 44073, + [SMALL_STATE(817)] = 44130, + [SMALL_STATE(818)] = 44181, + [SMALL_STATE(819)] = 44252, + [SMALL_STATE(820)] = 44323, + [SMALL_STATE(821)] = 44382, + [SMALL_STATE(822)] = 44441, + [SMALL_STATE(823)] = 44494, + [SMALL_STATE(824)] = 44553, + [SMALL_STATE(825)] = 44624, + [SMALL_STATE(826)] = 44679, + [SMALL_STATE(827)] = 44739, + [SMALL_STATE(828)] = 44799, + [SMALL_STATE(829)] = 44857, + [SMALL_STATE(830)] = 44915, + [SMALL_STATE(831)] = 44961, + [SMALL_STATE(832)] = 45021, + [SMALL_STATE(833)] = 45081, + [SMALL_STATE(834)] = 45137, + [SMALL_STATE(835)] = 45197, + [SMALL_STATE(836)] = 45255, + [SMALL_STATE(837)] = 45309, + [SMALL_STATE(838)] = 45369, + [SMALL_STATE(839)] = 45427, + [SMALL_STATE(840)] = 45477, + [SMALL_STATE(841)] = 45525, + [SMALL_STATE(842)] = 45573, + [SMALL_STATE(843)] = 45637, + [SMALL_STATE(844)] = 45683, + [SMALL_STATE(845)] = 45743, + [SMALL_STATE(846)] = 45793, + [SMALL_STATE(847)] = 45843, + [SMALL_STATE(848)] = 45903, + [SMALL_STATE(849)] = 45946, + [SMALL_STATE(850)] = 45995, + [SMALL_STATE(851)] = 46040, + [SMALL_STATE(852)] = 46085, + [SMALL_STATE(853)] = 46130, + [SMALL_STATE(854)] = 46175, + [SMALL_STATE(855)] = 46220, + [SMALL_STATE(856)] = 46263, + [SMALL_STATE(857)] = 46308, + [SMALL_STATE(858)] = 46353, + [SMALL_STATE(859)] = 46398, + [SMALL_STATE(860)] = 46443, + [SMALL_STATE(861)] = 46488, + [SMALL_STATE(862)] = 46533, + [SMALL_STATE(863)] = 46578, + [SMALL_STATE(864)] = 46623, + [SMALL_STATE(865)] = 46668, + [SMALL_STATE(866)] = 46713, + [SMALL_STATE(867)] = 46776, + [SMALL_STATE(868)] = 46819, + [SMALL_STATE(869)] = 46864, + [SMALL_STATE(870)] = 46907, + [SMALL_STATE(871)] = 46950, + [SMALL_STATE(872)] = 46995, + [SMALL_STATE(873)] = 47040, + [SMALL_STATE(874)] = 47085, + [SMALL_STATE(875)] = 47130, + [SMALL_STATE(876)] = 47177, + [SMALL_STATE(877)] = 47222, + [SMALL_STATE(878)] = 47285, + [SMALL_STATE(879)] = 47330, + [SMALL_STATE(880)] = 47375, + [SMALL_STATE(881)] = 47420, + [SMALL_STATE(882)] = 47465, + [SMALL_STATE(883)] = 47510, + [SMALL_STATE(884)] = 47555, + [SMALL_STATE(885)] = 47598, + [SMALL_STATE(886)] = 47641, + [SMALL_STATE(887)] = 47684, + [SMALL_STATE(888)] = 47727, + [SMALL_STATE(889)] = 47770, + [SMALL_STATE(890)] = 47813, + [SMALL_STATE(891)] = 47856, + [SMALL_STATE(892)] = 47899, + [SMALL_STATE(893)] = 47944, + [SMALL_STATE(894)] = 47987, + [SMALL_STATE(895)] = 48030, + [SMALL_STATE(896)] = 48075, + [SMALL_STATE(897)] = 48120, + [SMALL_STATE(898)] = 48165, + [SMALL_STATE(899)] = 48212, + [SMALL_STATE(900)] = 48257, + [SMALL_STATE(901)] = 48302, + [SMALL_STATE(902)] = 48347, + [SMALL_STATE(903)] = 48392, + [SMALL_STATE(904)] = 48437, + [SMALL_STATE(905)] = 48482, + [SMALL_STATE(906)] = 48525, + [SMALL_STATE(907)] = 48570, + [SMALL_STATE(908)] = 48615, + [SMALL_STATE(909)] = 48658, + [SMALL_STATE(910)] = 48701, + [SMALL_STATE(911)] = 48744, + [SMALL_STATE(912)] = 48787, + [SMALL_STATE(913)] = 48830, + [SMALL_STATE(914)] = 48873, + [SMALL_STATE(915)] = 48916, + [SMALL_STATE(916)] = 48959, + [SMALL_STATE(917)] = 49002, + [SMALL_STATE(918)] = 49045, + [SMALL_STATE(919)] = 49088, + [SMALL_STATE(920)] = 49131, + [SMALL_STATE(921)] = 49178, + [SMALL_STATE(922)] = 49221, + [SMALL_STATE(923)] = 49264, + [SMALL_STATE(924)] = 49309, + [SMALL_STATE(925)] = 49352, + [SMALL_STATE(926)] = 49397, + [SMALL_STATE(927)] = 49440, + [SMALL_STATE(928)] = 49485, + [SMALL_STATE(929)] = 49528, + [SMALL_STATE(930)] = 49571, + [SMALL_STATE(931)] = 49614, + [SMALL_STATE(932)] = 49657, + [SMALL_STATE(933)] = 49700, + [SMALL_STATE(934)] = 49747, + [SMALL_STATE(935)] = 49790, + [SMALL_STATE(936)] = 49833, + [SMALL_STATE(937)] = 49876, + [SMALL_STATE(938)] = 49921, + [SMALL_STATE(939)] = 49966, + [SMALL_STATE(940)] = 50009, + [SMALL_STATE(941)] = 50052, + [SMALL_STATE(942)] = 50095, + [SMALL_STATE(943)] = 50140, + [SMALL_STATE(944)] = 50185, + [SMALL_STATE(945)] = 50228, + [SMALL_STATE(946)] = 50271, + [SMALL_STATE(947)] = 50314, + [SMALL_STATE(948)] = 50359, + [SMALL_STATE(949)] = 50404, + [SMALL_STATE(950)] = 50449, + [SMALL_STATE(951)] = 50492, + [SMALL_STATE(952)] = 50535, + [SMALL_STATE(953)] = 50580, + [SMALL_STATE(954)] = 50625, + [SMALL_STATE(955)] = 50670, + [SMALL_STATE(956)] = 50715, + [SMALL_STATE(957)] = 50760, + [SMALL_STATE(958)] = 50803, + [SMALL_STATE(959)] = 50846, + [SMALL_STATE(960)] = 50889, + [SMALL_STATE(961)] = 50932, + [SMALL_STATE(962)] = 50977, + [SMALL_STATE(963)] = 51020, + [SMALL_STATE(964)] = 51063, + [SMALL_STATE(965)] = 51106, + [SMALL_STATE(966)] = 51149, + [SMALL_STATE(967)] = 51192, + [SMALL_STATE(968)] = 51255, + [SMALL_STATE(969)] = 51298, + [SMALL_STATE(970)] = 51341, + [SMALL_STATE(971)] = 51386, + [SMALL_STATE(972)] = 51431, + [SMALL_STATE(973)] = 51474, + [SMALL_STATE(974)] = 51517, + [SMALL_STATE(975)] = 51560, + [SMALL_STATE(976)] = 51605, + [SMALL_STATE(977)] = 51650, + [SMALL_STATE(978)] = 51697, + [SMALL_STATE(979)] = 51742, + [SMALL_STATE(980)] = 51787, + [SMALL_STATE(981)] = 51832, + [SMALL_STATE(982)] = 51877, + [SMALL_STATE(983)] = 51920, + [SMALL_STATE(984)] = 51965, + [SMALL_STATE(985)] = 52008, + [SMALL_STATE(986)] = 52053, + [SMALL_STATE(987)] = 52098, + [SMALL_STATE(988)] = 52143, + [SMALL_STATE(989)] = 52188, + [SMALL_STATE(990)] = 52231, + [SMALL_STATE(991)] = 52276, + [SMALL_STATE(992)] = 52321, + [SMALL_STATE(993)] = 52364, + [SMALL_STATE(994)] = 52409, + [SMALL_STATE(995)] = 52452, + [SMALL_STATE(996)] = 52497, + [SMALL_STATE(997)] = 52542, + [SMALL_STATE(998)] = 52587, + [SMALL_STATE(999)] = 52630, + [SMALL_STATE(1000)] = 52673, + [SMALL_STATE(1001)] = 52718, + [SMALL_STATE(1002)] = 52763, + [SMALL_STATE(1003)] = 52806, + [SMALL_STATE(1004)] = 52849, + [SMALL_STATE(1005)] = 52892, + [SMALL_STATE(1006)] = 52935, + [SMALL_STATE(1007)] = 52978, + [SMALL_STATE(1008)] = 53021, + [SMALL_STATE(1009)] = 53064, + [SMALL_STATE(1010)] = 53107, + [SMALL_STATE(1011)] = 53150, + [SMALL_STATE(1012)] = 53193, + [SMALL_STATE(1013)] = 53236, + [SMALL_STATE(1014)] = 53279, + [SMALL_STATE(1015)] = 53322, + [SMALL_STATE(1016)] = 53367, + [SMALL_STATE(1017)] = 53410, + [SMALL_STATE(1018)] = 53453, + [SMALL_STATE(1019)] = 53496, + [SMALL_STATE(1020)] = 53541, + [SMALL_STATE(1021)] = 53584, + [SMALL_STATE(1022)] = 53629, + [SMALL_STATE(1023)] = 53672, + [SMALL_STATE(1024)] = 53717, + [SMALL_STATE(1025)] = 53762, + [SMALL_STATE(1026)] = 53807, + [SMALL_STATE(1027)] = 53850, + [SMALL_STATE(1028)] = 53893, + [SMALL_STATE(1029)] = 53938, + [SMALL_STATE(1030)] = 53981, + [SMALL_STATE(1031)] = 54024, + [SMALL_STATE(1032)] = 54067, + [SMALL_STATE(1033)] = 54130, + [SMALL_STATE(1034)] = 54177, + [SMALL_STATE(1035)] = 54222, + [SMALL_STATE(1036)] = 54265, + [SMALL_STATE(1037)] = 54308, + [SMALL_STATE(1038)] = 54351, + [SMALL_STATE(1039)] = 54394, + [SMALL_STATE(1040)] = 54437, + [SMALL_STATE(1041)] = 54480, + [SMALL_STATE(1042)] = 54523, + [SMALL_STATE(1043)] = 54566, + [SMALL_STATE(1044)] = 54609, + [SMALL_STATE(1045)] = 54652, + [SMALL_STATE(1046)] = 54695, + [SMALL_STATE(1047)] = 54740, + [SMALL_STATE(1048)] = 54785, + [SMALL_STATE(1049)] = 54830, + [SMALL_STATE(1050)] = 54873, + [SMALL_STATE(1051)] = 54918, + [SMALL_STATE(1052)] = 54963, + [SMALL_STATE(1053)] = 55006, + [SMALL_STATE(1054)] = 55051, + [SMALL_STATE(1055)] = 55096, + [SMALL_STATE(1056)] = 55139, + [SMALL_STATE(1057)] = 55184, + [SMALL_STATE(1058)] = 55227, + [SMALL_STATE(1059)] = 55270, + [SMALL_STATE(1060)] = 55315, + [SMALL_STATE(1061)] = 55358, + [SMALL_STATE(1062)] = 55403, + [SMALL_STATE(1063)] = 55446, + [SMALL_STATE(1064)] = 55489, + [SMALL_STATE(1065)] = 55534, + [SMALL_STATE(1066)] = 55579, + [SMALL_STATE(1067)] = 55658, + [SMALL_STATE(1068)] = 55701, + [SMALL_STATE(1069)] = 55748, + [SMALL_STATE(1070)] = 55791, + [SMALL_STATE(1071)] = 55834, + [SMALL_STATE(1072)] = 55877, + [SMALL_STATE(1073)] = 55920, + [SMALL_STATE(1074)] = 55963, + [SMALL_STATE(1075)] = 56006, + [SMALL_STATE(1076)] = 56049, + [SMALL_STATE(1077)] = 56094, + [SMALL_STATE(1078)] = 56137, + [SMALL_STATE(1079)] = 56180, + [SMALL_STATE(1080)] = 56223, + [SMALL_STATE(1081)] = 56268, + [SMALL_STATE(1082)] = 56313, + [SMALL_STATE(1083)] = 56358, + [SMALL_STATE(1084)] = 56401, + [SMALL_STATE(1085)] = 56446, + [SMALL_STATE(1086)] = 56491, + [SMALL_STATE(1087)] = 56536, + [SMALL_STATE(1088)] = 56579, + [SMALL_STATE(1089)] = 56622, + [SMALL_STATE(1090)] = 56665, + [SMALL_STATE(1091)] = 56710, + [SMALL_STATE(1092)] = 56753, + [SMALL_STATE(1093)] = 56796, + [SMALL_STATE(1094)] = 56839, + [SMALL_STATE(1095)] = 56882, + [SMALL_STATE(1096)] = 56925, + [SMALL_STATE(1097)] = 56968, + [SMALL_STATE(1098)] = 57011, + [SMALL_STATE(1099)] = 57058, + [SMALL_STATE(1100)] = 57101, + [SMALL_STATE(1101)] = 57146, + [SMALL_STATE(1102)] = 57191, + [SMALL_STATE(1103)] = 57236, + [SMALL_STATE(1104)] = 57281, + [SMALL_STATE(1105)] = 57326, + [SMALL_STATE(1106)] = 57371, + [SMALL_STATE(1107)] = 57416, + [SMALL_STATE(1108)] = 57461, + [SMALL_STATE(1109)] = 57506, + [SMALL_STATE(1110)] = 57549, + [SMALL_STATE(1111)] = 57594, + [SMALL_STATE(1112)] = 57639, + [SMALL_STATE(1113)] = 57684, + [SMALL_STATE(1114)] = 57729, + [SMALL_STATE(1115)] = 57776, + [SMALL_STATE(1116)] = 57821, + [SMALL_STATE(1117)] = 57866, + [SMALL_STATE(1118)] = 57911, + [SMALL_STATE(1119)] = 57956, + [SMALL_STATE(1120)] = 58003, + [SMALL_STATE(1121)] = 58048, + [SMALL_STATE(1122)] = 58093, + [SMALL_STATE(1123)] = 58140, + [SMALL_STATE(1124)] = 58185, + [SMALL_STATE(1125)] = 58228, + [SMALL_STATE(1126)] = 58273, + [SMALL_STATE(1127)] = 58318, + [SMALL_STATE(1128)] = 58363, + [SMALL_STATE(1129)] = 58408, + [SMALL_STATE(1130)] = 58453, + [SMALL_STATE(1131)] = 58498, + [SMALL_STATE(1132)] = 58543, + [SMALL_STATE(1133)] = 58588, + [SMALL_STATE(1134)] = 58633, + [SMALL_STATE(1135)] = 58678, + [SMALL_STATE(1136)] = 58723, + [SMALL_STATE(1137)] = 58768, + [SMALL_STATE(1138)] = 58813, + [SMALL_STATE(1139)] = 58856, + [SMALL_STATE(1140)] = 58901, + [SMALL_STATE(1141)] = 58963, + [SMALL_STATE(1142)] = 59005, + [SMALL_STATE(1143)] = 59047, + [SMALL_STATE(1144)] = 59089, + [SMALL_STATE(1145)] = 59131, + [SMALL_STATE(1146)] = 59173, + [SMALL_STATE(1147)] = 59235, + [SMALL_STATE(1148)] = 59279, + [SMALL_STATE(1149)] = 59341, + [SMALL_STATE(1150)] = 59383, + [SMALL_STATE(1151)] = 59425, + [SMALL_STATE(1152)] = 59467, + [SMALL_STATE(1153)] = 59509, + [SMALL_STATE(1154)] = 59551, + [SMALL_STATE(1155)] = 59593, + [SMALL_STATE(1156)] = 59637, + [SMALL_STATE(1157)] = 59681, + [SMALL_STATE(1158)] = 59723, + [SMALL_STATE(1159)] = 59785, + [SMALL_STATE(1160)] = 59829, + [SMALL_STATE(1161)] = 59873, + [SMALL_STATE(1162)] = 59917, + [SMALL_STATE(1163)] = 59961, + [SMALL_STATE(1164)] = 60005, + [SMALL_STATE(1165)] = 60067, + [SMALL_STATE(1166)] = 60129, + [SMALL_STATE(1167)] = 60173, + [SMALL_STATE(1168)] = 60217, + [SMALL_STATE(1169)] = 60261, + [SMALL_STATE(1170)] = 60305, + [SMALL_STATE(1171)] = 60349, + [SMALL_STATE(1172)] = 60391, + [SMALL_STATE(1173)] = 60435, + [SMALL_STATE(1174)] = 60479, + [SMALL_STATE(1175)] = 60523, + [SMALL_STATE(1176)] = 60567, + [SMALL_STATE(1177)] = 60611, + [SMALL_STATE(1178)] = 60673, + [SMALL_STATE(1179)] = 60757, + [SMALL_STATE(1180)] = 60801, + [SMALL_STATE(1181)] = 60843, + [SMALL_STATE(1182)] = 60905, + [SMALL_STATE(1183)] = 60949, + [SMALL_STATE(1184)] = 60993, + [SMALL_STATE(1185)] = 61055, + [SMALL_STATE(1186)] = 61097, + [SMALL_STATE(1187)] = 61151, + [SMALL_STATE(1188)] = 61193, + [SMALL_STATE(1189)] = 61237, + [SMALL_STATE(1190)] = 61281, + [SMALL_STATE(1191)] = 61323, + [SMALL_STATE(1192)] = 61407, + [SMALL_STATE(1193)] = 61451, + [SMALL_STATE(1194)] = 61495, + [SMALL_STATE(1195)] = 61539, + [SMALL_STATE(1196)] = 61601, + [SMALL_STATE(1197)] = 61645, + [SMALL_STATE(1198)] = 61689, + [SMALL_STATE(1199)] = 61733, + [SMALL_STATE(1200)] = 61777, + [SMALL_STATE(1201)] = 61821, + [SMALL_STATE(1202)] = 61863, + [SMALL_STATE(1203)] = 61905, + [SMALL_STATE(1204)] = 61949, + [SMALL_STATE(1205)] = 61993, + [SMALL_STATE(1206)] = 62035, + [SMALL_STATE(1207)] = 62079, + [SMALL_STATE(1208)] = 62123, + [SMALL_STATE(1209)] = 62167, + [SMALL_STATE(1210)] = 62229, + [SMALL_STATE(1211)] = 62273, + [SMALL_STATE(1212)] = 62317, + [SMALL_STATE(1213)] = 62359, + [SMALL_STATE(1214)] = 62403, + [SMALL_STATE(1215)] = 62447, + [SMALL_STATE(1216)] = 62489, + [SMALL_STATE(1217)] = 62531, + [SMALL_STATE(1218)] = 62575, + [SMALL_STATE(1219)] = 62619, + [SMALL_STATE(1220)] = 62663, + [SMALL_STATE(1221)] = 62707, + [SMALL_STATE(1222)] = 62751, + [SMALL_STATE(1223)] = 62795, + [SMALL_STATE(1224)] = 62839, + [SMALL_STATE(1225)] = 62883, + [SMALL_STATE(1226)] = 62927, + [SMALL_STATE(1227)] = 62989, + [SMALL_STATE(1228)] = 63033, + [SMALL_STATE(1229)] = 63077, + [SMALL_STATE(1230)] = 63121, + [SMALL_STATE(1231)] = 63171, + [SMALL_STATE(1232)] = 63215, + [SMALL_STATE(1233)] = 63259, + [SMALL_STATE(1234)] = 63301, + [SMALL_STATE(1235)] = 63343, + [SMALL_STATE(1236)] = 63387, + [SMALL_STATE(1237)] = 63429, + [SMALL_STATE(1238)] = 63471, + [SMALL_STATE(1239)] = 63515, + [SMALL_STATE(1240)] = 63559, + [SMALL_STATE(1241)] = 63603, + [SMALL_STATE(1242)] = 63687, + [SMALL_STATE(1243)] = 63741, + [SMALL_STATE(1244)] = 63803, + [SMALL_STATE(1245)] = 63847, + [SMALL_STATE(1246)] = 63891, + [SMALL_STATE(1247)] = 63953, + [SMALL_STATE(1248)] = 63995, + [SMALL_STATE(1249)] = 64037, + [SMALL_STATE(1250)] = 64079, + [SMALL_STATE(1251)] = 64121, + [SMALL_STATE(1252)] = 64183, + [SMALL_STATE(1253)] = 64227, + [SMALL_STATE(1254)] = 64269, + [SMALL_STATE(1255)] = 64313, + [SMALL_STATE(1256)] = 64375, + [SMALL_STATE(1257)] = 64419, + [SMALL_STATE(1258)] = 64463, + [SMALL_STATE(1259)] = 64507, + [SMALL_STATE(1260)] = 64549, + [SMALL_STATE(1261)] = 64593, + [SMALL_STATE(1262)] = 64637, + [SMALL_STATE(1263)] = 64681, + [SMALL_STATE(1264)] = 64723, + [SMALL_STATE(1265)] = 64765, + [SMALL_STATE(1266)] = 64807, + [SMALL_STATE(1267)] = 64869, + [SMALL_STATE(1268)] = 64913, + [SMALL_STATE(1269)] = 64955, + [SMALL_STATE(1270)] = 64997, + [SMALL_STATE(1271)] = 65039, + [SMALL_STATE(1272)] = 65081, + [SMALL_STATE(1273)] = 65125, + [SMALL_STATE(1274)] = 65167, + [SMALL_STATE(1275)] = 65209, + [SMALL_STATE(1276)] = 65251, + [SMALL_STATE(1277)] = 65293, + [SMALL_STATE(1278)] = 65337, + [SMALL_STATE(1279)] = 65379, + [SMALL_STATE(1280)] = 65423, + [SMALL_STATE(1281)] = 65485, + [SMALL_STATE(1282)] = 65529, + [SMALL_STATE(1283)] = 65573, + [SMALL_STATE(1284)] = 65617, + [SMALL_STATE(1285)] = 65659, + [SMALL_STATE(1286)] = 65721, + [SMALL_STATE(1287)] = 65765, + [SMALL_STATE(1288)] = 65827, + [SMALL_STATE(1289)] = 65871, + [SMALL_STATE(1290)] = 65913, + [SMALL_STATE(1291)] = 65955, + [SMALL_STATE(1292)] = 65999, + [SMALL_STATE(1293)] = 66041, + [SMALL_STATE(1294)] = 66085, + [SMALL_STATE(1295)] = 66129, + [SMALL_STATE(1296)] = 66213, + [SMALL_STATE(1297)] = 66257, + [SMALL_STATE(1298)] = 66299, + [SMALL_STATE(1299)] = 66341, + [SMALL_STATE(1300)] = 66385, + [SMALL_STATE(1301)] = 66429, + [SMALL_STATE(1302)] = 66473, + [SMALL_STATE(1303)] = 66517, + [SMALL_STATE(1304)] = 66559, + [SMALL_STATE(1305)] = 66643, + [SMALL_STATE(1306)] = 66685, + [SMALL_STATE(1307)] = 66729, + [SMALL_STATE(1308)] = 66773, + [SMALL_STATE(1309)] = 66817, + [SMALL_STATE(1310)] = 66861, + [SMALL_STATE(1311)] = 66903, + [SMALL_STATE(1312)] = 66945, + [SMALL_STATE(1313)] = 67007, + [SMALL_STATE(1314)] = 67051, + [SMALL_STATE(1315)] = 67095, + [SMALL_STATE(1316)] = 67139, + [SMALL_STATE(1317)] = 67181, + [SMALL_STATE(1318)] = 67225, + [SMALL_STATE(1319)] = 67267, + [SMALL_STATE(1320)] = 67309, + [SMALL_STATE(1321)] = 67351, + [SMALL_STATE(1322)] = 67395, + [SMALL_STATE(1323)] = 67439, + [SMALL_STATE(1324)] = 67483, + [SMALL_STATE(1325)] = 67525, + [SMALL_STATE(1326)] = 67567, + [SMALL_STATE(1327)] = 67609, + [SMALL_STATE(1328)] = 67693, + [SMALL_STATE(1329)] = 67735, + [SMALL_STATE(1330)] = 67777, + [SMALL_STATE(1331)] = 67819, + [SMALL_STATE(1332)] = 67861, + [SMALL_STATE(1333)] = 67923, + [SMALL_STATE(1334)] = 67965, + [SMALL_STATE(1335)] = 68009, + [SMALL_STATE(1336)] = 68053, + [SMALL_STATE(1337)] = 68095, + [SMALL_STATE(1338)] = 68179, + [SMALL_STATE(1339)] = 68223, + [SMALL_STATE(1340)] = 68267, + [SMALL_STATE(1341)] = 68309, + [SMALL_STATE(1342)] = 68351, + [SMALL_STATE(1343)] = 68393, + [SMALL_STATE(1344)] = 68437, + [SMALL_STATE(1345)] = 68481, + [SMALL_STATE(1346)] = 68523, + [SMALL_STATE(1347)] = 68565, + [SMALL_STATE(1348)] = 68607, + [SMALL_STATE(1349)] = 68651, + [SMALL_STATE(1350)] = 68695, + [SMALL_STATE(1351)] = 68739, + [SMALL_STATE(1352)] = 68783, + [SMALL_STATE(1353)] = 68827, + [SMALL_STATE(1354)] = 68871, + [SMALL_STATE(1355)] = 68915, + [SMALL_STATE(1356)] = 68959, + [SMALL_STATE(1357)] = 69003, + [SMALL_STATE(1358)] = 69047, + [SMALL_STATE(1359)] = 69091, + [SMALL_STATE(1360)] = 69153, + [SMALL_STATE(1361)] = 69215, + [SMALL_STATE(1362)] = 69259, + [SMALL_STATE(1363)] = 69301, + [SMALL_STATE(1364)] = 69345, + [SMALL_STATE(1365)] = 69389, + [SMALL_STATE(1366)] = 69433, + [SMALL_STATE(1367)] = 69475, + [SMALL_STATE(1368)] = 69517, + [SMALL_STATE(1369)] = 69559, + [SMALL_STATE(1370)] = 69601, + [SMALL_STATE(1371)] = 69645, + [SMALL_STATE(1372)] = 69689, + [SMALL_STATE(1373)] = 69733, + [SMALL_STATE(1374)] = 69777, + [SMALL_STATE(1375)] = 69831, + [SMALL_STATE(1376)] = 69873, + [SMALL_STATE(1377)] = 69917, + [SMALL_STATE(1378)] = 69979, + [SMALL_STATE(1379)] = 70023, + [SMALL_STATE(1380)] = 70065, + [SMALL_STATE(1381)] = 70109, + [SMALL_STATE(1382)] = 70171, + [SMALL_STATE(1383)] = 70215, + [SMALL_STATE(1384)] = 70259, + [SMALL_STATE(1385)] = 70303, + [SMALL_STATE(1386)] = 70347, + [SMALL_STATE(1387)] = 70389, + [SMALL_STATE(1388)] = 70433, + [SMALL_STATE(1389)] = 70475, + [SMALL_STATE(1390)] = 70523, + [SMALL_STATE(1391)] = 70565, + [SMALL_STATE(1392)] = 70609, + [SMALL_STATE(1393)] = 70651, + [SMALL_STATE(1394)] = 70693, + [SMALL_STATE(1395)] = 70755, + [SMALL_STATE(1396)] = 70797, + [SMALL_STATE(1397)] = 70841, + [SMALL_STATE(1398)] = 70883, + [SMALL_STATE(1399)] = 70927, + [SMALL_STATE(1400)] = 70969, + [SMALL_STATE(1401)] = 71011, + [SMALL_STATE(1402)] = 71055, + [SMALL_STATE(1403)] = 71097, + [SMALL_STATE(1404)] = 71139, + [SMALL_STATE(1405)] = 71181, + [SMALL_STATE(1406)] = 71223, + [SMALL_STATE(1407)] = 71267, + [SMALL_STATE(1408)] = 71309, + [SMALL_STATE(1409)] = 71351, + [SMALL_STATE(1410)] = 71393, + [SMALL_STATE(1411)] = 71435, + [SMALL_STATE(1412)] = 71479, + [SMALL_STATE(1413)] = 71521, + [SMALL_STATE(1414)] = 71563, + [SMALL_STATE(1415)] = 71605, + [SMALL_STATE(1416)] = 71647, + [SMALL_STATE(1417)] = 71691, + [SMALL_STATE(1418)] = 71733, + [SMALL_STATE(1419)] = 71777, + [SMALL_STATE(1420)] = 71821, + [SMALL_STATE(1421)] = 71863, + [SMALL_STATE(1422)] = 71905, + [SMALL_STATE(1423)] = 71947, + [SMALL_STATE(1424)] = 71989, + [SMALL_STATE(1425)] = 72035, + [SMALL_STATE(1426)] = 72079, + [SMALL_STATE(1427)] = 72121, + [SMALL_STATE(1428)] = 72165, + [SMALL_STATE(1429)] = 72209, + [SMALL_STATE(1430)] = 72271, + [SMALL_STATE(1431)] = 72313, + [SMALL_STATE(1432)] = 72357, + [SMALL_STATE(1433)] = 72401, + [SMALL_STATE(1434)] = 72445, + [SMALL_STATE(1435)] = 72489, + [SMALL_STATE(1436)] = 72533, + [SMALL_STATE(1437)] = 72577, + [SMALL_STATE(1438)] = 72621, + [SMALL_STATE(1439)] = 72665, + [SMALL_STATE(1440)] = 72709, + [SMALL_STATE(1441)] = 72753, + [SMALL_STATE(1442)] = 72797, + [SMALL_STATE(1443)] = 72843, + [SMALL_STATE(1444)] = 72885, + [SMALL_STATE(1445)] = 72927, + [SMALL_STATE(1446)] = 72969, + [SMALL_STATE(1447)] = 73011, + [SMALL_STATE(1448)] = 73053, + [SMALL_STATE(1449)] = 73115, + [SMALL_STATE(1450)] = 73159, + [SMALL_STATE(1451)] = 73201, + [SMALL_STATE(1452)] = 73243, + [SMALL_STATE(1453)] = 73291, + [SMALL_STATE(1454)] = 73335, + [SMALL_STATE(1455)] = 73377, + [SMALL_STATE(1456)] = 73419, + [SMALL_STATE(1457)] = 73461, + [SMALL_STATE(1458)] = 73503, + [SMALL_STATE(1459)] = 73545, + [SMALL_STATE(1460)] = 73587, + [SMALL_STATE(1461)] = 73629, + [SMALL_STATE(1462)] = 73673, + [SMALL_STATE(1463)] = 73717, + [SMALL_STATE(1464)] = 73761, + [SMALL_STATE(1465)] = 73805, + [SMALL_STATE(1466)] = 73849, + [SMALL_STATE(1467)] = 73891, + [SMALL_STATE(1468)] = 73933, + [SMALL_STATE(1469)] = 73977, + [SMALL_STATE(1470)] = 74019, + [SMALL_STATE(1471)] = 74063, + [SMALL_STATE(1472)] = 74107, + [SMALL_STATE(1473)] = 74161, + [SMALL_STATE(1474)] = 74205, + [SMALL_STATE(1475)] = 74249, + [SMALL_STATE(1476)] = 74293, + [SMALL_STATE(1477)] = 74337, + [SMALL_STATE(1478)] = 74381, + [SMALL_STATE(1479)] = 74425, + [SMALL_STATE(1480)] = 74469, + [SMALL_STATE(1481)] = 74511, + [SMALL_STATE(1482)] = 74553, + [SMALL_STATE(1483)] = 74595, + [SMALL_STATE(1484)] = 74679, + [SMALL_STATE(1485)] = 74721, + [SMALL_STATE(1486)] = 74763, + [SMALL_STATE(1487)] = 74825, + [SMALL_STATE(1488)] = 74869, + [SMALL_STATE(1489)] = 74953, + [SMALL_STATE(1490)] = 74995, + [SMALL_STATE(1491)] = 75039, + [SMALL_STATE(1492)] = 75101, + [SMALL_STATE(1493)] = 75145, + [SMALL_STATE(1494)] = 75189, + [SMALL_STATE(1495)] = 75231, + [SMALL_STATE(1496)] = 75273, + [SMALL_STATE(1497)] = 75315, + [SMALL_STATE(1498)] = 75357, + [SMALL_STATE(1499)] = 75401, + [SMALL_STATE(1500)] = 75443, + [SMALL_STATE(1501)] = 75485, + [SMALL_STATE(1502)] = 75527, + [SMALL_STATE(1503)] = 75569, + [SMALL_STATE(1504)] = 75611, + [SMALL_STATE(1505)] = 75673, + [SMALL_STATE(1506)] = 75717, + [SMALL_STATE(1507)] = 75759, + [SMALL_STATE(1508)] = 75803, + [SMALL_STATE(1509)] = 75887, + [SMALL_STATE(1510)] = 75931, + [SMALL_STATE(1511)] = 75975, + [SMALL_STATE(1512)] = 76019, + [SMALL_STATE(1513)] = 76063, + [SMALL_STATE(1514)] = 76105, + [SMALL_STATE(1515)] = 76149, + [SMALL_STATE(1516)] = 76193, + [SMALL_STATE(1517)] = 76255, + [SMALL_STATE(1518)] = 76317, + [SMALL_STATE(1519)] = 76359, + [SMALL_STATE(1520)] = 76401, + [SMALL_STATE(1521)] = 76443, + [SMALL_STATE(1522)] = 76487, + [SMALL_STATE(1523)] = 76529, + [SMALL_STATE(1524)] = 76577, + [SMALL_STATE(1525)] = 76621, + [SMALL_STATE(1526)] = 76663, + [SMALL_STATE(1527)] = 76707, + [SMALL_STATE(1528)] = 76751, + [SMALL_STATE(1529)] = 76805, + [SMALL_STATE(1530)] = 76849, + [SMALL_STATE(1531)] = 76893, + [SMALL_STATE(1532)] = 76935, + [SMALL_STATE(1533)] = 76977, + [SMALL_STATE(1534)] = 77019, + [SMALL_STATE(1535)] = 77081, + [SMALL_STATE(1536)] = 77123, + [SMALL_STATE(1537)] = 77167, + [SMALL_STATE(1538)] = 77211, + [SMALL_STATE(1539)] = 77255, + [SMALL_STATE(1540)] = 77299, + [SMALL_STATE(1541)] = 77343, + [SMALL_STATE(1542)] = 77387, + [SMALL_STATE(1543)] = 77431, + [SMALL_STATE(1544)] = 77475, + [SMALL_STATE(1545)] = 77537, + [SMALL_STATE(1546)] = 77579, + [SMALL_STATE(1547)] = 77641, + [SMALL_STATE(1548)] = 77685, + [SMALL_STATE(1549)] = 77727, + [SMALL_STATE(1550)] = 77769, + [SMALL_STATE(1551)] = 77811, + [SMALL_STATE(1552)] = 77859, + [SMALL_STATE(1553)] = 77901, + [SMALL_STATE(1554)] = 77943, + [SMALL_STATE(1555)] = 78005, + [SMALL_STATE(1556)] = 78047, + [SMALL_STATE(1557)] = 78088, + [SMALL_STATE(1558)] = 78133, + [SMALL_STATE(1559)] = 78174, + [SMALL_STATE(1560)] = 78215, + [SMALL_STATE(1561)] = 78256, + [SMALL_STATE(1562)] = 78297, + [SMALL_STATE(1563)] = 78338, + [SMALL_STATE(1564)] = 78379, + [SMALL_STATE(1565)] = 78420, + [SMALL_STATE(1566)] = 78499, + [SMALL_STATE(1567)] = 78540, + [SMALL_STATE(1568)] = 78581, + [SMALL_STATE(1569)] = 78624, + [SMALL_STATE(1570)] = 78665, + [SMALL_STATE(1571)] = 78710, + [SMALL_STATE(1572)] = 78751, + [SMALL_STATE(1573)] = 78798, + [SMALL_STATE(1574)] = 78839, + [SMALL_STATE(1575)] = 78880, + [SMALL_STATE(1576)] = 78925, + [SMALL_STATE(1577)] = 78966, + [SMALL_STATE(1578)] = 79007, + [SMALL_STATE(1579)] = 79048, + [SMALL_STATE(1580)] = 79089, + [SMALL_STATE(1581)] = 79130, + [SMALL_STATE(1582)] = 79171, + [SMALL_STATE(1583)] = 79212, + [SMALL_STATE(1584)] = 79253, + [SMALL_STATE(1585)] = 79294, + [SMALL_STATE(1586)] = 79335, + [SMALL_STATE(1587)] = 79376, + [SMALL_STATE(1588)] = 79417, + [SMALL_STATE(1589)] = 79458, + [SMALL_STATE(1590)] = 79499, + [SMALL_STATE(1591)] = 79540, + [SMALL_STATE(1592)] = 79585, + [SMALL_STATE(1593)] = 79626, + [SMALL_STATE(1594)] = 79671, + [SMALL_STATE(1595)] = 79713, + [SMALL_STATE(1596)] = 79755, + [SMALL_STATE(1597)] = 79823, + [SMALL_STATE(1598)] = 79901, + [SMALL_STATE(1599)] = 79941, + [SMALL_STATE(1600)] = 80009, + [SMALL_STATE(1601)] = 80087, + [SMALL_STATE(1602)] = 80129, + [SMALL_STATE(1603)] = 80207, + [SMALL_STATE(1604)] = 80247, + [SMALL_STATE(1605)] = 80287, + [SMALL_STATE(1606)] = 80365, + [SMALL_STATE(1607)] = 80407, + [SMALL_STATE(1608)] = 80449, + [SMALL_STATE(1609)] = 80527, + [SMALL_STATE(1610)] = 80605, + [SMALL_STATE(1611)] = 80671, + [SMALL_STATE(1612)] = 80713, + [SMALL_STATE(1613)] = 80757, + [SMALL_STATE(1614)] = 80835, + [SMALL_STATE(1615)] = 80877, + [SMALL_STATE(1616)] = 80921, + [SMALL_STATE(1617)] = 80963, + [SMALL_STATE(1618)] = 81005, + [SMALL_STATE(1619)] = 81047, + [SMALL_STATE(1620)] = 81125, + [SMALL_STATE(1621)] = 81167, + [SMALL_STATE(1622)] = 81209, + [SMALL_STATE(1623)] = 81287, + [SMALL_STATE(1624)] = 81329, + [SMALL_STATE(1625)] = 81371, + [SMALL_STATE(1626)] = 81413, + [SMALL_STATE(1627)] = 81455, + [SMALL_STATE(1628)] = 81497, + [SMALL_STATE(1629)] = 81539, + [SMALL_STATE(1630)] = 81581, + [SMALL_STATE(1631)] = 81623, + [SMALL_STATE(1632)] = 81665, + [SMALL_STATE(1633)] = 81707, + [SMALL_STATE(1634)] = 81749, + [SMALL_STATE(1635)] = 81791, + [SMALL_STATE(1636)] = 81833, + [SMALL_STATE(1637)] = 81875, + [SMALL_STATE(1638)] = 81917, + [SMALL_STATE(1639)] = 81959, + [SMALL_STATE(1640)] = 82001, + [SMALL_STATE(1641)] = 82079, + [SMALL_STATE(1642)] = 82121, + [SMALL_STATE(1643)] = 82162, + [SMALL_STATE(1644)] = 82203, + [SMALL_STATE(1645)] = 82276, + [SMALL_STATE(1646)] = 82322, + [SMALL_STATE(1647)] = 82368, + [SMALL_STATE(1648)] = 82414, + [SMALL_STATE(1649)] = 82460, + [SMALL_STATE(1650)] = 82496, + [SMALL_STATE(1651)] = 82532, + [SMALL_STATE(1652)] = 82568, + [SMALL_STATE(1653)] = 82614, + [SMALL_STATE(1654)] = 82660, + [SMALL_STATE(1655)] = 82696, + [SMALL_STATE(1656)] = 82742, + [SMALL_STATE(1657)] = 82808, + [SMALL_STATE(1658)] = 82854, + [SMALL_STATE(1659)] = 82900, + [SMALL_STATE(1660)] = 82936, + [SMALL_STATE(1661)] = 83008, + [SMALL_STATE(1662)] = 83054, + [SMALL_STATE(1663)] = 83120, + [SMALL_STATE(1664)] = 83192, + [SMALL_STATE(1665)] = 83238, + [SMALL_STATE(1666)] = 83310, + [SMALL_STATE(1667)] = 83376, + [SMALL_STATE(1668)] = 83422, + [SMALL_STATE(1669)] = 83494, + [SMALL_STATE(1670)] = 83566, + [SMALL_STATE(1671)] = 83612, + [SMALL_STATE(1672)] = 83684, + [SMALL_STATE(1673)] = 83730, + [SMALL_STATE(1674)] = 83776, + [SMALL_STATE(1675)] = 83822, + [SMALL_STATE(1676)] = 83894, + [SMALL_STATE(1677)] = 83940, + [SMALL_STATE(1678)] = 84012, + [SMALL_STATE(1679)] = 84084, + [SMALL_STATE(1680)] = 84156, + [SMALL_STATE(1681)] = 84202, + [SMALL_STATE(1682)] = 84248, + [SMALL_STATE(1683)] = 84294, + [SMALL_STATE(1684)] = 84360, + [SMALL_STATE(1685)] = 84406, + [SMALL_STATE(1686)] = 84452, + [SMALL_STATE(1687)] = 84521, + [SMALL_STATE(1688)] = 84590, + [SMALL_STATE(1689)] = 84659, + [SMALL_STATE(1690)] = 84728, + [SMALL_STATE(1691)] = 84797, + [SMALL_STATE(1692)] = 84866, + [SMALL_STATE(1693)] = 84933, + [SMALL_STATE(1694)] = 85002, + [SMALL_STATE(1695)] = 85071, + [SMALL_STATE(1696)] = 85140, + [SMALL_STATE(1697)] = 85209, + [SMALL_STATE(1698)] = 85278, + [SMALL_STATE(1699)] = 85347, + [SMALL_STATE(1700)] = 85416, + [SMALL_STATE(1701)] = 85485, + [SMALL_STATE(1702)] = 85554, + [SMALL_STATE(1703)] = 85623, + [SMALL_STATE(1704)] = 85692, + [SMALL_STATE(1705)] = 85761, + [SMALL_STATE(1706)] = 85830, + [SMALL_STATE(1707)] = 85899, + [SMALL_STATE(1708)] = 85959, + [SMALL_STATE(1709)] = 86005, + [SMALL_STATE(1710)] = 86051, + [SMALL_STATE(1711)] = 86111, + [SMALL_STATE(1712)] = 86151, + [SMALL_STATE(1713)] = 86211, + [SMALL_STATE(1714)] = 86257, + [SMALL_STATE(1715)] = 86317, + [SMALL_STATE(1716)] = 86377, + [SMALL_STATE(1717)] = 86437, + [SMALL_STATE(1718)] = 86497, + [SMALL_STATE(1719)] = 86557, + [SMALL_STATE(1720)] = 86617, + [SMALL_STATE(1721)] = 86663, + [SMALL_STATE(1722)] = 86723, + [SMALL_STATE(1723)] = 86767, + [SMALL_STATE(1724)] = 86827, + [SMALL_STATE(1725)] = 86873, + [SMALL_STATE(1726)] = 86933, + [SMALL_STATE(1727)] = 86993, + [SMALL_STATE(1728)] = 87039, + [SMALL_STATE(1729)] = 87099, + [SMALL_STATE(1730)] = 87159, + [SMALL_STATE(1731)] = 87205, + [SMALL_STATE(1732)] = 87265, + [SMALL_STATE(1733)] = 87329, + [SMALL_STATE(1734)] = 87375, + [SMALL_STATE(1735)] = 87435, + [SMALL_STATE(1736)] = 87499, + [SMALL_STATE(1737)] = 87559, + [SMALL_STATE(1738)] = 87619, + [SMALL_STATE(1739)] = 87665, + [SMALL_STATE(1740)] = 87725, + [SMALL_STATE(1741)] = 87771, + [SMALL_STATE(1742)] = 87831, + [SMALL_STATE(1743)] = 87894, + [SMALL_STATE(1744)] = 87957, + [SMALL_STATE(1745)] = 88020, + [SMALL_STATE(1746)] = 88083, + [SMALL_STATE(1747)] = 88118, + [SMALL_STATE(1748)] = 88181, + [SMALL_STATE(1749)] = 88244, + [SMALL_STATE(1750)] = 88307, + [SMALL_STATE(1751)] = 88370, + [SMALL_STATE(1752)] = 88433, + [SMALL_STATE(1753)] = 88468, + [SMALL_STATE(1754)] = 88531, + [SMALL_STATE(1755)] = 88594, + [SMALL_STATE(1756)] = 88657, + [SMALL_STATE(1757)] = 88720, + [SMALL_STATE(1758)] = 88783, + [SMALL_STATE(1759)] = 88846, + [SMALL_STATE(1760)] = 88903, + [SMALL_STATE(1761)] = 88966, + [SMALL_STATE(1762)] = 89029, + [SMALL_STATE(1763)] = 89092, + [SMALL_STATE(1764)] = 89155, + [SMALL_STATE(1765)] = 89218, + [SMALL_STATE(1766)] = 89253, + [SMALL_STATE(1767)] = 89316, + [SMALL_STATE(1768)] = 89379, + [SMALL_STATE(1769)] = 89442, + [SMALL_STATE(1770)] = 89477, + [SMALL_STATE(1771)] = 89540, + [SMALL_STATE(1772)] = 89603, + [SMALL_STATE(1773)] = 89666, + [SMALL_STATE(1774)] = 89729, + [SMALL_STATE(1775)] = 89792, + [SMALL_STATE(1776)] = 89855, + [SMALL_STATE(1777)] = 89918, + [SMALL_STATE(1778)] = 89981, + [SMALL_STATE(1779)] = 90044, + [SMALL_STATE(1780)] = 90107, + [SMALL_STATE(1781)] = 90170, + [SMALL_STATE(1782)] = 90233, + [SMALL_STATE(1783)] = 90296, + [SMALL_STATE(1784)] = 90359, + [SMALL_STATE(1785)] = 90422, + [SMALL_STATE(1786)] = 90485, + [SMALL_STATE(1787)] = 90548, + [SMALL_STATE(1788)] = 90611, + [SMALL_STATE(1789)] = 90674, + [SMALL_STATE(1790)] = 90737, + [SMALL_STATE(1791)] = 90800, + [SMALL_STATE(1792)] = 90863, + [SMALL_STATE(1793)] = 90926, + [SMALL_STATE(1794)] = 90989, + [SMALL_STATE(1795)] = 91052, + [SMALL_STATE(1796)] = 91115, + [SMALL_STATE(1797)] = 91178, + [SMALL_STATE(1798)] = 91241, + [SMALL_STATE(1799)] = 91304, + [SMALL_STATE(1800)] = 91367, + [SMALL_STATE(1801)] = 91430, + [SMALL_STATE(1802)] = 91493, + [SMALL_STATE(1803)] = 91556, + [SMALL_STATE(1804)] = 91619, + [SMALL_STATE(1805)] = 91682, + [SMALL_STATE(1806)] = 91717, + [SMALL_STATE(1807)] = 91780, + [SMALL_STATE(1808)] = 91843, + [SMALL_STATE(1809)] = 91906, + [SMALL_STATE(1810)] = 91969, + [SMALL_STATE(1811)] = 92032, + [SMALL_STATE(1812)] = 92095, + [SMALL_STATE(1813)] = 92158, + [SMALL_STATE(1814)] = 92221, + [SMALL_STATE(1815)] = 92284, + [SMALL_STATE(1816)] = 92347, + [SMALL_STATE(1817)] = 92410, + [SMALL_STATE(1818)] = 92473, + [SMALL_STATE(1819)] = 92511, + [SMALL_STATE(1820)] = 92569, + [SMALL_STATE(1821)] = 92627, + [SMALL_STATE(1822)] = 92685, + [SMALL_STATE(1823)] = 92743, + [SMALL_STATE(1824)] = 92801, + [SMALL_STATE(1825)] = 92835, + [SMALL_STATE(1826)] = 92869, + [SMALL_STATE(1827)] = 92927, + [SMALL_STATE(1828)] = 92985, + [SMALL_STATE(1829)] = 93032, + [SMALL_STATE(1830)] = 93079, + [SMALL_STATE(1831)] = 93138, + [SMALL_STATE(1832)] = 93185, + [SMALL_STATE(1833)] = 93232, + [SMALL_STATE(1834)] = 93291, + [SMALL_STATE(1835)] = 93338, + [SMALL_STATE(1836)] = 93397, + [SMALL_STATE(1837)] = 93456, + [SMALL_STATE(1838)] = 93515, + [SMALL_STATE(1839)] = 93574, + [SMALL_STATE(1840)] = 93621, + [SMALL_STATE(1841)] = 93668, + [SMALL_STATE(1842)] = 93727, + [SMALL_STATE(1843)] = 93786, + [SMALL_STATE(1844)] = 93833, + [SMALL_STATE(1845)] = 93880, + [SMALL_STATE(1846)] = 93927, + [SMALL_STATE(1847)] = 93974, + [SMALL_STATE(1848)] = 94033, + [SMALL_STATE(1849)] = 94092, + [SMALL_STATE(1850)] = 94134, + [SMALL_STATE(1851)] = 94186, + [SMALL_STATE(1852)] = 94232, + [SMALL_STATE(1853)] = 94284, + [SMALL_STATE(1854)] = 94338, + [SMALL_STATE(1855)] = 94384, + [SMALL_STATE(1856)] = 94430, + [SMALL_STATE(1857)] = 94484, + [SMALL_STATE(1858)] = 94536, + [SMALL_STATE(1859)] = 94568, + [SMALL_STATE(1860)] = 94622, + [SMALL_STATE(1861)] = 94674, + [SMALL_STATE(1862)] = 94708, + [SMALL_STATE(1863)] = 94754, + [SMALL_STATE(1864)] = 94808, + [SMALL_STATE(1865)] = 94852, + [SMALL_STATE(1866)] = 94904, + [SMALL_STATE(1867)] = 94958, + [SMALL_STATE(1868)] = 94990, + [SMALL_STATE(1869)] = 95044, + [SMALL_STATE(1870)] = 95086, + [SMALL_STATE(1871)] = 95132, + [SMALL_STATE(1872)] = 95186, + [SMALL_STATE(1873)] = 95240, + [SMALL_STATE(1874)] = 95286, + [SMALL_STATE(1875)] = 95318, + [SMALL_STATE(1876)] = 95372, + [SMALL_STATE(1877)] = 95426, + [SMALL_STATE(1878)] = 95468, + [SMALL_STATE(1879)] = 95501, + [SMALL_STATE(1880)] = 95548, + [SMALL_STATE(1881)] = 95595, + [SMALL_STATE(1882)] = 95642, + [SMALL_STATE(1883)] = 95689, + [SMALL_STATE(1884)] = 95746, + [SMALL_STATE(1885)] = 95803, + [SMALL_STATE(1886)] = 95836, + [SMALL_STATE(1887)] = 95883, + [SMALL_STATE(1888)] = 95930, + [SMALL_STATE(1889)] = 95977, + [SMALL_STATE(1890)] = 96024, + [SMALL_STATE(1891)] = 96081, + [SMALL_STATE(1892)] = 96114, + [SMALL_STATE(1893)] = 96161, + [SMALL_STATE(1894)] = 96208, + [SMALL_STATE(1895)] = 96255, + [SMALL_STATE(1896)] = 96302, + [SMALL_STATE(1897)] = 96359, + [SMALL_STATE(1898)] = 96416, + [SMALL_STATE(1899)] = 96463, + [SMALL_STATE(1900)] = 96510, + [SMALL_STATE(1901)] = 96567, + [SMALL_STATE(1902)] = 96624, + [SMALL_STATE(1903)] = 96671, + [SMALL_STATE(1904)] = 96728, + [SMALL_STATE(1905)] = 96773, + [SMALL_STATE(1906)] = 96820, + [SMALL_STATE(1907)] = 96867, + [SMALL_STATE(1908)] = 96914, + [SMALL_STATE(1909)] = 96961, + [SMALL_STATE(1910)] = 97008, + [SMALL_STATE(1911)] = 97055, + [SMALL_STATE(1912)] = 97112, + [SMALL_STATE(1913)] = 97159, + [SMALL_STATE(1914)] = 97206, + [SMALL_STATE(1915)] = 97253, + [SMALL_STATE(1916)] = 97300, + [SMALL_STATE(1917)] = 97347, + [SMALL_STATE(1918)] = 97394, + [SMALL_STATE(1919)] = 97451, + [SMALL_STATE(1920)] = 97498, + [SMALL_STATE(1921)] = 97544, + [SMALL_STATE(1922)] = 97590, + [SMALL_STATE(1923)] = 97634, + [SMALL_STATE(1924)] = 97678, + [SMALL_STATE(1925)] = 97722, + [SMALL_STATE(1926)] = 97766, + [SMALL_STATE(1927)] = 97810, + [SMALL_STATE(1928)] = 97854, + [SMALL_STATE(1929)] = 97898, + [SMALL_STATE(1930)] = 97944, + [SMALL_STATE(1931)] = 97988, + [SMALL_STATE(1932)] = 98032, + [SMALL_STATE(1933)] = 98080, + [SMALL_STATE(1934)] = 98124, + [SMALL_STATE(1935)] = 98170, + [SMALL_STATE(1936)] = 98214, + [SMALL_STATE(1937)] = 98260, + [SMALL_STATE(1938)] = 98302, + [SMALL_STATE(1939)] = 98342, + [SMALL_STATE(1940)] = 98390, + [SMALL_STATE(1941)] = 98430, + [SMALL_STATE(1942)] = 98476, + [SMALL_STATE(1943)] = 98522, + [SMALL_STATE(1944)] = 98558, + [SMALL_STATE(1945)] = 98602, + [SMALL_STATE(1946)] = 98650, + [SMALL_STATE(1947)] = 98698, + [SMALL_STATE(1948)] = 98742, + [SMALL_STATE(1949)] = 98778, + [SMALL_STATE(1950)] = 98826, + [SMALL_STATE(1951)] = 98872, + [SMALL_STATE(1952)] = 98918, + [SMALL_STATE(1953)] = 98966, + [SMALL_STATE(1954)] = 99014, + [SMALL_STATE(1955)] = 99058, + [SMALL_STATE(1956)] = 99104, + [SMALL_STATE(1957)] = 99148, + [SMALL_STATE(1958)] = 99196, + [SMALL_STATE(1959)] = 99244, + [SMALL_STATE(1960)] = 99292, + [SMALL_STATE(1961)] = 99327, + [SMALL_STATE(1962)] = 99360, + [SMALL_STATE(1963)] = 99389, + [SMALL_STATE(1964)] = 99434, + [SMALL_STATE(1965)] = 99467, + [SMALL_STATE(1966)] = 99502, + [SMALL_STATE(1967)] = 99547, + [SMALL_STATE(1968)] = 99590, + [SMALL_STATE(1969)] = 99621, + [SMALL_STATE(1970)] = 99667, + [SMALL_STATE(1971)] = 99705, + [SMALL_STATE(1972)] = 99751, + [SMALL_STATE(1973)] = 99785, + [SMALL_STATE(1974)] = 99831, + [SMALL_STATE(1975)] = 99873, + [SMALL_STATE(1976)] = 99905, + [SMALL_STATE(1977)] = 99935, + [SMALL_STATE(1978)] = 99973, + [SMALL_STATE(1979)] = 100019, + [SMALL_STATE(1980)] = 100065, + [SMALL_STATE(1981)] = 100111, + [SMALL_STATE(1982)] = 100149, + [SMALL_STATE(1983)] = 100195, + [SMALL_STATE(1984)] = 100233, + [SMALL_STATE(1985)] = 100275, + [SMALL_STATE(1986)] = 100313, + [SMALL_STATE(1987)] = 100359, + [SMALL_STATE(1988)] = 100405, + [SMALL_STATE(1989)] = 100451, + [SMALL_STATE(1990)] = 100489, + [SMALL_STATE(1991)] = 100531, + [SMALL_STATE(1992)] = 100565, + [SMALL_STATE(1993)] = 100611, + [SMALL_STATE(1994)] = 100653, + [SMALL_STATE(1995)] = 100695, + [SMALL_STATE(1996)] = 100741, + [SMALL_STATE(1997)] = 100787, + [SMALL_STATE(1998)] = 100829, + [SMALL_STATE(1999)] = 100875, + [SMALL_STATE(2000)] = 100913, + [SMALL_STATE(2001)] = 100959, + [SMALL_STATE(2002)] = 101005, + [SMALL_STATE(2003)] = 101051, + [SMALL_STATE(2004)] = 101097, + [SMALL_STATE(2005)] = 101143, + [SMALL_STATE(2006)] = 101173, + [SMALL_STATE(2007)] = 101219, + [SMALL_STATE(2008)] = 101257, + [SMALL_STATE(2009)] = 101295, + [SMALL_STATE(2010)] = 101333, + [SMALL_STATE(2011)] = 101365, + [SMALL_STATE(2012)] = 101401, + [SMALL_STATE(2013)] = 101447, + [SMALL_STATE(2014)] = 101489, + [SMALL_STATE(2015)] = 101527, + [SMALL_STATE(2016)] = 101573, + [SMALL_STATE(2017)] = 101615, + [SMALL_STATE(2018)] = 101661, + [SMALL_STATE(2019)] = 101699, + [SMALL_STATE(2020)] = 101727, + [SMALL_STATE(2021)] = 101765, + [SMALL_STATE(2022)] = 101811, + [SMALL_STATE(2023)] = 101853, + [SMALL_STATE(2024)] = 101891, + [SMALL_STATE(2025)] = 101933, + [SMALL_STATE(2026)] = 101979, + [SMALL_STATE(2027)] = 102017, + [SMALL_STATE(2028)] = 102063, + [SMALL_STATE(2029)] = 102109, + [SMALL_STATE(2030)] = 102155, + [SMALL_STATE(2031)] = 102201, + [SMALL_STATE(2032)] = 102247, + [SMALL_STATE(2033)] = 102286, + [SMALL_STATE(2034)] = 102315, + [SMALL_STATE(2035)] = 102362, + [SMALL_STATE(2036)] = 102389, + [SMALL_STATE(2037)] = 102428, + [SMALL_STATE(2038)] = 102465, + [SMALL_STATE(2039)] = 102502, + [SMALL_STATE(2040)] = 102549, + [SMALL_STATE(2041)] = 102588, + [SMALL_STATE(2042)] = 102617, + [SMALL_STATE(2043)] = 102646, + [SMALL_STATE(2044)] = 102693, + [SMALL_STATE(2045)] = 102740, + [SMALL_STATE(2046)] = 102775, + [SMALL_STATE(2047)] = 102822, + [SMALL_STATE(2048)] = 102869, + [SMALL_STATE(2049)] = 102898, + [SMALL_STATE(2050)] = 102935, + [SMALL_STATE(2051)] = 102972, + [SMALL_STATE(2052)] = 103011, + [SMALL_STATE(2053)] = 103058, + [SMALL_STATE(2054)] = 103105, + [SMALL_STATE(2055)] = 103132, + [SMALL_STATE(2056)] = 103179, + [SMALL_STATE(2057)] = 103208, + [SMALL_STATE(2058)] = 103255, + [SMALL_STATE(2059)] = 103302, + [SMALL_STATE(2060)] = 103349, + [SMALL_STATE(2061)] = 103378, + [SMALL_STATE(2062)] = 103425, + [SMALL_STATE(2063)] = 103472, + [SMALL_STATE(2064)] = 103519, + [SMALL_STATE(2065)] = 103558, + [SMALL_STATE(2066)] = 103593, + [SMALL_STATE(2067)] = 103640, + [SMALL_STATE(2068)] = 103687, + [SMALL_STATE(2069)] = 103726, + [SMALL_STATE(2070)] = 103763, + [SMALL_STATE(2071)] = 103810, + [SMALL_STATE(2072)] = 103857, + [SMALL_STATE(2073)] = 103884, + [SMALL_STATE(2074)] = 103919, + [SMALL_STATE(2075)] = 103966, + [SMALL_STATE(2076)] = 103995, + [SMALL_STATE(2077)] = 104034, + [SMALL_STATE(2078)] = 104081, + [SMALL_STATE(2079)] = 104128, + [SMALL_STATE(2080)] = 104175, + [SMALL_STATE(2081)] = 104214, + [SMALL_STATE(2082)] = 104261, + [SMALL_STATE(2083)] = 104308, + [SMALL_STATE(2084)] = 104355, + [SMALL_STATE(2085)] = 104402, + [SMALL_STATE(2086)] = 104429, + [SMALL_STATE(2087)] = 104458, + [SMALL_STATE(2088)] = 104505, + [SMALL_STATE(2089)] = 104544, + [SMALL_STATE(2090)] = 104571, + [SMALL_STATE(2091)] = 104610, + [SMALL_STATE(2092)] = 104657, + [SMALL_STATE(2093)] = 104704, + [SMALL_STATE(2094)] = 104739, + [SMALL_STATE(2095)] = 104768, + [SMALL_STATE(2096)] = 104807, + [SMALL_STATE(2097)] = 104854, + [SMALL_STATE(2098)] = 104901, + [SMALL_STATE(2099)] = 104948, + [SMALL_STATE(2100)] = 104987, + [SMALL_STATE(2101)] = 105016, + [SMALL_STATE(2102)] = 105063, + [SMALL_STATE(2103)] = 105092, + [SMALL_STATE(2104)] = 105131, + [SMALL_STATE(2105)] = 105178, + [SMALL_STATE(2106)] = 105225, + [SMALL_STATE(2107)] = 105254, + [SMALL_STATE(2108)] = 105293, + [SMALL_STATE(2109)] = 105332, + [SMALL_STATE(2110)] = 105361, + [SMALL_STATE(2111)] = 105400, + [SMALL_STATE(2112)] = 105439, + [SMALL_STATE(2113)] = 105478, + [SMALL_STATE(2114)] = 105517, + [SMALL_STATE(2115)] = 105564, + [SMALL_STATE(2116)] = 105593, + [SMALL_STATE(2117)] = 105640, + [SMALL_STATE(2118)] = 105679, + [SMALL_STATE(2119)] = 105718, + [SMALL_STATE(2120)] = 105765, + [SMALL_STATE(2121)] = 105812, + [SMALL_STATE(2122)] = 105841, + [SMALL_STATE(2123)] = 105880, + [SMALL_STATE(2124)] = 105919, + [SMALL_STATE(2125)] = 105966, + [SMALL_STATE(2126)] = 106013, + [SMALL_STATE(2127)] = 106052, + [SMALL_STATE(2128)] = 106091, + [SMALL_STATE(2129)] = 106130, + [SMALL_STATE(2130)] = 106169, + [SMALL_STATE(2131)] = 106216, + [SMALL_STATE(2132)] = 106255, + [SMALL_STATE(2133)] = 106302, + [SMALL_STATE(2134)] = 106339, + [SMALL_STATE(2135)] = 106370, + [SMALL_STATE(2136)] = 106417, + [SMALL_STATE(2137)] = 106446, + [SMALL_STATE(2138)] = 106493, + [SMALL_STATE(2139)] = 106540, + [SMALL_STATE(2140)] = 106569, + [SMALL_STATE(2141)] = 106608, + [SMALL_STATE(2142)] = 106655, + [SMALL_STATE(2143)] = 106702, + [SMALL_STATE(2144)] = 106749, + [SMALL_STATE(2145)] = 106788, + [SMALL_STATE(2146)] = 106818, + [SMALL_STATE(2147)] = 106858, + [SMALL_STATE(2148)] = 106902, + [SMALL_STATE(2149)] = 106942, + [SMALL_STATE(2150)] = 106982, + [SMALL_STATE(2151)] = 107026, + [SMALL_STATE(2152)] = 107070, + [SMALL_STATE(2153)] = 107114, + [SMALL_STATE(2154)] = 107158, + [SMALL_STATE(2155)] = 107196, + [SMALL_STATE(2156)] = 107236, + [SMALL_STATE(2157)] = 107262, + [SMALL_STATE(2158)] = 107302, + [SMALL_STATE(2159)] = 107340, + [SMALL_STATE(2160)] = 107384, + [SMALL_STATE(2161)] = 107422, + [SMALL_STATE(2162)] = 107464, + [SMALL_STATE(2163)] = 107506, + [SMALL_STATE(2164)] = 107548, + [SMALL_STATE(2165)] = 107592, + [SMALL_STATE(2166)] = 107618, + [SMALL_STATE(2167)] = 107662, + [SMALL_STATE(2168)] = 107702, + [SMALL_STATE(2169)] = 107728, + [SMALL_STATE(2170)] = 107772, + [SMALL_STATE(2171)] = 107812, + [SMALL_STATE(2172)] = 107852, + [SMALL_STATE(2173)] = 107896, + [SMALL_STATE(2174)] = 107940, + [SMALL_STATE(2175)] = 107966, + [SMALL_STATE(2176)] = 108010, + [SMALL_STATE(2177)] = 108050, + [SMALL_STATE(2178)] = 108090, + [SMALL_STATE(2179)] = 108130, + [SMALL_STATE(2180)] = 108168, + [SMALL_STATE(2181)] = 108208, + [SMALL_STATE(2182)] = 108246, + [SMALL_STATE(2183)] = 108286, + [SMALL_STATE(2184)] = 108326, + [SMALL_STATE(2185)] = 108366, + [SMALL_STATE(2186)] = 108394, + [SMALL_STATE(2187)] = 108434, + [SMALL_STATE(2188)] = 108462, + [SMALL_STATE(2189)] = 108490, + [SMALL_STATE(2190)] = 108518, + [SMALL_STATE(2191)] = 108558, + [SMALL_STATE(2192)] = 108598, + [SMALL_STATE(2193)] = 108642, + [SMALL_STATE(2194)] = 108670, + [SMALL_STATE(2195)] = 108698, + [SMALL_STATE(2196)] = 108726, + [SMALL_STATE(2197)] = 108766, + [SMALL_STATE(2198)] = 108810, + [SMALL_STATE(2199)] = 108854, + [SMALL_STATE(2200)] = 108894, + [SMALL_STATE(2201)] = 108922, + [SMALL_STATE(2202)] = 108966, + [SMALL_STATE(2203)] = 109006, + [SMALL_STATE(2204)] = 109046, + [SMALL_STATE(2205)] = 109088, + [SMALL_STATE(2206)] = 109128, + [SMALL_STATE(2207)] = 109158, + [SMALL_STATE(2208)] = 109198, + [SMALL_STATE(2209)] = 109242, + [SMALL_STATE(2210)] = 109270, + [SMALL_STATE(2211)] = 109314, + [SMALL_STATE(2212)] = 109352, + [SMALL_STATE(2213)] = 109392, + [SMALL_STATE(2214)] = 109436, + [SMALL_STATE(2215)] = 109476, + [SMALL_STATE(2216)] = 109516, + [SMALL_STATE(2217)] = 109560, + [SMALL_STATE(2218)] = 109600, + [SMALL_STATE(2219)] = 109640, + [SMALL_STATE(2220)] = 109682, + [SMALL_STATE(2221)] = 109722, + [SMALL_STATE(2222)] = 109762, + [SMALL_STATE(2223)] = 109788, + [SMALL_STATE(2224)] = 109828, + [SMALL_STATE(2225)] = 109872, + [SMALL_STATE(2226)] = 109906, + [SMALL_STATE(2227)] = 109950, + [SMALL_STATE(2228)] = 109994, + [SMALL_STATE(2229)] = 110030, + [SMALL_STATE(2230)] = 110070, + [SMALL_STATE(2231)] = 110114, + [SMALL_STATE(2232)] = 110154, + [SMALL_STATE(2233)] = 110194, + [SMALL_STATE(2234)] = 110222, + [SMALL_STATE(2235)] = 110250, + [SMALL_STATE(2236)] = 110294, + [SMALL_STATE(2237)] = 110332, + [SMALL_STATE(2238)] = 110365, + [SMALL_STATE(2239)] = 110398, + [SMALL_STATE(2240)] = 110431, + [SMALL_STATE(2241)] = 110464, + [SMALL_STATE(2242)] = 110497, + [SMALL_STATE(2243)] = 110530, + [SMALL_STATE(2244)] = 110563, + [SMALL_STATE(2245)] = 110596, + [SMALL_STATE(2246)] = 110629, + [SMALL_STATE(2247)] = 110662, + [SMALL_STATE(2248)] = 110695, + [SMALL_STATE(2249)] = 110728, + [SMALL_STATE(2250)] = 110761, + [SMALL_STATE(2251)] = 110794, + [SMALL_STATE(2252)] = 110827, + [SMALL_STATE(2253)] = 110860, + [SMALL_STATE(2254)] = 110893, + [SMALL_STATE(2255)] = 110926, + [SMALL_STATE(2256)] = 110959, + [SMALL_STATE(2257)] = 110992, + [SMALL_STATE(2258)] = 111021, + [SMALL_STATE(2259)] = 111054, + [SMALL_STATE(2260)] = 111087, + [SMALL_STATE(2261)] = 111120, + [SMALL_STATE(2262)] = 111153, + [SMALL_STATE(2263)] = 111186, + [SMALL_STATE(2264)] = 111219, + [SMALL_STATE(2265)] = 111252, + [SMALL_STATE(2266)] = 111285, + [SMALL_STATE(2267)] = 111310, + [SMALL_STATE(2268)] = 111343, + [SMALL_STATE(2269)] = 111376, + [SMALL_STATE(2270)] = 111409, + [SMALL_STATE(2271)] = 111442, + [SMALL_STATE(2272)] = 111475, + [SMALL_STATE(2273)] = 111508, + [SMALL_STATE(2274)] = 111541, + [SMALL_STATE(2275)] = 111574, + [SMALL_STATE(2276)] = 111607, + [SMALL_STATE(2277)] = 111640, + [SMALL_STATE(2278)] = 111673, + [SMALL_STATE(2279)] = 111706, + [SMALL_STATE(2280)] = 111739, + [SMALL_STATE(2281)] = 111772, + [SMALL_STATE(2282)] = 111799, + [SMALL_STATE(2283)] = 111832, + [SMALL_STATE(2284)] = 111865, + [SMALL_STATE(2285)] = 111898, + [SMALL_STATE(2286)] = 111931, + [SMALL_STATE(2287)] = 111958, + [SMALL_STATE(2288)] = 111991, + [SMALL_STATE(2289)] = 112024, + [SMALL_STATE(2290)] = 112057, + [SMALL_STATE(2291)] = 112090, + [SMALL_STATE(2292)] = 112123, + [SMALL_STATE(2293)] = 112150, + [SMALL_STATE(2294)] = 112185, + [SMALL_STATE(2295)] = 112218, + [SMALL_STATE(2296)] = 112251, + [SMALL_STATE(2297)] = 112278, + [SMALL_STATE(2298)] = 112311, + [SMALL_STATE(2299)] = 112344, + [SMALL_STATE(2300)] = 112377, + [SMALL_STATE(2301)] = 112410, + [SMALL_STATE(2302)] = 112443, + [SMALL_STATE(2303)] = 112476, + [SMALL_STATE(2304)] = 112509, + [SMALL_STATE(2305)] = 112542, + [SMALL_STATE(2306)] = 112575, + [SMALL_STATE(2307)] = 112608, + [SMALL_STATE(2308)] = 112641, + [SMALL_STATE(2309)] = 112674, + [SMALL_STATE(2310)] = 112707, + [SMALL_STATE(2311)] = 112740, + [SMALL_STATE(2312)] = 112773, + [SMALL_STATE(2313)] = 112806, + [SMALL_STATE(2314)] = 112839, + [SMALL_STATE(2315)] = 112872, + [SMALL_STATE(2316)] = 112905, + [SMALL_STATE(2317)] = 112938, + [SMALL_STATE(2318)] = 112971, + [SMALL_STATE(2319)] = 113004, + [SMALL_STATE(2320)] = 113037, + [SMALL_STATE(2321)] = 113070, + [SMALL_STATE(2322)] = 113103, + [SMALL_STATE(2323)] = 113136, + [SMALL_STATE(2324)] = 113169, + [SMALL_STATE(2325)] = 113202, + [SMALL_STATE(2326)] = 113235, + [SMALL_STATE(2327)] = 113268, + [SMALL_STATE(2328)] = 113301, + [SMALL_STATE(2329)] = 113334, + [SMALL_STATE(2330)] = 113363, + [SMALL_STATE(2331)] = 113396, + [SMALL_STATE(2332)] = 113429, + [SMALL_STATE(2333)] = 113460, + [SMALL_STATE(2334)] = 113493, + [SMALL_STATE(2335)] = 113526, + [SMALL_STATE(2336)] = 113559, + [SMALL_STATE(2337)] = 113592, + [SMALL_STATE(2338)] = 113625, + [SMALL_STATE(2339)] = 113660, + [SMALL_STATE(2340)] = 113693, + [SMALL_STATE(2341)] = 113724, + [SMALL_STATE(2342)] = 113757, + [SMALL_STATE(2343)] = 113786, + [SMALL_STATE(2344)] = 113819, + [SMALL_STATE(2345)] = 113852, + [SMALL_STATE(2346)] = 113881, + [SMALL_STATE(2347)] = 113914, + [SMALL_STATE(2348)] = 113947, + [SMALL_STATE(2349)] = 113978, + [SMALL_STATE(2350)] = 114011, + [SMALL_STATE(2351)] = 114044, + [SMALL_STATE(2352)] = 114077, + [SMALL_STATE(2353)] = 114110, + [SMALL_STATE(2354)] = 114143, + [SMALL_STATE(2355)] = 114176, + [SMALL_STATE(2356)] = 114209, + [SMALL_STATE(2357)] = 114242, + [SMALL_STATE(2358)] = 114275, + [SMALL_STATE(2359)] = 114308, + [SMALL_STATE(2360)] = 114341, + [SMALL_STATE(2361)] = 114374, + [SMALL_STATE(2362)] = 114407, + [SMALL_STATE(2363)] = 114432, + [SMALL_STATE(2364)] = 114457, + [SMALL_STATE(2365)] = 114490, + [SMALL_STATE(2366)] = 114519, + [SMALL_STATE(2367)] = 114552, + [SMALL_STATE(2368)] = 114585, + [SMALL_STATE(2369)] = 114618, + [SMALL_STATE(2370)] = 114642, + [SMALL_STATE(2371)] = 114678, + [SMALL_STATE(2372)] = 114712, + [SMALL_STATE(2373)] = 114742, + [SMALL_STATE(2374)] = 114766, + [SMALL_STATE(2375)] = 114802, + [SMALL_STATE(2376)] = 114840, + [SMALL_STATE(2377)] = 114864, + [SMALL_STATE(2378)] = 114894, + [SMALL_STATE(2379)] = 114930, + [SMALL_STATE(2380)] = 114968, + [SMALL_STATE(2381)] = 115004, + [SMALL_STATE(2382)] = 115042, + [SMALL_STATE(2383)] = 115080, + [SMALL_STATE(2384)] = 115116, + [SMALL_STATE(2385)] = 115152, + [SMALL_STATE(2386)] = 115188, + [SMALL_STATE(2387)] = 115224, + [SMALL_STATE(2388)] = 115260, + [SMALL_STATE(2389)] = 115298, + [SMALL_STATE(2390)] = 115328, + [SMALL_STATE(2391)] = 115366, + [SMALL_STATE(2392)] = 115402, + [SMALL_STATE(2393)] = 115440, + [SMALL_STATE(2394)] = 115476, + [SMALL_STATE(2395)] = 115514, + [SMALL_STATE(2396)] = 115544, + [SMALL_STATE(2397)] = 115582, + [SMALL_STATE(2398)] = 115618, + [SMALL_STATE(2399)] = 115654, + [SMALL_STATE(2400)] = 115688, + [SMALL_STATE(2401)] = 115726, + [SMALL_STATE(2402)] = 115764, + [SMALL_STATE(2403)] = 115802, + [SMALL_STATE(2404)] = 115840, + [SMALL_STATE(2405)] = 115876, + [SMALL_STATE(2406)] = 115912, + [SMALL_STATE(2407)] = 115948, + [SMALL_STATE(2408)] = 115986, + [SMALL_STATE(2409)] = 116024, + [SMALL_STATE(2410)] = 116052, + [SMALL_STATE(2411)] = 116088, + [SMALL_STATE(2412)] = 116124, + [SMALL_STATE(2413)] = 116162, + [SMALL_STATE(2414)] = 116198, + [SMALL_STATE(2415)] = 116234, + [SMALL_STATE(2416)] = 116270, + [SMALL_STATE(2417)] = 116308, + [SMALL_STATE(2418)] = 116344, + [SMALL_STATE(2419)] = 116374, + [SMALL_STATE(2420)] = 116410, + [SMALL_STATE(2421)] = 116448, + [SMALL_STATE(2422)] = 116484, + [SMALL_STATE(2423)] = 116520, + [SMALL_STATE(2424)] = 116558, + [SMALL_STATE(2425)] = 116594, + [SMALL_STATE(2426)] = 116619, + [SMALL_STATE(2427)] = 116650, + [SMALL_STATE(2428)] = 116685, + [SMALL_STATE(2429)] = 116718, + [SMALL_STATE(2430)] = 116749, + [SMALL_STATE(2431)] = 116784, + [SMALL_STATE(2432)] = 116819, + [SMALL_STATE(2433)] = 116854, + [SMALL_STATE(2434)] = 116879, + [SMALL_STATE(2435)] = 116904, + [SMALL_STATE(2436)] = 116935, + [SMALL_STATE(2437)] = 116970, + [SMALL_STATE(2438)] = 117001, + [SMALL_STATE(2439)] = 117034, + [SMALL_STATE(2440)] = 117059, + [SMALL_STATE(2441)] = 117082, + [SMALL_STATE(2442)] = 117115, + [SMALL_STATE(2443)] = 117140, + [SMALL_STATE(2444)] = 117173, + [SMALL_STATE(2445)] = 117208, + [SMALL_STATE(2446)] = 117243, + [SMALL_STATE(2447)] = 117268, + [SMALL_STATE(2448)] = 117293, + [SMALL_STATE(2449)] = 117328, + [SMALL_STATE(2450)] = 117363, + [SMALL_STATE(2451)] = 117394, + [SMALL_STATE(2452)] = 117427, + [SMALL_STATE(2453)] = 117462, + [SMALL_STATE(2454)] = 117495, + [SMALL_STATE(2455)] = 117526, + [SMALL_STATE(2456)] = 117561, + [SMALL_STATE(2457)] = 117596, + [SMALL_STATE(2458)] = 117627, + [SMALL_STATE(2459)] = 117652, + [SMALL_STATE(2460)] = 117687, + [SMALL_STATE(2461)] = 117712, + [SMALL_STATE(2462)] = 117735, + [SMALL_STATE(2463)] = 117760, + [SMALL_STATE(2464)] = 117785, + [SMALL_STATE(2465)] = 117810, + [SMALL_STATE(2466)] = 117841, + [SMALL_STATE(2467)] = 117876, + [SMALL_STATE(2468)] = 117911, + [SMALL_STATE(2469)] = 117944, + [SMALL_STATE(2470)] = 117979, + [SMALL_STATE(2471)] = 118014, + [SMALL_STATE(2472)] = 118049, + [SMALL_STATE(2473)] = 118078, + [SMALL_STATE(2474)] = 118103, + [SMALL_STATE(2475)] = 118128, + [SMALL_STATE(2476)] = 118163, + [SMALL_STATE(2477)] = 118188, + [SMALL_STATE(2478)] = 118221, + [SMALL_STATE(2479)] = 118254, + [SMALL_STATE(2480)] = 118279, + [SMALL_STATE(2481)] = 118314, + [SMALL_STATE(2482)] = 118349, + [SMALL_STATE(2483)] = 118382, + [SMALL_STATE(2484)] = 118417, + [SMALL_STATE(2485)] = 118452, + [SMALL_STATE(2486)] = 118487, + [SMALL_STATE(2487)] = 118520, + [SMALL_STATE(2488)] = 118553, + [SMALL_STATE(2489)] = 118588, + [SMALL_STATE(2490)] = 118623, + [SMALL_STATE(2491)] = 118658, + [SMALL_STATE(2492)] = 118693, + [SMALL_STATE(2493)] = 118726, + [SMALL_STATE(2494)] = 118761, + [SMALL_STATE(2495)] = 118784, + [SMALL_STATE(2496)] = 118819, + [SMALL_STATE(2497)] = 118852, + [SMALL_STATE(2498)] = 118887, + [SMALL_STATE(2499)] = 118912, + [SMALL_STATE(2500)] = 118945, + [SMALL_STATE(2501)] = 118980, + [SMALL_STATE(2502)] = 119013, + [SMALL_STATE(2503)] = 119044, + [SMALL_STATE(2504)] = 119075, + [SMALL_STATE(2505)] = 119108, + [SMALL_STATE(2506)] = 119143, + [SMALL_STATE(2507)] = 119174, + [SMALL_STATE(2508)] = 119209, + [SMALL_STATE(2509)] = 119234, + [SMALL_STATE(2510)] = 119269, + [SMALL_STATE(2511)] = 119304, + [SMALL_STATE(2512)] = 119337, + [SMALL_STATE(2513)] = 119370, + [SMALL_STATE(2514)] = 119405, + [SMALL_STATE(2515)] = 119436, + [SMALL_STATE(2516)] = 119469, + [SMALL_STATE(2517)] = 119504, + [SMALL_STATE(2518)] = 119539, + [SMALL_STATE(2519)] = 119574, + [SMALL_STATE(2520)] = 119609, + [SMALL_STATE(2521)] = 119644, + [SMALL_STATE(2522)] = 119679, + [SMALL_STATE(2523)] = 119712, + [SMALL_STATE(2524)] = 119747, + [SMALL_STATE(2525)] = 119772, + [SMALL_STATE(2526)] = 119797, + [SMALL_STATE(2527)] = 119832, + [SMALL_STATE(2528)] = 119857, + [SMALL_STATE(2529)] = 119892, + [SMALL_STATE(2530)] = 119927, + [SMALL_STATE(2531)] = 119962, + [SMALL_STATE(2532)] = 119987, + [SMALL_STATE(2533)] = 120022, + [SMALL_STATE(2534)] = 120055, + [SMALL_STATE(2535)] = 120080, + [SMALL_STATE(2536)] = 120113, + [SMALL_STATE(2537)] = 120146, + [SMALL_STATE(2538)] = 120179, + [SMALL_STATE(2539)] = 120214, + [SMALL_STATE(2540)] = 120239, + [SMALL_STATE(2541)] = 120270, + [SMALL_STATE(2542)] = 120305, + [SMALL_STATE(2543)] = 120340, + [SMALL_STATE(2544)] = 120375, + [SMALL_STATE(2545)] = 120404, + [SMALL_STATE(2546)] = 120439, + [SMALL_STATE(2547)] = 120464, + [SMALL_STATE(2548)] = 120487, + [SMALL_STATE(2549)] = 120512, + [SMALL_STATE(2550)] = 120547, + [SMALL_STATE(2551)] = 120580, + [SMALL_STATE(2552)] = 120613, + [SMALL_STATE(2553)] = 120646, + [SMALL_STATE(2554)] = 120671, + [SMALL_STATE(2555)] = 120702, + [SMALL_STATE(2556)] = 120737, + [SMALL_STATE(2557)] = 120772, + [SMALL_STATE(2558)] = 120797, + [SMALL_STATE(2559)] = 120832, + [SMALL_STATE(2560)] = 120865, + [SMALL_STATE(2561)] = 120892, + [SMALL_STATE(2562)] = 120917, + [SMALL_STATE(2563)] = 120952, + [SMALL_STATE(2564)] = 120987, + [SMALL_STATE(2565)] = 121022, + [SMALL_STATE(2566)] = 121057, + [SMALL_STATE(2567)] = 121092, + [SMALL_STATE(2568)] = 121115, + [SMALL_STATE(2569)] = 121140, + [SMALL_STATE(2570)] = 121165, + [SMALL_STATE(2571)] = 121190, + [SMALL_STATE(2572)] = 121223, + [SMALL_STATE(2573)] = 121258, + [SMALL_STATE(2574)] = 121283, + [SMALL_STATE(2575)] = 121316, + [SMALL_STATE(2576)] = 121351, + [SMALL_STATE(2577)] = 121386, + [SMALL_STATE(2578)] = 121417, + [SMALL_STATE(2579)] = 121452, + [SMALL_STATE(2580)] = 121485, + [SMALL_STATE(2581)] = 121516, + [SMALL_STATE(2582)] = 121539, + [SMALL_STATE(2583)] = 121562, + [SMALL_STATE(2584)] = 121597, + [SMALL_STATE(2585)] = 121632, + [SMALL_STATE(2586)] = 121659, + [SMALL_STATE(2587)] = 121692, + [SMALL_STATE(2588)] = 121725, + [SMALL_STATE(2589)] = 121758, + [SMALL_STATE(2590)] = 121793, + [SMALL_STATE(2591)] = 121825, + [SMALL_STATE(2592)] = 121855, + [SMALL_STATE(2593)] = 121887, + [SMALL_STATE(2594)] = 121919, + [SMALL_STATE(2595)] = 121951, + [SMALL_STATE(2596)] = 121983, + [SMALL_STATE(2597)] = 122015, + [SMALL_STATE(2598)] = 122047, + [SMALL_STATE(2599)] = 122077, + [SMALL_STATE(2600)] = 122107, + [SMALL_STATE(2601)] = 122139, + [SMALL_STATE(2602)] = 122171, + [SMALL_STATE(2603)] = 122201, + [SMALL_STATE(2604)] = 122231, + [SMALL_STATE(2605)] = 122257, + [SMALL_STATE(2606)] = 122287, + [SMALL_STATE(2607)] = 122319, + [SMALL_STATE(2608)] = 122349, + [SMALL_STATE(2609)] = 122381, + [SMALL_STATE(2610)] = 122413, + [SMALL_STATE(2611)] = 122443, + [SMALL_STATE(2612)] = 122475, + [SMALL_STATE(2613)] = 122507, + [SMALL_STATE(2614)] = 122537, + [SMALL_STATE(2615)] = 122567, + [SMALL_STATE(2616)] = 122595, + [SMALL_STATE(2617)] = 122627, + [SMALL_STATE(2618)] = 122657, + [SMALL_STATE(2619)] = 122687, + [SMALL_STATE(2620)] = 122719, + [SMALL_STATE(2621)] = 122749, + [SMALL_STATE(2622)] = 122779, + [SMALL_STATE(2623)] = 122811, + [SMALL_STATE(2624)] = 122841, + [SMALL_STATE(2625)] = 122871, + [SMALL_STATE(2626)] = 122903, + [SMALL_STATE(2627)] = 122933, + [SMALL_STATE(2628)] = 122963, + [SMALL_STATE(2629)] = 122995, + [SMALL_STATE(2630)] = 123027, + [SMALL_STATE(2631)] = 123057, + [SMALL_STATE(2632)] = 123087, + [SMALL_STATE(2633)] = 123117, + [SMALL_STATE(2634)] = 123149, + [SMALL_STATE(2635)] = 123171, + [SMALL_STATE(2636)] = 123201, + [SMALL_STATE(2637)] = 123231, + [SMALL_STATE(2638)] = 123261, + [SMALL_STATE(2639)] = 123291, + [SMALL_STATE(2640)] = 123321, + [SMALL_STATE(2641)] = 123351, + [SMALL_STATE(2642)] = 123381, + [SMALL_STATE(2643)] = 123411, + [SMALL_STATE(2644)] = 123441, + [SMALL_STATE(2645)] = 123471, + [SMALL_STATE(2646)] = 123501, + [SMALL_STATE(2647)] = 123533, + [SMALL_STATE(2648)] = 123563, + [SMALL_STATE(2649)] = 123595, + [SMALL_STATE(2650)] = 123625, + [SMALL_STATE(2651)] = 123655, + [SMALL_STATE(2652)] = 123685, + [SMALL_STATE(2653)] = 123715, + [SMALL_STATE(2654)] = 123747, + [SMALL_STATE(2655)] = 123779, + [SMALL_STATE(2656)] = 123809, + [SMALL_STATE(2657)] = 123841, + [SMALL_STATE(2658)] = 123871, + [SMALL_STATE(2659)] = 123903, + [SMALL_STATE(2660)] = 123935, + [SMALL_STATE(2661)] = 123967, + [SMALL_STATE(2662)] = 123999, + [SMALL_STATE(2663)] = 124031, + [SMALL_STATE(2664)] = 124055, + [SMALL_STATE(2665)] = 124087, + [SMALL_STATE(2666)] = 124119, + [SMALL_STATE(2667)] = 124151, + [SMALL_STATE(2668)] = 124183, + [SMALL_STATE(2669)] = 124213, + [SMALL_STATE(2670)] = 124243, + [SMALL_STATE(2671)] = 124275, + [SMALL_STATE(2672)] = 124305, + [SMALL_STATE(2673)] = 124335, + [SMALL_STATE(2674)] = 124365, + [SMALL_STATE(2675)] = 124395, + [SMALL_STATE(2676)] = 124425, + [SMALL_STATE(2677)] = 124449, + [SMALL_STATE(2678)] = 124479, + [SMALL_STATE(2679)] = 124511, + [SMALL_STATE(2680)] = 124541, + [SMALL_STATE(2681)] = 124573, + [SMALL_STATE(2682)] = 124601, + [SMALL_STATE(2683)] = 124631, + [SMALL_STATE(2684)] = 124663, + [SMALL_STATE(2685)] = 124695, + [SMALL_STATE(2686)] = 124725, + [SMALL_STATE(2687)] = 124757, + [SMALL_STATE(2688)] = 124789, + [SMALL_STATE(2689)] = 124811, + [SMALL_STATE(2690)] = 124843, + [SMALL_STATE(2691)] = 124873, + [SMALL_STATE(2692)] = 124903, + [SMALL_STATE(2693)] = 124935, + [SMALL_STATE(2694)] = 124967, + [SMALL_STATE(2695)] = 124999, + [SMALL_STATE(2696)] = 125029, + [SMALL_STATE(2697)] = 125061, + [SMALL_STATE(2698)] = 125093, + [SMALL_STATE(2699)] = 125125, + [SMALL_STATE(2700)] = 125155, + [SMALL_STATE(2701)] = 125187, + [SMALL_STATE(2702)] = 125219, + [SMALL_STATE(2703)] = 125249, + [SMALL_STATE(2704)] = 125279, + [SMALL_STATE(2705)] = 125301, + [SMALL_STATE(2706)] = 125331, + [SMALL_STATE(2707)] = 125363, + [SMALL_STATE(2708)] = 125395, + [SMALL_STATE(2709)] = 125417, + [SMALL_STATE(2710)] = 125447, + [SMALL_STATE(2711)] = 125477, + [SMALL_STATE(2712)] = 125509, + [SMALL_STATE(2713)] = 125539, + [SMALL_STATE(2714)] = 125571, + [SMALL_STATE(2715)] = 125603, + [SMALL_STATE(2716)] = 125635, + [SMALL_STATE(2717)] = 125667, + [SMALL_STATE(2718)] = 125699, + [SMALL_STATE(2719)] = 125731, + [SMALL_STATE(2720)] = 125761, + [SMALL_STATE(2721)] = 125791, + [SMALL_STATE(2722)] = 125821, + [SMALL_STATE(2723)] = 125851, + [SMALL_STATE(2724)] = 125881, + [SMALL_STATE(2725)] = 125911, + [SMALL_STATE(2726)] = 125941, + [SMALL_STATE(2727)] = 125973, + [SMALL_STATE(2728)] = 126005, + [SMALL_STATE(2729)] = 126037, + [SMALL_STATE(2730)] = 126067, + [SMALL_STATE(2731)] = 126097, + [SMALL_STATE(2732)] = 126127, + [SMALL_STATE(2733)] = 126159, + [SMALL_STATE(2734)] = 126191, + [SMALL_STATE(2735)] = 126221, + [SMALL_STATE(2736)] = 126253, + [SMALL_STATE(2737)] = 126285, + [SMALL_STATE(2738)] = 126317, + [SMALL_STATE(2739)] = 126349, + [SMALL_STATE(2740)] = 126381, + [SMALL_STATE(2741)] = 126413, + [SMALL_STATE(2742)] = 126443, + [SMALL_STATE(2743)] = 126473, + [SMALL_STATE(2744)] = 126505, + [SMALL_STATE(2745)] = 126537, + [SMALL_STATE(2746)] = 126569, + [SMALL_STATE(2747)] = 126601, + [SMALL_STATE(2748)] = 126633, + [SMALL_STATE(2749)] = 126665, + [SMALL_STATE(2750)] = 126695, + [SMALL_STATE(2751)] = 126727, + [SMALL_STATE(2752)] = 126759, + [SMALL_STATE(2753)] = 126789, + [SMALL_STATE(2754)] = 126811, + [SMALL_STATE(2755)] = 126841, + [SMALL_STATE(2756)] = 126873, + [SMALL_STATE(2757)] = 126905, + [SMALL_STATE(2758)] = 126935, + [SMALL_STATE(2759)] = 126965, + [SMALL_STATE(2760)] = 126995, + [SMALL_STATE(2761)] = 127027, + [SMALL_STATE(2762)] = 127059, + [SMALL_STATE(2763)] = 127091, + [SMALL_STATE(2764)] = 127121, + [SMALL_STATE(2765)] = 127151, + [SMALL_STATE(2766)] = 127181, + [SMALL_STATE(2767)] = 127211, + [SMALL_STATE(2768)] = 127241, + [SMALL_STATE(2769)] = 127271, + [SMALL_STATE(2770)] = 127303, + [SMALL_STATE(2771)] = 127335, + [SMALL_STATE(2772)] = 127363, + [SMALL_STATE(2773)] = 127395, + [SMALL_STATE(2774)] = 127425, + [SMALL_STATE(2775)] = 127455, + [SMALL_STATE(2776)] = 127487, + [SMALL_STATE(2777)] = 127517, + [SMALL_STATE(2778)] = 127545, + [SMALL_STATE(2779)] = 127577, + [SMALL_STATE(2780)] = 127607, + [SMALL_STATE(2781)] = 127637, + [SMALL_STATE(2782)] = 127667, + [SMALL_STATE(2783)] = 127697, + [SMALL_STATE(2784)] = 127719, + [SMALL_STATE(2785)] = 127749, + [SMALL_STATE(2786)] = 127777, + [SMALL_STATE(2787)] = 127800, + [SMALL_STATE(2788)] = 127825, + [SMALL_STATE(2789)] = 127850, + [SMALL_STATE(2790)] = 127873, + [SMALL_STATE(2791)] = 127898, + [SMALL_STATE(2792)] = 127927, + [SMALL_STATE(2793)] = 127950, + [SMALL_STATE(2794)] = 127977, + [SMALL_STATE(2795)] = 128006, + [SMALL_STATE(2796)] = 128035, + [SMALL_STATE(2797)] = 128060, + [SMALL_STATE(2798)] = 128089, + [SMALL_STATE(2799)] = 128118, + [SMALL_STATE(2800)] = 128147, + [SMALL_STATE(2801)] = 128172, + [SMALL_STATE(2802)] = 128195, + [SMALL_STATE(2803)] = 128224, + [SMALL_STATE(2804)] = 128249, + [SMALL_STATE(2805)] = 128272, + [SMALL_STATE(2806)] = 128297, + [SMALL_STATE(2807)] = 128326, + [SMALL_STATE(2808)] = 128355, + [SMALL_STATE(2809)] = 128384, + [SMALL_STATE(2810)] = 128413, + [SMALL_STATE(2811)] = 128442, + [SMALL_STATE(2812)] = 128471, + [SMALL_STATE(2813)] = 128500, + [SMALL_STATE(2814)] = 128529, + [SMALL_STATE(2815)] = 128558, + [SMALL_STATE(2816)] = 128587, + [SMALL_STATE(2817)] = 128616, + [SMALL_STATE(2818)] = 128641, + [SMALL_STATE(2819)] = 128662, + [SMALL_STATE(2820)] = 128691, + [SMALL_STATE(2821)] = 128720, + [SMALL_STATE(2822)] = 128749, + [SMALL_STATE(2823)] = 128774, + [SMALL_STATE(2824)] = 128797, + [SMALL_STATE(2825)] = 128826, + [SMALL_STATE(2826)] = 128855, + [SMALL_STATE(2827)] = 128878, + [SMALL_STATE(2828)] = 128901, + [SMALL_STATE(2829)] = 128930, + [SMALL_STATE(2830)] = 128953, + [SMALL_STATE(2831)] = 128982, + [SMALL_STATE(2832)] = 129007, + [SMALL_STATE(2833)] = 129030, + [SMALL_STATE(2834)] = 129059, + [SMALL_STATE(2835)] = 129082, + [SMALL_STATE(2836)] = 129111, + [SMALL_STATE(2837)] = 129136, + [SMALL_STATE(2838)] = 129165, + [SMALL_STATE(2839)] = 129194, + [SMALL_STATE(2840)] = 129217, + [SMALL_STATE(2841)] = 129238, + [SMALL_STATE(2842)] = 129267, + [SMALL_STATE(2843)] = 129296, + [SMALL_STATE(2844)] = 129325, + [SMALL_STATE(2845)] = 129354, + [SMALL_STATE(2846)] = 129379, + [SMALL_STATE(2847)] = 129402, + [SMALL_STATE(2848)] = 129431, + [SMALL_STATE(2849)] = 129452, + [SMALL_STATE(2850)] = 129481, + [SMALL_STATE(2851)] = 129504, + [SMALL_STATE(2852)] = 129529, + [SMALL_STATE(2853)] = 129558, + [SMALL_STATE(2854)] = 129583, + [SMALL_STATE(2855)] = 129604, + [SMALL_STATE(2856)] = 129633, + [SMALL_STATE(2857)] = 129658, + [SMALL_STATE(2858)] = 129685, + [SMALL_STATE(2859)] = 129710, + [SMALL_STATE(2860)] = 129733, + [SMALL_STATE(2861)] = 129758, + [SMALL_STATE(2862)] = 129783, + [SMALL_STATE(2863)] = 129812, + [SMALL_STATE(2864)] = 129841, + [SMALL_STATE(2865)] = 129870, + [SMALL_STATE(2866)] = 129899, + [SMALL_STATE(2867)] = 129920, + [SMALL_STATE(2868)] = 129949, + [SMALL_STATE(2869)] = 129978, + [SMALL_STATE(2870)] = 130007, + [SMALL_STATE(2871)] = 130036, + [SMALL_STATE(2872)] = 130061, + [SMALL_STATE(2873)] = 130084, + [SMALL_STATE(2874)] = 130105, + [SMALL_STATE(2875)] = 130130, + [SMALL_STATE(2876)] = 130153, + [SMALL_STATE(2877)] = 130182, + [SMALL_STATE(2878)] = 130211, + [SMALL_STATE(2879)] = 130234, + [SMALL_STATE(2880)] = 130255, + [SMALL_STATE(2881)] = 130276, + [SMALL_STATE(2882)] = 130303, + [SMALL_STATE(2883)] = 130332, + [SMALL_STATE(2884)] = 130355, + [SMALL_STATE(2885)] = 130378, + [SMALL_STATE(2886)] = 130407, + [SMALL_STATE(2887)] = 130432, + [SMALL_STATE(2888)] = 130457, + [SMALL_STATE(2889)] = 130482, + [SMALL_STATE(2890)] = 130511, + [SMALL_STATE(2891)] = 130536, + [SMALL_STATE(2892)] = 130565, + [SMALL_STATE(2893)] = 130590, + [SMALL_STATE(2894)] = 130615, + [SMALL_STATE(2895)] = 130644, + [SMALL_STATE(2896)] = 130673, + [SMALL_STATE(2897)] = 130700, + [SMALL_STATE(2898)] = 130729, + [SMALL_STATE(2899)] = 130754, + [SMALL_STATE(2900)] = 130783, + [SMALL_STATE(2901)] = 130808, + [SMALL_STATE(2902)] = 130831, + [SMALL_STATE(2903)] = 130856, + [SMALL_STATE(2904)] = 130881, + [SMALL_STATE(2905)] = 130910, + [SMALL_STATE(2906)] = 130939, + [SMALL_STATE(2907)] = 130968, + [SMALL_STATE(2908)] = 130995, + [SMALL_STATE(2909)] = 131020, + [SMALL_STATE(2910)] = 131049, + [SMALL_STATE(2911)] = 131072, + [SMALL_STATE(2912)] = 131099, + [SMALL_STATE(2913)] = 131124, + [SMALL_STATE(2914)] = 131153, + [SMALL_STATE(2915)] = 131182, + [SMALL_STATE(2916)] = 131207, + [SMALL_STATE(2917)] = 131236, + [SMALL_STATE(2918)] = 131265, + [SMALL_STATE(2919)] = 131290, + [SMALL_STATE(2920)] = 131315, + [SMALL_STATE(2921)] = 131344, + [SMALL_STATE(2922)] = 131367, + [SMALL_STATE(2923)] = 131396, + [SMALL_STATE(2924)] = 131425, + [SMALL_STATE(2925)] = 131454, + [SMALL_STATE(2926)] = 131479, + [SMALL_STATE(2927)] = 131502, + [SMALL_STATE(2928)] = 131525, + [SMALL_STATE(2929)] = 131554, + [SMALL_STATE(2930)] = 131577, + [SMALL_STATE(2931)] = 131602, + [SMALL_STATE(2932)] = 131625, + [SMALL_STATE(2933)] = 131648, + [SMALL_STATE(2934)] = 131671, + [SMALL_STATE(2935)] = 131692, + [SMALL_STATE(2936)] = 131721, + [SMALL_STATE(2937)] = 131750, + [SMALL_STATE(2938)] = 131773, + [SMALL_STATE(2939)] = 131802, + [SMALL_STATE(2940)] = 131827, + [SMALL_STATE(2941)] = 131850, + [SMALL_STATE(2942)] = 131873, + [SMALL_STATE(2943)] = 131902, + [SMALL_STATE(2944)] = 131927, + [SMALL_STATE(2945)] = 131956, + [SMALL_STATE(2946)] = 131985, + [SMALL_STATE(2947)] = 132008, + [SMALL_STATE(2948)] = 132031, + [SMALL_STATE(2949)] = 132052, + [SMALL_STATE(2950)] = 132073, + [SMALL_STATE(2951)] = 132102, + [SMALL_STATE(2952)] = 132131, + [SMALL_STATE(2953)] = 132154, + [SMALL_STATE(2954)] = 132177, + [SMALL_STATE(2955)] = 132202, + [SMALL_STATE(2956)] = 132225, + [SMALL_STATE(2957)] = 132254, + [SMALL_STATE(2958)] = 132279, + [SMALL_STATE(2959)] = 132308, + [SMALL_STATE(2960)] = 132331, + [SMALL_STATE(2961)] = 132360, + [SMALL_STATE(2962)] = 132385, + [SMALL_STATE(2963)] = 132408, + [SMALL_STATE(2964)] = 132431, + [SMALL_STATE(2965)] = 132454, + [SMALL_STATE(2966)] = 132479, + [SMALL_STATE(2967)] = 132508, + [SMALL_STATE(2968)] = 132537, + [SMALL_STATE(2969)] = 132560, + [SMALL_STATE(2970)] = 132583, + [SMALL_STATE(2971)] = 132612, + [SMALL_STATE(2972)] = 132641, + [SMALL_STATE(2973)] = 132664, + [SMALL_STATE(2974)] = 132687, + [SMALL_STATE(2975)] = 132708, + [SMALL_STATE(2976)] = 132733, + [SMALL_STATE(2977)] = 132762, + [SMALL_STATE(2978)] = 132785, + [SMALL_STATE(2979)] = 132808, + [SMALL_STATE(2980)] = 132835, + [SMALL_STATE(2981)] = 132864, + [SMALL_STATE(2982)] = 132890, + [SMALL_STATE(2983)] = 132916, + [SMALL_STATE(2984)] = 132936, + [SMALL_STATE(2985)] = 132962, + [SMALL_STATE(2986)] = 132982, + [SMALL_STATE(2987)] = 133002, + [SMALL_STATE(2988)] = 133022, + [SMALL_STATE(2989)] = 133048, + [SMALL_STATE(2990)] = 133072, + [SMALL_STATE(2991)] = 133096, + [SMALL_STATE(2992)] = 133120, + [SMALL_STATE(2993)] = 133142, + [SMALL_STATE(2994)] = 133168, + [SMALL_STATE(2995)] = 133192, + [SMALL_STATE(2996)] = 133218, + [SMALL_STATE(2997)] = 133240, + [SMALL_STATE(2998)] = 133266, + [SMALL_STATE(2999)] = 133290, + [SMALL_STATE(3000)] = 133316, + [SMALL_STATE(3001)] = 133342, + [SMALL_STATE(3002)] = 133368, + [SMALL_STATE(3003)] = 133390, + [SMALL_STATE(3004)] = 133414, + [SMALL_STATE(3005)] = 133436, + [SMALL_STATE(3006)] = 133456, + [SMALL_STATE(3007)] = 133480, + [SMALL_STATE(3008)] = 133506, + [SMALL_STATE(3009)] = 133532, + [SMALL_STATE(3010)] = 133558, + [SMALL_STATE(3011)] = 133584, + [SMALL_STATE(3012)] = 133606, + [SMALL_STATE(3013)] = 133626, + [SMALL_STATE(3014)] = 133652, + [SMALL_STATE(3015)] = 133678, + [SMALL_STATE(3016)] = 133704, + [SMALL_STATE(3017)] = 133730, + [SMALL_STATE(3018)] = 133754, + [SMALL_STATE(3019)] = 133780, + [SMALL_STATE(3020)] = 133806, + [SMALL_STATE(3021)] = 133832, + [SMALL_STATE(3022)] = 133856, + [SMALL_STATE(3023)] = 133882, + [SMALL_STATE(3024)] = 133908, + [SMALL_STATE(3025)] = 133934, + [SMALL_STATE(3026)] = 133956, + [SMALL_STATE(3027)] = 133982, + [SMALL_STATE(3028)] = 134008, + [SMALL_STATE(3029)] = 134034, + [SMALL_STATE(3030)] = 134054, + [SMALL_STATE(3031)] = 134076, + [SMALL_STATE(3032)] = 134102, + [SMALL_STATE(3033)] = 134128, + [SMALL_STATE(3034)] = 134152, + [SMALL_STATE(3035)] = 134178, + [SMALL_STATE(3036)] = 134200, + [SMALL_STATE(3037)] = 134226, + [SMALL_STATE(3038)] = 134252, + [SMALL_STATE(3039)] = 134278, + [SMALL_STATE(3040)] = 134304, + [SMALL_STATE(3041)] = 134326, + [SMALL_STATE(3042)] = 134346, + [SMALL_STATE(3043)] = 134370, + [SMALL_STATE(3044)] = 134394, + [SMALL_STATE(3045)] = 134420, + [SMALL_STATE(3046)] = 134444, + [SMALL_STATE(3047)] = 134466, + [SMALL_STATE(3048)] = 134488, + [SMALL_STATE(3049)] = 134510, + [SMALL_STATE(3050)] = 134536, + [SMALL_STATE(3051)] = 134562, + [SMALL_STATE(3052)] = 134584, + [SMALL_STATE(3053)] = 134604, + [SMALL_STATE(3054)] = 134630, + [SMALL_STATE(3055)] = 134654, + [SMALL_STATE(3056)] = 134674, + [SMALL_STATE(3057)] = 134698, + [SMALL_STATE(3058)] = 134722, + [SMALL_STATE(3059)] = 134748, + [SMALL_STATE(3060)] = 134774, + [SMALL_STATE(3061)] = 134800, + [SMALL_STATE(3062)] = 134826, + [SMALL_STATE(3063)] = 134852, + [SMALL_STATE(3064)] = 134878, + [SMALL_STATE(3065)] = 134904, + [SMALL_STATE(3066)] = 134928, + [SMALL_STATE(3067)] = 134950, + [SMALL_STATE(3068)] = 134970, + [SMALL_STATE(3069)] = 134996, + [SMALL_STATE(3070)] = 135016, + [SMALL_STATE(3071)] = 135038, + [SMALL_STATE(3072)] = 135062, + [SMALL_STATE(3073)] = 135086, + [SMALL_STATE(3074)] = 135106, + [SMALL_STATE(3075)] = 135126, + [SMALL_STATE(3076)] = 135152, + [SMALL_STATE(3077)] = 135174, + [SMALL_STATE(3078)] = 135200, + [SMALL_STATE(3079)] = 135220, + [SMALL_STATE(3080)] = 135240, + [SMALL_STATE(3081)] = 135266, + [SMALL_STATE(3082)] = 135292, + [SMALL_STATE(3083)] = 135316, + [SMALL_STATE(3084)] = 135342, + [SMALL_STATE(3085)] = 135368, + [SMALL_STATE(3086)] = 135394, + [SMALL_STATE(3087)] = 135418, + [SMALL_STATE(3088)] = 135442, + [SMALL_STATE(3089)] = 135466, + [SMALL_STATE(3090)] = 135490, + [SMALL_STATE(3091)] = 135512, + [SMALL_STATE(3092)] = 135536, + [SMALL_STATE(3093)] = 135560, + [SMALL_STATE(3094)] = 135586, + [SMALL_STATE(3095)] = 135610, + [SMALL_STATE(3096)] = 135634, + [SMALL_STATE(3097)] = 135658, + [SMALL_STATE(3098)] = 135684, + [SMALL_STATE(3099)] = 135710, + [SMALL_STATE(3100)] = 135736, + [SMALL_STATE(3101)] = 135762, + [SMALL_STATE(3102)] = 135782, + [SMALL_STATE(3103)] = 135808, + [SMALL_STATE(3104)] = 135834, + [SMALL_STATE(3105)] = 135856, + [SMALL_STATE(3106)] = 135880, + [SMALL_STATE(3107)] = 135902, + [SMALL_STATE(3108)] = 135926, + [SMALL_STATE(3109)] = 135950, + [SMALL_STATE(3110)] = 135976, + [SMALL_STATE(3111)] = 136002, + [SMALL_STATE(3112)] = 136028, + [SMALL_STATE(3113)] = 136054, + [SMALL_STATE(3114)] = 136080, + [SMALL_STATE(3115)] = 136106, + [SMALL_STATE(3116)] = 136130, + [SMALL_STATE(3117)] = 136154, + [SMALL_STATE(3118)] = 136174, + [SMALL_STATE(3119)] = 136196, + [SMALL_STATE(3120)] = 136220, + [SMALL_STATE(3121)] = 136244, + [SMALL_STATE(3122)] = 136264, + [SMALL_STATE(3123)] = 136288, + [SMALL_STATE(3124)] = 136308, + [SMALL_STATE(3125)] = 136332, + [SMALL_STATE(3126)] = 136358, + [SMALL_STATE(3127)] = 136384, + [SMALL_STATE(3128)] = 136408, + [SMALL_STATE(3129)] = 136434, + [SMALL_STATE(3130)] = 136460, + [SMALL_STATE(3131)] = 136486, + [SMALL_STATE(3132)] = 136510, + [SMALL_STATE(3133)] = 136536, + [SMALL_STATE(3134)] = 136556, + [SMALL_STATE(3135)] = 136580, + [SMALL_STATE(3136)] = 136600, + [SMALL_STATE(3137)] = 136624, + [SMALL_STATE(3138)] = 136648, + [SMALL_STATE(3139)] = 136672, + [SMALL_STATE(3140)] = 136698, + [SMALL_STATE(3141)] = 136724, + [SMALL_STATE(3142)] = 136744, + [SMALL_STATE(3143)] = 136764, + [SMALL_STATE(3144)] = 136790, + [SMALL_STATE(3145)] = 136812, + [SMALL_STATE(3146)] = 136836, + [SMALL_STATE(3147)] = 136862, + [SMALL_STATE(3148)] = 136884, + [SMALL_STATE(3149)] = 136906, + [SMALL_STATE(3150)] = 136926, + [SMALL_STATE(3151)] = 136952, + [SMALL_STATE(3152)] = 136976, + [SMALL_STATE(3153)] = 137002, + [SMALL_STATE(3154)] = 137028, + [SMALL_STATE(3155)] = 137054, + [SMALL_STATE(3156)] = 137080, + [SMALL_STATE(3157)] = 137104, + [SMALL_STATE(3158)] = 137128, + [SMALL_STATE(3159)] = 137154, + [SMALL_STATE(3160)] = 137178, + [SMALL_STATE(3161)] = 137204, + [SMALL_STATE(3162)] = 137230, + [SMALL_STATE(3163)] = 137252, + [SMALL_STATE(3164)] = 137278, + [SMALL_STATE(3165)] = 137304, + [SMALL_STATE(3166)] = 137330, + [SMALL_STATE(3167)] = 137356, + [SMALL_STATE(3168)] = 137382, + [SMALL_STATE(3169)] = 137408, + [SMALL_STATE(3170)] = 137430, + [SMALL_STATE(3171)] = 137452, + [SMALL_STATE(3172)] = 137474, + [SMALL_STATE(3173)] = 137500, + [SMALL_STATE(3174)] = 137524, + [SMALL_STATE(3175)] = 137546, + [SMALL_STATE(3176)] = 137568, + [SMALL_STATE(3177)] = 137587, + [SMALL_STATE(3178)] = 137606, + [SMALL_STATE(3179)] = 137629, + [SMALL_STATE(3180)] = 137648, + [SMALL_STATE(3181)] = 137667, + [SMALL_STATE(3182)] = 137690, + [SMALL_STATE(3183)] = 137713, + [SMALL_STATE(3184)] = 137732, + [SMALL_STATE(3185)] = 137751, + [SMALL_STATE(3186)] = 137774, + [SMALL_STATE(3187)] = 137797, + [SMALL_STATE(3188)] = 137816, + [SMALL_STATE(3189)] = 137835, + [SMALL_STATE(3190)] = 137854, + [SMALL_STATE(3191)] = 137877, + [SMALL_STATE(3192)] = 137900, + [SMALL_STATE(3193)] = 137923, + [SMALL_STATE(3194)] = 137942, + [SMALL_STATE(3195)] = 137961, + [SMALL_STATE(3196)] = 137980, + [SMALL_STATE(3197)] = 137999, + [SMALL_STATE(3198)] = 138020, + [SMALL_STATE(3199)] = 138039, + [SMALL_STATE(3200)] = 138058, + [SMALL_STATE(3201)] = 138081, + [SMALL_STATE(3202)] = 138104, + [SMALL_STATE(3203)] = 138127, + [SMALL_STATE(3204)] = 138150, + [SMALL_STATE(3205)] = 138173, + [SMALL_STATE(3206)] = 138196, + [SMALL_STATE(3207)] = 138219, + [SMALL_STATE(3208)] = 138242, + [SMALL_STATE(3209)] = 138265, + [SMALL_STATE(3210)] = 138288, + [SMALL_STATE(3211)] = 138311, + [SMALL_STATE(3212)] = 138330, + [SMALL_STATE(3213)] = 138353, + [SMALL_STATE(3214)] = 138376, + [SMALL_STATE(3215)] = 138399, + [SMALL_STATE(3216)] = 138422, + [SMALL_STATE(3217)] = 138445, + [SMALL_STATE(3218)] = 138468, + [SMALL_STATE(3219)] = 138491, + [SMALL_STATE(3220)] = 138514, + [SMALL_STATE(3221)] = 138537, + [SMALL_STATE(3222)] = 138560, + [SMALL_STATE(3223)] = 138583, + [SMALL_STATE(3224)] = 138606, + [SMALL_STATE(3225)] = 138629, + [SMALL_STATE(3226)] = 138652, + [SMALL_STATE(3227)] = 138675, + [SMALL_STATE(3228)] = 138698, + [SMALL_STATE(3229)] = 138721, + [SMALL_STATE(3230)] = 138744, + [SMALL_STATE(3231)] = 138767, + [SMALL_STATE(3232)] = 138790, + [SMALL_STATE(3233)] = 138813, + [SMALL_STATE(3234)] = 138836, + [SMALL_STATE(3235)] = 138859, + [SMALL_STATE(3236)] = 138882, + [SMALL_STATE(3237)] = 138905, + [SMALL_STATE(3238)] = 138928, + [SMALL_STATE(3239)] = 138951, + [SMALL_STATE(3240)] = 138974, + [SMALL_STATE(3241)] = 138997, + [SMALL_STATE(3242)] = 139020, + [SMALL_STATE(3243)] = 139043, + [SMALL_STATE(3244)] = 139066, + [SMALL_STATE(3245)] = 139089, + [SMALL_STATE(3246)] = 139112, + [SMALL_STATE(3247)] = 139135, + [SMALL_STATE(3248)] = 139158, + [SMALL_STATE(3249)] = 139177, + [SMALL_STATE(3250)] = 139200, + [SMALL_STATE(3251)] = 139223, + [SMALL_STATE(3252)] = 139246, + [SMALL_STATE(3253)] = 139269, + [SMALL_STATE(3254)] = 139292, + [SMALL_STATE(3255)] = 139315, + [SMALL_STATE(3256)] = 139338, + [SMALL_STATE(3257)] = 139361, + [SMALL_STATE(3258)] = 139384, + [SMALL_STATE(3259)] = 139407, + [SMALL_STATE(3260)] = 139430, + [SMALL_STATE(3261)] = 139451, + [SMALL_STATE(3262)] = 139474, + [SMALL_STATE(3263)] = 139497, + [SMALL_STATE(3264)] = 139520, + [SMALL_STATE(3265)] = 139543, + [SMALL_STATE(3266)] = 139566, + [SMALL_STATE(3267)] = 139589, + [SMALL_STATE(3268)] = 139612, + [SMALL_STATE(3269)] = 139635, + [SMALL_STATE(3270)] = 139654, + [SMALL_STATE(3271)] = 139677, + [SMALL_STATE(3272)] = 139700, + [SMALL_STATE(3273)] = 139723, + [SMALL_STATE(3274)] = 139746, + [SMALL_STATE(3275)] = 139769, + [SMALL_STATE(3276)] = 139792, + [SMALL_STATE(3277)] = 139813, + [SMALL_STATE(3278)] = 139836, + [SMALL_STATE(3279)] = 139859, + [SMALL_STATE(3280)] = 139882, + [SMALL_STATE(3281)] = 139905, + [SMALL_STATE(3282)] = 139928, + [SMALL_STATE(3283)] = 139951, + [SMALL_STATE(3284)] = 139974, + [SMALL_STATE(3285)] = 139997, + [SMALL_STATE(3286)] = 140020, + [SMALL_STATE(3287)] = 140041, + [SMALL_STATE(3288)] = 140064, + [SMALL_STATE(3289)] = 140087, + [SMALL_STATE(3290)] = 140108, + [SMALL_STATE(3291)] = 140131, + [SMALL_STATE(3292)] = 140150, + [SMALL_STATE(3293)] = 140173, + [SMALL_STATE(3294)] = 140196, + [SMALL_STATE(3295)] = 140219, + [SMALL_STATE(3296)] = 140242, + [SMALL_STATE(3297)] = 140265, + [SMALL_STATE(3298)] = 140288, + [SMALL_STATE(3299)] = 140311, + [SMALL_STATE(3300)] = 140334, + [SMALL_STATE(3301)] = 140357, + [SMALL_STATE(3302)] = 140380, + [SMALL_STATE(3303)] = 140403, + [SMALL_STATE(3304)] = 140426, + [SMALL_STATE(3305)] = 140449, + [SMALL_STATE(3306)] = 140472, + [SMALL_STATE(3307)] = 140495, + [SMALL_STATE(3308)] = 140518, + [SMALL_STATE(3309)] = 140541, + [SMALL_STATE(3310)] = 140564, + [SMALL_STATE(3311)] = 140587, + [SMALL_STATE(3312)] = 140610, + [SMALL_STATE(3313)] = 140633, + [SMALL_STATE(3314)] = 140656, + [SMALL_STATE(3315)] = 140679, + [SMALL_STATE(3316)] = 140702, + [SMALL_STATE(3317)] = 140725, + [SMALL_STATE(3318)] = 140748, + [SMALL_STATE(3319)] = 140771, + [SMALL_STATE(3320)] = 140790, + [SMALL_STATE(3321)] = 140813, + [SMALL_STATE(3322)] = 140836, + [SMALL_STATE(3323)] = 140859, + [SMALL_STATE(3324)] = 140882, + [SMALL_STATE(3325)] = 140905, + [SMALL_STATE(3326)] = 140928, + [SMALL_STATE(3327)] = 140951, + [SMALL_STATE(3328)] = 140974, + [SMALL_STATE(3329)] = 140995, + [SMALL_STATE(3330)] = 141018, + [SMALL_STATE(3331)] = 141041, + [SMALL_STATE(3332)] = 141064, + [SMALL_STATE(3333)] = 141087, + [SMALL_STATE(3334)] = 141110, + [SMALL_STATE(3335)] = 141133, + [SMALL_STATE(3336)] = 141156, + [SMALL_STATE(3337)] = 141175, + [SMALL_STATE(3338)] = 141198, + [SMALL_STATE(3339)] = 141219, + [SMALL_STATE(3340)] = 141242, + [SMALL_STATE(3341)] = 141265, + [SMALL_STATE(3342)] = 141288, + [SMALL_STATE(3343)] = 141311, + [SMALL_STATE(3344)] = 141334, + [SMALL_STATE(3345)] = 141357, + [SMALL_STATE(3346)] = 141380, + [SMALL_STATE(3347)] = 141403, + [SMALL_STATE(3348)] = 141426, + [SMALL_STATE(3349)] = 141449, + [SMALL_STATE(3350)] = 141472, + [SMALL_STATE(3351)] = 141495, + [SMALL_STATE(3352)] = 141518, + [SMALL_STATE(3353)] = 141541, + [SMALL_STATE(3354)] = 141564, + [SMALL_STATE(3355)] = 141585, + [SMALL_STATE(3356)] = 141608, + [SMALL_STATE(3357)] = 141627, + [SMALL_STATE(3358)] = 141646, + [SMALL_STATE(3359)] = 141669, + [SMALL_STATE(3360)] = 141688, + [SMALL_STATE(3361)] = 141711, + [SMALL_STATE(3362)] = 141734, + [SMALL_STATE(3363)] = 141757, + [SMALL_STATE(3364)] = 141780, + [SMALL_STATE(3365)] = 141803, + [SMALL_STATE(3366)] = 141826, + [SMALL_STATE(3367)] = 141849, + [SMALL_STATE(3368)] = 141872, + [SMALL_STATE(3369)] = 141895, + [SMALL_STATE(3370)] = 141918, + [SMALL_STATE(3371)] = 141941, + [SMALL_STATE(3372)] = 141964, + [SMALL_STATE(3373)] = 141987, + [SMALL_STATE(3374)] = 142010, + [SMALL_STATE(3375)] = 142033, + [SMALL_STATE(3376)] = 142056, + [SMALL_STATE(3377)] = 142079, + [SMALL_STATE(3378)] = 142102, + [SMALL_STATE(3379)] = 142125, + [SMALL_STATE(3380)] = 142148, + [SMALL_STATE(3381)] = 142171, + [SMALL_STATE(3382)] = 142194, + [SMALL_STATE(3383)] = 142217, + [SMALL_STATE(3384)] = 142240, + [SMALL_STATE(3385)] = 142263, + [SMALL_STATE(3386)] = 142286, + [SMALL_STATE(3387)] = 142305, + [SMALL_STATE(3388)] = 142324, + [SMALL_STATE(3389)] = 142347, + [SMALL_STATE(3390)] = 142370, + [SMALL_STATE(3391)] = 142393, + [SMALL_STATE(3392)] = 142416, + [SMALL_STATE(3393)] = 142439, + [SMALL_STATE(3394)] = 142462, + [SMALL_STATE(3395)] = 142485, + [SMALL_STATE(3396)] = 142506, + [SMALL_STATE(3397)] = 142529, + [SMALL_STATE(3398)] = 142552, + [SMALL_STATE(3399)] = 142575, + [SMALL_STATE(3400)] = 142598, + [SMALL_STATE(3401)] = 142621, + [SMALL_STATE(3402)] = 142644, + [SMALL_STATE(3403)] = 142667, + [SMALL_STATE(3404)] = 142690, + [SMALL_STATE(3405)] = 142713, + [SMALL_STATE(3406)] = 142736, + [SMALL_STATE(3407)] = 142759, + [SMALL_STATE(3408)] = 142782, + [SMALL_STATE(3409)] = 142805, + [SMALL_STATE(3410)] = 142828, + [SMALL_STATE(3411)] = 142851, + [SMALL_STATE(3412)] = 142874, + [SMALL_STATE(3413)] = 142897, + [SMALL_STATE(3414)] = 142920, + [SMALL_STATE(3415)] = 142943, + [SMALL_STATE(3416)] = 142966, + [SMALL_STATE(3417)] = 142989, + [SMALL_STATE(3418)] = 143010, + [SMALL_STATE(3419)] = 143033, + [SMALL_STATE(3420)] = 143056, + [SMALL_STATE(3421)] = 143079, + [SMALL_STATE(3422)] = 143102, + [SMALL_STATE(3423)] = 143125, + [SMALL_STATE(3424)] = 143148, + [SMALL_STATE(3425)] = 143171, + [SMALL_STATE(3426)] = 143194, + [SMALL_STATE(3427)] = 143217, + [SMALL_STATE(3428)] = 143240, + [SMALL_STATE(3429)] = 143263, + [SMALL_STATE(3430)] = 143286, + [SMALL_STATE(3431)] = 143309, + [SMALL_STATE(3432)] = 143332, + [SMALL_STATE(3433)] = 143355, + [SMALL_STATE(3434)] = 143378, + [SMALL_STATE(3435)] = 143401, + [SMALL_STATE(3436)] = 143424, + [SMALL_STATE(3437)] = 143447, + [SMALL_STATE(3438)] = 143470, + [SMALL_STATE(3439)] = 143493, + [SMALL_STATE(3440)] = 143516, + [SMALL_STATE(3441)] = 143539, + [SMALL_STATE(3442)] = 143562, + [SMALL_STATE(3443)] = 143585, + [SMALL_STATE(3444)] = 143608, + [SMALL_STATE(3445)] = 143631, + [SMALL_STATE(3446)] = 143654, + [SMALL_STATE(3447)] = 143677, + [SMALL_STATE(3448)] = 143700, + [SMALL_STATE(3449)] = 143723, + [SMALL_STATE(3450)] = 143746, + [SMALL_STATE(3451)] = 143769, + [SMALL_STATE(3452)] = 143792, + [SMALL_STATE(3453)] = 143815, + [SMALL_STATE(3454)] = 143838, + [SMALL_STATE(3455)] = 143861, + [SMALL_STATE(3456)] = 143884, + [SMALL_STATE(3457)] = 143907, + [SMALL_STATE(3458)] = 143930, + [SMALL_STATE(3459)] = 143953, + [SMALL_STATE(3460)] = 143976, + [SMALL_STATE(3461)] = 143999, + [SMALL_STATE(3462)] = 144022, + [SMALL_STATE(3463)] = 144045, + [SMALL_STATE(3464)] = 144068, + [SMALL_STATE(3465)] = 144091, + [SMALL_STATE(3466)] = 144114, + [SMALL_STATE(3467)] = 144137, + [SMALL_STATE(3468)] = 144160, + [SMALL_STATE(3469)] = 144183, + [SMALL_STATE(3470)] = 144206, + [SMALL_STATE(3471)] = 144229, + [SMALL_STATE(3472)] = 144252, + [SMALL_STATE(3473)] = 144275, + [SMALL_STATE(3474)] = 144298, + [SMALL_STATE(3475)] = 144321, + [SMALL_STATE(3476)] = 144344, + [SMALL_STATE(3477)] = 144367, + [SMALL_STATE(3478)] = 144390, + [SMALL_STATE(3479)] = 144413, + [SMALL_STATE(3480)] = 144436, + [SMALL_STATE(3481)] = 144459, + [SMALL_STATE(3482)] = 144482, + [SMALL_STATE(3483)] = 144505, + [SMALL_STATE(3484)] = 144528, + [SMALL_STATE(3485)] = 144551, + [SMALL_STATE(3486)] = 144574, + [SMALL_STATE(3487)] = 144597, + [SMALL_STATE(3488)] = 144620, + [SMALL_STATE(3489)] = 144643, + [SMALL_STATE(3490)] = 144666, + [SMALL_STATE(3491)] = 144689, + [SMALL_STATE(3492)] = 144712, + [SMALL_STATE(3493)] = 144735, + [SMALL_STATE(3494)] = 144758, + [SMALL_STATE(3495)] = 144781, + [SMALL_STATE(3496)] = 144804, + [SMALL_STATE(3497)] = 144827, + [SMALL_STATE(3498)] = 144850, + [SMALL_STATE(3499)] = 144873, + [SMALL_STATE(3500)] = 144896, + [SMALL_STATE(3501)] = 144919, + [SMALL_STATE(3502)] = 144942, + [SMALL_STATE(3503)] = 144965, + [SMALL_STATE(3504)] = 144988, + [SMALL_STATE(3505)] = 145011, + [SMALL_STATE(3506)] = 145034, + [SMALL_STATE(3507)] = 145057, + [SMALL_STATE(3508)] = 145080, + [SMALL_STATE(3509)] = 145103, + [SMALL_STATE(3510)] = 145126, + [SMALL_STATE(3511)] = 145149, + [SMALL_STATE(3512)] = 145172, + [SMALL_STATE(3513)] = 145195, + [SMALL_STATE(3514)] = 145218, + [SMALL_STATE(3515)] = 145241, + [SMALL_STATE(3516)] = 145264, + [SMALL_STATE(3517)] = 145285, + [SMALL_STATE(3518)] = 145308, + [SMALL_STATE(3519)] = 145331, + [SMALL_STATE(3520)] = 145354, + [SMALL_STATE(3521)] = 145373, + [SMALL_STATE(3522)] = 145392, + [SMALL_STATE(3523)] = 145415, + [SMALL_STATE(3524)] = 145434, + [SMALL_STATE(3525)] = 145453, + [SMALL_STATE(3526)] = 145472, + [SMALL_STATE(3527)] = 145491, + [SMALL_STATE(3528)] = 145510, + [SMALL_STATE(3529)] = 145529, + [SMALL_STATE(3530)] = 145548, + [SMALL_STATE(3531)] = 145571, + [SMALL_STATE(3532)] = 145594, + [SMALL_STATE(3533)] = 145613, + [SMALL_STATE(3534)] = 145636, + [SMALL_STATE(3535)] = 145655, + [SMALL_STATE(3536)] = 145678, + [SMALL_STATE(3537)] = 145697, + [SMALL_STATE(3538)] = 145720, + [SMALL_STATE(3539)] = 145739, + [SMALL_STATE(3540)] = 145758, + [SMALL_STATE(3541)] = 145777, + [SMALL_STATE(3542)] = 145800, + [SMALL_STATE(3543)] = 145819, + [SMALL_STATE(3544)] = 145838, + [SMALL_STATE(3545)] = 145861, + [SMALL_STATE(3546)] = 145880, + [SMALL_STATE(3547)] = 145899, + [SMALL_STATE(3548)] = 145918, + [SMALL_STATE(3549)] = 145937, + [SMALL_STATE(3550)] = 145960, + [SMALL_STATE(3551)] = 145983, + [SMALL_STATE(3552)] = 146002, + [SMALL_STATE(3553)] = 146023, + [SMALL_STATE(3554)] = 146042, + [SMALL_STATE(3555)] = 146061, + [SMALL_STATE(3556)] = 146080, + [SMALL_STATE(3557)] = 146103, + [SMALL_STATE(3558)] = 146124, + [SMALL_STATE(3559)] = 146143, + [SMALL_STATE(3560)] = 146162, + [SMALL_STATE(3561)] = 146181, + [SMALL_STATE(3562)] = 146200, + [SMALL_STATE(3563)] = 146223, + [SMALL_STATE(3564)] = 146242, + [SMALL_STATE(3565)] = 146263, + [SMALL_STATE(3566)] = 146282, + [SMALL_STATE(3567)] = 146303, + [SMALL_STATE(3568)] = 146322, + [SMALL_STATE(3569)] = 146341, + [SMALL_STATE(3570)] = 146362, + [SMALL_STATE(3571)] = 146381, + [SMALL_STATE(3572)] = 146400, + [SMALL_STATE(3573)] = 146421, + [SMALL_STATE(3574)] = 146440, + [SMALL_STATE(3575)] = 146463, + [SMALL_STATE(3576)] = 146482, + [SMALL_STATE(3577)] = 146505, + [SMALL_STATE(3578)] = 146524, + [SMALL_STATE(3579)] = 146547, + [SMALL_STATE(3580)] = 146566, + [SMALL_STATE(3581)] = 146585, + [SMALL_STATE(3582)] = 146604, + [SMALL_STATE(3583)] = 146623, + [SMALL_STATE(3584)] = 146642, + [SMALL_STATE(3585)] = 146665, + [SMALL_STATE(3586)] = 146684, + [SMALL_STATE(3587)] = 146707, + [SMALL_STATE(3588)] = 146726, + [SMALL_STATE(3589)] = 146749, + [SMALL_STATE(3590)] = 146768, + [SMALL_STATE(3591)] = 146787, + [SMALL_STATE(3592)] = 146806, + [SMALL_STATE(3593)] = 146825, + [SMALL_STATE(3594)] = 146844, + [SMALL_STATE(3595)] = 146867, + [SMALL_STATE(3596)] = 146886, + [SMALL_STATE(3597)] = 146905, + [SMALL_STATE(3598)] = 146924, + [SMALL_STATE(3599)] = 146947, + [SMALL_STATE(3600)] = 146966, + [SMALL_STATE(3601)] = 146989, + [SMALL_STATE(3602)] = 147008, + [SMALL_STATE(3603)] = 147027, + [SMALL_STATE(3604)] = 147046, + [SMALL_STATE(3605)] = 147065, + [SMALL_STATE(3606)] = 147084, + [SMALL_STATE(3607)] = 147103, + [SMALL_STATE(3608)] = 147122, + [SMALL_STATE(3609)] = 147141, + [SMALL_STATE(3610)] = 147160, + [SMALL_STATE(3611)] = 147179, + [SMALL_STATE(3612)] = 147198, + [SMALL_STATE(3613)] = 147217, + [SMALL_STATE(3614)] = 147236, + [SMALL_STATE(3615)] = 147255, + [SMALL_STATE(3616)] = 147274, + [SMALL_STATE(3617)] = 147293, + [SMALL_STATE(3618)] = 147312, + [SMALL_STATE(3619)] = 147331, + [SMALL_STATE(3620)] = 147350, + [SMALL_STATE(3621)] = 147369, + [SMALL_STATE(3622)] = 147388, + [SMALL_STATE(3623)] = 147407, + [SMALL_STATE(3624)] = 147426, + [SMALL_STATE(3625)] = 147445, + [SMALL_STATE(3626)] = 147464, + [SMALL_STATE(3627)] = 147483, + [SMALL_STATE(3628)] = 147506, + [SMALL_STATE(3629)] = 147525, + [SMALL_STATE(3630)] = 147548, + [SMALL_STATE(3631)] = 147567, + [SMALL_STATE(3632)] = 147586, + [SMALL_STATE(3633)] = 147605, + [SMALL_STATE(3634)] = 147624, + [SMALL_STATE(3635)] = 147643, + [SMALL_STATE(3636)] = 147662, + [SMALL_STATE(3637)] = 147681, + [SMALL_STATE(3638)] = 147700, + [SMALL_STATE(3639)] = 147719, + [SMALL_STATE(3640)] = 147738, + [SMALL_STATE(3641)] = 147757, + [SMALL_STATE(3642)] = 147776, + [SMALL_STATE(3643)] = 147795, + [SMALL_STATE(3644)] = 147814, + [SMALL_STATE(3645)] = 147833, + [SMALL_STATE(3646)] = 147852, + [SMALL_STATE(3647)] = 147871, + [SMALL_STATE(3648)] = 147890, + [SMALL_STATE(3649)] = 147909, + [SMALL_STATE(3650)] = 147928, + [SMALL_STATE(3651)] = 147947, + [SMALL_STATE(3652)] = 147967, + [SMALL_STATE(3653)] = 147987, + [SMALL_STATE(3654)] = 148007, + [SMALL_STATE(3655)] = 148027, + [SMALL_STATE(3656)] = 148047, + [SMALL_STATE(3657)] = 148067, + [SMALL_STATE(3658)] = 148087, + [SMALL_STATE(3659)] = 148107, + [SMALL_STATE(3660)] = 148127, + [SMALL_STATE(3661)] = 148147, + [SMALL_STATE(3662)] = 148167, + [SMALL_STATE(3663)] = 148187, + [SMALL_STATE(3664)] = 148207, + [SMALL_STATE(3665)] = 148227, + [SMALL_STATE(3666)] = 148247, + [SMALL_STATE(3667)] = 148267, + [SMALL_STATE(3668)] = 148287, + [SMALL_STATE(3669)] = 148307, + [SMALL_STATE(3670)] = 148327, + [SMALL_STATE(3671)] = 148347, + [SMALL_STATE(3672)] = 148367, + [SMALL_STATE(3673)] = 148385, + [SMALL_STATE(3674)] = 148405, + [SMALL_STATE(3675)] = 148425, + [SMALL_STATE(3676)] = 148445, + [SMALL_STATE(3677)] = 148465, + [SMALL_STATE(3678)] = 148485, + [SMALL_STATE(3679)] = 148505, + [SMALL_STATE(3680)] = 148525, + [SMALL_STATE(3681)] = 148545, + [SMALL_STATE(3682)] = 148565, + [SMALL_STATE(3683)] = 148585, + [SMALL_STATE(3684)] = 148605, + [SMALL_STATE(3685)] = 148625, + [SMALL_STATE(3686)] = 148645, + [SMALL_STATE(3687)] = 148665, + [SMALL_STATE(3688)] = 148685, + [SMALL_STATE(3689)] = 148705, + [SMALL_STATE(3690)] = 148725, + [SMALL_STATE(3691)] = 148745, + [SMALL_STATE(3692)] = 148765, + [SMALL_STATE(3693)] = 148785, + [SMALL_STATE(3694)] = 148805, + [SMALL_STATE(3695)] = 148825, + [SMALL_STATE(3696)] = 148845, + [SMALL_STATE(3697)] = 148865, + [SMALL_STATE(3698)] = 148885, + [SMALL_STATE(3699)] = 148905, + [SMALL_STATE(3700)] = 148925, + [SMALL_STATE(3701)] = 148945, + [SMALL_STATE(3702)] = 148965, + [SMALL_STATE(3703)] = 148985, + [SMALL_STATE(3704)] = 149005, + [SMALL_STATE(3705)] = 149025, + [SMALL_STATE(3706)] = 149045, + [SMALL_STATE(3707)] = 149065, + [SMALL_STATE(3708)] = 149085, + [SMALL_STATE(3709)] = 149105, + [SMALL_STATE(3710)] = 149125, + [SMALL_STATE(3711)] = 149145, + [SMALL_STATE(3712)] = 149165, + [SMALL_STATE(3713)] = 149185, + [SMALL_STATE(3714)] = 149205, + [SMALL_STATE(3715)] = 149225, + [SMALL_STATE(3716)] = 149245, + [SMALL_STATE(3717)] = 149265, + [SMALL_STATE(3718)] = 149285, + [SMALL_STATE(3719)] = 149305, + [SMALL_STATE(3720)] = 149325, + [SMALL_STATE(3721)] = 149345, + [SMALL_STATE(3722)] = 149365, + [SMALL_STATE(3723)] = 149385, + [SMALL_STATE(3724)] = 149405, + [SMALL_STATE(3725)] = 149425, + [SMALL_STATE(3726)] = 149445, + [SMALL_STATE(3727)] = 149465, + [SMALL_STATE(3728)] = 149485, + [SMALL_STATE(3729)] = 149505, + [SMALL_STATE(3730)] = 149525, + [SMALL_STATE(3731)] = 149545, + [SMALL_STATE(3732)] = 149565, + [SMALL_STATE(3733)] = 149585, + [SMALL_STATE(3734)] = 149603, + [SMALL_STATE(3735)] = 149621, + [SMALL_STATE(3736)] = 149641, + [SMALL_STATE(3737)] = 149661, + [SMALL_STATE(3738)] = 149679, + [SMALL_STATE(3739)] = 149699, + [SMALL_STATE(3740)] = 149719, + [SMALL_STATE(3741)] = 149739, + [SMALL_STATE(3742)] = 149759, + [SMALL_STATE(3743)] = 149779, + [SMALL_STATE(3744)] = 149799, + [SMALL_STATE(3745)] = 149819, + [SMALL_STATE(3746)] = 149839, + [SMALL_STATE(3747)] = 149859, + [SMALL_STATE(3748)] = 149879, + [SMALL_STATE(3749)] = 149899, + [SMALL_STATE(3750)] = 149919, + [SMALL_STATE(3751)] = 149939, + [SMALL_STATE(3752)] = 149959, + [SMALL_STATE(3753)] = 149979, + [SMALL_STATE(3754)] = 149999, + [SMALL_STATE(3755)] = 150019, + [SMALL_STATE(3756)] = 150039, + [SMALL_STATE(3757)] = 150059, + [SMALL_STATE(3758)] = 150079, + [SMALL_STATE(3759)] = 150099, + [SMALL_STATE(3760)] = 150119, + [SMALL_STATE(3761)] = 150139, + [SMALL_STATE(3762)] = 150159, + [SMALL_STATE(3763)] = 150179, + [SMALL_STATE(3764)] = 150199, + [SMALL_STATE(3765)] = 150219, + [SMALL_STATE(3766)] = 150239, + [SMALL_STATE(3767)] = 150259, + [SMALL_STATE(3768)] = 150279, + [SMALL_STATE(3769)] = 150299, + [SMALL_STATE(3770)] = 150319, + [SMALL_STATE(3771)] = 150339, + [SMALL_STATE(3772)] = 150359, + [SMALL_STATE(3773)] = 150379, + [SMALL_STATE(3774)] = 150399, + [SMALL_STATE(3775)] = 150419, + [SMALL_STATE(3776)] = 150439, + [SMALL_STATE(3777)] = 150457, + [SMALL_STATE(3778)] = 150477, + [SMALL_STATE(3779)] = 150497, + [SMALL_STATE(3780)] = 150517, + [SMALL_STATE(3781)] = 150537, + [SMALL_STATE(3782)] = 150557, + [SMALL_STATE(3783)] = 150577, + [SMALL_STATE(3784)] = 150597, + [SMALL_STATE(3785)] = 150615, + [SMALL_STATE(3786)] = 150635, + [SMALL_STATE(3787)] = 150653, + [SMALL_STATE(3788)] = 150673, + [SMALL_STATE(3789)] = 150693, + [SMALL_STATE(3790)] = 150713, + [SMALL_STATE(3791)] = 150733, + [SMALL_STATE(3792)] = 150753, + [SMALL_STATE(3793)] = 150773, + [SMALL_STATE(3794)] = 150791, + [SMALL_STATE(3795)] = 150811, + [SMALL_STATE(3796)] = 150831, + [SMALL_STATE(3797)] = 150851, + [SMALL_STATE(3798)] = 150871, + [SMALL_STATE(3799)] = 150891, + [SMALL_STATE(3800)] = 150911, + [SMALL_STATE(3801)] = 150931, + [SMALL_STATE(3802)] = 150951, + [SMALL_STATE(3803)] = 150971, + [SMALL_STATE(3804)] = 150991, + [SMALL_STATE(3805)] = 151011, + [SMALL_STATE(3806)] = 151031, + [SMALL_STATE(3807)] = 151051, + [SMALL_STATE(3808)] = 151071, + [SMALL_STATE(3809)] = 151091, + [SMALL_STATE(3810)] = 151111, + [SMALL_STATE(3811)] = 151131, + [SMALL_STATE(3812)] = 151149, + [SMALL_STATE(3813)] = 151169, + [SMALL_STATE(3814)] = 151189, + [SMALL_STATE(3815)] = 151209, + [SMALL_STATE(3816)] = 151229, + [SMALL_STATE(3817)] = 151249, + [SMALL_STATE(3818)] = 151269, + [SMALL_STATE(3819)] = 151289, + [SMALL_STATE(3820)] = 151309, + [SMALL_STATE(3821)] = 151327, + [SMALL_STATE(3822)] = 151347, + [SMALL_STATE(3823)] = 151367, + [SMALL_STATE(3824)] = 151387, + [SMALL_STATE(3825)] = 151407, + [SMALL_STATE(3826)] = 151427, + [SMALL_STATE(3827)] = 151447, + [SMALL_STATE(3828)] = 151467, + [SMALL_STATE(3829)] = 151487, + [SMALL_STATE(3830)] = 151507, + [SMALL_STATE(3831)] = 151527, + [SMALL_STATE(3832)] = 151547, + [SMALL_STATE(3833)] = 151567, + [SMALL_STATE(3834)] = 151587, + [SMALL_STATE(3835)] = 151607, + [SMALL_STATE(3836)] = 151627, + [SMALL_STATE(3837)] = 151647, + [SMALL_STATE(3838)] = 151667, + [SMALL_STATE(3839)] = 151687, + [SMALL_STATE(3840)] = 151707, + [SMALL_STATE(3841)] = 151725, + [SMALL_STATE(3842)] = 151745, + [SMALL_STATE(3843)] = 151765, + [SMALL_STATE(3844)] = 151785, + [SMALL_STATE(3845)] = 151805, + [SMALL_STATE(3846)] = 151825, + [SMALL_STATE(3847)] = 151845, + [SMALL_STATE(3848)] = 151865, + [SMALL_STATE(3849)] = 151883, + [SMALL_STATE(3850)] = 151903, + [SMALL_STATE(3851)] = 151923, + [SMALL_STATE(3852)] = 151943, + [SMALL_STATE(3853)] = 151963, + [SMALL_STATE(3854)] = 151983, + [SMALL_STATE(3855)] = 152003, + [SMALL_STATE(3856)] = 152023, + [SMALL_STATE(3857)] = 152043, + [SMALL_STATE(3858)] = 152063, + [SMALL_STATE(3859)] = 152083, + [SMALL_STATE(3860)] = 152103, + [SMALL_STATE(3861)] = 152123, + [SMALL_STATE(3862)] = 152143, + [SMALL_STATE(3863)] = 152161, + [SMALL_STATE(3864)] = 152181, + [SMALL_STATE(3865)] = 152201, + [SMALL_STATE(3866)] = 152221, + [SMALL_STATE(3867)] = 152241, + [SMALL_STATE(3868)] = 152261, + [SMALL_STATE(3869)] = 152281, + [SMALL_STATE(3870)] = 152301, + [SMALL_STATE(3871)] = 152321, + [SMALL_STATE(3872)] = 152341, + [SMALL_STATE(3873)] = 152361, + [SMALL_STATE(3874)] = 152381, + [SMALL_STATE(3875)] = 152401, + [SMALL_STATE(3876)] = 152421, + [SMALL_STATE(3877)] = 152441, + [SMALL_STATE(3878)] = 152461, + [SMALL_STATE(3879)] = 152481, + [SMALL_STATE(3880)] = 152501, + [SMALL_STATE(3881)] = 152521, + [SMALL_STATE(3882)] = 152541, + [SMALL_STATE(3883)] = 152561, + [SMALL_STATE(3884)] = 152579, + [SMALL_STATE(3885)] = 152599, + [SMALL_STATE(3886)] = 152619, + [SMALL_STATE(3887)] = 152639, + [SMALL_STATE(3888)] = 152659, + [SMALL_STATE(3889)] = 152679, + [SMALL_STATE(3890)] = 152699, + [SMALL_STATE(3891)] = 152719, + [SMALL_STATE(3892)] = 152739, + [SMALL_STATE(3893)] = 152759, + [SMALL_STATE(3894)] = 152779, + [SMALL_STATE(3895)] = 152799, + [SMALL_STATE(3896)] = 152819, + [SMALL_STATE(3897)] = 152839, + [SMALL_STATE(3898)] = 152859, + [SMALL_STATE(3899)] = 152879, + [SMALL_STATE(3900)] = 152899, + [SMALL_STATE(3901)] = 152919, + [SMALL_STATE(3902)] = 152939, + [SMALL_STATE(3903)] = 152959, + [SMALL_STATE(3904)] = 152979, + [SMALL_STATE(3905)] = 152999, + [SMALL_STATE(3906)] = 153019, + [SMALL_STATE(3907)] = 153039, + [SMALL_STATE(3908)] = 153059, + [SMALL_STATE(3909)] = 153077, + [SMALL_STATE(3910)] = 153097, + [SMALL_STATE(3911)] = 153117, + [SMALL_STATE(3912)] = 153137, + [SMALL_STATE(3913)] = 153157, + [SMALL_STATE(3914)] = 153177, + [SMALL_STATE(3915)] = 153197, + [SMALL_STATE(3916)] = 153217, + [SMALL_STATE(3917)] = 153237, + [SMALL_STATE(3918)] = 153257, + [SMALL_STATE(3919)] = 153277, + [SMALL_STATE(3920)] = 153295, + [SMALL_STATE(3921)] = 153315, + [SMALL_STATE(3922)] = 153335, + [SMALL_STATE(3923)] = 153355, + [SMALL_STATE(3924)] = 153375, + [SMALL_STATE(3925)] = 153395, + [SMALL_STATE(3926)] = 153415, + [SMALL_STATE(3927)] = 153435, + [SMALL_STATE(3928)] = 153455, + [SMALL_STATE(3929)] = 153475, + [SMALL_STATE(3930)] = 153495, + [SMALL_STATE(3931)] = 153515, + [SMALL_STATE(3932)] = 153535, + [SMALL_STATE(3933)] = 153555, + [SMALL_STATE(3934)] = 153575, + [SMALL_STATE(3935)] = 153595, + [SMALL_STATE(3936)] = 153613, + [SMALL_STATE(3937)] = 153633, + [SMALL_STATE(3938)] = 153653, + [SMALL_STATE(3939)] = 153673, + [SMALL_STATE(3940)] = 153693, + [SMALL_STATE(3941)] = 153713, + [SMALL_STATE(3942)] = 153733, + [SMALL_STATE(3943)] = 153753, + [SMALL_STATE(3944)] = 153773, + [SMALL_STATE(3945)] = 153791, + [SMALL_STATE(3946)] = 153811, + [SMALL_STATE(3947)] = 153831, + [SMALL_STATE(3948)] = 153851, + [SMALL_STATE(3949)] = 153871, + [SMALL_STATE(3950)] = 153891, + [SMALL_STATE(3951)] = 153911, + [SMALL_STATE(3952)] = 153931, + [SMALL_STATE(3953)] = 153951, + [SMALL_STATE(3954)] = 153971, + [SMALL_STATE(3955)] = 153991, + [SMALL_STATE(3956)] = 154011, + [SMALL_STATE(3957)] = 154031, + [SMALL_STATE(3958)] = 154051, + [SMALL_STATE(3959)] = 154071, + [SMALL_STATE(3960)] = 154091, + [SMALL_STATE(3961)] = 154111, + [SMALL_STATE(3962)] = 154131, + [SMALL_STATE(3963)] = 154151, + [SMALL_STATE(3964)] = 154171, + [SMALL_STATE(3965)] = 154189, + [SMALL_STATE(3966)] = 154207, + [SMALL_STATE(3967)] = 154227, + [SMALL_STATE(3968)] = 154247, + [SMALL_STATE(3969)] = 154267, + [SMALL_STATE(3970)] = 154287, + [SMALL_STATE(3971)] = 154307, + [SMALL_STATE(3972)] = 154325, + [SMALL_STATE(3973)] = 154343, + [SMALL_STATE(3974)] = 154363, + [SMALL_STATE(3975)] = 154383, + [SMALL_STATE(3976)] = 154403, + [SMALL_STATE(3977)] = 154423, + [SMALL_STATE(3978)] = 154441, + [SMALL_STATE(3979)] = 154461, + [SMALL_STATE(3980)] = 154479, + [SMALL_STATE(3981)] = 154499, + [SMALL_STATE(3982)] = 154519, + [SMALL_STATE(3983)] = 154539, + [SMALL_STATE(3984)] = 154559, + [SMALL_STATE(3985)] = 154579, + [SMALL_STATE(3986)] = 154599, + [SMALL_STATE(3987)] = 154619, + [SMALL_STATE(3988)] = 154639, + [SMALL_STATE(3989)] = 154659, + [SMALL_STATE(3990)] = 154679, + [SMALL_STATE(3991)] = 154699, + [SMALL_STATE(3992)] = 154719, + [SMALL_STATE(3993)] = 154739, + [SMALL_STATE(3994)] = 154759, + [SMALL_STATE(3995)] = 154779, + [SMALL_STATE(3996)] = 154799, + [SMALL_STATE(3997)] = 154819, + [SMALL_STATE(3998)] = 154839, + [SMALL_STATE(3999)] = 154859, + [SMALL_STATE(4000)] = 154879, + [SMALL_STATE(4001)] = 154899, + [SMALL_STATE(4002)] = 154919, + [SMALL_STATE(4003)] = 154937, + [SMALL_STATE(4004)] = 154957, + [SMALL_STATE(4005)] = 154977, + [SMALL_STATE(4006)] = 154997, + [SMALL_STATE(4007)] = 155017, + [SMALL_STATE(4008)] = 155037, + [SMALL_STATE(4009)] = 155057, + [SMALL_STATE(4010)] = 155077, + [SMALL_STATE(4011)] = 155097, + [SMALL_STATE(4012)] = 155117, + [SMALL_STATE(4013)] = 155137, + [SMALL_STATE(4014)] = 155157, + [SMALL_STATE(4015)] = 155177, + [SMALL_STATE(4016)] = 155197, + [SMALL_STATE(4017)] = 155217, + [SMALL_STATE(4018)] = 155237, + [SMALL_STATE(4019)] = 155257, + [SMALL_STATE(4020)] = 155277, + [SMALL_STATE(4021)] = 155297, + [SMALL_STATE(4022)] = 155317, + [SMALL_STATE(4023)] = 155337, + [SMALL_STATE(4024)] = 155357, + [SMALL_STATE(4025)] = 155377, + [SMALL_STATE(4026)] = 155397, + [SMALL_STATE(4027)] = 155417, + [SMALL_STATE(4028)] = 155437, + [SMALL_STATE(4029)] = 155457, + [SMALL_STATE(4030)] = 155475, + [SMALL_STATE(4031)] = 155495, + [SMALL_STATE(4032)] = 155515, + [SMALL_STATE(4033)] = 155535, + [SMALL_STATE(4034)] = 155555, + [SMALL_STATE(4035)] = 155575, + [SMALL_STATE(4036)] = 155595, + [SMALL_STATE(4037)] = 155615, + [SMALL_STATE(4038)] = 155635, + [SMALL_STATE(4039)] = 155655, + [SMALL_STATE(4040)] = 155675, + [SMALL_STATE(4041)] = 155693, + [SMALL_STATE(4042)] = 155713, + [SMALL_STATE(4043)] = 155733, + [SMALL_STATE(4044)] = 155753, + [SMALL_STATE(4045)] = 155773, + [SMALL_STATE(4046)] = 155793, + [SMALL_STATE(4047)] = 155813, + [SMALL_STATE(4048)] = 155833, + [SMALL_STATE(4049)] = 155853, + [SMALL_STATE(4050)] = 155873, + [SMALL_STATE(4051)] = 155893, + [SMALL_STATE(4052)] = 155913, + [SMALL_STATE(4053)] = 155933, + [SMALL_STATE(4054)] = 155953, + [SMALL_STATE(4055)] = 155973, + [SMALL_STATE(4056)] = 155993, + [SMALL_STATE(4057)] = 156013, + [SMALL_STATE(4058)] = 156033, + [SMALL_STATE(4059)] = 156053, + [SMALL_STATE(4060)] = 156073, + [SMALL_STATE(4061)] = 156093, + [SMALL_STATE(4062)] = 156113, + [SMALL_STATE(4063)] = 156133, + [SMALL_STATE(4064)] = 156153, + [SMALL_STATE(4065)] = 156173, + [SMALL_STATE(4066)] = 156191, + [SMALL_STATE(4067)] = 156211, + [SMALL_STATE(4068)] = 156229, + [SMALL_STATE(4069)] = 156249, + [SMALL_STATE(4070)] = 156269, + [SMALL_STATE(4071)] = 156287, + [SMALL_STATE(4072)] = 156307, + [SMALL_STATE(4073)] = 156327, + [SMALL_STATE(4074)] = 156347, + [SMALL_STATE(4075)] = 156367, + [SMALL_STATE(4076)] = 156387, + [SMALL_STATE(4077)] = 156407, + [SMALL_STATE(4078)] = 156427, + [SMALL_STATE(4079)] = 156445, + [SMALL_STATE(4080)] = 156465, + [SMALL_STATE(4081)] = 156485, + [SMALL_STATE(4082)] = 156505, + [SMALL_STATE(4083)] = 156523, + [SMALL_STATE(4084)] = 156543, + [SMALL_STATE(4085)] = 156563, + [SMALL_STATE(4086)] = 156583, + [SMALL_STATE(4087)] = 156603, + [SMALL_STATE(4088)] = 156623, + [SMALL_STATE(4089)] = 156643, + [SMALL_STATE(4090)] = 156663, + [SMALL_STATE(4091)] = 156683, + [SMALL_STATE(4092)] = 156703, + [SMALL_STATE(4093)] = 156723, + [SMALL_STATE(4094)] = 156743, + [SMALL_STATE(4095)] = 156763, + [SMALL_STATE(4096)] = 156783, + [SMALL_STATE(4097)] = 156803, + [SMALL_STATE(4098)] = 156823, + [SMALL_STATE(4099)] = 156843, + [SMALL_STATE(4100)] = 156861, + [SMALL_STATE(4101)] = 156879, + [SMALL_STATE(4102)] = 156899, + [SMALL_STATE(4103)] = 156919, + [SMALL_STATE(4104)] = 156939, + [SMALL_STATE(4105)] = 156959, + [SMALL_STATE(4106)] = 156979, + [SMALL_STATE(4107)] = 156999, + [SMALL_STATE(4108)] = 157017, + [SMALL_STATE(4109)] = 157037, + [SMALL_STATE(4110)] = 157057, + [SMALL_STATE(4111)] = 157077, + [SMALL_STATE(4112)] = 157097, + [SMALL_STATE(4113)] = 157117, + [SMALL_STATE(4114)] = 157137, + [SMALL_STATE(4115)] = 157155, + [SMALL_STATE(4116)] = 157175, + [SMALL_STATE(4117)] = 157195, + [SMALL_STATE(4118)] = 157215, + [SMALL_STATE(4119)] = 157235, + [SMALL_STATE(4120)] = 157255, + [SMALL_STATE(4121)] = 157273, + [SMALL_STATE(4122)] = 157293, + [SMALL_STATE(4123)] = 157313, + [SMALL_STATE(4124)] = 157333, + [SMALL_STATE(4125)] = 157353, + [SMALL_STATE(4126)] = 157373, + [SMALL_STATE(4127)] = 157393, + [SMALL_STATE(4128)] = 157413, + [SMALL_STATE(4129)] = 157433, + [SMALL_STATE(4130)] = 157453, + [SMALL_STATE(4131)] = 157473, + [SMALL_STATE(4132)] = 157493, + [SMALL_STATE(4133)] = 157513, + [SMALL_STATE(4134)] = 157533, + [SMALL_STATE(4135)] = 157553, + [SMALL_STATE(4136)] = 157573, + [SMALL_STATE(4137)] = 157593, + [SMALL_STATE(4138)] = 157613, + [SMALL_STATE(4139)] = 157633, + [SMALL_STATE(4140)] = 157653, + [SMALL_STATE(4141)] = 157673, + [SMALL_STATE(4142)] = 157693, + [SMALL_STATE(4143)] = 157713, + [SMALL_STATE(4144)] = 157733, + [SMALL_STATE(4145)] = 157753, + [SMALL_STATE(4146)] = 157773, + [SMALL_STATE(4147)] = 157793, + [SMALL_STATE(4148)] = 157811, + [SMALL_STATE(4149)] = 157831, + [SMALL_STATE(4150)] = 157851, + [SMALL_STATE(4151)] = 157871, + [SMALL_STATE(4152)] = 157891, + [SMALL_STATE(4153)] = 157911, + [SMALL_STATE(4154)] = 157931, + [SMALL_STATE(4155)] = 157951, + [SMALL_STATE(4156)] = 157971, + [SMALL_STATE(4157)] = 157989, + [SMALL_STATE(4158)] = 158009, + [SMALL_STATE(4159)] = 158029, + [SMALL_STATE(4160)] = 158049, + [SMALL_STATE(4161)] = 158069, + [SMALL_STATE(4162)] = 158087, + [SMALL_STATE(4163)] = 158107, + [SMALL_STATE(4164)] = 158127, + [SMALL_STATE(4165)] = 158147, + [SMALL_STATE(4166)] = 158167, + [SMALL_STATE(4167)] = 158187, + [SMALL_STATE(4168)] = 158207, + [SMALL_STATE(4169)] = 158227, + [SMALL_STATE(4170)] = 158247, + [SMALL_STATE(4171)] = 158267, + [SMALL_STATE(4172)] = 158287, + [SMALL_STATE(4173)] = 158307, + [SMALL_STATE(4174)] = 158327, + [SMALL_STATE(4175)] = 158345, + [SMALL_STATE(4176)] = 158365, + [SMALL_STATE(4177)] = 158385, + [SMALL_STATE(4178)] = 158405, + [SMALL_STATE(4179)] = 158425, + [SMALL_STATE(4180)] = 158443, + [SMALL_STATE(4181)] = 158463, + [SMALL_STATE(4182)] = 158483, + [SMALL_STATE(4183)] = 158503, + [SMALL_STATE(4184)] = 158521, + [SMALL_STATE(4185)] = 158541, + [SMALL_STATE(4186)] = 158561, + [SMALL_STATE(4187)] = 158579, + [SMALL_STATE(4188)] = 158599, + [SMALL_STATE(4189)] = 158619, + [SMALL_STATE(4190)] = 158636, + [SMALL_STATE(4191)] = 158653, + [SMALL_STATE(4192)] = 158670, + [SMALL_STATE(4193)] = 158687, + [SMALL_STATE(4194)] = 158704, + [SMALL_STATE(4195)] = 158721, + [SMALL_STATE(4196)] = 158738, + [SMALL_STATE(4197)] = 158755, + [SMALL_STATE(4198)] = 158772, + [SMALL_STATE(4199)] = 158789, + [SMALL_STATE(4200)] = 158806, + [SMALL_STATE(4201)] = 158823, + [SMALL_STATE(4202)] = 158840, + [SMALL_STATE(4203)] = 158857, + [SMALL_STATE(4204)] = 158874, + [SMALL_STATE(4205)] = 158891, + [SMALL_STATE(4206)] = 158908, + [SMALL_STATE(4207)] = 158925, + [SMALL_STATE(4208)] = 158942, + [SMALL_STATE(4209)] = 158959, + [SMALL_STATE(4210)] = 158976, + [SMALL_STATE(4211)] = 158993, + [SMALL_STATE(4212)] = 159010, + [SMALL_STATE(4213)] = 159027, + [SMALL_STATE(4214)] = 159044, + [SMALL_STATE(4215)] = 159061, + [SMALL_STATE(4216)] = 159078, + [SMALL_STATE(4217)] = 159095, + [SMALL_STATE(4218)] = 159112, + [SMALL_STATE(4219)] = 159129, + [SMALL_STATE(4220)] = 159146, + [SMALL_STATE(4221)] = 159163, + [SMALL_STATE(4222)] = 159180, + [SMALL_STATE(4223)] = 159197, + [SMALL_STATE(4224)] = 159214, + [SMALL_STATE(4225)] = 159231, + [SMALL_STATE(4226)] = 159248, + [SMALL_STATE(4227)] = 159265, + [SMALL_STATE(4228)] = 159282, + [SMALL_STATE(4229)] = 159299, + [SMALL_STATE(4230)] = 159316, + [SMALL_STATE(4231)] = 159333, + [SMALL_STATE(4232)] = 159350, + [SMALL_STATE(4233)] = 159367, + [SMALL_STATE(4234)] = 159384, + [SMALL_STATE(4235)] = 159401, + [SMALL_STATE(4236)] = 159418, + [SMALL_STATE(4237)] = 159435, + [SMALL_STATE(4238)] = 159452, + [SMALL_STATE(4239)] = 159469, + [SMALL_STATE(4240)] = 159486, + [SMALL_STATE(4241)] = 159503, + [SMALL_STATE(4242)] = 159520, + [SMALL_STATE(4243)] = 159537, + [SMALL_STATE(4244)] = 159554, + [SMALL_STATE(4245)] = 159571, + [SMALL_STATE(4246)] = 159588, + [SMALL_STATE(4247)] = 159605, + [SMALL_STATE(4248)] = 159622, + [SMALL_STATE(4249)] = 159639, + [SMALL_STATE(4250)] = 159656, + [SMALL_STATE(4251)] = 159673, + [SMALL_STATE(4252)] = 159690, + [SMALL_STATE(4253)] = 159707, + [SMALL_STATE(4254)] = 159724, + [SMALL_STATE(4255)] = 159741, + [SMALL_STATE(4256)] = 159758, + [SMALL_STATE(4257)] = 159775, + [SMALL_STATE(4258)] = 159792, + [SMALL_STATE(4259)] = 159809, + [SMALL_STATE(4260)] = 159826, + [SMALL_STATE(4261)] = 159843, + [SMALL_STATE(4262)] = 159860, + [SMALL_STATE(4263)] = 159877, + [SMALL_STATE(4264)] = 159894, + [SMALL_STATE(4265)] = 159911, + [SMALL_STATE(4266)] = 159928, + [SMALL_STATE(4267)] = 159945, + [SMALL_STATE(4268)] = 159962, + [SMALL_STATE(4269)] = 159979, + [SMALL_STATE(4270)] = 159996, + [SMALL_STATE(4271)] = 160013, + [SMALL_STATE(4272)] = 160030, + [SMALL_STATE(4273)] = 160047, + [SMALL_STATE(4274)] = 160064, + [SMALL_STATE(4275)] = 160081, + [SMALL_STATE(4276)] = 160098, + [SMALL_STATE(4277)] = 160115, + [SMALL_STATE(4278)] = 160132, + [SMALL_STATE(4279)] = 160149, + [SMALL_STATE(4280)] = 160166, + [SMALL_STATE(4281)] = 160183, + [SMALL_STATE(4282)] = 160200, + [SMALL_STATE(4283)] = 160217, + [SMALL_STATE(4284)] = 160234, + [SMALL_STATE(4285)] = 160251, + [SMALL_STATE(4286)] = 160268, + [SMALL_STATE(4287)] = 160285, + [SMALL_STATE(4288)] = 160302, + [SMALL_STATE(4289)] = 160319, + [SMALL_STATE(4290)] = 160336, + [SMALL_STATE(4291)] = 160353, + [SMALL_STATE(4292)] = 160370, + [SMALL_STATE(4293)] = 160387, + [SMALL_STATE(4294)] = 160404, + [SMALL_STATE(4295)] = 160421, + [SMALL_STATE(4296)] = 160438, + [SMALL_STATE(4297)] = 160455, + [SMALL_STATE(4298)] = 160472, + [SMALL_STATE(4299)] = 160489, + [SMALL_STATE(4300)] = 160506, + [SMALL_STATE(4301)] = 160523, + [SMALL_STATE(4302)] = 160540, + [SMALL_STATE(4303)] = 160557, + [SMALL_STATE(4304)] = 160574, + [SMALL_STATE(4305)] = 160591, + [SMALL_STATE(4306)] = 160608, + [SMALL_STATE(4307)] = 160625, + [SMALL_STATE(4308)] = 160642, + [SMALL_STATE(4309)] = 160659, + [SMALL_STATE(4310)] = 160676, + [SMALL_STATE(4311)] = 160693, + [SMALL_STATE(4312)] = 160710, + [SMALL_STATE(4313)] = 160727, + [SMALL_STATE(4314)] = 160744, + [SMALL_STATE(4315)] = 160761, + [SMALL_STATE(4316)] = 160778, + [SMALL_STATE(4317)] = 160795, + [SMALL_STATE(4318)] = 160812, + [SMALL_STATE(4319)] = 160829, + [SMALL_STATE(4320)] = 160846, + [SMALL_STATE(4321)] = 160863, + [SMALL_STATE(4322)] = 160880, + [SMALL_STATE(4323)] = 160897, + [SMALL_STATE(4324)] = 160914, + [SMALL_STATE(4325)] = 160931, + [SMALL_STATE(4326)] = 160948, + [SMALL_STATE(4327)] = 160965, + [SMALL_STATE(4328)] = 160982, + [SMALL_STATE(4329)] = 160999, + [SMALL_STATE(4330)] = 161016, + [SMALL_STATE(4331)] = 161033, + [SMALL_STATE(4332)] = 161050, + [SMALL_STATE(4333)] = 161067, + [SMALL_STATE(4334)] = 161084, + [SMALL_STATE(4335)] = 161101, + [SMALL_STATE(4336)] = 161118, + [SMALL_STATE(4337)] = 161135, + [SMALL_STATE(4338)] = 161152, + [SMALL_STATE(4339)] = 161169, + [SMALL_STATE(4340)] = 161186, + [SMALL_STATE(4341)] = 161203, + [SMALL_STATE(4342)] = 161220, + [SMALL_STATE(4343)] = 161237, + [SMALL_STATE(4344)] = 161254, + [SMALL_STATE(4345)] = 161271, + [SMALL_STATE(4346)] = 161288, + [SMALL_STATE(4347)] = 161305, + [SMALL_STATE(4348)] = 161322, + [SMALL_STATE(4349)] = 161339, + [SMALL_STATE(4350)] = 161356, + [SMALL_STATE(4351)] = 161373, + [SMALL_STATE(4352)] = 161390, + [SMALL_STATE(4353)] = 161407, + [SMALL_STATE(4354)] = 161424, + [SMALL_STATE(4355)] = 161441, + [SMALL_STATE(4356)] = 161458, + [SMALL_STATE(4357)] = 161475, + [SMALL_STATE(4358)] = 161492, + [SMALL_STATE(4359)] = 161509, + [SMALL_STATE(4360)] = 161526, + [SMALL_STATE(4361)] = 161543, + [SMALL_STATE(4362)] = 161560, + [SMALL_STATE(4363)] = 161577, + [SMALL_STATE(4364)] = 161594, + [SMALL_STATE(4365)] = 161611, + [SMALL_STATE(4366)] = 161628, + [SMALL_STATE(4367)] = 161645, + [SMALL_STATE(4368)] = 161662, + [SMALL_STATE(4369)] = 161679, + [SMALL_STATE(4370)] = 161696, + [SMALL_STATE(4371)] = 161713, + [SMALL_STATE(4372)] = 161730, + [SMALL_STATE(4373)] = 161747, + [SMALL_STATE(4374)] = 161764, + [SMALL_STATE(4375)] = 161781, + [SMALL_STATE(4376)] = 161798, + [SMALL_STATE(4377)] = 161815, + [SMALL_STATE(4378)] = 161832, + [SMALL_STATE(4379)] = 161849, + [SMALL_STATE(4380)] = 161866, + [SMALL_STATE(4381)] = 161883, + [SMALL_STATE(4382)] = 161900, + [SMALL_STATE(4383)] = 161917, + [SMALL_STATE(4384)] = 161934, + [SMALL_STATE(4385)] = 161951, + [SMALL_STATE(4386)] = 161968, + [SMALL_STATE(4387)] = 161985, + [SMALL_STATE(4388)] = 162002, + [SMALL_STATE(4389)] = 162019, + [SMALL_STATE(4390)] = 162036, + [SMALL_STATE(4391)] = 162053, + [SMALL_STATE(4392)] = 162070, + [SMALL_STATE(4393)] = 162087, + [SMALL_STATE(4394)] = 162104, + [SMALL_STATE(4395)] = 162121, + [SMALL_STATE(4396)] = 162138, + [SMALL_STATE(4397)] = 162155, + [SMALL_STATE(4398)] = 162172, + [SMALL_STATE(4399)] = 162189, + [SMALL_STATE(4400)] = 162206, + [SMALL_STATE(4401)] = 162223, + [SMALL_STATE(4402)] = 162240, + [SMALL_STATE(4403)] = 162257, + [SMALL_STATE(4404)] = 162274, + [SMALL_STATE(4405)] = 162291, + [SMALL_STATE(4406)] = 162308, + [SMALL_STATE(4407)] = 162325, + [SMALL_STATE(4408)] = 162342, + [SMALL_STATE(4409)] = 162359, + [SMALL_STATE(4410)] = 162376, + [SMALL_STATE(4411)] = 162393, + [SMALL_STATE(4412)] = 162410, + [SMALL_STATE(4413)] = 162427, + [SMALL_STATE(4414)] = 162444, + [SMALL_STATE(4415)] = 162461, + [SMALL_STATE(4416)] = 162478, + [SMALL_STATE(4417)] = 162495, + [SMALL_STATE(4418)] = 162512, + [SMALL_STATE(4419)] = 162529, + [SMALL_STATE(4420)] = 162546, + [SMALL_STATE(4421)] = 162563, + [SMALL_STATE(4422)] = 162580, + [SMALL_STATE(4423)] = 162597, + [SMALL_STATE(4424)] = 162614, + [SMALL_STATE(4425)] = 162631, + [SMALL_STATE(4426)] = 162648, + [SMALL_STATE(4427)] = 162665, + [SMALL_STATE(4428)] = 162682, + [SMALL_STATE(4429)] = 162699, + [SMALL_STATE(4430)] = 162716, + [SMALL_STATE(4431)] = 162733, + [SMALL_STATE(4432)] = 162750, + [SMALL_STATE(4433)] = 162767, + [SMALL_STATE(4434)] = 162784, + [SMALL_STATE(4435)] = 162801, + [SMALL_STATE(4436)] = 162818, + [SMALL_STATE(4437)] = 162835, + [SMALL_STATE(4438)] = 162852, + [SMALL_STATE(4439)] = 162869, + [SMALL_STATE(4440)] = 162886, + [SMALL_STATE(4441)] = 162903, + [SMALL_STATE(4442)] = 162920, + [SMALL_STATE(4443)] = 162935, + [SMALL_STATE(4444)] = 162952, + [SMALL_STATE(4445)] = 162969, + [SMALL_STATE(4446)] = 162986, + [SMALL_STATE(4447)] = 163003, + [SMALL_STATE(4448)] = 163020, + [SMALL_STATE(4449)] = 163037, + [SMALL_STATE(4450)] = 163054, + [SMALL_STATE(4451)] = 163071, + [SMALL_STATE(4452)] = 163088, + [SMALL_STATE(4453)] = 163105, + [SMALL_STATE(4454)] = 163122, + [SMALL_STATE(4455)] = 163139, + [SMALL_STATE(4456)] = 163156, + [SMALL_STATE(4457)] = 163173, + [SMALL_STATE(4458)] = 163190, + [SMALL_STATE(4459)] = 163207, + [SMALL_STATE(4460)] = 163224, + [SMALL_STATE(4461)] = 163241, + [SMALL_STATE(4462)] = 163258, + [SMALL_STATE(4463)] = 163275, + [SMALL_STATE(4464)] = 163292, + [SMALL_STATE(4465)] = 163309, + [SMALL_STATE(4466)] = 163326, + [SMALL_STATE(4467)] = 163343, + [SMALL_STATE(4468)] = 163360, + [SMALL_STATE(4469)] = 163377, + [SMALL_STATE(4470)] = 163394, + [SMALL_STATE(4471)] = 163411, + [SMALL_STATE(4472)] = 163428, + [SMALL_STATE(4473)] = 163445, + [SMALL_STATE(4474)] = 163462, + [SMALL_STATE(4475)] = 163479, + [SMALL_STATE(4476)] = 163496, + [SMALL_STATE(4477)] = 163513, + [SMALL_STATE(4478)] = 163530, + [SMALL_STATE(4479)] = 163547, + [SMALL_STATE(4480)] = 163564, + [SMALL_STATE(4481)] = 163581, + [SMALL_STATE(4482)] = 163598, + [SMALL_STATE(4483)] = 163615, + [SMALL_STATE(4484)] = 163632, + [SMALL_STATE(4485)] = 163649, + [SMALL_STATE(4486)] = 163666, + [SMALL_STATE(4487)] = 163683, + [SMALL_STATE(4488)] = 163700, + [SMALL_STATE(4489)] = 163717, + [SMALL_STATE(4490)] = 163734, + [SMALL_STATE(4491)] = 163751, + [SMALL_STATE(4492)] = 163768, + [SMALL_STATE(4493)] = 163785, + [SMALL_STATE(4494)] = 163802, + [SMALL_STATE(4495)] = 163819, + [SMALL_STATE(4496)] = 163836, + [SMALL_STATE(4497)] = 163853, + [SMALL_STATE(4498)] = 163870, + [SMALL_STATE(4499)] = 163887, + [SMALL_STATE(4500)] = 163904, + [SMALL_STATE(4501)] = 163921, + [SMALL_STATE(4502)] = 163938, + [SMALL_STATE(4503)] = 163955, + [SMALL_STATE(4504)] = 163972, + [SMALL_STATE(4505)] = 163989, + [SMALL_STATE(4506)] = 164006, + [SMALL_STATE(4507)] = 164023, + [SMALL_STATE(4508)] = 164040, + [SMALL_STATE(4509)] = 164057, + [SMALL_STATE(4510)] = 164074, + [SMALL_STATE(4511)] = 164091, + [SMALL_STATE(4512)] = 164108, + [SMALL_STATE(4513)] = 164125, + [SMALL_STATE(4514)] = 164142, + [SMALL_STATE(4515)] = 164159, + [SMALL_STATE(4516)] = 164176, + [SMALL_STATE(4517)] = 164193, + [SMALL_STATE(4518)] = 164210, + [SMALL_STATE(4519)] = 164227, + [SMALL_STATE(4520)] = 164244, + [SMALL_STATE(4521)] = 164261, + [SMALL_STATE(4522)] = 164278, + [SMALL_STATE(4523)] = 164295, + [SMALL_STATE(4524)] = 164312, + [SMALL_STATE(4525)] = 164329, + [SMALL_STATE(4526)] = 164346, + [SMALL_STATE(4527)] = 164363, + [SMALL_STATE(4528)] = 164380, + [SMALL_STATE(4529)] = 164397, + [SMALL_STATE(4530)] = 164414, + [SMALL_STATE(4531)] = 164431, + [SMALL_STATE(4532)] = 164448, + [SMALL_STATE(4533)] = 164465, + [SMALL_STATE(4534)] = 164482, + [SMALL_STATE(4535)] = 164499, + [SMALL_STATE(4536)] = 164516, + [SMALL_STATE(4537)] = 164531, + [SMALL_STATE(4538)] = 164548, + [SMALL_STATE(4539)] = 164565, + [SMALL_STATE(4540)] = 164582, + [SMALL_STATE(4541)] = 164599, + [SMALL_STATE(4542)] = 164616, + [SMALL_STATE(4543)] = 164633, + [SMALL_STATE(4544)] = 164650, + [SMALL_STATE(4545)] = 164667, + [SMALL_STATE(4546)] = 164684, + [SMALL_STATE(4547)] = 164701, + [SMALL_STATE(4548)] = 164718, + [SMALL_STATE(4549)] = 164735, + [SMALL_STATE(4550)] = 164752, + [SMALL_STATE(4551)] = 164769, + [SMALL_STATE(4552)] = 164786, + [SMALL_STATE(4553)] = 164803, + [SMALL_STATE(4554)] = 164820, + [SMALL_STATE(4555)] = 164837, + [SMALL_STATE(4556)] = 164854, + [SMALL_STATE(4557)] = 164871, + [SMALL_STATE(4558)] = 164888, + [SMALL_STATE(4559)] = 164905, + [SMALL_STATE(4560)] = 164922, + [SMALL_STATE(4561)] = 164939, + [SMALL_STATE(4562)] = 164956, + [SMALL_STATE(4563)] = 164973, + [SMALL_STATE(4564)] = 164990, + [SMALL_STATE(4565)] = 165007, + [SMALL_STATE(4566)] = 165024, + [SMALL_STATE(4567)] = 165041, + [SMALL_STATE(4568)] = 165058, + [SMALL_STATE(4569)] = 165075, + [SMALL_STATE(4570)] = 165092, + [SMALL_STATE(4571)] = 165109, + [SMALL_STATE(4572)] = 165126, + [SMALL_STATE(4573)] = 165143, + [SMALL_STATE(4574)] = 165160, + [SMALL_STATE(4575)] = 165177, + [SMALL_STATE(4576)] = 165194, + [SMALL_STATE(4577)] = 165211, + [SMALL_STATE(4578)] = 165228, + [SMALL_STATE(4579)] = 165245, + [SMALL_STATE(4580)] = 165262, + [SMALL_STATE(4581)] = 165279, + [SMALL_STATE(4582)] = 165296, + [SMALL_STATE(4583)] = 165313, + [SMALL_STATE(4584)] = 165330, + [SMALL_STATE(4585)] = 165347, + [SMALL_STATE(4586)] = 165364, + [SMALL_STATE(4587)] = 165381, + [SMALL_STATE(4588)] = 165398, + [SMALL_STATE(4589)] = 165415, + [SMALL_STATE(4590)] = 165432, + [SMALL_STATE(4591)] = 165449, + [SMALL_STATE(4592)] = 165466, + [SMALL_STATE(4593)] = 165483, + [SMALL_STATE(4594)] = 165500, + [SMALL_STATE(4595)] = 165517, + [SMALL_STATE(4596)] = 165534, + [SMALL_STATE(4597)] = 165551, + [SMALL_STATE(4598)] = 165568, + [SMALL_STATE(4599)] = 165585, + [SMALL_STATE(4600)] = 165602, + [SMALL_STATE(4601)] = 165619, + [SMALL_STATE(4602)] = 165636, + [SMALL_STATE(4603)] = 165653, + [SMALL_STATE(4604)] = 165670, + [SMALL_STATE(4605)] = 165687, + [SMALL_STATE(4606)] = 165704, + [SMALL_STATE(4607)] = 165721, + [SMALL_STATE(4608)] = 165738, + [SMALL_STATE(4609)] = 165755, + [SMALL_STATE(4610)] = 165772, + [SMALL_STATE(4611)] = 165789, + [SMALL_STATE(4612)] = 165806, + [SMALL_STATE(4613)] = 165823, + [SMALL_STATE(4614)] = 165840, + [SMALL_STATE(4615)] = 165857, + [SMALL_STATE(4616)] = 165874, + [SMALL_STATE(4617)] = 165891, + [SMALL_STATE(4618)] = 165908, + [SMALL_STATE(4619)] = 165925, + [SMALL_STATE(4620)] = 165942, + [SMALL_STATE(4621)] = 165959, + [SMALL_STATE(4622)] = 165976, + [SMALL_STATE(4623)] = 165993, + [SMALL_STATE(4624)] = 166010, + [SMALL_STATE(4625)] = 166027, + [SMALL_STATE(4626)] = 166044, + [SMALL_STATE(4627)] = 166061, + [SMALL_STATE(4628)] = 166078, + [SMALL_STATE(4629)] = 166095, + [SMALL_STATE(4630)] = 166112, + [SMALL_STATE(4631)] = 166129, + [SMALL_STATE(4632)] = 166146, + [SMALL_STATE(4633)] = 166163, + [SMALL_STATE(4634)] = 166180, + [SMALL_STATE(4635)] = 166197, + [SMALL_STATE(4636)] = 166214, + [SMALL_STATE(4637)] = 166231, + [SMALL_STATE(4638)] = 166248, + [SMALL_STATE(4639)] = 166265, + [SMALL_STATE(4640)] = 166282, + [SMALL_STATE(4641)] = 166299, + [SMALL_STATE(4642)] = 166316, + [SMALL_STATE(4643)] = 166333, + [SMALL_STATE(4644)] = 166350, + [SMALL_STATE(4645)] = 166367, + [SMALL_STATE(4646)] = 166384, + [SMALL_STATE(4647)] = 166401, + [SMALL_STATE(4648)] = 166418, + [SMALL_STATE(4649)] = 166435, + [SMALL_STATE(4650)] = 166452, + [SMALL_STATE(4651)] = 166469, + [SMALL_STATE(4652)] = 166486, + [SMALL_STATE(4653)] = 166503, + [SMALL_STATE(4654)] = 166520, + [SMALL_STATE(4655)] = 166537, + [SMALL_STATE(4656)] = 166554, + [SMALL_STATE(4657)] = 166571, + [SMALL_STATE(4658)] = 166588, + [SMALL_STATE(4659)] = 166605, + [SMALL_STATE(4660)] = 166622, + [SMALL_STATE(4661)] = 166639, + [SMALL_STATE(4662)] = 166656, + [SMALL_STATE(4663)] = 166673, + [SMALL_STATE(4664)] = 166690, + [SMALL_STATE(4665)] = 166707, + [SMALL_STATE(4666)] = 166724, + [SMALL_STATE(4667)] = 166741, + [SMALL_STATE(4668)] = 166758, + [SMALL_STATE(4669)] = 166775, + [SMALL_STATE(4670)] = 166792, + [SMALL_STATE(4671)] = 166809, + [SMALL_STATE(4672)] = 166826, + [SMALL_STATE(4673)] = 166843, + [SMALL_STATE(4674)] = 166860, + [SMALL_STATE(4675)] = 166877, + [SMALL_STATE(4676)] = 166894, + [SMALL_STATE(4677)] = 166911, + [SMALL_STATE(4678)] = 166928, + [SMALL_STATE(4679)] = 166945, + [SMALL_STATE(4680)] = 166962, + [SMALL_STATE(4681)] = 166979, + [SMALL_STATE(4682)] = 166996, + [SMALL_STATE(4683)] = 167013, + [SMALL_STATE(4684)] = 167030, + [SMALL_STATE(4685)] = 167047, + [SMALL_STATE(4686)] = 167064, + [SMALL_STATE(4687)] = 167081, + [SMALL_STATE(4688)] = 167098, + [SMALL_STATE(4689)] = 167115, + [SMALL_STATE(4690)] = 167132, + [SMALL_STATE(4691)] = 167149, + [SMALL_STATE(4692)] = 167166, + [SMALL_STATE(4693)] = 167183, + [SMALL_STATE(4694)] = 167200, + [SMALL_STATE(4695)] = 167217, + [SMALL_STATE(4696)] = 167234, + [SMALL_STATE(4697)] = 167251, + [SMALL_STATE(4698)] = 167268, + [SMALL_STATE(4699)] = 167285, + [SMALL_STATE(4700)] = 167302, + [SMALL_STATE(4701)] = 167319, + [SMALL_STATE(4702)] = 167336, + [SMALL_STATE(4703)] = 167353, + [SMALL_STATE(4704)] = 167370, + [SMALL_STATE(4705)] = 167387, + [SMALL_STATE(4706)] = 167404, + [SMALL_STATE(4707)] = 167421, + [SMALL_STATE(4708)] = 167438, + [SMALL_STATE(4709)] = 167455, + [SMALL_STATE(4710)] = 167472, + [SMALL_STATE(4711)] = 167489, + [SMALL_STATE(4712)] = 167506, + [SMALL_STATE(4713)] = 167523, + [SMALL_STATE(4714)] = 167540, + [SMALL_STATE(4715)] = 167557, + [SMALL_STATE(4716)] = 167574, + [SMALL_STATE(4717)] = 167591, + [SMALL_STATE(4718)] = 167608, + [SMALL_STATE(4719)] = 167625, + [SMALL_STATE(4720)] = 167642, + [SMALL_STATE(4721)] = 167659, + [SMALL_STATE(4722)] = 167676, + [SMALL_STATE(4723)] = 167693, + [SMALL_STATE(4724)] = 167710, + [SMALL_STATE(4725)] = 167727, + [SMALL_STATE(4726)] = 167744, + [SMALL_STATE(4727)] = 167761, + [SMALL_STATE(4728)] = 167778, + [SMALL_STATE(4729)] = 167795, + [SMALL_STATE(4730)] = 167812, + [SMALL_STATE(4731)] = 167829, + [SMALL_STATE(4732)] = 167846, + [SMALL_STATE(4733)] = 167863, + [SMALL_STATE(4734)] = 167880, + [SMALL_STATE(4735)] = 167897, + [SMALL_STATE(4736)] = 167914, + [SMALL_STATE(4737)] = 167931, + [SMALL_STATE(4738)] = 167948, + [SMALL_STATE(4739)] = 167965, + [SMALL_STATE(4740)] = 167982, + [SMALL_STATE(4741)] = 167999, + [SMALL_STATE(4742)] = 168016, + [SMALL_STATE(4743)] = 168033, + [SMALL_STATE(4744)] = 168050, + [SMALL_STATE(4745)] = 168067, + [SMALL_STATE(4746)] = 168084, + [SMALL_STATE(4747)] = 168101, + [SMALL_STATE(4748)] = 168118, + [SMALL_STATE(4749)] = 168135, + [SMALL_STATE(4750)] = 168152, + [SMALL_STATE(4751)] = 168169, + [SMALL_STATE(4752)] = 168186, + [SMALL_STATE(4753)] = 168203, + [SMALL_STATE(4754)] = 168220, + [SMALL_STATE(4755)] = 168237, + [SMALL_STATE(4756)] = 168254, + [SMALL_STATE(4757)] = 168271, + [SMALL_STATE(4758)] = 168288, + [SMALL_STATE(4759)] = 168305, + [SMALL_STATE(4760)] = 168322, + [SMALL_STATE(4761)] = 168339, + [SMALL_STATE(4762)] = 168356, + [SMALL_STATE(4763)] = 168373, + [SMALL_STATE(4764)] = 168390, + [SMALL_STATE(4765)] = 168407, + [SMALL_STATE(4766)] = 168424, + [SMALL_STATE(4767)] = 168441, + [SMALL_STATE(4768)] = 168458, + [SMALL_STATE(4769)] = 168475, + [SMALL_STATE(4770)] = 168492, + [SMALL_STATE(4771)] = 168509, + [SMALL_STATE(4772)] = 168526, + [SMALL_STATE(4773)] = 168543, + [SMALL_STATE(4774)] = 168560, + [SMALL_STATE(4775)] = 168577, + [SMALL_STATE(4776)] = 168594, + [SMALL_STATE(4777)] = 168611, + [SMALL_STATE(4778)] = 168628, + [SMALL_STATE(4779)] = 168645, + [SMALL_STATE(4780)] = 168662, + [SMALL_STATE(4781)] = 168679, + [SMALL_STATE(4782)] = 168696, + [SMALL_STATE(4783)] = 168713, + [SMALL_STATE(4784)] = 168730, + [SMALL_STATE(4785)] = 168747, + [SMALL_STATE(4786)] = 168764, + [SMALL_STATE(4787)] = 168781, + [SMALL_STATE(4788)] = 168798, + [SMALL_STATE(4789)] = 168815, + [SMALL_STATE(4790)] = 168832, + [SMALL_STATE(4791)] = 168849, + [SMALL_STATE(4792)] = 168866, + [SMALL_STATE(4793)] = 168883, + [SMALL_STATE(4794)] = 168900, + [SMALL_STATE(4795)] = 168917, + [SMALL_STATE(4796)] = 168934, + [SMALL_STATE(4797)] = 168951, + [SMALL_STATE(4798)] = 168968, + [SMALL_STATE(4799)] = 168985, + [SMALL_STATE(4800)] = 169002, + [SMALL_STATE(4801)] = 169017, + [SMALL_STATE(4802)] = 169034, + [SMALL_STATE(4803)] = 169051, + [SMALL_STATE(4804)] = 169068, + [SMALL_STATE(4805)] = 169085, + [SMALL_STATE(4806)] = 169102, + [SMALL_STATE(4807)] = 169119, + [SMALL_STATE(4808)] = 169136, + [SMALL_STATE(4809)] = 169153, + [SMALL_STATE(4810)] = 169170, + [SMALL_STATE(4811)] = 169187, + [SMALL_STATE(4812)] = 169204, + [SMALL_STATE(4813)] = 169221, + [SMALL_STATE(4814)] = 169238, + [SMALL_STATE(4815)] = 169255, + [SMALL_STATE(4816)] = 169272, + [SMALL_STATE(4817)] = 169289, + [SMALL_STATE(4818)] = 169306, + [SMALL_STATE(4819)] = 169323, + [SMALL_STATE(4820)] = 169340, + [SMALL_STATE(4821)] = 169357, + [SMALL_STATE(4822)] = 169374, + [SMALL_STATE(4823)] = 169391, + [SMALL_STATE(4824)] = 169408, + [SMALL_STATE(4825)] = 169425, + [SMALL_STATE(4826)] = 169442, + [SMALL_STATE(4827)] = 169459, + [SMALL_STATE(4828)] = 169463, + [SMALL_STATE(4829)] = 169467, + [SMALL_STATE(4830)] = 169471, + [SMALL_STATE(4831)] = 169475, }; 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(4671), - [5] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4650), - [7] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3060), + [3] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4753), + [5] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4731), + [7] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3178), [9] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_source_code, 0), - [11] = {.entry = {.count = 1, .reusable = false}}, SHIFT(299), - [13] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3052), - [15] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2449), - [17] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1612), - [19] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1701), - [21] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3061), - [23] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3043), - [25] = {.entry = {.count = 1, .reusable = false}}, SHIFT(505), - [27] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1952), - [29] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4744), - [31] = {.entry = {.count = 1, .reusable = false}}, SHIFT(345), - [33] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4743), - [35] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2510), - [37] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3564), - [39] = {.entry = {.count = 1, .reusable = false}}, SHIFT(468), - [41] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3565), - [43] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1831), - [45] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4740), - [47] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2387), - [49] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2398), - [51] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4739), - [53] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4738), - [55] = {.entry = {.count = 1, .reusable = false}}, SHIFT(367), - [57] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3566), - [59] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4671), - [61] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4650), - [63] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unary_minus_expressions, 1), - [65] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3060), - [67] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unary_minus_expressions, 1), - [69] = {.entry = {.count = 1, .reusable = true}}, SHIFT(320), - [71] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3878), - [73] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4287), - [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(sym_object_access, 2, .production_id = 2), - [81] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_access, 2, .production_id = 2), - [83] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_input_expression, 4, .production_id = 13), - [85] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_input_expression, 4, .production_id = 13), - [87] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_input_expression, 2, .production_id = 7), - [89] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_input_expression, 2, .production_id = 7), - [91] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_qualified_name, 2), - [93] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_qualified_name, 2), - [95] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_object_access_repeat1, 2, .production_id = 8), - [97] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_object_access_repeat1, 2, .production_id = 8), - [99] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_object_access_repeat1, 2, .production_id = 8), SHIFT_REPEAT(4287), - [102] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_qualified_name_repeat1, 2), - [104] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_qualified_name_repeat1, 2), - [106] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_qualified_name_repeat1, 2), SHIFT_REPEAT(3878), + [11] = {.entry = {.count = 1, .reusable = false}}, SHIFT(306), + [13] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3080), + [15] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2577), + [17] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1599), + [19] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1721), + [21] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3179), + [23] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3102), + [25] = {.entry = {.count = 1, .reusable = false}}, SHIFT(421), + [27] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1883), + [29] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4825), + [31] = {.entry = {.count = 1, .reusable = false}}, SHIFT(347), + [33] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4824), + [35] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2435), + [37] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3657), + [39] = {.entry = {.count = 1, .reusable = false}}, SHIFT(451), + [41] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3658), + [43] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1835), + [45] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4821), + [47] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2418), + [49] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2443), + [51] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4820), + [53] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4819), + [55] = {.entry = {.count = 1, .reusable = false}}, SHIFT(393), + [57] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3659), + [59] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4753), + [61] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4731), + [63] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expression, 1), + [65] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3178), + [67] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expression, 1), + [69] = {.entry = {.count = 1, .reusable = true}}, SHIFT(328), + [71] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4090), + [73] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4264), + [75] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unary_minus_expressions, 1), + [77] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unary_minus_expressions, 1), + [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(4264), + [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(4090), + [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(4258), + [113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4523), [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_double_quoted_string, 3), - [121] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_double_quoted_string, 3), - [123] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constant, 3), - [125] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constant, 3), - [127] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_call, 5, .production_id = 6), - [129] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_call, 5, .production_id = 6), - [131] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_call, 3, .production_id = 6), - [133] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_call, 3, .production_id = 6), - [135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(41), - [137] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_single_quoted_string, 2), - [139] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_single_quoted_string, 2), - [141] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_double_quoted_string, 2), - [143] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_double_quoted_string, 2), - [145] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__string_literal, 1), - [147] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__string_literal, 1), - [149] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_new_expression, 6), - [151] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_new_expression, 6), - [153] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_can_find_expression, 6, .production_id = 23), - [155] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_can_find_expression, 6, .production_id = 23), - [157] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_expression, 3), - [159] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_expression, 3), - [161] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_can_find_expression, 7, .production_id = 36), - [163] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_can_find_expression, 7, .production_id = 36), - [165] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_can_find_expression, 6, .production_id = 36), - [167] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_can_find_expression, 6, .production_id = 36), - [169] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_can_find_expression, 6, .production_id = 24), - [171] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_can_find_expression, 6, .production_id = 24), - [173] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_can_find_expression, 4, .production_id = 14), - [175] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_can_find_expression, 4, .production_id = 14), - [177] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_boolean_literal, 1), - [179] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_boolean_literal, 1), - [181] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__decimal_literal, 3), - [183] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__decimal_literal, 3), - [185] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_can_find_expression, 5, .production_id = 24), - [187] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_can_find_expression, 5, .production_id = 24), - [189] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constant, 4), - [191] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constant, 4), - [193] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_can_find_expression, 5, .production_id = 14), - [195] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_can_find_expression, 5, .production_id = 14), - [197] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_can_find_expression, 5, .production_id = 23), - [199] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_can_find_expression, 5, .production_id = 23), - [201] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__binary_expression, 1), - [203] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_expression, 1), - [205] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_new_expression, 5), - [207] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_new_expression, 5), - [209] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_available_expression, 2), - [211] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_available_expression, 2), - [213] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_call, 4, .production_id = 6), - [215] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_call, 4, .production_id = 6), - [217] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unary_expression, 2), - [219] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unary_expression, 2), - [221] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_single_quoted_string, 3), - [223] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_single_quoted_string, 3), - [225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(17), - [227] = {.entry = {.count = 1, .reusable = false}}, SHIFT(303), - [229] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3802), - [231] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2932), - [233] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2410), - [235] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1587), - [237] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1702), - [239] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3080), - [241] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2933), - [243] = {.entry = {.count = 1, .reusable = false}}, SHIFT(446), - [245] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1986), - [247] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4502), - [249] = {.entry = {.count = 1, .reusable = false}}, SHIFT(344), - [251] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4342), - [253] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2407), - [255] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3641), - [257] = {.entry = {.count = 1, .reusable = false}}, SHIFT(371), - [259] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3708), - [261] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1825), - [263] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4504), - [265] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2390), - [267] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2518), - [269] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4647), - [271] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4505), - [273] = {.entry = {.count = 1, .reusable = false}}, SHIFT(452), - [275] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3644), - [277] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3668), - [279] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3951), - [281] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3560), - [283] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1647), - [285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1647), - [287] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_logical_expression, 3), - [289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1645), - [291] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1642), - [293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1642), - [295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1648), - [297] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4349), - [299] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4553), - [301] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4357), - [303] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4449), - [305] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ternary_expression, 6, .production_id = 35), - [307] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_comparison_expression, 3), - [309] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_comparison_expression, 3), - [311] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4246), - [313] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_multiplicative_expression, 3), - [315] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_multiplicative_expression, 3), - [317] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_additive_expression, 3), - [319] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_additive_expression, 3), - [321] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_accumulate_expression, 3), - [323] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_locked_expression, 2), - [325] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_current_changed_expression, 2), - [327] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ambiguous_expression, 2), - [329] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4558), - [331] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4712), - [333] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3692), - [335] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3603), - [337] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3697), - [339] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3803), - [341] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3756), - [343] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3754), - [345] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3739), - [347] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4638), - [349] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3958), - [351] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3983), - [353] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3), - [355] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3336), - [357] = {.entry = {.count = 1, .reusable = false}}, SHIFT(13), - [359] = {.entry = {.count = 1, .reusable = false}}, SHIFT(30), - [361] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10), - [363] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2954), - [365] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2953), - [367] = {.entry = {.count = 1, .reusable = false}}, SHIFT(449), - [369] = {.entry = {.count = 1, .reusable = false}}, SHIFT(18), - [371] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2159), - [373] = {.entry = {.count = 1, .reusable = false}}, SHIFT(425), - [375] = {.entry = {.count = 1, .reusable = false}}, SHIFT(437), - [377] = {.entry = {.count = 1, .reusable = false}}, SHIFT(438), - [379] = {.entry = {.count = 1, .reusable = false}}, SHIFT(444), - [381] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3085), - [383] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3705), - [385] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4617), - [387] = {.entry = {.count = 1, .reusable = false}}, SHIFT(380), - [389] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4507), - [391] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3652), - [393] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2102), - [395] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3276), - [397] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4039), - [399] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3639), - [401] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3885), - [403] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4046), - [405] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4023), - [407] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3643), - [409] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4685), - [411] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3701), - [413] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3820), - [415] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3684), - [417] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4022), - [419] = {.entry = {.count = 1, .reusable = false}}, SHIFT(32), - [421] = {.entry = {.count = 1, .reusable = false}}, SHIFT(382), - [423] = {.entry = {.count = 1, .reusable = false}}, SHIFT(384), - [425] = {.entry = {.count = 1, .reusable = false}}, SHIFT(386), - [427] = {.entry = {.count = 1, .reusable = false}}, SHIFT(387), - [429] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3341), - [431] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3623), - [433] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1851), - [435] = {.entry = {.count = 1, .reusable = false}}, SHIFT(407), - [437] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3850), - [439] = {.entry = {.count = 1, .reusable = false}}, SHIFT(417), - [441] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4489), - [443] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3724), - [445] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2114), - [447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3699), - [449] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_source_code_repeat1, 2), - [451] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_code_repeat1, 2), SHIFT_REPEAT(299), - [454] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_code_repeat1, 2), SHIFT_REPEAT(3052), - [457] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_code_repeat1, 2), SHIFT_REPEAT(2449), - [460] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_code_repeat1, 2), SHIFT_REPEAT(1612), - [463] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_code_repeat1, 2), SHIFT_REPEAT(1701), - [466] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_code_repeat1, 2), SHIFT_REPEAT(3061), - [469] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_code_repeat1, 2), SHIFT_REPEAT(3043), - [472] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_code_repeat1, 2), SHIFT_REPEAT(505), - [475] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_code_repeat1, 2), SHIFT_REPEAT(1952), - [478] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_code_repeat1, 2), SHIFT_REPEAT(4744), - [481] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_code_repeat1, 2), SHIFT_REPEAT(345), - [484] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_code_repeat1, 2), SHIFT_REPEAT(4743), - [487] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_code_repeat1, 2), SHIFT_REPEAT(2510), - [490] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_code_repeat1, 2), SHIFT_REPEAT(3564), - [493] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_code_repeat1, 2), SHIFT_REPEAT(468), - [496] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_code_repeat1, 2), SHIFT_REPEAT(3565), - [499] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_code_repeat1, 2), SHIFT_REPEAT(1831), - [502] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_code_repeat1, 2), SHIFT_REPEAT(4740), - [505] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_code_repeat1, 2), SHIFT_REPEAT(2387), - [508] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_code_repeat1, 2), SHIFT_REPEAT(2398), - [511] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_code_repeat1, 2), SHIFT_REPEAT(4739), - [514] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_code_repeat1, 2), SHIFT_REPEAT(4738), - [517] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_code_repeat1, 2), SHIFT_REPEAT(367), - [520] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_code_repeat1, 2), SHIFT_REPEAT(3566), - [523] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_source_code, 1), - [525] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1557), - [527] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1627), - [529] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1623), - [531] = {.entry = {.count = 1, .reusable = false}}, SHIFT(764), - [533] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1243), - [535] = {.entry = {.count = 1, .reusable = false}}, SHIFT(672), - [537] = {.entry = {.count = 1, .reusable = false}}, SHIFT(590), - [539] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_code_repeat1, 2), SHIFT_REPEAT(303), - [542] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_source_code_repeat1, 2), - [544] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_code_repeat1, 2), SHIFT_REPEAT(2932), - [547] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_code_repeat1, 2), SHIFT_REPEAT(2410), - [550] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_code_repeat1, 2), SHIFT_REPEAT(1587), - [553] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_code_repeat1, 2), SHIFT_REPEAT(1702), - [556] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_code_repeat1, 2), SHIFT_REPEAT(3080), - [559] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_code_repeat1, 2), SHIFT_REPEAT(2933), - [562] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_code_repeat1, 2), SHIFT_REPEAT(446), - [565] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_code_repeat1, 2), SHIFT_REPEAT(1986), - [568] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_code_repeat1, 2), SHIFT_REPEAT(4502), - [571] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_code_repeat1, 2), SHIFT_REPEAT(344), - [574] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_code_repeat1, 2), SHIFT_REPEAT(4342), - [577] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_code_repeat1, 2), SHIFT_REPEAT(2407), - [580] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_code_repeat1, 2), SHIFT_REPEAT(3641), - [583] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_code_repeat1, 2), SHIFT_REPEAT(371), - [586] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_code_repeat1, 2), SHIFT_REPEAT(3708), - [589] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_code_repeat1, 2), SHIFT_REPEAT(1825), - [592] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_code_repeat1, 2), SHIFT_REPEAT(4504), - [595] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_code_repeat1, 2), SHIFT_REPEAT(2390), - [598] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_code_repeat1, 2), SHIFT_REPEAT(2518), - [601] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_code_repeat1, 2), SHIFT_REPEAT(4647), - [604] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_code_repeat1, 2), SHIFT_REPEAT(4505), - [607] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_code_repeat1, 2), SHIFT_REPEAT(452), - [610] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_code_repeat1, 2), SHIFT_REPEAT(3644), - [613] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_body, 1), - [615] = {.entry = {.count = 1, .reusable = false}}, SHIFT(585), - [617] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1571), - [619] = {.entry = {.count = 1, .reusable = false}}, SHIFT(29), - [621] = {.entry = {.count = 1, .reusable = false}}, SHIFT(750), - [623] = {.entry = {.count = 1, .reusable = false}}, SHIFT(716), - [625] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1272), - [627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(23), - [629] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_new_expression, 4), - [631] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_new_expression, 4), - [633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(39), + [119] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_can_find_expression, 5, .production_id = 14), + [121] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_can_find_expression, 5, .production_id = 14), + [123] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unary_expression, 2), + [125] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unary_expression, 2), + [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(38), + [133] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_single_quoted_string, 2), + [135] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_single_quoted_string, 2), + [137] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_double_quoted_string, 2), + [139] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_double_quoted_string, 2), + [141] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__string_literal, 1), + [143] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__string_literal, 1), + [145] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constant, 4), + [147] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constant, 4), + [149] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_boolean_literal, 1), + [151] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_boolean_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(32), + [159] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__binary_expression, 1), + [161] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_expression, 1), + [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 = 24), + [169] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_can_find_expression, 6, .production_id = 24), + [171] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_can_find_expression, 6, .production_id = 36), + [173] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_can_find_expression, 6, .production_id = 36), + [175] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_can_find_expression, 6, .production_id = 23), + [177] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_can_find_expression, 6, .production_id = 23), + [179] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_new_expression, 6), + [181] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_new_expression, 6), + [183] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_can_find_expression, 5, .production_id = 24), + [185] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_can_find_expression, 5, .production_id = 24), + [187] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_call, 5, .production_id = 6), + [189] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_call, 5, .production_id = 6), + [191] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_can_find_expression, 5, .production_id = 23), + [193] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_can_find_expression, 5, .production_id = 23), + [195] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_new_expression, 5), + [197] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_new_expression, 5), + [199] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_can_find_expression, 4, .production_id = 14), + [201] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_can_find_expression, 4, .production_id = 14), + [203] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_double_quoted_string, 3), + [205] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_double_quoted_string, 3), + [207] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constant, 3), + [209] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constant, 3), + [211] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_single_quoted_string, 3), + [213] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_single_quoted_string, 3), + [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}}, REDUCE(sym__decimal_literal, 3), + [221] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__decimal_literal, 3), + [223] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_available_expression, 2), + [225] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_available_expression, 2), + [227] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1650), + [229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1650), + [231] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_accumulate_expression, 3), + [233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1651), + [235] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1654), + [237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1654), + [239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1649), + [241] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_locked_expression, 2), + [243] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_current_changed_expression, 2), + [245] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ambiguous_expression, 2), + [247] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_logical_expression, 3), + [249] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_additive_expression, 3), + [251] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_additive_expression, 3), + [253] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_multiplicative_expression, 3), + [255] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_multiplicative_expression, 3), + [257] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_comparison_expression, 3), + [259] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_comparison_expression, 3), + [261] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ternary_expression, 6, .production_id = 35), + [263] = {.entry = {.count = 1, .reusable = false}}, SHIFT(304), + [265] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3716), + [267] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3112), + [269] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2506), + [271] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1596), + [273] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1739), + [275] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3196), + [277] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3109), + [279] = {.entry = {.count = 1, .reusable = false}}, SHIFT(508), + [281] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1897), + [283] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4579), + [285] = {.entry = {.count = 1, .reusable = false}}, SHIFT(351), + [287] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4437), + [289] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2503), + [291] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3682), + [293] = {.entry = {.count = 1, .reusable = false}}, SHIFT(502), + [295] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3799), + [297] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1847), + [299] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4581), + [301] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2389), + [303] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2579), + [305] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4728), + [307] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4582), + [309] = {.entry = {.count = 1, .reusable = false}}, SHIFT(366), + [311] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3685), + [313] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3744), + [315] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3892), + [317] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4103), + [319] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4262), + [321] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4779), + [323] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4305), + [325] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4632), + [327] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4514), + [329] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3989), + [331] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4112), + [333] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4054), + [335] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4172), + [337] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2), + [339] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3457), + [341] = {.entry = {.count = 1, .reusable = false}}, SHIFT(20), + [343] = {.entry = {.count = 1, .reusable = false}}, SHIFT(21), + [345] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10), + [347] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3057), + [349] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3056), + [351] = {.entry = {.count = 1, .reusable = false}}, SHIFT(365), + [353] = {.entry = {.count = 1, .reusable = false}}, SHIFT(15), + [355] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2181), + [357] = {.entry = {.count = 1, .reusable = false}}, SHIFT(497), + [359] = {.entry = {.count = 1, .reusable = false}}, SHIFT(498), + [361] = {.entry = {.count = 1, .reusable = false}}, SHIFT(511), + [363] = {.entry = {.count = 1, .reusable = false}}, SHIFT(512), + [365] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3201), + [367] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3796), + [369] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4698), + [371] = {.entry = {.count = 1, .reusable = false}}, SHIFT(494), + [373] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4584), + [375] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3745), + [377] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2086), + [379] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3509), + [381] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3790), + [383] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4105), + [385] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4567), + [387] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3825), + [389] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3834), + [391] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4528), + [393] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4634), + [395] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3886), + [397] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3864), + [399] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4620), + [401] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3872), + [403] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3874), + [405] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3881), + [407] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4047), + [409] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3925), + [411] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3931), + [413] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3885), + [415] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3975), + [417] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3813), + [419] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_source_code, 1), + [421] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1628), + [423] = {.entry = {.count = 1, .reusable = false}}, SHIFT(486), + [425] = {.entry = {.count = 1, .reusable = false}}, SHIFT(484), + [427] = {.entry = {.count = 1, .reusable = false}}, SHIFT(480), + [429] = {.entry = {.count = 1, .reusable = false}}, SHIFT(452), + [431] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3510), + [433] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3715), + [435] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1858), + [437] = {.entry = {.count = 1, .reusable = false}}, SHIFT(496), + [439] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3937), + [441] = {.entry = {.count = 1, .reusable = false}}, SHIFT(475), + [443] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4504), + [445] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3807), + [447] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2033), + [449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3739), + [451] = {.entry = {.count = 1, .reusable = false}}, SHIFT(707), + [453] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_code_repeat1, 2), SHIFT_REPEAT(304), + [456] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_source_code_repeat1, 2), + [458] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_code_repeat1, 2), SHIFT_REPEAT(3112), + [461] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_code_repeat1, 2), SHIFT_REPEAT(2506), + [464] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_code_repeat1, 2), SHIFT_REPEAT(1596), + [467] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_code_repeat1, 2), SHIFT_REPEAT(1739), + [470] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_code_repeat1, 2), SHIFT_REPEAT(3196), + [473] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_code_repeat1, 2), SHIFT_REPEAT(3109), + [476] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_code_repeat1, 2), SHIFT_REPEAT(508), + [479] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_code_repeat1, 2), SHIFT_REPEAT(1897), + [482] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_code_repeat1, 2), SHIFT_REPEAT(4579), + [485] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_code_repeat1, 2), SHIFT_REPEAT(351), + [488] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_code_repeat1, 2), SHIFT_REPEAT(4437), + [491] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_code_repeat1, 2), SHIFT_REPEAT(2503), + [494] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_code_repeat1, 2), SHIFT_REPEAT(3682), + [497] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_code_repeat1, 2), SHIFT_REPEAT(502), + [500] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_code_repeat1, 2), SHIFT_REPEAT(3799), + [503] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_code_repeat1, 2), SHIFT_REPEAT(1847), + [506] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_code_repeat1, 2), SHIFT_REPEAT(4581), + [509] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_code_repeat1, 2), SHIFT_REPEAT(2389), + [512] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_code_repeat1, 2), SHIFT_REPEAT(2579), + [515] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_code_repeat1, 2), SHIFT_REPEAT(4728), + [518] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_code_repeat1, 2), SHIFT_REPEAT(4582), + [521] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_code_repeat1, 2), SHIFT_REPEAT(366), + [524] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_code_repeat1, 2), SHIFT_REPEAT(3685), + [527] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_new_expression, 4), + [529] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_new_expression, 4), + [531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(34), + [533] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_source_code_repeat1, 2), + [535] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_code_repeat1, 2), SHIFT_REPEAT(306), + [538] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_code_repeat1, 2), SHIFT_REPEAT(3080), + [541] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_code_repeat1, 2), SHIFT_REPEAT(2577), + [544] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_code_repeat1, 2), SHIFT_REPEAT(1599), + [547] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_code_repeat1, 2), SHIFT_REPEAT(1721), + [550] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_code_repeat1, 2), SHIFT_REPEAT(3179), + [553] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_code_repeat1, 2), SHIFT_REPEAT(3102), + [556] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_code_repeat1, 2), SHIFT_REPEAT(421), + [559] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_code_repeat1, 2), SHIFT_REPEAT(1883), + [562] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_code_repeat1, 2), SHIFT_REPEAT(4825), + [565] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_code_repeat1, 2), SHIFT_REPEAT(347), + [568] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_code_repeat1, 2), SHIFT_REPEAT(4824), + [571] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_code_repeat1, 2), SHIFT_REPEAT(2435), + [574] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_code_repeat1, 2), SHIFT_REPEAT(3657), + [577] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_code_repeat1, 2), SHIFT_REPEAT(451), + [580] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_code_repeat1, 2), SHIFT_REPEAT(3658), + [583] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_code_repeat1, 2), SHIFT_REPEAT(1835), + [586] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_code_repeat1, 2), SHIFT_REPEAT(4821), + [589] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_code_repeat1, 2), SHIFT_REPEAT(2418), + [592] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_code_repeat1, 2), SHIFT_REPEAT(2443), + [595] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_code_repeat1, 2), SHIFT_REPEAT(4820), + [598] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_code_repeat1, 2), SHIFT_REPEAT(4819), + [601] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_code_repeat1, 2), SHIFT_REPEAT(393), + [604] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_code_repeat1, 2), SHIFT_REPEAT(3659), + [607] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1638), + [609] = {.entry = {.count = 1, .reusable = false}}, SHIFT(564), + [611] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1566), + [613] = {.entry = {.count = 1, .reusable = false}}, SHIFT(31), + [615] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1477), + [617] = {.entry = {.count = 1, .reusable = false}}, SHIFT(698), + [619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(30), + [621] = {.entry = {.count = 1, .reusable = false}}, SHIFT(594), + [623] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1299), + [625] = {.entry = {.count = 1, .reusable = false}}, SHIFT(35), + [627] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_body, 1), + [629] = {.entry = {.count = 1, .reusable = false}}, SHIFT(774), + [631] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1587), + [633] = {.entry = {.count = 1, .reusable = false}}, SHIFT(763), [635] = {.entry = {.count = 1, .reusable = false}}, SHIFT(528), - [637] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3541), - [639] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1215), - [641] = {.entry = {.count = 1, .reusable = false}}, SHIFT(561), - [643] = {.entry = {.count = 1, .reusable = false}}, SHIFT(563), - [645] = {.entry = {.count = 1, .reusable = false}}, SHIFT(546), - [647] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3014), - [649] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3013), - [651] = {.entry = {.count = 1, .reusable = false}}, SHIFT(306), - [653] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2206), - [655] = {.entry = {.count = 1, .reusable = false}}, SHIFT(353), - [657] = {.entry = {.count = 1, .reusable = false}}, SHIFT(374), - [659] = {.entry = {.count = 1, .reusable = false}}, SHIFT(394), - [661] = {.entry = {.count = 1, .reusable = false}}, SHIFT(403), - [663] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3067), - [665] = {.entry = {.count = 1, .reusable = false}}, SHIFT(420), - [667] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3575), - [669] = {.entry = {.count = 1, .reusable = false}}, SHIFT(485), - [671] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1218), - [673] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4705), - [675] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2129), - [677] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3068), - [679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3572), - [681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4711), - [683] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1132), - [685] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3519), - [687] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1003), - [689] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3508), - [691] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1540), - [693] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1525), - [695] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2069), - [697] = {.entry = {.count = 1, .reusable = false}}, SHIFT(735), - [699] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3621), - [701] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1598), - [703] = {.entry = {.count = 1, .reusable = false}}, SHIFT(756), - [705] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1574), - [707] = {.entry = {.count = 1, .reusable = false}}, SHIFT(284), - [709] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1315), - [711] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1264), - [713] = {.entry = {.count = 1, .reusable = false}}, SHIFT(549), - [715] = {.entry = {.count = 1, .reusable = false}}, SHIFT(999), - [717] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2308), - [719] = {.entry = {.count = 1, .reusable = false}}, SHIFT(552), - [721] = {.entry = {.count = 1, .reusable = false}}, SHIFT(644), - [723] = {.entry = {.count = 1, .reusable = false}}, SHIFT(738), - [725] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1128), - [727] = {.entry = {.count = 1, .reusable = false}}, SHIFT(648), - [729] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3714), - [731] = {.entry = {.count = 1, .reusable = false}}, SHIFT(301), - [733] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2990), - [735] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2544), - [737] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1700), - [739] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3071), - [741] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2985), - [743] = {.entry = {.count = 1, .reusable = false}}, SHIFT(470), - [745] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1961), - [747] = {.entry = {.count = 1, .reusable = false}}, SHIFT(343), - [749] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2491), - [751] = {.entry = {.count = 1, .reusable = false}}, SHIFT(475), - [753] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3673), - [755] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1832), - [757] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4547), - [759] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2364), - [761] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2439), - [763] = {.entry = {.count = 1, .reusable = false}}, SHIFT(477), - [765] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3869), - [767] = {.entry = {.count = 1, .reusable = false}}, SHIFT(302), - [769] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2964), - [771] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2399), - [773] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1718), - [775] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3065), - [777] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2965), - [779] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1993), - [781] = {.entry = {.count = 1, .reusable = false}}, SHIFT(342), - [783] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2395), - [785] = {.entry = {.count = 1, .reusable = false}}, SHIFT(349), - [787] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3627), - [789] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1827), - [791] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4612), - [793] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2375), - [795] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2487), - [797] = {.entry = {.count = 1, .reusable = false}}, SHIFT(385), - [799] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3881), - [801] = {.entry = {.count = 1, .reusable = false}}, SHIFT(300), - [803] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3044), - [805] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2426), - [807] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1711), - [809] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3069), - [811] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3042), - [813] = {.entry = {.count = 1, .reusable = false}}, SHIFT(518), - [815] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1956), - [817] = {.entry = {.count = 1, .reusable = false}}, SHIFT(341), - [819] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2424), - [821] = {.entry = {.count = 1, .reusable = false}}, SHIFT(433), - [823] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3649), - [825] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1824), - [827] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4580), - [829] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2362), - [831] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2460), - [833] = {.entry = {.count = 1, .reusable = false}}, SHIFT(516), - [835] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4072), - [837] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_abl_statement_repeat1, 2), SHIFT_REPEAT(528), - [840] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_abl_statement_repeat1, 2), SHIFT_REPEAT(3541), - [843] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_abl_statement_repeat1, 2), - [845] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_abl_statement_repeat1, 2), SHIFT_REPEAT(561), - [848] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_abl_statement_repeat1, 2), SHIFT_REPEAT(563), - [851] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_abl_statement_repeat1, 2), SHIFT_REPEAT(546), - [854] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_abl_statement_repeat1, 2), SHIFT_REPEAT(3014), - [857] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_abl_statement_repeat1, 2), SHIFT_REPEAT(3013), - [860] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_abl_statement_repeat1, 2), SHIFT_REPEAT(436), - [863] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_abl_statement_repeat1, 2), SHIFT_REPEAT(2206), - [866] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_abl_statement_repeat1, 2), SHIFT_REPEAT(353), - [869] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_abl_statement_repeat1, 2), SHIFT_REPEAT(374), - [872] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_abl_statement_repeat1, 2), SHIFT_REPEAT(394), - [875] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_abl_statement_repeat1, 2), SHIFT_REPEAT(403), - [878] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_abl_statement_repeat1, 2), SHIFT_REPEAT(3067), - [881] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_abl_statement_repeat1, 2), SHIFT_REPEAT(3575), - [884] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_abl_statement_repeat1, 2), SHIFT_REPEAT(485), - [887] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_abl_statement_repeat1, 2), SHIFT_REPEAT(4705), - [890] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_abl_statement_repeat1, 2), SHIFT_REPEAT(2129), - [893] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_abl_statement_repeat1, 2), SHIFT_REPEAT(3068), - [896] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_qualified_name_repeat1, 2), SHIFT_REPEAT(3572), - [899] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1422), - [901] = {.entry = {.count = 1, .reusable = false}}, SHIFT(436), - [903] = {.entry = {.count = 1, .reusable = false}}, SHIFT(927), - [905] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3501), - [907] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1390), - [909] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1087), - [911] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1115), - [913] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3507), - [915] = {.entry = {.count = 1, .reusable = false}}, SHIFT(900), - [917] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1491), - [919] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1298), - [921] = {.entry = {.count = 1, .reusable = false}}, SHIFT(773), - [923] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3178), - [925] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1396), - [927] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1395), - [929] = {.entry = {.count = 1, .reusable = false}}, SHIFT(896), - [931] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3023), - [933] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2989), - [935] = {.entry = {.count = 1, .reusable = false}}, SHIFT(369), - [937] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2172), - [939] = {.entry = {.count = 1, .reusable = false}}, SHIFT(348), - [941] = {.entry = {.count = 1, .reusable = false}}, SHIFT(454), - [943] = {.entry = {.count = 1, .reusable = false}}, SHIFT(460), - [945] = {.entry = {.count = 1, .reusable = false}}, SHIFT(461), - [947] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3174), - [949] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3671), - [951] = {.entry = {.count = 1, .reusable = false}}, SHIFT(500), - [953] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4549), - [955] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2067), - [957] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3172), - [959] = {.entry = {.count = 1, .reusable = false}}, SHIFT(814), - [961] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3110), - [963] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1602), - [965] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1601), - [967] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1558), - [969] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3021), - [971] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3022), - [973] = {.entry = {.count = 1, .reusable = false}}, SHIFT(376), - [975] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2187), - [977] = {.entry = {.count = 1, .reusable = false}}, SHIFT(360), - [979] = {.entry = {.count = 1, .reusable = false}}, SHIFT(357), - [981] = {.entry = {.count = 1, .reusable = false}}, SHIFT(355), - [983] = {.entry = {.count = 1, .reusable = false}}, SHIFT(354), - [985] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3102), - [987] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3610), - [989] = {.entry = {.count = 1, .reusable = false}}, SHIFT(481), - [991] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4582), - [993] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2126), - [995] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3104), - [997] = {.entry = {.count = 1, .reusable = false}}, SHIFT(778), - [999] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3105), - [1001] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1555), - [1003] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1554), - [1005] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1511), - [1007] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2926), - [1009] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2967), - [1011] = {.entry = {.count = 1, .reusable = false}}, SHIFT(395), - [1013] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2186), - [1015] = {.entry = {.count = 1, .reusable = false}}, SHIFT(389), - [1017] = {.entry = {.count = 1, .reusable = false}}, SHIFT(498), - [1019] = {.entry = {.count = 1, .reusable = false}}, SHIFT(402), - [1021] = {.entry = {.count = 1, .reusable = false}}, SHIFT(405), - [1023] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3555), - [1025] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3608), - [1027] = {.entry = {.count = 1, .reusable = false}}, SHIFT(388), - [1029] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4643), - [1031] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2128), - [1033] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3553), - [1035] = {.entry = {.count = 1, .reusable = false}}, SHIFT(604), - [1037] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3100), - [1039] = {.entry = {.count = 1, .reusable = false}}, SHIFT(689), - [1041] = {.entry = {.count = 1, .reusable = false}}, SHIFT(685), - [1043] = {.entry = {.count = 1, .reusable = false}}, SHIFT(659), - [1045] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2920), - [1047] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2924), - [1049] = {.entry = {.count = 1, .reusable = false}}, SHIFT(412), - [1051] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2177), - [1053] = {.entry = {.count = 1, .reusable = false}}, SHIFT(429), - [1055] = {.entry = {.count = 1, .reusable = false}}, SHIFT(364), - [1057] = {.entry = {.count = 1, .reusable = false}}, SHIFT(406), - [1059] = {.entry = {.count = 1, .reusable = false}}, SHIFT(432), - [1061] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3550), - [1063] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3607), - [1065] = {.entry = {.count = 1, .reusable = false}}, SHIFT(379), - [1067] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4646), - [1069] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2109), - [1071] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3549), - [1073] = {.entry = {.count = 1, .reusable = false}}, SHIFT(637), - [1075] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3107), - [1077] = {.entry = {.count = 1, .reusable = false}}, SHIFT(742), - [1079] = {.entry = {.count = 1, .reusable = false}}, SHIFT(743), - [1081] = {.entry = {.count = 1, .reusable = false}}, SHIFT(737), - [1083] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2971), - [1085] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3007), - [1087] = {.entry = {.count = 1, .reusable = false}}, SHIFT(496), - [1089] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2211), - [1091] = {.entry = {.count = 1, .reusable = false}}, SHIFT(372), - [1093] = {.entry = {.count = 1, .reusable = false}}, SHIFT(413), - [1095] = {.entry = {.count = 1, .reusable = false}}, SHIFT(422), - [1097] = {.entry = {.count = 1, .reusable = false}}, SHIFT(467), - [1099] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3332), - [1101] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3609), - [1103] = {.entry = {.count = 1, .reusable = false}}, SHIFT(361), - [1105] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4614), - [1107] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2097), - [1109] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3334), - [1111] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1339), - [1113] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1172), - [1115] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1338), - [1117] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1263), - [1119] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1213), + [637] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3594), + [639] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1555), + [641] = {.entry = {.count = 1, .reusable = false}}, SHIFT(566), + [643] = {.entry = {.count = 1, .reusable = false}}, SHIFT(567), + [645] = {.entry = {.count = 1, .reusable = false}}, SHIFT(561), + [647] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3043), + [649] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3042), + [651] = {.entry = {.count = 1, .reusable = false}}, SHIFT(318), + [653] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2179), + [655] = {.entry = {.count = 1, .reusable = false}}, SHIFT(383), + [657] = {.entry = {.count = 1, .reusable = false}}, SHIFT(525), + [659] = {.entry = {.count = 1, .reusable = false}}, SHIFT(517), + [661] = {.entry = {.count = 1, .reusable = false}}, SHIFT(515), + [663] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3185), + [665] = {.entry = {.count = 1, .reusable = false}}, SHIFT(495), + [667] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3669), + [669] = {.entry = {.count = 1, .reusable = false}}, SHIFT(487), + [671] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1481), + [673] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4786), + [675] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2109), + [677] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3186), + [679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3668), + [681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4792), + [683] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1070), + [685] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3580), + [687] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1161), + [689] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1210), + [691] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3590), + [693] = {.entry = {.count = 1, .reusable = false}}, SHIFT(971), + [695] = {.entry = {.count = 1, .reusable = false}}, SHIFT(649), + [697] = {.entry = {.count = 1, .reusable = false}}, SHIFT(562), + [699] = {.entry = {.count = 1, .reusable = false}}, SHIFT(739), + [701] = {.entry = {.count = 1, .reusable = false}}, SHIFT(875), + [703] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3713), + [705] = {.entry = {.count = 1, .reusable = false}}, SHIFT(548), + [707] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1557), + [709] = {.entry = {.count = 1, .reusable = false}}, SHIFT(274), + [711] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1440), + [713] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1068), + [715] = {.entry = {.count = 1, .reusable = false}}, SHIFT(743), + [717] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2042), + [719] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2296), + [721] = {.entry = {.count = 1, .reusable = false}}, SHIFT(651), + [723] = {.entry = {.count = 1, .reusable = false}}, SHIFT(762), + [725] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1334), + [727] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1615), + [729] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3697), + [731] = {.entry = {.count = 1, .reusable = false}}, SHIFT(305), + [733] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3126), + [735] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2554), + [737] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1707), + [739] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3187), + [741] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3130), + [743] = {.entry = {.count = 1, .reusable = false}}, SHIFT(386), + [745] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1896), + [747] = {.entry = {.count = 1, .reusable = false}}, SHIFT(349), + [749] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2437), + [751] = {.entry = {.count = 1, .reusable = false}}, SHIFT(493), + [753] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3750), + [755] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1842), + [757] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4661), + [759] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2372), + [761] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2501), + [763] = {.entry = {.count = 1, .reusable = false}}, SHIFT(432), + [765] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4135), + [767] = {.entry = {.count = 1, .reusable = false}}, SHIFT(308), + [769] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3154), + [771] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2429), + [773] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1723), + [775] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3189), + [777] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3155), + [779] = {.entry = {.count = 1, .reusable = false}}, SHIFT(415), + [781] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1918), + [783] = {.entry = {.count = 1, .reusable = false}}, SHIFT(346), + [785] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2426), + [787] = {.entry = {.count = 1, .reusable = false}}, SHIFT(352), + [789] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3769), + [791] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1833), + [793] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4626), + [795] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2395), + [797] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2496), + [799] = {.entry = {.count = 1, .reusable = false}}, SHIFT(518), + [801] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3920), + [803] = {.entry = {.count = 1, .reusable = false}}, SHIFT(307), + [805] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3111), + [807] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2457), + [809] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1718), + [811] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3183), + [813] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3110), + [815] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1900), + [817] = {.entry = {.count = 1, .reusable = false}}, SHIFT(348), + [819] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2454), + [821] = {.entry = {.count = 1, .reusable = false}}, SHIFT(378), + [823] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3720), + [825] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1836), + [827] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4693), + [829] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2377), + [831] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2504), + [833] = {.entry = {.count = 1, .reusable = false}}, SHIFT(369), + [835] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4001), + [837] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1125), + [839] = {.entry = {.count = 1, .reusable = false}}, SHIFT(459), + [841] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_qualified_name_repeat1, 2), SHIFT_REPEAT(3668), + [844] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_abl_statement_repeat1, 2), SHIFT_REPEAT(528), + [847] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_abl_statement_repeat1, 2), SHIFT_REPEAT(3594), + [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(566), + [855] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_abl_statement_repeat1, 2), SHIFT_REPEAT(567), + [858] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_abl_statement_repeat1, 2), SHIFT_REPEAT(561), + [861] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_abl_statement_repeat1, 2), SHIFT_REPEAT(3043), + [864] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_abl_statement_repeat1, 2), SHIFT_REPEAT(3042), + [867] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_abl_statement_repeat1, 2), SHIFT_REPEAT(459), + [870] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_abl_statement_repeat1, 2), SHIFT_REPEAT(2179), + [873] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_abl_statement_repeat1, 2), SHIFT_REPEAT(383), + [876] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_abl_statement_repeat1, 2), SHIFT_REPEAT(525), + [879] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_abl_statement_repeat1, 2), SHIFT_REPEAT(517), + [882] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_abl_statement_repeat1, 2), SHIFT_REPEAT(515), + [885] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_abl_statement_repeat1, 2), SHIFT_REPEAT(3185), + [888] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_abl_statement_repeat1, 2), SHIFT_REPEAT(3669), + [891] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_abl_statement_repeat1, 2), SHIFT_REPEAT(487), + [894] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_abl_statement_repeat1, 2), SHIFT_REPEAT(4786), + [897] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_abl_statement_repeat1, 2), SHIFT_REPEAT(2109), + [900] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_abl_statement_repeat1, 2), SHIFT_REPEAT(3186), + [903] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1387), + [905] = {.entry = {.count = 1, .reusable = false}}, SHIFT(884), + [907] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3603), + [909] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1535), + [911] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1047), + [913] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1419), + [915] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3591), + [917] = {.entry = {.count = 1, .reusable = false}}, SHIFT(855), + [919] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1310), + [921] = {.entry = {.count = 1, .reusable = false}}, SHIFT(801), + [923] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3219), + [925] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1579), + [927] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1580), + [929] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1240), + [931] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3021), + [933] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3096), + [935] = {.entry = {.count = 1, .reusable = false}}, SHIFT(433), + [937] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2158), + [939] = {.entry = {.count = 1, .reusable = false}}, SHIFT(363), + [941] = {.entry = {.count = 1, .reusable = false}}, SHIFT(355), + [943] = {.entry = {.count = 1, .reusable = false}}, SHIFT(391), + [945] = {.entry = {.count = 1, .reusable = false}}, SHIFT(395), + [947] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3598), + [949] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3684), + [951] = {.entry = {.count = 1, .reusable = false}}, SHIFT(379), + [953] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4724), + [955] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2041), + [957] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3600), + [959] = {.entry = {.count = 1, .reusable = false}}, SHIFT(780), + [961] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3294), + [963] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1384), + [965] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1376), + [967] = {.entry = {.count = 1, .reusable = false}}, SHIFT(977), + [969] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3092), + [971] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3138), + [973] = {.entry = {.count = 1, .reusable = false}}, SHIFT(424), + [975] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2154), + [977] = {.entry = {.count = 1, .reusable = false}}, SHIFT(356), + [979] = {.entry = {.count = 1, .reusable = false}}, SHIFT(373), + [981] = {.entry = {.count = 1, .reusable = false}}, SHIFT(382), + [983] = {.entry = {.count = 1, .reusable = false}}, SHIFT(384), + [985] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3333), + [987] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3762), + [989] = {.entry = {.count = 1, .reusable = false}}, SHIFT(427), + [991] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4628), + [993] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2115), + [995] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3331), + [997] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1472), + [999] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1374), + [1001] = {.entry = {.count = 1, .reusable = false}}, SHIFT(632), + [1003] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3223), + [1005] = {.entry = {.count = 1, .reusable = false}}, SHIFT(746), + [1007] = {.entry = {.count = 1, .reusable = false}}, SHIFT(747), + [1009] = {.entry = {.count = 1, .reusable = false}}, SHIFT(736), + [1011] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3086), + [1013] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3105), + [1015] = {.entry = {.count = 1, .reusable = false}}, SHIFT(364), + [1017] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2236), + [1019] = {.entry = {.count = 1, .reusable = false}}, SHIFT(468), + [1021] = {.entry = {.count = 1, .reusable = false}}, SHIFT(473), + [1023] = {.entry = {.count = 1, .reusable = false}}, SHIFT(474), + [1025] = {.entry = {.count = 1, .reusable = false}}, SHIFT(476), + [1027] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3371), + [1029] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3686), + [1031] = {.entry = {.count = 1, .reusable = false}}, SHIFT(483), + [1033] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4695), + [1035] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2139), + [1037] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3373), + [1039] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1186), + [1041] = {.entry = {.count = 1, .reusable = false}}, SHIFT(809), + [1043] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3225), + [1045] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1629), + [1047] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1639), + [1049] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1570), + [1051] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3127), + [1053] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3094), + [1055] = {.entry = {.count = 1, .reusable = false}}, SHIFT(425), + [1057] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2160), + [1059] = {.entry = {.count = 1, .reusable = false}}, SHIFT(408), + [1061] = {.entry = {.count = 1, .reusable = false}}, SHIFT(406), + [1063] = {.entry = {.count = 1, .reusable = false}}, SHIFT(402), + [1065] = {.entry = {.count = 1, .reusable = false}}, SHIFT(397), + [1067] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3205), + [1069] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3687), + [1071] = {.entry = {.count = 1, .reusable = false}}, SHIFT(362), + [1073] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4663), + [1075] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2100), + [1077] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3204), + [1079] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1242), + [1081] = {.entry = {.count = 1, .reusable = false}}, SHIFT(607), + [1083] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3217), + [1085] = {.entry = {.count = 1, .reusable = false}}, SHIFT(684), + [1087] = {.entry = {.count = 1, .reusable = false}}, SHIFT(709), + [1089] = {.entry = {.count = 1, .reusable = false}}, SHIFT(648), + [1091] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3136), + [1093] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3033), + [1095] = {.entry = {.count = 1, .reusable = false}}, SHIFT(439), + [1097] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2211), + [1099] = {.entry = {.count = 1, .reusable = false}}, SHIFT(479), + [1101] = {.entry = {.count = 1, .reusable = false}}, SHIFT(478), + [1103] = {.entry = {.count = 1, .reusable = false}}, SHIFT(477), + [1105] = {.entry = {.count = 1, .reusable = false}}, SHIFT(471), + [1107] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3627), + [1109] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3683), + [1111] = {.entry = {.count = 1, .reusable = false}}, SHIFT(367), + [1113] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4727), + [1115] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2056), + [1117] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3629), + [1119] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1528), [1121] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ambiguous_expression, 2), - [1123] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1645), - [1125] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_accumulate_expression, 3), - [1127] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_logical_expression, 3), - [1129] = {.entry = {.count = 1, .reusable = false}}, SHIFT(313), - [1131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3857), - [1133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4317), - [1135] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ternary_expression, 6, .production_id = 35), - [1137] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_abl_statement_repeat1, 1), + [1123] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1651), + [1125] = {.entry = {.count = 1, .reusable = false}}, SHIFT(314), + [1127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3816), + [1129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4554), + [1131] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ternary_expression, 6, .production_id = 35), + [1133] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_abl_statement_repeat1, 1), + [1135] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_logical_expression, 3), + [1137] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_accumulate_expression, 3), [1139] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_locked_expression, 2), [1141] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_current_changed_expression, 2), - [1143] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_qualified_name_repeat1, 2), SHIFT_REPEAT(3857), - [1146] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_object_access_repeat1, 2, .production_id = 8), SHIFT_REPEAT(4317), - [1149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1328), - [1151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(404), - [1153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1816), - [1155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1724), - [1157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1053), - [1159] = {.entry = {.count = 1, .reusable = false}}, SHIFT(571), - [1161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(987), - [1163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4627), - [1165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(971), - [1167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1052), - [1169] = {.entry = {.count = 1, .reusable = false}}, SHIFT(580), - [1171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1500), - [1173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1155), - [1175] = {.entry = {.count = 1, .reusable = false}}, SHIFT(582), - [1177] = {.entry = {.count = 1, .reusable = false}}, SHIFT(579), - [1179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3485), - [1181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3437), - [1183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1366), + [1143] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_qualified_name_repeat1, 2), SHIFT_REPEAT(3816), + [1146] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_object_access_repeat1, 2, .production_id = 8), SHIFT_REPEAT(4554), + [1149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3610), + [1151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(410), + [1153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1825), + [1155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1711), + [1157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(958), + [1159] = {.entry = {.count = 1, .reusable = false}}, SHIFT(568), + [1161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(907), + [1163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1487), + [1165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(909), + [1167] = {.entry = {.count = 1, .reusable = false}}, SHIFT(571), + [1169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1112), + [1171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1171), + [1173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3631), + [1175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1456), + [1177] = {.entry = {.count = 1, .reusable = false}}, SHIFT(583), + [1179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1411), + [1181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4708), + [1183] = {.entry = {.count = 1, .reusable = false}}, SHIFT(563), [1185] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_output_stream_tuning, 3), - [1187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(414), + [1187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(413), [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(35), - [1195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1851), - [1197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3850), - [1199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(417), - [1201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4489), - [1203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3724), - [1205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(757), - [1207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(714), - [1209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1622), - [1211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1572), - [1213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(317), - [1215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3637), - [1217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4642), - [1219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1561), - [1221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1631), - [1223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(575), - [1225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1245), - [1227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(759), - [1229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(568), - [1231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1224), - [1233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(720), - [1235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(27), + [1193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1578), + [1195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1858), + [1197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3937), + [1199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(475), + [1201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4504), + [1203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3807), + [1205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1633), + [1207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1537), + [1209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1636), + [1211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(683), + [1213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(592), + [1215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(775), + [1217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1470), + [1219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(309), + [1221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3678), + [1223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4811), + [1225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(700), + [1227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1588), + [1229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(27), + [1231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(578), + [1233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(778), + [1235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(33), [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(4642), - [1244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(308), - [1246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3611), - [1248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4625), - [1250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1539), - [1252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(359), - [1254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2143), - [1256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2019), - [1258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3487), - [1260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1044), - [1262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3440), - [1264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1166), - [1266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1230), - [1268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1335), - [1270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1061), - [1272] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_qualified_name_repeat1, 2), SHIFT_REPEAT(3637), - [1275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1002), - [1277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(968), - [1279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(673), - [1281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(681), - [1283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(683), - [1285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(678), - [1287] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_input_stream_tuning, 3), - [1289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(363), - [1291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4634), + [1241] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_object_access_repeat1, 2, .production_id = 8), SHIFT_REPEAT(4811), + [1244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(905), + [1246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(354), + [1248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2168), + [1250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2010), + [1252] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_qualified_name_repeat1, 2), SHIFT_REPEAT(3678), + [1255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3638), + [1257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(324), + [1259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3663), + [1261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4726), + [1263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1512), + [1265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1216), + [1267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1121), + [1269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(904), + [1271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1460), + [1273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3614), + [1275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(950), + [1277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1416), + [1279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4801), + [1281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(712), + [1283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(677), + [1285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(714), + [1287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(716), + [1289] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_input_stream_tuning, 3), + [1291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(376), [1293] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_clause, 2, .production_id = 9), - [1295] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4259), - [1297] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4256), - [1299] = {.entry = {.count = 1, .reusable = false}}, SHIFT(366), - [1301] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2531), - [1303] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2473), - [1305] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2414), - [1307] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2540), - [1309] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2480), - [1311] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2516), - [1313] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2406), - [1315] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2494), - [1317] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_input_stream_tuning, 2), - [1319] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2498), - [1321] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_object_access_repeat1, 2, .production_id = 8), SHIFT_REPEAT(4625), - [1324] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2432), - [1326] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2522), - [1328] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_input_stream_tuning, 5), - [1330] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2434), - [1332] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2417), - [1334] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2430), - [1336] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2421), + [1295] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4366), + [1297] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4317), + [1299] = {.entry = {.count = 1, .reusable = false}}, SHIFT(370), + [1301] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2444), + [1303] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2469), + [1305] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2516), + [1307] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2558), + [1309] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2555), + [1311] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2455), + [1313] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2483), + [1315] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2471), + [1317] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2518), + [1319] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2430), + [1321] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2459), + [1323] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2449), + [1325] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2583), + [1327] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_input_stream_tuning, 5), + [1329] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2528), + [1331] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_input_stream_tuning, 2), + [1333] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2543), + [1335] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_object_access_repeat1, 2, .production_id = 8), SHIFT_REPEAT(4726), [1338] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_option, 2), - [1340] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_qualified_name_repeat1, 2), SHIFT_REPEAT(3699), - [1343] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_qualified_name_repeat1, 2), SHIFT_REPEAT(3611), - [1346] = {.entry = {.count = 1, .reusable = false}}, SHIFT(23), - [1348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(520), - [1350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1882), - [1352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1856), - [1354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1268), - [1356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1941), - [1358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4693), - [1360] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4693), - [1362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4694), - [1364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4296), - [1366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4695), - [1368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4330), - [1370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2825), - [1372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3166), - [1374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4327), - [1376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4325), - [1378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4324), - [1380] = {.entry = {.count = 1, .reusable = false}}, SHIFT(763), - [1382] = {.entry = {.count = 1, .reusable = false}}, SHIFT(762), - [1384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4337), - [1386] = {.entry = {.count = 1, .reusable = false}}, SHIFT(39), - [1388] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_tuning, 2), - [1390] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4002), - [1392] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4451), - [1394] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4005), - [1396] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1628), - [1398] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1591), - [1400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(753), - [1402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(755), - [1404] = {.entry = {.count = 1, .reusable = false}}, SHIFT(319), - [1406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3886), - [1408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4497), - [1410] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_to_phrase, 3), - [1412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3177), - [1414] = {.entry = {.count = 1, .reusable = false}}, SHIFT(312), - [1416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3633), - [1418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4698), - [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(325), - [1426] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_on_statement_repeat1, 2), - [1428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4677), - [1430] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 5, .production_id = 9), - [1432] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 5, .production_id = 9), - [1434] = {.entry = {.count = 1, .reusable = false}}, SHIFT(328), - [1436] = {.entry = {.count = 3, .reusable = true}}, REDUCE(aux_sym_variable_definition_repeat1, 1), REDUCE(aux_sym_buffer_definition_repeat1, 1), SHIFT(1856), - [1440] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_variable_definition_repeat1, 1), REDUCE(aux_sym_buffer_definition_repeat1, 1), - [1443] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_variable_definition_repeat1, 1), SHIFT(1941), - [1446] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_variable_definition_repeat1, 1), - [1448] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_variable_definition_repeat1, 1), - [1450] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_buffer_definition_repeat1, 1), - [1452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4214), - [1454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4210), - [1456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4209), - [1458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4212), - [1460] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_if_statement_repeat1, 2), - [1462] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_if_statement_repeat1, 2), SHIFT_REPEAT(328), - [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(325), + [1340] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_qualified_name_repeat1, 2), SHIFT_REPEAT(3663), + [1343] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_qualified_name_repeat1, 2), SHIFT_REPEAT(3739), + [1346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4258), + [1348] = {.entry = {.count = 1, .reusable = false}}, SHIFT(30), + [1350] = {.entry = {.count = 1, .reusable = false}}, SHIFT(744), + [1352] = {.entry = {.count = 1, .reusable = false}}, SHIFT(750), + [1354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(514), + [1356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1891), + [1358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1861), + [1360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1521), + [1362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1968), + [1364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4774), + [1366] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4774), + [1368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4775), + [1370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4454), + [1372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4776), + [1374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4423), + [1376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2848), + [1378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3278), + [1380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4420), + [1382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4419), + [1384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4418), + [1386] = {.entry = {.count = 1, .reusable = false}}, SHIFT(34), + [1388] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_to_phrase, 3), + [1390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3287), + [1392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(745), + [1394] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_tuning, 2), + [1396] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3905), + [1398] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4673), + [1400] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3906), + [1402] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1603), + [1404] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1598), + [1406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(768), + [1408] = {.entry = {.count = 1, .reusable = false}}, SHIFT(312), + [1410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4134), + [1412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4676), + [1414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4826), + [1416] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_if_statement_repeat1, 2), + [1418] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_if_statement_repeat1, 2), SHIFT_REPEAT(330), + [1421] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 4, .production_id = 9), + [1423] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 4, .production_id = 9), + [1425] = {.entry = {.count = 1, .reusable = false}}, SHIFT(331), + [1427] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 5, .production_id = 9), + [1429] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 5, .production_id = 9), + [1431] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_on_statement_repeat1, 2), + [1433] = {.entry = {.count = 1, .reusable = false}}, SHIFT(330), + [1435] = {.entry = {.count = 1, .reusable = false}}, SHIFT(325), + [1437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3675), + [1439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4540), + [1441] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_if_statement_repeat1, 2), + [1443] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_if_statement_repeat1, 2), SHIFT_REPEAT(331), + [1446] = {.entry = {.count = 3, .reusable = true}}, REDUCE(aux_sym_variable_definition_repeat1, 1), REDUCE(aux_sym_buffer_definition_repeat1, 1), SHIFT(1861), + [1450] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_variable_definition_repeat1, 1), REDUCE(aux_sym_buffer_definition_repeat1, 1), + [1453] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_variable_definition_repeat1, 1), SHIFT(1968), + [1456] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_variable_definition_repeat1, 1), + [1458] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_variable_definition_repeat1, 1), + [1460] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_buffer_definition_repeat1, 1), + [1462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4326), + [1464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4321), + [1466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4318), + [1468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4323), [1470] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_phrase, 2, .production_id = 9), - [1472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(476), - [1474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(356), - [1476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4568), - [1478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(370), - [1480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4601), - [1482] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_object_access_repeat1, 2, .production_id = 8), SHIFT_REPEAT(4497), - [1485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(393), - [1487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4633), - [1489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(472), - [1491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4512), - [1493] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_include_argument, 4, .production_id = 22), - [1495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(447), - [1497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4528), - [1499] = {.entry = {.count = 1, .reusable = false}}, SHIFT(309), - [1501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3559), - [1503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4277), - [1505] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_object_access_repeat1, 2, .production_id = 8), SHIFT_REPEAT(4698), - [1508] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_qualified_name_repeat1, 2), SHIFT_REPEAT(3886), - [1511] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_on_statement_repeat1, 2), - [1513] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_assignment, 3), - [1515] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_repeat_statement, 7), - [1517] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_repeat_statement, 7), - [1519] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_else_statement, 2), - [1521] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variable_definition, 8, .production_id = 40), - [1523] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_if_statement_repeat1, 1), - [1525] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__terminated_statement, 1), - [1527] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_buffer_definition, 8, .production_id = 47), - [1529] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_query_definition, 8, .production_id = 42), - [1531] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_query_definition, 9, .production_id = 29), - [1533] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_call_argument, 1), - [1535] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_temp_table_definition, 9), - [1537] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment, 3), - [1539] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_query_definition, 6, .production_id = 29), - [1541] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_temp_table_definition, 6), - [1543] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variable_definition, 7, .production_id = 26), - [1545] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_query_definition, 9, .production_id = 42), - [1547] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_stop_after_phrase, 2), - [1549] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_query_definition, 10, .production_id = 29), - [1551] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variable_definition, 6, .production_id = 27), - [1553] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_query_definition, 10, .production_id = 42), - [1555] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_query_definition, 11, .production_id = 29), - [1557] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_input_close_statement, 5, .production_id = 16), - [1559] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_input_close_statement, 5, .production_id = 16), - [1561] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variable_definition, 6, .production_id = 26), - [1563] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__terminated_statement, 1), - [1565] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_query_definition, 11, .production_id = 42), - [1567] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_query_definition, 12, .production_id = 42), - [1569] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_qualified_name_repeat1, 2), SHIFT_REPEAT(3633), - [1572] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_else_if_statement, 5, .production_id = 54), - [1574] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_buffer_definition, 6, .production_id = 28), - [1576] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 16, .production_id = 34), - [1578] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 15, .production_id = 34), - [1580] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 15, .production_id = 12), - [1582] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 14, .production_id = 34), - [1584] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__stream_statement, 1), - [1586] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__stream_statement, 1), - [1588] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_input_close_statement, 5, .production_id = 17), - [1590] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_input_close_statement, 5, .production_id = 17), - [1592] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 14, .production_id = 12), - [1594] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 13, .production_id = 34), - [1596] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 13, .production_id = 12), - [1598] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 12, .production_id = 34), - [1600] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 12, .production_id = 12), - [1602] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_query_definition, 12, .production_id = 42), - [1604] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 11, .production_id = 34), - [1606] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 11, .production_id = 12), - [1608] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_query_definition, 11, .production_id = 42), - [1610] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_query_definition, 11, .production_id = 29), - [1612] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_do_block, 10), - [1614] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_repeat_statement, 10), - [1616] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 10, .production_id = 34), - [1618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4329), - [1620] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_on_statement, 10), - [1622] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 10, .production_id = 12), - [1624] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_return_statement, 2), - [1626] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_return_statement, 2), - [1628] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assign_statement, 2), - [1630] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_assign_statement, 2), - [1632] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_query_definition, 10, .production_id = 42), - [1634] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_temp_table_definition, 4), - [1636] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_assignment, 2), - [1638] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variable_assignment, 2), - [1640] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variable_definition, 7, .production_id = 39), - [1642] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_query_definition, 10, .production_id = 29), - [1644] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 9, .production_id = 34), - [1646] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_do_block, 9), - [1648] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_on_statement, 9), - [1650] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_repeat_statement, 9), - [1652] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 9, .production_id = 12), - [1654] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_query_definition, 9, .production_id = 42), - [1656] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_temp_table_definition, 9), - [1658] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_call_statement, 2), - [1660] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_call_statement, 2), - [1662] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_query_definition, 9, .production_id = 29), - [1664] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 8, .production_id = 34), - [1666] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_buffer_definition, 7, .production_id = 37), - [1668] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_find_statement, 8, .production_id = 12), - [1670] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_temp_table_definition, 7), - [1672] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_do_block, 8), - [1674] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_on_statement, 8), - [1676] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interface_statement, 8, .production_id = 18), - [1678] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_repeat_statement, 8), - [1680] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_query_definition, 7, .production_id = 29), - [1682] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_else_statement, 2), - [1684] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abl_statement, 3, .production_id = 1), - [1686] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abl_statement, 3, .production_id = 1), - [1688] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_input_close_statement, 3), - [1690] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_input_close_statement, 3), - [1692] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 8, .production_id = 12), - [1694] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_query_definition, 8, .production_id = 42), - [1696] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_buffer_definition, 8, .production_id = 47), - [1698] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_definition, 8, .production_id = 40), - [1700] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_definition, 8, .production_id = 39), - [1702] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variable_definition, 8, .production_id = 39), - [1704] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_query_definition, 8, .production_id = 29), - [1706] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_query_definition, 8, .production_id = 29), - [1708] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_temp_table_definition, 8), - [1710] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_temp_table_definition, 8), - [1712] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_statement, 8, .production_id = 18), - [1714] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_output_close_statement, 3), - [1716] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_output_close_statement, 3), - [1718] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_repeat_statement, 3), - [1720] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_repeat_statement, 3), - [1722] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 7, .production_id = 34), - [1724] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_return_statement, 3), - [1726] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_return_statement, 3), - [1728] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_accumulate_statement, 7), - [1730] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_do_block, 3), - [1732] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_do_block, 3), - [1734] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_find_statement, 7, .production_id = 12), - [1736] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_find_statement, 7, .production_id = 10), - [1738] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_do_block, 7), - [1740] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_input_stream_statement, 5, .production_id = 11), - [1742] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_input_stream_statement, 5, .production_id = 11), - [1744] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interface_statement, 7, .production_id = 18), - [1746] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_find_statement, 3, .production_id = 10), - [1748] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_find_statement, 3, .production_id = 10), - [1750] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assign_statement, 3), - [1752] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_assign_statement, 3), - [1754] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_error_scope_statement, 3), - [1756] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_error_scope_statement, 3), - [1758] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_output_stream_statement, 7, .production_id = 25), - [1760] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 7, .production_id = 12), - [1762] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_query_definition, 7, .production_id = 42), - [1764] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_query_definition, 7, .production_id = 42), - [1766] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_buffer_definition, 7, .production_id = 41), - [1768] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_buffer_definition, 7, .production_id = 41), - [1770] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_definition, 7, .production_id = 40), - [1772] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variable_definition, 7, .production_id = 40), - [1774] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_definition, 7, .production_id = 39), - [1776] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_query_definition, 7, .production_id = 29), - [1778] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_temp_table_definition, 7), - [1780] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_buffer_definition, 7, .production_id = 37), - [1782] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_definition, 7, .production_id = 27), - [1784] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variable_definition, 7, .production_id = 27), - [1786] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_definition, 7, .production_id = 26), - [1788] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_statement, 7, .production_id = 18), - [1790] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_input_stream_statement, 7, .production_id = 25), - [1792] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_object_access_repeat1, 2, .production_id = 8), SHIFT_REPEAT(4277), - [1795] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_temp_table_definition, 5), - [1797] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_input_stream_statement, 4, .production_id = 11), - [1799] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_input_stream_statement, 4, .production_id = 11), - [1801] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_stream_definition, 4), - [1803] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_stream_definition, 4), - [1805] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_output_stream_statement, 4, .production_id = 11), - [1807] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_output_stream_statement, 4, .production_id = 11), - [1809] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__block_terminator, 2), - [1811] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__block_terminator, 2), - [1813] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 6, .production_id = 34), - [1815] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_accumulate_statement, 6), - [1817] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_find_statement, 6, .production_id = 12), - [1819] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_repeat_statement, 4), - [1821] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_repeat_statement, 4), - [1823] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_find_statement, 6, .production_id = 10), - [1825] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__case_terminator, 3), - [1827] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_do_block, 6), - [1829] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_undo_statement, 6, .production_id = 32), - [1831] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_undo_statement, 6, .production_id = 20), - [1833] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_undo_statement, 4), - [1835] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_undo_statement, 4), - [1837] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_on_statement, 6), - [1839] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interface_statement, 6, .production_id = 18), - [1841] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_repeat_statement, 6), - [1843] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_do_block, 4), - [1845] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_do_block, 4), - [1847] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_output_stream_statement, 6, .production_id = 25), - [1849] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__case_terminator, 1), - [1851] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__case_terminator, 1), - [1853] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 6, .production_id = 12), - [1855] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_statement, 4), - [1857] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_statement, 4), - [1859] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_find_statement, 4, .production_id = 10), - [1861] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_find_statement, 4, .production_id = 10), - [1863] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_query_definition, 6, .production_id = 29), - [1865] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_find_statement, 4, .production_id = 12), - [1867] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_find_statement, 4, .production_id = 12), - [1869] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_temp_table_definition, 6), - [1871] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_buffer_definition, 6, .production_id = 28), - [1873] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_definition, 6, .production_id = 27), - [1875] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_definition, 6, .production_id = 26), - [1877] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assign_statement, 4), - [1879] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_assign_statement, 4), - [1881] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1248), - [1883] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_statement, 6, .production_id = 18), - [1885] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_on_statement, 7), - [1887] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_input_stream_statement, 6, .production_id = 25), - [1889] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abl_statement, 2, .production_id = 1), - [1891] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abl_statement, 2, .production_id = 1), - [1893] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_statement, 5, .production_id = 18), - [1895] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_statement, 5, .production_id = 18), - [1897] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 5, .production_id = 12), - [1899] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 5, .production_id = 12), - [1901] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_output_close_statement, 5, .production_id = 16), - [1903] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_output_close_statement, 5, .production_id = 16), - [1905] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_output_close_statement, 5, .production_id = 17), - [1907] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_output_close_statement, 5, .production_id = 17), - [1909] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_find_statement, 5, .production_id = 12), - [1911] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_find_statement, 5, .production_id = 10), - [1913] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_output_stream_statement, 5, .production_id = 11), - [1915] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_output_stream_statement, 5, .production_id = 11), - [1917] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_statement, 5), - [1919] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_do_block, 5), - [1921] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_repeat_statement, 5), - [1923] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_repeat_statement, 5), - [1925] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_statement, 5, .production_id = 18), - [1927] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interface_statement, 5, .production_id = 18), - [1929] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_undo_statement, 5, .production_id = 21), - [1931] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_undo_statement, 5), - [1933] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_undo_statement, 5, .production_id = 20), - [1935] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_on_statement, 5), - [1937] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_on_statement, 5), - [1939] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_temp_table_definition, 5), - [1941] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_undo_statement, 5, .production_id = 20), - [1943] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_undo_statement, 5), - [1945] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_undo_statement, 5, .production_id = 21), - [1947] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_do_block, 5), - [1949] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_statement, 5), - [1951] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_find_statement, 5, .production_id = 10), - [1953] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_find_statement, 5, .production_id = 12), - [1955] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1227), - [1957] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_input_stream_statement, 6, .production_id = 25), - [1959] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_statement, 6, .production_id = 18), - [1961] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 6, .production_id = 12), - [1963] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_output_stream_statement, 6, .production_id = 25), - [1965] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_repeat_statement, 6), - [1967] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_statement, 6, .production_id = 18), - [1969] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_temp_table_definition, 4), - [1971] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_on_statement, 6), - [1973] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_undo_statement, 6, .production_id = 20), - [1975] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_undo_statement, 6, .production_id = 32), - [1977] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_do_block, 6), - [1979] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__case_terminator, 3), - [1981] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_find_statement, 6, .production_id = 10), - [1983] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_find_statement, 6, .production_id = 12), - [1985] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_accumulate_statement, 6), - [1987] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 6, .production_id = 34), - [1989] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1252), - [1991] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_input_stream_statement, 7, .production_id = 25), - [1993] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_statement, 7, .production_id = 18), - [1995] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 7, .production_id = 12), - [1997] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_output_stream_statement, 7, .production_id = 25), - [1999] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_statement, 7, .production_id = 18), - [2001] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_on_statement, 7), - [2003] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_do_block, 7), - [2005] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_find_statement, 7, .production_id = 10), - [2007] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_find_statement, 7, .production_id = 12), - [2009] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_accumulate_statement, 7), - [2011] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 7, .production_id = 34), - [2013] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_statement, 8, .production_id = 18), - [2015] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_else_if_statement, 5, .production_id = 54), - [2017] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 8, .production_id = 12), - [2019] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_repeat_statement, 8), - [2021] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_statement, 8, .production_id = 18), - [2023] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_on_statement, 8), - [2025] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_do_block, 8), - [2027] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_find_statement, 8, .production_id = 12), - [2029] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 8, .production_id = 34), - [2031] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 9, .production_id = 12), - [2033] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_repeat_statement, 9), - [2035] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_if_statement_repeat1, 1), - [2037] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_on_statement, 9), - [2039] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_do_block, 9), - [2041] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 9, .production_id = 34), - [2043] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 10, .production_id = 12), - [2045] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_on_statement, 10), - [2047] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 10, .production_id = 34), - [2049] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 12, .production_id = 12), - [2051] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 11, .production_id = 34), - [2053] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 16, .production_id = 34), - [2055] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 11, .production_id = 12), - [2057] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_repeat_statement, 10), - [2059] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 15, .production_id = 34), - [2061] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 15, .production_id = 12), - [2063] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 14, .production_id = 34), - [2065] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_do_block, 10), - [2067] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 14, .production_id = 12), - [2069] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1228), - [2071] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 13, .production_id = 34), - [2073] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 13, .production_id = 12), - [2075] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 12, .production_id = 34), - [2077] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_catch_statement, 8, .production_id = 51), - [2079] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_catch_statement, 8, .production_id = 51), - [2081] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__procedure_terminator, 3), - [2083] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_procedure_statement, 6), - [2085] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_finally_statement, 6), - [2087] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_finally_statement, 6), - [2089] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__statement, 1), - [2091] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__statement, 1), - [2093] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3079), - [2095] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1980), - [2097] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1829), - [2099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2092), - [2101] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_source_code_repeat1, 1), - [2103] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_source_code_repeat1, 1), - [2105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3036), - [2107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(146), - [2109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3072), - [2111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(365), - [2113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4364), - [2115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2594), - [2117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(255), - [2119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2073), - [2121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(221), - [2123] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_finally_statement, 5), - [2125] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_qualified_name_repeat1, 2), SHIFT_REPEAT(3559), - [2128] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_procedure_statement, 5), - [2130] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_procedure_statement, 5), - [2132] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_statement, 8, .production_id = 50), - [2134] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_statement, 8, .production_id = 50), - [2136] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__function_terminator, 1), - [2138] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__function_terminator, 1), - [2140] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_statement, 9, .production_id = 50), - [2142] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_statement, 9, .production_id = 50), - [2144] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_using_statement, 5), - [2146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(88), - [2148] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_catch_statement, 9, .production_id = 45), - [2150] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_catch_statement, 9, .production_id = 45), - [2152] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_catch_statement, 9, .production_id = 51), - [2154] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_catch_statement, 9, .production_id = 51), - [2156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(263), - [2158] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_label, 2), - [2160] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_label, 2), - [2162] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_using_statement, 5), - [2164] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__procedure_terminator, 3), - [2166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2065), - [2168] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_method_definition_repeat1, 2), - [2170] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_method_definition_repeat1, 2), SHIFT_REPEAT(1628), - [2173] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_procedure_parameter_definition, 8), - [2175] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_procedure_parameter_definition, 8), - [2177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(332), - [2179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(259), - [2181] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1584), - [2183] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_procedure_statement, 6), - [2185] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_access_tuning, 1), - [2187] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_access_tuning, 1), - [2189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(471), - [2191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(462), - [2193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1080), - [2195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(210), - [2197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(337), - [2199] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_finally_statement, 4), - [2201] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_catch_statement, 7, .production_id = 45), - [2203] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_catch_statement, 7, .production_id = 45), - [2205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(381), - [2207] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__function_terminator, 3), - [2209] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__function_terminator, 3), - [2211] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_statement, 10, .production_id = 50), - [2213] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_statement, 10, .production_id = 50), - [2215] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_catch_statement, 10, .production_id = 51), - [2217] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_catch_statement, 10, .production_id = 51), - [2219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1504), - [2221] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_procedure_statement, 4), - [2223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(396), - [2225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1620), - [2227] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1556), - [2229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(340), - [2231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(327), - [2233] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1579), - [2235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(392), - [2237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2056), - [2239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(249), - [2241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(261), - [2243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2039), - [2245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(431), - [2247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(398), - [2249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(180), - [2251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1312), - [2253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(497), - [2255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(191), - [2257] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_finally_statement, 4), - [2259] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_statement, 11, .production_id = 50), - [2261] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_statement, 11, .production_id = 50), + [1472] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_include_argument, 4, .production_id = 22), + [1474] = {.entry = {.count = 1, .reusable = false}}, SHIFT(315), + [1476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3688), + [1478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4233), + [1480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(522), + [1482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(521), + [1484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4594), + [1486] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_object_access_repeat1, 2, .production_id = 8), SHIFT_REPEAT(4676), + [1489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(385), + [1491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4682), + [1493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(523), + [1495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4714), + [1497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(435), + [1499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4649), + [1501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(409), + [1503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4607), + [1505] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_object_access_repeat1, 2, .production_id = 8), SHIFT_REPEAT(4540), + [1508] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_assignment, 3), + [1510] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_qualified_name_repeat1, 2), SHIFT_REPEAT(4134), + [1513] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_on_statement_repeat1, 2), + [1515] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 13, .production_id = 34), + [1517] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_find_statement, 8, .production_id = 12), + [1519] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_find_statement, 8, .production_id = 12), + [1521] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_do_block, 8), + [1523] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_do_block, 8), + [1525] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_on_statement, 8), + [1527] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_on_statement, 8), + [1529] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_statement, 8, .production_id = 18), + [1531] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interface_statement, 8, .production_id = 18), + [1533] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_repeat_statement, 8), + [1535] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_repeat_statement, 8), + [1537] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_return_statement, 2), + [1539] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 8, .production_id = 12), + [1541] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 8, .production_id = 12), + [1543] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_statement, 8, .production_id = 18), + [1545] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_statement, 8, .production_id = 18), + [1547] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 7, .production_id = 34), + [1549] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 7, .production_id = 34), + [1551] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_accumulate_statement, 7), + [1553] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_accumulate_statement, 7), + [1555] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_find_statement, 7, .production_id = 12), + [1557] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_find_statement, 7, .production_id = 12), + [1559] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_find_statement, 7, .production_id = 10), + [1561] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_find_statement, 7, .production_id = 10), + [1563] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_do_block, 7), + [1565] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_do_block, 7), + [1567] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_on_statement, 7), + [1569] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_on_statement, 7), + [1571] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_statement, 7, .production_id = 18), + [1573] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interface_statement, 7, .production_id = 18), + [1575] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_repeat_statement, 7), + [1577] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_repeat_statement, 7), + [1579] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_stop_after_phrase, 2), + [1581] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_assign_statement, 2), + [1583] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_output_stream_statement, 7, .production_id = 25), + [1585] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_output_stream_statement, 7, .production_id = 25), + [1587] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variable_assignment, 2), + [1589] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_call_statement, 2), + [1591] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 7, .production_id = 12), + [1593] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 7, .production_id = 12), + [1595] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 11, .production_id = 12), + [1597] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 11, .production_id = 12), + [1599] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_statement, 7, .production_id = 18), + [1601] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_statement, 7, .production_id = 18), + [1603] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_input_stream_statement, 7, .production_id = 25), + [1605] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_input_stream_statement, 7, .production_id = 25), + [1607] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1492), + [1609] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 8, .production_id = 34), + [1611] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 8, .production_id = 34), + [1613] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_call_argument, 1), + [1615] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 6, .production_id = 34), + [1617] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 6, .production_id = 34), + [1619] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_accumulate_statement, 6), + [1621] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_accumulate_statement, 6), + [1623] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_find_statement, 6, .production_id = 12), + [1625] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_find_statement, 6, .production_id = 12), + [1627] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 11, .production_id = 34), + [1629] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 11, .production_id = 34), + [1631] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_find_statement, 6, .production_id = 10), + [1633] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_find_statement, 6, .production_id = 10), + [1635] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__case_terminator, 3), + [1637] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__case_terminator, 3), + [1639] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abl_statement, 3, .production_id = 1), + [1641] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_input_close_statement, 3), + [1643] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_output_close_statement, 3), + [1645] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_repeat_statement, 3), + [1647] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_return_statement, 3), + [1649] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_do_block, 3), + [1651] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_find_statement, 3, .production_id = 10), + [1653] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_else_if_statement, 5, .production_id = 54), + [1655] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_else_statement, 2), + [1657] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_else_statement, 2), + [1659] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_assign_statement, 3), + [1661] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_error_scope_statement, 3), + [1663] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_do_block, 6), + [1665] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_do_block, 6), + [1667] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_undo_statement, 6, .production_id = 32), + [1669] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_undo_statement, 6, .production_id = 32), + [1671] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_undo_statement, 6, .production_id = 20), + [1673] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_undo_statement, 6, .production_id = 20), + [1675] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1453), + [1677] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_on_statement, 6), + [1679] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_on_statement, 6), + [1681] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_statement, 6, .production_id = 18), + [1683] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interface_statement, 6, .production_id = 18), + [1685] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_repeat_statement, 6), + [1687] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_repeat_statement, 6), + [1689] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 6, .production_id = 12), + [1691] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 6, .production_id = 12), + [1693] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_statement, 6, .production_id = 18), + [1695] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_statement, 6, .production_id = 18), + [1697] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_input_stream_statement, 6, .production_id = 25), + [1699] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_input_stream_statement, 6, .production_id = 25), + [1701] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_input_stream_statement, 4, .production_id = 11), + [1703] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_temp_table_definition, 4), + [1705] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_temp_table_definition, 4), + [1707] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_output_stream_statement, 6, .production_id = 25), + [1709] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_output_stream_statement, 6, .production_id = 25), + [1711] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_stream_definition, 4), + [1713] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_output_stream_statement, 4, .production_id = 11), + [1715] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__block_terminator, 2), + [1717] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_repeat_statement, 4), + [1719] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_undo_statement, 4), + [1721] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_do_block, 4), + [1723] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__case_terminator, 1), + [1725] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_statement, 4), + [1727] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_find_statement, 4, .production_id = 10), + [1729] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_find_statement, 4, .production_id = 12), + [1731] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_assign_statement, 4), + [1733] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__terminated_statement, 1), + [1735] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1524), + [1737] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_input_stream_statement, 5, .production_id = 11), + [1739] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_input_close_statement, 5, .production_id = 16), + [1741] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_find_statement, 5, .production_id = 12), + [1743] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_find_statement, 5, .production_id = 12), + [1745] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_input_close_statement, 5, .production_id = 17), + [1747] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_find_statement, 5, .production_id = 10), + [1749] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_find_statement, 5, .production_id = 10), + [1751] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_statement, 5, .production_id = 18), + [1753] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_temp_table_definition, 5), + [1755] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_temp_table_definition, 5), + [1757] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 5, .production_id = 12), + [1759] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_output_close_statement, 5, .production_id = 16), + [1761] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_output_close_statement, 5, .production_id = 17), + [1763] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_output_stream_statement, 5, .production_id = 11), + [1765] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_repeat_statement, 5), + [1767] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interface_statement, 5, .production_id = 18), + [1769] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_on_statement, 5), + [1771] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_undo_statement, 5, .production_id = 20), + [1773] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_qualified_name_repeat1, 2), SHIFT_REPEAT(3675), + [1776] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_statement, 5), + [1778] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_statement, 5), + [1780] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_undo_statement, 5), + [1782] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_undo_statement, 5, .production_id = 21), + [1784] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_do_block, 5), + [1786] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_do_block, 5), + [1788] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_undo_statement, 5, .production_id = 21), + [1790] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_undo_statement, 5), + [1792] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_undo_statement, 5, .production_id = 20), + [1794] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_on_statement, 5), + [1796] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_definition, 6, .production_id = 26), + [1798] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variable_definition, 6, .production_id = 26), + [1800] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_definition, 6, .production_id = 27), + [1802] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variable_definition, 6, .production_id = 27), + [1804] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_buffer_definition, 6, .production_id = 28), + [1806] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_buffer_definition, 6, .production_id = 28), + [1808] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_temp_table_definition, 6), + [1810] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_temp_table_definition, 6), + [1812] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_query_definition, 6, .production_id = 29), + [1814] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_query_definition, 6, .production_id = 29), + [1816] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_statement, 5, .production_id = 18), + [1818] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__stream_statement, 1), + [1820] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__stream_statement, 1), + [1822] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abl_statement, 2, .production_id = 1), + [1824] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abl_statement, 2, .production_id = 1), + [1826] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_repeat_statement, 5), + [1828] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_output_stream_statement, 5, .production_id = 11), + [1830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4293), + [1832] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__terminated_statement, 1), + [1834] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_output_close_statement, 5, .production_id = 17), + [1836] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_do_block, 10), + [1838] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_do_block, 10), + [1840] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_output_close_statement, 5, .production_id = 16), + [1842] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 5, .production_id = 12), + [1844] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_statement, 5, .production_id = 18), + [1846] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_definition, 7, .production_id = 26), + [1848] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variable_definition, 7, .production_id = 26), + [1850] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_definition, 7, .production_id = 27), + [1852] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variable_definition, 7, .production_id = 27), + [1854] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_buffer_definition, 7, .production_id = 37), + [1856] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_buffer_definition, 7, .production_id = 37), + [1858] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_query_definition, 12, .production_id = 42), + [1860] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_temp_table_definition, 7), + [1862] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_temp_table_definition, 7), + [1864] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_query_definition, 7, .production_id = 29), + [1866] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_query_definition, 7, .production_id = 29), + [1868] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_query_definition, 11, .production_id = 42), + [1870] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_input_close_statement, 5, .production_id = 17), + [1872] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_query_definition, 11, .production_id = 29), + [1874] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_definition, 7, .production_id = 39), + [1876] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variable_definition, 7, .production_id = 39), + [1878] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_definition, 7, .production_id = 40), + [1880] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variable_definition, 7, .production_id = 40), + [1882] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_buffer_definition, 7, .production_id = 41), + [1884] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_buffer_definition, 7, .production_id = 41), + [1886] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_query_definition, 10, .production_id = 42), + [1888] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_query_definition, 10, .production_id = 29), + [1890] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 10, .production_id = 34), + [1892] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 10, .production_id = 34), + [1894] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_query_definition, 7, .production_id = 42), + [1896] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_query_definition, 7, .production_id = 42), + [1898] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_query_definition, 9, .production_id = 42), + [1900] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_temp_table_definition, 9), + [1902] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_query_definition, 9, .production_id = 29), + [1904] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_on_statement, 10), + [1906] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_on_statement, 10), + [1908] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_query_definition, 8, .production_id = 42), + [1910] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_buffer_definition, 8, .production_id = 47), + [1912] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_temp_table_definition, 8), + [1914] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_temp_table_definition, 8), + [1916] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variable_definition, 8, .production_id = 40), + [1918] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_query_definition, 8, .production_id = 29), + [1920] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_query_definition, 8, .production_id = 29), + [1922] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variable_definition, 8, .production_id = 39), + [1924] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_definition, 8, .production_id = 39), + [1926] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_definition, 8, .production_id = 40), + [1928] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_buffer_definition, 8, .production_id = 47), + [1930] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_query_definition, 8, .production_id = 42), + [1932] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment, 3), + [1934] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_repeat_statement, 10), + [1936] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_repeat_statement, 10), + [1938] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_repeat_statement, 11), + [1940] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_repeat_statement, 11), + [1942] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_return_statement, 2), + [1944] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assign_statement, 2), + [1946] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_input_stream_statement, 5, .production_id = 11), + [1948] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_assignment, 2), + [1950] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_query_definition, 9, .production_id = 29), + [1952] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_temp_table_definition, 9), + [1954] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_if_statement_repeat1, 1), + [1956] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_query_definition, 9, .production_id = 42), + [1958] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 9, .production_id = 12), + [1960] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_repeat_statement, 9), + [1962] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_call_statement, 2), + [1964] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_on_statement, 9), + [1966] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_if_statement_repeat1, 1), + [1968] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_do_block, 9), + [1970] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 9, .production_id = 34), + [1972] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_query_definition, 10, .production_id = 29), + [1974] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_query_definition, 10, .production_id = 42), + [1976] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 10, .production_id = 12), + [1978] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1449), + [1980] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assign_statement, 4), + [1982] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_query_definition, 11, .production_id = 29), + [1984] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_on_statement, 9), + [1986] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_find_statement, 4, .production_id = 12), + [1988] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_query_definition, 11, .production_id = 42), + [1990] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 10, .production_id = 12), + [1992] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_find_statement, 4, .production_id = 10), + [1994] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_query_definition, 12, .production_id = 42), + [1996] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 12, .production_id = 12), + [1998] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 12, .production_id = 34), + [2000] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 13, .production_id = 12), + [2002] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 14, .production_id = 12), + [2004] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 14, .production_id = 34), + [2006] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 15, .production_id = 12), + [2008] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 15, .production_id = 34), + [2010] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 16, .production_id = 34), + [2012] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 16, .production_id = 34), + [2014] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_statement, 4), + [2016] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__case_terminator, 1), + [2018] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 9, .production_id = 12), + [2020] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_do_block, 4), + [2022] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_undo_statement, 4), + [2024] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_repeat_statement, 4), + [2026] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__block_terminator, 2), + [2028] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_input_close_statement, 5, .production_id = 16), + [2030] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_else_if_statement, 5, .production_id = 54), + [2032] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_output_stream_statement, 4, .production_id = 11), + [2034] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_stream_definition, 4), + [2036] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 15, .production_id = 34), + [2038] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 9, .production_id = 34), + [2040] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_repeat_statement, 9), + [2042] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 15, .production_id = 12), + [2044] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 12, .production_id = 12), + [2046] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_input_stream_statement, 4, .production_id = 11), + [2048] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_object_access_repeat1, 2, .production_id = 8), SHIFT_REPEAT(4233), + [2051] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 14, .production_id = 34), + [2053] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abl_statement, 3, .production_id = 1), + [2055] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 14, .production_id = 12), + [2057] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_input_close_statement, 3), + [2059] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 13, .production_id = 34), + [2061] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 13, .production_id = 12), + [2063] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 12, .production_id = 34), + [2065] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_output_close_statement, 3), + [2067] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_repeat_statement, 3), + [2069] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_do_block, 9), + [2071] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_error_scope_statement, 3), + [2073] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assign_statement, 3), + [2075] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_return_statement, 3), + [2077] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_find_statement, 3, .production_id = 10), + [2079] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_do_block, 3), + [2081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(572), + [2083] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_finally_statement, 6), + [2085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(472), + [2087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(371), + [2089] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__procedure_terminator, 3), + [2091] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_procedure_statement, 6), + [2093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(460), + [2095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3632), + [2097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(771), + [2099] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_catch_statement, 8, .production_id = 51), + [2101] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_catch_statement, 8, .production_id = 51), + [2103] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_catch_statement, 8, .production_id = 45), + [2105] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_catch_statement, 8, .production_id = 45), + [2107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(422), + [2109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3035), + [2111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(181), + [2113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3209), + [2115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(380), + [2117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4498), + [2119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2695), + [2121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2121), + [2123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(43), + [2125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(261), + [2127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(208), + [2129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2106), + [2131] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_finally_statement, 4), + [2133] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_finally_statement, 4), + [2135] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_finally_statement, 6), + [2137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(715), + [2139] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_label, 2), + [2141] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_label, 2), + [2143] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_statement, 9, .production_id = 50), + [2145] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_statement, 9, .production_id = 50), + [2147] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__statement, 1), + [2149] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__statement, 1), + [2151] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_statement, 8, .production_id = 50), + [2153] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_statement, 8, .production_id = 50), + [2155] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__function_terminator, 1), + [2157] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__function_terminator, 1), + [2159] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_catch_statement, 9, .production_id = 45), + [2161] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_catch_statement, 9, .production_id = 45), + [2163] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_catch_statement, 9, .production_id = 51), + [2165] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_catch_statement, 9, .production_id = 51), + [2167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(374), + [2169] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3195), + [2171] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1890), + [2173] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1830), + [2175] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_procedure_parameter_definition, 7), + [2177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4748), + [2179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(104), + [2181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(246), + [2183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1617), + [2185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(441), + [2187] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_finally_statement, 5), + [2189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(513), + [2191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(416), + [2193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(353), + [2195] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_using_statement, 5), + [2197] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_procedure_statement, 5), + [2199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1136), + [2201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1574), + [2203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(481), + [2205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(168), + [2207] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_finally_statement, 5), + [2209] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_procedure_parameter_definition, 8), + [2211] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_procedure_parameter_definition, 8), + [2213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(180), + [2215] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__function_terminator, 3), + [2217] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__function_terminator, 3), + [2219] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_statement, 10, .production_id = 50), + [2221] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_statement, 10, .production_id = 50), + [2223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(392), + [2225] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_catch_statement, 10, .production_id = 51), + [2227] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_catch_statement, 10, .production_id = 51), + [2229] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_procedure_statement, 4), + [2231] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_procedure_statement, 4), + [2233] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_using_statement, 5), + [2235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(115), + [2237] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_catch_statement, 7, .production_id = 45), + [2239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(398), + [2241] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1559), + [2243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(71), + [2245] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_catch_statement, 7, .production_id = 45), + [2247] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_source_code_repeat1, 1), + [2249] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_source_code_repeat1, 1), + [2251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(333), + [2253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1163), + [2255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(269), + [2257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(345), + [2259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1522), + [2261] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_using_statement, 3), [2263] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_using_statement, 3), - [2265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(75), - [2267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(940), - [2269] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_procedure_parameter_definition, 7), - [2271] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_procedure_parameter_definition, 7), - [2273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(441), - [2275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(161), - [2277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(368), - [2279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(352), - [2281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(158), - [2283] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_catch_statement, 8, .production_id = 45), - [2285] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_catch_statement, 8, .production_id = 45), - [2287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(351), - [2289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(336), - [2291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(128), - [2293] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1560), - [2295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(749), - [2297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(25), - [2299] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_procedure_statement, 4), - [2301] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_finally_statement, 5), - [2303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(487), - [2305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(706), - [2307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(451), - [2309] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_using_statement, 3), - [2311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4725), - [2313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3495), - [2315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1381), - [2317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(566), - [2319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(358), - [2321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1580), - [2323] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3077), - [2325] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1992), - [2327] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1821), - [2329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(450), - [2331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4464), - [2333] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_primitive_type, 2), - [2335] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_primitive_type, 2), - [2337] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1603), - [2339] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_phrase, 2, .production_id = 30), - [2341] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1585), - [2343] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4734), - [2345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4655), - [2347] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4655), - [2349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4656), - [2351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4585), - [2353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4657), - [2355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4734), - [2357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4581), - [2359] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1586), - [2361] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1615), - [2363] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4692), - [2365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4691), - [2367] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4691), - [2369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4690), - [2371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4688), - [2373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4687), - [2375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4692), - [2377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4686), + [2265] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_statement, 11, .production_id = 50), + [2267] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_statement, 11, .production_id = 50), + [2269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(337), + [2271] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_procedure_statement, 5), + [2273] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_method_definition_repeat1, 2), + [2275] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_method_definition_repeat1, 2), SHIFT_REPEAT(1603), + [2278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(344), + [2280] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1561), + [2282] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1563), + [2284] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_qualified_name_repeat1, 2), SHIFT_REPEAT(3688), + [2287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(388), + [2289] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_procedure_parameter_definition, 7), + [2291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(259), + [2293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(239), + [2295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(340), + [2297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(99), + [2299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2102), + [2301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1267), + [2303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(171), + [2305] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1564), + [2307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(357), + [2309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(400), + [2311] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_access_tuning, 1), + [2313] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_access_tuning, 1), + [2315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(248), + [2317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(888), + [2319] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_procedure_statement, 6), + [2321] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__procedure_terminator, 3), + [2323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2060), + [2325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(405), + [2327] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3193), + [2329] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1911), + [2331] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1838), + [2333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2136), + [2335] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1632), + [2337] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_phrase, 2, .production_id = 30), + [2339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4756), + [2341] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_primitive_type, 2), + [2343] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_primitive_type, 2), + [2345] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1625), + [2347] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4815), + [2349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4736), + [2351] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4736), + [2353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4737), + [2355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4723), + [2357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4738), + [2359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4815), + [2361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4719), + [2363] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4773), + [2365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4772), + [2367] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4772), + [2369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4771), + [2371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4769), + [2373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4768), + [2375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4773), + [2377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4767), [2379] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_tuning, 1), [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(3808), - [2389] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1635), - [2391] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3809), - [2393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(173), - [2395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(187), - [2397] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_definition, 5, .production_id = 46), - [2399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(377), - [2401] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_property_definition, 5, .production_id = 46), - [2403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4245), - [2405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3918), - [2407] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__comparison_operator, 1), - [2409] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_definition, 7, .production_id = 55), - [2411] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_property_definition, 7, .production_id = 55), - [2413] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__additive_operator, 1), - [2415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(119), - [2417] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__multiplicative_operator, 1), - [2419] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__logical_operator, 1), - [2421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(61), - [2423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(199), - [2425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(226), - [2427] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_accumulate_aggregate, 1), - [2429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(228), - [2431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(58), - [2433] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_definition, 8, .production_id = 57), - [2435] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_property_definition, 8, .production_id = 57), - [2437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(192), - [2439] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_definition, 6, .production_id = 52), - [2441] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_property_definition, 6, .production_id = 52), - [2443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(184), - [2445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(116), - [2447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(200), - [2449] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_phrase, 3, .production_id = 30), - [2451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(87), - [2453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(193), - [2455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(72), - [2457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(182), - [2459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(214), - [2461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(154), - [2463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(73), - [2465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(208), - [2467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3412), - [2469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4707), - [2471] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4707), - [2473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4708), - [2475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4113), - [2477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4709), - [2479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4295), - [2481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(952), - [2483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1518), - [2485] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_definition, 9), - [2487] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_property_definition, 9), - [2489] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_definition, 9, .production_id = 57), - [2491] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_property_definition, 9, .production_id = 57), - [2493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1074), - [2495] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_phrase, 4, .production_id = 30), - [2497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4721), - [2499] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4721), - [2501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4722), - [2503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4278), - [2505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4723), - [2507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4112), - [2509] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_definition, 8), - [2511] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_property_definition, 8), - [2513] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_definition, 8, .production_id = 55), - [2515] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_property_definition, 8, .production_id = 55), - [2517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3456), - [2519] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_definition, 6), - [2521] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_property_definition, 6), - [2523] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_definition, 6, .production_id = 46), - [2525] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_property_definition, 6, .production_id = 46), - [2527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4279), - [2529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1238), - [2531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1022), - [2533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1147), - [2535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1324), - [2537] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_output_stream_tuning, 1), - [2539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(483), - [2541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(519), - [2543] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_output_stream_statement_repeat1, 2), - [2545] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_output_stream_statement_repeat1, 2), SHIFT_REPEAT(404), - [2548] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_output_stream_statement_repeat1, 2), SHIFT_REPEAT(1816), - [2551] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_output_stream_statement_repeat1, 2), SHIFT_REPEAT(1724), - [2554] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_definition, 5), - [2556] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_property_definition, 5), - [2558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1010), - [2560] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_definition, 7), - [2562] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_property_definition, 7), - [2564] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_definition, 7, .production_id = 52), - [2566] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_property_definition, 7, .production_id = 52), - [2568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(84), - [2570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(201), - [2572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(64), - [2574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(222), - [2576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(188), - [2578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(213), - [2580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(77), - [2582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(104), - [2584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(102), - [2586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(209), - [2588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(100), - [2590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(120), - [2592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(125), - [2594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(94), - [2596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(169), - [2598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(144), - [2600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(109), - [2602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(162), - [2604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(63), - [2606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(174), - [2608] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_of, 2), - [2610] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_output_stream_statement_repeat1, 1), - [2612] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_phrase, 6, .production_id = 30), + [2383] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1623), + [2385] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1624), + [2387] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_primitive_type, 1), + [2389] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_primitive_type, 1), + [2391] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3894), + [2393] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1642), + [2395] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3896), + [2397] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__logical_operator, 1), + [2399] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__multiplicative_operator, 1), + [2401] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__additive_operator, 1), + [2403] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__comparison_operator, 1), + [2405] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_definition, 5, .production_id = 46), + [2407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(482), + [2409] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_property_definition, 5, .production_id = 46), + [2411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4275), + [2413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4077), + [2415] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_accumulate_aggregate, 1), + [2417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(236), + [2419] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_definition, 8, .production_id = 57), + [2421] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_property_definition, 8, .production_id = 57), + [2423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(164), + [2425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(111), + [2427] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_definition, 6, .production_id = 52), + [2429] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_property_definition, 6, .production_id = 52), + [2431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(230), + [2433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(189), + [2435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(209), + [2437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(174), + [2439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(176), + [2441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(87), + [2443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(110), + [2445] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_definition, 7, .production_id = 55), + [2447] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_property_definition, 7, .production_id = 55), + [2449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(233), + [2451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(158), + [2453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(94), + [2455] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_phrase, 3, .production_id = 30), + [2457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(193), + [2459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(102), + [2461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(167), + [2463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(105), + [2465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(226), + [2467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(186), + [2469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(119), + [2471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4802), + [2473] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4802), + [2475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4803), + [2477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4348), + [2479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4804), + [2481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4227), + [2483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3628), + [2485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1261), + [2487] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_output_stream_tuning, 1), + [2489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(510), + [2491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(506), + [2493] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_definition, 6), + [2495] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_property_definition, 6), + [2497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1396), + [2499] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_definition, 8), + [2501] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_property_definition, 8), + [2503] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_definition, 6, .production_id = 46), + [2505] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_property_definition, 6, .production_id = 46), + [2507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4349), + [2509] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_definition, 8, .production_id = 55), + [2511] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_property_definition, 8, .production_id = 55), + [2513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1325), + [2515] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_output_stream_statement_repeat1, 2), + [2517] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_output_stream_statement_repeat1, 2), SHIFT_REPEAT(410), + [2520] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_output_stream_statement_repeat1, 2), SHIFT_REPEAT(1825), + [2523] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_output_stream_statement_repeat1, 2), SHIFT_REPEAT(1711), + [2526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4788), + [2528] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4788), + [2530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4789), + [2532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4229), + [2534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4790), + [2536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4451), + [2538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3577), + [2540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(976), + [2542] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_definition, 7), + [2544] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_property_definition, 7), + [2546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1303), + [2548] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_definition, 5), + [2550] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_property_definition, 5), + [2552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1004), + [2554] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_definition, 9), + [2556] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_property_definition, 9), + [2558] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_phrase, 4, .production_id = 30), + [2560] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_definition, 9, .production_id = 57), + [2562] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_property_definition, 9, .production_id = 57), + [2564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(868), + [2566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(931), + [2568] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_definition, 7, .production_id = 52), + [2570] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_property_definition, 7, .production_id = 52), + [2572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(121), + [2574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(98), + [2576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(90), + [2578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(86), + [2580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(157), + [2582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(153), + [2584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(163), + [2586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(67), + [2588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(223), + [2590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(225), + [2592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(195), + [2594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(150), + [2596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(68), + [2598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(220), + [2600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(93), + [2602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(114), + [2604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(229), + [2606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(190), + [2608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(123), + [2610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(129), + [2612] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_of, 2), [2614] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_phrase, 5, .production_id = 30), - [2616] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2859), - [2618] = {.entry = {.count = 1, .reusable = false}}, SHIFT(159), - [2620] = {.entry = {.count = 1, .reusable = false}}, SHIFT(443), - [2622] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3098), - [2624] = {.entry = {.count = 1, .reusable = false}}, SHIFT(410), - [2626] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2948), - [2628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3830), - [2630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(734), - [2632] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1767), - [2634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(751), - [2636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2746), - [2638] = {.entry = {.count = 1, .reusable = false}}, SHIFT(152), - [2640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3784), - [2642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3979), - [2644] = {.entry = {.count = 1, .reusable = false}}, SHIFT(95), - [2646] = {.entry = {.count = 1, .reusable = false}}, SHIFT(141), - [2648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3749), - [2650] = {.entry = {.count = 1, .reusable = false}}, SHIFT(127), - [2652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3804), - [2654] = {.entry = {.count = 1, .reusable = false}}, SHIFT(202), - [2656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3856), - [2658] = {.entry = {.count = 1, .reusable = false}}, SHIFT(124), - [2660] = {.entry = {.count = 1, .reusable = false}}, SHIFT(175), - [2662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3883), - [2664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3761), - [2666] = {.entry = {.count = 1, .reusable = false}}, SHIFT(133), - [2668] = {.entry = {.count = 3, .reusable = true}}, REDUCE(aux_sym_variable_definition_repeat1, 1), REDUCE(aux_sym_buffer_definition_repeat1, 1), SHIFT(1268), - [2672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4042), - [2674] = {.entry = {.count = 1, .reusable = false}}, SHIFT(179), - [2676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3805), - [2678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1078), - [2680] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_variable_definition_repeat1, 2), SHIFT_REPEAT(1856), - [2683] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_variable_definition_repeat1, 2), SHIFT_REPEAT(1268), - [2686] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_variable_definition_repeat1, 2), SHIFT_REPEAT(1941), - [2689] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_variable_definition_repeat1, 2), - [2691] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_variable_definition_repeat1, 2), - [2693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1367), - [2695] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_class_body_repeat1, 2), - [2697] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_body_repeat1, 2), SHIFT_REPEAT(734), - [2700] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 2), SHIFT_REPEAT(1767), - [2703] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_body_repeat1, 2), SHIFT_REPEAT(751), - [2706] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_body_repeat1, 2), SHIFT_REPEAT(2746), - [2709] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_body, 1), - [2711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1546), - [2713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2440), - [2715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1839), - [2717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2442), - [2719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2443), - [2721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2445), - [2723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2446), - [2725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2447), - [2727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3490), - [2729] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_property_definition_repeat2, 2), - [2731] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_property_definition_repeat2, 2), SHIFT_REPEAT(377), - [2734] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_property_definition_repeat2, 2), SHIFT_REPEAT(1882), - [2737] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_property_definition_repeat2, 2), - [2739] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_property_definition_repeat2, 2), SHIFT_REPEAT(3166), - [2742] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_sort_column, 1, .production_id = 19), - [2744] = {.entry = {.count = 1, .reusable = false}}, SHIFT(304), - [2746] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2584), - [2748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3624), - [2750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1037), - [2752] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_query_tuning, 1), - [2754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4699), - [2756] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4699), - [2758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4261), - [2760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1370), - [2762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1823), - [2764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4569), - [2766] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4569), - [2768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4563), - [2770] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scope_tuning, 1), - [2772] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scope_tuning, 1), - [2774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1289), - [2776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4713), - [2778] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4713), - [2780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4105), - [2782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(993), - [2784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4662), - [2786] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4662), - [2788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4546), - [2790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1834), - [2792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1820), - [2794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4727), - [2796] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4727), - [2798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4305), - [2800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(949), - [2802] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_query_tuning, 2), - [2804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1822), - [2806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3471), - [2808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1568), - [2810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(704), - [2812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(34), - [2814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(758), - [2816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1202), - [2818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(765), - [2820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(752), - [2822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1625), - [2824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(570), - [2826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(769), - [2828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1619), - [2830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1223), - [2832] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_tuning, 1), - [2834] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_property_tuning, 1), - [2836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1225), - [2838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1559), - [2840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1576), - [2842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(562), - [2844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(26), - [2846] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_can_find_expression_repeat2, 2), - [2848] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_can_find_expression_repeat2, 2), SHIFT_REPEAT(1851), - [2851] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_can_find_expression_repeat2, 2), SHIFT_REPEAT(3850), - [2854] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_can_find_expression_repeat2, 2), SHIFT_REPEAT(417), - [2857] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_can_find_expression_repeat2, 2), SHIFT_REPEAT(4489), - [2860] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_can_find_expression_repeat2, 2), SHIFT_REPEAT(3724), - [2863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1610), - [2865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1551), - [2867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(574), - [2869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1614), - [2871] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_property_definition_repeat2, 1), - [2873] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_property_definition_repeat2, 1), - [2875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(719), - [2877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(560), - [2879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(24), - [2881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(28), - [2883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(713), - [2885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1244), - [2887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(715), - [2889] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_property_definition_repeat3, 2), - [2891] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_property_definition_repeat3, 2), SHIFT_REPEAT(1268), - [2894] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_property_definition_repeat3, 2), - [2896] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_property_definition_repeat3, 2), SHIFT_REPEAT(4245), - [2899] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_property_definition_repeat3, 2), SHIFT_REPEAT(3918), - [2902] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_statement_repeat1, 2), SHIFT_REPEAT(2440), - [2905] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_class_statement_repeat1, 2), - [2907] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_statement_repeat1, 2), SHIFT_REPEAT(2442), - [2910] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_statement_repeat1, 2), SHIFT_REPEAT(2443), - [2913] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_statement_repeat1, 2), SHIFT_REPEAT(2445), - [2916] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_statement_repeat1, 2), SHIFT_REPEAT(2446), - [2919] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_statement_repeat1, 2), SHIFT_REPEAT(2447), - [2922] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_definition, 8, .production_id = 52), - [2924] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_property_definition, 8, .production_id = 52), - [2926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1830), - [2928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1826), - [2930] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_definition, 9, .production_id = 55), - [2932] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_property_definition, 9, .production_id = 55), - [2934] = {.entry = {.count = 1, .reusable = false}}, SHIFT(315), - [2936] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2931), - [2938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3636), - [2940] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_definition, 7, .production_id = 46), - [2942] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_property_definition, 7, .production_id = 46), - [2944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1833), - [2946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1837), - [2948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1828), - [2950] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_for_phrase_repeat1, 2), - [2952] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_phrase_repeat1, 2), SHIFT_REPEAT(1851), - [2955] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_phrase_repeat1, 2), SHIFT_REPEAT(4489), - [2958] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_definition, 10, .production_id = 57), - [2960] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_property_definition, 10, .production_id = 57), - [2962] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_definition, 10), - [2964] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_property_definition, 10), - [2966] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_serialization_tuning, 1), - [2968] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_serialization_tuning, 1), - [2970] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_definition, 4, .production_id = 38), - [2972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(448), - [2974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2820), - [2976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3325), - [2978] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_can_find_expression_repeat2, 2, .production_id = 15), - [2980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3928), - [2982] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_can_find_expression_repeat2, 1, .production_id = 15), - [2984] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1923), - [2986] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_index_definition, 3), - [2988] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3219), - [2990] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__pre_tuning, 1), - [2992] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_index_definition, 2), - [2994] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_can_find_expression_repeat1, 2), - [2996] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_can_find_expression_repeat1, 2), SHIFT_REPEAT(3928), - [2999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(130), - [3001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(443), - [3003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3098), - [3005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(410), - [3007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2948), - [3009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1183), - [3011] = {.entry = {.count = 1, .reusable = false}}, SHIFT(105), - [3013] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3072), - [3015] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_for_phrase_repeat1, 1), - [3017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4700), - [3019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4701), - [3021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4663), - [3023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4664), - [3025] = {.entry = {.count = 1, .reusable = false}}, SHIFT(90), - [3027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1447), - [3029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1071), - [3031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1256), - [3033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2479), - [3035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3743), - [3037] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3769), - [3039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4428), - [3041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4425), - [3043] = {.entry = {.count = 1, .reusable = false}}, SHIFT(177), - [3045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4562), - [3047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4560), - [3049] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_qualified_name_repeat1, 2), SHIFT_REPEAT(3624), - [3052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(133), - [3054] = {.entry = {.count = 1, .reusable = false}}, SHIFT(131), - [3056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2391), - [3058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3991), - [3060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1058), - [3062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4051), - [3064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4728), - [3066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4729), - [3068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(171), - [3070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1040), - [3072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(202), - [3074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1038), - [3076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2467), - [3078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3957), - [3080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1239), - [3082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3864), - [3084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(172), - [3086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1330), - [3088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3710), - [3090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1496), - [3092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3995), - [3094] = {.entry = {.count = 1, .reusable = false}}, SHIFT(219), - [3096] = {.entry = {.count = 1, .reusable = false}}, SHIFT(178), - [3098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(179), - [3100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(946), - [3102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1031), - [3104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1026), - [3106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4011), - [3108] = {.entry = {.count = 1, .reusable = false}}, SHIFT(135), - [3110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(991), - [3112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2429), - [3114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3927), - [3116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(152), - [3118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3417), - [3120] = {.entry = {.count = 1, .reusable = false}}, SHIFT(149), - [3122] = {.entry = {.count = 1, .reusable = false}}, SHIFT(132), - [3124] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_variable_definition_repeat1, 1), SHIFT(1268), - [3127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1291), - [3129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1008), - [3131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(159), - [3133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1522), - [3135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3765), - [3137] = {.entry = {.count = 1, .reusable = false}}, SHIFT(160), - [3139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(176), - [3141] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_input_stream_statement_repeat1, 2), - [3143] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_input_stream_statement_repeat1, 2), SHIFT_REPEAT(359), - [3146] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_input_stream_statement_repeat1, 2), SHIFT_REPEAT(2143), - [3149] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_input_stream_statement_repeat1, 2), SHIFT_REPEAT(2019), - [3152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(994), - [3154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3970), - [3156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(857), - [3158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3796), - [3160] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_buffer_definition_repeat1, 2), SHIFT_REPEAT(1856), - [3163] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_buffer_definition_repeat1, 2), SHIFT_REPEAT(1268), - [3166] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_buffer_definition_repeat1, 2), - [3168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(903), - [3170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3852), - [3172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1260), - [3174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3441), - [3176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(964), - [3178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4714), - [3180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4715), - [3182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1448), - [3184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3472), - [3186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1159), - [3188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3781), - [3190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(967), - [3192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3825), - [3194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1332), - [3196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3467), - [3198] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_input_stream_tuning, 1), - [3200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(511), - [3202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(512), - [3204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1379), - [3206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(101), - [3208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1459), - [3210] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2174), - [3212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(99), - [3214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1185), - [3216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(136), - [3218] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__using_and, 4, .production_id = 13), - [3220] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__using_first, 2, .production_id = 7), - [3222] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_can_find_expression_repeat1, 1, .production_id = 15), - [3224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3652), - [3226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1249), - [3228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3443), - [3230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(68), - [3232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3740), - [3234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(873), - [3236] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1936), - [3238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3773), - [3240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(975), - [3242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4055), - [3244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(62), - [3246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3812), - [3248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(163), - [3250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1490), - [3252] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_inherits, 2), - [3254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2489), - [3256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4006), - [3258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1660), - [3260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3420), - [3262] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2175), - [3264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(156), - [3266] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_definition, 5, .production_id = 38), - [3268] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_definition, 5), - [3270] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_sort_clause_repeat1, 2), SHIFT_REPEAT(1849), - [3273] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_sort_clause_repeat1, 2), - [3275] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_implements, 2), - [3277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1009), - [3279] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_field_definition_repeat1, 2), - [3281] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_field_definition_repeat1, 2), SHIFT_REPEAT(448), - [3284] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_field_definition_repeat1, 2), SHIFT_REPEAT(2820), - [3287] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_field_definition_repeat1, 2), SHIFT_REPEAT(3325), - [3290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3913), - [3292] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1849), - [3294] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_sort_clause, 2), - [3296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3818), - [3298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1039), - [3300] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__using_and, 2, .production_id = 7), - [3302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(220), - [3304] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__using_first, 4, .production_id = 13), - [3306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3834), - [3308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3890), - [3310] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_sort_clause, 3), - [3312] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_definition, 4), - [3314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1067), - [3316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3795), - [3318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(112), - [3320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(78), - [3322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1311), - [3324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(231), - [3326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(148), - [3328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(218), - [3330] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_setter, 3), - [3332] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_setter, 3), - [3334] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_getter, 3), - [3336] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_getter, 3), - [3338] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2437), - [3340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(197), - [3342] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_input_stream_statement_repeat1, 1), - [3344] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_setter, 2), - [3346] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_setter, 2), - [3348] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_getter, 2), - [3350] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_getter, 2), - [3352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(190), - [3354] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_qualified_name_repeat1, 2), SHIFT_REPEAT(3636), - [3357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(74), - [3359] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2525), - [3361] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_body, 1), - [3363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(91), - [3365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2), - [3367] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2435), - [3369] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_phrase, 7, .production_id = 30), - [3371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(123), - [3373] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_can_find_expression_repeat2, 1), - [3375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(774), - [3377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(599), - [3379] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_interface_body_repeat1, 2), - [3381] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_interface_body_repeat1, 2), SHIFT_REPEAT(873), - [3384] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_interface_body_repeat1, 2), SHIFT_REPEAT(1936), - [3387] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_interface_body_repeat1, 2), SHIFT_REPEAT(751), - [3390] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2401), - [3392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(782), - [3394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(817), - [3396] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_property_definition_repeat3, 1), - [3398] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_property_definition_repeat3, 1), - [3400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(93), - [3402] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_setter, 7), - [3404] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_setter, 7), - [3406] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_inherits_repeat1, 2), - [3408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(194), - [3410] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_setter, 8), - [3412] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_setter, 8), - [3414] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_setter, 9), - [3416] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_setter, 9), - [3418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(530), - [3420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(225), - [3422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(623), - [3424] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2469), - [3426] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_setter, 10), - [3428] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_setter, 10), - [3430] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_setter, 11), - [3432] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_setter, 11), - [3434] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2367), - [3436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1513), - [3438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(465), - [3440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2519), - [3442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(933), - [3444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1237), - [3446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1470), - [3448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1089), - [3450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1088), - [3452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(932), - [3454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3395), - [3456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1261), - [3458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(918), - [3460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1286), - [3462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1288), - [3464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1161), - [3466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1162), - [3468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(996), - [3470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1534), - [3472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2529), - [3474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2532), - [3476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1530), - [3478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1528), - [3480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(943), - [3482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(846), - [3484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1064), - [3486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(944), - [3488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2538), - [3490] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_field_definition_repeat1, 1), - [3492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2539), - [3494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1506), - [3496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1270), - [3498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1497), - [3500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1485), - [3502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3404), - [3504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3405), - [3506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1484), - [3508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1176), - [3510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(956), - [3512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(957), - [3514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1356), - [3516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1544), - [3518] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_sort_clause_repeat1, 2), SHIFT_REPEAT(1923), - [3521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1468), - [3523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1361), - [3525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(961), - [3527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(965), - [3529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(905), - [3531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(962), - [3533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1101), - [3535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1075), - [3537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(858), - [3539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1066), - [3541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1242), - [3543] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2366), - [3545] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_variable_definition_repeat2, 2), - [3547] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_variable_definition_repeat2, 2), SHIFT_REPEAT(465), - [3550] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_variable_definition_repeat2, 2), SHIFT_REPEAT(2519), - [3553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3422), - [3555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(977), - [3557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1376), - [3559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1377), - [3561] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_index_definition, 4), - [3563] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_inherits, 3), - [3565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1394), - [3567] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_implements, 3), - [3569] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_inherits_repeat1, 2), SHIFT_REPEAT(2489), - [3572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2509), - [3574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1352), - [3576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1433), - [3578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2508), - [3580] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_temp_table_tuning, 2), - [3582] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_temp_table_tuning, 2), - [3584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2493), - [3586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(863), - [3588] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_temp_table_definition_repeat1, 2), - [3590] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_temp_table_definition_repeat1, 2), SHIFT_REPEAT(2479), - [3593] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_temp_table_definition_repeat1, 2), SHIFT_REPEAT(3769), - [3596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2503), - [3598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(867), - [3600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(997), - [3602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1236), - [3604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4100), - [3606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1240), - [3608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(992), - [3610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3220), - [3612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2977), - [3614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3973), - [3616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3972), - [3618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1455), - [3620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3984), - [3622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3986), - [3624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2511), - [3626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3989), - [3628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3990), - [3630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2514), - [3632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(856), - [3634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3801), - [3636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3800), - [3638] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1840), - [3640] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4670), - [3642] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1865), - [3644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1374), - [3646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(919), - [3648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(969), - [3650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3778), - [3652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3776), - [3654] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_index_definition_repeat1, 2), - [3656] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_index_definition_repeat1, 2), SHIFT_REPEAT(3219), - [3659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1331), - [3661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4074), - [3663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4071), - [3665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(959), - [3667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(954), - [3669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3950), - [3671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3947), - [3673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2927), - [3675] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3253), - [3677] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4749), - [3679] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2992), - [3681] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4644), - [3683] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1847), - [3685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1495), - [3687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1523), - [3689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3806), - [3691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3807), - [3693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2536), - [3695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1097), - [3697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1532), - [3699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2527), - [3701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4012), - [3703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4013), - [3705] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4750), - [3707] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_include_repeat2, 2), SHIFT_REPEAT(2927), - [3710] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_include_repeat2, 2), SHIFT_REPEAT(3253), - [3713] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_include_repeat2, 2), - [3715] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_include_repeat2, 2), SHIFT_REPEAT(2992), - [3718] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_include_repeat2, 2), SHIFT_REPEAT(4644), - [3721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1157), - [3723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3779), - [3725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3780), - [3727] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1845), - [3729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(935), - [3731] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4748), - [3733] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1842), - [3735] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3732), - [3737] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4422), - [3739] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4025), - [3741] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4147), - [3743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(934), - [3745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3923), - [3747] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4493), - [3749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2894), - [3751] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3017), - [3753] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3019), - [3755] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4153), - [3757] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3987), - [3759] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2776), - [3761] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1475), - [3763] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4668), - [3765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1863), - [3767] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_assign_statement_repeat1, 2), SHIFT_REPEAT(2776), - [3770] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_assign_statement_repeat1, 2), - [3772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(165), - [3774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3728), - [3776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(458), - [3778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2807), - [3780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(859), - [3782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3755), - [3784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1854), - [3786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(140), - [3788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(131), - [3790] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4187), - [3792] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4355), - [3794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(117), - [3796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3707), - [3798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3766), - [3800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(912), - [3802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3919), - [3804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2868), - [3806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(149), - [3808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1846), - [3810] = {.entry = {.count = 1, .reusable = false}}, SHIFT(950), - [3812] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4383), - [3814] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3811), - [3816] = {.entry = {.count = 1, .reusable = false}}, SHIFT(901), - [3818] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4304), - [3820] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_serializable, 1), - [3822] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3998), - [3824] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract, 1), - [3826] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_final, 1), - [3828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2061), - [3830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2077), - [3832] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_widget_pool, 1), - [3834] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_class_statement_repeat1, 1), - [3836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1861), - [3838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1133), - [3840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3974), - [3842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(178), - [3844] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_for_phrase_repeat2, 2), - [3846] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_phrase_repeat2, 2), SHIFT_REPEAT(4364), - [3849] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_phrase_repeat2, 2), SHIFT_REPEAT(2594), - [3852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(160), - [3854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(164), - [3856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3017), - [3858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3019), - [3860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3049), - [3862] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1114), - [3864] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4470), - [3866] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4500), - [3868] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3889), - [3870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3855), - [3872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4097), - [3874] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_property_definition_repeat1, 2), - [3876] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_property_definition_repeat1, 2), SHIFT_REPEAT(2825), - [3879] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_property_definition_repeat2, 2), SHIFT_REPEAT(520), - [3882] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4426), - [3884] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4093), - [3886] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_temp_table_tuning, 1), - [3888] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_temp_table_tuning, 1), - [3890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1116), - [3892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3764), - [3894] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_temp_table_definition_repeat1, 1), - [3896] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_temp_table_definition_repeat1, 1), - [3898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(219), - [3900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3829), - [3902] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3506), - [3904] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4320), - [3906] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1363), - [3908] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4216), - [3910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2198), - [3912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2839), - [3914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1489), - [3916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3826), - [3918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2513), - [3920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4029), - [3922] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3791), - [3924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(181), - [3926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2870), - [3928] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1545), - [3930] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4483), - [3932] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3489), - [3934] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4356), - [3936] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1488), - [3938] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4294), - [3940] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_tuning, 1), - [3942] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_variable_definition_repeat2, 1), - [3944] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1077), - [3946] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4413), - [3948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1182), - [3950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3877), - [3952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1453), - [3954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3838), - [3956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2957), - [3958] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_data_relation_repeat1, 2), - [3960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1867), - [3962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2483), - [3964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4041), - [3966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1134), - [3968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3695), - [3970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1181), - [3972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1180), - [3974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1458), - [3976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2463), - [3978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(925), - [3980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2465), - [3982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1372), - [3984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2444), - [3986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(224), - [3988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2497), - [3990] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_data_relation_repeat1, 2), SHIFT_REPEAT(3924), - [3993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2490), - [3995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(958), - [3997] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_index_definition_repeat1, 1), - [3999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1456), - [4001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(211), - [4003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1436), - [4005] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_sort_order, 1), - [4007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1437), - [4009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1480), - [4011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(851), - [4013] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_widget_phrase, 3), - [4015] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4146), - [4017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1849), - [4019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(853), - [4021] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_sort_column, 2, .production_id = 19), - [4023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(66), - [4025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1233), - [4027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(864), - [4029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1423), - [4031] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_do_block_repeat1, 2), - [4033] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_do_block_repeat1, 2), SHIFT_REPEAT(2948), - [4036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1421), - [4038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3924), - [4040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4220), - [4042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1413), - [4044] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_temp_table_definition_repeat2, 2), - [4046] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_temp_table_definition_repeat2, 2), SHIFT_REPEAT(4428), - [4049] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_temp_table_definition_repeat2, 2), SHIFT_REPEAT(4425), - [4052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1281), - [4054] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_body, 1), - [4056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(326), - [4058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1278), - [4060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1357), - [4062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(888), - [4064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1358), - [4066] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_sort_clause_repeat1, 1), - [4068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(891), - [4070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(892), - [4072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2455), - [4074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(850), - [4076] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_query_definition_repeat1, 2), - [4078] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_query_definition_repeat1, 2), SHIFT_REPEAT(3220), - [4081] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_query_definition_repeat1, 2), SHIFT_REPEAT(2977), - [4084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1531), - [4086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(902), - [4088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(906), - [4090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(861), - [4092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(82), - [4094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(153), - [4096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2524), - [4098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(134), - [4100] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_index_tuning, 2), - [4102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(235), - [4104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(185), - [4106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(913), - [4108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(92), - [4110] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_widget_phrase, 2), - [4112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(915), - [4114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2506), - [4116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2453), - [4118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(234), - [4120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(870), - [4122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(930), - [4124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(865), - [4126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(869), - [4128] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_widget_phrase_repeat1, 2), SHIFT_REPEAT(2898), - [4131] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_widget_phrase_repeat1, 2), - [4133] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_widget_phrase_repeat1, 2), SHIFT_REPEAT(4146), - [4136] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_on_statement_repeat1, 2), SHIFT_REPEAT(366), - [4139] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_widget_field, 2), - [4141] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4308), - [4143] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 12, .production_id = 53), - [4145] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 12, .production_id = 53), - [4147] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dataset_definition, 8), - [4149] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dataset_definition, 8), - [4151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(195), - [4153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4522), - [4155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(80), - [4157] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_event_definition, 8), - [4159] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_event_definition, 8), - [4161] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_data_source_definition, 8), - [4163] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_data_source_definition, 8), - [4165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4492), - [4167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2833), - [4169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2459), - [4171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3525), - [4173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2996), - [4175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(166), - [4177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(108), - [4179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(85), - [4181] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4322), - [4183] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4511), - [4185] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_class_body_repeat1, 1), - [4187] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 1), - [4189] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 8, .production_id = 53), - [4191] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 8, .production_id = 53), - [4193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2542), - [4195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3536), - [4197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3048), - [4199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4067), - [4201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3759), - [4203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4066), - [4205] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 8, .production_id = 56), - [4207] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 8, .production_id = 56), - [4209] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constructor_definition, 7), - [4211] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constructor_definition, 7), - [4213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(207), - [4215] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 7, .production_id = 56), - [4217] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 7, .production_id = 56), - [4219] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 7, .production_id = 53), - [4221] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 7, .production_id = 53), - [4223] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 8, .production_id = 58), - [4225] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 8, .production_id = 58), - [4227] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constructor_definition, 8), - [4229] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constructor_definition, 8), - [4231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(81), - [4233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4028), - [4235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3844), - [4237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4027), - [4239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2725), - [4241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(170), - [4243] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_data_source_definition, 7), - [4245] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_data_source_definition, 7), - [4247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(390), - [4249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(118), - [4251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2908), - [4253] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_event_definition, 7), - [4255] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_event_definition, 7), - [4257] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_for_phrase_repeat2, 1), - [4259] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dataset_definition, 7), - [4261] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dataset_definition, 7), - [4263] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_data_source_definition, 5), - [4265] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_data_source_definition, 5), - [4267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(157), - [4269] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_on_statement_repeat2, 2), - [4271] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_on_statement_repeat2, 2), SHIFT_REPEAT(4256), - [4274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3816), - [4276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3819), - [4278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3821), - [4280] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_to_phrase, 5), - [4282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(223), - [4284] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_data_source_definition, 11), - [4286] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_data_source_definition, 11), - [4288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2066), - [4290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(189), - [4292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(236), - [4294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(232), - [4296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3047), - [4298] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 14, .production_id = 58), - [4300] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 14, .production_id = 58), - [4302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(89), - [4304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(107), - [4306] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 13, .production_id = 58), - [4308] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 13, .production_id = 58), - [4310] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_type, 1), - [4312] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 13, .production_id = 56), - [4314] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 13, .production_id = 56), - [4316] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_property_definition_repeat1, 1), - [4318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3841), - [4320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3817), - [4322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3836), - [4324] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_event_definition, 9), - [4326] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_event_definition, 9), - [4328] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_data_source_definition, 9), - [4330] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_data_source_definition, 9), - [4332] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dataset_definition, 9), - [4334] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dataset_definition, 9), - [4336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2049), - [4338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2895), - [4340] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_query_fields, 2), - [4342] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constructor_definition, 12), - [4344] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constructor_definition, 12), - [4346] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 12, .production_id = 58), - [4348] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 12, .production_id = 58), - [4350] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 9, .production_id = 53), - [4352] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 9, .production_id = 53), - [4354] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_query_fields, 3), - [4356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3859), - [4358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3840), - [4360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3858), - [4362] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 9, .production_id = 56), - [4364] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 9, .production_id = 56), - [4366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3911), - [4368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3823), - [4370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3912), - [4372] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 12, .production_id = 56), - [4374] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 12, .production_id = 56), - [4376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2995), - [4378] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_event_definition, 12), - [4380] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_event_definition, 12), - [4382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(420), - [4384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3730), - [4386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4014), - [4388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3731), - [4390] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 9, .production_id = 58), - [4392] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 9, .production_id = 58), - [4394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(150), - [4396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2110), - [4398] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constructor_definition, 9), - [4400] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constructor_definition, 9), - [4402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2054), - [4404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(183), - [4406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4706), - [4408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3702), - [4410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3704), - [4412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3711), - [4414] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_phrase, 8, .production_id = 30), - [4416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(155), - [4418] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 6, .production_id = 53), - [4420] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 6, .production_id = 53), - [4422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3693), - [4424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3937), - [4426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3694), - [4428] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_case_body_repeat1, 2), - [4430] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_body_repeat1, 2), SHIFT_REPEAT(458), - [4433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(97), - [4435] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constructor_definition, 11), - [4437] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constructor_definition, 11), - [4439] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 11, .production_id = 58), - [4441] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 11, .production_id = 58), - [4443] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_event_definition, 10), - [4445] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_event_definition, 10), - [4447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2096), - [4449] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_data_source_definition, 10), - [4451] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_data_source_definition, 10), - [4453] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 11, .production_id = 56), - [4455] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 11, .production_id = 56), - [4457] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dataset_definition, 10), - [4459] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dataset_definition, 10), - [4461] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_widget_field, 1), - [4463] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4223), - [4465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2774), - [4467] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 11, .production_id = 53), - [4469] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 11, .production_id = 53), - [4471] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 10, .production_id = 53), - [4473] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 10, .production_id = 53), - [4475] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 10, .production_id = 56), - [4477] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 10, .production_id = 56), - [4479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3945), - [4481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3770), - [4483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3946), - [4485] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_data_source_definition, 6), - [4487] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_data_source_definition, 6), - [4489] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 10, .production_id = 58), - [4491] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 10, .production_id = 58), - [4493] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constructor_definition, 10), - [4495] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constructor_definition, 10), - [4497] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_event_definition, 11), - [4499] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_event_definition, 11), - [4501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4676), - [4503] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3094), - [4505] = {.entry = {.count = 1, .reusable = false}}, SHIFT(694), - [4507] = {.entry = {.count = 1, .reusable = false}}, SHIFT(691), - [4509] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3083), - [4511] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_phrase, 9, .production_id = 30), - [4513] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1570), - [4515] = {.entry = {.count = 1, .reusable = false}}, SHIFT(710), - [4517] = {.entry = {.count = 1, .reusable = false}}, SHIFT(687), - [4519] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1566), - [4521] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_include_argument, 1, .production_id = 3), - [4523] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_include_argument, 1, .production_id = 3), - [4525] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_include_argument, 1), - [4527] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_include_argument, 1), - [4529] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_include_argument, 1, .production_id = 4), - [4531] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_include_argument, 1, .production_id = 4), - [4533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(434), - [4535] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4508), - [4537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4509), - [4539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4310), - [4541] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4514), - [4543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4515), - [4545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4309), - [4547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(435), - [4549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(113), - [4551] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_include_repeat2, 1), - [4553] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_include_repeat2, 1), - [4555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(482), - [4557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4641), - [4559] = {.entry = {.count = 1, .reusable = false}}, SHIFT(576), - [4561] = {.entry = {.count = 1, .reusable = false}}, SHIFT(44), - [4563] = {.entry = {.count = 1, .reusable = false}}, SHIFT(15), - [4565] = {.entry = {.count = 1, .reusable = false}}, SHIFT(559), - [4567] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1552), - [4569] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_do_block_repeat1, 1), - [4571] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2772), - [4573] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2774), - [4575] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4373), - [4577] = {.entry = {.count = 1, .reusable = false}}, SHIFT(760), - [4579] = {.entry = {.count = 1, .reusable = false}}, SHIFT(279), - [4581] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3703), - [4583] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_do_tuning, 1), - [4585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(391), - [4587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4609), - [4589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1505), - [4591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3698), - [4593] = {.entry = {.count = 1, .reusable = false}}, SHIFT(19), - [4595] = {.entry = {.count = 1, .reusable = false}}, SHIFT(20), - [4597] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1222), - [4599] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_on_error_phrase, 7, .production_id = 48), - [4601] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_on_error_phrase, 7, .production_id = 21), - [4603] = {.entry = {.count = 1, .reusable = false}}, SHIFT(277), - [4605] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3758), - [4607] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_object_access_repeat1, 2, .production_id = 8), SHIFT_REPEAT(4711), - [4610] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2962), - [4612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(480), - [4614] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4615), - [4616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4616), - [4618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4297), - [4620] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4621), - [4622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4622), - [4624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4303), - [4626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(489), - [4628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4016), - [4630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3002), - [4632] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1569), - [4634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(198), - [4636] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3235), - [4638] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_on_quit_phrase, 4), - [4640] = {.entry = {.count = 1, .reusable = false}}, SHIFT(761), - [4642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4007), - [4644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3228), - [4646] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_single_quoted_string_repeat1, 2), SHIFT_REPEAT(3094), - [4649] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_single_quoted_string_repeat1, 2), - [4651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(478), - [4653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4577), - [4655] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_query_definition_tuning, 1), - [4657] = {.entry = {.count = 1, .reusable = false}}, SHIFT(271), - [4659] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3853), - [4661] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_query_definition_repeat1, 1), - [4663] = {.entry = {.count = 1, .reusable = false}}, SHIFT(282), - [4665] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3920), - [4667] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1607), - [4669] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1345), - [4671] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4556), - [4673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4557), - [4675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4299), - [4677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(373), - [4679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(474), - [4681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4538), - [4683] = {.entry = {.count = 1, .reusable = false}}, SHIFT(767), - [4685] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1149), - [4687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(378), - [4689] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4550), - [4691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4551), - [4693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4290), - [4695] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2925), - [4697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(70), - [4699] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_widget_field, 5), - [4701] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3050), - [4703] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_on_error_phrase, 5), - [4705] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_on_error_phrase, 5), - [4707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4062), - [4709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3266), - [4711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4050), - [4713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3054), - [4715] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1590), - [4717] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3272), - [4719] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_on_quit_phrase, 5), - [4721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(196), - [4723] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_on_statement_repeat1, 2), SHIFT_REPEAT(476), - [4726] = {.entry = {.count = 1, .reusable = false}}, SHIFT(770), - [4728] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_interface_body_repeat1, 1), - [4730] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_interface_body_repeat1, 1), - [4732] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2903), - [4734] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2908), - [4736] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4252), - [4738] = {.entry = {.count = 1, .reusable = false}}, SHIFT(588), - [4740] = {.entry = {.count = 1, .reusable = false}}, SHIFT(573), - [4742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(76), - [4744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3879), - [4746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2969), - [4748] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1810), - [4750] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1809), - [4752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1380), - [4754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3690), - [4756] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1621), - [4758] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1626), - [4760] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1373), - [4762] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1808), - [4764] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2780), - [4766] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2791), - [4768] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4170), - [4770] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1804), - [4772] = {.entry = {.count = 1, .reusable = false}}, SHIFT(269), - [4774] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4060), - [4776] = {.entry = {.count = 1, .reusable = false}}, SHIFT(273), - [4778] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3721), - [4780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3664), - [4782] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_query_definition_tuning, 2), - [4784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3870), - [4786] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_widget_phrase_repeat1, 1), - [4788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3589), - [4790] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4589), - [4792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4590), - [4794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4482), - [4796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(399), - [4798] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4684), - [4800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4683), - [4802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4682), - [4804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(453), - [4806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(400), - [4808] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4583), - [4810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4584), - [4812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4486), - [4814] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_widget_field, 4), - [4816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(442), - [4818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4380), - [4820] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2956), - [4822] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_on_error_phrase, 6, .production_id = 21), - [4824] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_on_error_phrase, 6, .production_id = 21), - [4826] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_on_error_phrase, 6), - [4828] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_on_error_phrase, 6, .production_id = 43), - [4830] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_double_quoted_string_repeat1, 2), - [4832] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_double_quoted_string_repeat1, 2), SHIFT_REPEAT(3083), - [4835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(517), - [4837] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4702), - [4839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4697), - [4841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4696), - [4843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3656), - [4845] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3311), - [4847] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_on_quit_phrase, 6), - [4849] = {.entry = {.count = 1, .reusable = false}}, SHIFT(278), - [4851] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3727), - [4853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2389), - [4855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3063), - [4857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3584), - [4859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3613), - [4861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4635), - [4863] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3614), - [4865] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4635), - [4867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2376), - [4869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3620), - [4871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3630), - [4873] = {.entry = {.count = 1, .reusable = false}}, SHIFT(535), - [4875] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4596), - [4877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(581), - [4879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3642), - [4881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3655), - [4883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3662), - [4885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4545), - [4887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4544), - [4889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3680), - [4891] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3092), - [4893] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3600), - [4895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2507), - [4897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3691), - [4899] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_assign_statement_repeat1, 1), - [4901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3741), - [4903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3700), - [4905] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_include_repeat1, 2), - [4907] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_include_repeat1, 2), SHIFT_REPEAT(3063), - [4910] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_double_quoted_string_repeat1, 1), - [4912] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6), - [4914] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4552), - [4916] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__function_call_arguments, 1), - [4918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(324), - [4920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(316), - [4922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3062), - [4924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1981), - [4926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1838), - [4928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(248), - [4930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(253), - [4932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3066), - [4934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1965), - [4936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1835), - [4938] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_single_quoted_string_repeat1, 1), - [4940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2528), - [4942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4526), - [4944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3683), - [4946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(322), - [4948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4613), - [4950] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3715), - [4952] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4613), - [4954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2537), - [4956] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1179), - [4958] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4102), - [4960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(311), - [4962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1611), - [4964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4636), - [4966] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3718), - [4968] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4636), - [4970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(305), - [4972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4678), - [4974] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3725), - [4976] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4678), - [4978] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3158), - [4980] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3835), - [4982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(307), - [4984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4462), - [4986] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3735), - [4988] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4462), - [4990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(115), - [4992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(103), - [4994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(69), - [4996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(203), - [4998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2505), - [5000] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__function_call_arguments, 2), - [5002] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3167), - [5004] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3860), - [5006] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_temp_table_definition_repeat2, 1), - [5008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(96), - [5010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3070), - [5012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1999), - [5014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1819), - [5016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3802), - [5018] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4435), - [5020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2080), - [5022] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3460), - [5024] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3794), - [5026] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_case_body_repeat1, 1), - [5028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(250), - [5030] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4418), - [5032] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4235), - [5034] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__function_call_arguments_repeat1, 2), - [5036] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__function_call_arguments_repeat1, 2), SHIFT_REPEAT(324), - [5039] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3414), - [5041] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3828), - [5043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(781), - [5045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1527), - [5047] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3223), - [5049] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4000), - [5051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(318), - [5053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1340), - [5055] = {.entry = {.count = 1, .reusable = false}}, SHIFT(822), - [5057] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4265), - [5059] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(3036), - [5062] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2), - [5064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4336), - [5066] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3868), - [5068] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4336), - [5070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(142), - [5072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(145), - [5074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(995), - [5076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(147), - [5078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(151), - [5080] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_on_statement_repeat2, 1), - [5082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(254), - [5084] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4126), - [5086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(110), - [5088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1160), - [5090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1375), - [5092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2669), - [5094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(960), - [5096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1353), - [5098] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4092), - [5100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4053), - [5102] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_on_stop_phrase, 5), - [5104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(955), - [5106] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_on_quit_phrase, 5), - [5108] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3230), - [5110] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3967), - [5112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1482), - [5114] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_on_quit_phrase, 5, .production_id = 31), - [5116] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4207), - [5118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4038), - [5120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2698), - [5122] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__case_branch_body, 1), - [5124] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3184), - [5126] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4015), - [5128] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_accumulate_statement_repeat1, 2), - [5130] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_accumulate_statement_repeat1, 2), SHIFT_REPEAT(2080), - [5133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(122), - [5135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(323), - [5137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4187), - [5139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1524), - [5141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1235), - [5143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4465), - [5145] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4085), - [5147] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4465), - [5149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1533), - [5151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(79), - [5153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(71), - [5155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(60), - [5157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(931), - [5159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(186), - [5161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3963), - [5163] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_on_stop_phrase, 6, .production_id = 21), - [5165] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_on_quit_phrase, 6), - [5167] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_on_quit_phrase, 6, .production_id = 43), - [5169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(40), - [5171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3943), - [5173] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_when_branch, 4, .production_id = 44), - [5175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(83), - [5177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3978), - [5179] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2842), - [5181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3895), - [5183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4275), - [5185] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4628), - [5187] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2848), - [5189] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3095), - [5191] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3992), - [5193] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_on_quit_phrase, 7), - [5195] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_on_quit_phrase, 7, .production_id = 49), - [5197] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4480), - [5199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3951), - [5201] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_function_statement_repeat1, 2), - [5203] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_statement_repeat1, 2), SHIFT_REPEAT(2698), - [5206] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3123), - [5208] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3956), - [5210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4355), - [5212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2772), - [5214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(314), - [5216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3814), - [5218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3813), - [5220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4396), - [5222] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_query_fields_repeat1, 2), SHIFT_REPEAT(3978), - [5225] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_query_fields_repeat1, 2), - [5227] = {.entry = {.count = 1, .reusable = false}}, SHIFT(722), - [5229] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4298), - [5231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(748), - [5233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4315), - [5235] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3891), - [5237] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4315), - [5239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(227), - [5241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(229), - [5243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(230), - [5245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(233), - [5247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3582), - [5249] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_qualified_name_repeat1, 2), SHIFT_REPEAT(3582), - [5252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4426), - [5254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2728), - [5256] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2725), - [5258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3955), - [5260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3752), - [5262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3750), - [5264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(206), - [5266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(875), - [5268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4003), - [5270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(917), - [5272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1098), - [5274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4493), - [5276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4500), - [5278] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4136), - [5280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2841), - [5282] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2833), - [5284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(849), - [5286] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3251), - [5288] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3782), - [5290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3598), - [5292] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4119), - [5294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(106), - [5296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4555), - [5298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4572), - [5300] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3213), - [5302] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3742), - [5304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4576), - [5306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3050), - [5308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3668), - [5310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(111), - [5312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(310), - [5314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(114), - [5316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2918), - [5318] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4629), - [5320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2956), - [5322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4648), - [5324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2804), - [5326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4649), - [5328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4282), - [5330] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3670), - [5332] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4282), - [5334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(126), - [5336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2874), - [5338] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4676), - [5340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3560), - [5342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(677), - [5344] = {.entry = {.count = 1, .reusable = false}}, SHIFT(627), - [5346] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4485), - [5348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4720), - [5350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1564), - [5352] = {.entry = {.count = 1, .reusable = false}}, SHIFT(844), - [5354] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4476), - [5356] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__function_argument_with_mode, 2), - [5358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4368), - [5360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(383), - [5362] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1650), - [5364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1650), - [5366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1567), - [5368] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1567), - [5370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1319), - [5372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4133), - [5374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4357), - [5376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4553), - [5378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2950), - [5380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4673), - [5382] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2875), - [5384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4654), - [5386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(321), - [5388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(876), - [5390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(346), - [5392] = {.entry = {.count = 1, .reusable = false}}, SHIFT(346), - [5394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3087), - [5396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4349), - [5398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2823), - [5400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4718), - [5402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3849), - [5404] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3849), - [5406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1443), - [5408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3235), - [5410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4521), - [5412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(47), - [5414] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1654), - [5416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1654), - [5418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1853), - [5420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(631), - [5422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2909), - [5424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(240), - [5426] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_phrase, 10, .production_id = 30), - [5428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3091), - [5430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2845), - [5432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4704), - [5434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2853), - [5436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4703), - [5438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3099), - [5440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3103), - [5442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3106), - [5444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3109), - [5446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(733), - [5448] = {.entry = {.count = 1, .reusable = false}}, SHIFT(733), - [5450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1665), - [5452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4365), - [5454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1389), - [5456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4459), - [5458] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4459), - [5460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1659), - [5462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4331), - [5464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1174), - [5466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4455), - [5468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3170), - [5470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2122), - [5472] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2122), - [5474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4626), - [5476] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2850), - [5478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1653), - [5480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4162), - [5482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1276), - [5484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2889), - [5486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4669), - [5488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1454), - [5490] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1454), - [5492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1081), - [5494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4726), - [5496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1671), - [5498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4128), - [5500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2218), - [5502] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2218), - [5504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(666), - [5506] = {.entry = {.count = 1, .reusable = false}}, SHIFT(666), - [5508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2890), - [5510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4660), - [5512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(362), - [5514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4444), - [5516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3020), - [5518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1400), - [5520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2896), - [5522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4652), - [5524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4443), - [5526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1639), - [5528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4432), - [5530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3248), - [5532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4594), - [5534] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2750), - [5536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2904), - [5538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4651), - [5540] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_accumulate_aggregate, 1), - [5542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1657), - [5544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4205), - [5546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1206), - [5548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3272), - [5550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4537), - [5552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(51), - [5554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1644), - [5556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4232), - [5558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4411), - [5560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(401), - [5562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1171), - [5564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4409), - [5566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3311), - [5568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1857), - [5570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4228), - [5572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4197), - [5574] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4197), - [5576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3326), - [5578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4561), - [5580] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2852), - [5582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(459), - [5584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4196), - [5586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4191), - [5588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3016), - [5590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3790), - [5592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4188), - [5594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(469), - [5596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4185), - [5598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3040), - [5600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3723), - [5602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2914), - [5604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4603), - [5606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1673), - [5608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4468), - [5610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4167), - [5612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1360), - [5614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4595), - [5616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4160), - [5618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3648), - [5620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1667), - [5622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4506), - [5624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2906), - [5626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4587), - [5628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4382), - [5630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(730), - [5632] = {.entry = {.count = 1, .reusable = false}}, SHIFT(730), - [5634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1415), - [5636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2905), - [5638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4579), - [5640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4372), - [5642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(265), - [5644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4371), - [5646] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1407), - [5648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3532), - [5650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(972), - [5652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4477), - [5654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4520), - [5656] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2882), - [5658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2385), - [5660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4386), - [5662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4606), - [5664] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4606), - [5666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1072), - [5668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4659), - [5670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4620), - [5672] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4620), - [5674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4488), - [5676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(281), - [5678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4447), - [5680] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2730), - [5682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4446), - [5684] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3053), - [5686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1811), - [5688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4674), - [5690] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4674), - [5692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(268), - [5694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1051), - [5696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4227), - [5698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4127), - [5700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1651), - [5702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4044), - [5704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4737), - [5706] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4737), - [5708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2869), - [5710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4496), - [5712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1057), - [5714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4592), - [5716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1349), - [5718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3254), - [5720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2381), - [5722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4341), - [5724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1045), - [5726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4491), - [5728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2863), - [5730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(251), - [5732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4246), - [5734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2851), - [5736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(256), - [5738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4449), - [5740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4523), - [5742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3292), - [5744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2847), - [5746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4513), - [5748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(539), - [5750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(274), - [5752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4339), - [5754] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1049), - [5756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1317), - [5758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4251), - [5760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2359), - [5762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3484), - [5764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4410), - [5766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3408), - [5768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4479), - [5770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2339), - [5772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4472), - [5774] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1029), - [5776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1014), - [5778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4466), - [5780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1670), - [5782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4306), - [5784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3416), - [5786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4452), - [5788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2377), - [5790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3234), - [5792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1253), - [5794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1004), - [5796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4624), - [5798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4286), - [5800] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2854), - [5802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4283), - [5804] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2972), - [5806] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_parameter, 5), - [5808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4281), - [5810] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2966), - [5812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(48), - [5814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(827), - [5816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3491), - [5818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3431), - [5820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4430), - [5822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2380), - [5824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1483), - [5826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4271), - [5828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2768), - [5830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4469), - [5832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3439), - [5834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4087), - [5836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1027), - [5838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4272), - [5840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1563), - [5842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2766), - [5844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(239), - [5846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1217), - [5848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4270), - [5850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2752), - [5852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(241), - [5854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2748), - [5856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(258), - [5858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4236), - [5860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4404), - [5862] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3450), - [5864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3454), - [5866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4398), - [5868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4248), - [5870] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1266), - [5872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4437), - [5874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1666), - [5876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4431), - [5878] = {.entry = {.count = 1, .reusable = false}}, SHIFT(982), - [5880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2368), - [5882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3452), - [5884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4242), - [5886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3462), - [5888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4390), - [5890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(728), - [5892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1020), - [5894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4249), - [5896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3199), - [5898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2139), - [5900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2394), - [5902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4388), - [5904] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3481), - [5906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4402), - [5908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1466), - [5910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4172), - [5912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4233), - [5914] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1017), - [5916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2727), - [5918] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2037), - [5920] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4226), - [5922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2357), - [5924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(280), - [5926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4122), - [5928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1154), - [5930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4199), - [5932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(556), - [5934] = {.entry = {.count = 1, .reusable = false}}, SHIFT(556), - [5936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4369), - [5938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3217), - [5940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1668), - [5942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3976), - [5944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4363), - [5946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(486), - [5948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4362), - [5950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2365), - [5952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(499), - [5954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4360), - [5956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4359), - [5958] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_parameter, 4), - [5960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4358), - [5962] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4358), - [5964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1575), - [5966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1868), - [5968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12), - [5970] = {.entry = {.count = 1, .reusable = false}}, SHIFT(12), - [5972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3231), - [5974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1000), - [5976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4189), - [5978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2753), - [5980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4391), - [5982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1056), - [5984] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1056), - [5986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1859), - [5988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2756), - [5990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(244), - [5992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1152), - [5994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4141), - [5996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4385), - [5998] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4385), - [6000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2757), - [6002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(243), - [6004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(350), - [6006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4400), - [6008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4405), - [6010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1641), - [6012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3822), - [6014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1643), - [6016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4416), - [6018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(504), - [6020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4420), - [6022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2617), - [6024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4427), - [6026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(984), - [6028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4143), - [6030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4352), - [6032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3837), - [6034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2150), - [6036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2392), - [6038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(272), - [6040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2543), - [6042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2355), - [6044] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2104), - [6046] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4117), - [6048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1212), - [6050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4318), - [6052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4157), - [6054] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1306), - [6056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1649), - [6058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4075), - [6060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4111), - [6062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4089), - [6064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1439), - [6066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4238), - [6068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(49), - [6070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4471), - [6072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1662), - [6074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3867), - [6076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4302), - [6078] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_parameter, 3), - [6080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(55), - [6082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3101), - [6084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2379), - [6086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1279), - [6088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4148), - [6090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1398), - [6092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4090), - [6094] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_on_stop_phrase, 7, .production_id = 48), - [6096] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_on_stop_phrase, 7, .production_id = 21), - [6098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5), - [6100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3261), - [6102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2388), - [6104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1942), - [6106] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_query_fields_repeat1, 1), - [6108] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_query_fields_repeat1, 1), - [6110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1257), - [6112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4139), - [6114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2692), - [6116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(963), - [6118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4110), - [6120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1462), - [6122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4217), - [6124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2879), - [6126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(260), - [6128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4333), - [6130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4262), - [6132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2358), - [6134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3076), - [6136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2352), - [6138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1672), - [6140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3901), - [6142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1467), - [6144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4213), - [6146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(52), - [6148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1674), - [6150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3252), - [6152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(53), - [6154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3544), - [6156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1207), - [6158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4130), - [6160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4056), - [6162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2372), - [6164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4124), - [6166] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1203), - [6168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3222), - [6170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3271), - [6172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1362), - [6174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4350), - [6176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1136), - [6178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4225), - [6180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1416), - [6182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4224), - [6184] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_parameter_mode, 1), - [6186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4234), - [6188] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4040), - [6190] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4138), - [6192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(947), - [6194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4129), - [6196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1175), - [6198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4121), - [6200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1189), - [6202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4144), - [6204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(56), - [6206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1284), - [6208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4154), - [6210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1664), - [6212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3952), - [6214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1165), - [6216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4115), - [6218] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_parameter, 2), - [6220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1503), - [6222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4180), - [6224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3310), - [6226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2350), - [6228] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_on_stop_phrase, 6, .production_id = 43), - [6230] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_accumulate_statement_repeat1, 2), - [6232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1143), - [6234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4120), - [6236] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_on_stop_phrase, 6), - [6238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1509), - [6240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4171), - [6242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(270), - [6244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3965), - [6246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4343), - [6248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1465), - [6250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4161), - [6252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2708), - [6254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1640), - [6256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4366), - [6258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4169), - [6260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4182), - [6262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(409), - [6264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4393), - [6266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1850), - [6268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4392), - [6270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1636), - [6272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3999), - [6274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4412), - [6276] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4412), - [6278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1476), - [6280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1247), - [6282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(941), - [6284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(252), - [6286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4186), - [6288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2464), - [6290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3988), - [6292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4184), - [6294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2404), - [6296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3996), - [6298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4183), - [6300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3783), - [6302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1988), - [6304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4174), - [6306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3010), - [6308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3980), - [6310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(936), - [6312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2396), - [6314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4453), - [6316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1967), - [6318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4168), - [6320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2107), - [6322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1254), - [6324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1251), - [6326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1135), - [6328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1139), - [6330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1283), - [6332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1140), - [6334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2241), - [6336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(923), - [6338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2353), - [6340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4024), - [6342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1144), - [6344] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_otherwise_branch, 2, .production_id = 33), - [6346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1502), - [6348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3948), - [6350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(283), - [6352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1188), - [6354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2716), - [6356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4040), - [6358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(86), - [6360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(98), - [6362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2782), - [6364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3933), - [6366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1196), - [6368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3981), - [6370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(139), - [6372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1200), - [6374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1499), - [6376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2282), - [6378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(59), - [6380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2373), - [6382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1205), - [6384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2035), - [6386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2415), - [6388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3323), - [6390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1472), - [6392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1153), - [6394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3907), - [6396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4034), - [6398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2945), - [6400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3900), - [6402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1241), - [6404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2438), - [6406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(242), - [6408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1246), - [6410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1258), - [6412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3634), - [6414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1259), - [6416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(577), - [6418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2382), - [6420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2413), - [6422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4096), - [6424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2397), - [6426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2248), - [6428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(974), - [6430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4101), - [6432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4079), - [6434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4084), - [6436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4106), - [6438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4107), - [6440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1441), - [6442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4108), - [6444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3716), - [6446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1280), - [6448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3026), - [6450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3845), - [6452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4073), - [6454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4307), - [6456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1211), - [6458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4118), - [6460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(978), - [6462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1434), - [6464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2356), - [6466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(168), - [6468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(167), - [6470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2344), - [6472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(980), - [6474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(981), - [6476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1234), - [6478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1177), - [6480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1430), - [6482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(216), - [6484] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_body, 2), - [6486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1232), - [6488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2787), - [6490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2151), - [6492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1187), - [6494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1329), - [6496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3384), - [6498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1829), - [6500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(544), - [6502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2679), - [6504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(31), - [6506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3519), - [6508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4036), - [6510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1973), - [6512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4374), - [6514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3504), - [6516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3793), - [6518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3503), - [6520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2418), - [6522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3803), - [6524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1226), - [6526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(245), - [6528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(904), - [6530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1383), - [6532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2005), - [6534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4346), - [6536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(914), - [6538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2999), - [6540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(589), - [6542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2997), - [6544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1355), - [6546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2815), - [6548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11), - [6550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3719), - [6552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(928), - [6554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(304), - [6556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2420), - [6558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1363), - [6560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4347), - [6562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1989), - [6564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3500), - [6566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3833), - [6568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(937), - [6570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2371), - [6572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1293), - [6574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3499), - [6576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(950), - [6578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2016), - [6580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2285), - [6582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3045), - [6584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4408), - [6586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1385), - [6588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1388), - [6590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(951), - [6592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1486), - [6594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16), - [6596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3959), - [6598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(541), - [6600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1300), - [6602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3489), - [6604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4200), - [6606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2478), - [6608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4202), - [6610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4219), - [6612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3939), - [6614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3488), - [6616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3938), - [6618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1318), - [6620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4222), - [6622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2342), - [6624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(45), - [6626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2476), - [6628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2361), - [6630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1334), - [6632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(768), - [6634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(553), - [6636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1015), - [6638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1581), - [6640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3558), - [6642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1016), - [6644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3486), - [6646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(970), - [6648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2718), - [6650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2140), - [6652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2724), - [6654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3445), - [6656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1387), - [6658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3465), - [6660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3464), - [6662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3777), - [6664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3458), - [6666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3457), - [6668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2636), - [6670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2294), - [6672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1023), - [6674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2369), - [6676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1024), - [6678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3447), - [6680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(215), - [6682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1292), - [6684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1274), - [6686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3479), - [6688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2461), - [6690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3756), - [6692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3942), - [6694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3768), - [6696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(430), - [6698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1219), - [6700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(998), - [6702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(33), - [6704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2441), - [6706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3446), - [6708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(729), - [6710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1028), - [6712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1030), - [6714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3739), - [6716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(262), - [6718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3997), - [6720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(866), - [6722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3429), - [6724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3428), - [6726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(882), - [6728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2994), - [6730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1148), - [6732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3423), - [6734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1150), - [6736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3041), - [6738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1036), - [6740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4301), - [6742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1006), - [6744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3169), - [6746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3419), - [6748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1007), - [6750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(237), - [6752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2354), - [6754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1948), - [6756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2831), - [6758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1032), - [6760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3861), - [6762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2834), - [6764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1033), - [6766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2335), - [6768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(65), - [6770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(67), - [6772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3402), - [6774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1656), - [6776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1821), - [6778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4058), - [6780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1041), - [6782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1320), - [6784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1325), - [6786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3032), - [6788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2749), - [6790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3701), - [6792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3697), - [6794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3400), - [6796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1054), - [6798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1070), - [6800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4344), - [6802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(315), - [6804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2378), - [6806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1606), - [6808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(491), - [6810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1618), - [6812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2960), - [6814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1076), - [6816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2254), - [6818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1077), - [6820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1060), - [6822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1062), - [6824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4068), - [6826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3842), - [6828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3684), - [6830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3568), - [6832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1065), - [6834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3397), - [6836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1068), - [6838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1084), - [6840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1365), - [6842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3597), - [6844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1085), - [6846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1866), - [6848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3535), - [6850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(246), - [6852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(823), - [6854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2893), - [6856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2897), - [6858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3658), - [6860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2386), - [6862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4554), - [6864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(247), - [6866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2239), - [6868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2947), - [6870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3675), - [6872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3676), - [6874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3681), - [6876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3682), - [6878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3650), - [6880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4035), - [6882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1112), - [6884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2116), - [6886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2862), - [6888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(54), - [6890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3517), - [6892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4503), - [6894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3722), - [6896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2051), - [6898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3643), - [6900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1113), - [6902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1675), - [6904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3639), - [6906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3494), - [6908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4461), - [6910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(50), - [6912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(513), - [6914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1333), - [6916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3631), - [6918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3788), - [6920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3787), - [6922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2013), - [6924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4268), - [6926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2982), - [6928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3896), - [6930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3897), - [6932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3966), - [6934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2468), - [6936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3545), - [6938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3902), - [6940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3903), - [6942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4637), - [6944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4415), - [6946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2907), - [6948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4417), - [6950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1974), - [6952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4638), - [6954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3320), - [6956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4229), - [6958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2045), - [6960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3774), - [6962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1517), - [6964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4423), - [6966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(257), - [6968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3309), - [6970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4198), - [6972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2915), - [6974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(455), - [6976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3133), - [6978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4099), - [6980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4250), - [6982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3028), - [6984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4080), - [6986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4083), - [6988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1978), - [6990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4438), - [6992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3557), - [6994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4077), - [6996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3605), - [6998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2771), - [7000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3757), - [7002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3603), - [7004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3242), - [7006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4131), - [7008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2088), - [7010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(646), - [7012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3556), - [7014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(649), - [7016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(711), - [7018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3233), - [7020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4164), - [7022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(521), - [7024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3748), - [7026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2219), - [7028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4293), - [7030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(701), - [7032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2978), - [7034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3866), - [7036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3865), - [7038] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_mode, 1), - [7040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1445), - [7042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1583), - [7044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3863), - [7046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3862), - [7048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2486), - [7050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(721), - [7052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2830), - [7054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(578), - [7056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1090), - [7058] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_data_relation, 6), - [7060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3165), - [7062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4334), - [7064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2127), - [7066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(671), - [7068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4456), - [7070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1562), - [7072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2196), - [7074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4681), - [7076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3155), - [7078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4367), - [7080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(439), - [7082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(625), - [7084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3057), - [7086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4463), - [7088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4685), - [7090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3031), - [7092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4736), - [7094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(238), - [7096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2856), - [7098] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4724), - [7100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2717), - [7102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1543), - [7104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3696), - [7106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4524), - [7108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4525), - [7110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3108), - [7112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1092), - [7114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4533), - [7116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3688), - [7118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4535), - [7120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4536), - [7122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3579), - [7124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2500), - [7126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(736), - [7128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1545), - [7130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2844), - [7132] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__find_type, 1), - [7134] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4746), - [7136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2798), - [7138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(740), - [7140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2024), - [7142] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_data_relation, 7), - [7144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(807), - [7146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(739), - [7148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(509), - [7150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2203), - [7152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1446), - [7154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3663), - [7156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3661), - [7158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4710), - [7160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4570), - [7162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4571), - [7164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1998), - [7166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4712), - [7168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4578), - [7170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3647), - [7172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4586), - [7174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3659), - [7176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4565), - [7178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4566), - [7180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1426), - [7182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3645), - [7184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1046), - [7186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3654), - [7188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4574), - [7190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4575), - [7192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3640), - [7194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2827), - [7196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2958), - [7198] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_data_relation, 8), - [7200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3635), - [7202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4598), - [7204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4599), - [7206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2205), - [7208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3082), - [7210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4730), - [7212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3629), - [7214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4607), - [7216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4608), - [7218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4741), - [7220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1600), - [7222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2819), - [7224] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_include_repeat1, 1), - [7226] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_data_relation, 9), - [7228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3617), - [7230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4630), - [7232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4631), - [7234] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4747), - [7236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1578), - [7238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1096), - [7240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3612), - [7242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4639), - [7244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4640), - [7246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2214), - [7248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1344), - [7250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1342), - [7252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4661), - [7254] = {.entry = {.count = 1, .reusable = true}}, ACCEPT_INPUT(), - [7256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3075), - [7258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1597), - [7260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(264), - [7262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4658), - [7264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4623), - [7266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4745), - [7268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(754), - [7270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3591), - [7272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3590), - [7274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2217), - [7276] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_comment, 2), - [7278] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_comment, 3), - [7280] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_include, 3), - [7282] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_include, 4), - [7284] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_include, 5), + [2616] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_output_stream_statement_repeat1, 1), + [2618] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_phrase, 6, .production_id = 30), + [2620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3854), + [2622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(742), + [2624] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1759), + [2626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(766), + [2628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2900), + [2630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3665), + [2632] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2914), + [2634] = {.entry = {.count = 1, .reusable = false}}, SHIFT(240), + [2636] = {.entry = {.count = 1, .reusable = false}}, SHIFT(377), + [2638] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3215), + [2640] = {.entry = {.count = 1, .reusable = false}}, SHIFT(446), + [2642] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3055), + [2644] = {.entry = {.count = 3, .reusable = true}}, REDUCE(aux_sym_variable_definition_repeat1, 1), REDUCE(aux_sym_buffer_definition_repeat1, 1), SHIFT(1521), + [2648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3982), + [2650] = {.entry = {.count = 1, .reusable = false}}, SHIFT(124), + [2652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4026), + [2654] = {.entry = {.count = 1, .reusable = false}}, SHIFT(126), + [2656] = {.entry = {.count = 1, .reusable = false}}, SHIFT(155), + [2658] = {.entry = {.count = 1, .reusable = false}}, SHIFT(161), + [2660] = {.entry = {.count = 1, .reusable = false}}, SHIFT(182), + [2662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3926), + [2664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3947), + [2666] = {.entry = {.count = 1, .reusable = false}}, SHIFT(69), + [2668] = {.entry = {.count = 1, .reusable = false}}, SHIFT(73), + [2670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4042), + [2672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3942), + [2674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3895), + [2676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3938), + [2678] = {.entry = {.count = 1, .reusable = false}}, SHIFT(184), + [2680] = {.entry = {.count = 1, .reusable = false}}, SHIFT(118), + [2682] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_property_definition_repeat2, 2), + [2684] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_property_definition_repeat2, 2), SHIFT_REPEAT(482), + [2687] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_property_definition_repeat2, 2), SHIFT_REPEAT(1891), + [2690] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_property_definition_repeat2, 2), + [2692] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_property_definition_repeat2, 2), SHIFT_REPEAT(3278), + [2695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2567), + [2697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1843), + [2699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2547), + [2701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2494), + [2703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2465), + [2705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2502), + [2707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2461), + [2709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4780), + [2711] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4780), + [2713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4411), + [2715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1834), + [2717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(917), + [2719] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_sort_column, 1, .production_id = 19), + [2721] = {.entry = {.count = 1, .reusable = false}}, SHIFT(321), + [2723] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2704), + [2725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3670), + [2727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4743), + [2729] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4743), + [2731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4694), + [2733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(890), + [2735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1845), + [2737] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_query_tuning, 1), + [2739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1232), + [2741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1828), + [2743] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scope_tuning, 1), + [2745] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scope_tuning, 1), + [2747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4650), + [2749] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4650), + [2751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4643), + [2753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3644), + [2755] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_body, 1), + [2757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1829), + [2759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1082), + [2761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3642), + [2763] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_class_body_repeat1, 2), + [2765] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_body_repeat1, 2), SHIFT_REPEAT(742), + [2768] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 2), SHIFT_REPEAT(1759), + [2771] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_body_repeat1, 2), SHIFT_REPEAT(766), + [2774] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_body_repeat1, 2), SHIFT_REPEAT(2900), + [2777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4808), + [2779] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4808), + [2781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4376), + [2783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1137), + [2785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1502), + [2787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4794), + [2789] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4794), + [2791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4192), + [2793] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_query_tuning, 2), + [2795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1536), + [2797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1403), + [2799] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_variable_definition_repeat1, 2), SHIFT_REPEAT(1861), + [2802] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_variable_definition_repeat1, 2), SHIFT_REPEAT(1521), + [2805] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_variable_definition_repeat1, 2), SHIFT_REPEAT(1968), + [2808] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_variable_definition_repeat1, 2), + [2810] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_variable_definition_repeat1, 2), + [2812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(570), + [2814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(28), + [2816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(26), + [2818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1556), + [2820] = {.entry = {.count = 1, .reusable = false}}, SHIFT(103), + [2822] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4762), + [2824] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3190), + [2826] = {.entry = {.count = 1, .reusable = false}}, SHIFT(160), + [2828] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_property_definition_repeat2, 1), + [2830] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_property_definition_repeat2, 1), + [2832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(699), + [2834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1585), + [2836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(776), + [2838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1577), + [2840] = {.entry = {.count = 1, .reusable = false}}, SHIFT(241), + [2842] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_tuning, 1), + [2844] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_property_tuning, 1), + [2846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(593), + [2848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1571), + [2850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1540), + [2852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(773), + [2854] = {.entry = {.count = 1, .reusable = false}}, SHIFT(74), + [2856] = {.entry = {.count = 1, .reusable = false}}, SHIFT(185), + [2858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1637), + [2860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(25), + [2862] = {.entry = {.count = 1, .reusable = false}}, SHIFT(154), + [2864] = {.entry = {.count = 1, .reusable = false}}, SHIFT(70), + [2866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(574), + [2868] = {.entry = {.count = 1, .reusable = false}}, SHIFT(120), + [2870] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_can_find_expression_repeat2, 2), + [2872] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_can_find_expression_repeat2, 2), SHIFT_REPEAT(1858), + [2875] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_can_find_expression_repeat2, 2), SHIFT_REPEAT(3937), + [2878] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_can_find_expression_repeat2, 2), SHIFT_REPEAT(475), + [2881] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_can_find_expression_repeat2, 2), SHIFT_REPEAT(4504), + [2884] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_can_find_expression_repeat2, 2), SHIFT_REPEAT(3807), + [2887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1262), + [2889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(772), + [2891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(579), + [2893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(777), + [2895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1631), + [2897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1634), + [2899] = {.entry = {.count = 1, .reusable = false}}, SHIFT(183), + [2901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1526), + [2903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(678), + [2905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(682), + [2907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(695), + [2909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1641), + [2911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1473), + [2913] = {.entry = {.count = 1, .reusable = false}}, SHIFT(125), + [2915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13), + [2917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1844), + [2919] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_definition, 8, .production_id = 52), + [2921] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_property_definition, 8, .production_id = 52), + [2923] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_definition, 7, .production_id = 46), + [2925] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_property_definition, 7, .production_id = 46), + [2927] = {.entry = {.count = 1, .reusable = false}}, SHIFT(322), + [2929] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3067), + [2931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3677), + [2933] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_definition, 10), + [2935] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_property_definition, 10), + [2937] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_definition, 9, .production_id = 55), + [2939] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_property_definition, 9, .production_id = 55), + [2941] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_statement_repeat1, 2), SHIFT_REPEAT(2567), + [2944] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_class_statement_repeat1, 2), + [2946] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_statement_repeat1, 2), SHIFT_REPEAT(2547), + [2949] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_statement_repeat1, 2), SHIFT_REPEAT(2494), + [2952] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_statement_repeat1, 2), SHIFT_REPEAT(2465), + [2955] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_statement_repeat1, 2), SHIFT_REPEAT(2502), + [2958] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_statement_repeat1, 2), SHIFT_REPEAT(2461), + [2961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1840), + [2963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1832), + [2965] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_property_definition_repeat3, 2), + [2967] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_property_definition_repeat3, 2), SHIFT_REPEAT(1521), + [2970] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_property_definition_repeat3, 2), + [2972] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_property_definition_repeat3, 2), SHIFT_REPEAT(4275), + [2975] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_property_definition_repeat3, 2), SHIFT_REPEAT(4077), + [2978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1839), + [2980] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_for_phrase_repeat1, 2), + [2982] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_phrase_repeat1, 2), SHIFT_REPEAT(1858), + [2985] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_phrase_repeat1, 2), SHIFT_REPEAT(4504), + [2988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1846), + [2990] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_definition, 10, .production_id = 57), + [2992] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_property_definition, 10, .production_id = 57), + [2994] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_can_find_expression_repeat2, 1, .production_id = 15), + [2996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4007), + [2998] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__pre_tuning, 1), + [3000] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1928), + [3002] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_index_definition, 2), + [3004] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3319), + [3006] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_can_find_expression_repeat1, 2), + [3008] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_can_find_expression_repeat1, 2), SHIFT_REPEAT(4007), + [3011] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_can_find_expression_repeat2, 2, .production_id = 15), + [3013] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_index_definition, 3), + [3015] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_definition, 4, .production_id = 38), + [3017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(448), + [3019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2907), + [3021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3368), + [3023] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_serialization_tuning, 1), + [3025] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_serialization_tuning, 1), + [3027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(75), + [3029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(377), + [3031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3215), + [3033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(446), + [3035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3055), + [3037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(982), + [3039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(69), + [3041] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_buffer_definition_repeat1, 2), SHIFT_REPEAT(1861), + [3044] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_buffer_definition_repeat1, 2), SHIFT_REPEAT(1521), + [3047] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_buffer_definition_repeat1, 2), + [3049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1478), + [3051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2462), + [3053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3865), + [3055] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3866), + [3057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4507), + [3059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4506), + [3061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(916), + [3063] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_qualified_name_repeat1, 2), SHIFT_REPEAT(3670), + [3066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(921), + [3068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(927), + [3070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4139), + [3072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(906), + [3074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4181), + [3076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1510), + [3078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1458), + [3080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3754), + [3082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3583), + [3084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1407), + [3086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1347), + [3088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1341), + [3090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3789), + [3092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(161), + [3094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4795), + [3096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4796), + [3098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(946), + [3100] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_variable_definition_repeat1, 1), SHIFT(1521), + [3103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1075), + [3105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3902), + [3107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1249), + [3109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1235), + [3111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(112), + [3113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1201), + [3115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3829), + [3117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3615), + [3119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(237), + [3121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1234), + [3123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(118), + [3125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(170), + [3127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1109), + [3129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3932), + [3131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1441), + [3133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4141), + [3135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(955), + [3137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4096), + [3139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3641), + [3141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4781), + [3143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4782), + [3145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4642), + [3147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4640), + [3149] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_input_stream_tuning, 1), + [3151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(519), + [3153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(520), + [3155] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_input_stream_statement_repeat1, 2), + [3157] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_input_stream_statement_repeat1, 2), SHIFT_REPEAT(354), + [3160] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_input_stream_statement_repeat1, 2), SHIFT_REPEAT(2168), + [3163] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_input_stream_statement_repeat1, 2), SHIFT_REPEAT(2010), + [3166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(182), + [3168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3645), + [3170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4809), + [3172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4810), + [3174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1138), + [3176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3959), + [3178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1365), + [3180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(240), + [3182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1175), + [3184] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_for_phrase_repeat1, 1), + [3186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4744), + [3188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4745), + [3190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2425), + [3192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3981), + [3194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1086), + [3196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1050), + [3198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(923), + [3200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2570), + [3202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4014), + [3204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(874), + [3206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1189), + [3208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3962), + [3210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2553), + [3212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4051), + [3214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(175), + [3216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3963), + [3218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1066), + [3220] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1940), + [3222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1659), + [3224] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__using_first, 4, .production_id = 13), + [3226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(972), + [3228] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_definition, 5), + [3230] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_definition, 5, .production_id = 38), + [3232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(197), + [3234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3667), + [3236] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2165), + [3238] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_inherits, 2), + [3240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2514), + [3242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(83), + [3244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(221), + [3246] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2174), + [3248] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_definition, 4), + [3250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3839), + [3252] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__using_and, 2, .production_id = 7), + [3254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(88), + [3256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3745), + [3258] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_sort_clause_repeat1, 2), SHIFT_REPEAT(1854), + [3261] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_sort_clause_repeat1, 2), + [3263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(880), + [3265] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1854), + [3267] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_sort_clause, 3), + [3269] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__using_and, 4, .production_id = 13), + [3271] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_implements, 2), + [3273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3897), + [3275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3907), + [3277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(128), + [3279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(133), + [3281] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_can_find_expression_repeat1, 1, .production_id = 15), + [3283] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__using_first, 2, .production_id = 7), + [3285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(925), + [3287] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_field_definition_repeat1, 2), + [3289] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_field_definition_repeat1, 2), SHIFT_REPEAT(448), + [3292] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_field_definition_repeat1, 2), SHIFT_REPEAT(2907), + [3295] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_field_definition_repeat1, 2), SHIFT_REPEAT(3368), + [3298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1222), + [3300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3589), + [3302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(217), + [3304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(945), + [3306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3945), + [3308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3995), + [3310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1250), + [3312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1364), + [3314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4017), + [3316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4005), + [3318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3616), + [3320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1142), + [3322] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_sort_clause, 2), + [3324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(200), + [3326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(151), + [3328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3909), + [3330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(146), + [3332] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_inherits_repeat1, 2), + [3334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(106), + [3336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(70), + [3338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4762), + [3340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3190), + [3342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(96), + [3344] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2431), + [3346] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2523), + [3348] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2530), + [3350] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2509), + [3352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(779), + [3354] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_input_stream_statement_repeat1, 1), + [3356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(793), + [3358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(72), + [3360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(811), + [3362] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_phrase, 7, .production_id = 30), + [3364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(120), + [3366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(178), + [3368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(169), + [3370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(537), + [3372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3), + [3374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(179), + [3376] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_setter, 11), + [3378] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_setter, 11), + [3380] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_setter, 3), + [3382] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_setter, 3), + [3384] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_getter, 3), + [3386] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_getter, 3), + [3388] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_setter, 10), + [3390] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_setter, 10), + [3392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(109), + [3394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(234), + [3396] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_setter, 9), + [3398] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_setter, 9), + [3400] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_setter, 8), + [3402] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_setter, 8), + [3404] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_setter, 7), + [3406] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_setter, 7), + [3408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(172), + [3410] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_property_definition_repeat3, 1), + [3412] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_property_definition_repeat3, 1), + [3414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(238), + [3416] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_qualified_name_repeat1, 2), SHIFT_REPEAT(3677), + [3419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(113), + [3421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(611), + [3423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(231), + [3425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(100), + [3427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(241), + [3429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(165), + [3431] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_can_find_expression_repeat2, 1), + [3433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(183), + [3435] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_interface_body_repeat1, 2), + [3437] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_interface_body_repeat1, 2), SHIFT_REPEAT(1066), + [3440] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_interface_body_repeat1, 2), SHIFT_REPEAT(1940), + [3443] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_interface_body_repeat1, 2), SHIFT_REPEAT(766), + [3446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(160), + [3448] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_body, 1), + [3450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(188), + [3452] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2491), + [3454] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_setter, 2), + [3456] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_setter, 2), + [3458] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_getter, 2), + [3460] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_getter, 2), + [3462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(642), + [3464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1547), + [3466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1433), + [3468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(488), + [3470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2582), + [3472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3592), + [3474] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_sort_clause_repeat1, 2), SHIFT_REPEAT(1928), + [3477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1049), + [3479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1393), + [3481] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_inherits, 3), + [3483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1045), + [3485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1044), + [3487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1024), + [3489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1023), + [3491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1039), + [3493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1038), + [3495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2569), + [3497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1078), + [3499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1079), + [3501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2568), + [3503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1212), + [3505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1205), + [3507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1012), + [3509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1011), + [3511] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_inherits_repeat1, 2), SHIFT_REPEAT(2514), + [3514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1468), + [3516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(969), + [3518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1465), + [3520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1463), + [3522] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2376), + [3524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(952), + [3526] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2369), + [3528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1436), + [3530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(882), + [3532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1333), + [3534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(996), + [3536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2546), + [3538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2508), + [3540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(995), + [3542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3568), + [3544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2474), + [3546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1352), + [3548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2473), + [3550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3567), + [3552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1351), + [3554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(953), + [3556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1237), + [3558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(987), + [3560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1247), + [3562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1253), + [3564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1301), + [3566] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_variable_definition_repeat2, 2), + [3568] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_variable_definition_repeat2, 2), SHIFT_REPEAT(488), + [3571] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_variable_definition_repeat2, 2), SHIFT_REPEAT(2582), + [3574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1276), + [3576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(986), + [3578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1289), + [3580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(850), + [3582] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_index_definition, 4), + [3584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1283), + [3586] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_temp_table_definition_repeat1, 2), + [3588] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_temp_table_definition_repeat1, 2), SHIFT_REPEAT(2462), + [3591] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_temp_table_definition_repeat1, 2), SHIFT_REPEAT(3866), + [3594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1282), + [3596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1324), + [3598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1326), + [3600] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_temp_table_tuning, 2), + [3602] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_temp_table_tuning, 2), + [3604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1362), + [3606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1388), + [3608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1022), + [3610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(861), + [3612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1020), + [3614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(860), + [3616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1445), + [3618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3553), + [3620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1434), + [3622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2531), + [3624] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_field_definition_repeat1, 1), + [3626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1428), + [3628] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_implements, 3), + [3630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1172), + [3632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2527), + [3634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1274), + [3636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4222), + [3638] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1856), + [3640] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4751), + [3642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1036), + [3644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3320), + [3646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3101), + [3648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3878), + [3650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3875), + [3652] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1868), + [3654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1461), + [3656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1042), + [3658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(108), + [3660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1074), + [3662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3904), + [3664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3903), + [3666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1425), + [3668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4154), + [3670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4159), + [3672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1190), + [3674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3827), + [3676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3828), + [3678] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1872), + [3680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1292), + [3682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3855), + [3684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3856), + [3686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3123), + [3688] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3365), + [3690] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4830), + [3692] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3137), + [3694] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4725), + [3696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1464), + [3698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4043), + [3700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4044), + [3702] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1871), + [3704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1369), + [3706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(177), + [3708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(235), + [3710] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4829), + [3712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1019), + [3714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2548), + [3716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4049), + [3718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4050), + [3720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(173), + [3722] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_index_definition_repeat1, 2), + [3724] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_index_definition_repeat1, 2), SHIFT_REPEAT(3319), + [3727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1293), + [3729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1001), + [3731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4063), + [3733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4062), + [3735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2479), + [3737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(990), + [3739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2573), + [3741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4073), + [3743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4074), + [3745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2539), + [3747] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1875), + [3749] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_include_repeat2, 2), SHIFT_REPEAT(3123), + [3752] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_include_repeat2, 2), SHIFT_REPEAT(3365), + [3755] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_include_repeat2, 2), + [3757] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_include_repeat2, 2), SHIFT_REPEAT(3137), + [3760] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_include_repeat2, 2), SHIFT_REPEAT(4725), + [3763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(91), + [3765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(956), + [3767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4102), + [3769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4097), + [3771] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4831), + [3773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1027), + [3775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2802), + [3777] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3119), + [3779] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3116), + [3781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1026), + [3783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3863), + [3785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1852), + [3787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2923), + [3789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2797), + [3791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2447), + [3793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4104), + [3795] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_class_statement_repeat1, 1), + [3797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1194), + [3799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4041), + [3801] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2837), + [3803] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1206), + [3805] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4749), + [3807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3119), + [3809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3116), + [3811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2949), + [3813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2534), + [3815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4091), + [3817] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4069), + [3819] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3840), + [3821] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4078), + [3823] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4271), + [3825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2904), + [3827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1850), + [3829] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_widget_pool, 1), + [3831] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_temp_table_tuning, 1), + [3833] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_temp_table_tuning, 1), + [3835] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_temp_table_definition_repeat1, 1), + [3837] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_temp_table_definition_repeat1, 1), + [3839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2045), + [3841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3780), + [3843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1288), + [3845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4125), + [3847] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_assign_statement_repeat1, 2), SHIFT_REPEAT(2837), + [3850] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_assign_statement_repeat1, 2), + [3852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1003), + [3854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3852), + [3856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1021), + [3858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4035), + [3860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(166), + [3862] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4231), + [3864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3702), + [3866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(466), + [3868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1056), + [3870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4028), + [3872] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4142), + [3874] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1135), + [3876] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4191), + [3878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(187), + [3880] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_final, 1), + [3882] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1048), + [3884] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4285), + [3886] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1538), + [3888] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4565), + [3890] = {.entry = {.count = 1, .reusable = false}}, SHIFT(867), + [3892] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4732), + [3894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2073), + [3896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2799), + [3898] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3593), + [3900] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4250), + [3902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1857), + [3904] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3635), + [3906] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4283), + [3908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(107), + [3910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2145), + [3912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1494), + [3914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3889), + [3916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3662), + [3918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1386), + [3920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3876), + [3922] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4276), + [3924] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4213), + [3926] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4480), + [3928] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4475), + [3930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2879), + [3932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3922), + [3934] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_for_phrase_repeat2, 2), + [3936] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_phrase_repeat2, 2), SHIFT_REPEAT(4498), + [3939] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_phrase_repeat2, 2), SHIFT_REPEAT(2695), + [3942] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract, 1), + [3944] = {.entry = {.count = 1, .reusable = false}}, SHIFT(893), + [3946] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4793), + [3948] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4413), + [3950] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4070), + [3952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1865), + [3954] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4410), + [3956] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_data_relation_repeat1, 2), + [3958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3740), + [3960] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_serializable, 1), + [3962] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3983), + [3964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(101), + [3966] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1501), + [3968] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4489), + [3970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3693), + [3972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1860), + [3974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(232), + [3976] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1305), + [3978] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4535), + [3980] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_property_definition_repeat2, 2), SHIFT_REPEAT(514), + [3983] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_variable_definition_repeat2, 1), + [3985] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_tuning, 1), + [3987] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_property_definition_repeat1, 2), + [3989] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_property_definition_repeat1, 2), SHIFT_REPEAT(2848), + [3992] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4055), + [3994] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4344), + [3996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4220), + [3998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4608), + [4000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2476), + [4002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(97), + [4004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4081), + [4006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4273), + [4008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3730), + [4010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(989), + [4012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(992), + [4014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(994), + [4016] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_do_block_repeat1, 2), + [4018] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_do_block_repeat1, 2), SHIFT_REPEAT(3055), + [4021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(998), + [4023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(132), + [4025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(999), + [4027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(138), + [4029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1005), + [4031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1006), + [4033] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_widget_phrase, 3), + [4035] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4199), + [4037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(202), + [4039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1016), + [4041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2446), + [4043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(81), + [4045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2442), + [4047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2434), + [4049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2433), + [4051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(199), + [4053] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_index_definition_repeat1, 1), + [4055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1041), + [4057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1192), + [4059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1193), + [4061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1291), + [4063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2458), + [4065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1294), + [4067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2460), + [4069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2439), + [4071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2524), + [4073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(218), + [4075] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_on_statement_repeat1, 2), SHIFT_REPEAT(370), + [4078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1277), + [4080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(991), + [4082] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_data_relation_repeat1, 2), SHIFT_REPEAT(4081), + [4085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1438), + [4087] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_query_definition_repeat1, 2), + [4089] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_query_definition_repeat1, 2), SHIFT_REPEAT(3320), + [4092] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_query_definition_repeat1, 2), SHIFT_REPEAT(3101), + [4095] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_index_tuning, 2), + [4097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1854), + [4099] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_sort_order, 1), + [4101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(84), + [4103] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_sort_column, 2, .production_id = 19), + [4105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1028), + [4107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(191), + [4109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1053), + [4111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1371), + [4113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1054), + [4115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1064), + [4117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1372), + [4119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1065), + [4121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(116), + [4123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(162), + [4125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1080), + [4127] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_body, 1), + [4129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(332), + [4131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1084), + [4133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1090), + [4135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(228), + [4137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(215), + [4139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1447), + [4141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1482), + [4143] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_sort_clause_repeat1, 1), + [4145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1484), + [4147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1233), + [4149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1316), + [4151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1489), + [4153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1275), + [4155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1485), + [4157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(148), + [4159] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_widget_phrase, 2), + [4161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1402), + [4163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(141), + [4165] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_widget_phrase_repeat1, 2), SHIFT_REPEAT(2839), + [4168] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_widget_phrase_repeat1, 2), + [4170] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_widget_phrase_repeat1, 2), SHIFT_REPEAT(4199), + [4173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1431), + [4175] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_to_phrase, 5), + [4177] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_temp_table_definition_repeat2, 2), + [4179] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_temp_table_definition_repeat2, 2), SHIFT_REPEAT(4507), + [4182] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_temp_table_definition_repeat2, 2), SHIFT_REPEAT(4506), + [4185] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 8, .production_id = 58), + [4187] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 8, .production_id = 58), + [4189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4179), + [4191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3656), + [4193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4180), + [4195] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constructor_definition, 8), + [4197] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constructor_definition, 8), + [4199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(227), + [4201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2952), + [4203] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_data_source_definition, 10), + [4205] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_data_source_definition, 10), + [4207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4605), + [4209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2040), + [4211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2080), + [4213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3908), + [4215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3910), + [4217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3913), + [4219] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 8, .production_id = 56), + [4221] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 8, .production_id = 56), + [4223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2126), + [4225] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_data_source_definition, 5), + [4227] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_data_source_definition, 5), + [4229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2450), + [4231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3569), + [4233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2880), + [4235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(137), + [4237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(136), + [4239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(213), + [4241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(142), + [4243] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_on_statement_repeat2, 2), + [4245] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_on_statement_repeat2, 2), SHIFT_REPEAT(4317), + [4248] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_query_fields, 2), + [4250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(204), + [4252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3965), + [4254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4030), + [4256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3966), + [4258] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_event_definition, 9), + [4260] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_event_definition, 9), + [4262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(79), + [4264] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_data_source_definition, 9), + [4266] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_data_source_definition, 9), + [4268] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 8, .production_id = 53), + [4270] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 8, .production_id = 53), + [4272] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_widget_field, 2), + [4274] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4325), + [4276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(201), + [4278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3737), + [4280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3868), + [4282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3738), + [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}}, REDUCE(sym_method_definition, 6, .production_id = 53), + [4290] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 6, .production_id = 53), + [4292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(426), + [4294] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_widget_field, 1), + [4296] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4263), + [4298] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_property_definition_repeat1, 1), + [4300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2826), + [4302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(95), + [4304] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_data_source_definition, 8), + [4306] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_data_source_definition, 8), + [4308] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_type, 1), + [4310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2792), + [4312] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_event_definition, 8), + [4314] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_event_definition, 8), + [4316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4147), + [4318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3696), + [4320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4146), + [4322] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_on_error_phrase, 5), + [4324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(143), + [4326] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_phrase, 8, .production_id = 30), + [4328] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dataset_definition, 8), + [4330] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dataset_definition, 8), + [4332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3944), + [4334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4015), + [4336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3941), + [4338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4470), + [4340] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_query_fields, 3), + [4342] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 9, .production_id = 56), + [4344] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 9, .production_id = 56), + [4346] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_on_error_phrase, 6, .production_id = 43), + [4348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3066), + [4350] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 9, .production_id = 58), + [4352] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 9, .production_id = 58), + [4354] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constructor_definition, 9), + [4356] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constructor_definition, 9), + [4358] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_on_error_phrase, 6), + [4360] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_on_error_phrase, 6, .production_id = 21), + [4362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2883), + [4364] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_data_source_definition, 6), + [4366] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_data_source_definition, 6), + [4368] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 9, .production_id = 53), + [4370] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 9, .production_id = 53), + [4372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(216), + [4374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4002), + [4376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4004), + [4378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3651), + [4380] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_case_body_repeat1, 2), + [4382] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_body_repeat1, 2), SHIFT_REPEAT(466), + [4385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(159), + [4387] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4416), + [4389] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4710), + [4391] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_class_body_repeat1, 1), + [4393] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 1), + [4395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3776), + [4397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3911), + [4399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3777), + [4401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2123), + [4403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3793), + [4405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3794), + [4407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3795), + [4409] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_event_definition, 10), + [4411] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_event_definition, 10), + [4413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3174), + [4415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(495), + [4417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2540), + [4419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3564), + [4421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2854), + [4423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(117), + [4425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3090), + [4427] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dataset_definition, 10), + [4429] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dataset_definition, 10), + [4431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2076), + [4433] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 10, .production_id = 53), + [4435] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 10, .production_id = 53), + [4437] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 10, .production_id = 56), + [4439] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 10, .production_id = 56), + [4441] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constructor_definition, 7), + [4443] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constructor_definition, 7), + [4445] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 10, .production_id = 58), + [4447] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 10, .production_id = 58), + [4449] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 7, .production_id = 56), + [4451] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 7, .production_id = 56), + [4453] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constructor_definition, 10), + [4455] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constructor_definition, 10), + [4457] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_for_phrase_repeat2, 1), + [4459] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 7, .production_id = 53), + [4461] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 7, .production_id = 53), + [4463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4610), + [4465] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_event_definition, 11), + [4467] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_event_definition, 11), + [4469] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_data_source_definition, 11), + [4471] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_data_source_definition, 11), + [4473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(192), + [4475] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 11, .production_id = 53), + [4477] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 11, .production_id = 53), + [4479] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 11, .production_id = 56), + [4481] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 11, .production_id = 56), + [4483] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_on_error_phrase, 7, .production_id = 48), + [4485] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_on_error_phrase, 7, .production_id = 21), + [4487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2846), + [4489] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_data_source_definition, 7), + [4491] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_data_source_definition, 7), + [4493] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 11, .production_id = 58), + [4495] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 11, .production_id = 58), + [4497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3170), + [4499] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constructor_definition, 11), + [4501] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constructor_definition, 11), + [4503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4631), + [4505] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_event_definition, 7), + [4507] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_event_definition, 7), + [4509] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_event_definition, 12), + [4511] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_event_definition, 12), + [4513] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 12, .production_id = 53), + [4515] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 12, .production_id = 53), + [4517] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 12, .production_id = 56), + [4519] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 12, .production_id = 56), + [4521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(82), + [4523] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 12, .production_id = 58), + [4525] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 12, .production_id = 58), + [4527] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constructor_definition, 12), + [4529] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constructor_definition, 12), + [4531] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 13, .production_id = 56), + [4533] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 13, .production_id = 56), + [4535] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dataset_definition, 7), + [4537] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dataset_definition, 7), + [4539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3977), + [4541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4085), + [4543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3976), + [4545] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 13, .production_id = 58), + [4547] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 13, .production_id = 58), + [4549] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 14, .production_id = 58), + [4551] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 14, .production_id = 58), + [4553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(156), + [4555] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_on_quit_phrase, 7, .production_id = 49), + [4557] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_on_quit_phrase, 7), + [4559] = {.entry = {.count = 1, .reusable = false}}, SHIFT(287), + [4561] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3968), + [4563] = {.entry = {.count = 1, .reusable = false}}, SHIFT(37), + [4565] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3199), + [4567] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3211), + [4569] = {.entry = {.count = 1, .reusable = false}}, SHIFT(42), + [4571] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3141), + [4573] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_on_quit_phrase, 4), + [4575] = {.entry = {.count = 1, .reusable = false}}, SHIFT(577), + [4577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4067), + [4579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3169), + [4581] = {.entry = {.count = 1, .reusable = false}}, SHIFT(582), + [4583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(194), + [4585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1382), + [4587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3786), + [4589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(122), + [4591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3979), + [4593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3175), + [4595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3162), + [4597] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_query_definition_tuning, 2), + [4599] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_phrase, 9, .production_id = 30), + [4601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(219), + [4603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(458), + [4605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4658), + [4607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3709), + [4609] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1560), + [4611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(92), + [4613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4065), + [4615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3328), + [4617] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_on_quit_phrase, 5), + [4619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2992), + [4621] = {.entry = {.count = 1, .reusable = false}}, SHIFT(710), + [4623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3969), + [4625] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2882), + [4627] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2804), + [4629] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4209), + [4631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4156), + [4633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3171), + [4635] = {.entry = {.count = 1, .reusable = false}}, SHIFT(575), + [4637] = {.entry = {.count = 1, .reusable = false}}, SHIFT(590), + [4639] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_interface_body_repeat1, 1), + [4641] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_interface_body_repeat1, 1), + [4643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3566), + [4645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3726), + [4647] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_on_statement_repeat1, 2), SHIFT_REPEAT(522), + [4650] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_do_tuning, 1), + [4652] = {.entry = {.count = 1, .reusable = false}}, SHIFT(16), + [4654] = {.entry = {.count = 1, .reusable = false}}, SHIFT(17), + [4656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(85), + [4658] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1558), + [4660] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2948), + [4662] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_on_error_phrase, 6, .production_id = 21), + [4664] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_object_access_repeat1, 2, .production_id = 8), SHIFT_REPEAT(4792), + [4667] = {.entry = {.count = 1, .reusable = false}}, SHIFT(285), + [4669] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3747), + [4671] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_widget_field, 4), + [4673] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_do_block_repeat1, 1), + [4675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(445), + [4677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4690), + [4679] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2986), + [4681] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_on_quit_phrase, 6), + [4683] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_on_quit_phrase, 6), + [4685] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_on_quit_phrase, 6, .production_id = 43), + [4687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(461), + [4689] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4783), + [4691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4778), + [4693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4777), + [4695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(224), + [4697] = {.entry = {.count = 1, .reusable = false}}, SHIFT(749), + [4699] = {.entry = {.count = 1, .reusable = false}}, SHIFT(755), + [4701] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1595), + [4703] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1805), + [4705] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2873), + [4707] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_on_error_phrase, 5), + [4709] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1746), + [4711] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1207), + [4713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(198), + [4715] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1635), + [4717] = {.entry = {.count = 1, .reusable = false}}, SHIFT(284), + [4719] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3974), + [4721] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1567), + [4723] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_query_definition_tuning, 1), + [4725] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4765), + [4727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4764), + [4729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4763), + [4731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(360), + [4733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1519), + [4735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3734), + [4737] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_single_quoted_string_repeat1, 2), SHIFT_REPEAT(3211), + [4740] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_single_quoted_string_repeat1, 2), + [4742] = {.entry = {.count = 1, .reusable = false}}, SHIFT(765), + [4744] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_double_quoted_string_repeat1, 2), + [4746] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_double_quoted_string_repeat1, 2), SHIFT_REPEAT(3199), + [4749] = {.entry = {.count = 1, .reusable = false}}, SHIFT(757), + [4751] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1576), + [4753] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4591), + [4755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4592), + [4757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4543), + [4759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(467), + [4761] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4702), + [4763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4703), + [4765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4247), + [4767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(361), + [4769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(358), + [4771] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4696), + [4773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4697), + [4775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4246), + [4777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(485), + [4779] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4585), + [4781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4586), + [4783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4548), + [4785] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2950), + [4787] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2952), + [4789] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4373), + [4791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(149), + [4793] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1160), + [4795] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1765), + [4797] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_widget_phrase_repeat1, 1), + [4799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4174), + [4801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3354), + [4803] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1752), + [4805] = {.entry = {.count = 1, .reusable = false}}, SHIFT(718), + [4807] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_query_definition_repeat1, 1), + [4809] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1614), + [4811] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_include_argument, 1, .production_id = 3), + [4813] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_include_argument, 1, .production_id = 3), + [4815] = {.entry = {.count = 1, .reusable = false}}, SHIFT(288), + [4817] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3812), + [4819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(437), + [4821] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4664), + [4823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4665), + [4825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4683), + [4827] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1621), + [4829] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4670), + [4831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4671), + [4833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4699), + [4835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(434), + [4837] = {.entry = {.count = 1, .reusable = false}}, SHIFT(272), + [4839] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3806), + [4841] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_include_argument, 1), + [4843] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_include_argument, 1), + [4845] = {.entry = {.count = 1, .reusable = false}}, SHIFT(271), + [4847] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4188), + [4849] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_include_argument, 1, .production_id = 4), + [4851] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_include_argument, 1, .production_id = 4), + [4853] = {.entry = {.count = 1, .reusable = false}}, SHIFT(725), + [4855] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3041), + [4857] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1543), + [4859] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_on_quit_phrase, 5, .production_id = 31), + [4861] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_include_repeat2, 1), + [4863] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_include_repeat2, 1), + [4865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(130), + [4867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3076), + [4869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3572), + [4871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3719), + [4873] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_widget_field, 5), + [4875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(450), + [4877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4465), + [4879] = {.entry = {.count = 1, .reusable = false}}, SHIFT(681), + [4881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(524), + [4883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4722), + [4885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(420), + [4887] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4629), + [4889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4630), + [4891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4280), + [4893] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4635), + [4895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4636), + [4897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4282), + [4899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(423), + [4901] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2983), + [4903] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1493), + [4905] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_repeat_statement_repeat1, 2), + [4907] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_repeat_statement_repeat1, 2), SHIFT_REPEAT(4762), + [4910] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2791), + [4912] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2883), + [4914] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4281), + [4916] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3079), + [4918] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_on_quit_phrase, 5), + [4920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(394), + [4922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4617), + [4924] = {.entry = {.count = 1, .reusable = false}}, SHIFT(277), + [4926] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3853), + [4928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2403), + [4930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3181), + [4932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3671), + [4934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3690), + [4936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4716), + [4938] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3694), + [4940] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4716), + [4942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2392), + [4944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3707), + [4946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3732), + [4948] = {.entry = {.count = 1, .reusable = false}}, SHIFT(545), + [4950] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4677), + [4952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(586), + [4954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3743), + [4956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3752), + [4958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3758), + [4960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4623), + [4962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4576), + [4964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3778), + [4966] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3212), + [4968] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3681), + [4970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3775), + [4972] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_assign_statement_repeat1, 1), + [4974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3822), + [4976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3792), + [4978] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_include_repeat1, 2), + [4980] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_include_repeat1, 2), SHIFT_REPEAT(3181), + [4983] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_double_quoted_string_repeat1, 1), + [4985] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5), + [4987] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4701), + [4989] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__function_call_arguments, 1), + [4991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(329), + [4993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(310), + [4995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1607), + [4997] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1523), + [4999] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4205), + [5001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3180), + [5003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1884), + [5005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1837), + [5007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4647), + [5009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4604), + [5011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3956), + [5013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(249), + [5015] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_single_quoted_string_repeat1, 1), + [5017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(244), + [5019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3184), + [5021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1901), + [5023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1841), + [5025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4603), + [5027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3725), + [5029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(323), + [5031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4787), + [5033] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3801), + [5035] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4787), + [5037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(317), + [5039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4807), + [5041] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3804), + [5043] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4807), + [5045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(311), + [5047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(954), + [5049] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3271), + [5051] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3924), + [5053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4806), + [5055] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3808), + [5057] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4806), + [5059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(326), + [5061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4730), + [5063] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3817), + [5065] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4730), + [5067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(207), + [5069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(206), + [5071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(205), + [5073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(203), + [5075] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__function_call_arguments, 2), + [5077] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3280), + [5079] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3951), + [5081] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_temp_table_definition_repeat2, 1), + [5083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2525), + [5085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3188), + [5087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1903), + [5089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1848), + [5091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(988), + [5093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3892), + [5095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2463), + [5097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2498), + [5099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(997), + [5101] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4686), + [5103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2094), + [5105] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_case_body_repeat1, 1), + [5107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(243), + [5109] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4350), + [5111] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3499), + [5113] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3899), + [5115] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__function_call_arguments_repeat1, 2), + [5117] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__function_call_arguments_repeat1, 2), SHIFT_REPEAT(329), + [5120] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4484), + [5122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(781), + [5124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1437), + [5126] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3453), + [5128] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3934), + [5130] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3323), + [5132] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4046), + [5134] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(3035), + [5137] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2), + [5139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2561), + [5141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(320), + [5143] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_on_statement_repeat2, 1), + [5145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(245), + [5147] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4252), + [5149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4255), + [5151] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3996), + [5153] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4255), + [5155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(147), + [5157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1025), + [5159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(145), + [5161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(144), + [5163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(140), + [5165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1462), + [5167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2688), + [5169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1427), + [5171] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3357), + [5173] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_on_stop_phrase, 5), + [5175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1196), + [5177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4183), + [5179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2637), + [5181] = {.entry = {.count = 1, .reusable = false}}, SHIFT(839), + [5183] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4425), + [5185] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__case_branch_body, 1), + [5187] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_accumulate_statement_repeat1, 2), + [5189] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_accumulate_statement_repeat1, 2), SHIFT_REPEAT(2094), + [5192] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4388), + [5194] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3267), + [5196] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4095), + [5198] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4505), + [5200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4231), + [5202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4131), + [5204] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2818), + [5206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1279), + [5208] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3387), + [5210] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_on_stop_phrase, 6, .production_id = 21), + [5212] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3221), + [5214] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4140), + [5216] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_on_stop_phrase, 6), + [5218] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_on_stop_phrase, 6, .production_id = 43), + [5220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4099), + [5222] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_when_branch, 4, .production_id = 44), + [5224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(327), + [5226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4057), + [5228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4740), + [5230] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4158), + [5232] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4740), + [5234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4296), + [5236] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2866), + [5238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(76), + [5240] = {.entry = {.count = 1, .reusable = false}}, SHIFT(733), + [5242] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4369), + [5244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(77), + [5246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(758), + [5248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(78), + [5250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(80), + [5252] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_on_stop_phrase, 7, .production_id = 21), + [5254] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_on_stop_phrase, 7, .production_id = 48), + [5256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4103), + [5258] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_function_statement_repeat1, 2), + [5260] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_statement_repeat1, 2), SHIFT_REPEAT(2637), + [5263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2950), + [5265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1397), + [5267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4344), + [5269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3987), + [5271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3986), + [5273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4396), + [5275] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_query_fields_repeat1, 2), SHIFT_REPEAT(4131), + [5278] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_query_fields_repeat1, 2), + [5280] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4497), + [5282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1290), + [5284] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3264), + [5286] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4052), + [5288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1259), + [5290] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4449), + [5292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4413), + [5294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2844), + [5296] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2846), + [5298] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3288), + [5300] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4013), + [5302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3928), + [5304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4475), + [5306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4480), + [5308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(319), + [5310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1202), + [5312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1077), + [5314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2849), + [5316] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2826), + [5318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3929), + [5320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3870), + [5322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4292), + [5324] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3943), + [5326] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4292), + [5328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(214), + [5330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(131), + [5332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(134), + [5334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(135), + [5336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(139), + [5338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4527), + [5340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4532), + [5342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4537), + [5344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4114), + [5346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1043), + [5348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(212), + [5350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(211), + [5352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2938), + [5354] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4557), + [5356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1037), + [5358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4573), + [5360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4082), + [5362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2941), + [5364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4464), + [5366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(45), + [5368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(210), + [5370] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4290), + [5372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2958), + [5374] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4610), + [5376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3654), + [5378] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_qualified_name_repeat1, 2), SHIFT_REPEAT(3654), + [5381] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3425), + [5383] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3830), + [5385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1017), + [5387] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4372), + [5389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4660), + [5391] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3451), + [5393] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3788), + [5395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3744), + [5397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2873), + [5399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3357), + [5401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2948), + [5403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3387), + [5405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(316), + [5407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3716), + [5409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4524), + [5411] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3712), + [5413] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4524), + [5415] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1114), + [5417] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4553), + [5419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1589), + [5421] = {.entry = {.count = 1, .reusable = false}}, SHIFT(637), + [5423] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4562), + [5425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(694), + [5427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3749), + [5429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4514), + [5431] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1652), + [5433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1652), + [5435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3811), + [5437] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3811), + [5439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4779), + [5441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4706), + [5443] = {.entry = {.count = 1, .reusable = false}}, SHIFT(912), + [5445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3000), + [5447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4754), + [5449] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2908), + [5451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4735), + [5453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(640), + [5455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(313), + [5457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3624), + [5459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4474), + [5461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(734), + [5463] = {.entry = {.count = 1, .reusable = false}}, SHIFT(734), + [5465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4305), + [5467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(926), + [5469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4574), + [5471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(934), + [5473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4542), + [5475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(350), + [5477] = {.entry = {.count = 1, .reusable = false}}, SHIFT(350), + [5479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3203), + [5481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2075), + [5483] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2075), + [5485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1483), + [5487] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_repeat_statement_repeat1, 1), + [5489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4599), + [5491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(62), + [5493] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1648), + [5495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1648), + [5497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1426), + [5499] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1426), + [5501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2281), + [5503] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2281), + [5505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(653), + [5507] = {.entry = {.count = 1, .reusable = false}}, SHIFT(653), + [5509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4262), + [5511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1859), + [5513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3210), + [5515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3103), + [5517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3216), + [5519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3218), + [5521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3220), + [5523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3224), + [5525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1568), + [5527] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1568), + [5529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1672), + [5531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4438), + [5533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1178), + [5535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(910), + [5537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4525), + [5539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4539), + [5541] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4539), + [5543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4718), + [5545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4529), + [5547] = {.entry = {.count = 1, .reusable = false}}, SHIFT(936), + [5549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4717), + [5551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4687), + [5553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(59), + [5555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1107), + [5557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4443), + [5559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1684), + [5561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4403), + [5563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1295), + [5565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1876), + [5567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3141), + [5569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4487), + [5571] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4487), + [5573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4533), + [5575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3290), + [5577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1446), + [5579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4240), + [5581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(456), + [5583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4481), + [5585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4479), + [5587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2986), + [5589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4707), + [5591] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2975), + [5593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4478), + [5595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(430), + [5597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4477), + [5599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3011), + [5601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3768), + [5603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3079), + [5605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1645), + [5607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4228), + [5609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1488), + [5611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4469), + [5613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1655), + [5615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4193), + [5617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4301), + [5619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(741), + [5621] = {.entry = {.count = 1, .reusable = false}}, SHIFT(741), + [5623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4382), + [5625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(359), + [5627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4522), + [5629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1337), + [5631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4407), + [5633] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_accumulate_aggregate, 1), + [5635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4521), + [5637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(279), + [5639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1653), + [5641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4515), + [5643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3362), + [5645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4675), + [5647] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2788), + [5649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1646), + [5651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4335), + [5653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1241), + [5655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2386), + [5657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1676), + [5659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4387), + [5661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4491), + [5663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(407), + [5665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1327), + [5667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4490), + [5669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4632), + [5671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3448), + [5673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2977), + [5675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4684), + [5677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4572), + [5679] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2915), + [5681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4570), + [5683] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3047), + [5685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4569), + [5687] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3048), + [5689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4641), + [5691] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2822), + [5693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1673), + [5695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4595), + [5697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1508), + [5699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4398), + [5701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3030), + [5703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3888), + [5705] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_phrase, 10, .production_id = 30), + [5707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1670), + [5709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4654), + [5711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4467), + [5713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3429), + [5715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2370), + [5717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2968), + [5719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4627), + [5721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1304), + [5723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4461), + [5725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4460), + [5727] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1256), + [5729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3574), + [5731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2964), + [5733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4625), + [5735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4597), + [5737] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2831), + [5739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4759), + [5741] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4759), + [5743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4798), + [5745] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4798), + [5747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(281), + [5749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1818), + [5751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4822), + [5753] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4822), + [5755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(278), + [5757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1200), + [5759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4446), + [5761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(555), + [5763] = {.entry = {.count = 1, .reusable = false}}, SHIFT(555), + [5765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4755), + [5767] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4755), + [5769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2955), + [5771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4578), + [5773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1191), + [5775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3573), + [5777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4613), + [5779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2953), + [5781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4587), + [5783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3348), + [5785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2398), + [5787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3406), + [5789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2947), + [5791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4583), + [5793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2946), + [5795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4580), + [5797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(960), + [5799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4441), + [5801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(61), + [5803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4433), + [5805] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__function_argument_with_mode, 2), + [5807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(542), + [5809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(283), + [5811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1167), + [5813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4363), + [5815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2933), + [5817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4552), + [5819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2397), + [5821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2348), + [5823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4462), + [5825] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1413), + [5827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2931), + [5829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(247), + [5831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1680), + [5833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4401), + [5835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4550), + [5837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2927), + [5839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4546), + [5841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3581), + [5843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4588), + [5845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(984), + [5847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4378), + [5849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(864), + [5851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4517), + [5853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2926), + [5855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4544), + [5857] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_repeat_tuning, 3), + [5859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4386), + [5861] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2919), + [5863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2884), + [5865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4488), + [5867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1375), + [5869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4458), + [5871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4385), + [5873] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3025), + [5875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4383), + [5877] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3004), + [5879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6), + [5881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1373), + [5883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4377), + [5885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1342), + [5887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4432), + [5889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1572), + [5891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1308), + [5893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4375), + [5895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3530), + [5897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2424), + [5899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3562), + [5901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1273), + [5903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4405), + [5905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4359), + [5907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3605), + [5909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4549), + [5911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4358), + [5913] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1354), + [5915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4389), + [5917] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1269), + [5919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(873), + [5921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4503), + [5923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4355), + [5925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3292), + [5927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2878), + [5929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4508), + [5931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(951), + [5933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4495), + [5935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1248), + [5937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4374), + [5939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2875), + [5941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(251), + [5943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2872), + [5945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(252), + [5947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1008), + [5949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4332), + [5951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4493), + [5953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2380), + [5955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1236), + [5957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4279), + [5959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3491), + [5961] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2089), + [5963] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4342), + [5965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1215), + [5967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4368), + [5969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1296), + [5971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4351), + [5973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1866), + [5975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3612), + [5977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4494), + [5979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4320), + [5981] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4320), + [5983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4471), + [5985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(900), + [5987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4485), + [5989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1119), + [5991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1418), + [5993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4309), + [5995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(442), + [5997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4353), + [5999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4328), + [6001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3316), + [6003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1664), + [6005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4036), + [6007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4333), + [6009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(454), + [6011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4336), + [6013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3002), + [6015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3994), + [6017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2385), + [6019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2378), + [6021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1153), + [6023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4202), + [6025] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_parameter, 5), + [6027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4346), + [6029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(289), + [6031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1565), + [6033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(280), + [6035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2789), + [6037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4319), + [6039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4343), + [6041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3029), + [6043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2405), + [6045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(903), + [6047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4450), + [6049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2786), + [6051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(258), + [6053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4330), + [6055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(414), + [6057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2801), + [6059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(260), + [6061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2827), + [6063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(262), + [6065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4299), + [6067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4436), + [6069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(387), + [6071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4298), + [6073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4291), + [6075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1662), + [6077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4316), + [6079] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2954), + [6081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4315), + [6083] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2996), + [6085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1498), + [6087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4268), + [6089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4284), + [6091] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4284), + [6093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1863), + [6095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(731), + [6097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4422), + [6099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1452), + [6101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4429), + [6103] = {.entry = {.count = 1, .reusable = false}}, SHIFT(948), + [6105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(961), + [6107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4408), + [6109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2187), + [6111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2537), + [6113] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2054), + [6115] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4241), + [6117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2864), + [6119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1647), + [6121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4129), + [6123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3266), + [6125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2413), + [6127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4472), + [6129] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3621), + [6131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3625), + [6133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4448), + [6135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4238), + [6137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4237), + [6139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(845), + [6141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(985), + [6143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4370), + [6145] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_parameter, 4), + [6147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4347), + [6149] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1105), + [6151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1471), + [6153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4210), + [6155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1967), + [6157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3636), + [6159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4424), + [6161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3349), + [6163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2929), + [6165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4390), + [6167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1318), + [6169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4270), + [6171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2417), + [6173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3250), + [6175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1329), + [6177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4261), + [6179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2932), + [6181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(265), + [6183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2937), + [6185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(266), + [6187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1681), + [6189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3992), + [6191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1683), + [6193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2698), + [6195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3356), + [6197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3078), + [6199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1661), + [6201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4186), + [6203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(65), + [6205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4341), + [6207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4006), + [6209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2233), + [6211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2559), + [6213] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_parameter_mode, 1), + [6215] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4185), + [6217] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4195), + [6219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2560), + [6221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(57), + [6223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4357), + [6225] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3177), + [6227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1225), + [6229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4327), + [6231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1361), + [6233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4198), + [6235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12), + [6237] = {.entry = {.count = 1, .reusable = false}}, SHIFT(12), + [6239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3298), + [6241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2404), + [6243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1450), + [6245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4249), + [6247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(63), + [6249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1674), + [6251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4029), + [6253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4314), + [6255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1455), + [6257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4248), + [6259] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_parameter, 3), + [6261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1344), + [6263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4200), + [6265] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_accumulate_statement_repeat1, 2), + [6267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(58), + [6269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1513), + [6271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4239), + [6273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2593), + [6275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1656), + [6277] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_query_fields_repeat1, 1), + [6279] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_query_fields_repeat1, 1), + [6281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1658), + [6283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4148), + [6285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1111), + [6287] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1111), + [6289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4277), + [6291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4215), + [6293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2414), + [6295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3259), + [6297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2410), + [6299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2834), + [6301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(242), + [6303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4381), + [6305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4288), + [6307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1667), + [6309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4060), + [6311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4530), + [6313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1666), + [6315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2596), + [6317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1853), + [6319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2987), + [6321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4791), + [6323] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4791), + [6325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(411), + [6327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4785), + [6329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4784), + [6331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4746), + [6333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(443), + [6335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4741), + [6337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1166), + [6339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4269), + [6341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1170), + [6343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4267), + [6345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3386), + [6347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4709), + [6349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2421), + [6351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(64), + [6353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1657), + [6355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4107), + [6357] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_parameter, 2), + [6359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(276), + [6361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(196), + [6363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1076), + [6365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1980), + [6367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2325), + [6369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4221), + [6371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4101), + [6373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2422), + [6375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1188), + [6377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2829), + [6379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4087), + [6381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(222), + [6383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4003), + [6385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2072), + [6387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2575), + [6389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3405), + [6391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1302), + [6393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(263), + [6395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4064), + [6397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4226), + [6399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2586), + [6401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3113), + [6403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4143), + [6405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4059), + [6407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4145), + [6409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4219), + [6411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3879), + [6413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3595), + [6415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2571), + [6417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4770), + [6419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2308), + [6421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1979), + [6423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2411), + [6425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(267), + [6427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3602), + [6429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1208), + [6431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4214), + [6433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3161), + [6435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4151), + [6437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2533), + [6439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1368), + [6441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1392), + [6443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4206), + [6445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3930), + [6447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2035), + [6449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3606), + [6451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3646), + [6453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1549), + [6455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3635), + [6457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1051), + [6459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1339), + [6461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3609), + [6463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4173), + [6465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1162), + [6467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1059), + [6469] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_otherwise_branch, 2, .production_id = 33), + [6471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(760), + [6473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1591), + [6475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3637), + [6477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4324), + [6479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11), + [6481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(89), + [6483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1224), + [6485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1417), + [6487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4185), + [6489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4010), + [6491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2973), + [6493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2234), + [6495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2959), + [6497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2587), + [6499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1340), + [6501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1127), + [6503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3435), + [6505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1131), + [6507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3643), + [6509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1173), + [6511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1135), + [6513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1134), + [6515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4379), + [6517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1330), + [6519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3640), + [6521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(40), + [6523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1147), + [6525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4223), + [6527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3975), + [6529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(264), + [6531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(22), + [6533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3639), + [6535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3633), + [6537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(127), + [6539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1268), + [6541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1113), + [6543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3880), + [6545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2482), + [6547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4218), + [6549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2487), + [6551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1307), + [6553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3040), + [6555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2912), + [6557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2771), + [6559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4138), + [6561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(19), + [6563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4133), + [6565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4234), + [6567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4235), + [6569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3073), + [6571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4404), + [6573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4236), + [6575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1314), + [6577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(993), + [6579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3038), + [6581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3630), + [6583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1031), + [6585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(981), + [6587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2415), + [6589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2318), + [6591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(979), + [6593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3921), + [6595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2859), + [6597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4127), + [6599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2188), + [6601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4244), + [6603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3620), + [6605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2850), + [6607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(947), + [6609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(943), + [6611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2015), + [6613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4260), + [6615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1231), + [6617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1204), + [6619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1108), + [6621] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_body, 2), + [6623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1490), + [6625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3619), + [6627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1156), + [6629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1155), + [6631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(920), + [6633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1830), + [6635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2520), + [6637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3580), + [6639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4088), + [6641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3998), + [6643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1144), + [6645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3454), + [6647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1143), + [6649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2002), + [6651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1542), + [6653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1018), + [6655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2536), + [6657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3885), + [6659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2551), + [6661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1367), + [6663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3144), + [6665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2406), + [6667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3118), + [6669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2874), + [6671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2279), + [6673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1013), + [6675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1150), + [6677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(321), + [6679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3925), + [6681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(256), + [6683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2384), + [6685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1151), + [6687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(737), + [6689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2238), + [6691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2277), + [6693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3149), + [6695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2383), + [6697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1154), + [6699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(253), + [6701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2027), + [6703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4033), + [6705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2823), + [6707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4310), + [6709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2535), + [6711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4312), + [6713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4329), + [6715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4019), + [6717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4012), + [6719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(897), + [6721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4340), + [6723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4024), + [6725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2832), + [6727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2485), + [6729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(896), + [6731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(553), + [6733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3877), + [6735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3653), + [6737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2269), + [6739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3881), + [6741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2374), + [6743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(883), + [6745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3874), + [6747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2393), + [6749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(879), + [6751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4302), + [6753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3824), + [6755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2021), + [6757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3864), + [6759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1357), + [6761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1355), + [6763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1265), + [6765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1298), + [6767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2962), + [6769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(396), + [6771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1321), + [6773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1271), + [6775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3497), + [6777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3601), + [6779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3599), + [6781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3596), + [6783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(250), + [6785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2552), + [6787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1328), + [6789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1331), + [6791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1345), + [6793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2910), + [6795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1346), + [6797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3587), + [6799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2921), + [6801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(585), + [6803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1379), + [6805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1260), + [6807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1258), + [6809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3836), + [6811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(152), + [6813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(859), + [6815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2757), + [6817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4397), + [6819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3283), + [6821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3834), + [6823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3825), + [6825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(857), + [6827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1874), + [6829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(973), + [6831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1963), + [6833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3953), + [6835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4122), + [6837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3821), + [6839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2359), + [6841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1685), + [6843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(853), + [6845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1457), + [6847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(559), + [6849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1168), + [6851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1169), + [6853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(44), + [6855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(573), + [6857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(968), + [6859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1496), + [6861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3514), + [6863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4566), + [6865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(965), + [6867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(964), + [6869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4567), + [6871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(257), + [6873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1501), + [6875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2940), + [6877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4098), + [6879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4442), + [6881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(963), + [6883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1532), + [6885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(499), + [6887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3798), + [6889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1533), + [6891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3790), + [6893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3946), + [6895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(551), + [6897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3939), + [6899] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_data_relation, 6), + [6901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1297), + [6903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1838), + [6905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4048), + [6907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3660), + [6909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1219), + [6911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2195), + [6913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4616), + [6915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(282), + [6917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3148), + [6919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3147), + [6921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2805), + [6923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(254), + [6925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3887), + [6927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2969), + [6929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3700), + [6931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2963), + [6933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4609), + [6935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(255), + [6937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3072), + [6939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3717), + [6941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3718), + [6943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3561), + [6945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(322), + [6947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2391), + [6949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3723), + [6951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3724), + [6953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2335), + [6955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3765), + [6957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2903), + [6959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2113), + [6961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(66), + [6963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3933), + [6965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3550), + [6967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4653), + [6969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3766), + [6971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3767), + [6973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2032), + [6975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2565), + [6977] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_data_relation, 7), + [6979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1682), + [6981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3558), + [6983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3522), + [6985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4590), + [6987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2194), + [6989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(368), + [6991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4633), + [6993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4634), + [6995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3884), + [6997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3883), + [6999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2972), + [7001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4428), + [7003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3095), + [7005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3948), + [7007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3949), + [7009] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_data_relation, 8), + [7011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2193), + [7013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4662), + [7015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3954), + [7017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3955), + [7019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3695), + [7021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4668), + [7023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(869), + [7025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4499), + [7027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2887), + [7029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4500), + [7031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2030), + [7033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4620), + [7035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3438), + [7037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4384), + [7039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3993), + [7041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2111), + [7043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3871), + [7045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1349), + [7047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4445), + [7049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2387), + [7051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2282), + [7053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3427), + [7055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4334), + [7057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(870), + [7059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(489), + [7061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3245), + [7063] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_data_relation, 9), + [7065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4208), + [7067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2189), + [7069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3134), + [7071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4163), + [7073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4164), + [7075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4516), + [7077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4669), + [7079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2185), + [7081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4169), + [7083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4170), + [7085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3927), + [7087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2851), + [7089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(843), + [7091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3850), + [7093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3355), + [7095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4196), + [7097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2051), + [7099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(885), + [7101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2978), + [7103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3848), + [7105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3565), + [7107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(60), + [7109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3345), + [7111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4230), + [7113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(438), + [7115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3847), + [7117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4364), + [7119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1987), + [7121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2989), + [7123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3991), + [7125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3990), + [7127] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_mode, 1), + [7129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(886), + [7131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3890), + [7133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3988), + [7135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3985), + [7137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1612), + [7139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(940), + [7141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2861), + [7143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(588), + [7145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(939), + [7147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3282), + [7149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4406), + [7151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2140), + [7153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4536), + [7155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4518), + [7157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3275), + [7159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4440), + [7161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(462), + [7163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1982), + [7165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3124), + [7167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4545), + [7169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(726), + [7171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3131), + [7173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4817), + [7175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1620), + [7177] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4805), + [7179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(893), + [7181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(894), + [7183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1527), + [7185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3785), + [7187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4601), + [7189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4602), + [7191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3222), + [7193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2985), + [7195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(930), + [7197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4612), + [7199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3774), + [7201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4614), + [7203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4615), + [7205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(929), + [7207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2453), + [7209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1590), + [7211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1538), + [7213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(767), + [7215] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__find_type, 1), + [7217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2542), + [7219] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4827), + [7221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2800), + [7223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1618), + [7225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1611), + [7227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(650), + [7229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(652), + [7231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(708), + [7233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(389), + [7235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(898), + [7237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4624), + [7239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1183), + [7241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3759), + [7243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3756), + [7245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2292), + [7247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4651), + [7249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4652), + [7251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1973), + [7253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(908), + [7255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4659), + [7257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3748), + [7259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4667), + [7261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3755), + [7263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4645), + [7265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4646), + [7267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1229), + [7269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3746), + [7271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3751), + [7273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4655), + [7275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4656), + [7277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3741), + [7279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(924), + [7281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(922), + [7283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3173), + [7285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(721), + [7287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3735), + [7289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4679), + [7291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4680), + [7293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3012), + [7295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3198), + [7297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(918), + [7299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3729), + [7301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4688), + [7303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4689), + [7305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1432), + [7307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1562), + [7309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1511), + [7311] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_include_repeat1, 1), + [7313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(711), + [7315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3703), + [7317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4711), + [7319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4712), + [7321] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4828), + [7323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(753), + [7325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1592), + [7327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3689), + [7329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4720), + [7331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4721), + [7333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(643), + [7335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1174), + [7337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1176), + [7339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4742), + [7341] = {.entry = {.count = 1, .reusable = true}}, ACCEPT_INPUT(), + [7343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3192), + [7345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(738), + [7347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(268), + [7349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4739), + [7351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4752), + [7353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(761), + [7355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2048), + [7357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3674), + [7359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3673), + [7361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(786), + [7363] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_comment, 2), + [7365] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_comment, 3), + [7367] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_include, 3), + [7369] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_include, 4), + [7371] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_include, 5), }; #ifdef __cplusplus